Remove locale-dependence of enum mangling and use existing function.
[oota-llvm.git] / utils / TableGen / AsmMatcherEmitter.cpp
1 //===- 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. It also emits a matcher for
12 // custom operand parsing.
13 //
14 // Converting assembly operands into MCInst structures
15 // ---------------------------------------------------
16 //
17 // The input to the target specific matcher is a list of literal tokens and
18 // operands. The target specific parser should generally eliminate any syntax
19 // which is not relevant for matching; for example, comma tokens should have
20 // already been consumed and eliminated by the parser. Most instructions will
21 // end up with a single literal token (the instruction name) and some number of
22 // operands.
23 //
24 // Some example inputs, for X86:
25 //   'addl' (immediate ...) (register ...)
26 //   'add' (immediate ...) (memory ...)
27 //   'call' '*' %epc
28 //
29 // The assembly matcher is responsible for converting this input into a precise
30 // machine instruction (i.e., an instruction with a well defined encoding). This
31 // mapping has several properties which complicate matching:
32 //
33 //  - It may be ambiguous; many architectures can legally encode particular
34 //    variants of an instruction in different ways (for example, using a smaller
35 //    encoding for small immediates). Such ambiguities should never be
36 //    arbitrarily resolved by the assembler, the assembler is always responsible
37 //    for choosing the "best" available instruction.
38 //
39 //  - It may depend on the subtarget or the assembler context. Instructions
40 //    which are invalid for the current mode, but otherwise unambiguous (e.g.,
41 //    an SSE instruction in a file being assembled for i486) should be accepted
42 //    and rejected by the assembler front end. However, if the proper encoding
43 //    for an instruction is dependent on the assembler context then the matcher
44 //    is responsible for selecting the correct machine instruction for the
45 //    current mode.
46 //
47 // The core matching algorithm attempts to exploit the regularity in most
48 // instruction sets to quickly determine the set of possibly matching
49 // instructions, and the simplify the generated code. Additionally, this helps
50 // to ensure that the ambiguities are intentionally resolved by the user.
51 //
52 // The matching is divided into two distinct phases:
53 //
54 //   1. Classification: Each operand is mapped to the unique set which (a)
55 //      contains it, and (b) is the largest such subset for which a single
56 //      instruction could match all members.
57 //
58 //      For register classes, we can generate these subgroups automatically. For
59 //      arbitrary operands, we expect the user to define the classes and their
60 //      relations to one another (for example, 8-bit signed immediates as a
61 //      subset of 32-bit immediates).
62 //
63 //      By partitioning the operands in this way, we guarantee that for any
64 //      tuple of classes, any single instruction must match either all or none
65 //      of the sets of operands which could classify to that tuple.
66 //
67 //      In addition, the subset relation amongst classes induces a partial order
68 //      on such tuples, which we use to resolve ambiguities.
69 //
70 //   2. The input can now be treated as a tuple of classes (static tokens are
71 //      simple singleton sets). Each such tuple should generally map to a single
72 //      instruction (we currently ignore cases where this isn't true, whee!!!),
73 //      which we can emit a simple matcher for.
74 //
75 // Custom Operand Parsing
76 // ----------------------
77 //
78 //  Some targets need a custom way to parse operands, some specific instructions
79 //  can contain arguments that can represent processor flags and other kinds of
80 //  identifiers that need to be mapped to specific values in the final encoded
81 //  instructions. The target specific custom operand parsing works in the
82 //  following way:
83 //
84 //   1. A operand match table is built, each entry contains a mnemonic, an
85 //      operand class, a mask for all operand positions for that same
86 //      class/mnemonic and target features to be checked while trying to match.
87 //
88 //   2. The operand matcher will try every possible entry with the same
89 //      mnemonic and will check if the target feature for this mnemonic also
90 //      matches. After that, if the operand to be matched has its index
91 //      present in the mask, a successful match occurs. Otherwise, fallback
92 //      to the regular operand parsing.
93 //
94 //   3. For a match success, each operand class that has a 'ParserMethod'
95 //      becomes part of a switch from where the custom method is called.
96 //
97 //===----------------------------------------------------------------------===//
98
99 #include "CodeGenTarget.h"
100 #include "StringToOffsetTable.h"
101 #include "llvm/ADT/OwningPtr.h"
102 #include "llvm/ADT/PointerUnion.h"
103 #include "llvm/ADT/STLExtras.h"
104 #include "llvm/ADT/SmallPtrSet.h"
105 #include "llvm/ADT/SmallVector.h"
106 #include "llvm/ADT/StringExtras.h"
107 #include "llvm/Support/CommandLine.h"
108 #include "llvm/Support/Debug.h"
109 #include "llvm/Support/ErrorHandling.h"
110 #include "llvm/TableGen/Error.h"
111 #include "llvm/TableGen/Record.h"
112 #include "llvm/TableGen/StringMatcher.h"
113 #include "llvm/TableGen/TableGenBackend.h"
114 #include <cassert>
115 #include <map>
116 #include <set>
117 using namespace llvm;
118
119 static cl::opt<std::string>
120 MatchPrefix("match-prefix", cl::init(""),
121             cl::desc("Only match instructions with the given prefix"));
122
123 namespace {
124 class AsmMatcherInfo;
125 struct SubtargetFeatureInfo;
126
127 class AsmMatcherEmitter {
128   RecordKeeper &Records;
129 public:
130   AsmMatcherEmitter(RecordKeeper &R) : Records(R) {}
131
132   void run(raw_ostream &o);
133 };
134
135 /// ClassInfo - Helper class for storing the information about a particular
136 /// class of operands which can be matched.
137 struct ClassInfo {
138   enum ClassInfoKind {
139     /// Invalid kind, for use as a sentinel value.
140     Invalid = 0,
141
142     /// The class for a particular token.
143     Token,
144
145     /// The (first) register class, subsequent register classes are
146     /// RegisterClass0+1, and so on.
147     RegisterClass0,
148
149     /// The (first) user defined class, subsequent user defined classes are
150     /// UserClass0+1, and so on.
151     UserClass0 = 1<<16
152   };
153
154   /// Kind - The class kind, which is either a predefined kind, or (UserClass0 +
155   /// N) for the Nth user defined class.
156   unsigned Kind;
157
158   /// SuperClasses - The super classes of this class. Note that for simplicities
159   /// sake user operands only record their immediate super class, while register
160   /// operands include all superclasses.
161   std::vector<ClassInfo*> SuperClasses;
162
163   /// Name - The full class name, suitable for use in an enum.
164   std::string Name;
165
166   /// ClassName - The unadorned generic name for this class (e.g., Token).
167   std::string ClassName;
168
169   /// ValueName - The name of the value this class represents; for a token this
170   /// is the literal token string, for an operand it is the TableGen class (or
171   /// empty if this is a derived class).
172   std::string ValueName;
173
174   /// PredicateMethod - The name of the operand method to test whether the
175   /// operand matches this class; this is not valid for Token or register kinds.
176   std::string PredicateMethod;
177
178   /// RenderMethod - The name of the operand method to add this operand to an
179   /// MCInst; this is not valid for Token or register kinds.
180   std::string RenderMethod;
181
182   /// ParserMethod - The name of the operand method to do a target specific
183   /// parsing on the operand.
184   std::string ParserMethod;
185
186   /// For register classes, the records for all the registers in this class.
187   std::set<Record*> Registers;
188
189   /// For custom match classes, he diagnostic kind for when the predicate fails.
190   std::string DiagnosticType;
191 public:
192   /// isRegisterClass() - Check if this is a register class.
193   bool isRegisterClass() const {
194     return Kind >= RegisterClass0 && Kind < UserClass0;
195   }
196
197   /// isUserClass() - Check if this is a user defined class.
198   bool isUserClass() const {
199     return Kind >= UserClass0;
200   }
201
202   /// isRelatedTo - Check whether this class is "related" to \p RHS. Classes
203   /// are related if they are in the same class hierarchy.
204   bool isRelatedTo(const ClassInfo &RHS) const {
205     // Tokens are only related to tokens.
206     if (Kind == Token || RHS.Kind == Token)
207       return Kind == Token && RHS.Kind == Token;
208
209     // Registers classes are only related to registers classes, and only if
210     // their intersection is non-empty.
211     if (isRegisterClass() || RHS.isRegisterClass()) {
212       if (!isRegisterClass() || !RHS.isRegisterClass())
213         return false;
214
215       std::set<Record*> Tmp;
216       std::insert_iterator< std::set<Record*> > II(Tmp, Tmp.begin());
217       std::set_intersection(Registers.begin(), Registers.end(),
218                             RHS.Registers.begin(), RHS.Registers.end(),
219                             II);
220
221       return !Tmp.empty();
222     }
223
224     // Otherwise we have two users operands; they are related if they are in the
225     // same class hierarchy.
226     //
227     // FIXME: This is an oversimplification, they should only be related if they
228     // intersect, however we don't have that information.
229     assert(isUserClass() && RHS.isUserClass() && "Unexpected class!");
230     const ClassInfo *Root = this;
231     while (!Root->SuperClasses.empty())
232       Root = Root->SuperClasses.front();
233
234     const ClassInfo *RHSRoot = &RHS;
235     while (!RHSRoot->SuperClasses.empty())
236       RHSRoot = RHSRoot->SuperClasses.front();
237
238     return Root == RHSRoot;
239   }
240
241   /// isSubsetOf - Test whether this class is a subset of \p RHS.
242   bool isSubsetOf(const ClassInfo &RHS) const {
243     // This is a subset of RHS if it is the same class...
244     if (this == &RHS)
245       return true;
246
247     // ... or if any of its super classes are a subset of RHS.
248     for (std::vector<ClassInfo*>::const_iterator it = SuperClasses.begin(),
249            ie = SuperClasses.end(); it != ie; ++it)
250       if ((*it)->isSubsetOf(RHS))
251         return true;
252
253     return false;
254   }
255
256   /// operator< - Compare two classes.
257   bool operator<(const ClassInfo &RHS) const {
258     if (this == &RHS)
259       return false;
260
261     // Unrelated classes can be ordered by kind.
262     if (!isRelatedTo(RHS))
263       return Kind < RHS.Kind;
264
265     switch (Kind) {
266     case Invalid:
267       llvm_unreachable("Invalid kind!");
268
269     default:
270       // This class precedes the RHS if it is a proper subset of the RHS.
271       if (isSubsetOf(RHS))
272         return true;
273       if (RHS.isSubsetOf(*this))
274         return false;
275
276       // Otherwise, order by name to ensure we have a total ordering.
277       return ValueName < RHS.ValueName;
278     }
279   }
280 };
281
282 namespace {
283 /// Sort ClassInfo pointers independently of pointer value.
284 struct LessClassInfoPtr {
285   bool operator()(const ClassInfo *LHS, const ClassInfo *RHS) const {
286     return *LHS < *RHS;
287   }
288 };
289 }
290
291 /// MatchableInfo - Helper class for storing the necessary information for an
292 /// instruction or alias which is capable of being matched.
293 struct MatchableInfo {
294   struct AsmOperand {
295     /// Token - This is the token that the operand came from.
296     StringRef Token;
297
298     /// The unique class instance this operand should match.
299     ClassInfo *Class;
300
301     /// The operand name this is, if anything.
302     StringRef SrcOpName;
303
304     /// The suboperand index within SrcOpName, or -1 for the entire operand.
305     int SubOpIdx;
306
307     /// Register record if this token is singleton register.
308     Record *SingletonReg;
309
310     explicit AsmOperand(StringRef T) : Token(T), Class(0), SubOpIdx(-1),
311                                        SingletonReg(0) {}
312   };
313
314   /// ResOperand - This represents a single operand in the result instruction
315   /// generated by the match.  In cases (like addressing modes) where a single
316   /// assembler operand expands to multiple MCOperands, this represents the
317   /// single assembler operand, not the MCOperand.
318   struct ResOperand {
319     enum {
320       /// RenderAsmOperand - This represents an operand result that is
321       /// generated by calling the render method on the assembly operand.  The
322       /// corresponding AsmOperand is specified by AsmOperandNum.
323       RenderAsmOperand,
324
325       /// TiedOperand - This represents a result operand that is a duplicate of
326       /// a previous result operand.
327       TiedOperand,
328
329       /// ImmOperand - This represents an immediate value that is dumped into
330       /// the operand.
331       ImmOperand,
332
333       /// RegOperand - This represents a fixed register that is dumped in.
334       RegOperand
335     } Kind;
336
337     union {
338       /// This is the operand # in the AsmOperands list that this should be
339       /// copied from.
340       unsigned AsmOperandNum;
341
342       /// TiedOperandNum - This is the (earlier) result operand that should be
343       /// copied from.
344       unsigned TiedOperandNum;
345
346       /// ImmVal - This is the immediate value added to the instruction.
347       int64_t ImmVal;
348
349       /// Register - This is the register record.
350       Record *Register;
351     };
352
353     /// MINumOperands - The number of MCInst operands populated by this
354     /// operand.
355     unsigned MINumOperands;
356
357     static ResOperand getRenderedOp(unsigned AsmOpNum, unsigned NumOperands) {
358       ResOperand X;
359       X.Kind = RenderAsmOperand;
360       X.AsmOperandNum = AsmOpNum;
361       X.MINumOperands = NumOperands;
362       return X;
363     }
364
365     static ResOperand getTiedOp(unsigned TiedOperandNum) {
366       ResOperand X;
367       X.Kind = TiedOperand;
368       X.TiedOperandNum = TiedOperandNum;
369       X.MINumOperands = 1;
370       return X;
371     }
372
373     static ResOperand getImmOp(int64_t Val) {
374       ResOperand X;
375       X.Kind = ImmOperand;
376       X.ImmVal = Val;
377       X.MINumOperands = 1;
378       return X;
379     }
380
381     static ResOperand getRegOp(Record *Reg) {
382       ResOperand X;
383       X.Kind = RegOperand;
384       X.Register = Reg;
385       X.MINumOperands = 1;
386       return X;
387     }
388   };
389
390   /// AsmVariantID - Target's assembly syntax variant no.
391   int AsmVariantID;
392
393   /// TheDef - This is the definition of the instruction or InstAlias that this
394   /// matchable came from.
395   Record *const TheDef;
396
397   /// DefRec - This is the definition that it came from.
398   PointerUnion<const CodeGenInstruction*, const CodeGenInstAlias*> DefRec;
399
400   const CodeGenInstruction *getResultInst() const {
401     if (DefRec.is<const CodeGenInstruction*>())
402       return DefRec.get<const CodeGenInstruction*>();
403     return DefRec.get<const CodeGenInstAlias*>()->ResultInst;
404   }
405
406   /// ResOperands - This is the operand list that should be built for the result
407   /// MCInst.
408   SmallVector<ResOperand, 8> ResOperands;
409
410   /// AsmString - The assembly string for this instruction (with variants
411   /// removed), e.g. "movsx $src, $dst".
412   std::string AsmString;
413
414   /// Mnemonic - This is the first token of the matched instruction, its
415   /// mnemonic.
416   StringRef Mnemonic;
417
418   /// AsmOperands - The textual operands that this instruction matches,
419   /// annotated with a class and where in the OperandList they were defined.
420   /// This directly corresponds to the tokenized AsmString after the mnemonic is
421   /// removed.
422   SmallVector<AsmOperand, 8> AsmOperands;
423
424   /// Predicates - The required subtarget features to match this instruction.
425   SmallVector<SubtargetFeatureInfo*, 4> RequiredFeatures;
426
427   /// ConversionFnKind - The enum value which is passed to the generated
428   /// convertToMCInst to convert parsed operands into an MCInst for this
429   /// function.
430   std::string ConversionFnKind;
431
432   MatchableInfo(const CodeGenInstruction &CGI)
433     : AsmVariantID(0), TheDef(CGI.TheDef), DefRec(&CGI),
434       AsmString(CGI.AsmString) {
435   }
436
437   MatchableInfo(const CodeGenInstAlias *Alias)
438     : AsmVariantID(0), TheDef(Alias->TheDef), DefRec(Alias),
439       AsmString(Alias->AsmString) {
440   }
441
442   // Two-operand aliases clone from the main matchable, but mark the second
443   // operand as a tied operand of the first for purposes of the assembler.
444   void formTwoOperandAlias(StringRef Constraint);
445
446   void initialize(const AsmMatcherInfo &Info,
447                   SmallPtrSet<Record*, 16> &SingletonRegisters,
448                   int AsmVariantNo, std::string &RegisterPrefix);
449
450   /// validate - Return true if this matchable is a valid thing to match against
451   /// and perform a bunch of validity checking.
452   bool validate(StringRef CommentDelimiter, bool Hack) const;
453
454   /// extractSingletonRegisterForAsmOperand - Extract singleton register,
455   /// if present, from specified token.
456   void
457   extractSingletonRegisterForAsmOperand(unsigned i, const AsmMatcherInfo &Info,
458                                         std::string &RegisterPrefix);
459
460   /// findAsmOperand - Find the AsmOperand with the specified name and
461   /// suboperand index.
462   int findAsmOperand(StringRef N, int SubOpIdx) const {
463     for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
464       if (N == AsmOperands[i].SrcOpName &&
465           SubOpIdx == AsmOperands[i].SubOpIdx)
466         return i;
467     return -1;
468   }
469
470   /// findAsmOperandNamed - Find the first AsmOperand with the specified name.
471   /// This does not check the suboperand index.
472   int findAsmOperandNamed(StringRef N) const {
473     for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
474       if (N == AsmOperands[i].SrcOpName)
475         return i;
476     return -1;
477   }
478
479   void buildInstructionResultOperands();
480   void buildAliasResultOperands();
481
482   /// operator< - Compare two matchables.
483   bool operator<(const MatchableInfo &RHS) const {
484     // The primary comparator is the instruction mnemonic.
485     if (Mnemonic != RHS.Mnemonic)
486       return Mnemonic < RHS.Mnemonic;
487
488     if (AsmOperands.size() != RHS.AsmOperands.size())
489       return AsmOperands.size() < RHS.AsmOperands.size();
490
491     // Compare lexicographically by operand. The matcher validates that other
492     // orderings wouldn't be ambiguous using \see couldMatchAmbiguouslyWith().
493     for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
494       if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
495         return true;
496       if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
497         return false;
498     }
499
500     // Give matches that require more features higher precedence. This is useful
501     // because we cannot define AssemblerPredicates with the negation of
502     // processor features. For example, ARM v6 "nop" may be either a HINT or
503     // MOV. With v6, we want to match HINT. The assembler has no way to
504     // predicate MOV under "NoV6", but HINT will always match first because it
505     // requires V6 while MOV does not.
506     if (RequiredFeatures.size() != RHS.RequiredFeatures.size())
507       return RequiredFeatures.size() > RHS.RequiredFeatures.size();
508
509     return false;
510   }
511
512   /// couldMatchAmbiguouslyWith - Check whether this matchable could
513   /// ambiguously match the same set of operands as \p RHS (without being a
514   /// strictly superior match).
515   bool couldMatchAmbiguouslyWith(const MatchableInfo &RHS) {
516     // The primary comparator is the instruction mnemonic.
517     if (Mnemonic != RHS.Mnemonic)
518       return false;
519
520     // The number of operands is unambiguous.
521     if (AsmOperands.size() != RHS.AsmOperands.size())
522       return false;
523
524     // Otherwise, make sure the ordering of the two instructions is unambiguous
525     // by checking that either (a) a token or operand kind discriminates them,
526     // or (b) the ordering among equivalent kinds is consistent.
527
528     // Tokens and operand kinds are unambiguous (assuming a correct target
529     // specific parser).
530     for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
531       if (AsmOperands[i].Class->Kind != RHS.AsmOperands[i].Class->Kind ||
532           AsmOperands[i].Class->Kind == ClassInfo::Token)
533         if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class ||
534             *RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
535           return false;
536
537     // Otherwise, this operand could commute if all operands are equivalent, or
538     // there is a pair of operands that compare less than and a pair that
539     // compare greater than.
540     bool HasLT = false, HasGT = false;
541     for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
542       if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
543         HasLT = true;
544       if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
545         HasGT = true;
546     }
547
548     return !(HasLT ^ HasGT);
549   }
550
551   void dump();
552
553 private:
554   void tokenizeAsmString(const AsmMatcherInfo &Info);
555 };
556
557 /// SubtargetFeatureInfo - Helper class for storing information on a subtarget
558 /// feature which participates in instruction matching.
559 struct SubtargetFeatureInfo {
560   /// \brief The predicate record for this feature.
561   Record *TheDef;
562
563   /// \brief An unique index assigned to represent this feature.
564   unsigned Index;
565
566   SubtargetFeatureInfo(Record *D, unsigned Idx) : TheDef(D), Index(Idx) {}
567
568   /// \brief The name of the enumerated constant identifying this feature.
569   std::string getEnumName() const {
570     return "Feature_" + TheDef->getName();
571   }
572 };
573
574 struct OperandMatchEntry {
575   unsigned OperandMask;
576   MatchableInfo* MI;
577   ClassInfo *CI;
578
579   static OperandMatchEntry create(MatchableInfo* mi, ClassInfo *ci,
580                                   unsigned opMask) {
581     OperandMatchEntry X;
582     X.OperandMask = opMask;
583     X.CI = ci;
584     X.MI = mi;
585     return X;
586   }
587 };
588
589
590 class AsmMatcherInfo {
591 public:
592   /// Tracked Records
593   RecordKeeper &Records;
594
595   /// The tablegen AsmParser record.
596   Record *AsmParser;
597
598   /// Target - The target information.
599   CodeGenTarget &Target;
600
601   /// The classes which are needed for matching.
602   std::vector<ClassInfo*> Classes;
603
604   /// The information on the matchables to match.
605   std::vector<MatchableInfo*> Matchables;
606
607   /// Info for custom matching operands by user defined methods.
608   std::vector<OperandMatchEntry> OperandMatchInfo;
609
610   /// Map of Register records to their class information.
611   typedef std::map<Record*, ClassInfo*, LessRecordByID> RegisterClassesTy;
612   RegisterClassesTy RegisterClasses;
613
614   /// Map of Predicate records to their subtarget information.
615   std::map<Record*, SubtargetFeatureInfo*> SubtargetFeatures;
616
617   /// Map of AsmOperandClass records to their class information.
618   std::map<Record*, ClassInfo*> AsmOperandClasses;
619
620 private:
621   /// Map of token to class information which has already been constructed.
622   std::map<std::string, ClassInfo*> TokenClasses;
623
624   /// Map of RegisterClass records to their class information.
625   std::map<Record*, ClassInfo*> RegisterClassClasses;
626
627 private:
628   /// getTokenClass - Lookup or create the class for the given token.
629   ClassInfo *getTokenClass(StringRef Token);
630
631   /// getOperandClass - Lookup or create the class for the given operand.
632   ClassInfo *getOperandClass(const CGIOperandList::OperandInfo &OI,
633                              int SubOpIdx);
634   ClassInfo *getOperandClass(Record *Rec, int SubOpIdx);
635
636   /// buildRegisterClasses - Build the ClassInfo* instances for register
637   /// classes.
638   void buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters);
639
640   /// buildOperandClasses - Build the ClassInfo* instances for user defined
641   /// operand classes.
642   void buildOperandClasses();
643
644   void buildInstructionOperandReference(MatchableInfo *II, StringRef OpName,
645                                         unsigned AsmOpIdx);
646   void buildAliasOperandReference(MatchableInfo *II, StringRef OpName,
647                                   MatchableInfo::AsmOperand &Op);
648
649 public:
650   AsmMatcherInfo(Record *AsmParser,
651                  CodeGenTarget &Target,
652                  RecordKeeper &Records);
653
654   /// buildInfo - Construct the various tables used during matching.
655   void buildInfo();
656
657   /// buildOperandMatchInfo - Build the necessary information to handle user
658   /// defined operand parsing methods.
659   void buildOperandMatchInfo();
660
661   /// getSubtargetFeature - Lookup or create the subtarget feature info for the
662   /// given operand.
663   SubtargetFeatureInfo *getSubtargetFeature(Record *Def) const {
664     assert(Def->isSubClassOf("Predicate") && "Invalid predicate type!");
665     std::map<Record*, SubtargetFeatureInfo*>::const_iterator I =
666       SubtargetFeatures.find(Def);
667     return I == SubtargetFeatures.end() ? 0 : I->second;
668   }
669
670   RecordKeeper &getRecords() const {
671     return Records;
672   }
673 };
674
675 } // End anonymous namespace
676
677 void MatchableInfo::dump() {
678   errs() << TheDef->getName() << " -- " << "flattened:\"" << AsmString <<"\"\n";
679
680   for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
681     AsmOperand &Op = AsmOperands[i];
682     errs() << "  op[" << i << "] = " << Op.Class->ClassName << " - ";
683     errs() << '\"' << Op.Token << "\"\n";
684   }
685 }
686
687 static std::pair<StringRef, StringRef>
688 parseTwoOperandConstraint(StringRef S, ArrayRef<SMLoc> Loc) {
689   // Split via the '='.
690   std::pair<StringRef, StringRef> Ops = S.split('=');
691   if (Ops.second == "")
692     PrintFatalError(Loc, "missing '=' in two-operand alias constraint");
693   // Trim whitespace and the leading '$' on the operand names.
694   size_t start = Ops.first.find_first_of('$');
695   if (start == std::string::npos)
696     PrintFatalError(Loc, "expected '$' prefix on asm operand name");
697   Ops.first = Ops.first.slice(start + 1, std::string::npos);
698   size_t end = Ops.first.find_last_of(" \t");
699   Ops.first = Ops.first.slice(0, end);
700   // Now the second operand.
701   start = Ops.second.find_first_of('$');
702   if (start == std::string::npos)
703     PrintFatalError(Loc, "expected '$' prefix on asm operand name");
704   Ops.second = Ops.second.slice(start + 1, std::string::npos);
705   end = Ops.second.find_last_of(" \t");
706   Ops.first = Ops.first.slice(0, end);
707   return Ops;
708 }
709
710 void MatchableInfo::formTwoOperandAlias(StringRef Constraint) {
711   // Figure out which operands are aliased and mark them as tied.
712   std::pair<StringRef, StringRef> Ops =
713     parseTwoOperandConstraint(Constraint, TheDef->getLoc());
714
715   // Find the AsmOperands that refer to the operands we're aliasing.
716   int SrcAsmOperand = findAsmOperandNamed(Ops.first);
717   int DstAsmOperand = findAsmOperandNamed(Ops.second);
718   if (SrcAsmOperand == -1)
719     PrintFatalError(TheDef->getLoc(),
720                   "unknown source two-operand alias operand '" +
721                   Ops.first.str() + "'.");
722   if (DstAsmOperand == -1)
723     PrintFatalError(TheDef->getLoc(),
724                   "unknown destination two-operand alias operand '" +
725                   Ops.second.str() + "'.");
726
727   // Find the ResOperand that refers to the operand we're aliasing away
728   // and update it to refer to the combined operand instead.
729   for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
730     ResOperand &Op = ResOperands[i];
731     if (Op.Kind == ResOperand::RenderAsmOperand &&
732         Op.AsmOperandNum == (unsigned)SrcAsmOperand) {
733       Op.AsmOperandNum = DstAsmOperand;
734       break;
735     }
736   }
737   // Remove the AsmOperand for the alias operand.
738   AsmOperands.erase(AsmOperands.begin() + SrcAsmOperand);
739   // Adjust the ResOperand references to any AsmOperands that followed
740   // the one we just deleted.
741   for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
742     ResOperand &Op = ResOperands[i];
743     switch(Op.Kind) {
744     default:
745       // Nothing to do for operands that don't reference AsmOperands.
746       break;
747     case ResOperand::RenderAsmOperand:
748       if (Op.AsmOperandNum > (unsigned)SrcAsmOperand)
749         --Op.AsmOperandNum;
750       break;
751     case ResOperand::TiedOperand:
752       if (Op.TiedOperandNum > (unsigned)SrcAsmOperand)
753         --Op.TiedOperandNum;
754       break;
755     }
756   }
757 }
758
759 void MatchableInfo::initialize(const AsmMatcherInfo &Info,
760                                SmallPtrSet<Record*, 16> &SingletonRegisters,
761                                int AsmVariantNo, std::string &RegisterPrefix) {
762   AsmVariantID = AsmVariantNo;
763   AsmString =
764     CodeGenInstruction::FlattenAsmStringVariants(AsmString, AsmVariantNo);
765
766   tokenizeAsmString(Info);
767
768   // Compute the require features.
769   std::vector<Record*> Predicates =TheDef->getValueAsListOfDefs("Predicates");
770   for (unsigned i = 0, e = Predicates.size(); i != e; ++i)
771     if (SubtargetFeatureInfo *Feature =
772         Info.getSubtargetFeature(Predicates[i]))
773       RequiredFeatures.push_back(Feature);
774
775   // Collect singleton registers, if used.
776   for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
777     extractSingletonRegisterForAsmOperand(i, Info, RegisterPrefix);
778     if (Record *Reg = AsmOperands[i].SingletonReg)
779       SingletonRegisters.insert(Reg);
780   }
781 }
782
783 /// tokenizeAsmString - Tokenize a simplified assembly string.
784 void MatchableInfo::tokenizeAsmString(const AsmMatcherInfo &Info) {
785   StringRef String = AsmString;
786   unsigned Prev = 0;
787   bool InTok = true;
788   for (unsigned i = 0, e = String.size(); i != e; ++i) {
789     switch (String[i]) {
790     case '[':
791     case ']':
792     case '*':
793     case '!':
794     case ' ':
795     case '\t':
796     case ',':
797       if (InTok) {
798         AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
799         InTok = false;
800       }
801       if (!isspace(String[i]) && String[i] != ',')
802         AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
803       Prev = i + 1;
804       break;
805
806     case '\\':
807       if (InTok) {
808         AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
809         InTok = false;
810       }
811       ++i;
812       assert(i != String.size() && "Invalid quoted character");
813       AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
814       Prev = i + 1;
815       break;
816
817     case '$': {
818       if (InTok) {
819         AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
820         InTok = false;
821       }
822
823       // If this isn't "${", treat like a normal token.
824       if (i + 1 == String.size() || String[i + 1] != '{') {
825         Prev = i;
826         break;
827       }
828
829       StringRef::iterator End = std::find(String.begin() + i, String.end(),'}');
830       assert(End != String.end() && "Missing brace in operand reference!");
831       size_t EndPos = End - String.begin();
832       AsmOperands.push_back(AsmOperand(String.slice(i, EndPos+1)));
833       Prev = EndPos + 1;
834       i = EndPos;
835       break;
836     }
837
838     case '.':
839       if (InTok)
840         AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
841       Prev = i;
842       InTok = true;
843       break;
844
845     default:
846       InTok = true;
847     }
848   }
849   if (InTok && Prev != String.size())
850     AsmOperands.push_back(AsmOperand(String.substr(Prev)));
851
852   // The first token of the instruction is the mnemonic, which must be a
853   // simple string, not a $foo variable or a singleton register.
854   if (AsmOperands.empty())
855     PrintFatalError(TheDef->getLoc(),
856                   "Instruction '" + TheDef->getName() + "' has no tokens");
857   Mnemonic = AsmOperands[0].Token;
858   if (Mnemonic.empty())
859     PrintFatalError(TheDef->getLoc(),
860                   "Missing instruction mnemonic");
861   // FIXME : Check and raise an error if it is a register.
862   if (Mnemonic[0] == '$')
863     PrintFatalError(TheDef->getLoc(),
864                   "Invalid instruction mnemonic '" + Mnemonic.str() + "'!");
865
866   // Remove the first operand, it is tracked in the mnemonic field.
867   AsmOperands.erase(AsmOperands.begin());
868 }
869
870 bool MatchableInfo::validate(StringRef CommentDelimiter, bool Hack) const {
871   // Reject matchables with no .s string.
872   if (AsmString.empty())
873     PrintFatalError(TheDef->getLoc(), "instruction with empty asm string");
874
875   // Reject any matchables with a newline in them, they should be marked
876   // isCodeGenOnly if they are pseudo instructions.
877   if (AsmString.find('\n') != std::string::npos)
878     PrintFatalError(TheDef->getLoc(),
879                   "multiline instruction is not valid for the asmparser, "
880                   "mark it isCodeGenOnly");
881
882   // Remove comments from the asm string.  We know that the asmstring only
883   // has one line.
884   if (!CommentDelimiter.empty() &&
885       StringRef(AsmString).find(CommentDelimiter) != StringRef::npos)
886     PrintFatalError(TheDef->getLoc(),
887                   "asmstring for instruction has comment character in it, "
888                   "mark it isCodeGenOnly");
889
890   // Reject matchables with operand modifiers, these aren't something we can
891   // handle, the target should be refactored to use operands instead of
892   // modifiers.
893   //
894   // Also, check for instructions which reference the operand multiple times;
895   // this implies a constraint we would not honor.
896   std::set<std::string> OperandNames;
897   for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
898     StringRef Tok = AsmOperands[i].Token;
899     if (Tok[0] == '$' && Tok.find(':') != StringRef::npos)
900       PrintFatalError(TheDef->getLoc(),
901                     "matchable with operand modifier '" + Tok.str() +
902                     "' not supported by asm matcher.  Mark isCodeGenOnly!");
903
904     // Verify that any operand is only mentioned once.
905     // We reject aliases and ignore instructions for now.
906     if (Tok[0] == '$' && !OperandNames.insert(Tok).second) {
907       if (!Hack)
908         PrintFatalError(TheDef->getLoc(),
909                       "ERROR: matchable with tied operand '" + Tok.str() +
910                       "' can never be matched!");
911       // FIXME: Should reject these.  The ARM backend hits this with $lane in a
912       // bunch of instructions.  It is unclear what the right answer is.
913       DEBUG({
914         errs() << "warning: '" << TheDef->getName() << "': "
915                << "ignoring instruction with tied operand '"
916                << Tok.str() << "'\n";
917       });
918       return false;
919     }
920   }
921
922   return true;
923 }
924
925 /// extractSingletonRegisterForAsmOperand - Extract singleton register,
926 /// if present, from specified token.
927 void MatchableInfo::
928 extractSingletonRegisterForAsmOperand(unsigned OperandNo,
929                                       const AsmMatcherInfo &Info,
930                                       std::string &RegisterPrefix) {
931   StringRef Tok = AsmOperands[OperandNo].Token;
932   if (RegisterPrefix.empty()) {
933     std::string LoweredTok = Tok.lower();
934     if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(LoweredTok))
935       AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
936     return;
937   }
938
939   if (!Tok.startswith(RegisterPrefix))
940     return;
941
942   StringRef RegName = Tok.substr(RegisterPrefix.size());
943   if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(RegName))
944     AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
945
946   // If there is no register prefix (i.e. "%" in "%eax"), then this may
947   // be some random non-register token, just ignore it.
948   return;
949 }
950
951 static std::string getEnumNameForToken(StringRef Str) {
952   std::string Res;
953
954   for (StringRef::iterator it = Str.begin(), ie = Str.end(); it != ie; ++it) {
955     switch (*it) {
956     case '*': Res += "_STAR_"; break;
957     case '%': Res += "_PCT_"; break;
958     case ':': Res += "_COLON_"; break;
959     case '!': Res += "_EXCLAIM_"; break;
960     case '.': Res += "_DOT_"; break;
961     case '<': Res += "_LT_"; break;
962     case '>': Res += "_GT_"; break;
963     default:
964       if ((*it >= 'A' && *it <= 'Z') ||
965           (*it >= 'a' && *it <= 'z') ||
966           (*it >= '0' && *it <= '9'))
967         Res += *it;
968       else
969         Res += "_" + utostr((unsigned) *it) + "_";
970     }
971   }
972
973   return Res;
974 }
975
976 ClassInfo *AsmMatcherInfo::getTokenClass(StringRef Token) {
977   ClassInfo *&Entry = TokenClasses[Token];
978
979   if (!Entry) {
980     Entry = new ClassInfo();
981     Entry->Kind = ClassInfo::Token;
982     Entry->ClassName = "Token";
983     Entry->Name = "MCK_" + getEnumNameForToken(Token);
984     Entry->ValueName = Token;
985     Entry->PredicateMethod = "<invalid>";
986     Entry->RenderMethod = "<invalid>";
987     Entry->ParserMethod = "";
988     Entry->DiagnosticType = "";
989     Classes.push_back(Entry);
990   }
991
992   return Entry;
993 }
994
995 ClassInfo *
996 AsmMatcherInfo::getOperandClass(const CGIOperandList::OperandInfo &OI,
997                                 int SubOpIdx) {
998   Record *Rec = OI.Rec;
999   if (SubOpIdx != -1)
1000     Rec = cast<DefInit>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
1001   return getOperandClass(Rec, SubOpIdx);
1002 }
1003
1004 ClassInfo *
1005 AsmMatcherInfo::getOperandClass(Record *Rec, int SubOpIdx) {
1006   if (Rec->isSubClassOf("RegisterOperand")) {
1007     // RegisterOperand may have an associated ParserMatchClass. If it does,
1008     // use it, else just fall back to the underlying register class.
1009     const RecordVal *R = Rec->getValue("ParserMatchClass");
1010     if (R == 0 || R->getValue() == 0)
1011       PrintFatalError("Record `" + Rec->getName() +
1012         "' does not have a ParserMatchClass!\n");
1013
1014     if (DefInit *DI= dyn_cast<DefInit>(R->getValue())) {
1015       Record *MatchClass = DI->getDef();
1016       if (ClassInfo *CI = AsmOperandClasses[MatchClass])
1017         return CI;
1018     }
1019
1020     // No custom match class. Just use the register class.
1021     Record *ClassRec = Rec->getValueAsDef("RegClass");
1022     if (!ClassRec)
1023       PrintFatalError(Rec->getLoc(), "RegisterOperand `" + Rec->getName() +
1024                     "' has no associated register class!\n");
1025     if (ClassInfo *CI = RegisterClassClasses[ClassRec])
1026       return CI;
1027     PrintFatalError(Rec->getLoc(), "register class has no class info!");
1028   }
1029
1030
1031   if (Rec->isSubClassOf("RegisterClass")) {
1032     if (ClassInfo *CI = RegisterClassClasses[Rec])
1033       return CI;
1034     PrintFatalError(Rec->getLoc(), "register class has no class info!");
1035   }
1036
1037   if (!Rec->isSubClassOf("Operand"))
1038     PrintFatalError(Rec->getLoc(), "Operand `" + Rec->getName() +
1039                   "' does not derive from class Operand!\n");
1040   Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
1041   if (ClassInfo *CI = AsmOperandClasses[MatchClass])
1042     return CI;
1043
1044   PrintFatalError(Rec->getLoc(), "operand has no match class!");
1045 }
1046
1047 void AsmMatcherInfo::
1048 buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters) {
1049   const std::vector<CodeGenRegister*> &Registers =
1050     Target.getRegBank().getRegisters();
1051   ArrayRef<CodeGenRegisterClass*> RegClassList =
1052     Target.getRegBank().getRegClasses();
1053
1054   // The register sets used for matching.
1055   std::set< std::set<Record*> > RegisterSets;
1056
1057   // Gather the defined sets.
1058   for (ArrayRef<CodeGenRegisterClass*>::const_iterator it =
1059        RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it)
1060     RegisterSets.insert(std::set<Record*>(
1061         (*it)->getOrder().begin(), (*it)->getOrder().end()));
1062
1063   // Add any required singleton sets.
1064   for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1065        ie = SingletonRegisters.end(); it != ie; ++it) {
1066     Record *Rec = *it;
1067     RegisterSets.insert(std::set<Record*>(&Rec, &Rec + 1));
1068   }
1069
1070   // Introduce derived sets where necessary (when a register does not determine
1071   // a unique register set class), and build the mapping of registers to the set
1072   // they should classify to.
1073   std::map<Record*, std::set<Record*> > RegisterMap;
1074   for (std::vector<CodeGenRegister*>::const_iterator it = Registers.begin(),
1075          ie = Registers.end(); it != ie; ++it) {
1076     const CodeGenRegister &CGR = **it;
1077     // Compute the intersection of all sets containing this register.
1078     std::set<Record*> ContainingSet;
1079
1080     for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1081            ie = RegisterSets.end(); it != ie; ++it) {
1082       if (!it->count(CGR.TheDef))
1083         continue;
1084
1085       if (ContainingSet.empty()) {
1086         ContainingSet = *it;
1087         continue;
1088       }
1089
1090       std::set<Record*> Tmp;
1091       std::swap(Tmp, ContainingSet);
1092       std::insert_iterator< std::set<Record*> > II(ContainingSet,
1093                                                    ContainingSet.begin());
1094       std::set_intersection(Tmp.begin(), Tmp.end(), it->begin(), it->end(), II);
1095     }
1096
1097     if (!ContainingSet.empty()) {
1098       RegisterSets.insert(ContainingSet);
1099       RegisterMap.insert(std::make_pair(CGR.TheDef, ContainingSet));
1100     }
1101   }
1102
1103   // Construct the register classes.
1104   std::map<std::set<Record*>, ClassInfo*> RegisterSetClasses;
1105   unsigned Index = 0;
1106   for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1107          ie = RegisterSets.end(); it != ie; ++it, ++Index) {
1108     ClassInfo *CI = new ClassInfo();
1109     CI->Kind = ClassInfo::RegisterClass0 + Index;
1110     CI->ClassName = "Reg" + utostr(Index);
1111     CI->Name = "MCK_Reg" + utostr(Index);
1112     CI->ValueName = "";
1113     CI->PredicateMethod = ""; // unused
1114     CI->RenderMethod = "addRegOperands";
1115     CI->Registers = *it;
1116     // FIXME: diagnostic type.
1117     CI->DiagnosticType = "";
1118     Classes.push_back(CI);
1119     RegisterSetClasses.insert(std::make_pair(*it, CI));
1120   }
1121
1122   // Find the superclasses; we could compute only the subgroup lattice edges,
1123   // but there isn't really a point.
1124   for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1125          ie = RegisterSets.end(); it != ie; ++it) {
1126     ClassInfo *CI = RegisterSetClasses[*it];
1127     for (std::set< std::set<Record*> >::iterator it2 = RegisterSets.begin(),
1128            ie2 = RegisterSets.end(); it2 != ie2; ++it2)
1129       if (*it != *it2 &&
1130           std::includes(it2->begin(), it2->end(), it->begin(), it->end()))
1131         CI->SuperClasses.push_back(RegisterSetClasses[*it2]);
1132   }
1133
1134   // Name the register classes which correspond to a user defined RegisterClass.
1135   for (ArrayRef<CodeGenRegisterClass*>::const_iterator
1136        it = RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it) {
1137     const CodeGenRegisterClass &RC = **it;
1138     // Def will be NULL for non-user defined register classes.
1139     Record *Def = RC.getDef();
1140     if (!Def)
1141       continue;
1142     ClassInfo *CI = RegisterSetClasses[std::set<Record*>(RC.getOrder().begin(),
1143                                                          RC.getOrder().end())];
1144     if (CI->ValueName.empty()) {
1145       CI->ClassName = RC.getName();
1146       CI->Name = "MCK_" + RC.getName();
1147       CI->ValueName = RC.getName();
1148     } else
1149       CI->ValueName = CI->ValueName + "," + RC.getName();
1150
1151     RegisterClassClasses.insert(std::make_pair(Def, CI));
1152   }
1153
1154   // Populate the map for individual registers.
1155   for (std::map<Record*, std::set<Record*> >::iterator it = RegisterMap.begin(),
1156          ie = RegisterMap.end(); it != ie; ++it)
1157     RegisterClasses[it->first] = RegisterSetClasses[it->second];
1158
1159   // Name the register classes which correspond to singleton registers.
1160   for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1161          ie = SingletonRegisters.end(); it != ie; ++it) {
1162     Record *Rec = *it;
1163     ClassInfo *CI = RegisterClasses[Rec];
1164     assert(CI && "Missing singleton register class info!");
1165
1166     if (CI->ValueName.empty()) {
1167       CI->ClassName = Rec->getName();
1168       CI->Name = "MCK_" + Rec->getName();
1169       CI->ValueName = Rec->getName();
1170     } else
1171       CI->ValueName = CI->ValueName + "," + Rec->getName();
1172   }
1173 }
1174
1175 void AsmMatcherInfo::buildOperandClasses() {
1176   std::vector<Record*> AsmOperands =
1177     Records.getAllDerivedDefinitions("AsmOperandClass");
1178
1179   // Pre-populate AsmOperandClasses map.
1180   for (std::vector<Record*>::iterator it = AsmOperands.begin(),
1181          ie = AsmOperands.end(); it != ie; ++it)
1182     AsmOperandClasses[*it] = new ClassInfo();
1183
1184   unsigned Index = 0;
1185   for (std::vector<Record*>::iterator it = AsmOperands.begin(),
1186          ie = AsmOperands.end(); it != ie; ++it, ++Index) {
1187     ClassInfo *CI = AsmOperandClasses[*it];
1188     CI->Kind = ClassInfo::UserClass0 + Index;
1189
1190     ListInit *Supers = (*it)->getValueAsListInit("SuperClasses");
1191     for (unsigned i = 0, e = Supers->getSize(); i != e; ++i) {
1192       DefInit *DI = dyn_cast<DefInit>(Supers->getElement(i));
1193       if (!DI) {
1194         PrintError((*it)->getLoc(), "Invalid super class reference!");
1195         continue;
1196       }
1197
1198       ClassInfo *SC = AsmOperandClasses[DI->getDef()];
1199       if (!SC)
1200         PrintError((*it)->getLoc(), "Invalid super class reference!");
1201       else
1202         CI->SuperClasses.push_back(SC);
1203     }
1204     CI->ClassName = (*it)->getValueAsString("Name");
1205     CI->Name = "MCK_" + CI->ClassName;
1206     CI->ValueName = (*it)->getName();
1207
1208     // Get or construct the predicate method name.
1209     Init *PMName = (*it)->getValueInit("PredicateMethod");
1210     if (StringInit *SI = dyn_cast<StringInit>(PMName)) {
1211       CI->PredicateMethod = SI->getValue();
1212     } else {
1213       assert(isa<UnsetInit>(PMName) && "Unexpected PredicateMethod field!");
1214       CI->PredicateMethod = "is" + CI->ClassName;
1215     }
1216
1217     // Get or construct the render method name.
1218     Init *RMName = (*it)->getValueInit("RenderMethod");
1219     if (StringInit *SI = dyn_cast<StringInit>(RMName)) {
1220       CI->RenderMethod = SI->getValue();
1221     } else {
1222       assert(isa<UnsetInit>(RMName) && "Unexpected RenderMethod field!");
1223       CI->RenderMethod = "add" + CI->ClassName + "Operands";
1224     }
1225
1226     // Get the parse method name or leave it as empty.
1227     Init *PRMName = (*it)->getValueInit("ParserMethod");
1228     if (StringInit *SI = dyn_cast<StringInit>(PRMName))
1229       CI->ParserMethod = SI->getValue();
1230
1231     // Get the diagnostic type or leave it as empty.
1232     // Get the parse method name or leave it as empty.
1233     Init *DiagnosticType = (*it)->getValueInit("DiagnosticType");
1234     if (StringInit *SI = dyn_cast<StringInit>(DiagnosticType))
1235       CI->DiagnosticType = SI->getValue();
1236
1237     AsmOperandClasses[*it] = CI;
1238     Classes.push_back(CI);
1239   }
1240 }
1241
1242 AsmMatcherInfo::AsmMatcherInfo(Record *asmParser,
1243                                CodeGenTarget &target,
1244                                RecordKeeper &records)
1245   : Records(records), AsmParser(asmParser), Target(target) {
1246 }
1247
1248 /// buildOperandMatchInfo - Build the necessary information to handle user
1249 /// defined operand parsing methods.
1250 void AsmMatcherInfo::buildOperandMatchInfo() {
1251
1252   /// Map containing a mask with all operands indices that can be found for
1253   /// that class inside a instruction.
1254   typedef std::map<ClassInfo*, unsigned, LessClassInfoPtr> OpClassMaskTy;
1255   OpClassMaskTy OpClassMask;
1256
1257   for (std::vector<MatchableInfo*>::const_iterator it =
1258        Matchables.begin(), ie = Matchables.end();
1259        it != ie; ++it) {
1260     MatchableInfo &II = **it;
1261     OpClassMask.clear();
1262
1263     // Keep track of all operands of this instructions which belong to the
1264     // same class.
1265     for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
1266       MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
1267       if (Op.Class->ParserMethod.empty())
1268         continue;
1269       unsigned &OperandMask = OpClassMask[Op.Class];
1270       OperandMask |= (1 << i);
1271     }
1272
1273     // Generate operand match info for each mnemonic/operand class pair.
1274     for (OpClassMaskTy::iterator iit = OpClassMask.begin(),
1275          iie = OpClassMask.end(); iit != iie; ++iit) {
1276       unsigned OpMask = iit->second;
1277       ClassInfo *CI = iit->first;
1278       OperandMatchInfo.push_back(OperandMatchEntry::create(&II, CI, OpMask));
1279     }
1280   }
1281 }
1282
1283 void AsmMatcherInfo::buildInfo() {
1284   // Build information about all of the AssemblerPredicates.
1285   std::vector<Record*> AllPredicates =
1286     Records.getAllDerivedDefinitions("Predicate");
1287   for (unsigned i = 0, e = AllPredicates.size(); i != e; ++i) {
1288     Record *Pred = AllPredicates[i];
1289     // Ignore predicates that are not intended for the assembler.
1290     if (!Pred->getValueAsBit("AssemblerMatcherPredicate"))
1291       continue;
1292
1293     if (Pred->getName().empty())
1294       PrintFatalError(Pred->getLoc(), "Predicate has no name!");
1295
1296     unsigned FeatureNo = SubtargetFeatures.size();
1297     SubtargetFeatures[Pred] = new SubtargetFeatureInfo(Pred, FeatureNo);
1298     assert(FeatureNo < 32 && "Too many subtarget features!");
1299   }
1300
1301   // Parse the instructions; we need to do this first so that we can gather the
1302   // singleton register classes.
1303   SmallPtrSet<Record*, 16> SingletonRegisters;
1304   unsigned VariantCount = Target.getAsmParserVariantCount();
1305   for (unsigned VC = 0; VC != VariantCount; ++VC) {
1306     Record *AsmVariant = Target.getAsmParserVariant(VC);
1307     std::string CommentDelimiter =
1308       AsmVariant->getValueAsString("CommentDelimiter");
1309     std::string RegisterPrefix = AsmVariant->getValueAsString("RegisterPrefix");
1310     int AsmVariantNo = AsmVariant->getValueAsInt("Variant");
1311
1312     for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
1313            E = Target.inst_end(); I != E; ++I) {
1314       const CodeGenInstruction &CGI = **I;
1315
1316       // If the tblgen -match-prefix option is specified (for tblgen hackers),
1317       // filter the set of instructions we consider.
1318       if (!StringRef(CGI.TheDef->getName()).startswith(MatchPrefix))
1319         continue;
1320
1321       // Ignore "codegen only" instructions.
1322       if (CGI.TheDef->getValueAsBit("isCodeGenOnly"))
1323         continue;
1324
1325       // Validate the operand list to ensure we can handle this instruction.
1326       for (unsigned i = 0, e = CGI.Operands.size(); i != e; ++i) {
1327         const CGIOperandList::OperandInfo &OI = CGI.Operands[i];
1328
1329         // Validate tied operands.
1330         if (OI.getTiedRegister() != -1) {
1331           // If we have a tied operand that consists of multiple MCOperands,
1332           // reject it.  We reject aliases and ignore instructions for now.
1333           if (OI.MINumOperands != 1) {
1334             // FIXME: Should reject these.  The ARM backend hits this with $lane
1335             // in a bunch of instructions. The right answer is unclear.
1336             DEBUG({
1337                 errs() << "warning: '" << CGI.TheDef->getName() << "': "
1338                      << "ignoring instruction with multi-operand tied operand '"
1339                      << OI.Name << "'\n";
1340               });
1341             continue;
1342           }
1343         }
1344       }
1345
1346       OwningPtr<MatchableInfo> II(new MatchableInfo(CGI));
1347
1348       II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
1349
1350       // Ignore instructions which shouldn't be matched and diagnose invalid
1351       // instruction definitions with an error.
1352       if (!II->validate(CommentDelimiter, true))
1353         continue;
1354
1355       // Ignore "Int_*" and "*_Int" instructions, which are internal aliases.
1356       //
1357       // FIXME: This is a total hack.
1358       if (StringRef(II->TheDef->getName()).startswith("Int_") ||
1359           StringRef(II->TheDef->getName()).endswith("_Int"))
1360         continue;
1361
1362       Matchables.push_back(II.take());
1363     }
1364
1365     // Parse all of the InstAlias definitions and stick them in the list of
1366     // matchables.
1367     std::vector<Record*> AllInstAliases =
1368       Records.getAllDerivedDefinitions("InstAlias");
1369     for (unsigned i = 0, e = AllInstAliases.size(); i != e; ++i) {
1370       CodeGenInstAlias *Alias = new CodeGenInstAlias(AllInstAliases[i], Target);
1371
1372       // If the tblgen -match-prefix option is specified (for tblgen hackers),
1373       // filter the set of instruction aliases we consider, based on the target
1374       // instruction.
1375       if (!StringRef(Alias->ResultInst->TheDef->getName())
1376             .startswith( MatchPrefix))
1377         continue;
1378
1379       OwningPtr<MatchableInfo> II(new MatchableInfo(Alias));
1380
1381       II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
1382
1383       // Validate the alias definitions.
1384       II->validate(CommentDelimiter, false);
1385
1386       Matchables.push_back(II.take());
1387     }
1388   }
1389
1390   // Build info for the register classes.
1391   buildRegisterClasses(SingletonRegisters);
1392
1393   // Build info for the user defined assembly operand classes.
1394   buildOperandClasses();
1395
1396   // Build the information about matchables, now that we have fully formed
1397   // classes.
1398   std::vector<MatchableInfo*> NewMatchables;
1399   for (std::vector<MatchableInfo*>::iterator it = Matchables.begin(),
1400          ie = Matchables.end(); it != ie; ++it) {
1401     MatchableInfo *II = *it;
1402
1403     // Parse the tokens after the mnemonic.
1404     // Note: buildInstructionOperandReference may insert new AsmOperands, so
1405     // don't precompute the loop bound.
1406     for (unsigned i = 0; i != II->AsmOperands.size(); ++i) {
1407       MatchableInfo::AsmOperand &Op = II->AsmOperands[i];
1408       StringRef Token = Op.Token;
1409
1410       // Check for singleton registers.
1411       if (Record *RegRecord = II->AsmOperands[i].SingletonReg) {
1412         Op.Class = RegisterClasses[RegRecord];
1413         assert(Op.Class && Op.Class->Registers.size() == 1 &&
1414                "Unexpected class for singleton register");
1415         continue;
1416       }
1417
1418       // Check for simple tokens.
1419       if (Token[0] != '$') {
1420         Op.Class = getTokenClass(Token);
1421         continue;
1422       }
1423
1424       if (Token.size() > 1 && isdigit(Token[1])) {
1425         Op.Class = getTokenClass(Token);
1426         continue;
1427       }
1428
1429       // Otherwise this is an operand reference.
1430       StringRef OperandName;
1431       if (Token[1] == '{')
1432         OperandName = Token.substr(2, Token.size() - 3);
1433       else
1434         OperandName = Token.substr(1);
1435
1436       if (II->DefRec.is<const CodeGenInstruction*>())
1437         buildInstructionOperandReference(II, OperandName, i);
1438       else
1439         buildAliasOperandReference(II, OperandName, Op);
1440     }
1441
1442     if (II->DefRec.is<const CodeGenInstruction*>()) {
1443       II->buildInstructionResultOperands();
1444       // If the instruction has a two-operand alias, build up the
1445       // matchable here. We'll add them in bulk at the end to avoid
1446       // confusing this loop.
1447       std::string Constraint =
1448         II->TheDef->getValueAsString("TwoOperandAliasConstraint");
1449       if (Constraint != "") {
1450         // Start by making a copy of the original matchable.
1451         OwningPtr<MatchableInfo> AliasII(new MatchableInfo(*II));
1452
1453         // Adjust it to be a two-operand alias.
1454         AliasII->formTwoOperandAlias(Constraint);
1455
1456         // Add the alias to the matchables list.
1457         NewMatchables.push_back(AliasII.take());
1458       }
1459     } else
1460       II->buildAliasResultOperands();
1461   }
1462   if (!NewMatchables.empty())
1463     Matchables.insert(Matchables.end(), NewMatchables.begin(),
1464                       NewMatchables.end());
1465
1466   // Process token alias definitions and set up the associated superclass
1467   // information.
1468   std::vector<Record*> AllTokenAliases =
1469     Records.getAllDerivedDefinitions("TokenAlias");
1470   for (unsigned i = 0, e = AllTokenAliases.size(); i != e; ++i) {
1471     Record *Rec = AllTokenAliases[i];
1472     ClassInfo *FromClass = getTokenClass(Rec->getValueAsString("FromToken"));
1473     ClassInfo *ToClass = getTokenClass(Rec->getValueAsString("ToToken"));
1474     if (FromClass == ToClass)
1475       PrintFatalError(Rec->getLoc(),
1476                     "error: Destination value identical to source value.");
1477     FromClass->SuperClasses.push_back(ToClass);
1478   }
1479
1480   // Reorder classes so that classes precede super classes.
1481   std::sort(Classes.begin(), Classes.end(), less_ptr<ClassInfo>());
1482 }
1483
1484 /// buildInstructionOperandReference - The specified operand is a reference to a
1485 /// named operand such as $src.  Resolve the Class and OperandInfo pointers.
1486 void AsmMatcherInfo::
1487 buildInstructionOperandReference(MatchableInfo *II,
1488                                  StringRef OperandName,
1489                                  unsigned AsmOpIdx) {
1490   const CodeGenInstruction &CGI = *II->DefRec.get<const CodeGenInstruction*>();
1491   const CGIOperandList &Operands = CGI.Operands;
1492   MatchableInfo::AsmOperand *Op = &II->AsmOperands[AsmOpIdx];
1493
1494   // Map this token to an operand.
1495   unsigned Idx;
1496   if (!Operands.hasOperandNamed(OperandName, Idx))
1497     PrintFatalError(II->TheDef->getLoc(), "error: unable to find operand: '" +
1498                   OperandName.str() + "'");
1499
1500   // If the instruction operand has multiple suboperands, but the parser
1501   // match class for the asm operand is still the default "ImmAsmOperand",
1502   // then handle each suboperand separately.
1503   if (Op->SubOpIdx == -1 && Operands[Idx].MINumOperands > 1) {
1504     Record *Rec = Operands[Idx].Rec;
1505     assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
1506     Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
1507     if (MatchClass && MatchClass->getValueAsString("Name") == "Imm") {
1508       // Insert remaining suboperands after AsmOpIdx in II->AsmOperands.
1509       StringRef Token = Op->Token; // save this in case Op gets moved
1510       for (unsigned SI = 1, SE = Operands[Idx].MINumOperands; SI != SE; ++SI) {
1511         MatchableInfo::AsmOperand NewAsmOp(Token);
1512         NewAsmOp.SubOpIdx = SI;
1513         II->AsmOperands.insert(II->AsmOperands.begin()+AsmOpIdx+SI, NewAsmOp);
1514       }
1515       // Replace Op with first suboperand.
1516       Op = &II->AsmOperands[AsmOpIdx]; // update the pointer in case it moved
1517       Op->SubOpIdx = 0;
1518     }
1519   }
1520
1521   // Set up the operand class.
1522   Op->Class = getOperandClass(Operands[Idx], Op->SubOpIdx);
1523
1524   // If the named operand is tied, canonicalize it to the untied operand.
1525   // For example, something like:
1526   //   (outs GPR:$dst), (ins GPR:$src)
1527   // with an asmstring of
1528   //   "inc $src"
1529   // we want to canonicalize to:
1530   //   "inc $dst"
1531   // so that we know how to provide the $dst operand when filling in the result.
1532   int OITied = Operands[Idx].getTiedRegister();
1533   if (OITied != -1) {
1534     // The tied operand index is an MIOperand index, find the operand that
1535     // contains it.
1536     std::pair<unsigned, unsigned> Idx = Operands.getSubOperandNumber(OITied);
1537     OperandName = Operands[Idx.first].Name;
1538     Op->SubOpIdx = Idx.second;
1539   }
1540
1541   Op->SrcOpName = OperandName;
1542 }
1543
1544 /// buildAliasOperandReference - When parsing an operand reference out of the
1545 /// matching string (e.g. "movsx $src, $dst"), determine what the class of the
1546 /// operand reference is by looking it up in the result pattern definition.
1547 void AsmMatcherInfo::buildAliasOperandReference(MatchableInfo *II,
1548                                                 StringRef OperandName,
1549                                                 MatchableInfo::AsmOperand &Op) {
1550   const CodeGenInstAlias &CGA = *II->DefRec.get<const CodeGenInstAlias*>();
1551
1552   // Set up the operand class.
1553   for (unsigned i = 0, e = CGA.ResultOperands.size(); i != e; ++i)
1554     if (CGA.ResultOperands[i].isRecord() &&
1555         CGA.ResultOperands[i].getName() == OperandName) {
1556       // It's safe to go with the first one we find, because CodeGenInstAlias
1557       // validates that all operands with the same name have the same record.
1558       Op.SubOpIdx = CGA.ResultInstOperandIndex[i].second;
1559       // Use the match class from the Alias definition, not the
1560       // destination instruction, as we may have an immediate that's
1561       // being munged by the match class.
1562       Op.Class = getOperandClass(CGA.ResultOperands[i].getRecord(),
1563                                  Op.SubOpIdx);
1564       Op.SrcOpName = OperandName;
1565       return;
1566     }
1567
1568   PrintFatalError(II->TheDef->getLoc(), "error: unable to find operand: '" +
1569                 OperandName.str() + "'");
1570 }
1571
1572 void MatchableInfo::buildInstructionResultOperands() {
1573   const CodeGenInstruction *ResultInst = getResultInst();
1574
1575   // Loop over all operands of the result instruction, determining how to
1576   // populate them.
1577   for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
1578     const CGIOperandList::OperandInfo &OpInfo = ResultInst->Operands[i];
1579
1580     // If this is a tied operand, just copy from the previously handled operand.
1581     int TiedOp = OpInfo.getTiedRegister();
1582     if (TiedOp != -1) {
1583       ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
1584       continue;
1585     }
1586
1587     // Find out what operand from the asmparser this MCInst operand comes from.
1588     int SrcOperand = findAsmOperandNamed(OpInfo.Name);
1589     if (OpInfo.Name.empty() || SrcOperand == -1)
1590       PrintFatalError(TheDef->getLoc(), "Instruction '" +
1591                     TheDef->getName() + "' has operand '" + OpInfo.Name +
1592                     "' that doesn't appear in asm string!");
1593
1594     // Check if the one AsmOperand populates the entire operand.
1595     unsigned NumOperands = OpInfo.MINumOperands;
1596     if (AsmOperands[SrcOperand].SubOpIdx == -1) {
1597       ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand, NumOperands));
1598       continue;
1599     }
1600
1601     // Add a separate ResOperand for each suboperand.
1602     for (unsigned AI = 0; AI < NumOperands; ++AI) {
1603       assert(AsmOperands[SrcOperand+AI].SubOpIdx == (int)AI &&
1604              AsmOperands[SrcOperand+AI].SrcOpName == OpInfo.Name &&
1605              "unexpected AsmOperands for suboperands");
1606       ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand + AI, 1));
1607     }
1608   }
1609 }
1610
1611 void MatchableInfo::buildAliasResultOperands() {
1612   const CodeGenInstAlias &CGA = *DefRec.get<const CodeGenInstAlias*>();
1613   const CodeGenInstruction *ResultInst = getResultInst();
1614
1615   // Loop over all operands of the result instruction, determining how to
1616   // populate them.
1617   unsigned AliasOpNo = 0;
1618   unsigned LastOpNo = CGA.ResultInstOperandIndex.size();
1619   for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
1620     const CGIOperandList::OperandInfo *OpInfo = &ResultInst->Operands[i];
1621
1622     // If this is a tied operand, just copy from the previously handled operand.
1623     int TiedOp = OpInfo->getTiedRegister();
1624     if (TiedOp != -1) {
1625       ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
1626       continue;
1627     }
1628
1629     // Handle all the suboperands for this operand.
1630     const std::string &OpName = OpInfo->Name;
1631     for ( ; AliasOpNo <  LastOpNo &&
1632             CGA.ResultInstOperandIndex[AliasOpNo].first == i; ++AliasOpNo) {
1633       int SubIdx = CGA.ResultInstOperandIndex[AliasOpNo].second;
1634
1635       // Find out what operand from the asmparser that this MCInst operand
1636       // comes from.
1637       switch (CGA.ResultOperands[AliasOpNo].Kind) {
1638       case CodeGenInstAlias::ResultOperand::K_Record: {
1639         StringRef Name = CGA.ResultOperands[AliasOpNo].getName();
1640         int SrcOperand = findAsmOperand(Name, SubIdx);
1641         if (SrcOperand == -1)
1642           PrintFatalError(TheDef->getLoc(), "Instruction '" +
1643                         TheDef->getName() + "' has operand '" + OpName +
1644                         "' that doesn't appear in asm string!");
1645         unsigned NumOperands = (SubIdx == -1 ? OpInfo->MINumOperands : 1);
1646         ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand,
1647                                                         NumOperands));
1648         break;
1649       }
1650       case CodeGenInstAlias::ResultOperand::K_Imm: {
1651         int64_t ImmVal = CGA.ResultOperands[AliasOpNo].getImm();
1652         ResOperands.push_back(ResOperand::getImmOp(ImmVal));
1653         break;
1654       }
1655       case CodeGenInstAlias::ResultOperand::K_Reg: {
1656         Record *Reg = CGA.ResultOperands[AliasOpNo].getRegister();
1657         ResOperands.push_back(ResOperand::getRegOp(Reg));
1658         break;
1659       }
1660       }
1661     }
1662   }
1663 }
1664
1665 static unsigned getConverterOperandID(const std::string &Name,
1666                                       SetVector<std::string> &Table,
1667                                       bool &IsNew) {
1668   IsNew = Table.insert(Name);
1669
1670   unsigned ID = IsNew ? Table.size() - 1 :
1671     std::find(Table.begin(), Table.end(), Name) - Table.begin();
1672
1673   assert(ID < Table.size());
1674
1675   return ID;
1676 }
1677
1678
1679 static void emitConvertFuncs(CodeGenTarget &Target, StringRef ClassName,
1680                              std::vector<MatchableInfo*> &Infos,
1681                              raw_ostream &OS) {
1682   SetVector<std::string> OperandConversionKinds;
1683   SetVector<std::string> InstructionConversionKinds;
1684   std::vector<std::vector<uint8_t> > ConversionTable;
1685   size_t MaxRowLength = 2; // minimum is custom converter plus terminator.
1686
1687   // TargetOperandClass - This is the target's operand class, like X86Operand.
1688   std::string TargetOperandClass = Target.getName() + "Operand";
1689
1690   // Write the convert function to a separate stream, so we can drop it after
1691   // the enum. We'll build up the conversion handlers for the individual
1692   // operand types opportunistically as we encounter them.
1693   std::string ConvertFnBody;
1694   raw_string_ostream CvtOS(ConvertFnBody);
1695   // Start the unified conversion function.
1696   CvtOS << "void " << Target.getName() << ClassName << "::\n"
1697         << "convertToMCInst(unsigned Kind, MCInst &Inst, "
1698         << "unsigned Opcode,\n"
1699         << "                const SmallVectorImpl<MCParsedAsmOperand*"
1700         << "> &Operands) {\n"
1701         << "  assert(Kind < CVT_NUM_SIGNATURES && \"Invalid signature!\");\n"
1702         << "  const uint8_t *Converter = ConversionTable[Kind];\n"
1703         << "  Inst.setOpcode(Opcode);\n"
1704         << "  for (const uint8_t *p = Converter; *p; p+= 2) {\n"
1705         << "    switch (*p) {\n"
1706         << "    default: llvm_unreachable(\"invalid conversion entry!\");\n"
1707         << "    case CVT_Reg:\n"
1708         << "      static_cast<" << TargetOperandClass
1709         << "*>(Operands[*(p + 1)])->addRegOperands(Inst, 1);\n"
1710         << "      break;\n"
1711         << "    case CVT_Tied:\n"
1712         << "      Inst.addOperand(Inst.getOperand(*(p + 1)));\n"
1713         << "      break;\n";
1714
1715   std::string OperandFnBody;
1716   raw_string_ostream OpOS(OperandFnBody);
1717   // Start the operand number lookup function.
1718   OpOS << "void " << Target.getName() << ClassName << "::\n"
1719        << "convertToMapAndConstraints(unsigned Kind,\n";
1720   OpOS.indent(27);
1721   OpOS << "const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {\n"
1722        << "  assert(Kind < CVT_NUM_SIGNATURES && \"Invalid signature!\");\n"
1723        << "  unsigned NumMCOperands = 0;\n"
1724        << "  const uint8_t *Converter = ConversionTable[Kind];\n"
1725        << "  for (const uint8_t *p = Converter; *p; p+= 2) {\n"
1726        << "    switch (*p) {\n"
1727        << "    default: llvm_unreachable(\"invalid conversion entry!\");\n"
1728        << "    case CVT_Reg:\n"
1729        << "      Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1730        << "      Operands[*(p + 1)]->setConstraint(\"m\");\n"
1731        << "      ++NumMCOperands;\n"
1732        << "      break;\n"
1733        << "    case CVT_Tied:\n"
1734        << "      ++NumMCOperands;\n"
1735        << "      break;\n";
1736
1737   // Pre-populate the operand conversion kinds with the standard always
1738   // available entries.
1739   OperandConversionKinds.insert("CVT_Done");
1740   OperandConversionKinds.insert("CVT_Reg");
1741   OperandConversionKinds.insert("CVT_Tied");
1742   enum { CVT_Done, CVT_Reg, CVT_Tied };
1743
1744   for (std::vector<MatchableInfo*>::const_iterator it = Infos.begin(),
1745          ie = Infos.end(); it != ie; ++it) {
1746     MatchableInfo &II = **it;
1747
1748     // Check if we have a custom match function.
1749     std::string AsmMatchConverter =
1750       II.getResultInst()->TheDef->getValueAsString("AsmMatchConverter");
1751     if (!AsmMatchConverter.empty()) {
1752       std::string Signature = "ConvertCustom_" + AsmMatchConverter;
1753       II.ConversionFnKind = Signature;
1754
1755       // Check if we have already generated this signature.
1756       if (!InstructionConversionKinds.insert(Signature))
1757         continue;
1758
1759       // Remember this converter for the kind enum.
1760       unsigned KindID = OperandConversionKinds.size();
1761       OperandConversionKinds.insert("CVT_" +
1762                                     getEnumNameForToken(AsmMatchConverter));
1763
1764       // Add the converter row for this instruction.
1765       ConversionTable.push_back(std::vector<uint8_t>());
1766       ConversionTable.back().push_back(KindID);
1767       ConversionTable.back().push_back(CVT_Done);
1768
1769       // Add the handler to the conversion driver function.
1770       CvtOS << "    case CVT_"
1771             << getEnumNameForToken(AsmMatchConverter) << ":\n"
1772             << "      " << AsmMatchConverter << "(Inst, Operands);\n"
1773             << "      break;\n";
1774
1775       // FIXME: Handle the operand number lookup for custom match functions.
1776       continue;
1777     }
1778
1779     // Build the conversion function signature.
1780     std::string Signature = "Convert";
1781
1782     std::vector<uint8_t> ConversionRow;
1783
1784     // Compute the convert enum and the case body.
1785     MaxRowLength = std::max(MaxRowLength, II.ResOperands.size()*2 + 1 );
1786
1787     for (unsigned i = 0, e = II.ResOperands.size(); i != e; ++i) {
1788       const MatchableInfo::ResOperand &OpInfo = II.ResOperands[i];
1789
1790       // Generate code to populate each result operand.
1791       switch (OpInfo.Kind) {
1792       case MatchableInfo::ResOperand::RenderAsmOperand: {
1793         // This comes from something we parsed.
1794         MatchableInfo::AsmOperand &Op = II.AsmOperands[OpInfo.AsmOperandNum];
1795
1796         // Registers are always converted the same, don't duplicate the
1797         // conversion function based on them.
1798         Signature += "__";
1799         std::string Class;
1800         Class = Op.Class->isRegisterClass() ? "Reg" : Op.Class->ClassName;
1801         Signature += Class;
1802         Signature += utostr(OpInfo.MINumOperands);
1803         Signature += "_" + itostr(OpInfo.AsmOperandNum);
1804
1805         // Add the conversion kind, if necessary, and get the associated ID
1806         // the index of its entry in the vector).
1807         std::string Name = "CVT_" + (Op.Class->isRegisterClass() ? "Reg" :
1808                                      Op.Class->RenderMethod);
1809         Name = getEnumNameForToken(Name);
1810
1811         bool IsNewConverter = false;
1812         unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1813                                             IsNewConverter);
1814
1815         // Add the operand entry to the instruction kind conversion row.
1816         ConversionRow.push_back(ID);
1817         ConversionRow.push_back(OpInfo.AsmOperandNum + 1);
1818
1819         if (!IsNewConverter)
1820           break;
1821
1822         // This is a new operand kind. Add a handler for it to the
1823         // converter driver.
1824         CvtOS << "    case " << Name << ":\n"
1825               << "      static_cast<" << TargetOperandClass
1826               << "*>(Operands[*(p + 1)])->"
1827               << Op.Class->RenderMethod << "(Inst, " << OpInfo.MINumOperands
1828               << ");\n"
1829               << "      break;\n";
1830
1831         // Add a handler for the operand number lookup.
1832         OpOS << "    case " << Name << ":\n"
1833              << "      Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1834              << "      Operands[*(p + 1)]->setConstraint(\"m\");\n"
1835              << "      NumMCOperands += " << OpInfo.MINumOperands << ";\n"
1836              << "      break;\n";
1837         break;
1838       }
1839       case MatchableInfo::ResOperand::TiedOperand: {
1840         // If this operand is tied to a previous one, just copy the MCInst
1841         // operand from the earlier one.We can only tie single MCOperand values.
1842         //assert(OpInfo.MINumOperands == 1 && "Not a singular MCOperand");
1843         unsigned TiedOp = OpInfo.TiedOperandNum;
1844         assert(i > TiedOp && "Tied operand precedes its target!");
1845         Signature += "__Tie" + utostr(TiedOp);
1846         ConversionRow.push_back(CVT_Tied);
1847         ConversionRow.push_back(TiedOp);
1848         // FIXME: Handle the operand number lookup for tied operands.
1849         break;
1850       }
1851       case MatchableInfo::ResOperand::ImmOperand: {
1852         int64_t Val = OpInfo.ImmVal;
1853         std::string Ty = "imm_" + itostr(Val);
1854         Signature += "__" + Ty;
1855
1856         std::string Name = "CVT_" + Ty;
1857         bool IsNewConverter = false;
1858         unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1859                                             IsNewConverter);
1860         // Add the operand entry to the instruction kind conversion row.
1861         ConversionRow.push_back(ID);
1862         ConversionRow.push_back(0);
1863
1864         if (!IsNewConverter)
1865           break;
1866
1867         CvtOS << "    case " << Name << ":\n"
1868               << "      Inst.addOperand(MCOperand::CreateImm(" << Val << "));\n"
1869               << "      break;\n";
1870
1871         OpOS << "    case " << Name << ":\n"
1872              << "      Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1873              << "      Operands[*(p + 1)]->setConstraint(\"\");\n"
1874              << "      ++NumMCOperands;\n"
1875              << "      break;\n";
1876         break;
1877       }
1878       case MatchableInfo::ResOperand::RegOperand: {
1879         std::string Reg, Name;
1880         if (OpInfo.Register == 0) {
1881           Name = "reg0";
1882           Reg = "0";
1883         } else {
1884           Reg = getQualifiedName(OpInfo.Register);
1885           Name = "reg" + OpInfo.Register->getName();
1886         }
1887         Signature += "__" + Name;
1888         Name = "CVT_" + Name;
1889         bool IsNewConverter = false;
1890         unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1891                                             IsNewConverter);
1892         // Add the operand entry to the instruction kind conversion row.
1893         ConversionRow.push_back(ID);
1894         ConversionRow.push_back(0);
1895
1896         if (!IsNewConverter)
1897           break;
1898         CvtOS << "    case " << Name << ":\n"
1899               << "      Inst.addOperand(MCOperand::CreateReg(" << Reg << "));\n"
1900               << "      break;\n";
1901
1902         OpOS << "    case " << Name << ":\n"
1903              << "      Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1904              << "      Operands[*(p + 1)]->setConstraint(\"m\");\n"
1905              << "      ++NumMCOperands;\n"
1906              << "      break;\n";
1907       }
1908       }
1909     }
1910
1911     // If there were no operands, add to the signature to that effect
1912     if (Signature == "Convert")
1913       Signature += "_NoOperands";
1914
1915     II.ConversionFnKind = Signature;
1916
1917     // Save the signature. If we already have it, don't add a new row
1918     // to the table.
1919     if (!InstructionConversionKinds.insert(Signature))
1920       continue;
1921
1922     // Add the row to the table.
1923     ConversionTable.push_back(ConversionRow);
1924   }
1925
1926   // Finish up the converter driver function.
1927   CvtOS << "    }\n  }\n}\n\n";
1928
1929   // Finish up the operand number lookup function.
1930   OpOS << "    }\n  }\n}\n\n";
1931
1932   OS << "namespace {\n";
1933
1934   // Output the operand conversion kind enum.
1935   OS << "enum OperatorConversionKind {\n";
1936   for (unsigned i = 0, e = OperandConversionKinds.size(); i != e; ++i)
1937     OS << "  " << OperandConversionKinds[i] << ",\n";
1938   OS << "  CVT_NUM_CONVERTERS\n";
1939   OS << "};\n\n";
1940
1941   // Output the instruction conversion kind enum.
1942   OS << "enum InstructionConversionKind {\n";
1943   for (SetVector<std::string>::const_iterator
1944          i = InstructionConversionKinds.begin(),
1945          e = InstructionConversionKinds.end(); i != e; ++i)
1946     OS << "  " << *i << ",\n";
1947   OS << "  CVT_NUM_SIGNATURES\n";
1948   OS << "};\n\n";
1949
1950
1951   OS << "} // end anonymous namespace\n\n";
1952
1953   // Output the conversion table.
1954   OS << "static const uint8_t ConversionTable[CVT_NUM_SIGNATURES]["
1955      << MaxRowLength << "] = {\n";
1956
1957   for (unsigned Row = 0, ERow = ConversionTable.size(); Row != ERow; ++Row) {
1958     assert(ConversionTable[Row].size() % 2 == 0 && "bad conversion row!");
1959     OS << "  // " << InstructionConversionKinds[Row] << "\n";
1960     OS << "  { ";
1961     for (unsigned i = 0, e = ConversionTable[Row].size(); i != e; i += 2)
1962       OS << OperandConversionKinds[ConversionTable[Row][i]] << ", "
1963          << (unsigned)(ConversionTable[Row][i + 1]) << ", ";
1964     OS << "CVT_Done },\n";
1965   }
1966
1967   OS << "};\n\n";
1968
1969   // Spit out the conversion driver function.
1970   OS << CvtOS.str();
1971
1972   // Spit out the operand number lookup function.
1973   OS << OpOS.str();
1974 }
1975
1976 /// emitMatchClassEnumeration - Emit the enumeration for match class kinds.
1977 static void emitMatchClassEnumeration(CodeGenTarget &Target,
1978                                       std::vector<ClassInfo*> &Infos,
1979                                       raw_ostream &OS) {
1980   OS << "namespace {\n\n";
1981
1982   OS << "/// MatchClassKind - The kinds of classes which participate in\n"
1983      << "/// instruction matching.\n";
1984   OS << "enum MatchClassKind {\n";
1985   OS << "  InvalidMatchClass = 0,\n";
1986   for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
1987          ie = Infos.end(); it != ie; ++it) {
1988     ClassInfo &CI = **it;
1989     OS << "  " << CI.Name << ", // ";
1990     if (CI.Kind == ClassInfo::Token) {
1991       OS << "'" << CI.ValueName << "'\n";
1992     } else if (CI.isRegisterClass()) {
1993       if (!CI.ValueName.empty())
1994         OS << "register class '" << CI.ValueName << "'\n";
1995       else
1996         OS << "derived register class\n";
1997     } else {
1998       OS << "user defined class '" << CI.ValueName << "'\n";
1999     }
2000   }
2001   OS << "  NumMatchClassKinds\n";
2002   OS << "};\n\n";
2003
2004   OS << "}\n\n";
2005 }
2006
2007 /// emitValidateOperandClass - Emit the function to validate an operand class.
2008 static void emitValidateOperandClass(AsmMatcherInfo &Info,
2009                                      raw_ostream &OS) {
2010   OS << "static unsigned validateOperandClass(MCParsedAsmOperand *GOp, "
2011      << "MatchClassKind Kind) {\n";
2012   OS << "  " << Info.Target.getName() << "Operand &Operand = *("
2013      << Info.Target.getName() << "Operand*)GOp;\n";
2014
2015   // The InvalidMatchClass is not to match any operand.
2016   OS << "  if (Kind == InvalidMatchClass)\n";
2017   OS << "    return MCTargetAsmParser::Match_InvalidOperand;\n\n";
2018
2019   // Check for Token operands first.
2020   // FIXME: Use a more specific diagnostic type.
2021   OS << "  if (Operand.isToken())\n";
2022   OS << "    return isSubclass(matchTokenString(Operand.getToken()), Kind) ?\n"
2023      << "             MCTargetAsmParser::Match_Success :\n"
2024      << "             MCTargetAsmParser::Match_InvalidOperand;\n\n";
2025
2026   // Check the user classes. We don't care what order since we're only
2027   // actually matching against one of them.
2028   for (std::vector<ClassInfo*>::iterator it = Info.Classes.begin(),
2029          ie = Info.Classes.end(); it != ie; ++it) {
2030     ClassInfo &CI = **it;
2031
2032     if (!CI.isUserClass())
2033       continue;
2034
2035     OS << "  // '" << CI.ClassName << "' class\n";
2036     OS << "  if (Kind == " << CI.Name << ") {\n";
2037     OS << "    if (Operand." << CI.PredicateMethod << "())\n";
2038     OS << "      return MCTargetAsmParser::Match_Success;\n";
2039     if (!CI.DiagnosticType.empty())
2040       OS << "    return " << Info.Target.getName() << "AsmParser::Match_"
2041          << CI.DiagnosticType << ";\n";
2042     OS << "  }\n\n";
2043   }
2044
2045   // Check for register operands, including sub-classes.
2046   OS << "  if (Operand.isReg()) {\n";
2047   OS << "    MatchClassKind OpKind;\n";
2048   OS << "    switch (Operand.getReg()) {\n";
2049   OS << "    default: OpKind = InvalidMatchClass; break;\n";
2050   for (AsmMatcherInfo::RegisterClassesTy::iterator
2051          it = Info.RegisterClasses.begin(), ie = Info.RegisterClasses.end();
2052        it != ie; ++it)
2053     OS << "    case " << Info.Target.getName() << "::"
2054        << it->first->getName() << ": OpKind = " << it->second->Name
2055        << "; break;\n";
2056   OS << "    }\n";
2057   OS << "    return isSubclass(OpKind, Kind) ? "
2058      << "MCTargetAsmParser::Match_Success :\n                             "
2059      << "         MCTargetAsmParser::Match_InvalidOperand;\n  }\n\n";
2060
2061   // Generic fallthrough match failure case for operands that don't have
2062   // specialized diagnostic types.
2063   OS << "  return MCTargetAsmParser::Match_InvalidOperand;\n";
2064   OS << "}\n\n";
2065 }
2066
2067 /// emitIsSubclass - Emit the subclass predicate function.
2068 static void emitIsSubclass(CodeGenTarget &Target,
2069                            std::vector<ClassInfo*> &Infos,
2070                            raw_ostream &OS) {
2071   OS << "/// isSubclass - Compute whether \\p A is a subclass of \\p B.\n";
2072   OS << "static bool isSubclass(MatchClassKind A, MatchClassKind B) {\n";
2073   OS << "  if (A == B)\n";
2074   OS << "    return true;\n\n";
2075
2076   OS << "  switch (A) {\n";
2077   OS << "  default:\n";
2078   OS << "    return false;\n";
2079   for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
2080          ie = Infos.end(); it != ie; ++it) {
2081     ClassInfo &A = **it;
2082
2083     std::vector<StringRef> SuperClasses;
2084     for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
2085          ie = Infos.end(); it != ie; ++it) {
2086       ClassInfo &B = **it;
2087
2088       if (&A != &B && A.isSubsetOf(B))
2089         SuperClasses.push_back(B.Name);
2090     }
2091
2092     if (SuperClasses.empty())
2093       continue;
2094
2095     OS << "\n  case " << A.Name << ":\n";
2096
2097     if (SuperClasses.size() == 1) {
2098       OS << "    return B == " << SuperClasses.back() << ";\n";
2099       continue;
2100     }
2101
2102     OS << "    switch (B) {\n";
2103     OS << "    default: return false;\n";
2104     for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
2105       OS << "    case " << SuperClasses[i] << ": return true;\n";
2106     OS << "    }\n";
2107   }
2108   OS << "  }\n";
2109   OS << "}\n\n";
2110 }
2111
2112 /// emitMatchTokenString - Emit the function to match a token string to the
2113 /// appropriate match class value.
2114 static void emitMatchTokenString(CodeGenTarget &Target,
2115                                  std::vector<ClassInfo*> &Infos,
2116                                  raw_ostream &OS) {
2117   // Construct the match list.
2118   std::vector<StringMatcher::StringPair> Matches;
2119   for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
2120          ie = Infos.end(); it != ie; ++it) {
2121     ClassInfo &CI = **it;
2122
2123     if (CI.Kind == ClassInfo::Token)
2124       Matches.push_back(StringMatcher::StringPair(CI.ValueName,
2125                                                   "return " + CI.Name + ";"));
2126   }
2127
2128   OS << "static MatchClassKind matchTokenString(StringRef Name) {\n";
2129
2130   StringMatcher("Name", Matches, OS).Emit();
2131
2132   OS << "  return InvalidMatchClass;\n";
2133   OS << "}\n\n";
2134 }
2135
2136 /// emitMatchRegisterName - Emit the function to match a string to the target
2137 /// specific register enum.
2138 static void emitMatchRegisterName(CodeGenTarget &Target, Record *AsmParser,
2139                                   raw_ostream &OS) {
2140   // Construct the match list.
2141   std::vector<StringMatcher::StringPair> Matches;
2142   const std::vector<CodeGenRegister*> &Regs =
2143     Target.getRegBank().getRegisters();
2144   for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
2145     const CodeGenRegister *Reg = Regs[i];
2146     if (Reg->TheDef->getValueAsString("AsmName").empty())
2147       continue;
2148
2149     Matches.push_back(StringMatcher::StringPair(
2150                                      Reg->TheDef->getValueAsString("AsmName"),
2151                                      "return " + utostr(Reg->EnumValue) + ";"));
2152   }
2153
2154   OS << "static unsigned MatchRegisterName(StringRef Name) {\n";
2155
2156   StringMatcher("Name", Matches, OS).Emit();
2157
2158   OS << "  return 0;\n";
2159   OS << "}\n\n";
2160 }
2161
2162 /// emitSubtargetFeatureFlagEnumeration - Emit the subtarget feature flag
2163 /// definitions.
2164 static void emitSubtargetFeatureFlagEnumeration(AsmMatcherInfo &Info,
2165                                                 raw_ostream &OS) {
2166   OS << "// Flags for subtarget features that participate in "
2167      << "instruction matching.\n";
2168   OS << "enum SubtargetFeatureFlag {\n";
2169   for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2170          it = Info.SubtargetFeatures.begin(),
2171          ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2172     SubtargetFeatureInfo &SFI = *it->second;
2173     OS << "  " << SFI.getEnumName() << " = (1 << " << SFI.Index << "),\n";
2174   }
2175   OS << "  Feature_None = 0\n";
2176   OS << "};\n\n";
2177 }
2178
2179 /// emitOperandDiagnosticTypes - Emit the operand matching diagnostic types.
2180 static void emitOperandDiagnosticTypes(AsmMatcherInfo &Info, raw_ostream &OS) {
2181   // Get the set of diagnostic types from all of the operand classes.
2182   std::set<StringRef> Types;
2183   for (std::map<Record*, ClassInfo*>::const_iterator
2184        I = Info.AsmOperandClasses.begin(),
2185        E = Info.AsmOperandClasses.end(); I != E; ++I) {
2186     if (!I->second->DiagnosticType.empty())
2187       Types.insert(I->second->DiagnosticType);
2188   }
2189
2190   if (Types.empty()) return;
2191
2192   // Now emit the enum entries.
2193   for (std::set<StringRef>::const_iterator I = Types.begin(), E = Types.end();
2194        I != E; ++I)
2195     OS << "  Match_" << *I << ",\n";
2196   OS << "  END_OPERAND_DIAGNOSTIC_TYPES\n";
2197 }
2198
2199 /// emitGetSubtargetFeatureName - Emit the helper function to get the
2200 /// user-level name for a subtarget feature.
2201 static void emitGetSubtargetFeatureName(AsmMatcherInfo &Info, raw_ostream &OS) {
2202   OS << "// User-level names for subtarget features that participate in\n"
2203      << "// instruction matching.\n"
2204      << "static const char *getSubtargetFeatureName(unsigned Val) {\n"
2205      << "  switch(Val) {\n";
2206   for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2207          it = Info.SubtargetFeatures.begin(),
2208          ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2209     SubtargetFeatureInfo &SFI = *it->second;
2210     // FIXME: Totally just a placeholder name to get the algorithm working.
2211     OS << "  case " << SFI.getEnumName() << ": return \""
2212        << SFI.TheDef->getValueAsString("PredicateName") << "\";\n";
2213   }
2214   OS << "  default: return \"(unknown)\";\n";
2215   OS << "  }\n}\n\n";
2216 }
2217
2218 /// emitComputeAvailableFeatures - Emit the function to compute the list of
2219 /// available features given a subtarget.
2220 static void emitComputeAvailableFeatures(AsmMatcherInfo &Info,
2221                                          raw_ostream &OS) {
2222   std::string ClassName =
2223     Info.AsmParser->getValueAsString("AsmParserClassName");
2224
2225   OS << "unsigned " << Info.Target.getName() << ClassName << "::\n"
2226      << "ComputeAvailableFeatures(uint64_t FB) const {\n";
2227   OS << "  unsigned Features = 0;\n";
2228   for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2229          it = Info.SubtargetFeatures.begin(),
2230          ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2231     SubtargetFeatureInfo &SFI = *it->second;
2232
2233     OS << "  if (";
2234     std::string CondStorage =
2235       SFI.TheDef->getValueAsString("AssemblerCondString");
2236     StringRef Conds = CondStorage;
2237     std::pair<StringRef,StringRef> Comma = Conds.split(',');
2238     bool First = true;
2239     do {
2240       if (!First)
2241         OS << " && ";
2242
2243       bool Neg = false;
2244       StringRef Cond = Comma.first;
2245       if (Cond[0] == '!') {
2246         Neg = true;
2247         Cond = Cond.substr(1);
2248       }
2249
2250       OS << "((FB & " << Info.Target.getName() << "::" << Cond << ")";
2251       if (Neg)
2252         OS << " == 0";
2253       else
2254         OS << " != 0";
2255       OS << ")";
2256
2257       if (Comma.second.empty())
2258         break;
2259
2260       First = false;
2261       Comma = Comma.second.split(',');
2262     } while (true);
2263
2264     OS << ")\n";
2265     OS << "    Features |= " << SFI.getEnumName() << ";\n";
2266   }
2267   OS << "  return Features;\n";
2268   OS << "}\n\n";
2269 }
2270
2271 static std::string GetAliasRequiredFeatures(Record *R,
2272                                             const AsmMatcherInfo &Info) {
2273   std::vector<Record*> ReqFeatures = R->getValueAsListOfDefs("Predicates");
2274   std::string Result;
2275   unsigned NumFeatures = 0;
2276   for (unsigned i = 0, e = ReqFeatures.size(); i != e; ++i) {
2277     SubtargetFeatureInfo *F = Info.getSubtargetFeature(ReqFeatures[i]);
2278
2279     if (F == 0)
2280       PrintFatalError(R->getLoc(), "Predicate '" + ReqFeatures[i]->getName() +
2281                     "' is not marked as an AssemblerPredicate!");
2282
2283     if (NumFeatures)
2284       Result += '|';
2285
2286     Result += F->getEnumName();
2287     ++NumFeatures;
2288   }
2289
2290   if (NumFeatures > 1)
2291     Result = '(' + Result + ')';
2292   return Result;
2293 }
2294
2295 /// emitMnemonicAliases - If the target has any MnemonicAlias<> definitions,
2296 /// emit a function for them and return true, otherwise return false.
2297 static bool emitMnemonicAliases(raw_ostream &OS, const AsmMatcherInfo &Info) {
2298   // Ignore aliases when match-prefix is set.
2299   if (!MatchPrefix.empty())
2300     return false;
2301
2302   std::vector<Record*> Aliases =
2303     Info.getRecords().getAllDerivedDefinitions("MnemonicAlias");
2304   if (Aliases.empty()) return false;
2305
2306   OS << "static void applyMnemonicAliases(StringRef &Mnemonic, "
2307         "unsigned Features) {\n";
2308
2309   // Keep track of all the aliases from a mnemonic.  Use an std::map so that the
2310   // iteration order of the map is stable.
2311   std::map<std::string, std::vector<Record*> > AliasesFromMnemonic;
2312
2313   for (unsigned i = 0, e = Aliases.size(); i != e; ++i) {
2314     Record *R = Aliases[i];
2315     AliasesFromMnemonic[R->getValueAsString("FromMnemonic")].push_back(R);
2316   }
2317
2318   // Process each alias a "from" mnemonic at a time, building the code executed
2319   // by the string remapper.
2320   std::vector<StringMatcher::StringPair> Cases;
2321   for (std::map<std::string, std::vector<Record*> >::iterator
2322        I = AliasesFromMnemonic.begin(), E = AliasesFromMnemonic.end();
2323        I != E; ++I) {
2324     const std::vector<Record*> &ToVec = I->second;
2325
2326     // Loop through each alias and emit code that handles each case.  If there
2327     // are two instructions without predicates, emit an error.  If there is one,
2328     // emit it last.
2329     std::string MatchCode;
2330     int AliasWithNoPredicate = -1;
2331
2332     for (unsigned i = 0, e = ToVec.size(); i != e; ++i) {
2333       Record *R = ToVec[i];
2334       std::string FeatureMask = GetAliasRequiredFeatures(R, Info);
2335
2336       // If this unconditionally matches, remember it for later and diagnose
2337       // duplicates.
2338       if (FeatureMask.empty()) {
2339         if (AliasWithNoPredicate != -1) {
2340           // We can't have two aliases from the same mnemonic with no predicate.
2341           PrintError(ToVec[AliasWithNoPredicate]->getLoc(),
2342                      "two MnemonicAliases with the same 'from' mnemonic!");
2343           PrintFatalError(R->getLoc(), "this is the other MnemonicAlias.");
2344         }
2345
2346         AliasWithNoPredicate = i;
2347         continue;
2348       }
2349       if (R->getValueAsString("ToMnemonic") == I->first)
2350         PrintFatalError(R->getLoc(), "MnemonicAlias to the same string");
2351
2352       if (!MatchCode.empty())
2353         MatchCode += "else ";
2354       MatchCode += "if ((Features & " + FeatureMask + ") == "+FeatureMask+")\n";
2355       MatchCode += "  Mnemonic = \"" +R->getValueAsString("ToMnemonic")+"\";\n";
2356     }
2357
2358     if (AliasWithNoPredicate != -1) {
2359       Record *R = ToVec[AliasWithNoPredicate];
2360       if (!MatchCode.empty())
2361         MatchCode += "else\n  ";
2362       MatchCode += "Mnemonic = \"" + R->getValueAsString("ToMnemonic")+"\";\n";
2363     }
2364
2365     MatchCode += "return;";
2366
2367     Cases.push_back(std::make_pair(I->first, MatchCode));
2368   }
2369
2370   StringMatcher("Mnemonic", Cases, OS).Emit();
2371   OS << "}\n\n";
2372
2373   return true;
2374 }
2375
2376 static const char *getMinimalTypeForRange(uint64_t Range) {
2377   assert(Range < 0xFFFFFFFFULL && "Enum too large");
2378   if (Range > 0xFFFF)
2379     return "uint32_t";
2380   if (Range > 0xFF)
2381     return "uint16_t";
2382   return "uint8_t";
2383 }
2384
2385 static void emitCustomOperandParsing(raw_ostream &OS, CodeGenTarget &Target,
2386                               const AsmMatcherInfo &Info, StringRef ClassName,
2387                               StringToOffsetTable &StringTable,
2388                               unsigned MaxMnemonicIndex) {
2389   unsigned MaxMask = 0;
2390   for (std::vector<OperandMatchEntry>::const_iterator it =
2391        Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2392        it != ie; ++it) {
2393     MaxMask |= it->OperandMask;
2394   }
2395
2396   // Emit the static custom operand parsing table;
2397   OS << "namespace {\n";
2398   OS << "  struct OperandMatchEntry {\n";
2399   OS << "    " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
2400                << " RequiredFeatures;\n";
2401   OS << "    " << getMinimalTypeForRange(MaxMnemonicIndex)
2402                << " Mnemonic;\n";
2403   OS << "    " << getMinimalTypeForRange(Info.Classes.size())
2404                << " Class;\n";
2405   OS << "    " << getMinimalTypeForRange(MaxMask)
2406                << " OperandMask;\n\n";
2407   OS << "    StringRef getMnemonic() const {\n";
2408   OS << "      return StringRef(MnemonicTable + Mnemonic + 1,\n";
2409   OS << "                       MnemonicTable[Mnemonic]);\n";
2410   OS << "    }\n";
2411   OS << "  };\n\n";
2412
2413   OS << "  // Predicate for searching for an opcode.\n";
2414   OS << "  struct LessOpcodeOperand {\n";
2415   OS << "    bool operator()(const OperandMatchEntry &LHS, StringRef RHS) {\n";
2416   OS << "      return LHS.getMnemonic()  < RHS;\n";
2417   OS << "    }\n";
2418   OS << "    bool operator()(StringRef LHS, const OperandMatchEntry &RHS) {\n";
2419   OS << "      return LHS < RHS.getMnemonic();\n";
2420   OS << "    }\n";
2421   OS << "    bool operator()(const OperandMatchEntry &LHS,";
2422   OS << " const OperandMatchEntry &RHS) {\n";
2423   OS << "      return LHS.getMnemonic() < RHS.getMnemonic();\n";
2424   OS << "    }\n";
2425   OS << "  };\n";
2426
2427   OS << "} // end anonymous namespace.\n\n";
2428
2429   OS << "static const OperandMatchEntry OperandMatchTable["
2430      << Info.OperandMatchInfo.size() << "] = {\n";
2431
2432   OS << "  /* Operand List Mask, Mnemonic, Operand Class, Features */\n";
2433   for (std::vector<OperandMatchEntry>::const_iterator it =
2434        Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2435        it != ie; ++it) {
2436     const OperandMatchEntry &OMI = *it;
2437     const MatchableInfo &II = *OMI.MI;
2438
2439     OS << "  { ";
2440
2441     // Write the required features mask.
2442     if (!II.RequiredFeatures.empty()) {
2443       for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2444         if (i) OS << "|";
2445         OS << II.RequiredFeatures[i]->getEnumName();
2446       }
2447     } else
2448       OS << "0";
2449
2450     // Store a pascal-style length byte in the mnemonic.
2451     std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2452     OS << ", " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
2453        << " /* " << II.Mnemonic << " */, ";
2454
2455     OS << OMI.CI->Name;
2456
2457     OS << ", " << OMI.OperandMask;
2458     OS << " /* ";
2459     bool printComma = false;
2460     for (int i = 0, e = 31; i !=e; ++i)
2461       if (OMI.OperandMask & (1 << i)) {
2462         if (printComma)
2463           OS << ", ";
2464         OS << i;
2465         printComma = true;
2466       }
2467     OS << " */";
2468
2469     OS << " },\n";
2470   }
2471   OS << "};\n\n";
2472
2473   // Emit the operand class switch to call the correct custom parser for
2474   // the found operand class.
2475   OS << Target.getName() << ClassName << "::OperandMatchResultTy "
2476      << Target.getName() << ClassName << "::\n"
2477      << "tryCustomParseOperand(SmallVectorImpl<MCParsedAsmOperand*>"
2478      << " &Operands,\n                      unsigned MCK) {\n\n"
2479      << "  switch(MCK) {\n";
2480
2481   for (std::vector<ClassInfo*>::const_iterator it = Info.Classes.begin(),
2482        ie = Info.Classes.end(); it != ie; ++it) {
2483     ClassInfo *CI = *it;
2484     if (CI->ParserMethod.empty())
2485       continue;
2486     OS << "  case " << CI->Name << ":\n"
2487        << "    return " << CI->ParserMethod << "(Operands);\n";
2488   }
2489
2490   OS << "  default:\n";
2491   OS << "    return MatchOperand_NoMatch;\n";
2492   OS << "  }\n";
2493   OS << "  return MatchOperand_NoMatch;\n";
2494   OS << "}\n\n";
2495
2496   // Emit the static custom operand parser. This code is very similar with
2497   // the other matcher. Also use MatchResultTy here just in case we go for
2498   // a better error handling.
2499   OS << Target.getName() << ClassName << "::OperandMatchResultTy "
2500      << Target.getName() << ClassName << "::\n"
2501      << "MatchOperandParserImpl(SmallVectorImpl<MCParsedAsmOperand*>"
2502      << " &Operands,\n                       StringRef Mnemonic) {\n";
2503
2504   // Emit code to get the available features.
2505   OS << "  // Get the current feature set.\n";
2506   OS << "  unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2507
2508   OS << "  // Get the next operand index.\n";
2509   OS << "  unsigned NextOpNum = Operands.size()-1;\n";
2510
2511   // Emit code to search the table.
2512   OS << "  // Search the table.\n";
2513   OS << "  std::pair<const OperandMatchEntry*, const OperandMatchEntry*>";
2514   OS << " MnemonicRange =\n";
2515   OS << "    std::equal_range(OperandMatchTable, OperandMatchTable+"
2516      << Info.OperandMatchInfo.size() << ", Mnemonic,\n"
2517      << "                     LessOpcodeOperand());\n\n";
2518
2519   OS << "  if (MnemonicRange.first == MnemonicRange.second)\n";
2520   OS << "    return MatchOperand_NoMatch;\n\n";
2521
2522   OS << "  for (const OperandMatchEntry *it = MnemonicRange.first,\n"
2523      << "       *ie = MnemonicRange.second; it != ie; ++it) {\n";
2524
2525   OS << "    // equal_range guarantees that instruction mnemonic matches.\n";
2526   OS << "    assert(Mnemonic == it->getMnemonic());\n\n";
2527
2528   // Emit check that the required features are available.
2529   OS << "    // check if the available features match\n";
2530   OS << "    if ((AvailableFeatures & it->RequiredFeatures) "
2531      << "!= it->RequiredFeatures) {\n";
2532   OS << "      continue;\n";
2533   OS << "    }\n\n";
2534
2535   // Emit check to ensure the operand number matches.
2536   OS << "    // check if the operand in question has a custom parser.\n";
2537   OS << "    if (!(it->OperandMask & (1 << NextOpNum)))\n";
2538   OS << "      continue;\n\n";
2539
2540   // Emit call to the custom parser method
2541   OS << "    // call custom parse method to handle the operand\n";
2542   OS << "    OperandMatchResultTy Result = ";
2543   OS << "tryCustomParseOperand(Operands, it->Class);\n";
2544   OS << "    if (Result != MatchOperand_NoMatch)\n";
2545   OS << "      return Result;\n";
2546   OS << "  }\n\n";
2547
2548   OS << "  // Okay, we had no match.\n";
2549   OS << "  return MatchOperand_NoMatch;\n";
2550   OS << "}\n\n";
2551 }
2552
2553 void AsmMatcherEmitter::run(raw_ostream &OS) {
2554   CodeGenTarget Target(Records);
2555   Record *AsmParser = Target.getAsmParser();
2556   std::string ClassName = AsmParser->getValueAsString("AsmParserClassName");
2557
2558   // Compute the information on the instructions to match.
2559   AsmMatcherInfo Info(AsmParser, Target, Records);
2560   Info.buildInfo();
2561
2562   // Sort the instruction table using the partial order on classes. We use
2563   // stable_sort to ensure that ambiguous instructions are still
2564   // deterministically ordered.
2565   std::stable_sort(Info.Matchables.begin(), Info.Matchables.end(),
2566                    less_ptr<MatchableInfo>());
2567
2568   DEBUG_WITH_TYPE("instruction_info", {
2569       for (std::vector<MatchableInfo*>::iterator
2570              it = Info.Matchables.begin(), ie = Info.Matchables.end();
2571            it != ie; ++it)
2572         (*it)->dump();
2573     });
2574
2575   // Check for ambiguous matchables.
2576   DEBUG_WITH_TYPE("ambiguous_instrs", {
2577     unsigned NumAmbiguous = 0;
2578     for (unsigned i = 0, e = Info.Matchables.size(); i != e; ++i) {
2579       for (unsigned j = i + 1; j != e; ++j) {
2580         MatchableInfo &A = *Info.Matchables[i];
2581         MatchableInfo &B = *Info.Matchables[j];
2582
2583         if (A.couldMatchAmbiguouslyWith(B)) {
2584           errs() << "warning: ambiguous matchables:\n";
2585           A.dump();
2586           errs() << "\nis incomparable with:\n";
2587           B.dump();
2588           errs() << "\n\n";
2589           ++NumAmbiguous;
2590         }
2591       }
2592     }
2593     if (NumAmbiguous)
2594       errs() << "warning: " << NumAmbiguous
2595              << " ambiguous matchables!\n";
2596   });
2597
2598   // Compute the information on the custom operand parsing.
2599   Info.buildOperandMatchInfo();
2600
2601   // Write the output.
2602
2603   // Information for the class declaration.
2604   OS << "\n#ifdef GET_ASSEMBLER_HEADER\n";
2605   OS << "#undef GET_ASSEMBLER_HEADER\n";
2606   OS << "  // This should be included into the middle of the declaration of\n";
2607   OS << "  // your subclasses implementation of MCTargetAsmParser.\n";
2608   OS << "  unsigned ComputeAvailableFeatures(uint64_t FeatureBits) const;\n";
2609   OS << "  void convertToMCInst(unsigned Kind, MCInst &Inst, "
2610      << "unsigned Opcode,\n"
2611      << "                       const SmallVectorImpl<MCParsedAsmOperand*> "
2612      << "&Operands);\n";
2613   OS << "  void convertToMapAndConstraints(unsigned Kind,\n                ";
2614   OS << "           const SmallVectorImpl<MCParsedAsmOperand*> &Operands);\n";
2615   OS << "  bool mnemonicIsValid(StringRef Mnemonic);\n";
2616   OS << "  unsigned MatchInstructionImpl(\n";
2617   OS.indent(27);
2618   OS << "const SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n"
2619      << "                                MCInst &Inst,\n"
2620      << "                                unsigned &ErrorInfo,"
2621      << " bool matchingInlineAsm,\n"
2622      << "                                unsigned VariantID = 0);\n";
2623
2624   if (Info.OperandMatchInfo.size()) {
2625     OS << "\n  enum OperandMatchResultTy {\n";
2626     OS << "    MatchOperand_Success,    // operand matched successfully\n";
2627     OS << "    MatchOperand_NoMatch,    // operand did not match\n";
2628     OS << "    MatchOperand_ParseFail   // operand matched but had errors\n";
2629     OS << "  };\n";
2630     OS << "  OperandMatchResultTy MatchOperandParserImpl(\n";
2631     OS << "    SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2632     OS << "    StringRef Mnemonic);\n";
2633
2634     OS << "  OperandMatchResultTy tryCustomParseOperand(\n";
2635     OS << "    SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2636     OS << "    unsigned MCK);\n\n";
2637   }
2638
2639   OS << "#endif // GET_ASSEMBLER_HEADER_INFO\n\n";
2640
2641   // Emit the operand match diagnostic enum names.
2642   OS << "\n#ifdef GET_OPERAND_DIAGNOSTIC_TYPES\n";
2643   OS << "#undef GET_OPERAND_DIAGNOSTIC_TYPES\n\n";
2644   emitOperandDiagnosticTypes(Info, OS);
2645   OS << "#endif // GET_OPERAND_DIAGNOSTIC_TYPES\n\n";
2646
2647
2648   OS << "\n#ifdef GET_REGISTER_MATCHER\n";
2649   OS << "#undef GET_REGISTER_MATCHER\n\n";
2650
2651   // Emit the subtarget feature enumeration.
2652   emitSubtargetFeatureFlagEnumeration(Info, OS);
2653
2654   // Emit the function to match a register name to number.
2655   // This should be omitted for Mips target
2656   if (AsmParser->getValueAsBit("ShouldEmitMatchRegisterName"))
2657     emitMatchRegisterName(Target, AsmParser, OS);
2658
2659   OS << "#endif // GET_REGISTER_MATCHER\n\n";
2660
2661   OS << "\n#ifdef GET_SUBTARGET_FEATURE_NAME\n";
2662   OS << "#undef GET_SUBTARGET_FEATURE_NAME\n\n";
2663
2664   // Generate the helper function to get the names for subtarget features.
2665   emitGetSubtargetFeatureName(Info, OS);
2666
2667   OS << "#endif // GET_SUBTARGET_FEATURE_NAME\n\n";
2668
2669   OS << "\n#ifdef GET_MATCHER_IMPLEMENTATION\n";
2670   OS << "#undef GET_MATCHER_IMPLEMENTATION\n\n";
2671
2672   // Generate the function that remaps for mnemonic aliases.
2673   bool HasMnemonicAliases = emitMnemonicAliases(OS, Info);
2674
2675   // Generate the convertToMCInst function to convert operands into an MCInst.
2676   // Also, generate the convertToMapAndConstraints function for MS-style inline
2677   // assembly.  The latter doesn't actually generate a MCInst.
2678   emitConvertFuncs(Target, ClassName, Info.Matchables, OS);
2679
2680   // Emit the enumeration for classes which participate in matching.
2681   emitMatchClassEnumeration(Target, Info.Classes, OS);
2682
2683   // Emit the routine to match token strings to their match class.
2684   emitMatchTokenString(Target, Info.Classes, OS);
2685
2686   // Emit the subclass predicate routine.
2687   emitIsSubclass(Target, Info.Classes, OS);
2688
2689   // Emit the routine to validate an operand against a match class.
2690   emitValidateOperandClass(Info, OS);
2691
2692   // Emit the available features compute function.
2693   emitComputeAvailableFeatures(Info, OS);
2694
2695
2696   StringToOffsetTable StringTable;
2697
2698   size_t MaxNumOperands = 0;
2699   unsigned MaxMnemonicIndex = 0;
2700   for (std::vector<MatchableInfo*>::const_iterator it =
2701          Info.Matchables.begin(), ie = Info.Matchables.end();
2702        it != ie; ++it) {
2703     MatchableInfo &II = **it;
2704     MaxNumOperands = std::max(MaxNumOperands, II.AsmOperands.size());
2705
2706     // Store a pascal-style length byte in the mnemonic.
2707     std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2708     MaxMnemonicIndex = std::max(MaxMnemonicIndex,
2709                         StringTable.GetOrAddStringOffset(LenMnemonic, false));
2710   }
2711
2712   OS << "static const char *const MnemonicTable =\n";
2713   StringTable.EmitString(OS);
2714   OS << ";\n\n";
2715
2716   // Emit the static match table; unused classes get initalized to 0 which is
2717   // guaranteed to be InvalidMatchClass.
2718   //
2719   // FIXME: We can reduce the size of this table very easily. First, we change
2720   // it so that store the kinds in separate bit-fields for each index, which
2721   // only needs to be the max width used for classes at that index (we also need
2722   // to reject based on this during classification). If we then make sure to
2723   // order the match kinds appropriately (putting mnemonics last), then we
2724   // should only end up using a few bits for each class, especially the ones
2725   // following the mnemonic.
2726   OS << "namespace {\n";
2727   OS << "  struct MatchEntry {\n";
2728   OS << "    " << getMinimalTypeForRange(MaxMnemonicIndex)
2729                << " Mnemonic;\n";
2730   OS << "    uint16_t Opcode;\n";
2731   OS << "    " << getMinimalTypeForRange(Info.Matchables.size())
2732                << " ConvertFn;\n";
2733   OS << "    " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
2734                << " RequiredFeatures;\n";
2735   OS << "    " << getMinimalTypeForRange(Info.Classes.size())
2736                << " Classes[" << MaxNumOperands << "];\n";
2737   OS << "    uint8_t AsmVariantID;\n\n";
2738   OS << "    StringRef getMnemonic() const {\n";
2739   OS << "      return StringRef(MnemonicTable + Mnemonic + 1,\n";
2740   OS << "                       MnemonicTable[Mnemonic]);\n";
2741   OS << "    }\n";
2742   OS << "  };\n\n";
2743
2744   OS << "  // Predicate for searching for an opcode.\n";
2745   OS << "  struct LessOpcode {\n";
2746   OS << "    bool operator()(const MatchEntry &LHS, StringRef RHS) {\n";
2747   OS << "      return LHS.getMnemonic() < RHS;\n";
2748   OS << "    }\n";
2749   OS << "    bool operator()(StringRef LHS, const MatchEntry &RHS) {\n";
2750   OS << "      return LHS < RHS.getMnemonic();\n";
2751   OS << "    }\n";
2752   OS << "    bool operator()(const MatchEntry &LHS, const MatchEntry &RHS) {\n";
2753   OS << "      return LHS.getMnemonic() < RHS.getMnemonic();\n";
2754   OS << "    }\n";
2755   OS << "  };\n";
2756
2757   OS << "} // end anonymous namespace.\n\n";
2758
2759   OS << "static const MatchEntry MatchTable["
2760      << Info.Matchables.size() << "] = {\n";
2761
2762   for (std::vector<MatchableInfo*>::const_iterator it =
2763        Info.Matchables.begin(), ie = Info.Matchables.end();
2764        it != ie; ++it) {
2765     MatchableInfo &II = **it;
2766
2767     // Store a pascal-style length byte in the mnemonic.
2768     std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2769     OS << "  { " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
2770        << " /* " << II.Mnemonic << " */, "
2771        << Target.getName() << "::"
2772        << II.getResultInst()->TheDef->getName() << ", "
2773        << II.ConversionFnKind << ", ";
2774
2775     // Write the required features mask.
2776     if (!II.RequiredFeatures.empty()) {
2777       for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2778         if (i) OS << "|";
2779         OS << II.RequiredFeatures[i]->getEnumName();
2780       }
2781     } else
2782       OS << "0";
2783
2784     OS << ", { ";
2785     for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
2786       MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
2787
2788       if (i) OS << ", ";
2789       OS << Op.Class->Name;
2790     }
2791     OS << " }, " << II.AsmVariantID;
2792     OS << "},\n";
2793   }
2794
2795   OS << "};\n\n";
2796
2797   // A method to determine if a mnemonic is in the list.
2798   OS << "bool " << Target.getName() << ClassName << "::\n"
2799      << "mnemonicIsValid(StringRef Mnemonic) {\n";
2800   OS << "  // Search the table.\n";
2801   OS << "  std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2802   OS << "    std::equal_range(MatchTable, MatchTable+"
2803      << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n";
2804   OS << "  return MnemonicRange.first != MnemonicRange.second;\n";
2805   OS << "}\n\n";
2806
2807   // Finally, build the match function.
2808   OS << "unsigned "
2809      << Target.getName() << ClassName << "::\n"
2810      << "MatchInstructionImpl(const SmallVectorImpl<MCParsedAsmOperand*>"
2811      << " &Operands,\n";
2812   OS << "                     MCInst &Inst,\n"
2813      << "unsigned &ErrorInfo, bool matchingInlineAsm, unsigned VariantID) {\n";
2814
2815   OS << "  // Eliminate obvious mismatches.\n";
2816   OS << "  if (Operands.size() > " << (MaxNumOperands+1) << ") {\n";
2817   OS << "    ErrorInfo = " << (MaxNumOperands+1) << ";\n";
2818   OS << "    return Match_InvalidOperand;\n";
2819   OS << "  }\n\n";
2820
2821   // Emit code to get the available features.
2822   OS << "  // Get the current feature set.\n";
2823   OS << "  unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2824
2825   OS << "  // Get the instruction mnemonic, which is the first token.\n";
2826   OS << "  StringRef Mnemonic = ((" << Target.getName()
2827      << "Operand*)Operands[0])->getToken();\n\n";
2828
2829   if (HasMnemonicAliases) {
2830     OS << "  // Process all MnemonicAliases to remap the mnemonic.\n";
2831     OS << "  // FIXME : Add an entry in AsmParserVariant to check this.\n";
2832     OS << "  if (!VariantID)\n";
2833     OS << "    applyMnemonicAliases(Mnemonic, AvailableFeatures);\n\n";
2834   }
2835
2836   // Emit code to compute the class list for this operand vector.
2837   OS << "  // Some state to try to produce better error messages.\n";
2838   OS << "  bool HadMatchOtherThanFeatures = false;\n";
2839   OS << "  bool HadMatchOtherThanPredicate = false;\n";
2840   OS << "  unsigned RetCode = Match_InvalidOperand;\n";
2841   OS << "  unsigned MissingFeatures = ~0U;\n";
2842   OS << "  // Set ErrorInfo to the operand that mismatches if it is\n";
2843   OS << "  // wrong for all instances of the instruction.\n";
2844   OS << "  ErrorInfo = ~0U;\n";
2845
2846   // Emit code to search the table.
2847   OS << "  // Search the table.\n";
2848   OS << "  std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2849   OS << "    std::equal_range(MatchTable, MatchTable+"
2850      << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n\n";
2851
2852   OS << "  // Return a more specific error code if no mnemonics match.\n";
2853   OS << "  if (MnemonicRange.first == MnemonicRange.second)\n";
2854   OS << "    return Match_MnemonicFail;\n\n";
2855
2856   OS << "  for (const MatchEntry *it = MnemonicRange.first, "
2857      << "*ie = MnemonicRange.second;\n";
2858   OS << "       it != ie; ++it) {\n";
2859
2860   OS << "    // equal_range guarantees that instruction mnemonic matches.\n";
2861   OS << "    assert(Mnemonic == it->getMnemonic());\n";
2862
2863   // Emit check that the subclasses match.
2864   OS << "    if (VariantID != it->AsmVariantID) continue;\n";
2865   OS << "    bool OperandsValid = true;\n";
2866   OS << "    for (unsigned i = 0; i != " << MaxNumOperands << "; ++i) {\n";
2867   OS << "      if (i + 1 >= Operands.size()) {\n";
2868   OS << "        OperandsValid = (it->Classes[i] == " <<"InvalidMatchClass);\n";
2869   OS << "        if (!OperandsValid) ErrorInfo = i + 1;\n";
2870   OS << "        break;\n";
2871   OS << "      }\n";
2872   OS << "      unsigned Diag = validateOperandClass(Operands[i+1],\n";
2873   OS.indent(43);
2874   OS << "(MatchClassKind)it->Classes[i]);\n";
2875   OS << "      if (Diag == Match_Success)\n";
2876   OS << "        continue;\n";
2877   OS << "      // If this operand is broken for all of the instances of this\n";
2878   OS << "      // mnemonic, keep track of it so we can report loc info.\n";
2879   OS << "      // If we already had a match that only failed due to a\n";
2880   OS << "      // target predicate, that diagnostic is preferred.\n";
2881   OS << "      if (!HadMatchOtherThanPredicate &&\n";
2882   OS << "          (it == MnemonicRange.first || ErrorInfo <= i+1)) {\n";
2883   OS << "        ErrorInfo = i+1;\n";
2884   OS << "        // InvalidOperand is the default. Prefer specificity.\n";
2885   OS << "        if (Diag != Match_InvalidOperand)\n";
2886   OS << "          RetCode = Diag;\n";
2887   OS << "      }\n";
2888   OS << "      // Otherwise, just reject this instance of the mnemonic.\n";
2889   OS << "      OperandsValid = false;\n";
2890   OS << "      break;\n";
2891   OS << "    }\n\n";
2892
2893   OS << "    if (!OperandsValid) continue;\n";
2894
2895   // Emit check that the required features are available.
2896   OS << "    if ((AvailableFeatures & it->RequiredFeatures) "
2897      << "!= it->RequiredFeatures) {\n";
2898   OS << "      HadMatchOtherThanFeatures = true;\n";
2899   OS << "      unsigned NewMissingFeatures = it->RequiredFeatures & "
2900         "~AvailableFeatures;\n";
2901   OS << "      if (CountPopulation_32(NewMissingFeatures) <=\n"
2902         "          CountPopulation_32(MissingFeatures))\n";
2903   OS << "        MissingFeatures = NewMissingFeatures;\n";
2904   OS << "      continue;\n";
2905   OS << "    }\n";
2906   OS << "\n";
2907   OS << "    if (matchingInlineAsm) {\n";
2908   OS << "      Inst.setOpcode(it->Opcode);\n";
2909   OS << "      convertToMapAndConstraints(it->ConvertFn, Operands);\n";
2910   OS << "      return Match_Success;\n";
2911   OS << "    }\n\n";
2912   OS << "    // We have selected a definite instruction, convert the parsed\n"
2913      << "    // operands into the appropriate MCInst.\n";
2914   OS << "    convertToMCInst(it->ConvertFn, Inst, it->Opcode, Operands);\n";
2915   OS << "\n";
2916
2917   // Verify the instruction with the target-specific match predicate function.
2918   OS << "    // We have a potential match. Check the target predicate to\n"
2919      << "    // handle any context sensitive constraints.\n"
2920      << "    unsigned MatchResult;\n"
2921      << "    if ((MatchResult = checkTargetMatchPredicate(Inst)) !="
2922      << " Match_Success) {\n"
2923      << "      Inst.clear();\n"
2924      << "      RetCode = MatchResult;\n"
2925      << "      HadMatchOtherThanPredicate = true;\n"
2926      << "      continue;\n"
2927      << "    }\n\n";
2928
2929   // Call the post-processing function, if used.
2930   std::string InsnCleanupFn =
2931     AsmParser->getValueAsString("AsmParserInstCleanup");
2932   if (!InsnCleanupFn.empty())
2933     OS << "    " << InsnCleanupFn << "(Inst);\n";
2934
2935   OS << "    return Match_Success;\n";
2936   OS << "  }\n\n";
2937
2938   OS << "  // Okay, we had no match.  Try to return a useful error code.\n";
2939   OS << "  if (HadMatchOtherThanPredicate || !HadMatchOtherThanFeatures)\n";
2940   OS << "    return RetCode;\n\n";
2941   OS << "  // Missing feature matches return which features were missing\n";
2942   OS << "  ErrorInfo = MissingFeatures;\n";
2943   OS << "  return Match_MissingFeature;\n";
2944   OS << "}\n\n";
2945
2946   if (Info.OperandMatchInfo.size())
2947     emitCustomOperandParsing(OS, Target, Info, ClassName, StringTable,
2948                              MaxMnemonicIndex);
2949
2950   OS << "#endif // GET_MATCHER_IMPLEMENTATION\n\n";
2951 }
2952
2953 namespace llvm {
2954
2955 void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS) {
2956   emitSourceFileHeader("Assembly Matcher Source Fragment", OS);
2957   AsmMatcherEmitter(RK).run(OS);
2958 }
2959
2960 } // End llvm namespace