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