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