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