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