blob: cd95920702e8d6f560a1f6711e3d15e61d64ff96 [file] [log] [blame]
Daniel Dunbard51ffcf2009-07-11 19:39:44 +00001//===- AsmMatcherEmitter.cpp - Generate an assembly matcher ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This tablegen backend emits a target specifier matcher for converting parsed
11// assembly operands in the MCInst structures.
12//
Daniel Dunbar20927f22009-08-07 08:26:05 +000013// The input to the target specific matcher is a list of literal tokens and
14// operands. The target specific parser should generally eliminate any syntax
15// which is not relevant for matching; for example, comma tokens should have
16// already been consumed and eliminated by the parser. Most instructions will
17// end up with a single literal token (the instruction name) and some number of
18// operands.
19//
20// Some example inputs, for X86:
21// 'addl' (immediate ...) (register ...)
22// 'add' (immediate ...) (memory ...)
23// 'call' '*' %epc
24//
25// The assembly matcher is responsible for converting this input into a precise
26// machine instruction (i.e., an instruction with a well defined encoding). This
27// mapping has several properties which complicate matching:
28//
29// - It may be ambiguous; many architectures can legally encode particular
30// variants of an instruction in different ways (for example, using a smaller
31// encoding for small immediates). Such ambiguities should never be
32// arbitrarily resolved by the assembler, the assembler is always responsible
33// for choosing the "best" available instruction.
34//
35// - It may depend on the subtarget or the assembler context. Instructions
36// which are invalid for the current mode, but otherwise unambiguous (e.g.,
37// an SSE instruction in a file being assembled for i486) should be accepted
38// and rejected by the assembler front end. However, if the proper encoding
39// for an instruction is dependent on the assembler context then the matcher
40// is responsible for selecting the correct machine instruction for the
41// current mode.
42//
43// The core matching algorithm attempts to exploit the regularity in most
44// instruction sets to quickly determine the set of possibly matching
45// instructions, and the simplify the generated code. Additionally, this helps
46// to ensure that the ambiguities are intentionally resolved by the user.
47//
48// The matching is divided into two distinct phases:
49//
50// 1. Classification: Each operand is mapped to the unique set which (a)
51// contains it, and (b) is the largest such subset for which a single
52// instruction could match all members.
53//
54// For register classes, we can generate these subgroups automatically. For
55// arbitrary operands, we expect the user to define the classes and their
56// relations to one another (for example, 8-bit signed immediates as a
57// subset of 32-bit immediates).
58//
59// By partitioning the operands in this way, we guarantee that for any
60// tuple of classes, any single instruction must match either all or none
61// of the sets of operands which could classify to that tuple.
62//
63// In addition, the subset relation amongst classes induces a partial order
64// on such tuples, which we use to resolve ambiguities.
65//
66// FIXME: What do we do if a crazy case shows up where this is the wrong
67// resolution?
68//
69// 2. The input can now be treated as a tuple of classes (static tokens are
70// simple singleton sets). Each such tuple should generally map to a single
71// instruction (we currently ignore cases where this isn't true, whee!!!),
72// which we can emit a simple matcher for.
73//
Daniel Dunbard51ffcf2009-07-11 19:39:44 +000074//===----------------------------------------------------------------------===//
75
76#include "AsmMatcherEmitter.h"
77#include "CodeGenTarget.h"
78#include "Record.h"
Daniel Dunbar20927f22009-08-07 08:26:05 +000079#include "llvm/ADT/OwningPtr.h"
Daniel Dunbara027d222009-07-31 02:32:59 +000080#include "llvm/ADT/SmallVector.h"
Daniel Dunbar20927f22009-08-07 08:26:05 +000081#include "llvm/ADT/StringExtras.h"
82#include "llvm/Support/CommandLine.h"
Daniel Dunbara027d222009-07-31 02:32:59 +000083#include "llvm/Support/Debug.h"
Daniel Dunbara027d222009-07-31 02:32:59 +000084#include <list>
Daniel Dunbarb7479c02009-08-08 05:24:34 +000085#include <map>
86#include <set>
Daniel Dunbard51ffcf2009-07-11 19:39:44 +000087using namespace llvm;
88
Daniel Dunbar20927f22009-08-07 08:26:05 +000089namespace {
Daniel Dunbar27249152009-08-07 20:33:39 +000090static cl::opt<std::string>
91MatchOneInstr("match-one-instr", cl::desc("Match only the named instruction"),
Daniel Dunbar20927f22009-08-07 08:26:05 +000092 cl::init(""));
93}
94
Daniel Dunbara027d222009-07-31 02:32:59 +000095/// FlattenVariants - Flatten an .td file assembly string by selecting the
96/// variant at index \arg N.
97static std::string FlattenVariants(const std::string &AsmString,
98 unsigned N) {
99 StringRef Cur = AsmString;
100 std::string Res = "";
101
102 for (;;) {
Daniel Dunbar53a7f162009-08-04 20:36:45 +0000103 // Find the start of the next variant string.
104 size_t VariantsStart = 0;
105 for (size_t e = Cur.size(); VariantsStart != e; ++VariantsStart)
106 if (Cur[VariantsStart] == '{' &&
Daniel Dunbar20927f22009-08-07 08:26:05 +0000107 (VariantsStart == 0 || (Cur[VariantsStart-1] != '$' &&
108 Cur[VariantsStart-1] != '\\')))
Daniel Dunbar53a7f162009-08-04 20:36:45 +0000109 break;
Daniel Dunbara027d222009-07-31 02:32:59 +0000110
Daniel Dunbar53a7f162009-08-04 20:36:45 +0000111 // Add the prefix to the result.
112 Res += Cur.slice(0, VariantsStart);
113 if (VariantsStart == Cur.size())
Daniel Dunbara027d222009-07-31 02:32:59 +0000114 break;
115
Daniel Dunbar53a7f162009-08-04 20:36:45 +0000116 ++VariantsStart; // Skip the '{'.
117
118 // Scan to the end of the variants string.
119 size_t VariantsEnd = VariantsStart;
120 unsigned NestedBraces = 1;
121 for (size_t e = Cur.size(); VariantsEnd != e; ++VariantsEnd) {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000122 if (Cur[VariantsEnd] == '}' && Cur[VariantsEnd-1] != '\\') {
Daniel Dunbar53a7f162009-08-04 20:36:45 +0000123 if (--NestedBraces == 0)
124 break;
125 } else if (Cur[VariantsEnd] == '{')
126 ++NestedBraces;
127 }
Daniel Dunbara027d222009-07-31 02:32:59 +0000128
129 // Select the Nth variant (or empty).
Daniel Dunbar53a7f162009-08-04 20:36:45 +0000130 StringRef Selection = Cur.slice(VariantsStart, VariantsEnd);
Daniel Dunbara027d222009-07-31 02:32:59 +0000131 for (unsigned i = 0; i != N; ++i)
132 Selection = Selection.split('|').second;
133 Res += Selection.split('|').first;
134
Daniel Dunbar53a7f162009-08-04 20:36:45 +0000135 assert(VariantsEnd != Cur.size() &&
136 "Unterminated variants in assembly string!");
137 Cur = Cur.substr(VariantsEnd + 1);
Daniel Dunbara027d222009-07-31 02:32:59 +0000138 }
139
140 return Res;
141}
142
143/// TokenizeAsmString - Tokenize a simplified assembly string.
Daniel Dunbar20927f22009-08-07 08:26:05 +0000144static void TokenizeAsmString(const StringRef &AsmString,
Daniel Dunbara027d222009-07-31 02:32:59 +0000145 SmallVectorImpl<StringRef> &Tokens) {
146 unsigned Prev = 0;
147 bool InTok = true;
148 for (unsigned i = 0, e = AsmString.size(); i != e; ++i) {
149 switch (AsmString[i]) {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000150 case '[':
151 case ']':
Daniel Dunbara027d222009-07-31 02:32:59 +0000152 case '*':
153 case '!':
154 case ' ':
155 case '\t':
156 case ',':
157 if (InTok) {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000158 Tokens.push_back(AsmString.slice(Prev, i));
Daniel Dunbara027d222009-07-31 02:32:59 +0000159 InTok = false;
160 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000161 if (!isspace(AsmString[i]) && AsmString[i] != ',')
162 Tokens.push_back(AsmString.substr(i, 1));
Daniel Dunbara027d222009-07-31 02:32:59 +0000163 Prev = i + 1;
164 break;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000165
166 case '\\':
167 if (InTok) {
168 Tokens.push_back(AsmString.slice(Prev, i));
169 InTok = false;
170 }
171 ++i;
172 assert(i != AsmString.size() && "Invalid quoted character");
173 Tokens.push_back(AsmString.substr(i, 1));
174 Prev = i + 1;
175 break;
176
177 case '$': {
178 // If this isn't "${", treat like a normal token.
179 if (i + 1 == AsmString.size() || AsmString[i + 1] != '{') {
180 if (InTok) {
181 Tokens.push_back(AsmString.slice(Prev, i));
182 InTok = false;
183 }
184 Prev = i;
185 break;
186 }
187
188 if (InTok) {
189 Tokens.push_back(AsmString.slice(Prev, i));
190 InTok = false;
191 }
192
193 StringRef::iterator End =
194 std::find(AsmString.begin() + i, AsmString.end(), '}');
195 assert(End != AsmString.end() && "Missing brace in operand reference!");
196 size_t EndPos = End - AsmString.begin();
197 Tokens.push_back(AsmString.slice(i, EndPos+1));
198 Prev = EndPos + 1;
199 i = EndPos;
200 break;
201 }
Daniel Dunbara027d222009-07-31 02:32:59 +0000202
203 default:
204 InTok = true;
205 }
206 }
207 if (InTok && Prev != AsmString.size())
Daniel Dunbar20927f22009-08-07 08:26:05 +0000208 Tokens.push_back(AsmString.substr(Prev));
209}
210
211static bool IsAssemblerInstruction(const StringRef &Name,
212 const CodeGenInstruction &CGI,
213 const SmallVectorImpl<StringRef> &Tokens) {
214 // Ignore psuedo ops.
215 //
216 // FIXME: This is a hack.
217 if (const RecordVal *Form = CGI.TheDef->getValue("Form"))
218 if (Form->getValue()->getAsString() == "Pseudo")
219 return false;
220
221 // Ignore "PHI" node.
222 //
223 // FIXME: This is also a hack.
224 if (Name == "PHI")
225 return false;
226
227 // Ignore instructions with no .s string.
228 //
229 // FIXME: What are these?
230 if (CGI.AsmString.empty())
231 return false;
232
233 // FIXME: Hack; ignore any instructions with a newline in them.
234 if (std::find(CGI.AsmString.begin(),
235 CGI.AsmString.end(), '\n') != CGI.AsmString.end())
236 return false;
237
238 // Ignore instructions with attributes, these are always fake instructions for
239 // simplifying codegen.
240 //
241 // FIXME: Is this true?
242 //
243 // Also, we ignore instructions which reference the operand multiple times;
244 // this implies a constraint we would not currently honor. These are
245 // currently always fake instructions for simplifying codegen.
246 //
247 // FIXME: Encode this assumption in the .td, so we can error out here.
248 std::set<std::string> OperandNames;
249 for (unsigned i = 1, e = Tokens.size(); i < e; ++i) {
250 if (Tokens[i][0] == '$' &&
251 std::find(Tokens[i].begin(),
252 Tokens[i].end(), ':') != Tokens[i].end()) {
253 DEBUG({
254 errs() << "warning: '" << Name << "': "
255 << "ignoring instruction; operand with attribute '"
256 << Tokens[i] << "', \n";
257 });
258 return false;
259 }
260
261 if (Tokens[i][0] == '$' && !OperandNames.insert(Tokens[i]).second) {
262 DEBUG({
263 errs() << "warning: '" << Name << "': "
264 << "ignoring instruction; tied operand '"
265 << Tokens[i] << "', \n";
266 });
267 return false;
268 }
269 }
270
271 return true;
272}
273
274namespace {
275
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000276/// ClassInfo - Helper class for storing the information about a particular
277/// class of operands which can be matched.
278struct ClassInfo {
279 enum {
280 Token, ///< The class for a particular token.
281 Register, ///< A register class.
282 User ///< A user defined class.
283 } Kind;
284
285 /// Name - The class name, suitable for use as an enum.
286 std::string Name;
287
288 /// ValueName - The name of the value this class represents; for a token this
289 /// is the literal token string, for an operand it is the TableGen class (or
290 /// empty if this is a derived class).
291 std::string ValueName;
292
293 /// PredicateMethod - The name of the operand method to test whether the
294 /// operand matches this class; this is not valid for Token kinds.
295 std::string PredicateMethod;
296
297 /// RenderMethod - The name of the operand method to add this operand to an
298 /// MCInst; this is not valid for Token kinds.
299 std::string RenderMethod;
300};
301
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000302/// InstructionInfo - Helper class for storing the necessary information for an
303/// instruction which is capable of being matched.
Daniel Dunbar20927f22009-08-07 08:26:05 +0000304struct InstructionInfo {
305 struct Operand {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000306 /// The unique class instance this operand should match.
307 ClassInfo *Class;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000308
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000309 /// The original operand this corresponds to, if any.
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000310 const CodeGenInstruction::OperandInfo *OperandInfo;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000311 };
312
313 /// InstrName - The target name for this instruction.
314 std::string InstrName;
315
316 /// Instr - The instruction this matches.
317 const CodeGenInstruction *Instr;
318
319 /// AsmString - The assembly string for this instruction (with variants
320 /// removed).
321 std::string AsmString;
322
323 /// Tokens - The tokenized assembly pattern that this instruction matches.
324 SmallVector<StringRef, 4> Tokens;
325
326 /// Operands - The operands that this instruction matches.
327 SmallVector<Operand, 4> Operands;
328
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000329 /// ConversionFnKind - The enum value which is passed to the generated
330 /// ConvertToMCInst to convert parsed operands into an MCInst for this
331 /// function.
332 std::string ConversionFnKind;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000333
334public:
335 void dump();
336};
337
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000338class AsmMatcherInfo {
339public:
340 /// The classes which are needed for matching.
341 std::vector<ClassInfo*> Classes;
342
343 /// The information on the instruction to match.
344 std::vector<InstructionInfo*> Instructions;
345
346private:
347 /// Map of token to class information which has already been constructed.
348 std::map<std::string, ClassInfo*> TokenClasses;
349
350 /// Map of operand name to class information which has already been
351 /// constructed.
352 std::map<std::string, ClassInfo*> OperandClasses;
353
354private:
355 /// getTokenClass - Lookup or create the class for the given token.
356 ClassInfo *getTokenClass(const StringRef &Token);
357
358 /// getOperandClass - Lookup or create the class for the given operand.
359 ClassInfo *getOperandClass(const StringRef &Token,
360 const CodeGenInstruction::OperandInfo &OI);
361
362public:
363 /// BuildInfo - Construct the various tables used during matching.
364 void BuildInfo(CodeGenTarget &Target);
365};
366
Daniel Dunbar20927f22009-08-07 08:26:05 +0000367}
368
369void InstructionInfo::dump() {
370 errs() << InstrName << " -- " << "flattened:\"" << AsmString << '\"'
371 << ", tokens:[";
372 for (unsigned i = 0, e = Tokens.size(); i != e; ++i) {
373 errs() << Tokens[i];
374 if (i + 1 != e)
375 errs() << ", ";
376 }
377 errs() << "]\n";
378
379 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
380 Operand &Op = Operands[i];
381 errs() << " op[" << i << "] = ";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000382 if (Op.Class->Kind == ClassInfo::Token) {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000383 errs() << '\"' << Tokens[i] << "\"\n";
384 continue;
385 }
386
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000387 const CodeGenInstruction::OperandInfo &OI = *Op.OperandInfo;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000388 errs() << OI.Name << " " << OI.Rec->getName()
389 << " (" << OI.MIOperandNo << ", " << OI.MINumOperands << ")\n";
390 }
391}
392
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000393static std::string getEnumNameForToken(const StringRef &Str) {
394 std::string Res;
395
396 for (StringRef::iterator it = Str.begin(), ie = Str.end(); it != ie; ++it) {
397 switch (*it) {
398 case '*': Res += "_STAR_"; break;
399 case '%': Res += "_PCT_"; break;
400 case ':': Res += "_COLON_"; break;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000401
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000402 default:
403 if (isalnum(*it)) {
404 Res += *it;
405 } else {
406 Res += "_" + utostr((unsigned) *it) + "_";
407 }
408 }
409 }
410
411 return Res;
412}
413
414ClassInfo *AsmMatcherInfo::getTokenClass(const StringRef &Token) {
415 ClassInfo *&Entry = TokenClasses[Token];
416
417 if (!Entry) {
418 Entry = new ClassInfo();
419 Entry->Kind = ClassInfo::Token;
420 Entry->Name = "MCK_" + getEnumNameForToken(Token);
421 Entry->ValueName = Token;
422 Entry->PredicateMethod = "<invalid>";
423 Entry->RenderMethod = "<invalid>";
424 Classes.push_back(Entry);
425 }
426
427 return Entry;
428}
429
430ClassInfo *
431AsmMatcherInfo::getOperandClass(const StringRef &Token,
432 const CodeGenInstruction::OperandInfo &OI) {
433 std::string ClassName;
434 if (OI.Rec->isSubClassOf("RegisterClass")) {
435 ClassName = "Reg";
436 } else if (OI.Rec->isSubClassOf("Operand")) {
437 // FIXME: This should not be hard coded.
438 const RecordVal *RV = OI.Rec->getValue("Type");
439
440 // FIXME: Yet another total hack.
441 if (RV->getValue()->getAsString() == "iPTR" ||
442 OI.Rec->getName() == "i8mem_NOREX" ||
443 OI.Rec->getName() == "lea32mem" ||
444 OI.Rec->getName() == "lea64mem" ||
445 OI.Rec->getName() == "i128mem" ||
446 OI.Rec->getName() == "sdmem" ||
447 OI.Rec->getName() == "ssmem" ||
448 OI.Rec->getName() == "lea64_32mem") {
449 ClassName = "Mem";
450 } else {
451 ClassName = "Imm";
452 }
453 }
454
455 ClassInfo *&Entry = OperandClasses[ClassName];
456
457 if (!Entry) {
458 Entry = new ClassInfo();
459 // FIXME: Hack.
460 if (ClassName == "Reg") {
461 Entry->Kind = ClassInfo::Register;
462 } else {
463 Entry->Kind = ClassInfo::User;
464 }
465 Entry->Name = "MCK_" + ClassName;
466 Entry->ValueName = OI.Rec->getName();
467 Entry->PredicateMethod = "is" + ClassName;
468 Entry->RenderMethod = "add" + ClassName + "Operands";
469 Classes.push_back(Entry);
470 }
471
472 return Entry;
473}
474
475void AsmMatcherInfo::BuildInfo(CodeGenTarget &Target) {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000476 for (std::map<std::string, CodeGenInstruction>::const_iterator
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000477 it = Target.getInstructions().begin(),
478 ie = Target.getInstructions().end();
479 it != ie; ++it) {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000480 const CodeGenInstruction &CGI = it->second;
481
482 if (!MatchOneInstr.empty() && it->first != MatchOneInstr)
483 continue;
484
485 OwningPtr<InstructionInfo> II(new InstructionInfo);
486
487 II->InstrName = it->first;
488 II->Instr = &it->second;
489 II->AsmString = FlattenVariants(CGI.AsmString, 0);
490
491 TokenizeAsmString(II->AsmString, II->Tokens);
492
493 // Ignore instructions which shouldn't be matched.
494 if (!IsAssemblerInstruction(it->first, CGI, II->Tokens))
495 continue;
496
497 for (unsigned i = 0, e = II->Tokens.size(); i != e; ++i) {
498 StringRef Token = II->Tokens[i];
499
500 // Check for simple tokens.
501 if (Token[0] != '$') {
502 InstructionInfo::Operand Op;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000503 Op.Class = getTokenClass(Token);
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000504 Op.OperandInfo = 0;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000505 II->Operands.push_back(Op);
506 continue;
507 }
508
509 // Otherwise this is an operand reference.
Daniel Dunbar20927f22009-08-07 08:26:05 +0000510 StringRef OperandName;
511 if (Token[1] == '{')
512 OperandName = Token.substr(2, Token.size() - 3);
513 else
514 OperandName = Token.substr(1);
515
516 // Map this token to an operand. FIXME: Move elsewhere.
517 unsigned Idx;
518 try {
519 Idx = CGI.getOperandNamed(OperandName);
520 } catch(...) {
521 errs() << "error: unable to find operand: '" << OperandName << "'!\n";
522 break;
523 }
524
525 const CodeGenInstruction::OperandInfo &OI = CGI.OperandList[Idx];
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000526 InstructionInfo::Operand Op;
527 Op.Class = getOperandClass(Token, OI);
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000528 Op.OperandInfo = &OI;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000529 II->Operands.push_back(Op);
530 }
531
532 // If we broke out, ignore the instruction.
533 if (II->Operands.size() != II->Tokens.size())
534 continue;
535
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000536 Instructions.push_back(II.take());
Daniel Dunbar20927f22009-08-07 08:26:05 +0000537 }
538}
539
540static void ConstructConversionFunctions(CodeGenTarget &Target,
541 std::vector<InstructionInfo*> &Infos,
542 raw_ostream &OS) {
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000543 // Write the convert function to a separate stream, so we can drop it after
544 // the enum.
545 std::string ConvertFnBody;
546 raw_string_ostream CvtOS(ConvertFnBody);
547
Daniel Dunbar20927f22009-08-07 08:26:05 +0000548 // Function we have already generated.
549 std::set<std::string> GeneratedFns;
550
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000551 // Start the unified conversion function.
552
553 CvtOS << "static bool ConvertToMCInst(ConversionKind Kind, MCInst &Inst, "
554 << "unsigned Opcode,\n"
555 << " SmallVectorImpl<"
556 << Target.getName() << "Operand> &Operands) {\n";
557 CvtOS << " Inst.setOpcode(Opcode);\n";
558 CvtOS << " switch (Kind) {\n";
559 CvtOS << " default:\n";
560
561 // Start the enum, which we will generate inline.
562
563 OS << "// Unified function for converting operants to MCInst instances.\n\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000564 OS << "enum ConversionKind {\n";
565
Daniel Dunbar20927f22009-08-07 08:26:05 +0000566 for (std::vector<InstructionInfo*>::const_iterator it = Infos.begin(),
567 ie = Infos.end(); it != ie; ++it) {
568 InstructionInfo &II = **it;
569
570 // Order the (class) operands by the order to convert them into an MCInst.
571 SmallVector<std::pair<unsigned, unsigned>, 4> MIOperandList;
572 for (unsigned i = 0, e = II.Operands.size(); i != e; ++i) {
573 InstructionInfo::Operand &Op = II.Operands[i];
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000574 if (Op.OperandInfo)
575 MIOperandList.push_back(std::make_pair(Op.OperandInfo->MIOperandNo, i));
Daniel Dunbar20927f22009-08-07 08:26:05 +0000576 }
577 std::sort(MIOperandList.begin(), MIOperandList.end());
578
579 // Compute the total number of operands.
580 unsigned NumMIOperands = 0;
581 for (unsigned i = 0, e = II.Instr->OperandList.size(); i != e; ++i) {
582 const CodeGenInstruction::OperandInfo &OI = II.Instr->OperandList[i];
583 NumMIOperands = std::max(NumMIOperands,
584 OI.MIOperandNo + OI.MINumOperands);
585 }
586
587 // Build the conversion function signature.
588 std::string Signature = "Convert";
589 unsigned CurIndex = 0;
590 for (unsigned i = 0, e = MIOperandList.size(); i != e; ++i) {
591 InstructionInfo::Operand &Op = II.Operands[MIOperandList[i].second];
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000592 assert(CurIndex <= Op.OperandInfo->MIOperandNo &&
Daniel Dunbar20927f22009-08-07 08:26:05 +0000593 "Duplicate match for instruction operand!");
Daniel Dunbar20927f22009-08-07 08:26:05 +0000594
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000595 Signature += "_";
596
Daniel Dunbar20927f22009-08-07 08:26:05 +0000597 // Skip operands which weren't matched by anything, this occurs when the
598 // .td file encodes "implicit" operands as explicit ones.
599 //
600 // FIXME: This should be removed from the MCInst structure.
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000601 for (; CurIndex != Op.OperandInfo->MIOperandNo; ++CurIndex)
Daniel Dunbar20927f22009-08-07 08:26:05 +0000602 Signature += "Imp";
603
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000604 Signature += Op.Class->Name;
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000605 Signature += utostr(Op.OperandInfo->MINumOperands);
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000606 Signature += "_" + utostr(MIOperandList[i].second);
607
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000608 CurIndex += Op.OperandInfo->MINumOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000609 }
610
611 // Add any trailing implicit operands.
612 for (; CurIndex != NumMIOperands; ++CurIndex)
613 Signature += "Imp";
614
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000615 II.ConversionFnKind = Signature;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000616
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000617 // Check if we have already generated this signature.
Daniel Dunbar20927f22009-08-07 08:26:05 +0000618 if (!GeneratedFns.insert(Signature).second)
619 continue;
620
621 // If not, emit it now.
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000622
623 // Add to the enum list.
624 OS << " " << Signature << ",\n";
625
626 // And to the convert function.
627 CvtOS << " case " << Signature << ":\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000628 CurIndex = 0;
629 for (unsigned i = 0, e = MIOperandList.size(); i != e; ++i) {
630 InstructionInfo::Operand &Op = II.Operands[MIOperandList[i].second];
631
632 // Add the implicit operands.
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000633 for (; CurIndex != Op.OperandInfo->MIOperandNo; ++CurIndex)
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000634 CvtOS << " Inst.addOperand(MCOperand::CreateReg(0));\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000635
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000636 CvtOS << " Operands[" << MIOperandList[i].second
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000637 << "]." << Op.Class->RenderMethod
Benjamin Kramerfa1165a2009-08-08 10:06:30 +0000638 << "(Inst, " << Op.OperandInfo->MINumOperands << ");\n";
639 CurIndex += Op.OperandInfo->MINumOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000640 }
641
642 // And add trailing implicit operands.
643 for (; CurIndex != NumMIOperands; ++CurIndex)
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000644 CvtOS << " Inst.addOperand(MCOperand::CreateReg(0));\n";
645 CvtOS << " break;\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000646 }
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000647
648 // Finish the convert function.
649
650 CvtOS << " }\n";
651 CvtOS << " return false;\n";
652 CvtOS << "}\n\n";
653
654 // Finish the enum, and drop the convert function after it.
655
656 OS << " NumConversionVariants\n";
657 OS << "};\n\n";
658
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000659 OS << CvtOS.str();
Daniel Dunbara027d222009-07-31 02:32:59 +0000660}
661
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000662/// EmitMatchClassEnumeration - Emit the enumeration for match class kinds.
663static void EmitMatchClassEnumeration(CodeGenTarget &Target,
664 std::vector<ClassInfo*> &Infos,
665 raw_ostream &OS) {
666 OS << "namespace {\n\n";
667
668 OS << "/// MatchClassKind - The kinds of classes which participate in\n"
669 << "/// instruction matching.\n";
670 OS << "enum MatchClassKind {\n";
671 OS << " InvalidMatchClass = 0,\n";
672 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
673 ie = Infos.end(); it != ie; ++it) {
674 ClassInfo &CI = **it;
675 OS << " " << CI.Name << ", // ";
676 if (CI.Kind == ClassInfo::Token) {
677 OS << "'" << CI.ValueName << "'\n";
678 } else if (CI.Kind == ClassInfo::Register) {
679 if (!CI.ValueName.empty())
680 OS << "register class '" << CI.ValueName << "'\n";
681 else
682 OS << "derived register class\n";
683 } else {
684 OS << "user defined class '" << CI.ValueName << "'\n";
685 }
686 }
687 OS << " NumMatchClassKinds\n";
688 OS << "};\n\n";
689
690 OS << "}\n\n";
691}
692
693/// EmitMatchRegisterName - Emit the function to match a string to appropriate
694/// match class value.
695static void EmitMatchTokenString(CodeGenTarget &Target,
696 std::vector<ClassInfo*> &Infos,
697 raw_ostream &OS) {
698 // FIXME: TableGen should have a fast string matcher generator.
699 OS << "static MatchClassKind MatchTokenString(const StringRef &Name) {\n";
700 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
701 ie = Infos.end(); it != ie; ++it) {
702 ClassInfo &CI = **it;
703
704 if (CI.Kind == ClassInfo::Token)
705 OS << " if (Name == \"" << CI.ValueName << "\")\n"
706 << " return " << CI.Name << ";\n\n";
707 }
708 OS << " return InvalidMatchClass;\n";
709 OS << "}\n\n";
710}
711
712/// EmitClassifyOperand - Emit the function to classify an operand.
713static void EmitClassifyOperand(CodeGenTarget &Target,
714 std::vector<ClassInfo*> &Infos,
715 raw_ostream &OS) {
716 OS << "static MatchClassKind ClassifyOperand("
717 << Target.getName() << "Operand &Operand) {\n";
718 OS << " if (Operand.isToken())\n";
719 OS << " return MatchTokenString(Operand.getToken());\n\n";
720 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
721 ie = Infos.end(); it != ie; ++it) {
722 ClassInfo &CI = **it;
723
724 if (CI.Kind != ClassInfo::Token) {
725 OS << " if (Operand." << CI.PredicateMethod << "())\n";
726 OS << " return " << CI.Name << ";\n\n";
727 }
728 }
729 OS << " return InvalidMatchClass;\n";
730 OS << "}\n\n";
731}
732
Daniel Dunbar2234e5e2009-08-07 21:01:44 +0000733/// EmitMatchRegisterName - Emit the function to match a string to the target
734/// specific register enum.
735static void EmitMatchRegisterName(CodeGenTarget &Target, Record *AsmParser,
736 raw_ostream &OS) {
Daniel Dunbar22be5222009-07-17 18:51:11 +0000737 const std::vector<CodeGenRegister> &Registers = Target.getRegisters();
738
Daniel Dunbar2234e5e2009-08-07 21:01:44 +0000739 OS << "bool " << Target.getName()
740 << AsmParser->getValueAsString("AsmParserClassName")
Daniel Dunbar0e2771f2009-07-29 00:02:19 +0000741 << "::MatchRegisterName(const StringRef &Name, unsigned &RegNo) {\n";
Daniel Dunbar22be5222009-07-17 18:51:11 +0000742
743 // FIXME: TableGen should have a fast string matcher generator.
744 for (unsigned i = 0, e = Registers.size(); i != e; ++i) {
745 const CodeGenRegister &Reg = Registers[i];
746 if (Reg.TheDef->getValueAsString("AsmName").empty())
747 continue;
748
749 OS << " if (Name == \""
750 << Reg.TheDef->getValueAsString("AsmName") << "\")\n"
751 << " return RegNo=" << i + 1 << ", false;\n";
752 }
753 OS << " return true;\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000754 OS << "}\n\n";
Daniel Dunbar2234e5e2009-08-07 21:01:44 +0000755}
Daniel Dunbara027d222009-07-31 02:32:59 +0000756
Daniel Dunbar2234e5e2009-08-07 21:01:44 +0000757void AsmMatcherEmitter::run(raw_ostream &OS) {
758 CodeGenTarget Target;
759 Record *AsmParser = Target.getAsmParser();
760 std::string ClassName = AsmParser->getValueAsString("AsmParserClassName");
761
762 EmitSourceFileHeader("Assembly Matcher Source Fragment", OS);
763
764 // Emit the function to match a register name to number.
765 EmitMatchRegisterName(Target, AsmParser, OS);
766
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000767 // Compute the information on the instructions to match.
768 AsmMatcherInfo Info;
769 Info.BuildInfo(Target);
Daniel Dunbara027d222009-07-31 02:32:59 +0000770
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000771 DEBUG_WITH_TYPE("instruction_info", {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000772 for (std::vector<InstructionInfo*>::iterator
773 it = Info.Instructions.begin(), ie = Info.Instructions.end();
774 it != ie; ++it)
Daniel Dunbar20927f22009-08-07 08:26:05 +0000775 (*it)->dump();
776 });
Daniel Dunbara027d222009-07-31 02:32:59 +0000777
Daniel Dunbar20927f22009-08-07 08:26:05 +0000778 // FIXME: At this point we should be able to totally order Infos, if not then
779 // we have an ambiguity which the .td file should be forced to resolve.
Daniel Dunbara027d222009-07-31 02:32:59 +0000780
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000781 // Generate the terminal actions to convert operands into an MCInst.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000782 ConstructConversionFunctions(Target, Info.Instructions, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +0000783
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000784 // Emit the enumeration for classes which participate in matching.
785 EmitMatchClassEnumeration(Target, Info.Classes, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +0000786
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000787 // Emit the routine to match token strings to their match class.
788 EmitMatchTokenString(Target, Info.Classes, OS);
789
790 // Emit the routine to classify an operand.
791 EmitClassifyOperand(Target, Info.Classes, OS);
792
793 // Finally, build the match function.
794
795 size_t MaxNumOperands = 0;
796 for (std::vector<InstructionInfo*>::const_iterator it =
797 Info.Instructions.begin(), ie = Info.Instructions.end();
798 it != ie; ++it)
799 MaxNumOperands = std::max(MaxNumOperands, (*it)->Operands.size());
800
Daniel Dunbara027d222009-07-31 02:32:59 +0000801 OS << "bool " << Target.getName() << ClassName
Daniel Dunbar20927f22009-08-07 08:26:05 +0000802 << "::MatchInstruction("
Daniel Dunbara027d222009-07-31 02:32:59 +0000803 << "SmallVectorImpl<" << Target.getName() << "Operand> &Operands, "
804 << "MCInst &Inst) {\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000805
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000806 // Emit the static match table; unused classes get initalized to 0 which is
807 // guaranteed to be InvalidMatchClass.
808 //
809 // FIXME: We can reduce the size of this table very easily. First, we change
810 // it so that store the kinds in separate bit-fields for each index, which
811 // only needs to be the max width used for classes at that index (we also need
812 // to reject based on this during classification). If we then make sure to
813 // order the match kinds appropriately (putting mnemonics last), then we
814 // should only end up using a few bits for each class, especially the ones
815 // following the mnemonic.
Chris Lattnerc6049532009-08-08 19:15:25 +0000816 OS << " static const struct MatchEntry {\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000817 OS << " unsigned Opcode;\n";
818 OS << " ConversionKind ConvertFn;\n";
819 OS << " MatchClassKind Classes[" << MaxNumOperands << "];\n";
820 OS << " } MatchTable[" << Info.Instructions.size() << "] = {\n";
821
822 for (std::vector<InstructionInfo*>::const_iterator it =
823 Info.Instructions.begin(), ie = Info.Instructions.end();
824 it != ie; ++it) {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000825 InstructionInfo &II = **it;
826
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000827 OS << " { " << Target.getName() << "::" << II.InstrName
828 << ", " << II.ConversionFnKind << ", { ";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000829 for (unsigned i = 0, e = II.Operands.size(); i != e; ++i) {
830 InstructionInfo::Operand &Op = II.Operands[i];
831
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000832 if (i) OS << ", ";
833 OS << Op.Class->Name;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000834 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000835 OS << " } },\n";
Daniel Dunbara027d222009-07-31 02:32:59 +0000836 }
837
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000838 OS << " };\n\n";
839
840 // Emit code to compute the class list for this operand vector.
841 OS << " // Eliminate obvious mismatches.\n";
842 OS << " if (Operands.size() > " << MaxNumOperands << ")\n";
843 OS << " return true;\n\n";
844
845 OS << " // Compute the class list for this operand vector.\n";
846 OS << " MatchClassKind Classes[" << MaxNumOperands << "];\n";
847 OS << " for (unsigned i = 0, e = Operands.size(); i != e; ++i) {\n";
848 OS << " Classes[i] = ClassifyOperand(Operands[i]);\n\n";
849
850 OS << " // Check for invalid operands before matching.\n";
851 OS << " if (Classes[i] == InvalidMatchClass)\n";
852 OS << " return true;\n";
853 OS << " }\n\n";
854
855 OS << " // Mark unused classes.\n";
856 OS << " for (unsigned i = Operands.size(), e = " << MaxNumOperands << "; "
857 << "i != e; ++i)\n";
858 OS << " Classes[i] = InvalidMatchClass;\n\n";
859
860 // Emit code to search the table.
861 OS << " // Search the table.\n";
Chris Lattnerd39bd3a2009-08-08 19:16:05 +0000862 OS << " for (const MatchEntry *it = MatchTable, "
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000863 << "*ie = MatchTable + " << Info.Instructions.size()
864 << "; it != ie; ++it) {\n";
865 for (unsigned i = 0; i != MaxNumOperands; ++i) {
866 OS << " if (Classes[" << i << "] != it->Classes[" << i << "])\n";
867 OS << " continue;\n";
868 }
869 OS << "\n";
870 OS << " return ConvertToMCInst(it->ConvertFn, Inst, "
871 << "it->Opcode, Operands);\n";
872 OS << " }\n\n";
873
Daniel Dunbara027d222009-07-31 02:32:59 +0000874 OS << " return true;\n";
875 OS << "}\n\n";
Daniel Dunbard51ffcf2009-07-11 19:39:44 +0000876}