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