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