blob: 837516882ea428f0fd4067e3285ee57d920f38e2 [file] [log] [blame]
Daniel Dunbard51ffcf2009-07-11 19:39:44 +00001//===- 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 Lopese7a54522011-02-07 19:38:32 +000011// 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 Dunbard51ffcf2009-07-11 19:39:44 +000016//
Daniel Dunbar20927f22009-08-07 08:26:05 +000017// 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 Grosbacha7c78222010-10-29 22:13:48 +000027// 'call' '*' %epc
Daniel Dunbar20927f22009-08-07 08:26:05 +000028//
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 Dunbar20927f22009-08-07 08:26:05 +000070// 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 Lopese7a54522011-02-07 19:38:32 +000075// Custom Operand Parsing
76// ----------------------
77//
78// Some targets need a custom way to parse operands, some specific instructions
79// can contain arguments that can represent processor flags and other kinds of
80// identifiers that need to be mapped to specific valeus in the final encoded
81// instructions. The target specific custom operand parsing works in the
82// following way:
83//
84// 1. A operand match table is built, each entry contains a mnemonic, an
85// operand class, a mask for all operand positions for that same
86// class/mnemonic and target features to be checked while trying to match.
87//
88// 2. The operand matcher will try every possible entry with the same
89// mnemonic and will check if the target feature for this mnemonic also
90// matches. After that, if the operand to be matched has its index
Chris Lattner7a2bdde2011-04-15 05:18:47 +000091// present in the mask, a successful match occurs. Otherwise, fallback
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +000092// 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 Dunbard51ffcf2009-07-11 19:39:44 +000097//===----------------------------------------------------------------------===//
98
99#include "AsmMatcherEmitter.h"
100#include "CodeGenTarget.h"
Chris Lattner5845e5c2010-09-06 02:01:51 +0000101#include "StringMatcher.h"
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +0000102#include "StringToOffsetTable.h"
Daniel Dunbar20927f22009-08-07 08:26:05 +0000103#include "llvm/ADT/OwningPtr.h"
Chris Lattnerc07bd402010-11-04 02:11:18 +0000104#include "llvm/ADT/PointerUnion.h"
Chris Lattner1de88232010-11-01 01:47:07 +0000105#include "llvm/ADT/SmallPtrSet.h"
Daniel Dunbara027d222009-07-31 02:32:59 +0000106#include "llvm/ADT/SmallVector.h"
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000107#include "llvm/ADT/STLExtras.h"
Daniel Dunbar20927f22009-08-07 08:26:05 +0000108#include "llvm/ADT/StringExtras.h"
109#include "llvm/Support/CommandLine.h"
Daniel Dunbara027d222009-07-31 02:32:59 +0000110#include "llvm/Support/Debug.h"
Craig Topper655b8de2012-02-05 07:21:30 +0000111#include "llvm/Support/ErrorHandling.h"
Peter Collingbourne7c788882011-10-01 16:41:13 +0000112#include "llvm/TableGen/Error.h"
113#include "llvm/TableGen/Record.h"
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000114#include <map>
115#include <set>
Daniel Dunbard51ffcf2009-07-11 19:39:44 +0000116using namespace llvm;
117
Daniel Dunbar27249152009-08-07 20:33:39 +0000118static cl::opt<std::string>
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000119MatchPrefix("match-prefix", cl::init(""),
120 cl::desc("Only match instructions with the given prefix"));
Daniel Dunbar20927f22009-08-07 08:26:05 +0000121
Daniel Dunbar20927f22009-08-07 08:26:05 +0000122namespace {
Bob Wilson828295b2011-01-26 21:26:19 +0000123class AsmMatcherInfo;
Daniel Dunbar54074b52010-07-19 05:44:09 +0000124struct SubtargetFeatureInfo;
125
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000126/// ClassInfo - Helper class for storing the information about a particular
127/// class of operands which can be matched.
128struct ClassInfo {
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000129 enum ClassInfoKind {
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000130 /// Invalid kind, for use as a sentinel value.
131 Invalid = 0,
132
133 /// The class for a particular token.
134 Token,
135
136 /// The (first) register class, subsequent register classes are
137 /// RegisterClass0+1, and so on.
138 RegisterClass0,
139
140 /// The (first) user defined class, subsequent user defined classes are
141 /// UserClass0+1, and so on.
142 UserClass0 = 1<<16
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000143 };
144
145 /// Kind - The class kind, which is either a predefined kind, or (UserClass0 +
146 /// N) for the Nth user defined class.
147 unsigned Kind;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000148
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000149 /// SuperClasses - The super classes of this class. Note that for simplicities
150 /// sake user operands only record their immediate super class, while register
151 /// operands include all superclasses.
152 std::vector<ClassInfo*> SuperClasses;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000153
Daniel Dunbar6745d422009-08-09 05:18:30 +0000154 /// Name - The full class name, suitable for use in an enum.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000155 std::string Name;
156
Daniel Dunbar6745d422009-08-09 05:18:30 +0000157 /// ClassName - The unadorned generic name for this class (e.g., Token).
158 std::string ClassName;
159
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000160 /// ValueName - The name of the value this class represents; for a token this
161 /// is the literal token string, for an operand it is the TableGen class (or
162 /// empty if this is a derived class).
163 std::string ValueName;
164
165 /// PredicateMethod - The name of the operand method to test whether the
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000166 /// operand matches this class; this is not valid for Token or register kinds.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000167 std::string PredicateMethod;
168
169 /// RenderMethod - The name of the operand method to add this operand to an
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000170 /// MCInst; this is not valid for Token or register kinds.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000171 std::string RenderMethod;
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000172
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000173 /// ParserMethod - The name of the operand method to do a target specific
174 /// parsing on the operand.
175 std::string ParserMethod;
176
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000177 /// For register classes, the records for all the registers in this class.
178 std::set<Record*> Registers;
179
180public:
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000181 /// isRegisterClass() - Check if this is a register class.
182 bool isRegisterClass() const {
183 return Kind >= RegisterClass0 && Kind < UserClass0;
184 }
185
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000186 /// isUserClass() - Check if this is a user defined class.
187 bool isUserClass() const {
188 return Kind >= UserClass0;
189 }
190
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000191 /// isRelatedTo - Check whether this class is "related" to \arg RHS. Classes
192 /// are related if they are in the same class hierarchy.
193 bool isRelatedTo(const ClassInfo &RHS) const {
194 // Tokens are only related to tokens.
195 if (Kind == Token || RHS.Kind == Token)
196 return Kind == Token && RHS.Kind == Token;
197
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000198 // Registers classes are only related to registers classes, and only if
199 // their intersection is non-empty.
200 if (isRegisterClass() || RHS.isRegisterClass()) {
201 if (!isRegisterClass() || !RHS.isRegisterClass())
202 return false;
203
204 std::set<Record*> Tmp;
205 std::insert_iterator< std::set<Record*> > II(Tmp, Tmp.begin());
Jim Grosbacha7c78222010-10-29 22:13:48 +0000206 std::set_intersection(Registers.begin(), Registers.end(),
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000207 RHS.Registers.begin(), RHS.Registers.end(),
208 II);
209
210 return !Tmp.empty();
211 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000212
213 // Otherwise we have two users operands; they are related if they are in the
214 // same class hierarchy.
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000215 //
216 // FIXME: This is an oversimplification, they should only be related if they
217 // intersect, however we don't have that information.
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000218 assert(isUserClass() && RHS.isUserClass() && "Unexpected class!");
219 const ClassInfo *Root = this;
220 while (!Root->SuperClasses.empty())
221 Root = Root->SuperClasses.front();
222
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000223 const ClassInfo *RHSRoot = &RHS;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000224 while (!RHSRoot->SuperClasses.empty())
225 RHSRoot = RHSRoot->SuperClasses.front();
Jim Grosbacha7c78222010-10-29 22:13:48 +0000226
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000227 return Root == RHSRoot;
228 }
229
Jim Grosbacha7c78222010-10-29 22:13:48 +0000230 /// isSubsetOf - Test whether this class is a subset of \arg RHS;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000231 bool isSubsetOf(const ClassInfo &RHS) const {
232 // This is a subset of RHS if it is the same class...
233 if (this == &RHS)
234 return true;
235
236 // ... or if any of its super classes are a subset of RHS.
237 for (std::vector<ClassInfo*>::const_iterator it = SuperClasses.begin(),
238 ie = SuperClasses.end(); it != ie; ++it)
239 if ((*it)->isSubsetOf(RHS))
240 return true;
241
242 return false;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000243 }
244
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000245 /// operator< - Compare two classes.
246 bool operator<(const ClassInfo &RHS) const {
Daniel Dunbar368a4562010-05-27 05:31:32 +0000247 if (this == &RHS)
248 return false;
249
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000250 // Unrelated classes can be ordered by kind.
251 if (!isRelatedTo(RHS))
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000252 return Kind < RHS.Kind;
253
254 switch (Kind) {
Daniel Dunbar6745d422009-08-09 05:18:30 +0000255 case Invalid:
Craig Topper655b8de2012-02-05 07:21:30 +0000256 llvm_unreachable("Invalid kind!");
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000257
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000258 default:
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000259 // This class precedes the RHS if it is a proper subset of the RHS.
Daniel Dunbar368a4562010-05-27 05:31:32 +0000260 if (isSubsetOf(RHS))
Duncan Sands34727662010-07-12 08:16:59 +0000261 return true;
Daniel Dunbar368a4562010-05-27 05:31:32 +0000262 if (RHS.isSubsetOf(*this))
Duncan Sands34727662010-07-12 08:16:59 +0000263 return false;
Daniel Dunbar368a4562010-05-27 05:31:32 +0000264
265 // Otherwise, order by name to ensure we have a total ordering.
266 return ValueName < RHS.ValueName;
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000267 }
268 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000269};
270
Chris Lattner22bc5c42010-11-01 05:06:45 +0000271/// MatchableInfo - Helper class for storing the necessary information for an
272/// instruction or alias which is capable of being matched.
273struct MatchableInfo {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000274 struct AsmOperand {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000275 /// Token - This is the token that the operand came from.
276 StringRef Token;
Bob Wilson828295b2011-01-26 21:26:19 +0000277
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000278 /// The unique class instance this operand should match.
279 ClassInfo *Class;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000280
Chris Lattner567820c2010-11-04 01:42:59 +0000281 /// The operand name this is, if anything.
282 StringRef SrcOpName;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000283
284 /// The suboperand index within SrcOpName, or -1 for the entire operand.
285 int SubOpIdx;
Bob Wilson828295b2011-01-26 21:26:19 +0000286
Devang Patel63faf822012-01-07 01:33:34 +0000287 /// Register record if this token is singleton register.
288 Record *SingletonReg;
289
Jim Grosbachf35307c2012-01-24 21:06:59 +0000290 explicit AsmOperand(StringRef T) : Token(T), Class(0), SubOpIdx(-1),
Jim Grosbach11fc6462012-04-11 21:02:33 +0000291 SingletonReg(0) {}
Daniel Dunbar20927f22009-08-07 08:26:05 +0000292 };
Bob Wilson828295b2011-01-26 21:26:19 +0000293
Chris Lattner1d13bda2010-11-04 00:43:46 +0000294 /// ResOperand - This represents a single operand in the result instruction
295 /// generated by the match. In cases (like addressing modes) where a single
296 /// assembler operand expands to multiple MCOperands, this represents the
297 /// single assembler operand, not the MCOperand.
298 struct ResOperand {
299 enum {
300 /// RenderAsmOperand - This represents an operand result that is
301 /// generated by calling the render method on the assembly operand. The
302 /// corresponding AsmOperand is specified by AsmOperandNum.
303 RenderAsmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000304
Chris Lattner1d13bda2010-11-04 00:43:46 +0000305 /// TiedOperand - This represents a result operand that is a duplicate of
306 /// a previous result operand.
Chris Lattner98c870f2010-11-06 19:25:43 +0000307 TiedOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000308
Chris Lattner98c870f2010-11-06 19:25:43 +0000309 /// ImmOperand - This represents an immediate value that is dumped into
310 /// the operand.
Chris Lattner90fd7972010-11-06 19:57:21 +0000311 ImmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000312
Chris Lattner90fd7972010-11-06 19:57:21 +0000313 /// RegOperand - This represents a fixed register that is dumped in.
314 RegOperand
Chris Lattner1d13bda2010-11-04 00:43:46 +0000315 } Kind;
Bob Wilson828295b2011-01-26 21:26:19 +0000316
Chris Lattner1d13bda2010-11-04 00:43:46 +0000317 union {
318 /// This is the operand # in the AsmOperands list that this should be
319 /// copied from.
320 unsigned AsmOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000321
Chris Lattner1d13bda2010-11-04 00:43:46 +0000322 /// TiedOperandNum - This is the (earlier) result operand that should be
323 /// copied from.
324 unsigned TiedOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000325
Chris Lattner98c870f2010-11-06 19:25:43 +0000326 /// ImmVal - This is the immediate value added to the instruction.
327 int64_t ImmVal;
Bob Wilson828295b2011-01-26 21:26:19 +0000328
Chris Lattner90fd7972010-11-06 19:57:21 +0000329 /// Register - This is the register record.
330 Record *Register;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000331 };
Bob Wilson828295b2011-01-26 21:26:19 +0000332
Bob Wilsona49c7df2011-01-26 19:44:55 +0000333 /// MINumOperands - The number of MCInst operands populated by this
334 /// operand.
335 unsigned MINumOperands;
Bob Wilson828295b2011-01-26 21:26:19 +0000336
Bob Wilsona49c7df2011-01-26 19:44:55 +0000337 static ResOperand getRenderedOp(unsigned AsmOpNum, unsigned NumOperands) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000338 ResOperand X;
339 X.Kind = RenderAsmOperand;
340 X.AsmOperandNum = AsmOpNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000341 X.MINumOperands = NumOperands;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000342 return X;
343 }
Bob Wilson828295b2011-01-26 21:26:19 +0000344
Bob Wilsona49c7df2011-01-26 19:44:55 +0000345 static ResOperand getTiedOp(unsigned TiedOperandNum) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000346 ResOperand X;
347 X.Kind = TiedOperand;
348 X.TiedOperandNum = TiedOperandNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000349 X.MINumOperands = 1;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000350 return X;
351 }
Bob Wilson828295b2011-01-26 21:26:19 +0000352
Bob Wilsona49c7df2011-01-26 19:44:55 +0000353 static ResOperand getImmOp(int64_t Val) {
Chris Lattner98c870f2010-11-06 19:25:43 +0000354 ResOperand X;
355 X.Kind = ImmOperand;
356 X.ImmVal = Val;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000357 X.MINumOperands = 1;
Chris Lattner98c870f2010-11-06 19:25:43 +0000358 return X;
359 }
Bob Wilson828295b2011-01-26 21:26:19 +0000360
Bob Wilsona49c7df2011-01-26 19:44:55 +0000361 static ResOperand getRegOp(Record *Reg) {
Chris Lattner90fd7972010-11-06 19:57:21 +0000362 ResOperand X;
363 X.Kind = RegOperand;
364 X.Register = Reg;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000365 X.MINumOperands = 1;
Chris Lattner90fd7972010-11-06 19:57:21 +0000366 return X;
367 }
Chris Lattner1d13bda2010-11-04 00:43:46 +0000368 };
Daniel Dunbar20927f22009-08-07 08:26:05 +0000369
Devang Patel56315d32012-01-10 17:50:43 +0000370 /// AsmVariantID - Target's assembly syntax variant no.
371 int AsmVariantID;
372
Chris Lattner3b5aec62010-11-02 17:34:28 +0000373 /// TheDef - This is the definition of the instruction or InstAlias that this
374 /// matchable came from.
Chris Lattner5bc93872010-11-01 04:34:44 +0000375 Record *const TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000376
Chris Lattnerc07bd402010-11-04 02:11:18 +0000377 /// DefRec - This is the definition that it came from.
378 PointerUnion<const CodeGenInstruction*, const CodeGenInstAlias*> DefRec;
Bob Wilson828295b2011-01-26 21:26:19 +0000379
Chris Lattner662e5a32010-11-06 07:14:44 +0000380 const CodeGenInstruction *getResultInst() const {
381 if (DefRec.is<const CodeGenInstruction*>())
382 return DefRec.get<const CodeGenInstruction*>();
383 return DefRec.get<const CodeGenInstAlias*>()->ResultInst;
384 }
Bob Wilson828295b2011-01-26 21:26:19 +0000385
Chris Lattner1d13bda2010-11-04 00:43:46 +0000386 /// ResOperands - This is the operand list that should be built for the result
387 /// MCInst.
Jim Grosbachb423d182012-04-19 17:52:34 +0000388 SmallVector<ResOperand, 8> ResOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000389
390 /// AsmString - The assembly string for this instruction (with variants
Chris Lattner3b5aec62010-11-02 17:34:28 +0000391 /// removed), e.g. "movsx $src, $dst".
Daniel Dunbar20927f22009-08-07 08:26:05 +0000392 std::string AsmString;
393
Chris Lattnerd19ec052010-11-02 17:30:52 +0000394 /// Mnemonic - This is the first token of the matched instruction, its
395 /// mnemonic.
396 StringRef Mnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +0000397
Chris Lattner3116fef2010-11-02 01:03:43 +0000398 /// AsmOperands - The textual operands that this instruction matches,
Chris Lattner3b5aec62010-11-02 17:34:28 +0000399 /// annotated with a class and where in the OperandList they were defined.
400 /// This directly corresponds to the tokenized AsmString after the mnemonic is
401 /// removed.
Jim Grosbachb423d182012-04-19 17:52:34 +0000402 SmallVector<AsmOperand, 8> AsmOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000403
Daniel Dunbar54074b52010-07-19 05:44:09 +0000404 /// Predicates - The required subtarget features to match this instruction.
405 SmallVector<SubtargetFeatureInfo*, 4> RequiredFeatures;
406
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000407 /// ConversionFnKind - The enum value which is passed to the generated
408 /// ConvertToMCInst to convert parsed operands into an MCInst for this
409 /// function.
410 std::string ConversionFnKind;
Bob Wilson828295b2011-01-26 21:26:19 +0000411
Chris Lattner22bc5c42010-11-01 05:06:45 +0000412 MatchableInfo(const CodeGenInstruction &CGI)
Jim Grosbachf35307c2012-01-24 21:06:59 +0000413 : AsmVariantID(0), TheDef(CGI.TheDef), DefRec(&CGI),
Devang Patel56315d32012-01-10 17:50:43 +0000414 AsmString(CGI.AsmString) {
Chris Lattner5bc93872010-11-01 04:34:44 +0000415 }
416
Chris Lattner22bc5c42010-11-01 05:06:45 +0000417 MatchableInfo(const CodeGenInstAlias *Alias)
Jim Grosbachf35307c2012-01-24 21:06:59 +0000418 : AsmVariantID(0), TheDef(Alias->TheDef), DefRec(Alias),
Devang Patel56315d32012-01-10 17:50:43 +0000419 AsmString(Alias->AsmString) {
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000420 }
Bob Wilson828295b2011-01-26 21:26:19 +0000421
Jim Grosbachc1922c72012-04-19 23:59:23 +0000422 // Two-operand aliases clone from the main matchable, but mark the second
423 // operand as a tied operand of the first for purposes of the assembler.
424 void formTwoOperandAlias(StringRef Constraint);
425
Jim Grosbach8caecde2012-04-19 17:52:32 +0000426 void initialize(const AsmMatcherInfo &Info,
Jim Grosbachf35307c2012-01-24 21:06:59 +0000427 SmallPtrSet<Record*, 16> &SingletonRegisters,
Jim Grosbach11fc6462012-04-11 21:02:33 +0000428 int AsmVariantNo, std::string &RegisterPrefix);
Bob Wilson828295b2011-01-26 21:26:19 +0000429
Jim Grosbach8caecde2012-04-19 17:52:32 +0000430 /// validate - Return true if this matchable is a valid thing to match against
Chris Lattner22bc5c42010-11-01 05:06:45 +0000431 /// and perform a bunch of validity checking.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000432 bool validate(StringRef CommentDelimiter, bool Hack) const;
Bob Wilson828295b2011-01-26 21:26:19 +0000433
Jim Grosbachf35307c2012-01-24 21:06:59 +0000434 /// extractSingletonRegisterForAsmOperand - Extract singleton register,
Devang Patel63faf822012-01-07 01:33:34 +0000435 /// if present, from specified token.
436 void
437 extractSingletonRegisterForAsmOperand(unsigned i, const AsmMatcherInfo &Info,
438 std::string &RegisterPrefix);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000439
Jim Grosbach8caecde2012-04-19 17:52:32 +0000440 /// findAsmOperand - Find the AsmOperand with the specified name and
Bob Wilsona49c7df2011-01-26 19:44:55 +0000441 /// suboperand index.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000442 int findAsmOperand(StringRef N, int SubOpIdx) const {
Bob Wilsona49c7df2011-01-26 19:44:55 +0000443 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
444 if (N == AsmOperands[i].SrcOpName &&
445 SubOpIdx == AsmOperands[i].SubOpIdx)
446 return i;
447 return -1;
448 }
Bob Wilson828295b2011-01-26 21:26:19 +0000449
Jim Grosbach8caecde2012-04-19 17:52:32 +0000450 /// findAsmOperandNamed - Find the first AsmOperand with the specified name.
Bob Wilsona49c7df2011-01-26 19:44:55 +0000451 /// This does not check the suboperand index.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000452 int findAsmOperandNamed(StringRef N) const {
Chris Lattnerba3b5b62010-11-04 01:55:23 +0000453 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
454 if (N == AsmOperands[i].SrcOpName)
455 return i;
456 return -1;
457 }
Bob Wilson828295b2011-01-26 21:26:19 +0000458
Jim Grosbach8caecde2012-04-19 17:52:32 +0000459 void buildInstructionResultOperands();
460 void buildAliasResultOperands();
Chris Lattner1d13bda2010-11-04 00:43:46 +0000461
Chris Lattner22bc5c42010-11-01 05:06:45 +0000462 /// operator< - Compare two matchables.
463 bool operator<(const MatchableInfo &RHS) const {
Chris Lattnere206fcf2010-09-06 21:01:37 +0000464 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000465 if (Mnemonic != RHS.Mnemonic)
466 return Mnemonic < RHS.Mnemonic;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000467
Chris Lattner3116fef2010-11-02 01:03:43 +0000468 if (AsmOperands.size() != RHS.AsmOperands.size())
469 return AsmOperands.size() < RHS.AsmOperands.size();
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000470
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000471 // Compare lexicographically by operand. The matcher validates that other
Jim Grosbach8caecde2012-04-19 17:52:32 +0000472 // orderings wouldn't be ambiguous using \see couldMatchAmbiguouslyWith().
Chris Lattner3116fef2010-11-02 01:03:43 +0000473 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
474 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000475 return true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000476 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000477 return false;
478 }
479
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000480 return false;
481 }
482
Jim Grosbach8caecde2012-04-19 17:52:32 +0000483 /// couldMatchAmbiguouslyWith - Check whether this matchable could
Daniel Dunbar2b544812009-08-09 06:05:33 +0000484 /// ambiguously match the same set of operands as \arg RHS (without being a
485 /// strictly superior match).
Jim Grosbach8caecde2012-04-19 17:52:32 +0000486 bool couldMatchAmbiguouslyWith(const MatchableInfo &RHS) {
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000487 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000488 if (Mnemonic != RHS.Mnemonic)
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000489 return false;
Bob Wilson828295b2011-01-26 21:26:19 +0000490
Daniel Dunbar2b544812009-08-09 06:05:33 +0000491 // The number of operands is unambiguous.
Chris Lattner3116fef2010-11-02 01:03:43 +0000492 if (AsmOperands.size() != RHS.AsmOperands.size())
Daniel Dunbar2b544812009-08-09 06:05:33 +0000493 return false;
494
Daniel Dunbar1402f0b2010-01-23 00:26:16 +0000495 // Otherwise, make sure the ordering of the two instructions is unambiguous
496 // by checking that either (a) a token or operand kind discriminates them,
497 // or (b) the ordering among equivalent kinds is consistent.
498
Daniel Dunbar2b544812009-08-09 06:05:33 +0000499 // Tokens and operand kinds are unambiguous (assuming a correct target
500 // specific parser).
Chris Lattner3116fef2010-11-02 01:03:43 +0000501 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
502 if (AsmOperands[i].Class->Kind != RHS.AsmOperands[i].Class->Kind ||
503 AsmOperands[i].Class->Kind == ClassInfo::Token)
504 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class ||
505 *RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000506 return false;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000507
Daniel Dunbar2b544812009-08-09 06:05:33 +0000508 // Otherwise, this operand could commute if all operands are equivalent, or
509 // there is a pair of operands that compare less than and a pair that
510 // compare greater than.
511 bool HasLT = false, HasGT = false;
Chris Lattner3116fef2010-11-02 01:03:43 +0000512 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
513 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000514 HasLT = true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000515 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000516 HasGT = true;
517 }
518
519 return !(HasLT ^ HasGT);
520 }
521
Daniel Dunbar20927f22009-08-07 08:26:05 +0000522 void dump();
Bob Wilson828295b2011-01-26 21:26:19 +0000523
Chris Lattnerd19ec052010-11-02 17:30:52 +0000524private:
Jim Grosbach8caecde2012-04-19 17:52:32 +0000525 void tokenizeAsmString(const AsmMatcherInfo &Info);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000526};
527
Daniel Dunbar54074b52010-07-19 05:44:09 +0000528/// SubtargetFeatureInfo - Helper class for storing information on a subtarget
529/// feature which participates in instruction matching.
530struct SubtargetFeatureInfo {
531 /// \brief The predicate record for this feature.
532 Record *TheDef;
533
534 /// \brief An unique index assigned to represent this feature.
535 unsigned Index;
536
Chris Lattner0aed1e72010-10-30 20:07:57 +0000537 SubtargetFeatureInfo(Record *D, unsigned Idx) : TheDef(D), Index(Idx) {}
Bob Wilson828295b2011-01-26 21:26:19 +0000538
Daniel Dunbar54074b52010-07-19 05:44:09 +0000539 /// \brief The name of the enumerated constant identifying this feature.
Chris Lattner0aed1e72010-10-30 20:07:57 +0000540 std::string getEnumName() const {
541 return "Feature_" + TheDef->getName();
542 }
Daniel Dunbar54074b52010-07-19 05:44:09 +0000543};
544
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000545struct OperandMatchEntry {
546 unsigned OperandMask;
547 MatchableInfo* MI;
548 ClassInfo *CI;
549
Jim Grosbach8caecde2012-04-19 17:52:32 +0000550 static OperandMatchEntry create(MatchableInfo* mi, ClassInfo *ci,
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000551 unsigned opMask) {
552 OperandMatchEntry X;
553 X.OperandMask = opMask;
554 X.CI = ci;
555 X.MI = mi;
556 return X;
557 }
558};
559
560
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000561class AsmMatcherInfo {
562public:
Chris Lattner67db8832010-12-13 00:23:57 +0000563 /// Tracked Records
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000564 RecordKeeper &Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000565
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000566 /// The tablegen AsmParser record.
567 Record *AsmParser;
568
Chris Lattner02bcbc92010-11-01 01:37:30 +0000569 /// Target - The target information.
570 CodeGenTarget &Target;
571
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000572 /// The classes which are needed for matching.
573 std::vector<ClassInfo*> Classes;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000574
Chris Lattner22bc5c42010-11-01 05:06:45 +0000575 /// The information on the matchables to match.
576 std::vector<MatchableInfo*> Matchables;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000577
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000578 /// Info for custom matching operands by user defined methods.
579 std::vector<OperandMatchEntry> OperandMatchInfo;
580
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000581 /// Map of Register records to their class information.
582 std::map<Record*, ClassInfo*> RegisterClasses;
583
Daniel Dunbar54074b52010-07-19 05:44:09 +0000584 /// Map of Predicate records to their subtarget information.
585 std::map<Record*, SubtargetFeatureInfo*> SubtargetFeatures;
Bob Wilson828295b2011-01-26 21:26:19 +0000586
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000587private:
588 /// Map of token to class information which has already been constructed.
589 std::map<std::string, ClassInfo*> TokenClasses;
590
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000591 /// Map of RegisterClass records to their class information.
592 std::map<Record*, ClassInfo*> RegisterClassClasses;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000593
Daniel Dunbar338825c2009-08-10 18:41:10 +0000594 /// Map of AsmOperandClass records to their class information.
595 std::map<Record*, ClassInfo*> AsmOperandClasses;
Daniel Dunbar6745d422009-08-09 05:18:30 +0000596
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000597private:
598 /// getTokenClass - Lookup or create the class for the given token.
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000599 ClassInfo *getTokenClass(StringRef Token);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000600
601 /// getOperandClass - Lookup or create the class for the given operand.
Bob Wilsona49c7df2011-01-26 19:44:55 +0000602 ClassInfo *getOperandClass(const CGIOperandList::OperandInfo &OI,
Jim Grosbach48c1f842011-10-28 22:32:53 +0000603 int SubOpIdx);
604 ClassInfo *getOperandClass(Record *Rec, int SubOpIdx);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000605
Jim Grosbach8caecde2012-04-19 17:52:32 +0000606 /// buildRegisterClasses - Build the ClassInfo* instances for register
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000607 /// classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000608 void buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters);
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000609
Jim Grosbach8caecde2012-04-19 17:52:32 +0000610 /// buildOperandClasses - Build the ClassInfo* instances for user defined
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000611 /// operand classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000612 void buildOperandClasses();
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000613
Jim Grosbach8caecde2012-04-19 17:52:32 +0000614 void buildInstructionOperandReference(MatchableInfo *II, StringRef OpName,
Bob Wilsona49c7df2011-01-26 19:44:55 +0000615 unsigned AsmOpIdx);
Jim Grosbach8caecde2012-04-19 17:52:32 +0000616 void buildAliasOperandReference(MatchableInfo *II, StringRef OpName,
Chris Lattnerc07bd402010-11-04 02:11:18 +0000617 MatchableInfo::AsmOperand &Op);
Bob Wilson828295b2011-01-26 21:26:19 +0000618
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000619public:
Bob Wilson828295b2011-01-26 21:26:19 +0000620 AsmMatcherInfo(Record *AsmParser,
621 CodeGenTarget &Target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000622 RecordKeeper &Records);
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000623
Jim Grosbach8caecde2012-04-19 17:52:32 +0000624 /// buildInfo - Construct the various tables used during matching.
625 void buildInfo();
Bob Wilson828295b2011-01-26 21:26:19 +0000626
Jim Grosbach8caecde2012-04-19 17:52:32 +0000627 /// buildOperandMatchInfo - Build the necessary information to handle user
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000628 /// defined operand parsing methods.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000629 void buildOperandMatchInfo();
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000630
Chris Lattner6fa152c2010-10-30 20:15:02 +0000631 /// getSubtargetFeature - Lookup or create the subtarget feature info for the
632 /// given operand.
633 SubtargetFeatureInfo *getSubtargetFeature(Record *Def) const {
634 assert(Def->isSubClassOf("Predicate") && "Invalid predicate type!");
635 std::map<Record*, SubtargetFeatureInfo*>::const_iterator I =
636 SubtargetFeatures.find(Def);
637 return I == SubtargetFeatures.end() ? 0 : I->second;
638 }
Chris Lattner67db8832010-12-13 00:23:57 +0000639
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000640 RecordKeeper &getRecords() const {
641 return Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000642 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000643};
644
Daniel Dunbar20927f22009-08-07 08:26:05 +0000645}
646
Chris Lattner22bc5c42010-11-01 05:06:45 +0000647void MatchableInfo::dump() {
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000648 errs() << TheDef->getName() << " -- " << "flattened:\"" << AsmString <<"\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000649
Chris Lattner3116fef2010-11-02 01:03:43 +0000650 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000651 AsmOperand &Op = AsmOperands[i];
Daniel Dunbar6745d422009-08-09 05:18:30 +0000652 errs() << " op[" << i << "] = " << Op.Class->ClassName << " - ";
Chris Lattner0bb780c2010-11-04 00:57:06 +0000653 errs() << '\"' << Op.Token << "\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000654 }
655}
656
Jim Grosbachc1922c72012-04-19 23:59:23 +0000657static std::pair<StringRef, StringRef>
658parseTwoOperandConstraint(StringRef S, SMLoc Loc) {
659 // Split via the '='.
660 std::pair<StringRef, StringRef> Ops = S.split('=');
661 if (Ops.second == "")
662 throw TGError(Loc, "missing '=' in two-operand alias constraint");
663 // Trim whitespace and the leading '$' on the operand names.
664 size_t start = Ops.first.find_first_of('$');
665 if (start == std::string::npos)
666 throw TGError(Loc, "expected '$' prefix on asm operand name");
667 Ops.first = Ops.first.slice(start + 1, std::string::npos);
668 size_t end = Ops.first.find_last_of(" \t");
669 Ops.first = Ops.first.slice(0, end);
670 // Now the second operand.
671 start = Ops.second.find_first_of('$');
672 if (start == std::string::npos)
673 throw TGError(Loc, "expected '$' prefix on asm operand name");
674 Ops.second = Ops.second.slice(start + 1, std::string::npos);
675 end = Ops.second.find_last_of(" \t");
676 Ops.first = Ops.first.slice(0, end);
677 return Ops;
678}
679
680void MatchableInfo::formTwoOperandAlias(StringRef Constraint) {
681 // Figure out which operands are aliased and mark them as tied.
682 std::pair<StringRef, StringRef> Ops =
683 parseTwoOperandConstraint(Constraint, TheDef->getLoc());
684
685 // Find the AsmOperands that refer to the operands we're aliasing.
686 int SrcAsmOperand = findAsmOperandNamed(Ops.first);
687 int DstAsmOperand = findAsmOperandNamed(Ops.second);
688 if (SrcAsmOperand == -1)
689 throw TGError(TheDef->getLoc(),
690 "unknown source two-operand alias operand '" +
691 Ops.first.str() + "'.");
692 if (DstAsmOperand == -1)
693 throw TGError(TheDef->getLoc(),
694 "unknown destination two-operand alias operand '" +
695 Ops.second.str() + "'.");
696
697 // Find the ResOperand that refers to the operand we're aliasing away
698 // and update it to refer to the combined operand instead.
699 for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
700 ResOperand &Op = ResOperands[i];
701 if (Op.Kind == ResOperand::RenderAsmOperand &&
702 Op.AsmOperandNum == (unsigned)SrcAsmOperand) {
703 Op.AsmOperandNum = DstAsmOperand;
704 break;
705 }
706 }
707 // Remove the AsmOperand for the alias operand.
708 AsmOperands.erase(AsmOperands.begin() + SrcAsmOperand);
709 // Adjust the ResOperand references to any AsmOperands that followed
710 // the one we just deleted.
711 for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
712 ResOperand &Op = ResOperands[i];
713 switch(Op.Kind) {
714 default:
715 // Nothing to do for operands that don't reference AsmOperands.
716 break;
717 case ResOperand::RenderAsmOperand:
718 if (Op.AsmOperandNum > (unsigned)SrcAsmOperand)
719 --Op.AsmOperandNum;
720 break;
721 case ResOperand::TiedOperand:
722 if (Op.TiedOperandNum > (unsigned)SrcAsmOperand)
723 --Op.TiedOperandNum;
724 break;
725 }
726 }
727}
728
Jim Grosbach8caecde2012-04-19 17:52:32 +0000729void MatchableInfo::initialize(const AsmMatcherInfo &Info,
Devang Patel63faf822012-01-07 01:33:34 +0000730 SmallPtrSet<Record*, 16> &SingletonRegisters,
731 int AsmVariantNo, std::string &RegisterPrefix) {
Devang Patel56315d32012-01-10 17:50:43 +0000732 AsmVariantID = AsmVariantNo;
Jim Grosbachf35307c2012-01-24 21:06:59 +0000733 AsmString =
Devang Patel63faf822012-01-07 01:33:34 +0000734 CodeGenInstruction::FlattenAsmStringVariants(AsmString, AsmVariantNo);
Bob Wilson828295b2011-01-26 21:26:19 +0000735
Jim Grosbach8caecde2012-04-19 17:52:32 +0000736 tokenizeAsmString(Info);
Bob Wilson828295b2011-01-26 21:26:19 +0000737
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000738 // Compute the require features.
739 std::vector<Record*> Predicates =TheDef->getValueAsListOfDefs("Predicates");
740 for (unsigned i = 0, e = Predicates.size(); i != e; ++i)
741 if (SubtargetFeatureInfo *Feature =
742 Info.getSubtargetFeature(Predicates[i]))
743 RequiredFeatures.push_back(Feature);
Bob Wilson828295b2011-01-26 21:26:19 +0000744
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000745 // Collect singleton registers, if used.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000746 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Devang Patel63faf822012-01-07 01:33:34 +0000747 extractSingletonRegisterForAsmOperand(i, Info, RegisterPrefix);
748 if (Record *Reg = AsmOperands[i].SingletonReg)
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000749 SingletonRegisters.insert(Reg);
750 }
751}
752
Jim Grosbach8caecde2012-04-19 17:52:32 +0000753/// tokenizeAsmString - Tokenize a simplified assembly string.
754void MatchableInfo::tokenizeAsmString(const AsmMatcherInfo &Info) {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000755 StringRef String = AsmString;
756 unsigned Prev = 0;
757 bool InTok = true;
758 for (unsigned i = 0, e = String.size(); i != e; ++i) {
759 switch (String[i]) {
760 case '[':
761 case ']':
762 case '*':
763 case '!':
764 case ' ':
765 case '\t':
766 case ',':
767 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000768 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000769 InTok = false;
770 }
771 if (!isspace(String[i]) && String[i] != ',')
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000772 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000773 Prev = i + 1;
774 break;
775
776 case '\\':
777 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000778 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000779 InTok = false;
780 }
781 ++i;
782 assert(i != String.size() && "Invalid quoted character");
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000783 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000784 Prev = i + 1;
785 break;
786
787 case '$': {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000788 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000789 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000790 InTok = false;
791 }
Bob Wilson828295b2011-01-26 21:26:19 +0000792
Chris Lattner7ad31472010-11-06 22:06:03 +0000793 // If this isn't "${", treat like a normal token.
794 if (i + 1 == String.size() || String[i + 1] != '{') {
795 Prev = i;
796 break;
797 }
Chris Lattnerd19ec052010-11-02 17:30:52 +0000798
799 StringRef::iterator End = std::find(String.begin() + i, String.end(),'}');
800 assert(End != String.end() && "Missing brace in operand reference!");
801 size_t EndPos = End - String.begin();
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000802 AsmOperands.push_back(AsmOperand(String.slice(i, EndPos+1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000803 Prev = EndPos + 1;
804 i = EndPos;
805 break;
806 }
807
808 case '.':
809 if (InTok)
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000810 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000811 Prev = i;
812 InTok = true;
813 break;
814
815 default:
816 InTok = true;
817 }
818 }
819 if (InTok && Prev != String.size())
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000820 AsmOperands.push_back(AsmOperand(String.substr(Prev)));
Bob Wilson828295b2011-01-26 21:26:19 +0000821
Chris Lattnerd19ec052010-11-02 17:30:52 +0000822 // The first token of the instruction is the mnemonic, which must be a
823 // simple string, not a $foo variable or a singleton register.
Jim Grosbach4a2242c2011-11-30 23:16:25 +0000824 if (AsmOperands.empty())
825 throw TGError(TheDef->getLoc(),
826 "Instruction '" + TheDef->getName() + "' has no tokens");
Chris Lattnerd19ec052010-11-02 17:30:52 +0000827 Mnemonic = AsmOperands[0].Token;
Devang Patel63faf822012-01-07 01:33:34 +0000828 // FIXME : Check and raise an error if it is a register.
Devang Patelb78307f2012-01-07 01:22:23 +0000829 if (Mnemonic[0] == '$')
Chris Lattnerd19ec052010-11-02 17:30:52 +0000830 throw TGError(TheDef->getLoc(),
831 "Invalid instruction mnemonic '" + Mnemonic.str() + "'!");
Bob Wilson828295b2011-01-26 21:26:19 +0000832
Chris Lattnerd19ec052010-11-02 17:30:52 +0000833 // Remove the first operand, it is tracked in the mnemonic field.
834 AsmOperands.erase(AsmOperands.begin());
835}
836
Jim Grosbach8caecde2012-04-19 17:52:32 +0000837bool MatchableInfo::validate(StringRef CommentDelimiter, bool Hack) const {
Chris Lattner22bc5c42010-11-01 05:06:45 +0000838 // Reject matchables with no .s string.
Chris Lattner5bc93872010-11-01 04:34:44 +0000839 if (AsmString.empty())
840 throw TGError(TheDef->getLoc(), "instruction with empty asm string");
Bob Wilson828295b2011-01-26 21:26:19 +0000841
Chris Lattner22bc5c42010-11-01 05:06:45 +0000842 // Reject any matchables with a newline in them, they should be marked
Chris Lattner5bc93872010-11-01 04:34:44 +0000843 // isCodeGenOnly if they are pseudo instructions.
844 if (AsmString.find('\n') != std::string::npos)
845 throw TGError(TheDef->getLoc(),
846 "multiline instruction is not valid for the asmparser, "
847 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000848
Chris Lattner4164f6b2010-11-01 04:44:29 +0000849 // Remove comments from the asm string. We know that the asmstring only
850 // has one line.
851 if (!CommentDelimiter.empty() &&
852 StringRef(AsmString).find(CommentDelimiter) != StringRef::npos)
853 throw TGError(TheDef->getLoc(),
854 "asmstring for instruction has comment character in it, "
855 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000856
Chris Lattner22bc5c42010-11-01 05:06:45 +0000857 // Reject matchables with operand modifiers, these aren't something we can
Bob Wilson906bc362011-01-20 18:38:07 +0000858 // handle, the target should be refactored to use operands instead of
859 // modifiers.
Chris Lattner5bc93872010-11-01 04:34:44 +0000860 //
861 // Also, check for instructions which reference the operand multiple times;
862 // this implies a constraint we would not honor.
863 std::set<std::string> OperandNames;
Chris Lattnerd19ec052010-11-02 17:30:52 +0000864 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
865 StringRef Tok = AsmOperands[i].Token;
866 if (Tok[0] == '$' && Tok.find(':') != StringRef::npos)
Chris Lattner5bc93872010-11-01 04:34:44 +0000867 throw TGError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000868 "matchable with operand modifier '" + Tok.str() +
Chris Lattner5bc93872010-11-01 04:34:44 +0000869 "' not supported by asm matcher. Mark isCodeGenOnly!");
Bob Wilson828295b2011-01-26 21:26:19 +0000870
Chris Lattner22bc5c42010-11-01 05:06:45 +0000871 // Verify that any operand is only mentioned once.
Chris Lattnerd51257a2010-11-02 23:18:43 +0000872 // We reject aliases and ignore instructions for now.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000873 if (Tok[0] == '$' && !OperandNames.insert(Tok).second) {
Chris Lattner22bc5c42010-11-01 05:06:45 +0000874 if (!Hack)
875 throw TGError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000876 "ERROR: matchable with tied operand '" + Tok.str() +
Chris Lattner22bc5c42010-11-01 05:06:45 +0000877 "' can never be matched!");
878 // FIXME: Should reject these. The ARM backend hits this with $lane in a
879 // bunch of instructions. It is unclear what the right answer is.
Chris Lattner5bc93872010-11-01 04:34:44 +0000880 DEBUG({
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000881 errs() << "warning: '" << TheDef->getName() << "': "
Chris Lattner22bc5c42010-11-01 05:06:45 +0000882 << "ignoring instruction with tied operand '"
Chris Lattnerd19ec052010-11-02 17:30:52 +0000883 << Tok.str() << "'\n";
Chris Lattner5bc93872010-11-01 04:34:44 +0000884 });
885 return false;
886 }
887 }
Bob Wilson828295b2011-01-26 21:26:19 +0000888
Chris Lattner5bc93872010-11-01 04:34:44 +0000889 return true;
890}
891
Jim Grosbachf35307c2012-01-24 21:06:59 +0000892/// extractSingletonRegisterForAsmOperand - Extract singleton register,
Devang Pateld06b01c2012-01-09 21:30:46 +0000893/// if present, from specified token.
Devang Patel63faf822012-01-07 01:33:34 +0000894void MatchableInfo::
Jim Grosbachf35307c2012-01-24 21:06:59 +0000895extractSingletonRegisterForAsmOperand(unsigned OperandNo,
Devang Pateld06b01c2012-01-09 21:30:46 +0000896 const AsmMatcherInfo &Info,
Jim Grosbach11fc6462012-04-11 21:02:33 +0000897 std::string &RegisterPrefix) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000898 StringRef Tok = AsmOperands[OperandNo].Token;
Devang Patel63faf822012-01-07 01:33:34 +0000899 if (RegisterPrefix.empty()) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000900 std::string LoweredTok = Tok.lower();
901 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(LoweredTok))
902 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Devang Patel63faf822012-01-07 01:33:34 +0000903 return;
Jim Grosbachf35307c2012-01-24 21:06:59 +0000904 }
Bob Wilson828295b2011-01-26 21:26:19 +0000905
Devang Patel63faf822012-01-07 01:33:34 +0000906 if (!Tok.startswith(RegisterPrefix))
907 return;
908
909 StringRef RegName = Tok.substr(RegisterPrefix.size());
Chris Lattnerec6f0962010-11-02 18:10:06 +0000910 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(RegName))
Devang Pateld06b01c2012-01-09 21:30:46 +0000911 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000912
Chris Lattner1de88232010-11-01 01:47:07 +0000913 // If there is no register prefix (i.e. "%" in "%eax"), then this may
914 // be some random non-register token, just ignore it.
Devang Patel63faf822012-01-07 01:33:34 +0000915 return;
Chris Lattner02bcbc92010-11-01 01:37:30 +0000916}
917
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000918static std::string getEnumNameForToken(StringRef Str) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000919 std::string Res;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000920
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000921 for (StringRef::iterator it = Str.begin(), ie = Str.end(); it != ie; ++it) {
922 switch (*it) {
923 case '*': Res += "_STAR_"; break;
924 case '%': Res += "_PCT_"; break;
925 case ':': Res += "_COLON_"; break;
Bill Wendlingbd9c77b2010-11-18 23:36:54 +0000926 case '!': Res += "_EXCLAIM_"; break;
Bill Wendling0ef755d2011-01-22 09:44:32 +0000927 case '.': Res += "_DOT_"; break;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000928 default:
Chris Lattner39ee0362010-10-31 19:10:56 +0000929 if (isalnum(*it))
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000930 Res += *it;
Chris Lattner39ee0362010-10-31 19:10:56 +0000931 else
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000932 Res += "_" + utostr((unsigned) *it) + "_";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000933 }
934 }
935
936 return Res;
937}
938
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000939ClassInfo *AsmMatcherInfo::getTokenClass(StringRef Token) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000940 ClassInfo *&Entry = TokenClasses[Token];
Jim Grosbacha7c78222010-10-29 22:13:48 +0000941
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000942 if (!Entry) {
943 Entry = new ClassInfo();
944 Entry->Kind = ClassInfo::Token;
Daniel Dunbar6745d422009-08-09 05:18:30 +0000945 Entry->ClassName = "Token";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000946 Entry->Name = "MCK_" + getEnumNameForToken(Token);
947 Entry->ValueName = Token;
948 Entry->PredicateMethod = "<invalid>";
949 Entry->RenderMethod = "<invalid>";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000950 Entry->ParserMethod = "";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000951 Classes.push_back(Entry);
952 }
953
954 return Entry;
955}
956
957ClassInfo *
Bob Wilsona49c7df2011-01-26 19:44:55 +0000958AsmMatcherInfo::getOperandClass(const CGIOperandList::OperandInfo &OI,
959 int SubOpIdx) {
960 Record *Rec = OI.Rec;
961 if (SubOpIdx != -1)
David Greene05bce0b2011-07-29 22:43:06 +0000962 Rec = dynamic_cast<DefInit*>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
Jim Grosbach48c1f842011-10-28 22:32:53 +0000963 return getOperandClass(Rec, SubOpIdx);
964}
Bob Wilsona49c7df2011-01-26 19:44:55 +0000965
Jim Grosbach48c1f842011-10-28 22:32:53 +0000966ClassInfo *
967AsmMatcherInfo::getOperandClass(Record *Rec, int SubOpIdx) {
Owen Andersonbea6f612011-06-27 21:06:21 +0000968 if (Rec->isSubClassOf("RegisterOperand")) {
969 // RegisterOperand may have an associated ParserMatchClass. If it does,
970 // use it, else just fall back to the underlying register class.
971 const RecordVal *R = Rec->getValue("ParserMatchClass");
972 if (R == 0 || R->getValue() == 0)
973 throw "Record `" + Rec->getName() +
974 "' does not have a ParserMatchClass!\n";
975
David Greene05bce0b2011-07-29 22:43:06 +0000976 if (DefInit *DI= dynamic_cast<DefInit*>(R->getValue())) {
Owen Andersonbea6f612011-06-27 21:06:21 +0000977 Record *MatchClass = DI->getDef();
978 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
979 return CI;
980 }
981
982 // No custom match class. Just use the register class.
983 Record *ClassRec = Rec->getValueAsDef("RegClass");
984 if (!ClassRec)
985 throw TGError(Rec->getLoc(), "RegisterOperand `" + Rec->getName() +
986 "' has no associated register class!\n");
987 if (ClassInfo *CI = RegisterClassClasses[ClassRec])
988 return CI;
989 throw TGError(Rec->getLoc(), "register class has no class info!");
990 }
991
992
Bob Wilsona49c7df2011-01-26 19:44:55 +0000993 if (Rec->isSubClassOf("RegisterClass")) {
994 if (ClassInfo *CI = RegisterClassClasses[Rec])
Chris Lattnerec6f0962010-11-02 18:10:06 +0000995 return CI;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000996 throw TGError(Rec->getLoc(), "register class has no class info!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000997 }
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000998
Bob Wilsona49c7df2011-01-26 19:44:55 +0000999 assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
1000 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
Chris Lattnerec6f0962010-11-02 18:10:06 +00001001 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
1002 return CI;
Daniel Dunbar338825c2009-08-10 18:41:10 +00001003
Bob Wilsona49c7df2011-01-26 19:44:55 +00001004 throw TGError(Rec->getLoc(), "operand has no match class!");
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001005}
1006
Chris Lattner1de88232010-11-01 01:47:07 +00001007void AsmMatcherInfo::
Jim Grosbach8caecde2012-04-19 17:52:32 +00001008buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001009 const std::vector<CodeGenRegister*> &Registers =
1010 Target.getRegBank().getRegisters();
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001011 ArrayRef<CodeGenRegisterClass*> RegClassList =
1012 Target.getRegBank().getRegClasses();
Daniel Dunbar338825c2009-08-10 18:41:10 +00001013
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001014 // The register sets used for matching.
1015 std::set< std::set<Record*> > RegisterSets;
1016
Jim Grosbacha7c78222010-10-29 22:13:48 +00001017 // Gather the defined sets.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001018 for (ArrayRef<CodeGenRegisterClass*>::const_iterator it =
Chris Lattnerec6f0962010-11-02 18:10:06 +00001019 RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it)
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001020 RegisterSets.insert(std::set<Record*>(
1021 (*it)->getOrder().begin(), (*it)->getOrder().end()));
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001022
1023 // Add any required singleton sets.
Chris Lattner1de88232010-11-01 01:47:07 +00001024 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1025 ie = SingletonRegisters.end(); it != ie; ++it) {
1026 Record *Rec = *it;
1027 RegisterSets.insert(std::set<Record*>(&Rec, &Rec + 1));
1028 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001029
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001030 // Introduce derived sets where necessary (when a register does not determine
1031 // a unique register set class), and build the mapping of registers to the set
1032 // they should classify to.
1033 std::map<Record*, std::set<Record*> > RegisterMap;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001034 for (std::vector<CodeGenRegister*>::const_iterator it = Registers.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001035 ie = Registers.end(); it != ie; ++it) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001036 const CodeGenRegister &CGR = **it;
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001037 // Compute the intersection of all sets containing this register.
1038 std::set<Record*> ContainingSet;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001039
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001040 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1041 ie = RegisterSets.end(); it != ie; ++it) {
1042 if (!it->count(CGR.TheDef))
1043 continue;
1044
1045 if (ContainingSet.empty()) {
1046 ContainingSet = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +00001047 continue;
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001048 }
Bob Wilson828295b2011-01-26 21:26:19 +00001049
Chris Lattnerec6f0962010-11-02 18:10:06 +00001050 std::set<Record*> Tmp;
1051 std::swap(Tmp, ContainingSet);
1052 std::insert_iterator< std::set<Record*> > II(ContainingSet,
1053 ContainingSet.begin());
1054 std::set_intersection(Tmp.begin(), Tmp.end(), it->begin(), it->end(), II);
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001055 }
1056
1057 if (!ContainingSet.empty()) {
1058 RegisterSets.insert(ContainingSet);
1059 RegisterMap.insert(std::make_pair(CGR.TheDef, ContainingSet));
1060 }
1061 }
1062
1063 // Construct the register classes.
1064 std::map<std::set<Record*>, ClassInfo*> RegisterSetClasses;
1065 unsigned Index = 0;
1066 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1067 ie = RegisterSets.end(); it != ie; ++it, ++Index) {
1068 ClassInfo *CI = new ClassInfo();
1069 CI->Kind = ClassInfo::RegisterClass0 + Index;
1070 CI->ClassName = "Reg" + utostr(Index);
1071 CI->Name = "MCK_Reg" + utostr(Index);
1072 CI->ValueName = "";
1073 CI->PredicateMethod = ""; // unused
1074 CI->RenderMethod = "addRegOperands";
Daniel Dunbar8409bfb2009-08-11 20:10:07 +00001075 CI->Registers = *it;
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001076 Classes.push_back(CI);
1077 RegisterSetClasses.insert(std::make_pair(*it, CI));
1078 }
1079
1080 // Find the superclasses; we could compute only the subgroup lattice edges,
1081 // but there isn't really a point.
1082 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1083 ie = RegisterSets.end(); it != ie; ++it) {
1084 ClassInfo *CI = RegisterSetClasses[*it];
1085 for (std::set< std::set<Record*> >::iterator it2 = RegisterSets.begin(),
1086 ie2 = RegisterSets.end(); it2 != ie2; ++it2)
Jim Grosbacha7c78222010-10-29 22:13:48 +00001087 if (*it != *it2 &&
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001088 std::includes(it2->begin(), it2->end(), it->begin(), it->end()))
1089 CI->SuperClasses.push_back(RegisterSetClasses[*it2]);
1090 }
1091
1092 // Name the register classes which correspond to a user defined RegisterClass.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001093 for (ArrayRef<CodeGenRegisterClass*>::const_iterator
Chris Lattnerec6f0962010-11-02 18:10:06 +00001094 it = RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001095 const CodeGenRegisterClass &RC = **it;
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001096 // Def will be NULL for non-user defined register classes.
1097 Record *Def = RC.getDef();
1098 if (!Def)
1099 continue;
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001100 ClassInfo *CI = RegisterSetClasses[std::set<Record*>(RC.getOrder().begin(),
1101 RC.getOrder().end())];
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001102 if (CI->ValueName.empty()) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001103 CI->ClassName = RC.getName();
1104 CI->Name = "MCK_" + RC.getName();
1105 CI->ValueName = RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001106 } else
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001107 CI->ValueName = CI->ValueName + "," + RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001108
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001109 RegisterClassClasses.insert(std::make_pair(Def, CI));
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001110 }
1111
1112 // Populate the map for individual registers.
1113 for (std::map<Record*, std::set<Record*> >::iterator it = RegisterMap.begin(),
1114 ie = RegisterMap.end(); it != ie; ++it)
Chris Lattnerec6f0962010-11-02 18:10:06 +00001115 RegisterClasses[it->first] = RegisterSetClasses[it->second];
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001116
1117 // Name the register classes which correspond to singleton registers.
Chris Lattner1de88232010-11-01 01:47:07 +00001118 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1119 ie = SingletonRegisters.end(); it != ie; ++it) {
1120 Record *Rec = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +00001121 ClassInfo *CI = RegisterClasses[Rec];
Chris Lattner1de88232010-11-01 01:47:07 +00001122 assert(CI && "Missing singleton register class info!");
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001123
Chris Lattner1de88232010-11-01 01:47:07 +00001124 if (CI->ValueName.empty()) {
1125 CI->ClassName = Rec->getName();
1126 CI->Name = "MCK_" + Rec->getName();
1127 CI->ValueName = Rec->getName();
1128 } else
1129 CI->ValueName = CI->ValueName + "," + Rec->getName();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001130 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001131}
1132
Jim Grosbach8caecde2012-04-19 17:52:32 +00001133void AsmMatcherInfo::buildOperandClasses() {
Chris Lattnere66b7eb2010-11-01 23:57:23 +00001134 std::vector<Record*> AsmOperands =
1135 Records.getAllDerivedDefinitions("AsmOperandClass");
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001136
1137 // Pre-populate AsmOperandClasses map.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001138 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001139 ie = AsmOperands.end(); it != ie; ++it)
1140 AsmOperandClasses[*it] = new ClassInfo();
1141
Daniel Dunbar338825c2009-08-10 18:41:10 +00001142 unsigned Index = 0;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001143 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbar338825c2009-08-10 18:41:10 +00001144 ie = AsmOperands.end(); it != ie; ++it, ++Index) {
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001145 ClassInfo *CI = AsmOperandClasses[*it];
Daniel Dunbar338825c2009-08-10 18:41:10 +00001146 CI->Kind = ClassInfo::UserClass0 + Index;
1147
David Greene05bce0b2011-07-29 22:43:06 +00001148 ListInit *Supers = (*it)->getValueAsListInit("SuperClasses");
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001149 for (unsigned i = 0, e = Supers->getSize(); i != e; ++i) {
David Greene05bce0b2011-07-29 22:43:06 +00001150 DefInit *DI = dynamic_cast<DefInit*>(Supers->getElement(i));
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001151 if (!DI) {
1152 PrintError((*it)->getLoc(), "Invalid super class reference!");
1153 continue;
1154 }
1155
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001156 ClassInfo *SC = AsmOperandClasses[DI->getDef()];
1157 if (!SC)
Daniel Dunbar338825c2009-08-10 18:41:10 +00001158 PrintError((*it)->getLoc(), "Invalid super class reference!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001159 else
1160 CI->SuperClasses.push_back(SC);
Daniel Dunbar338825c2009-08-10 18:41:10 +00001161 }
1162 CI->ClassName = (*it)->getValueAsString("Name");
1163 CI->Name = "MCK_" + CI->ClassName;
1164 CI->ValueName = (*it)->getName();
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001165
1166 // Get or construct the predicate method name.
David Greene05bce0b2011-07-29 22:43:06 +00001167 Init *PMName = (*it)->getValueInit("PredicateMethod");
1168 if (StringInit *SI = dynamic_cast<StringInit*>(PMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001169 CI->PredicateMethod = SI->getValue();
1170 } else {
David Greene05bce0b2011-07-29 22:43:06 +00001171 assert(dynamic_cast<UnsetInit*>(PMName) &&
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001172 "Unexpected PredicateMethod field!");
1173 CI->PredicateMethod = "is" + CI->ClassName;
1174 }
1175
1176 // Get or construct the render method name.
David Greene05bce0b2011-07-29 22:43:06 +00001177 Init *RMName = (*it)->getValueInit("RenderMethod");
1178 if (StringInit *SI = dynamic_cast<StringInit*>(RMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001179 CI->RenderMethod = SI->getValue();
1180 } else {
David Greene05bce0b2011-07-29 22:43:06 +00001181 assert(dynamic_cast<UnsetInit*>(RMName) &&
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001182 "Unexpected RenderMethod field!");
1183 CI->RenderMethod = "add" + CI->ClassName + "Operands";
1184 }
1185
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001186 // Get the parse method name or leave it as empty.
David Greene05bce0b2011-07-29 22:43:06 +00001187 Init *PRMName = (*it)->getValueInit("ParserMethod");
1188 if (StringInit *SI = dynamic_cast<StringInit*>(PRMName))
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001189 CI->ParserMethod = SI->getValue();
1190
Daniel Dunbar338825c2009-08-10 18:41:10 +00001191 AsmOperandClasses[*it] = CI;
1192 Classes.push_back(CI);
1193 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001194}
1195
Bob Wilson828295b2011-01-26 21:26:19 +00001196AsmMatcherInfo::AsmMatcherInfo(Record *asmParser,
1197 CodeGenTarget &target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +00001198 RecordKeeper &records)
Devang Patel63faf822012-01-07 01:33:34 +00001199 : Records(records), AsmParser(asmParser), Target(target) {
Daniel Dunbar59fc42d2009-08-11 20:59:47 +00001200}
1201
Jim Grosbach8caecde2012-04-19 17:52:32 +00001202/// buildOperandMatchInfo - Build the necessary information to handle user
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001203/// defined operand parsing methods.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001204void AsmMatcherInfo::buildOperandMatchInfo() {
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001205
Jim Grosbachd4824fc2012-04-18 23:46:25 +00001206 /// Map containing a mask with all operands indices that can be found for
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001207 /// that class inside a instruction.
1208 std::map<ClassInfo*, unsigned> OpClassMask;
1209
1210 for (std::vector<MatchableInfo*>::const_iterator it =
1211 Matchables.begin(), ie = Matchables.end();
1212 it != ie; ++it) {
1213 MatchableInfo &II = **it;
1214 OpClassMask.clear();
1215
1216 // Keep track of all operands of this instructions which belong to the
1217 // same class.
1218 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
1219 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
1220 if (Op.Class->ParserMethod.empty())
1221 continue;
1222 unsigned &OperandMask = OpClassMask[Op.Class];
1223 OperandMask |= (1 << i);
1224 }
1225
1226 // Generate operand match info for each mnemonic/operand class pair.
1227 for (std::map<ClassInfo*, unsigned>::iterator iit = OpClassMask.begin(),
1228 iie = OpClassMask.end(); iit != iie; ++iit) {
1229 unsigned OpMask = iit->second;
1230 ClassInfo *CI = iit->first;
Jim Grosbach8caecde2012-04-19 17:52:32 +00001231 OperandMatchInfo.push_back(OperandMatchEntry::create(&II, CI, OpMask));
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001232 }
1233 }
1234}
1235
Jim Grosbach8caecde2012-04-19 17:52:32 +00001236void AsmMatcherInfo::buildInfo() {
Chris Lattner0aed1e72010-10-30 20:07:57 +00001237 // Build information about all of the AssemblerPredicates.
1238 std::vector<Record*> AllPredicates =
1239 Records.getAllDerivedDefinitions("Predicate");
1240 for (unsigned i = 0, e = AllPredicates.size(); i != e; ++i) {
1241 Record *Pred = AllPredicates[i];
1242 // Ignore predicates that are not intended for the assembler.
1243 if (!Pred->getValueAsBit("AssemblerMatcherPredicate"))
1244 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00001245
Chris Lattner4164f6b2010-11-01 04:44:29 +00001246 if (Pred->getName().empty())
1247 throw TGError(Pred->getLoc(), "Predicate has no name!");
Bob Wilson828295b2011-01-26 21:26:19 +00001248
Chris Lattner0aed1e72010-10-30 20:07:57 +00001249 unsigned FeatureNo = SubtargetFeatures.size();
1250 SubtargetFeatures[Pred] = new SubtargetFeatureInfo(Pred, FeatureNo);
1251 assert(FeatureNo < 32 && "Too many subtarget features!");
1252 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001253
Chris Lattner39ee0362010-10-31 19:10:56 +00001254 // Parse the instructions; we need to do this first so that we can gather the
1255 // singleton register classes.
Chris Lattner1de88232010-11-01 01:47:07 +00001256 SmallPtrSet<Record*, 16> SingletonRegisters;
Devang Patel0dbcada2012-01-09 19:13:28 +00001257 unsigned VariantCount = Target.getAsmParserVariantCount();
1258 for (unsigned VC = 0; VC != VariantCount; ++VC) {
1259 Record *AsmVariant = Target.getAsmParserVariant(VC);
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001260 std::string CommentDelimiter =
1261 AsmVariant->getValueAsString("CommentDelimiter");
Devang Patel0dbcada2012-01-09 19:13:28 +00001262 std::string RegisterPrefix = AsmVariant->getValueAsString("RegisterPrefix");
1263 int AsmVariantNo = AsmVariant->getValueAsInt("Variant");
Jim Grosbachf35307c2012-01-24 21:06:59 +00001264
Devang Patel0dbcada2012-01-09 19:13:28 +00001265 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
Jim Grosbach11fc6462012-04-11 21:02:33 +00001266 E = Target.inst_end(); I != E; ++I) {
Devang Patel0dbcada2012-01-09 19:13:28 +00001267 const CodeGenInstruction &CGI = **I;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001268
Devang Patel0dbcada2012-01-09 19:13:28 +00001269 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1270 // filter the set of instructions we consider.
1271 if (!StringRef(CGI.TheDef->getName()).startswith(MatchPrefix))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001272 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001273
Devang Patel0dbcada2012-01-09 19:13:28 +00001274 // Ignore "codegen only" instructions.
1275 if (CGI.TheDef->getValueAsBit("isCodeGenOnly"))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001276 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001277
Devang Patel0dbcada2012-01-09 19:13:28 +00001278 // Validate the operand list to ensure we can handle this instruction.
1279 for (unsigned i = 0, e = CGI.Operands.size(); i != e; ++i) {
Jim Grosbach11fc6462012-04-11 21:02:33 +00001280 const CGIOperandList::OperandInfo &OI = CGI.Operands[i];
1281
1282 // Validate tied operands.
1283 if (OI.getTiedRegister() != -1) {
1284 // If we have a tied operand that consists of multiple MCOperands,
1285 // reject it. We reject aliases and ignore instructions for now.
1286 if (OI.MINumOperands != 1) {
1287 // FIXME: Should reject these. The ARM backend hits this with $lane
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001288 // in a bunch of instructions. The right answer is unclear.
Jim Grosbach11fc6462012-04-11 21:02:33 +00001289 DEBUG({
1290 errs() << "warning: '" << CGI.TheDef->getName() << "': "
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001291 << "ignoring instruction with multi-operand tied operand '"
1292 << OI.Name << "'\n";
Jim Grosbach11fc6462012-04-11 21:02:33 +00001293 });
1294 continue;
1295 }
1296 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001297 }
Jim Grosbachf35307c2012-01-24 21:06:59 +00001298
Devang Patel0dbcada2012-01-09 19:13:28 +00001299 OwningPtr<MatchableInfo> II(new MatchableInfo(CGI));
Jim Grosbachf35307c2012-01-24 21:06:59 +00001300
Jim Grosbach8caecde2012-04-19 17:52:32 +00001301 II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001302
Devang Patel0dbcada2012-01-09 19:13:28 +00001303 // Ignore instructions which shouldn't be matched and diagnose invalid
1304 // instruction definitions with an error.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001305 if (!II->validate(CommentDelimiter, true))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001306 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001307
Devang Patel0dbcada2012-01-09 19:13:28 +00001308 // Ignore "Int_*" and "*_Int" instructions, which are internal aliases.
1309 //
1310 // FIXME: This is a total hack.
1311 if (StringRef(II->TheDef->getName()).startswith("Int_") ||
Jim Grosbach11fc6462012-04-11 21:02:33 +00001312 StringRef(II->TheDef->getName()).endswith("_Int"))
1313 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001314
Devang Patel0dbcada2012-01-09 19:13:28 +00001315 Matchables.push_back(II.take());
Chris Lattner1d13bda2010-11-04 00:43:46 +00001316 }
Jim Grosbachf35307c2012-01-24 21:06:59 +00001317
Devang Patel0dbcada2012-01-09 19:13:28 +00001318 // Parse all of the InstAlias definitions and stick them in the list of
1319 // matchables.
1320 std::vector<Record*> AllInstAliases =
1321 Records.getAllDerivedDefinitions("InstAlias");
1322 for (unsigned i = 0, e = AllInstAliases.size(); i != e; ++i) {
1323 CodeGenInstAlias *Alias = new CodeGenInstAlias(AllInstAliases[i], Target);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001324
Devang Patel0dbcada2012-01-09 19:13:28 +00001325 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1326 // filter the set of instruction aliases we consider, based on the target
1327 // instruction.
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001328 if (!StringRef(Alias->ResultInst->TheDef->getName())
1329 .startswith( MatchPrefix))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001330 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001331
Devang Patel0dbcada2012-01-09 19:13:28 +00001332 OwningPtr<MatchableInfo> II(new MatchableInfo(Alias));
Jim Grosbachf35307c2012-01-24 21:06:59 +00001333
Jim Grosbach8caecde2012-04-19 17:52:32 +00001334 II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001335
Devang Patel0dbcada2012-01-09 19:13:28 +00001336 // Validate the alias definitions.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001337 II->validate(CommentDelimiter, false);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001338
Devang Patel0dbcada2012-01-09 19:13:28 +00001339 Matchables.push_back(II.take());
1340 }
Chris Lattnerc76e80d2010-11-01 04:05:41 +00001341 }
Chris Lattnerc240bb02010-11-01 04:03:32 +00001342
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001343 // Build info for the register classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001344 buildRegisterClasses(SingletonRegisters);
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001345
1346 // Build info for the user defined assembly operand classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001347 buildOperandClasses();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001348
Chris Lattner0bb780c2010-11-04 00:57:06 +00001349 // Build the information about matchables, now that we have fully formed
1350 // classes.
Jim Grosbachc1922c72012-04-19 23:59:23 +00001351 std::vector<MatchableInfo*> NewMatchables;
Chris Lattner22bc5c42010-11-01 05:06:45 +00001352 for (std::vector<MatchableInfo*>::iterator it = Matchables.begin(),
1353 ie = Matchables.end(); it != ie; ++it) {
1354 MatchableInfo *II = *it;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001355
Chris Lattnere206fcf2010-09-06 21:01:37 +00001356 // Parse the tokens after the mnemonic.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001357 // Note: buildInstructionOperandReference may insert new AsmOperands, so
Bob Wilsona49c7df2011-01-26 19:44:55 +00001358 // don't precompute the loop bound.
1359 for (unsigned i = 0; i != II->AsmOperands.size(); ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +00001360 MatchableInfo::AsmOperand &Op = II->AsmOperands[i];
Chris Lattnerd19ec052010-11-02 17:30:52 +00001361 StringRef Token = Op.Token;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001362
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001363 // Check for singleton registers.
Devang Patel63faf822012-01-07 01:33:34 +00001364 if (Record *RegRecord = II->AsmOperands[i].SingletonReg) {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001365 Op.Class = RegisterClasses[RegRecord];
Chris Lattner02bcbc92010-11-01 01:37:30 +00001366 assert(Op.Class && Op.Class->Registers.size() == 1 &&
1367 "Unexpected class for singleton register");
Chris Lattner02bcbc92010-11-01 01:37:30 +00001368 continue;
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001369 }
1370
Daniel Dunbar20927f22009-08-07 08:26:05 +00001371 // Check for simple tokens.
1372 if (Token[0] != '$') {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001373 Op.Class = getTokenClass(Token);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001374 continue;
1375 }
1376
Chris Lattner7ad31472010-11-06 22:06:03 +00001377 if (Token.size() > 1 && isdigit(Token[1])) {
1378 Op.Class = getTokenClass(Token);
1379 continue;
1380 }
Bob Wilson828295b2011-01-26 21:26:19 +00001381
Chris Lattnerc07bd402010-11-04 02:11:18 +00001382 // Otherwise this is an operand reference.
Chris Lattner5f4280c2010-11-04 01:58:23 +00001383 StringRef OperandName;
1384 if (Token[1] == '{')
1385 OperandName = Token.substr(2, Token.size() - 3);
1386 else
1387 OperandName = Token.substr(1);
Bob Wilson828295b2011-01-26 21:26:19 +00001388
Chris Lattnerc07bd402010-11-04 02:11:18 +00001389 if (II->DefRec.is<const CodeGenInstruction*>())
Jim Grosbach8caecde2012-04-19 17:52:32 +00001390 buildInstructionOperandReference(II, OperandName, i);
Chris Lattnerc07bd402010-11-04 02:11:18 +00001391 else
Jim Grosbach8caecde2012-04-19 17:52:32 +00001392 buildAliasOperandReference(II, OperandName, Op);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001393 }
Bob Wilson828295b2011-01-26 21:26:19 +00001394
Jim Grosbachc1922c72012-04-19 23:59:23 +00001395 if (II->DefRec.is<const CodeGenInstruction*>()) {
Jim Grosbach8caecde2012-04-19 17:52:32 +00001396 II->buildInstructionResultOperands();
Jim Grosbachc1922c72012-04-19 23:59:23 +00001397 // If the instruction has a two-operand alias, build up the
1398 // matchable here. We'll add them in bulk at the end to avoid
1399 // confusing this loop.
1400 std::string Constraint =
1401 II->TheDef->getValueAsString("TwoOperandAliasConstraint");
1402 if (Constraint != "") {
1403 // Start by making a copy of the original matchable.
1404 OwningPtr<MatchableInfo> AliasII(new MatchableInfo(*II));
1405
1406 // Adjust it to be a two-operand alias.
1407 AliasII->formTwoOperandAlias(Constraint);
1408
1409 // Add the alias to the matchables list.
1410 NewMatchables.push_back(AliasII.take());
1411 }
1412 } else
Jim Grosbach8caecde2012-04-19 17:52:32 +00001413 II->buildAliasResultOperands();
Daniel Dunbar20927f22009-08-07 08:26:05 +00001414 }
Jim Grosbachc1922c72012-04-19 23:59:23 +00001415 if (!NewMatchables.empty())
1416 Matchables.insert(Matchables.end(), NewMatchables.begin(),
1417 NewMatchables.end());
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001418
Jim Grosbacha66512e2011-12-06 23:43:54 +00001419 // Process token alias definitions and set up the associated superclass
1420 // information.
1421 std::vector<Record*> AllTokenAliases =
1422 Records.getAllDerivedDefinitions("TokenAlias");
1423 for (unsigned i = 0, e = AllTokenAliases.size(); i != e; ++i) {
1424 Record *Rec = AllTokenAliases[i];
1425 ClassInfo *FromClass = getTokenClass(Rec->getValueAsString("FromToken"));
1426 ClassInfo *ToClass = getTokenClass(Rec->getValueAsString("ToToken"));
Jim Grosbach67cd20d2012-04-17 21:23:52 +00001427 if (FromClass == ToClass)
1428 throw TGError(Rec->getLoc(),
1429 "error: Destination value identical to source value.");
Jim Grosbacha66512e2011-12-06 23:43:54 +00001430 FromClass->SuperClasses.push_back(ToClass);
1431 }
1432
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001433 // Reorder classes so that classes precede super classes.
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001434 std::sort(Classes.begin(), Classes.end(), less_ptr<ClassInfo>());
Daniel Dunbar20927f22009-08-07 08:26:05 +00001435}
1436
Jim Grosbach8caecde2012-04-19 17:52:32 +00001437/// buildInstructionOperandReference - The specified operand is a reference to a
Chris Lattner0bb780c2010-11-04 00:57:06 +00001438/// named operand such as $src. Resolve the Class and OperandInfo pointers.
1439void AsmMatcherInfo::
Jim Grosbach8caecde2012-04-19 17:52:32 +00001440buildInstructionOperandReference(MatchableInfo *II,
Chris Lattner5f4280c2010-11-04 01:58:23 +00001441 StringRef OperandName,
Bob Wilsona49c7df2011-01-26 19:44:55 +00001442 unsigned AsmOpIdx) {
Chris Lattnerc07bd402010-11-04 02:11:18 +00001443 const CodeGenInstruction &CGI = *II->DefRec.get<const CodeGenInstruction*>();
1444 const CGIOperandList &Operands = CGI.Operands;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001445 MatchableInfo::AsmOperand *Op = &II->AsmOperands[AsmOpIdx];
Bob Wilson828295b2011-01-26 21:26:19 +00001446
Chris Lattner662e5a32010-11-06 07:14:44 +00001447 // Map this token to an operand.
Chris Lattner0bb780c2010-11-04 00:57:06 +00001448 unsigned Idx;
1449 if (!Operands.hasOperandNamed(OperandName, Idx))
1450 throw TGError(II->TheDef->getLoc(), "error: unable to find operand: '" +
1451 OperandName.str() + "'");
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001452
Bob Wilsona49c7df2011-01-26 19:44:55 +00001453 // If the instruction operand has multiple suboperands, but the parser
1454 // match class for the asm operand is still the default "ImmAsmOperand",
1455 // then handle each suboperand separately.
1456 if (Op->SubOpIdx == -1 && Operands[Idx].MINumOperands > 1) {
1457 Record *Rec = Operands[Idx].Rec;
1458 assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
1459 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
1460 if (MatchClass && MatchClass->getValueAsString("Name") == "Imm") {
1461 // Insert remaining suboperands after AsmOpIdx in II->AsmOperands.
1462 StringRef Token = Op->Token; // save this in case Op gets moved
1463 for (unsigned SI = 1, SE = Operands[Idx].MINumOperands; SI != SE; ++SI) {
1464 MatchableInfo::AsmOperand NewAsmOp(Token);
1465 NewAsmOp.SubOpIdx = SI;
1466 II->AsmOperands.insert(II->AsmOperands.begin()+AsmOpIdx+SI, NewAsmOp);
1467 }
1468 // Replace Op with first suboperand.
1469 Op = &II->AsmOperands[AsmOpIdx]; // update the pointer in case it moved
1470 Op->SubOpIdx = 0;
1471 }
1472 }
1473
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001474 // Set up the operand class.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001475 Op->Class = getOperandClass(Operands[Idx], Op->SubOpIdx);
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001476
1477 // If the named operand is tied, canonicalize it to the untied operand.
1478 // For example, something like:
1479 // (outs GPR:$dst), (ins GPR:$src)
1480 // with an asmstring of
1481 // "inc $src"
1482 // we want to canonicalize to:
1483 // "inc $dst"
1484 // so that we know how to provide the $dst operand when filling in the result.
1485 int OITied = Operands[Idx].getTiedRegister();
Chris Lattner0bb780c2010-11-04 00:57:06 +00001486 if (OITied != -1) {
1487 // The tied operand index is an MIOperand index, find the operand that
1488 // contains it.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001489 std::pair<unsigned, unsigned> Idx = Operands.getSubOperandNumber(OITied);
1490 OperandName = Operands[Idx.first].Name;
1491 Op->SubOpIdx = Idx.second;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001492 }
Bob Wilson828295b2011-01-26 21:26:19 +00001493
Bob Wilsona49c7df2011-01-26 19:44:55 +00001494 Op->SrcOpName = OperandName;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001495}
1496
Jim Grosbach8caecde2012-04-19 17:52:32 +00001497/// buildAliasOperandReference - When parsing an operand reference out of the
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001498/// matching string (e.g. "movsx $src, $dst"), determine what the class of the
1499/// operand reference is by looking it up in the result pattern definition.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001500void AsmMatcherInfo::buildAliasOperandReference(MatchableInfo *II,
Chris Lattnerc07bd402010-11-04 02:11:18 +00001501 StringRef OperandName,
1502 MatchableInfo::AsmOperand &Op) {
1503 const CodeGenInstAlias &CGA = *II->DefRec.get<const CodeGenInstAlias*>();
Bob Wilson828295b2011-01-26 21:26:19 +00001504
Chris Lattnerc07bd402010-11-04 02:11:18 +00001505 // Set up the operand class.
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001506 for (unsigned i = 0, e = CGA.ResultOperands.size(); i != e; ++i)
Chris Lattner98c870f2010-11-06 19:25:43 +00001507 if (CGA.ResultOperands[i].isRecord() &&
1508 CGA.ResultOperands[i].getName() == OperandName) {
Chris Lattner662e5a32010-11-06 07:14:44 +00001509 // It's safe to go with the first one we find, because CodeGenInstAlias
1510 // validates that all operands with the same name have the same record.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001511 Op.SubOpIdx = CGA.ResultInstOperandIndex[i].second;
Jim Grosbach48c1f842011-10-28 22:32:53 +00001512 // Use the match class from the Alias definition, not the
1513 // destination instruction, as we may have an immediate that's
1514 // being munged by the match class.
1515 Op.Class = getOperandClass(CGA.ResultOperands[i].getRecord(),
Bob Wilsona49c7df2011-01-26 19:44:55 +00001516 Op.SubOpIdx);
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001517 Op.SrcOpName = OperandName;
1518 return;
Chris Lattnerc07bd402010-11-04 02:11:18 +00001519 }
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001520
1521 throw TGError(II->TheDef->getLoc(), "error: unable to find operand: '" +
1522 OperandName.str() + "'");
Chris Lattnerc07bd402010-11-04 02:11:18 +00001523}
1524
Jim Grosbach8caecde2012-04-19 17:52:32 +00001525void MatchableInfo::buildInstructionResultOperands() {
Chris Lattner662e5a32010-11-06 07:14:44 +00001526 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001527
Chris Lattner662e5a32010-11-06 07:14:44 +00001528 // Loop over all operands of the result instruction, determining how to
1529 // populate them.
1530 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
1531 const CGIOperandList::OperandInfo &OpInfo = ResultInst->Operands[i];
Chris Lattner567820c2010-11-04 01:42:59 +00001532
1533 // If this is a tied operand, just copy from the previously handled operand.
1534 int TiedOp = OpInfo.getTiedRegister();
1535 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001536 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner567820c2010-11-04 01:42:59 +00001537 continue;
1538 }
Bob Wilson828295b2011-01-26 21:26:19 +00001539
Bob Wilsona49c7df2011-01-26 19:44:55 +00001540 // Find out what operand from the asmparser this MCInst operand comes from.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001541 int SrcOperand = findAsmOperandNamed(OpInfo.Name);
Bob Wilsona49c7df2011-01-26 19:44:55 +00001542 if (OpInfo.Name.empty() || SrcOperand == -1)
1543 throw TGError(TheDef->getLoc(), "Instruction '" +
1544 TheDef->getName() + "' has operand '" + OpInfo.Name +
1545 "' that doesn't appear in asm string!");
Chris Lattner567820c2010-11-04 01:42:59 +00001546
Bob Wilsona49c7df2011-01-26 19:44:55 +00001547 // Check if the one AsmOperand populates the entire operand.
1548 unsigned NumOperands = OpInfo.MINumOperands;
1549 if (AsmOperands[SrcOperand].SubOpIdx == -1) {
1550 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand, NumOperands));
Chris Lattner1d13bda2010-11-04 00:43:46 +00001551 continue;
1552 }
Bob Wilsona49c7df2011-01-26 19:44:55 +00001553
1554 // Add a separate ResOperand for each suboperand.
1555 for (unsigned AI = 0; AI < NumOperands; ++AI) {
1556 assert(AsmOperands[SrcOperand+AI].SubOpIdx == (int)AI &&
1557 AsmOperands[SrcOperand+AI].SrcOpName == OpInfo.Name &&
1558 "unexpected AsmOperands for suboperands");
1559 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand + AI, 1));
1560 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001561 }
1562}
1563
Jim Grosbach8caecde2012-04-19 17:52:32 +00001564void MatchableInfo::buildAliasResultOperands() {
Chris Lattner41409852010-11-06 07:31:43 +00001565 const CodeGenInstAlias &CGA = *DefRec.get<const CodeGenInstAlias*>();
1566 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001567
Chris Lattner41409852010-11-06 07:31:43 +00001568 // Loop over all operands of the result instruction, determining how to
1569 // populate them.
1570 unsigned AliasOpNo = 0;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001571 unsigned LastOpNo = CGA.ResultInstOperandIndex.size();
Chris Lattner41409852010-11-06 07:31:43 +00001572 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001573 const CGIOperandList::OperandInfo *OpInfo = &ResultInst->Operands[i];
Bob Wilson828295b2011-01-26 21:26:19 +00001574
Chris Lattner41409852010-11-06 07:31:43 +00001575 // If this is a tied operand, just copy from the previously handled operand.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001576 int TiedOp = OpInfo->getTiedRegister();
Chris Lattner41409852010-11-06 07:31:43 +00001577 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001578 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner90fd7972010-11-06 19:57:21 +00001579 continue;
1580 }
1581
Bob Wilsona49c7df2011-01-26 19:44:55 +00001582 // Handle all the suboperands for this operand.
1583 const std::string &OpName = OpInfo->Name;
1584 for ( ; AliasOpNo < LastOpNo &&
1585 CGA.ResultInstOperandIndex[AliasOpNo].first == i; ++AliasOpNo) {
1586 int SubIdx = CGA.ResultInstOperandIndex[AliasOpNo].second;
1587
1588 // Find out what operand from the asmparser that this MCInst operand
1589 // comes from.
1590 switch (CGA.ResultOperands[AliasOpNo].Kind) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001591 case CodeGenInstAlias::ResultOperand::K_Record: {
1592 StringRef Name = CGA.ResultOperands[AliasOpNo].getName();
Jim Grosbach8caecde2012-04-19 17:52:32 +00001593 int SrcOperand = findAsmOperand(Name, SubIdx);
Bob Wilsona49c7df2011-01-26 19:44:55 +00001594 if (SrcOperand == -1)
1595 throw TGError(TheDef->getLoc(), "Instruction '" +
1596 TheDef->getName() + "' has operand '" + OpName +
1597 "' that doesn't appear in asm string!");
1598 unsigned NumOperands = (SubIdx == -1 ? OpInfo->MINumOperands : 1);
1599 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand,
1600 NumOperands));
1601 break;
1602 }
1603 case CodeGenInstAlias::ResultOperand::K_Imm: {
1604 int64_t ImmVal = CGA.ResultOperands[AliasOpNo].getImm();
1605 ResOperands.push_back(ResOperand::getImmOp(ImmVal));
1606 break;
1607 }
1608 case CodeGenInstAlias::ResultOperand::K_Reg: {
1609 Record *Reg = CGA.ResultOperands[AliasOpNo].getRegister();
1610 ResOperands.push_back(ResOperand::getRegOp(Reg));
1611 break;
1612 }
1613 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001614 }
Chris Lattner41409852010-11-06 07:31:43 +00001615 }
1616}
Chris Lattner1d13bda2010-11-04 00:43:46 +00001617
Jim Grosbach8caecde2012-04-19 17:52:32 +00001618static void emitConvertToMCInst(CodeGenTarget &Target, StringRef ClassName,
Chris Lattner22bc5c42010-11-01 05:06:45 +00001619 std::vector<MatchableInfo*> &Infos,
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00001620 raw_ostream &OS) {
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001621 // Write the convert function to a separate stream, so we can drop it after
1622 // the enum.
1623 std::string ConvertFnBody;
1624 raw_string_ostream CvtOS(ConvertFnBody);
1625
Daniel Dunbar20927f22009-08-07 08:26:05 +00001626 // Function we have already generated.
1627 std::set<std::string> GeneratedFns;
1628
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001629 // Start the unified conversion function.
Daniel Dunbar5c228a92011-02-04 23:17:40 +00001630 CvtOS << "bool " << Target.getName() << ClassName << "::\n";
1631 CvtOS << "ConvertToMCInst(unsigned Kind, MCInst &Inst, "
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001632 << "unsigned Opcode,\n"
Chris Lattner98986712010-01-14 22:21:20 +00001633 << " const SmallVectorImpl<MCParsedAsmOperand*"
1634 << "> &Operands) {\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001635 CvtOS << " Inst.setOpcode(Opcode);\n";
1636 CvtOS << " switch (Kind) {\n";
1637 CvtOS << " default:\n";
1638
1639 // Start the enum, which we will generate inline.
1640
Chris Lattnerd51257a2010-11-02 23:18:43 +00001641 OS << "// Unified function for converting operands to MCInst instances.\n\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001642 OS << "enum ConversionKind {\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001643
Chris Lattner98986712010-01-14 22:21:20 +00001644 // TargetOperandClass - This is the target's operand class, like X86Operand.
1645 std::string TargetOperandClass = Target.getName() + "Operand";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001646
Chris Lattner22bc5c42010-11-01 05:06:45 +00001647 for (std::vector<MatchableInfo*>::const_iterator it = Infos.begin(),
Daniel Dunbar20927f22009-08-07 08:26:05 +00001648 ie = Infos.end(); it != ie; ++it) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00001649 MatchableInfo &II = **it;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001650
Daniel Dunbarcf120672011-02-04 17:12:15 +00001651 // Check if we have a custom match function.
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001652 std::string AsmMatchConverter =
1653 II.getResultInst()->TheDef->getValueAsString("AsmMatchConverter");
Daniel Dunbarcf120672011-02-04 17:12:15 +00001654 if (!AsmMatchConverter.empty()) {
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001655 std::string Signature = "ConvertCustom_" + AsmMatchConverter;
Daniel Dunbarcf120672011-02-04 17:12:15 +00001656 II.ConversionFnKind = Signature;
1657
1658 // Check if we have already generated this signature.
1659 if (!GeneratedFns.insert(Signature).second)
1660 continue;
1661
1662 // If not, emit it now. Add to the enum list.
1663 OS << " " << Signature << ",\n";
1664
1665 CvtOS << " case " << Signature << ":\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00001666 CvtOS << " return " << AsmMatchConverter
1667 << "(Inst, Opcode, Operands);\n";
Daniel Dunbarcf120672011-02-04 17:12:15 +00001668 continue;
1669 }
1670
Daniel Dunbar20927f22009-08-07 08:26:05 +00001671 // Build the conversion function signature.
1672 std::string Signature = "Convert";
Chris Lattnerdda855d2010-11-02 21:49:44 +00001673 std::string CaseBody;
1674 raw_string_ostream CaseOS(CaseBody);
Bob Wilson828295b2011-01-26 21:26:19 +00001675
Chris Lattnerdda855d2010-11-02 21:49:44 +00001676 // Compute the convert enum and the case body.
Chris Lattner1d13bda2010-11-04 00:43:46 +00001677 for (unsigned i = 0, e = II.ResOperands.size(); i != e; ++i) {
1678 const MatchableInfo::ResOperand &OpInfo = II.ResOperands[i];
Jim Grosbacha7c78222010-10-29 22:13:48 +00001679
Chris Lattner1d13bda2010-11-04 00:43:46 +00001680 // Generate code to populate each result operand.
1681 switch (OpInfo.Kind) {
Chris Lattner1d13bda2010-11-04 00:43:46 +00001682 case MatchableInfo::ResOperand::RenderAsmOperand: {
1683 // This comes from something we parsed.
1684 MatchableInfo::AsmOperand &Op = II.AsmOperands[OpInfo.AsmOperandNum];
Bob Wilson828295b2011-01-26 21:26:19 +00001685
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001686 // Registers are always converted the same, don't duplicate the
1687 // conversion function based on them.
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001688 Signature += "__";
1689 if (Op.Class->isRegisterClass())
1690 Signature += "Reg";
1691 else
1692 Signature += Op.Class->ClassName;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001693 Signature += utostr(OpInfo.MINumOperands);
Chris Lattner1d13bda2010-11-04 00:43:46 +00001694 Signature += "_" + itostr(OpInfo.AsmOperandNum);
Bob Wilson828295b2011-01-26 21:26:19 +00001695
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001696 CaseOS << " ((" << TargetOperandClass << "*)Operands["
Chris Lattner1d13bda2010-11-04 00:43:46 +00001697 << (OpInfo.AsmOperandNum+1) << "])->" << Op.Class->RenderMethod
Bob Wilsona49c7df2011-01-26 19:44:55 +00001698 << "(Inst, " << OpInfo.MINumOperands << ");\n";
Chris Lattner1d13bda2010-11-04 00:43:46 +00001699 break;
Daniel Dunbaraf616812010-02-10 08:15:48 +00001700 }
Bob Wilson828295b2011-01-26 21:26:19 +00001701
Chris Lattner1d13bda2010-11-04 00:43:46 +00001702 case MatchableInfo::ResOperand::TiedOperand: {
1703 // If this operand is tied to a previous one, just copy the MCInst
1704 // operand from the earlier one.We can only tie single MCOperand values.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001705 //assert(OpInfo.MINumOperands == 1 && "Not a singular MCOperand");
Chris Lattner1d13bda2010-11-04 00:43:46 +00001706 unsigned TiedOp = OpInfo.TiedOperandNum;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001707 assert(i > TiedOp && "Tied operand precedes its target!");
Chris Lattner1d13bda2010-11-04 00:43:46 +00001708 CaseOS << " Inst.addOperand(Inst.getOperand(" << TiedOp << "));\n";
1709 Signature += "__Tie" + utostr(TiedOp);
1710 break;
1711 }
Chris Lattner98c870f2010-11-06 19:25:43 +00001712 case MatchableInfo::ResOperand::ImmOperand: {
1713 int64_t Val = OpInfo.ImmVal;
1714 CaseOS << " Inst.addOperand(MCOperand::CreateImm(" << Val << "));\n";
1715 Signature += "__imm" + itostr(Val);
1716 break;
1717 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001718 case MatchableInfo::ResOperand::RegOperand: {
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001719 if (OpInfo.Register == 0) {
1720 CaseOS << " Inst.addOperand(MCOperand::CreateReg(0));\n";
1721 Signature += "__reg0";
1722 } else {
1723 std::string N = getQualifiedName(OpInfo.Register);
1724 CaseOS << " Inst.addOperand(MCOperand::CreateReg(" << N << "));\n";
1725 Signature += "__reg" + OpInfo.Register->getName();
1726 }
Bob Wilson828295b2011-01-26 21:26:19 +00001727 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001728 }
Daniel Dunbar20927f22009-08-07 08:26:05 +00001729 }
Bob Wilson828295b2011-01-26 21:26:19 +00001730
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001731 II.ConversionFnKind = Signature;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001732
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001733 // Check if we have already generated this signature.
Daniel Dunbar20927f22009-08-07 08:26:05 +00001734 if (!GeneratedFns.insert(Signature).second)
1735 continue;
1736
Chris Lattnerdda855d2010-11-02 21:49:44 +00001737 // If not, emit it now. Add to the enum list.
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001738 OS << " " << Signature << ",\n";
1739
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001740 CvtOS << " case " << Signature << ":\n";
Chris Lattnerdda855d2010-11-02 21:49:44 +00001741 CvtOS << CaseOS.str();
Daniel Dunbarb4129152011-02-04 17:12:23 +00001742 CvtOS << " return true;\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +00001743 }
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001744
1745 // Finish the convert function.
1746
1747 CvtOS << " }\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00001748 CvtOS << " return false;\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001749 CvtOS << "}\n\n";
1750
1751 // Finish the enum, and drop the convert function after it.
1752
1753 OS << " NumConversionVariants\n";
1754 OS << "};\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001755
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001756 OS << CvtOS.str();
Daniel Dunbara027d222009-07-31 02:32:59 +00001757}
1758
Jim Grosbach8caecde2012-04-19 17:52:32 +00001759/// emitMatchClassEnumeration - Emit the enumeration for match class kinds.
1760static void emitMatchClassEnumeration(CodeGenTarget &Target,
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001761 std::vector<ClassInfo*> &Infos,
1762 raw_ostream &OS) {
1763 OS << "namespace {\n\n";
1764
1765 OS << "/// MatchClassKind - The kinds of classes which participate in\n"
1766 << "/// instruction matching.\n";
1767 OS << "enum MatchClassKind {\n";
1768 OS << " InvalidMatchClass = 0,\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001769 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001770 ie = Infos.end(); it != ie; ++it) {
1771 ClassInfo &CI = **it;
1772 OS << " " << CI.Name << ", // ";
1773 if (CI.Kind == ClassInfo::Token) {
1774 OS << "'" << CI.ValueName << "'\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001775 } else if (CI.isRegisterClass()) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001776 if (!CI.ValueName.empty())
1777 OS << "register class '" << CI.ValueName << "'\n";
1778 else
1779 OS << "derived register class\n";
1780 } else {
1781 OS << "user defined class '" << CI.ValueName << "'\n";
1782 }
1783 }
1784 OS << " NumMatchClassKinds\n";
1785 OS << "};\n\n";
1786
1787 OS << "}\n\n";
1788}
1789
Jim Grosbach8caecde2012-04-19 17:52:32 +00001790/// emitValidateOperandClass - Emit the function to validate an operand class.
1791static void emitValidateOperandClass(AsmMatcherInfo &Info,
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001792 raw_ostream &OS) {
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00001793 OS << "static bool validateOperandClass(MCParsedAsmOperand *GOp, "
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001794 << "MatchClassKind Kind) {\n";
1795 OS << " " << Info.Target.getName() << "Operand &Operand = *("
Chris Lattner02bcbc92010-11-01 01:37:30 +00001796 << Info.Target.getName() << "Operand*)GOp;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001797
Kevin Enderby89381832011-07-15 18:30:43 +00001798 // The InvalidMatchClass is not to match any operand.
1799 OS << " if (Kind == InvalidMatchClass)\n";
1800 OS << " return false;\n\n";
1801
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001802 // Check for Token operands first.
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001803 OS << " if (Operand.isToken())\n";
Jim Grosbacha66512e2011-12-06 23:43:54 +00001804 OS << " return isSubclass(matchTokenString(Operand.getToken()), Kind);"
1805 << "\n\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001806
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001807 // Check for register operands, including sub-classes.
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001808 OS << " if (Operand.isReg()) {\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001809 OS << " MatchClassKind OpKind;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001810 OS << " switch (Operand.getReg()) {\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001811 OS << " default: OpKind = InvalidMatchClass; break;\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001812 for (std::map<Record*, ClassInfo*>::iterator
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001813 it = Info.RegisterClasses.begin(), ie = Info.RegisterClasses.end();
1814 it != ie; ++it)
Chris Lattner02bcbc92010-11-01 01:37:30 +00001815 OS << " case " << Info.Target.getName() << "::"
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001816 << it->first->getName() << ": OpKind = " << it->second->Name
1817 << "; break;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001818 OS << " }\n";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00001819 OS << " return isSubclass(OpKind, Kind);\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001820 OS << " }\n\n";
1821
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001822 // Check the user classes. We don't care what order since we're only
1823 // actually matching against one of them.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001824 for (std::vector<ClassInfo*>::iterator it = Info.Classes.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001825 ie = Info.Classes.end(); it != ie; ++it) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001826 ClassInfo &CI = **it;
1827
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001828 if (!CI.isUserClass())
1829 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00001830
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001831 OS << " // '" << CI.ClassName << "' class\n";
1832 OS << " if (Kind == " << CI.Name
1833 << " && Operand." << CI.PredicateMethod << "()) {\n";
1834 OS << " return true;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001835 OS << " }\n\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001836 }
Bob Wilson828295b2011-01-26 21:26:19 +00001837
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001838 OS << " return false;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001839 OS << "}\n\n";
1840}
1841
Jim Grosbach8caecde2012-04-19 17:52:32 +00001842/// emitIsSubclass - Emit the subclass predicate function.
1843static void emitIsSubclass(CodeGenTarget &Target,
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001844 std::vector<ClassInfo*> &Infos,
1845 raw_ostream &OS) {
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00001846 OS << "/// isSubclass - Compute whether \\arg A is a subclass of \\arg B.\n";
1847 OS << "static bool isSubclass(MatchClassKind A, MatchClassKind B) {\n";
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001848 OS << " if (A == B)\n";
1849 OS << " return true;\n\n";
1850
1851 OS << " switch (A) {\n";
1852 OS << " default:\n";
1853 OS << " return false;\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001854 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001855 ie = Infos.end(); it != ie; ++it) {
1856 ClassInfo &A = **it;
1857
Jim Grosbacha66512e2011-12-06 23:43:54 +00001858 std::vector<StringRef> SuperClasses;
1859 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
1860 ie = Infos.end(); it != ie; ++it) {
1861 ClassInfo &B = **it;
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001862
Jim Grosbacha66512e2011-12-06 23:43:54 +00001863 if (&A != &B && A.isSubsetOf(B))
1864 SuperClasses.push_back(B.Name);
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001865 }
Jim Grosbacha66512e2011-12-06 23:43:54 +00001866
1867 if (SuperClasses.empty())
1868 continue;
1869
1870 OS << "\n case " << A.Name << ":\n";
1871
1872 if (SuperClasses.size() == 1) {
1873 OS << " return B == " << SuperClasses.back() << ";\n";
1874 continue;
1875 }
1876
1877 OS << " switch (B) {\n";
1878 OS << " default: return false;\n";
1879 for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
1880 OS << " case " << SuperClasses[i] << ": return true;\n";
1881 OS << " }\n";
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001882 }
1883 OS << " }\n";
1884 OS << "}\n\n";
1885}
1886
Jim Grosbach8caecde2012-04-19 17:52:32 +00001887/// emitMatchTokenString - Emit the function to match a token string to the
Daniel Dunbar245f0582009-08-08 21:22:41 +00001888/// appropriate match class value.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001889static void emitMatchTokenString(CodeGenTarget &Target,
Daniel Dunbar245f0582009-08-08 21:22:41 +00001890 std::vector<ClassInfo*> &Infos,
1891 raw_ostream &OS) {
1892 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00001893 std::vector<StringMatcher::StringPair> Matches;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001894 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbar245f0582009-08-08 21:22:41 +00001895 ie = Infos.end(); it != ie; ++it) {
1896 ClassInfo &CI = **it;
1897
1898 if (CI.Kind == ClassInfo::Token)
Chris Lattner5845e5c2010-09-06 02:01:51 +00001899 Matches.push_back(StringMatcher::StringPair(CI.ValueName,
1900 "return " + CI.Name + ";"));
Daniel Dunbar245f0582009-08-08 21:22:41 +00001901 }
1902
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00001903 OS << "static MatchClassKind matchTokenString(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00001904
Chris Lattner5845e5c2010-09-06 02:01:51 +00001905 StringMatcher("Name", Matches, OS).Emit();
Daniel Dunbar245f0582009-08-08 21:22:41 +00001906
1907 OS << " return InvalidMatchClass;\n";
1908 OS << "}\n\n";
1909}
Chris Lattner70add882009-08-08 20:02:57 +00001910
Jim Grosbach8caecde2012-04-19 17:52:32 +00001911/// emitMatchRegisterName - Emit the function to match a string to the target
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00001912/// specific register enum.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001913static void emitMatchRegisterName(CodeGenTarget &Target, Record *AsmParser,
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00001914 raw_ostream &OS) {
Daniel Dunbar245f0582009-08-08 21:22:41 +00001915 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00001916 std::vector<StringMatcher::StringPair> Matches;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001917 const std::vector<CodeGenRegister*> &Regs =
1918 Target.getRegBank().getRegisters();
1919 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
1920 const CodeGenRegister *Reg = Regs[i];
1921 if (Reg->TheDef->getValueAsString("AsmName").empty())
Daniel Dunbar22be5222009-07-17 18:51:11 +00001922 continue;
1923
Chris Lattner5845e5c2010-09-06 02:01:51 +00001924 Matches.push_back(StringMatcher::StringPair(
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001925 Reg->TheDef->getValueAsString("AsmName"),
1926 "return " + utostr(Reg->EnumValue) + ";"));
Daniel Dunbar22be5222009-07-17 18:51:11 +00001927 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001928
Chris Lattnerb8d6e982010-02-09 00:34:28 +00001929 OS << "static unsigned MatchRegisterName(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00001930
Chris Lattner5845e5c2010-09-06 02:01:51 +00001931 StringMatcher("Name", Matches, OS).Emit();
Jim Grosbacha7c78222010-10-29 22:13:48 +00001932
Daniel Dunbar245f0582009-08-08 21:22:41 +00001933 OS << " return 0;\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +00001934 OS << "}\n\n";
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00001935}
Daniel Dunbara027d222009-07-31 02:32:59 +00001936
Jim Grosbach8caecde2012-04-19 17:52:32 +00001937/// emitSubtargetFeatureFlagEnumeration - Emit the subtarget feature flag
Daniel Dunbar54074b52010-07-19 05:44:09 +00001938/// definitions.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001939static void emitSubtargetFeatureFlagEnumeration(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00001940 raw_ostream &OS) {
1941 OS << "// Flags for subtarget features that participate in "
1942 << "instruction matching.\n";
1943 OS << "enum SubtargetFeatureFlag {\n";
1944 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
1945 it = Info.SubtargetFeatures.begin(),
1946 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
1947 SubtargetFeatureInfo &SFI = *it->second;
Chris Lattner0aed1e72010-10-30 20:07:57 +00001948 OS << " " << SFI.getEnumName() << " = (1 << " << SFI.Index << "),\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00001949 }
1950 OS << " Feature_None = 0\n";
1951 OS << "};\n\n";
1952}
1953
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00001954/// emitGetSubtargetFeatureName - Emit the helper function to get the
1955/// user-level name for a subtarget feature.
1956static void emitGetSubtargetFeatureName(AsmMatcherInfo &Info, raw_ostream &OS) {
1957 OS << "// User-level names for subtarget features that participate in\n"
1958 << "// instruction matching.\n"
1959 << "static const char *getSubtargetFeatureName(unsigned Val) {\n"
1960 << " switch(Val) {\n";
1961 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
1962 it = Info.SubtargetFeatures.begin(),
1963 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
1964 SubtargetFeatureInfo &SFI = *it->second;
1965 // FIXME: Totally just a placeholder name to get the algorithm working.
1966 OS << " case " << SFI.getEnumName() << ": return \""
1967 << SFI.TheDef->getValueAsString("PredicateName") << "\";\n";
1968 }
1969 OS << " default: return \"(unknown)\";\n";
1970 OS << " }\n}\n\n";
1971}
1972
Jim Grosbach8caecde2012-04-19 17:52:32 +00001973/// emitComputeAvailableFeatures - Emit the function to compute the list of
Daniel Dunbar54074b52010-07-19 05:44:09 +00001974/// available features given a subtarget.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001975static void emitComputeAvailableFeatures(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00001976 raw_ostream &OS) {
1977 std::string ClassName =
1978 Info.AsmParser->getValueAsString("AsmParserClassName");
1979
Chris Lattner02bcbc92010-11-01 01:37:30 +00001980 OS << "unsigned " << Info.Target.getName() << ClassName << "::\n"
Evan Chengebdeeab2011-07-08 01:53:10 +00001981 << "ComputeAvailableFeatures(uint64_t FB) const {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00001982 OS << " unsigned Features = 0;\n";
1983 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
1984 it = Info.SubtargetFeatures.begin(),
1985 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
1986 SubtargetFeatureInfo &SFI = *it->second;
Evan Chengebdeeab2011-07-08 01:53:10 +00001987
1988 OS << " if (";
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001989 std::string CondStorage =
1990 SFI.TheDef->getValueAsString("AssemblerCondString");
Evan Chengfbc38d22011-07-08 18:04:22 +00001991 StringRef Conds = CondStorage;
Evan Chengebdeeab2011-07-08 01:53:10 +00001992 std::pair<StringRef,StringRef> Comma = Conds.split(',');
1993 bool First = true;
1994 do {
1995 if (!First)
1996 OS << " && ";
1997
1998 bool Neg = false;
1999 StringRef Cond = Comma.first;
2000 if (Cond[0] == '!') {
2001 Neg = true;
2002 Cond = Cond.substr(1);
2003 }
2004
2005 OS << "((FB & " << Info.Target.getName() << "::" << Cond << ")";
2006 if (Neg)
2007 OS << " == 0";
2008 else
2009 OS << " != 0";
2010 OS << ")";
2011
2012 if (Comma.second.empty())
2013 break;
2014
2015 First = false;
2016 Comma = Comma.second.split(',');
2017 } while (true);
2018
2019 OS << ")\n";
Chris Lattner0aed1e72010-10-30 20:07:57 +00002020 OS << " Features |= " << SFI.getEnumName() << ";\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002021 }
2022 OS << " return Features;\n";
2023 OS << "}\n\n";
2024}
2025
Chris Lattner6fa152c2010-10-30 20:15:02 +00002026static std::string GetAliasRequiredFeatures(Record *R,
2027 const AsmMatcherInfo &Info) {
Chris Lattner693173f2010-10-30 19:23:13 +00002028 std::vector<Record*> ReqFeatures = R->getValueAsListOfDefs("Predicates");
Chris Lattner693173f2010-10-30 19:23:13 +00002029 std::string Result;
2030 unsigned NumFeatures = 0;
2031 for (unsigned i = 0, e = ReqFeatures.size(); i != e; ++i) {
Chris Lattner4a74ee72010-11-01 02:09:21 +00002032 SubtargetFeatureInfo *F = Info.getSubtargetFeature(ReqFeatures[i]);
Bob Wilson828295b2011-01-26 21:26:19 +00002033
Chris Lattner4a74ee72010-11-01 02:09:21 +00002034 if (F == 0)
2035 throw TGError(R->getLoc(), "Predicate '" + ReqFeatures[i]->getName() +
2036 "' is not marked as an AssemblerPredicate!");
Bob Wilson828295b2011-01-26 21:26:19 +00002037
Chris Lattner4a74ee72010-11-01 02:09:21 +00002038 if (NumFeatures)
2039 Result += '|';
Bob Wilson828295b2011-01-26 21:26:19 +00002040
Chris Lattner4a74ee72010-11-01 02:09:21 +00002041 Result += F->getEnumName();
2042 ++NumFeatures;
Chris Lattner693173f2010-10-30 19:23:13 +00002043 }
Bob Wilson828295b2011-01-26 21:26:19 +00002044
Chris Lattner693173f2010-10-30 19:23:13 +00002045 if (NumFeatures > 1)
2046 Result = '(' + Result + ')';
2047 return Result;
2048}
2049
Jim Grosbach8caecde2012-04-19 17:52:32 +00002050/// emitMnemonicAliases - If the target has any MnemonicAlias<> definitions,
Chris Lattner7fd44892010-10-30 18:48:18 +00002051/// emit a function for them and return true, otherwise return false.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002052static bool emitMnemonicAliases(raw_ostream &OS, const AsmMatcherInfo &Info) {
Daniel Dunbarc0a70072011-01-24 23:26:31 +00002053 // Ignore aliases when match-prefix is set.
2054 if (!MatchPrefix.empty())
2055 return false;
2056
Chris Lattner674c1dc2010-10-30 17:36:36 +00002057 std::vector<Record*> Aliases =
Chris Lattner67db8832010-12-13 00:23:57 +00002058 Info.getRecords().getAllDerivedDefinitions("MnemonicAlias");
Chris Lattner7fd44892010-10-30 18:48:18 +00002059 if (Aliases.empty()) return false;
Chris Lattner674c1dc2010-10-30 17:36:36 +00002060
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002061 OS << "static void applyMnemonicAliases(StringRef &Mnemonic, "
Chris Lattner8cc0a6b2010-10-30 18:57:07 +00002062 "unsigned Features) {\n";
Bob Wilson828295b2011-01-26 21:26:19 +00002063
Chris Lattner4fd32c62010-10-30 18:56:12 +00002064 // Keep track of all the aliases from a mnemonic. Use an std::map so that the
2065 // iteration order of the map is stable.
2066 std::map<std::string, std::vector<Record*> > AliasesFromMnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +00002067
Chris Lattner674c1dc2010-10-30 17:36:36 +00002068 for (unsigned i = 0, e = Aliases.size(); i != e; ++i) {
2069 Record *R = Aliases[i];
Chris Lattner4fd32c62010-10-30 18:56:12 +00002070 AliasesFromMnemonic[R->getValueAsString("FromMnemonic")].push_back(R);
Chris Lattner674c1dc2010-10-30 17:36:36 +00002071 }
Chris Lattner4fd32c62010-10-30 18:56:12 +00002072
2073 // Process each alias a "from" mnemonic at a time, building the code executed
2074 // by the string remapper.
2075 std::vector<StringMatcher::StringPair> Cases;
2076 for (std::map<std::string, std::vector<Record*> >::iterator
2077 I = AliasesFromMnemonic.begin(), E = AliasesFromMnemonic.end();
2078 I != E; ++I) {
Chris Lattner4fd32c62010-10-30 18:56:12 +00002079 const std::vector<Record*> &ToVec = I->second;
Chris Lattner693173f2010-10-30 19:23:13 +00002080
2081 // Loop through each alias and emit code that handles each case. If there
2082 // are two instructions without predicates, emit an error. If there is one,
2083 // emit it last.
2084 std::string MatchCode;
2085 int AliasWithNoPredicate = -1;
Bob Wilson828295b2011-01-26 21:26:19 +00002086
Chris Lattner693173f2010-10-30 19:23:13 +00002087 for (unsigned i = 0, e = ToVec.size(); i != e; ++i) {
2088 Record *R = ToVec[i];
Chris Lattner6fa152c2010-10-30 20:15:02 +00002089 std::string FeatureMask = GetAliasRequiredFeatures(R, Info);
Bob Wilson828295b2011-01-26 21:26:19 +00002090
Chris Lattner693173f2010-10-30 19:23:13 +00002091 // If this unconditionally matches, remember it for later and diagnose
2092 // duplicates.
2093 if (FeatureMask.empty()) {
2094 if (AliasWithNoPredicate != -1) {
2095 // We can't have two aliases from the same mnemonic with no predicate.
2096 PrintError(ToVec[AliasWithNoPredicate]->getLoc(),
2097 "two MnemonicAliases with the same 'from' mnemonic!");
Chris Lattner4164f6b2010-11-01 04:44:29 +00002098 throw TGError(R->getLoc(), "this is the other MnemonicAlias.");
Chris Lattner693173f2010-10-30 19:23:13 +00002099 }
Bob Wilson828295b2011-01-26 21:26:19 +00002100
Chris Lattner693173f2010-10-30 19:23:13 +00002101 AliasWithNoPredicate = i;
2102 continue;
2103 }
Joerg Sonnenberger6ef6ced2011-02-17 23:22:19 +00002104 if (R->getValueAsString("ToMnemonic") == I->first)
2105 throw TGError(R->getLoc(), "MnemonicAlias to the same string");
Bob Wilson828295b2011-01-26 21:26:19 +00002106
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00002107 if (!MatchCode.empty())
2108 MatchCode += "else ";
Chris Lattner693173f2010-10-30 19:23:13 +00002109 MatchCode += "if ((Features & " + FeatureMask + ") == "+FeatureMask+")\n";
2110 MatchCode += " Mnemonic = \"" +R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner4fd32c62010-10-30 18:56:12 +00002111 }
Bob Wilson828295b2011-01-26 21:26:19 +00002112
Chris Lattner693173f2010-10-30 19:23:13 +00002113 if (AliasWithNoPredicate != -1) {
2114 Record *R = ToVec[AliasWithNoPredicate];
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00002115 if (!MatchCode.empty())
2116 MatchCode += "else\n ";
2117 MatchCode += "Mnemonic = \"" + R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner693173f2010-10-30 19:23:13 +00002118 }
Bob Wilson828295b2011-01-26 21:26:19 +00002119
Chris Lattner693173f2010-10-30 19:23:13 +00002120 MatchCode += "return;";
2121
2122 Cases.push_back(std::make_pair(I->first, MatchCode));
Chris Lattner4fd32c62010-10-30 18:56:12 +00002123 }
Bob Wilson828295b2011-01-26 21:26:19 +00002124
Chris Lattner674c1dc2010-10-30 17:36:36 +00002125 StringMatcher("Mnemonic", Cases, OS).Emit();
Daniel Dunbar55b5e852011-01-18 01:59:30 +00002126 OS << "}\n\n";
Bob Wilson828295b2011-01-26 21:26:19 +00002127
Chris Lattner7fd44892010-10-30 18:48:18 +00002128 return true;
Chris Lattner674c1dc2010-10-30 17:36:36 +00002129}
2130
Jim Grosbach194f3fa2012-03-01 17:30:35 +00002131static const char *getMinimalTypeForRange(uint64_t Range) {
2132 assert(Range < 0xFFFFFFFFULL && "Enum too large");
2133 if (Range > 0xFFFF)
2134 return "uint32_t";
2135 if (Range > 0xFF)
2136 return "uint16_t";
2137 return "uint8_t";
2138}
2139
Jim Grosbach8caecde2012-04-19 17:52:32 +00002140static void emitCustomOperandParsing(raw_ostream &OS, CodeGenTarget &Target,
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002141 const AsmMatcherInfo &Info, StringRef ClassName) {
2142 // Emit the static custom operand parsing table;
2143 OS << "namespace {\n";
2144 OS << " struct OperandMatchEntry {\n";
Jakob Stoklund Olesen7044cce2012-03-15 21:22:53 +00002145 OS << " static const char *const MnemonicTable;\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002146 OS << " uint32_t OperandMask;\n";
2147 OS << " uint32_t Mnemonic;\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002148 OS << " " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
Craig Topperfab3f7e2012-04-02 07:48:39 +00002149 << " RequiredFeatures;\n";
2150 OS << " " << getMinimalTypeForRange(Info.Classes.size())
2151 << " Class;\n\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002152 OS << " StringRef getMnemonic() const {\n";
2153 OS << " return StringRef(MnemonicTable + Mnemonic + 1,\n";
2154 OS << " MnemonicTable[Mnemonic]);\n";
2155 OS << " }\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002156 OS << " };\n\n";
2157
2158 OS << " // Predicate for searching for an opcode.\n";
2159 OS << " struct LessOpcodeOperand {\n";
2160 OS << " bool operator()(const OperandMatchEntry &LHS, StringRef RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002161 OS << " return LHS.getMnemonic() < RHS;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002162 OS << " }\n";
2163 OS << " bool operator()(StringRef LHS, const OperandMatchEntry &RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002164 OS << " return LHS < RHS.getMnemonic();\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002165 OS << " }\n";
2166 OS << " bool operator()(const OperandMatchEntry &LHS,";
2167 OS << " const OperandMatchEntry &RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002168 OS << " return LHS.getMnemonic() < RHS.getMnemonic();\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002169 OS << " }\n";
2170 OS << " };\n";
2171
2172 OS << "} // end anonymous namespace.\n\n";
2173
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002174 StringToOffsetTable StringTable;
2175
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002176 OS << "static const OperandMatchEntry OperandMatchTable["
2177 << Info.OperandMatchInfo.size() << "] = {\n";
2178
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002179 OS << " /* Operand List Mask, Mnemonic, Operand Class, Features */\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002180 for (std::vector<OperandMatchEntry>::const_iterator it =
2181 Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2182 it != ie; ++it) {
2183 const OperandMatchEntry &OMI = *it;
2184 const MatchableInfo &II = *OMI.MI;
2185
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002186 OS << " { " << OMI.OperandMask;
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002187
2188 OS << " /* ";
2189 bool printComma = false;
2190 for (int i = 0, e = 31; i !=e; ++i)
2191 if (OMI.OperandMask & (1 << i)) {
2192 if (printComma)
2193 OS << ", ";
2194 OS << i;
2195 printComma = true;
2196 }
2197 OS << " */";
2198
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002199 // Store a pascal-style length byte in the mnemonic.
2200 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
Jakob Stoklund Olesenbcfa9822012-03-15 18:05:57 +00002201 OS << ", " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
Craig Topperfab3f7e2012-04-02 07:48:39 +00002202 << " /* " << II.Mnemonic << " */, ";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002203
2204 // Write the required features mask.
2205 if (!II.RequiredFeatures.empty()) {
2206 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2207 if (i) OS << "|";
2208 OS << II.RequiredFeatures[i]->getEnumName();
2209 }
2210 } else
2211 OS << "0";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002212
2213 OS << ", " << OMI.CI->Name;
2214
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002215 OS << " },\n";
2216 }
2217 OS << "};\n\n";
2218
Jakob Stoklund Olesen7044cce2012-03-15 21:22:53 +00002219 OS << "const char *const OperandMatchEntry::MnemonicTable =\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002220 StringTable.EmitString(OS);
2221 OS << ";\n\n";
2222
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002223 // Emit the operand class switch to call the correct custom parser for
2224 // the found operand class.
Jim Grosbachf922c472011-02-12 01:34:40 +00002225 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
2226 << Target.getName() << ClassName << "::\n"
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002227 << "tryCustomParseOperand(SmallVectorImpl<MCParsedAsmOperand*>"
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002228 << " &Operands,\n unsigned MCK) {\n\n"
2229 << " switch(MCK) {\n";
2230
2231 for (std::vector<ClassInfo*>::const_iterator it = Info.Classes.begin(),
2232 ie = Info.Classes.end(); it != ie; ++it) {
2233 ClassInfo *CI = *it;
2234 if (CI->ParserMethod.empty())
2235 continue;
2236 OS << " case " << CI->Name << ":\n"
2237 << " return " << CI->ParserMethod << "(Operands);\n";
2238 }
2239
2240 OS << " default:\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002241 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002242 OS << " }\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002243 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002244 OS << "}\n\n";
2245
2246 // Emit the static custom operand parser. This code is very similar with
2247 // the other matcher. Also use MatchResultTy here just in case we go for
2248 // a better error handling.
Jim Grosbachf922c472011-02-12 01:34:40 +00002249 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002250 << Target.getName() << ClassName << "::\n"
2251 << "MatchOperandParserImpl(SmallVectorImpl<MCParsedAsmOperand*>"
2252 << " &Operands,\n StringRef Mnemonic) {\n";
2253
2254 // Emit code to get the available features.
2255 OS << " // Get the current feature set.\n";
2256 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2257
2258 OS << " // Get the next operand index.\n";
2259 OS << " unsigned NextOpNum = Operands.size()-1;\n";
2260
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002261 // Emit code to search the table.
2262 OS << " // Search the table.\n";
2263 OS << " std::pair<const OperandMatchEntry*, const OperandMatchEntry*>";
2264 OS << " MnemonicRange =\n";
2265 OS << " std::equal_range(OperandMatchTable, OperandMatchTable+"
2266 << Info.OperandMatchInfo.size() << ", Mnemonic,\n"
2267 << " LessOpcodeOperand());\n\n";
2268
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002269 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002270 OS << " return MatchOperand_NoMatch;\n\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002271
2272 OS << " for (const OperandMatchEntry *it = MnemonicRange.first,\n"
2273 << " *ie = MnemonicRange.second; it != ie; ++it) {\n";
2274
2275 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002276 OS << " assert(Mnemonic == it->getMnemonic());\n\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002277
2278 // Emit check that the required features are available.
2279 OS << " // check if the available features match\n";
2280 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2281 << "!= it->RequiredFeatures) {\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002282 OS << " continue;\n";
2283 OS << " }\n\n";
2284
2285 // Emit check to ensure the operand number matches.
2286 OS << " // check if the operand in question has a custom parser.\n";
2287 OS << " if (!(it->OperandMask & (1 << NextOpNum)))\n";
2288 OS << " continue;\n\n";
2289
2290 // Emit call to the custom parser method
2291 OS << " // call custom parse method to handle the operand\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002292 OS << " OperandMatchResultTy Result = ";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002293 OS << "tryCustomParseOperand(Operands, it->Class);\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002294 OS << " if (Result != MatchOperand_NoMatch)\n";
2295 OS << " return Result;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002296 OS << " }\n\n";
2297
Jim Grosbachf922c472011-02-12 01:34:40 +00002298 OS << " // Okay, we had no match.\n";
2299 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002300 OS << "}\n\n";
2301}
2302
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002303void AsmMatcherEmitter::run(raw_ostream &OS) {
Chris Lattner67db8832010-12-13 00:23:57 +00002304 CodeGenTarget Target(Records);
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002305 Record *AsmParser = Target.getAsmParser();
2306 std::string ClassName = AsmParser->getValueAsString("AsmParserClassName");
2307
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002308 // Compute the information on the instructions to match.
Chris Lattner67db8832010-12-13 00:23:57 +00002309 AsmMatcherInfo Info(AsmParser, Target, Records);
Jim Grosbach8caecde2012-04-19 17:52:32 +00002310 Info.buildInfo();
Daniel Dunbara027d222009-07-31 02:32:59 +00002311
Daniel Dunbare1f6de32010-02-02 23:46:36 +00002312 // Sort the instruction table using the partial order on classes. We use
2313 // stable_sort to ensure that ambiguous instructions are still
2314 // deterministically ordered.
Chris Lattner22bc5c42010-11-01 05:06:45 +00002315 std::stable_sort(Info.Matchables.begin(), Info.Matchables.end(),
2316 less_ptr<MatchableInfo>());
Jim Grosbacha7c78222010-10-29 22:13:48 +00002317
Daniel Dunbarb7479c02009-08-08 05:24:34 +00002318 DEBUG_WITH_TYPE("instruction_info", {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002319 for (std::vector<MatchableInfo*>::iterator
2320 it = Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002321 it != ie; ++it)
Daniel Dunbar20927f22009-08-07 08:26:05 +00002322 (*it)->dump();
2323 });
Daniel Dunbara027d222009-07-31 02:32:59 +00002324
Chris Lattner22bc5c42010-11-01 05:06:45 +00002325 // Check for ambiguous matchables.
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002326 DEBUG_WITH_TYPE("ambiguous_instrs", {
2327 unsigned NumAmbiguous = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002328 for (unsigned i = 0, e = Info.Matchables.size(); i != e; ++i) {
Chris Lattner87410362010-09-06 20:21:47 +00002329 for (unsigned j = i + 1; j != e; ++j) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002330 MatchableInfo &A = *Info.Matchables[i];
2331 MatchableInfo &B = *Info.Matchables[j];
Jim Grosbacha7c78222010-10-29 22:13:48 +00002332
Jim Grosbach8caecde2012-04-19 17:52:32 +00002333 if (A.couldMatchAmbiguouslyWith(B)) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002334 errs() << "warning: ambiguous matchables:\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002335 A.dump();
2336 errs() << "\nis incomparable with:\n";
2337 B.dump();
2338 errs() << "\n\n";
Chris Lattner87410362010-09-06 20:21:47 +00002339 ++NumAmbiguous;
2340 }
Daniel Dunbar2b544812009-08-09 06:05:33 +00002341 }
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002342 }
Chris Lattner87410362010-09-06 20:21:47 +00002343 if (NumAmbiguous)
Jim Grosbacha7c78222010-10-29 22:13:48 +00002344 errs() << "warning: " << NumAmbiguous
Chris Lattner22bc5c42010-11-01 05:06:45 +00002345 << " ambiguous matchables!\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002346 });
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002347
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002348 // Compute the information on the custom operand parsing.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002349 Info.buildOperandMatchInfo();
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002350
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002351 // Write the output.
2352
2353 EmitSourceFileHeader("Assembly Matcher Source Fragment", OS);
2354
Chris Lattner0692ee62010-09-06 19:11:01 +00002355 // Information for the class declaration.
2356 OS << "\n#ifdef GET_ASSEMBLER_HEADER\n";
2357 OS << "#undef GET_ASSEMBLER_HEADER\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002358 OS << " // This should be included into the middle of the declaration of\n";
Evan Cheng94b95502011-07-26 00:24:13 +00002359 OS << " // your subclasses implementation of MCTargetAsmParser.\n";
Evan Chengebdeeab2011-07-08 01:53:10 +00002360 OS << " unsigned ComputeAvailableFeatures(uint64_t FeatureBits) const;\n";
Daniel Dunbar5c228a92011-02-04 23:17:40 +00002361 OS << " bool ConvertToMCInst(unsigned Kind, MCInst &Inst, "
2362 << "unsigned Opcode,\n"
2363 << " const SmallVectorImpl<MCParsedAsmOperand*> "
2364 << "&Operands);\n";
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002365 OS << " bool MnemonicIsValid(StringRef Mnemonic);\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002366 OS << " unsigned MatchInstructionImpl(\n";
Daniel Dunbar083203d2011-01-10 15:26:11 +00002367 OS << " const SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
Devang Patel56315d32012-01-10 17:50:43 +00002368 OS << " MCInst &Inst, unsigned &ErrorInfo, unsigned VariantID = 0);\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002369
2370 if (Info.OperandMatchInfo.size()) {
Jim Grosbachf922c472011-02-12 01:34:40 +00002371 OS << "\n enum OperandMatchResultTy {\n";
2372 OS << " MatchOperand_Success, // operand matched successfully\n";
2373 OS << " MatchOperand_NoMatch, // operand did not match\n";
2374 OS << " MatchOperand_ParseFail // operand matched but had errors\n";
2375 OS << " };\n";
2376 OS << " OperandMatchResultTy MatchOperandParserImpl(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002377 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2378 OS << " StringRef Mnemonic);\n";
2379
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002380 OS << " OperandMatchResultTy tryCustomParseOperand(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002381 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2382 OS << " unsigned MCK);\n\n";
2383 }
2384
Chris Lattner0692ee62010-09-06 19:11:01 +00002385 OS << "#endif // GET_ASSEMBLER_HEADER_INFO\n\n";
2386
Chris Lattner0692ee62010-09-06 19:11:01 +00002387 OS << "\n#ifdef GET_REGISTER_MATCHER\n";
2388 OS << "#undef GET_REGISTER_MATCHER\n\n";
2389
Daniel Dunbar54074b52010-07-19 05:44:09 +00002390 // Emit the subtarget feature enumeration.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002391 emitSubtargetFeatureFlagEnumeration(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002392
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002393 // Emit the function to match a register name to number.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002394 emitMatchRegisterName(Target, AsmParser, OS);
Chris Lattner0692ee62010-09-06 19:11:01 +00002395
2396 OS << "#endif // GET_REGISTER_MATCHER\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002397
Craig Topper8030e1a2012-04-25 06:56:34 +00002398 OS << "\n#ifdef GET_SUBTARGET_FEATURE_NAME\n";
2399 OS << "#undef GET_SUBTARGET_FEATURE_NAME\n\n";
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002400
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002401 // Generate the helper function to get the names for subtarget features.
2402 emitGetSubtargetFeatureName(Info, OS);
2403
Craig Topper8030e1a2012-04-25 06:56:34 +00002404 OS << "#endif // GET_SUBTARGET_FEATURE_NAME\n\n";
2405
2406 OS << "\n#ifdef GET_MATCHER_IMPLEMENTATION\n";
2407 OS << "#undef GET_MATCHER_IMPLEMENTATION\n\n";
2408
Chris Lattner7fd44892010-10-30 18:48:18 +00002409 // Generate the function that remaps for mnemonic aliases.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002410 bool HasMnemonicAliases = emitMnemonicAliases(OS, Info);
Bob Wilson828295b2011-01-26 21:26:19 +00002411
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002412 // Generate the unified function to convert operands into an MCInst.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002413 emitConvertToMCInst(Target, ClassName, Info.Matchables, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002414
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002415 // Emit the enumeration for classes which participate in matching.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002416 emitMatchClassEnumeration(Target, Info.Classes, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002417
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002418 // Emit the routine to match token strings to their match class.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002419 emitMatchTokenString(Target, Info.Classes, OS);
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002420
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002421 // Emit the subclass predicate routine.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002422 emitIsSubclass(Target, Info.Classes, OS);
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002423
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002424 // Emit the routine to validate an operand against a match class.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002425 emitValidateOperandClass(Info, OS);
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002426
Daniel Dunbar54074b52010-07-19 05:44:09 +00002427 // Emit the available features compute function.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002428 emitComputeAvailableFeatures(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002429
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002430
2431 size_t MaxNumOperands = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002432 for (std::vector<MatchableInfo*>::const_iterator it =
2433 Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002434 it != ie; ++it)
Chris Lattner3116fef2010-11-02 01:03:43 +00002435 MaxNumOperands = std::max(MaxNumOperands, (*it)->AsmOperands.size());
Jim Grosbacha7c78222010-10-29 22:13:48 +00002436
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002437 // Emit the static match table; unused classes get initalized to 0 which is
2438 // guaranteed to be InvalidMatchClass.
2439 //
2440 // FIXME: We can reduce the size of this table very easily. First, we change
2441 // it so that store the kinds in separate bit-fields for each index, which
2442 // only needs to be the max width used for classes at that index (we also need
2443 // to reject based on this during classification). If we then make sure to
2444 // order the match kinds appropriately (putting mnemonics last), then we
2445 // should only end up using a few bits for each class, especially the ones
2446 // following the mnemonic.
Chris Lattner96352e52010-09-06 21:08:38 +00002447 OS << "namespace {\n";
2448 OS << " struct MatchEntry {\n";
Jakob Stoklund Olesen7044cce2012-03-15 21:22:53 +00002449 OS << " static const char *const MnemonicTable;\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002450 OS << " uint32_t Mnemonic;\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002451 OS << " uint16_t Opcode;\n";
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002452 OS << " " << getMinimalTypeForRange(Info.Matchables.size())
2453 << " ConvertFn;\n";
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002454 OS << " " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
2455 << " RequiredFeatures;\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002456 OS << " " << getMinimalTypeForRange(Info.Classes.size())
2457 << " Classes[" << MaxNumOperands << "];\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002458 OS << " uint8_t AsmVariantID;\n\n";
2459 OS << " StringRef getMnemonic() const {\n";
2460 OS << " return StringRef(MnemonicTable + Mnemonic + 1,\n";
2461 OS << " MnemonicTable[Mnemonic]);\n";
2462 OS << " }\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002463 OS << " };\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002464
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002465 OS << " // Predicate for searching for an opcode.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002466 OS << " struct LessOpcode {\n";
2467 OS << " bool operator()(const MatchEntry &LHS, StringRef RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002468 OS << " return LHS.getMnemonic() < RHS;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002469 OS << " }\n";
2470 OS << " bool operator()(StringRef LHS, const MatchEntry &RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002471 OS << " return LHS < RHS.getMnemonic();\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002472 OS << " }\n";
Chris Lattner32c685c2010-09-07 06:10:48 +00002473 OS << " bool operator()(const MatchEntry &LHS, const MatchEntry &RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002474 OS << " return LHS.getMnemonic() < RHS.getMnemonic();\n";
Chris Lattner32c685c2010-09-07 06:10:48 +00002475 OS << " }\n";
Chris Lattner96352e52010-09-06 21:08:38 +00002476 OS << " };\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002477
Chris Lattner96352e52010-09-06 21:08:38 +00002478 OS << "} // end anonymous namespace.\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002479
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002480 StringToOffsetTable StringTable;
2481
Chris Lattner96352e52010-09-06 21:08:38 +00002482 OS << "static const MatchEntry MatchTable["
Chris Lattner22bc5c42010-11-01 05:06:45 +00002483 << Info.Matchables.size() << "] = {\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002484
Chris Lattner22bc5c42010-11-01 05:06:45 +00002485 for (std::vector<MatchableInfo*>::const_iterator it =
2486 Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002487 it != ie; ++it) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002488 MatchableInfo &II = **it;
Jim Grosbacha7c78222010-10-29 22:13:48 +00002489
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002490 // Store a pascal-style length byte in the mnemonic.
2491 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
Craig Topperfab3f7e2012-04-02 07:48:39 +00002492 OS << " { " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
2493 << " /* " << II.Mnemonic << " */, "
2494 << Target.getName() << "::"
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002495 << II.getResultInst()->TheDef->getName() << ", "
Craig Topperfab3f7e2012-04-02 07:48:39 +00002496 << II.ConversionFnKind << ", ";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002497
Daniel Dunbar54074b52010-07-19 05:44:09 +00002498 // Write the required features mask.
2499 if (!II.RequiredFeatures.empty()) {
2500 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2501 if (i) OS << "|";
Chris Lattner0aed1e72010-10-30 20:07:57 +00002502 OS << II.RequiredFeatures[i]->getEnumName();
Daniel Dunbar54074b52010-07-19 05:44:09 +00002503 }
2504 } else
2505 OS << "0";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002506
2507 OS << ", { ";
2508 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
2509 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
2510
2511 if (i) OS << ", ";
2512 OS << Op.Class->Name;
2513 }
2514 OS << " }, " << II.AsmVariantID;
Daniel Dunbar54074b52010-07-19 05:44:09 +00002515 OS << "},\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002516 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002517
Chris Lattner96352e52010-09-06 21:08:38 +00002518 OS << "};\n\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002519
Jakob Stoklund Olesen7044cce2012-03-15 21:22:53 +00002520 OS << "const char *const MatchEntry::MnemonicTable =\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002521 StringTable.EmitString(OS);
2522 OS << ";\n\n";
2523
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002524 // A method to determine if a mnemonic is in the list.
2525 OS << "bool " << Target.getName() << ClassName << "::\n"
2526 << "MnemonicIsValid(StringRef Mnemonic) {\n";
2527 OS << " // Search the table.\n";
2528 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2529 OS << " std::equal_range(MatchTable, MatchTable+"
2530 << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n";
2531 OS << " return MnemonicRange.first != MnemonicRange.second;\n";
2532 OS << "}\n\n";
2533
Chris Lattner96352e52010-09-06 21:08:38 +00002534 // Finally, build the match function.
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002535 OS << "unsigned "
Chris Lattner96352e52010-09-06 21:08:38 +00002536 << Target.getName() << ClassName << "::\n"
2537 << "MatchInstructionImpl(const SmallVectorImpl<MCParsedAsmOperand*>"
2538 << " &Operands,\n";
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002539 OS << " MCInst &Inst, unsigned &ErrorInfo, ";
2540 OS << "unsigned VariantID) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002541
2542 // Emit code to get the available features.
2543 OS << " // Get the current feature set.\n";
2544 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2545
Chris Lattner674c1dc2010-10-30 17:36:36 +00002546 OS << " // Get the instruction mnemonic, which is the first token.\n";
2547 OS << " StringRef Mnemonic = ((" << Target.getName()
2548 << "Operand*)Operands[0])->getToken();\n\n";
2549
Chris Lattner7fd44892010-10-30 18:48:18 +00002550 if (HasMnemonicAliases) {
2551 OS << " // Process all MnemonicAliases to remap the mnemonic.\n";
Devang Patel40bced02012-01-17 18:30:45 +00002552 OS << " // FIXME : Add an entry in AsmParserVariant to check this.\n";
2553 OS << " if (!VariantID)\n";
2554 OS << " applyMnemonicAliases(Mnemonic, AvailableFeatures);\n\n";
Chris Lattner7fd44892010-10-30 18:48:18 +00002555 }
Bob Wilson828295b2011-01-26 21:26:19 +00002556
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002557 // Emit code to compute the class list for this operand vector.
2558 OS << " // Eliminate obvious mismatches.\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002559 OS << " if (Operands.size() > " << (MaxNumOperands+1) << ") {\n";
2560 OS << " ErrorInfo = " << (MaxNumOperands+1) << ";\n";
2561 OS << " return Match_InvalidOperand;\n";
2562 OS << " }\n\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002563
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002564 OS << " // Some state to try to produce better error messages.\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002565 OS << " bool HadMatchOtherThanFeatures = false;\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00002566 OS << " bool HadMatchOtherThanPredicate = false;\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002567 OS << " unsigned RetCode = Match_InvalidOperand;\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002568 OS << " // Set ErrorInfo to the operand that mismatches if it is\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002569 OS << " // wrong for all instances of the instruction.\n";
2570 OS << " ErrorInfo = ~0U;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002571
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002572 // Emit code to search the table.
2573 OS << " // Search the table.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002574 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2575 OS << " std::equal_range(MatchTable, MatchTable+"
Chris Lattner22bc5c42010-11-01 05:06:45 +00002576 << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002577
Chris Lattnera008e8a2010-09-06 21:54:15 +00002578 OS << " // Return a more specific error code if no mnemonics match.\n";
2579 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
2580 OS << " return Match_MnemonicFail;\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002581
Chris Lattner2b1f9432010-09-06 21:22:45 +00002582 OS << " for (const MatchEntry *it = MnemonicRange.first, "
Chris Lattner80db4e52010-09-06 21:23:43 +00002583 << "*ie = MnemonicRange.second;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002584 OS << " it != ie; ++it) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002585
Gabor Greife53ee3b2010-09-07 06:06:06 +00002586 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002587 OS << " assert(Mnemonic == it->getMnemonic());\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002588
Daniel Dunbar54074b52010-07-19 05:44:09 +00002589 // Emit check that the subclasses match.
Devang Patel56315d32012-01-10 17:50:43 +00002590 OS << " if (VariantID != it->AsmVariantID) continue;\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002591 OS << " bool OperandsValid = true;\n";
2592 OS << " for (unsigned i = 0; i != " << MaxNumOperands << "; ++i) {\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002593 OS << " if (i + 1 >= Operands.size()) {\n";
2594 OS << " OperandsValid = (it->Classes[i] == " <<"InvalidMatchClass);\n";
Jim Grosbachb9d5af02011-05-03 19:09:56 +00002595 OS << " break;\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002596 OS << " }\n";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002597 OS << " if (validateOperandClass(Operands[i+1], "
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002598 "(MatchClassKind)it->Classes[i]))\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002599 OS << " continue;\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002600 OS << " // If this operand is broken for all of the instances of this\n";
2601 OS << " // mnemonic, keep track of it so we can report loc info.\n";
Kevin Enderby79fcb6d2011-02-02 18:20:55 +00002602 OS << " if (it == MnemonicRange.first || ErrorInfo <= i+1)\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002603 OS << " ErrorInfo = i+1;\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002604 OS << " // Otherwise, just reject this instance of the mnemonic.\n";
2605 OS << " OperandsValid = false;\n";
2606 OS << " break;\n";
2607 OS << " }\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002608
Chris Lattnerce4a3352010-09-06 22:11:18 +00002609 OS << " if (!OperandsValid) continue;\n";
Chris Lattnerec6789f2010-09-06 20:08:02 +00002610
2611 // Emit check that the required features are available.
2612 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2613 << "!= it->RequiredFeatures) {\n";
2614 OS << " HadMatchOtherThanFeatures = true;\n";
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002615 OS << " ErrorInfo = it->RequiredFeatures & ~AvailableFeatures;\n";
Chris Lattnerec6789f2010-09-06 20:08:02 +00002616 OS << " continue;\n";
2617 OS << " }\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002618 OS << "\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00002619 OS << " // We have selected a definite instruction, convert the parsed\n"
2620 << " // operands into the appropriate MCInst.\n";
2621 OS << " if (!ConvertToMCInst(it->ConvertFn, Inst,\n"
2622 << " it->Opcode, Operands))\n";
2623 OS << " return Match_ConversionFail;\n";
2624 OS << "\n";
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00002625
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002626 // Verify the instruction with the target-specific match predicate function.
2627 OS << " // We have a potential match. Check the target predicate to\n"
2628 << " // handle any context sensitive constraints.\n"
2629 << " unsigned MatchResult;\n"
2630 << " if ((MatchResult = checkTargetMatchPredicate(Inst)) !="
2631 << " Match_Success) {\n"
2632 << " Inst.clear();\n"
2633 << " RetCode = MatchResult;\n"
Jim Grosbach578071a2011-08-16 20:12:35 +00002634 << " HadMatchOtherThanPredicate = true;\n"
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002635 << " continue;\n"
2636 << " }\n\n";
2637
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00002638 // Call the post-processing function, if used.
2639 std::string InsnCleanupFn =
2640 AsmParser->getValueAsString("AsmParserInstCleanup");
2641 if (!InsnCleanupFn.empty())
2642 OS << " " << InsnCleanupFn << "(Inst);\n";
2643
Chris Lattner79ed3f72010-09-06 19:22:17 +00002644 OS << " return Match_Success;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002645 OS << " }\n\n";
2646
Chris Lattnerec6789f2010-09-06 20:08:02 +00002647 OS << " // Okay, we had no match. Try to return a useful error code.\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00002648 OS << " if (HadMatchOtherThanPredicate || !HadMatchOtherThanFeatures)";
2649 OS << " return RetCode;\n";
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002650 OS << " assert(ErrorInfo && \"missing feature(s) but what?!\");";
Jim Grosbach578071a2011-08-16 20:12:35 +00002651 OS << " return Match_MissingFeature;\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002652 OS << "}\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002653
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002654 if (Info.OperandMatchInfo.size())
Jim Grosbach8caecde2012-04-19 17:52:32 +00002655 emitCustomOperandParsing(OS, Target, Info, ClassName);
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002656
Chris Lattner0692ee62010-09-06 19:11:01 +00002657 OS << "#endif // GET_MATCHER_IMPLEMENTATION\n\n";
Daniel Dunbard51ffcf2009-07-11 19:39:44 +00002658}