blob: 4d18516d69bae15a8d023829ae3ee02d6705e657 [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"
Daniel Dunbar20927f22009-08-07 08:26:05 +0000102#include "llvm/ADT/OwningPtr.h"
Chris Lattnerc07bd402010-11-04 02:11:18 +0000103#include "llvm/ADT/PointerUnion.h"
Chris Lattner1de88232010-11-01 01:47:07 +0000104#include "llvm/ADT/SmallPtrSet.h"
Daniel Dunbara027d222009-07-31 02:32:59 +0000105#include "llvm/ADT/SmallVector.h"
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000106#include "llvm/ADT/STLExtras.h"
Daniel Dunbar20927f22009-08-07 08:26:05 +0000107#include "llvm/ADT/StringExtras.h"
108#include "llvm/Support/CommandLine.h"
Daniel Dunbara027d222009-07-31 02:32:59 +0000109#include "llvm/Support/Debug.h"
Peter Collingbourne7c788882011-10-01 16:41:13 +0000110#include "llvm/TableGen/Error.h"
111#include "llvm/TableGen/Record.h"
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000112#include <map>
113#include <set>
Daniel Dunbard51ffcf2009-07-11 19:39:44 +0000114using namespace llvm;
115
Daniel Dunbar27249152009-08-07 20:33:39 +0000116static cl::opt<std::string>
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000117MatchPrefix("match-prefix", cl::init(""),
118 cl::desc("Only match instructions with the given prefix"));
Daniel Dunbar20927f22009-08-07 08:26:05 +0000119
Daniel Dunbar20927f22009-08-07 08:26:05 +0000120namespace {
Bob Wilson828295b2011-01-26 21:26:19 +0000121class AsmMatcherInfo;
Daniel Dunbar54074b52010-07-19 05:44:09 +0000122struct SubtargetFeatureInfo;
123
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000124/// ClassInfo - Helper class for storing the information about a particular
125/// class of operands which can be matched.
126struct ClassInfo {
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000127 enum ClassInfoKind {
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000128 /// Invalid kind, for use as a sentinel value.
129 Invalid = 0,
130
131 /// The class for a particular token.
132 Token,
133
134 /// The (first) register class, subsequent register classes are
135 /// RegisterClass0+1, and so on.
136 RegisterClass0,
137
138 /// The (first) user defined class, subsequent user defined classes are
139 /// UserClass0+1, and so on.
140 UserClass0 = 1<<16
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000141 };
142
143 /// Kind - The class kind, which is either a predefined kind, or (UserClass0 +
144 /// N) for the Nth user defined class.
145 unsigned Kind;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000146
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000147 /// SuperClasses - The super classes of this class. Note that for simplicities
148 /// sake user operands only record their immediate super class, while register
149 /// operands include all superclasses.
150 std::vector<ClassInfo*> SuperClasses;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000151
Daniel Dunbar6745d422009-08-09 05:18:30 +0000152 /// Name - The full class name, suitable for use in an enum.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000153 std::string Name;
154
Daniel Dunbar6745d422009-08-09 05:18:30 +0000155 /// ClassName - The unadorned generic name for this class (e.g., Token).
156 std::string ClassName;
157
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000158 /// ValueName - The name of the value this class represents; for a token this
159 /// is the literal token string, for an operand it is the TableGen class (or
160 /// empty if this is a derived class).
161 std::string ValueName;
162
163 /// PredicateMethod - The name of the operand method to test whether the
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000164 /// operand matches this class; this is not valid for Token or register kinds.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000165 std::string PredicateMethod;
166
167 /// RenderMethod - The name of the operand method to add this operand to an
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000168 /// MCInst; this is not valid for Token or register kinds.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000169 std::string RenderMethod;
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000170
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000171 /// ParserMethod - The name of the operand method to do a target specific
172 /// parsing on the operand.
173 std::string ParserMethod;
174
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000175 /// For register classes, the records for all the registers in this class.
176 std::set<Record*> Registers;
177
178public:
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000179 /// isRegisterClass() - Check if this is a register class.
180 bool isRegisterClass() const {
181 return Kind >= RegisterClass0 && Kind < UserClass0;
182 }
183
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000184 /// isUserClass() - Check if this is a user defined class.
185 bool isUserClass() const {
186 return Kind >= UserClass0;
187 }
188
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000189 /// isRelatedTo - Check whether this class is "related" to \arg RHS. Classes
190 /// are related if they are in the same class hierarchy.
191 bool isRelatedTo(const ClassInfo &RHS) const {
192 // Tokens are only related to tokens.
193 if (Kind == Token || RHS.Kind == Token)
194 return Kind == Token && RHS.Kind == Token;
195
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000196 // Registers classes are only related to registers classes, and only if
197 // their intersection is non-empty.
198 if (isRegisterClass() || RHS.isRegisterClass()) {
199 if (!isRegisterClass() || !RHS.isRegisterClass())
200 return false;
201
202 std::set<Record*> Tmp;
203 std::insert_iterator< std::set<Record*> > II(Tmp, Tmp.begin());
Jim Grosbacha7c78222010-10-29 22:13:48 +0000204 std::set_intersection(Registers.begin(), Registers.end(),
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000205 RHS.Registers.begin(), RHS.Registers.end(),
206 II);
207
208 return !Tmp.empty();
209 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000210
211 // Otherwise we have two users operands; they are related if they are in the
212 // same class hierarchy.
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000213 //
214 // FIXME: This is an oversimplification, they should only be related if they
215 // intersect, however we don't have that information.
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000216 assert(isUserClass() && RHS.isUserClass() && "Unexpected class!");
217 const ClassInfo *Root = this;
218 while (!Root->SuperClasses.empty())
219 Root = Root->SuperClasses.front();
220
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000221 const ClassInfo *RHSRoot = &RHS;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000222 while (!RHSRoot->SuperClasses.empty())
223 RHSRoot = RHSRoot->SuperClasses.front();
Jim Grosbacha7c78222010-10-29 22:13:48 +0000224
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000225 return Root == RHSRoot;
226 }
227
Jim Grosbacha7c78222010-10-29 22:13:48 +0000228 /// isSubsetOf - Test whether this class is a subset of \arg RHS;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000229 bool isSubsetOf(const ClassInfo &RHS) const {
230 // This is a subset of RHS if it is the same class...
231 if (this == &RHS)
232 return true;
233
234 // ... or if any of its super classes are a subset of RHS.
235 for (std::vector<ClassInfo*>::const_iterator it = SuperClasses.begin(),
236 ie = SuperClasses.end(); it != ie; ++it)
237 if ((*it)->isSubsetOf(RHS))
238 return true;
239
240 return false;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000241 }
242
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000243 /// operator< - Compare two classes.
244 bool operator<(const ClassInfo &RHS) const {
Daniel Dunbar368a4562010-05-27 05:31:32 +0000245 if (this == &RHS)
246 return false;
247
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000248 // Unrelated classes can be ordered by kind.
249 if (!isRelatedTo(RHS))
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000250 return Kind < RHS.Kind;
251
252 switch (Kind) {
Daniel Dunbar6745d422009-08-09 05:18:30 +0000253 case Invalid:
254 assert(0 && "Invalid kind!");
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000255
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000256 default:
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000257 // This class precedes the RHS if it is a proper subset of the RHS.
Daniel Dunbar368a4562010-05-27 05:31:32 +0000258 if (isSubsetOf(RHS))
Duncan Sands34727662010-07-12 08:16:59 +0000259 return true;
Daniel Dunbar368a4562010-05-27 05:31:32 +0000260 if (RHS.isSubsetOf(*this))
Duncan Sands34727662010-07-12 08:16:59 +0000261 return false;
Daniel Dunbar368a4562010-05-27 05:31:32 +0000262
263 // Otherwise, order by name to ensure we have a total ordering.
264 return ValueName < RHS.ValueName;
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000265 }
266 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000267};
268
Chris Lattner22bc5c42010-11-01 05:06:45 +0000269/// MatchableInfo - Helper class for storing the necessary information for an
270/// instruction or alias which is capable of being matched.
271struct MatchableInfo {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000272 struct AsmOperand {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000273 /// Token - This is the token that the operand came from.
274 StringRef Token;
Bob Wilson828295b2011-01-26 21:26:19 +0000275
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000276 /// The unique class instance this operand should match.
277 ClassInfo *Class;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000278
Chris Lattner567820c2010-11-04 01:42:59 +0000279 /// The operand name this is, if anything.
280 StringRef SrcOpName;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000281
282 /// The suboperand index within SrcOpName, or -1 for the entire operand.
283 int SubOpIdx;
Bob Wilson828295b2011-01-26 21:26:19 +0000284
Devang Patel63faf822012-01-07 01:33:34 +0000285 /// Register record if this token is singleton register.
286 Record *SingletonReg;
287
288 explicit AsmOperand(StringRef T) : Token(T), Class(0), SubOpIdx(-1),
289 SingletonReg(0) {}
Daniel Dunbar20927f22009-08-07 08:26:05 +0000290 };
Bob Wilson828295b2011-01-26 21:26:19 +0000291
Chris Lattner1d13bda2010-11-04 00:43:46 +0000292 /// ResOperand - This represents a single operand in the result instruction
293 /// generated by the match. In cases (like addressing modes) where a single
294 /// assembler operand expands to multiple MCOperands, this represents the
295 /// single assembler operand, not the MCOperand.
296 struct ResOperand {
297 enum {
298 /// RenderAsmOperand - This represents an operand result that is
299 /// generated by calling the render method on the assembly operand. The
300 /// corresponding AsmOperand is specified by AsmOperandNum.
301 RenderAsmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000302
Chris Lattner1d13bda2010-11-04 00:43:46 +0000303 /// TiedOperand - This represents a result operand that is a duplicate of
304 /// a previous result operand.
Chris Lattner98c870f2010-11-06 19:25:43 +0000305 TiedOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000306
Chris Lattner98c870f2010-11-06 19:25:43 +0000307 /// ImmOperand - This represents an immediate value that is dumped into
308 /// the operand.
Chris Lattner90fd7972010-11-06 19:57:21 +0000309 ImmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000310
Chris Lattner90fd7972010-11-06 19:57:21 +0000311 /// RegOperand - This represents a fixed register that is dumped in.
312 RegOperand
Chris Lattner1d13bda2010-11-04 00:43:46 +0000313 } Kind;
Bob Wilson828295b2011-01-26 21:26:19 +0000314
Chris Lattner1d13bda2010-11-04 00:43:46 +0000315 union {
316 /// This is the operand # in the AsmOperands list that this should be
317 /// copied from.
318 unsigned AsmOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000319
Chris Lattner1d13bda2010-11-04 00:43:46 +0000320 /// TiedOperandNum - This is the (earlier) result operand that should be
321 /// copied from.
322 unsigned TiedOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000323
Chris Lattner98c870f2010-11-06 19:25:43 +0000324 /// ImmVal - This is the immediate value added to the instruction.
325 int64_t ImmVal;
Bob Wilson828295b2011-01-26 21:26:19 +0000326
Chris Lattner90fd7972010-11-06 19:57:21 +0000327 /// Register - This is the register record.
328 Record *Register;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000329 };
Bob Wilson828295b2011-01-26 21:26:19 +0000330
Bob Wilsona49c7df2011-01-26 19:44:55 +0000331 /// MINumOperands - The number of MCInst operands populated by this
332 /// operand.
333 unsigned MINumOperands;
Bob Wilson828295b2011-01-26 21:26:19 +0000334
Bob Wilsona49c7df2011-01-26 19:44:55 +0000335 static ResOperand getRenderedOp(unsigned AsmOpNum, unsigned NumOperands) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000336 ResOperand X;
337 X.Kind = RenderAsmOperand;
338 X.AsmOperandNum = AsmOpNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000339 X.MINumOperands = NumOperands;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000340 return X;
341 }
Bob Wilson828295b2011-01-26 21:26:19 +0000342
Bob Wilsona49c7df2011-01-26 19:44:55 +0000343 static ResOperand getTiedOp(unsigned TiedOperandNum) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000344 ResOperand X;
345 X.Kind = TiedOperand;
346 X.TiedOperandNum = TiedOperandNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000347 X.MINumOperands = 1;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000348 return X;
349 }
Bob Wilson828295b2011-01-26 21:26:19 +0000350
Bob Wilsona49c7df2011-01-26 19:44:55 +0000351 static ResOperand getImmOp(int64_t Val) {
Chris Lattner98c870f2010-11-06 19:25:43 +0000352 ResOperand X;
353 X.Kind = ImmOperand;
354 X.ImmVal = Val;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000355 X.MINumOperands = 1;
Chris Lattner98c870f2010-11-06 19:25:43 +0000356 return X;
357 }
Bob Wilson828295b2011-01-26 21:26:19 +0000358
Bob Wilsona49c7df2011-01-26 19:44:55 +0000359 static ResOperand getRegOp(Record *Reg) {
Chris Lattner90fd7972010-11-06 19:57:21 +0000360 ResOperand X;
361 X.Kind = RegOperand;
362 X.Register = Reg;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000363 X.MINumOperands = 1;
Chris Lattner90fd7972010-11-06 19:57:21 +0000364 return X;
365 }
Chris Lattner1d13bda2010-11-04 00:43:46 +0000366 };
Daniel Dunbar20927f22009-08-07 08:26:05 +0000367
Devang Patel56315d32012-01-10 17:50:43 +0000368 /// AsmVariantID - Target's assembly syntax variant no.
369 int AsmVariantID;
370
Chris Lattner3b5aec62010-11-02 17:34:28 +0000371 /// TheDef - This is the definition of the instruction or InstAlias that this
372 /// matchable came from.
Chris Lattner5bc93872010-11-01 04:34:44 +0000373 Record *const TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000374
Chris Lattnerc07bd402010-11-04 02:11:18 +0000375 /// DefRec - This is the definition that it came from.
376 PointerUnion<const CodeGenInstruction*, const CodeGenInstAlias*> DefRec;
Bob Wilson828295b2011-01-26 21:26:19 +0000377
Chris Lattner662e5a32010-11-06 07:14:44 +0000378 const CodeGenInstruction *getResultInst() const {
379 if (DefRec.is<const CodeGenInstruction*>())
380 return DefRec.get<const CodeGenInstruction*>();
381 return DefRec.get<const CodeGenInstAlias*>()->ResultInst;
382 }
Bob Wilson828295b2011-01-26 21:26:19 +0000383
Chris Lattner1d13bda2010-11-04 00:43:46 +0000384 /// ResOperands - This is the operand list that should be built for the result
385 /// MCInst.
386 std::vector<ResOperand> ResOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000387
388 /// AsmString - The assembly string for this instruction (with variants
Chris Lattner3b5aec62010-11-02 17:34:28 +0000389 /// removed), e.g. "movsx $src, $dst".
Daniel Dunbar20927f22009-08-07 08:26:05 +0000390 std::string AsmString;
391
Chris Lattnerd19ec052010-11-02 17:30:52 +0000392 /// Mnemonic - This is the first token of the matched instruction, its
393 /// mnemonic.
394 StringRef Mnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +0000395
Chris Lattner3116fef2010-11-02 01:03:43 +0000396 /// AsmOperands - The textual operands that this instruction matches,
Chris Lattner3b5aec62010-11-02 17:34:28 +0000397 /// annotated with a class and where in the OperandList they were defined.
398 /// This directly corresponds to the tokenized AsmString after the mnemonic is
399 /// removed.
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000400 SmallVector<AsmOperand, 4> AsmOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000401
Daniel Dunbar54074b52010-07-19 05:44:09 +0000402 /// Predicates - The required subtarget features to match this instruction.
403 SmallVector<SubtargetFeatureInfo*, 4> RequiredFeatures;
404
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000405 /// ConversionFnKind - The enum value which is passed to the generated
406 /// ConvertToMCInst to convert parsed operands into an MCInst for this
407 /// function.
408 std::string ConversionFnKind;
Bob Wilson828295b2011-01-26 21:26:19 +0000409
Chris Lattner22bc5c42010-11-01 05:06:45 +0000410 MatchableInfo(const CodeGenInstruction &CGI)
Devang Patel56315d32012-01-10 17:50:43 +0000411 : AsmVariantID(0), TheDef(CGI.TheDef), DefRec(&CGI),
412 AsmString(CGI.AsmString) {
Chris Lattner5bc93872010-11-01 04:34:44 +0000413 }
414
Chris Lattner22bc5c42010-11-01 05:06:45 +0000415 MatchableInfo(const CodeGenInstAlias *Alias)
Devang Patel56315d32012-01-10 17:50:43 +0000416 : AsmVariantID(0), TheDef(Alias->TheDef), DefRec(Alias),
417 AsmString(Alias->AsmString) {
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000418 }
Bob Wilson828295b2011-01-26 21:26:19 +0000419
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000420 void Initialize(const AsmMatcherInfo &Info,
Devang Patel63faf822012-01-07 01:33:34 +0000421 SmallPtrSet<Record*, 16> &SingletonRegisters,
422 int AsmVariantNo, std::string &RegisterPrefix);
Bob Wilson828295b2011-01-26 21:26:19 +0000423
Chris Lattner22bc5c42010-11-01 05:06:45 +0000424 /// Validate - Return true if this matchable is a valid thing to match against
425 /// and perform a bunch of validity checking.
426 bool Validate(StringRef CommentDelimiter, bool Hack) const;
Bob Wilson828295b2011-01-26 21:26:19 +0000427
Devang Patel63faf822012-01-07 01:33:34 +0000428 /// extractSingletonRegisterForAsmOperand - Extract singleton register,
429 /// if present, from specified token.
430 void
431 extractSingletonRegisterForAsmOperand(unsigned i, const AsmMatcherInfo &Info,
432 std::string &RegisterPrefix);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000433
Bob Wilsona49c7df2011-01-26 19:44:55 +0000434 /// FindAsmOperand - Find the AsmOperand with the specified name and
435 /// suboperand index.
436 int FindAsmOperand(StringRef N, int SubOpIdx) const {
437 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
438 if (N == AsmOperands[i].SrcOpName &&
439 SubOpIdx == AsmOperands[i].SubOpIdx)
440 return i;
441 return -1;
442 }
Bob Wilson828295b2011-01-26 21:26:19 +0000443
Bob Wilsona49c7df2011-01-26 19:44:55 +0000444 /// FindAsmOperandNamed - Find the first AsmOperand with the specified name.
445 /// This does not check the suboperand index.
Chris Lattnerba3b5b62010-11-04 01:55:23 +0000446 int FindAsmOperandNamed(StringRef N) const {
447 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
448 if (N == AsmOperands[i].SrcOpName)
449 return i;
450 return -1;
451 }
Bob Wilson828295b2011-01-26 21:26:19 +0000452
Chris Lattner41409852010-11-06 07:31:43 +0000453 void BuildInstructionResultOperands();
454 void BuildAliasResultOperands();
Chris Lattner1d13bda2010-11-04 00:43:46 +0000455
Chris Lattner22bc5c42010-11-01 05:06:45 +0000456 /// operator< - Compare two matchables.
457 bool operator<(const MatchableInfo &RHS) const {
Chris Lattnere206fcf2010-09-06 21:01:37 +0000458 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000459 if (Mnemonic != RHS.Mnemonic)
460 return Mnemonic < RHS.Mnemonic;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000461
Chris Lattner3116fef2010-11-02 01:03:43 +0000462 if (AsmOperands.size() != RHS.AsmOperands.size())
463 return AsmOperands.size() < RHS.AsmOperands.size();
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000464
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000465 // Compare lexicographically by operand. The matcher validates that other
Bob Wilson1f64ac42011-01-26 21:26:21 +0000466 // orderings wouldn't be ambiguous using \see CouldMatchAmbiguouslyWith().
Chris Lattner3116fef2010-11-02 01:03:43 +0000467 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
468 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000469 return true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000470 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000471 return false;
472 }
473
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000474 return false;
475 }
476
Bob Wilson1f64ac42011-01-26 21:26:21 +0000477 /// CouldMatchAmbiguouslyWith - Check whether this matchable could
Daniel Dunbar2b544812009-08-09 06:05:33 +0000478 /// ambiguously match the same set of operands as \arg RHS (without being a
479 /// strictly superior match).
Bob Wilson1f64ac42011-01-26 21:26:21 +0000480 bool CouldMatchAmbiguouslyWith(const MatchableInfo &RHS) {
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000481 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000482 if (Mnemonic != RHS.Mnemonic)
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000483 return false;
Bob Wilson828295b2011-01-26 21:26:19 +0000484
Daniel Dunbar2b544812009-08-09 06:05:33 +0000485 // The number of operands is unambiguous.
Chris Lattner3116fef2010-11-02 01:03:43 +0000486 if (AsmOperands.size() != RHS.AsmOperands.size())
Daniel Dunbar2b544812009-08-09 06:05:33 +0000487 return false;
488
Daniel Dunbar1402f0b2010-01-23 00:26:16 +0000489 // Otherwise, make sure the ordering of the two instructions is unambiguous
490 // by checking that either (a) a token or operand kind discriminates them,
491 // or (b) the ordering among equivalent kinds is consistent.
492
Daniel Dunbar2b544812009-08-09 06:05:33 +0000493 // Tokens and operand kinds are unambiguous (assuming a correct target
494 // specific parser).
Chris Lattner3116fef2010-11-02 01:03:43 +0000495 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
496 if (AsmOperands[i].Class->Kind != RHS.AsmOperands[i].Class->Kind ||
497 AsmOperands[i].Class->Kind == ClassInfo::Token)
498 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class ||
499 *RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000500 return false;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000501
Daniel Dunbar2b544812009-08-09 06:05:33 +0000502 // Otherwise, this operand could commute if all operands are equivalent, or
503 // there is a pair of operands that compare less than and a pair that
504 // compare greater than.
505 bool HasLT = false, HasGT = false;
Chris Lattner3116fef2010-11-02 01:03:43 +0000506 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
507 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000508 HasLT = true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000509 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000510 HasGT = true;
511 }
512
513 return !(HasLT ^ HasGT);
514 }
515
Daniel Dunbar20927f22009-08-07 08:26:05 +0000516 void dump();
Bob Wilson828295b2011-01-26 21:26:19 +0000517
Chris Lattnerd19ec052010-11-02 17:30:52 +0000518private:
519 void TokenizeAsmString(const AsmMatcherInfo &Info);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000520};
521
Daniel Dunbar54074b52010-07-19 05:44:09 +0000522/// SubtargetFeatureInfo - Helper class for storing information on a subtarget
523/// feature which participates in instruction matching.
524struct SubtargetFeatureInfo {
525 /// \brief The predicate record for this feature.
526 Record *TheDef;
527
528 /// \brief An unique index assigned to represent this feature.
529 unsigned Index;
530
Chris Lattner0aed1e72010-10-30 20:07:57 +0000531 SubtargetFeatureInfo(Record *D, unsigned Idx) : TheDef(D), Index(Idx) {}
Bob Wilson828295b2011-01-26 21:26:19 +0000532
Daniel Dunbar54074b52010-07-19 05:44:09 +0000533 /// \brief The name of the enumerated constant identifying this feature.
Chris Lattner0aed1e72010-10-30 20:07:57 +0000534 std::string getEnumName() const {
535 return "Feature_" + TheDef->getName();
536 }
Daniel Dunbar54074b52010-07-19 05:44:09 +0000537};
538
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000539struct OperandMatchEntry {
540 unsigned OperandMask;
541 MatchableInfo* MI;
542 ClassInfo *CI;
543
544 static OperandMatchEntry Create(MatchableInfo* mi, ClassInfo *ci,
545 unsigned opMask) {
546 OperandMatchEntry X;
547 X.OperandMask = opMask;
548 X.CI = ci;
549 X.MI = mi;
550 return X;
551 }
552};
553
554
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000555class AsmMatcherInfo {
556public:
Chris Lattner67db8832010-12-13 00:23:57 +0000557 /// Tracked Records
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000558 RecordKeeper &Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000559
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000560 /// The tablegen AsmParser record.
561 Record *AsmParser;
562
Chris Lattner02bcbc92010-11-01 01:37:30 +0000563 /// Target - The target information.
564 CodeGenTarget &Target;
565
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000566 /// The classes which are needed for matching.
567 std::vector<ClassInfo*> Classes;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000568
Chris Lattner22bc5c42010-11-01 05:06:45 +0000569 /// The information on the matchables to match.
570 std::vector<MatchableInfo*> Matchables;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000571
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000572 /// Info for custom matching operands by user defined methods.
573 std::vector<OperandMatchEntry> OperandMatchInfo;
574
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000575 /// Map of Register records to their class information.
576 std::map<Record*, ClassInfo*> RegisterClasses;
577
Daniel Dunbar54074b52010-07-19 05:44:09 +0000578 /// Map of Predicate records to their subtarget information.
579 std::map<Record*, SubtargetFeatureInfo*> SubtargetFeatures;
Bob Wilson828295b2011-01-26 21:26:19 +0000580
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000581private:
582 /// Map of token to class information which has already been constructed.
583 std::map<std::string, ClassInfo*> TokenClasses;
584
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000585 /// Map of RegisterClass records to their class information.
586 std::map<Record*, ClassInfo*> RegisterClassClasses;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000587
Daniel Dunbar338825c2009-08-10 18:41:10 +0000588 /// Map of AsmOperandClass records to their class information.
589 std::map<Record*, ClassInfo*> AsmOperandClasses;
Daniel Dunbar6745d422009-08-09 05:18:30 +0000590
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000591private:
592 /// getTokenClass - Lookup or create the class for the given token.
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000593 ClassInfo *getTokenClass(StringRef Token);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000594
595 /// getOperandClass - Lookup or create the class for the given operand.
Bob Wilsona49c7df2011-01-26 19:44:55 +0000596 ClassInfo *getOperandClass(const CGIOperandList::OperandInfo &OI,
Jim Grosbach48c1f842011-10-28 22:32:53 +0000597 int SubOpIdx);
598 ClassInfo *getOperandClass(Record *Rec, int SubOpIdx);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000599
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000600 /// BuildRegisterClasses - Build the ClassInfo* instances for register
601 /// classes.
Chris Lattner1de88232010-11-01 01:47:07 +0000602 void BuildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters);
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000603
604 /// BuildOperandClasses - Build the ClassInfo* instances for user defined
605 /// operand classes.
Chris Lattner02bcbc92010-11-01 01:37:30 +0000606 void BuildOperandClasses();
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000607
Bob Wilsona49c7df2011-01-26 19:44:55 +0000608 void BuildInstructionOperandReference(MatchableInfo *II, StringRef OpName,
609 unsigned AsmOpIdx);
610 void BuildAliasOperandReference(MatchableInfo *II, StringRef OpName,
Chris Lattnerc07bd402010-11-04 02:11:18 +0000611 MatchableInfo::AsmOperand &Op);
Bob Wilson828295b2011-01-26 21:26:19 +0000612
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000613public:
Bob Wilson828295b2011-01-26 21:26:19 +0000614 AsmMatcherInfo(Record *AsmParser,
615 CodeGenTarget &Target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000616 RecordKeeper &Records);
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000617
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000618 /// BuildInfo - Construct the various tables used during matching.
Chris Lattner02bcbc92010-11-01 01:37:30 +0000619 void BuildInfo();
Bob Wilson828295b2011-01-26 21:26:19 +0000620
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000621 /// BuildOperandMatchInfo - Build the necessary information to handle user
622 /// defined operand parsing methods.
623 void BuildOperandMatchInfo();
624
Chris Lattner6fa152c2010-10-30 20:15:02 +0000625 /// getSubtargetFeature - Lookup or create the subtarget feature info for the
626 /// given operand.
627 SubtargetFeatureInfo *getSubtargetFeature(Record *Def) const {
628 assert(Def->isSubClassOf("Predicate") && "Invalid predicate type!");
629 std::map<Record*, SubtargetFeatureInfo*>::const_iterator I =
630 SubtargetFeatures.find(Def);
631 return I == SubtargetFeatures.end() ? 0 : I->second;
632 }
Chris Lattner67db8832010-12-13 00:23:57 +0000633
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000634 RecordKeeper &getRecords() const {
635 return Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000636 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000637};
638
Daniel Dunbar20927f22009-08-07 08:26:05 +0000639}
640
Chris Lattner22bc5c42010-11-01 05:06:45 +0000641void MatchableInfo::dump() {
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000642 errs() << TheDef->getName() << " -- " << "flattened:\"" << AsmString <<"\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000643
Chris Lattner3116fef2010-11-02 01:03:43 +0000644 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000645 AsmOperand &Op = AsmOperands[i];
Daniel Dunbar6745d422009-08-09 05:18:30 +0000646 errs() << " op[" << i << "] = " << Op.Class->ClassName << " - ";
Chris Lattner0bb780c2010-11-04 00:57:06 +0000647 errs() << '\"' << Op.Token << "\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000648 }
649}
650
Chris Lattner22bc5c42010-11-01 05:06:45 +0000651void MatchableInfo::Initialize(const AsmMatcherInfo &Info,
Devang Patel63faf822012-01-07 01:33:34 +0000652 SmallPtrSet<Record*, 16> &SingletonRegisters,
653 int AsmVariantNo, std::string &RegisterPrefix) {
Devang Patel56315d32012-01-10 17:50:43 +0000654 AsmVariantID = AsmVariantNo;
Devang Patel59f7ee02012-01-05 00:51:28 +0000655 AsmString =
Devang Patel63faf822012-01-07 01:33:34 +0000656 CodeGenInstruction::FlattenAsmStringVariants(AsmString, AsmVariantNo);
Bob Wilson828295b2011-01-26 21:26:19 +0000657
Chris Lattnerd19ec052010-11-02 17:30:52 +0000658 TokenizeAsmString(Info);
Bob Wilson828295b2011-01-26 21:26:19 +0000659
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000660 // Compute the require features.
661 std::vector<Record*> Predicates =TheDef->getValueAsListOfDefs("Predicates");
662 for (unsigned i = 0, e = Predicates.size(); i != e; ++i)
663 if (SubtargetFeatureInfo *Feature =
664 Info.getSubtargetFeature(Predicates[i]))
665 RequiredFeatures.push_back(Feature);
Bob Wilson828295b2011-01-26 21:26:19 +0000666
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000667 // Collect singleton registers, if used.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000668 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Devang Patel63faf822012-01-07 01:33:34 +0000669 extractSingletonRegisterForAsmOperand(i, Info, RegisterPrefix);
670 if (Record *Reg = AsmOperands[i].SingletonReg)
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000671 SingletonRegisters.insert(Reg);
672 }
673}
674
Chris Lattnerd19ec052010-11-02 17:30:52 +0000675/// TokenizeAsmString - Tokenize a simplified assembly string.
676void MatchableInfo::TokenizeAsmString(const AsmMatcherInfo &Info) {
677 StringRef String = AsmString;
678 unsigned Prev = 0;
679 bool InTok = true;
680 for (unsigned i = 0, e = String.size(); i != e; ++i) {
681 switch (String[i]) {
682 case '[':
683 case ']':
684 case '*':
685 case '!':
686 case ' ':
687 case '\t':
688 case ',':
689 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000690 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000691 InTok = false;
692 }
693 if (!isspace(String[i]) && String[i] != ',')
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000694 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000695 Prev = i + 1;
696 break;
697
698 case '\\':
699 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000700 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000701 InTok = false;
702 }
703 ++i;
704 assert(i != String.size() && "Invalid quoted character");
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000705 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000706 Prev = i + 1;
707 break;
708
709 case '$': {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000710 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000711 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000712 InTok = false;
713 }
Bob Wilson828295b2011-01-26 21:26:19 +0000714
Chris Lattner7ad31472010-11-06 22:06:03 +0000715 // If this isn't "${", treat like a normal token.
716 if (i + 1 == String.size() || String[i + 1] != '{') {
717 Prev = i;
718 break;
719 }
Chris Lattnerd19ec052010-11-02 17:30:52 +0000720
721 StringRef::iterator End = std::find(String.begin() + i, String.end(),'}');
722 assert(End != String.end() && "Missing brace in operand reference!");
723 size_t EndPos = End - String.begin();
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000724 AsmOperands.push_back(AsmOperand(String.slice(i, EndPos+1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000725 Prev = EndPos + 1;
726 i = EndPos;
727 break;
728 }
729
730 case '.':
731 if (InTok)
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000732 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000733 Prev = i;
734 InTok = true;
735 break;
736
737 default:
738 InTok = true;
739 }
740 }
741 if (InTok && Prev != String.size())
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000742 AsmOperands.push_back(AsmOperand(String.substr(Prev)));
Bob Wilson828295b2011-01-26 21:26:19 +0000743
Chris Lattnerd19ec052010-11-02 17:30:52 +0000744 // The first token of the instruction is the mnemonic, which must be a
745 // simple string, not a $foo variable or a singleton register.
Jim Grosbach4a2242c2011-11-30 23:16:25 +0000746 if (AsmOperands.empty())
747 throw TGError(TheDef->getLoc(),
748 "Instruction '" + TheDef->getName() + "' has no tokens");
Chris Lattnerd19ec052010-11-02 17:30:52 +0000749 Mnemonic = AsmOperands[0].Token;
Devang Patel63faf822012-01-07 01:33:34 +0000750 // FIXME : Check and raise an error if it is a register.
Devang Patelb78307f2012-01-07 01:22:23 +0000751 if (Mnemonic[0] == '$')
Chris Lattnerd19ec052010-11-02 17:30:52 +0000752 throw TGError(TheDef->getLoc(),
753 "Invalid instruction mnemonic '" + Mnemonic.str() + "'!");
Bob Wilson828295b2011-01-26 21:26:19 +0000754
Chris Lattnerd19ec052010-11-02 17:30:52 +0000755 // Remove the first operand, it is tracked in the mnemonic field.
756 AsmOperands.erase(AsmOperands.begin());
757}
758
Chris Lattner22bc5c42010-11-01 05:06:45 +0000759bool MatchableInfo::Validate(StringRef CommentDelimiter, bool Hack) const {
760 // Reject matchables with no .s string.
Chris Lattner5bc93872010-11-01 04:34:44 +0000761 if (AsmString.empty())
762 throw TGError(TheDef->getLoc(), "instruction with empty asm string");
Bob Wilson828295b2011-01-26 21:26:19 +0000763
Chris Lattner22bc5c42010-11-01 05:06:45 +0000764 // Reject any matchables with a newline in them, they should be marked
Chris Lattner5bc93872010-11-01 04:34:44 +0000765 // isCodeGenOnly if they are pseudo instructions.
766 if (AsmString.find('\n') != std::string::npos)
767 throw TGError(TheDef->getLoc(),
768 "multiline instruction is not valid for the asmparser, "
769 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000770
Chris Lattner4164f6b2010-11-01 04:44:29 +0000771 // Remove comments from the asm string. We know that the asmstring only
772 // has one line.
773 if (!CommentDelimiter.empty() &&
774 StringRef(AsmString).find(CommentDelimiter) != StringRef::npos)
775 throw TGError(TheDef->getLoc(),
776 "asmstring for instruction has comment character in it, "
777 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000778
Chris Lattner22bc5c42010-11-01 05:06:45 +0000779 // Reject matchables with operand modifiers, these aren't something we can
Bob Wilson906bc362011-01-20 18:38:07 +0000780 // handle, the target should be refactored to use operands instead of
781 // modifiers.
Chris Lattner5bc93872010-11-01 04:34:44 +0000782 //
783 // Also, check for instructions which reference the operand multiple times;
784 // this implies a constraint we would not honor.
785 std::set<std::string> OperandNames;
Chris Lattnerd19ec052010-11-02 17:30:52 +0000786 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
787 StringRef Tok = AsmOperands[i].Token;
788 if (Tok[0] == '$' && Tok.find(':') != StringRef::npos)
Chris Lattner5bc93872010-11-01 04:34:44 +0000789 throw TGError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000790 "matchable with operand modifier '" + Tok.str() +
Chris Lattner5bc93872010-11-01 04:34:44 +0000791 "' not supported by asm matcher. Mark isCodeGenOnly!");
Bob Wilson828295b2011-01-26 21:26:19 +0000792
Chris Lattner22bc5c42010-11-01 05:06:45 +0000793 // Verify that any operand is only mentioned once.
Chris Lattnerd51257a2010-11-02 23:18:43 +0000794 // We reject aliases and ignore instructions for now.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000795 if (Tok[0] == '$' && !OperandNames.insert(Tok).second) {
Chris Lattner22bc5c42010-11-01 05:06:45 +0000796 if (!Hack)
797 throw TGError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000798 "ERROR: matchable with tied operand '" + Tok.str() +
Chris Lattner22bc5c42010-11-01 05:06:45 +0000799 "' can never be matched!");
800 // FIXME: Should reject these. The ARM backend hits this with $lane in a
801 // bunch of instructions. It is unclear what the right answer is.
Chris Lattner5bc93872010-11-01 04:34:44 +0000802 DEBUG({
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000803 errs() << "warning: '" << TheDef->getName() << "': "
Chris Lattner22bc5c42010-11-01 05:06:45 +0000804 << "ignoring instruction with tied operand '"
Chris Lattnerd19ec052010-11-02 17:30:52 +0000805 << Tok.str() << "'\n";
Chris Lattner5bc93872010-11-01 04:34:44 +0000806 });
807 return false;
808 }
809 }
Bob Wilson828295b2011-01-26 21:26:19 +0000810
Chris Lattner5bc93872010-11-01 04:34:44 +0000811 return true;
812}
813
Devang Pateld06b01c2012-01-09 21:30:46 +0000814/// extractSingletonRegisterForAsmOperand - Extract singleton register,
815/// if present, from specified token.
Devang Patel63faf822012-01-07 01:33:34 +0000816void MatchableInfo::
Devang Pateld06b01c2012-01-09 21:30:46 +0000817extractSingletonRegisterForAsmOperand(unsigned OperandNo,
818 const AsmMatcherInfo &Info,
Devang Patel63faf822012-01-07 01:33:34 +0000819 std::string &RegisterPrefix) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000820 StringRef Tok = AsmOperands[OperandNo].Token;
Devang Patel63faf822012-01-07 01:33:34 +0000821 if (RegisterPrefix.empty()) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000822 std::string LoweredTok = Tok.lower();
823 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(LoweredTok))
824 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Devang Patel63faf822012-01-07 01:33:34 +0000825 return;
826 }
Bob Wilson828295b2011-01-26 21:26:19 +0000827
Devang Patel63faf822012-01-07 01:33:34 +0000828 if (!Tok.startswith(RegisterPrefix))
829 return;
830
831 StringRef RegName = Tok.substr(RegisterPrefix.size());
Chris Lattnerec6f0962010-11-02 18:10:06 +0000832 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(RegName))
Devang Pateld06b01c2012-01-09 21:30:46 +0000833 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000834
Chris Lattner1de88232010-11-01 01:47:07 +0000835 // If there is no register prefix (i.e. "%" in "%eax"), then this may
836 // be some random non-register token, just ignore it.
Devang Patel63faf822012-01-07 01:33:34 +0000837 return;
Chris Lattner02bcbc92010-11-01 01:37:30 +0000838}
839
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000840static std::string getEnumNameForToken(StringRef Str) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000841 std::string Res;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000842
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000843 for (StringRef::iterator it = Str.begin(), ie = Str.end(); it != ie; ++it) {
844 switch (*it) {
845 case '*': Res += "_STAR_"; break;
846 case '%': Res += "_PCT_"; break;
847 case ':': Res += "_COLON_"; break;
Bill Wendlingbd9c77b2010-11-18 23:36:54 +0000848 case '!': Res += "_EXCLAIM_"; break;
Bill Wendling0ef755d2011-01-22 09:44:32 +0000849 case '.': Res += "_DOT_"; break;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000850 default:
Chris Lattner39ee0362010-10-31 19:10:56 +0000851 if (isalnum(*it))
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000852 Res += *it;
Chris Lattner39ee0362010-10-31 19:10:56 +0000853 else
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000854 Res += "_" + utostr((unsigned) *it) + "_";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000855 }
856 }
857
858 return Res;
859}
860
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000861ClassInfo *AsmMatcherInfo::getTokenClass(StringRef Token) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000862 ClassInfo *&Entry = TokenClasses[Token];
Jim Grosbacha7c78222010-10-29 22:13:48 +0000863
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000864 if (!Entry) {
865 Entry = new ClassInfo();
866 Entry->Kind = ClassInfo::Token;
Daniel Dunbar6745d422009-08-09 05:18:30 +0000867 Entry->ClassName = "Token";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000868 Entry->Name = "MCK_" + getEnumNameForToken(Token);
869 Entry->ValueName = Token;
870 Entry->PredicateMethod = "<invalid>";
871 Entry->RenderMethod = "<invalid>";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000872 Entry->ParserMethod = "";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000873 Classes.push_back(Entry);
874 }
875
876 return Entry;
877}
878
879ClassInfo *
Bob Wilsona49c7df2011-01-26 19:44:55 +0000880AsmMatcherInfo::getOperandClass(const CGIOperandList::OperandInfo &OI,
881 int SubOpIdx) {
882 Record *Rec = OI.Rec;
883 if (SubOpIdx != -1)
David Greene05bce0b2011-07-29 22:43:06 +0000884 Rec = dynamic_cast<DefInit*>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
Jim Grosbach48c1f842011-10-28 22:32:53 +0000885 return getOperandClass(Rec, SubOpIdx);
886}
Bob Wilsona49c7df2011-01-26 19:44:55 +0000887
Jim Grosbach48c1f842011-10-28 22:32:53 +0000888ClassInfo *
889AsmMatcherInfo::getOperandClass(Record *Rec, int SubOpIdx) {
Owen Andersonbea6f612011-06-27 21:06:21 +0000890 if (Rec->isSubClassOf("RegisterOperand")) {
891 // RegisterOperand may have an associated ParserMatchClass. If it does,
892 // use it, else just fall back to the underlying register class.
893 const RecordVal *R = Rec->getValue("ParserMatchClass");
894 if (R == 0 || R->getValue() == 0)
895 throw "Record `" + Rec->getName() +
896 "' does not have a ParserMatchClass!\n";
897
David Greene05bce0b2011-07-29 22:43:06 +0000898 if (DefInit *DI= dynamic_cast<DefInit*>(R->getValue())) {
Owen Andersonbea6f612011-06-27 21:06:21 +0000899 Record *MatchClass = DI->getDef();
900 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
901 return CI;
902 }
903
904 // No custom match class. Just use the register class.
905 Record *ClassRec = Rec->getValueAsDef("RegClass");
906 if (!ClassRec)
907 throw TGError(Rec->getLoc(), "RegisterOperand `" + Rec->getName() +
908 "' has no associated register class!\n");
909 if (ClassInfo *CI = RegisterClassClasses[ClassRec])
910 return CI;
911 throw TGError(Rec->getLoc(), "register class has no class info!");
912 }
913
914
Bob Wilsona49c7df2011-01-26 19:44:55 +0000915 if (Rec->isSubClassOf("RegisterClass")) {
916 if (ClassInfo *CI = RegisterClassClasses[Rec])
Chris Lattnerec6f0962010-11-02 18:10:06 +0000917 return CI;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000918 throw TGError(Rec->getLoc(), "register class has no class info!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000919 }
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000920
Bob Wilsona49c7df2011-01-26 19:44:55 +0000921 assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
922 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
Chris Lattnerec6f0962010-11-02 18:10:06 +0000923 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
924 return CI;
Daniel Dunbar338825c2009-08-10 18:41:10 +0000925
Bob Wilsona49c7df2011-01-26 19:44:55 +0000926 throw TGError(Rec->getLoc(), "operand has no match class!");
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000927}
928
Chris Lattner1de88232010-11-01 01:47:07 +0000929void AsmMatcherInfo::
930BuildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +0000931 const std::vector<CodeGenRegister*> &Registers =
932 Target.getRegBank().getRegisters();
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +0000933 ArrayRef<CodeGenRegisterClass*> RegClassList =
934 Target.getRegBank().getRegClasses();
Daniel Dunbar338825c2009-08-10 18:41:10 +0000935
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000936 // The register sets used for matching.
937 std::set< std::set<Record*> > RegisterSets;
938
Jim Grosbacha7c78222010-10-29 22:13:48 +0000939 // Gather the defined sets.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +0000940 for (ArrayRef<CodeGenRegisterClass*>::const_iterator it =
Chris Lattnerec6f0962010-11-02 18:10:06 +0000941 RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it)
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +0000942 RegisterSets.insert(std::set<Record*>(
943 (*it)->getOrder().begin(), (*it)->getOrder().end()));
Daniel Dunbar1095f2a2009-08-11 23:23:44 +0000944
945 // Add any required singleton sets.
Chris Lattner1de88232010-11-01 01:47:07 +0000946 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
947 ie = SingletonRegisters.end(); it != ie; ++it) {
948 Record *Rec = *it;
949 RegisterSets.insert(std::set<Record*>(&Rec, &Rec + 1));
950 }
Jim Grosbacha7c78222010-10-29 22:13:48 +0000951
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000952 // Introduce derived sets where necessary (when a register does not determine
953 // a unique register set class), and build the mapping of registers to the set
954 // they should classify to.
955 std::map<Record*, std::set<Record*> > RegisterMap;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +0000956 for (std::vector<CodeGenRegister*>::const_iterator it = Registers.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000957 ie = Registers.end(); it != ie; ++it) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +0000958 const CodeGenRegister &CGR = **it;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000959 // Compute the intersection of all sets containing this register.
960 std::set<Record*> ContainingSet;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000961
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000962 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
963 ie = RegisterSets.end(); it != ie; ++it) {
964 if (!it->count(CGR.TheDef))
965 continue;
966
967 if (ContainingSet.empty()) {
968 ContainingSet = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +0000969 continue;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000970 }
Bob Wilson828295b2011-01-26 21:26:19 +0000971
Chris Lattnerec6f0962010-11-02 18:10:06 +0000972 std::set<Record*> Tmp;
973 std::swap(Tmp, ContainingSet);
974 std::insert_iterator< std::set<Record*> > II(ContainingSet,
975 ContainingSet.begin());
976 std::set_intersection(Tmp.begin(), Tmp.end(), it->begin(), it->end(), II);
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000977 }
978
979 if (!ContainingSet.empty()) {
980 RegisterSets.insert(ContainingSet);
981 RegisterMap.insert(std::make_pair(CGR.TheDef, ContainingSet));
982 }
983 }
984
985 // Construct the register classes.
986 std::map<std::set<Record*>, ClassInfo*> RegisterSetClasses;
987 unsigned Index = 0;
988 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
989 ie = RegisterSets.end(); it != ie; ++it, ++Index) {
990 ClassInfo *CI = new ClassInfo();
991 CI->Kind = ClassInfo::RegisterClass0 + Index;
992 CI->ClassName = "Reg" + utostr(Index);
993 CI->Name = "MCK_Reg" + utostr(Index);
994 CI->ValueName = "";
995 CI->PredicateMethod = ""; // unused
996 CI->RenderMethod = "addRegOperands";
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000997 CI->Registers = *it;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000998 Classes.push_back(CI);
999 RegisterSetClasses.insert(std::make_pair(*it, CI));
1000 }
1001
1002 // Find the superclasses; we could compute only the subgroup lattice edges,
1003 // but there isn't really a point.
1004 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1005 ie = RegisterSets.end(); it != ie; ++it) {
1006 ClassInfo *CI = RegisterSetClasses[*it];
1007 for (std::set< std::set<Record*> >::iterator it2 = RegisterSets.begin(),
1008 ie2 = RegisterSets.end(); it2 != ie2; ++it2)
Jim Grosbacha7c78222010-10-29 22:13:48 +00001009 if (*it != *it2 &&
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001010 std::includes(it2->begin(), it2->end(), it->begin(), it->end()))
1011 CI->SuperClasses.push_back(RegisterSetClasses[*it2]);
1012 }
1013
1014 // Name the register classes which correspond to a user defined RegisterClass.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001015 for (ArrayRef<CodeGenRegisterClass*>::const_iterator
Chris Lattnerec6f0962010-11-02 18:10:06 +00001016 it = RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001017 const CodeGenRegisterClass &RC = **it;
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001018 // Def will be NULL for non-user defined register classes.
1019 Record *Def = RC.getDef();
1020 if (!Def)
1021 continue;
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001022 ClassInfo *CI = RegisterSetClasses[std::set<Record*>(RC.getOrder().begin(),
1023 RC.getOrder().end())];
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001024 if (CI->ValueName.empty()) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001025 CI->ClassName = RC.getName();
1026 CI->Name = "MCK_" + RC.getName();
1027 CI->ValueName = RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001028 } else
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001029 CI->ValueName = CI->ValueName + "," + RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001030
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001031 RegisterClassClasses.insert(std::make_pair(Def, CI));
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001032 }
1033
1034 // Populate the map for individual registers.
1035 for (std::map<Record*, std::set<Record*> >::iterator it = RegisterMap.begin(),
1036 ie = RegisterMap.end(); it != ie; ++it)
Chris Lattnerec6f0962010-11-02 18:10:06 +00001037 RegisterClasses[it->first] = RegisterSetClasses[it->second];
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001038
1039 // Name the register classes which correspond to singleton registers.
Chris Lattner1de88232010-11-01 01:47:07 +00001040 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1041 ie = SingletonRegisters.end(); it != ie; ++it) {
1042 Record *Rec = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +00001043 ClassInfo *CI = RegisterClasses[Rec];
Chris Lattner1de88232010-11-01 01:47:07 +00001044 assert(CI && "Missing singleton register class info!");
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001045
Chris Lattner1de88232010-11-01 01:47:07 +00001046 if (CI->ValueName.empty()) {
1047 CI->ClassName = Rec->getName();
1048 CI->Name = "MCK_" + Rec->getName();
1049 CI->ValueName = Rec->getName();
1050 } else
1051 CI->ValueName = CI->ValueName + "," + Rec->getName();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001052 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001053}
1054
Chris Lattner02bcbc92010-11-01 01:37:30 +00001055void AsmMatcherInfo::BuildOperandClasses() {
Chris Lattnere66b7eb2010-11-01 23:57:23 +00001056 std::vector<Record*> AsmOperands =
1057 Records.getAllDerivedDefinitions("AsmOperandClass");
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001058
1059 // Pre-populate AsmOperandClasses map.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001060 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001061 ie = AsmOperands.end(); it != ie; ++it)
1062 AsmOperandClasses[*it] = new ClassInfo();
1063
Daniel Dunbar338825c2009-08-10 18:41:10 +00001064 unsigned Index = 0;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001065 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbar338825c2009-08-10 18:41:10 +00001066 ie = AsmOperands.end(); it != ie; ++it, ++Index) {
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001067 ClassInfo *CI = AsmOperandClasses[*it];
Daniel Dunbar338825c2009-08-10 18:41:10 +00001068 CI->Kind = ClassInfo::UserClass0 + Index;
1069
David Greene05bce0b2011-07-29 22:43:06 +00001070 ListInit *Supers = (*it)->getValueAsListInit("SuperClasses");
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001071 for (unsigned i = 0, e = Supers->getSize(); i != e; ++i) {
David Greene05bce0b2011-07-29 22:43:06 +00001072 DefInit *DI = dynamic_cast<DefInit*>(Supers->getElement(i));
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001073 if (!DI) {
1074 PrintError((*it)->getLoc(), "Invalid super class reference!");
1075 continue;
1076 }
1077
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001078 ClassInfo *SC = AsmOperandClasses[DI->getDef()];
1079 if (!SC)
Daniel Dunbar338825c2009-08-10 18:41:10 +00001080 PrintError((*it)->getLoc(), "Invalid super class reference!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001081 else
1082 CI->SuperClasses.push_back(SC);
Daniel Dunbar338825c2009-08-10 18:41:10 +00001083 }
1084 CI->ClassName = (*it)->getValueAsString("Name");
1085 CI->Name = "MCK_" + CI->ClassName;
1086 CI->ValueName = (*it)->getName();
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001087
1088 // Get or construct the predicate method name.
David Greene05bce0b2011-07-29 22:43:06 +00001089 Init *PMName = (*it)->getValueInit("PredicateMethod");
1090 if (StringInit *SI = dynamic_cast<StringInit*>(PMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001091 CI->PredicateMethod = SI->getValue();
1092 } else {
David Greene05bce0b2011-07-29 22:43:06 +00001093 assert(dynamic_cast<UnsetInit*>(PMName) &&
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001094 "Unexpected PredicateMethod field!");
1095 CI->PredicateMethod = "is" + CI->ClassName;
1096 }
1097
1098 // Get or construct the render method name.
David Greene05bce0b2011-07-29 22:43:06 +00001099 Init *RMName = (*it)->getValueInit("RenderMethod");
1100 if (StringInit *SI = dynamic_cast<StringInit*>(RMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001101 CI->RenderMethod = SI->getValue();
1102 } else {
David Greene05bce0b2011-07-29 22:43:06 +00001103 assert(dynamic_cast<UnsetInit*>(RMName) &&
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001104 "Unexpected RenderMethod field!");
1105 CI->RenderMethod = "add" + CI->ClassName + "Operands";
1106 }
1107
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001108 // Get the parse method name or leave it as empty.
David Greene05bce0b2011-07-29 22:43:06 +00001109 Init *PRMName = (*it)->getValueInit("ParserMethod");
1110 if (StringInit *SI = dynamic_cast<StringInit*>(PRMName))
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001111 CI->ParserMethod = SI->getValue();
1112
Daniel Dunbar338825c2009-08-10 18:41:10 +00001113 AsmOperandClasses[*it] = CI;
1114 Classes.push_back(CI);
1115 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001116}
1117
Bob Wilson828295b2011-01-26 21:26:19 +00001118AsmMatcherInfo::AsmMatcherInfo(Record *asmParser,
1119 CodeGenTarget &target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +00001120 RecordKeeper &records)
Devang Patel63faf822012-01-07 01:33:34 +00001121 : Records(records), AsmParser(asmParser), Target(target) {
Daniel Dunbar59fc42d2009-08-11 20:59:47 +00001122}
1123
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001124/// BuildOperandMatchInfo - Build the necessary information to handle user
1125/// defined operand parsing methods.
1126void AsmMatcherInfo::BuildOperandMatchInfo() {
1127
1128 /// Map containing a mask with all operands indicies that can be found for
1129 /// that class inside a instruction.
1130 std::map<ClassInfo*, unsigned> OpClassMask;
1131
1132 for (std::vector<MatchableInfo*>::const_iterator it =
1133 Matchables.begin(), ie = Matchables.end();
1134 it != ie; ++it) {
1135 MatchableInfo &II = **it;
1136 OpClassMask.clear();
1137
1138 // Keep track of all operands of this instructions which belong to the
1139 // same class.
1140 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
1141 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
1142 if (Op.Class->ParserMethod.empty())
1143 continue;
1144 unsigned &OperandMask = OpClassMask[Op.Class];
1145 OperandMask |= (1 << i);
1146 }
1147
1148 // Generate operand match info for each mnemonic/operand class pair.
1149 for (std::map<ClassInfo*, unsigned>::iterator iit = OpClassMask.begin(),
1150 iie = OpClassMask.end(); iit != iie; ++iit) {
1151 unsigned OpMask = iit->second;
1152 ClassInfo *CI = iit->first;
1153 OperandMatchInfo.push_back(OperandMatchEntry::Create(&II, CI, OpMask));
1154 }
1155 }
1156}
1157
Chris Lattner02bcbc92010-11-01 01:37:30 +00001158void AsmMatcherInfo::BuildInfo() {
Chris Lattner0aed1e72010-10-30 20:07:57 +00001159 // Build information about all of the AssemblerPredicates.
1160 std::vector<Record*> AllPredicates =
1161 Records.getAllDerivedDefinitions("Predicate");
1162 for (unsigned i = 0, e = AllPredicates.size(); i != e; ++i) {
1163 Record *Pred = AllPredicates[i];
1164 // Ignore predicates that are not intended for the assembler.
1165 if (!Pred->getValueAsBit("AssemblerMatcherPredicate"))
1166 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00001167
Chris Lattner4164f6b2010-11-01 04:44:29 +00001168 if (Pred->getName().empty())
1169 throw TGError(Pred->getLoc(), "Predicate has no name!");
Bob Wilson828295b2011-01-26 21:26:19 +00001170
Chris Lattner0aed1e72010-10-30 20:07:57 +00001171 unsigned FeatureNo = SubtargetFeatures.size();
1172 SubtargetFeatures[Pred] = new SubtargetFeatureInfo(Pred, FeatureNo);
1173 assert(FeatureNo < 32 && "Too many subtarget features!");
1174 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001175
Chris Lattner39ee0362010-10-31 19:10:56 +00001176 // Parse the instructions; we need to do this first so that we can gather the
1177 // singleton register classes.
Chris Lattner1de88232010-11-01 01:47:07 +00001178 SmallPtrSet<Record*, 16> SingletonRegisters;
Devang Patel0dbcada2012-01-09 19:13:28 +00001179 unsigned VariantCount = Target.getAsmParserVariantCount();
1180 for (unsigned VC = 0; VC != VariantCount; ++VC) {
1181 Record *AsmVariant = Target.getAsmParserVariant(VC);
1182 std::string CommentDelimiter = AsmVariant->getValueAsString("CommentDelimiter");
1183 std::string RegisterPrefix = AsmVariant->getValueAsString("RegisterPrefix");
1184 int AsmVariantNo = AsmVariant->getValueAsInt("Variant");
1185
1186 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
1187 E = Target.inst_end(); I != E; ++I) {
1188 const CodeGenInstruction &CGI = **I;
1189
1190 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1191 // filter the set of instructions we consider.
1192 if (!StringRef(CGI.TheDef->getName()).startswith(MatchPrefix))
1193 continue;
1194
1195 // Ignore "codegen only" instructions.
1196 if (CGI.TheDef->getValueAsBit("isCodeGenOnly"))
1197 continue;
1198
1199 // Validate the operand list to ensure we can handle this instruction.
1200 for (unsigned i = 0, e = CGI.Operands.size(); i != e; ++i) {
1201 const CGIOperandList::OperandInfo &OI = CGI.Operands[i];
1202
1203 // Validate tied operands.
1204 if (OI.getTiedRegister() != -1) {
1205 // If we have a tied operand that consists of multiple MCOperands,
1206 // reject it. We reject aliases and ignore instructions for now.
1207 if (OI.MINumOperands != 1) {
1208 // FIXME: Should reject these. The ARM backend hits this with $lane
1209 // in a bunch of instructions. It is unclear what the right answer is.
1210 DEBUG({
1211 errs() << "warning: '" << CGI.TheDef->getName() << "': "
1212 << "ignoring instruction with multi-operand tied operand '"
1213 << OI.Name << "'\n";
1214 });
1215 continue;
1216 }
1217 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001218 }
Devang Patel0dbcada2012-01-09 19:13:28 +00001219
1220 OwningPtr<MatchableInfo> II(new MatchableInfo(CGI));
1221
1222 II->Initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
1223
1224 // Ignore instructions which shouldn't be matched and diagnose invalid
1225 // instruction definitions with an error.
1226 if (!II->Validate(CommentDelimiter, true))
1227 continue;
1228
1229 // Ignore "Int_*" and "*_Int" instructions, which are internal aliases.
1230 //
1231 // FIXME: This is a total hack.
1232 if (StringRef(II->TheDef->getName()).startswith("Int_") ||
1233 StringRef(II->TheDef->getName()).endswith("_Int"))
1234 continue;
1235
1236 Matchables.push_back(II.take());
Chris Lattner1d13bda2010-11-04 00:43:46 +00001237 }
Devang Patel0dbcada2012-01-09 19:13:28 +00001238
1239 // Parse all of the InstAlias definitions and stick them in the list of
1240 // matchables.
1241 std::vector<Record*> AllInstAliases =
1242 Records.getAllDerivedDefinitions("InstAlias");
1243 for (unsigned i = 0, e = AllInstAliases.size(); i != e; ++i) {
1244 CodeGenInstAlias *Alias = new CodeGenInstAlias(AllInstAliases[i], Target);
1245
1246 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1247 // filter the set of instruction aliases we consider, based on the target
1248 // instruction.
1249 if (!StringRef(Alias->ResultInst->TheDef->getName()).startswith(
1250 MatchPrefix))
1251 continue;
1252
1253 OwningPtr<MatchableInfo> II(new MatchableInfo(Alias));
1254
1255 II->Initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
1256
1257 // Validate the alias definitions.
1258 II->Validate(CommentDelimiter, false);
1259
1260 Matchables.push_back(II.take());
1261 }
Chris Lattnerc76e80d2010-11-01 04:05:41 +00001262 }
Chris Lattnerc240bb02010-11-01 04:03:32 +00001263
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001264 // Build info for the register classes.
Chris Lattner1de88232010-11-01 01:47:07 +00001265 BuildRegisterClasses(SingletonRegisters);
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001266
1267 // Build info for the user defined assembly operand classes.
Chris Lattner02bcbc92010-11-01 01:37:30 +00001268 BuildOperandClasses();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001269
Chris Lattner0bb780c2010-11-04 00:57:06 +00001270 // Build the information about matchables, now that we have fully formed
1271 // classes.
Chris Lattner22bc5c42010-11-01 05:06:45 +00001272 for (std::vector<MatchableInfo*>::iterator it = Matchables.begin(),
1273 ie = Matchables.end(); it != ie; ++it) {
1274 MatchableInfo *II = *it;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001275
Chris Lattnere206fcf2010-09-06 21:01:37 +00001276 // Parse the tokens after the mnemonic.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001277 // Note: BuildInstructionOperandReference may insert new AsmOperands, so
1278 // don't precompute the loop bound.
1279 for (unsigned i = 0; i != II->AsmOperands.size(); ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +00001280 MatchableInfo::AsmOperand &Op = II->AsmOperands[i];
Chris Lattnerd19ec052010-11-02 17:30:52 +00001281 StringRef Token = Op.Token;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001282
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001283 // Check for singleton registers.
Devang Patel63faf822012-01-07 01:33:34 +00001284 if (Record *RegRecord = II->AsmOperands[i].SingletonReg) {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001285 Op.Class = RegisterClasses[RegRecord];
Chris Lattner02bcbc92010-11-01 01:37:30 +00001286 assert(Op.Class && Op.Class->Registers.size() == 1 &&
1287 "Unexpected class for singleton register");
Chris Lattner02bcbc92010-11-01 01:37:30 +00001288 continue;
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001289 }
1290
Daniel Dunbar20927f22009-08-07 08:26:05 +00001291 // Check for simple tokens.
1292 if (Token[0] != '$') {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001293 Op.Class = getTokenClass(Token);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001294 continue;
1295 }
1296
Chris Lattner7ad31472010-11-06 22:06:03 +00001297 if (Token.size() > 1 && isdigit(Token[1])) {
1298 Op.Class = getTokenClass(Token);
1299 continue;
1300 }
Bob Wilson828295b2011-01-26 21:26:19 +00001301
Chris Lattnerc07bd402010-11-04 02:11:18 +00001302 // Otherwise this is an operand reference.
Chris Lattner5f4280c2010-11-04 01:58:23 +00001303 StringRef OperandName;
1304 if (Token[1] == '{')
1305 OperandName = Token.substr(2, Token.size() - 3);
1306 else
1307 OperandName = Token.substr(1);
Bob Wilson828295b2011-01-26 21:26:19 +00001308
Chris Lattnerc07bd402010-11-04 02:11:18 +00001309 if (II->DefRec.is<const CodeGenInstruction*>())
Bob Wilsona49c7df2011-01-26 19:44:55 +00001310 BuildInstructionOperandReference(II, OperandName, i);
Chris Lattnerc07bd402010-11-04 02:11:18 +00001311 else
Chris Lattner225549f2010-11-06 06:39:47 +00001312 BuildAliasOperandReference(II, OperandName, Op);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001313 }
Bob Wilson828295b2011-01-26 21:26:19 +00001314
Chris Lattner41409852010-11-06 07:31:43 +00001315 if (II->DefRec.is<const CodeGenInstruction*>())
1316 II->BuildInstructionResultOperands();
1317 else
1318 II->BuildAliasResultOperands();
Daniel Dunbar20927f22009-08-07 08:26:05 +00001319 }
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001320
Jim Grosbacha66512e2011-12-06 23:43:54 +00001321 // Process token alias definitions and set up the associated superclass
1322 // information.
1323 std::vector<Record*> AllTokenAliases =
1324 Records.getAllDerivedDefinitions("TokenAlias");
1325 for (unsigned i = 0, e = AllTokenAliases.size(); i != e; ++i) {
1326 Record *Rec = AllTokenAliases[i];
1327 ClassInfo *FromClass = getTokenClass(Rec->getValueAsString("FromToken"));
1328 ClassInfo *ToClass = getTokenClass(Rec->getValueAsString("ToToken"));
1329 FromClass->SuperClasses.push_back(ToClass);
1330 }
1331
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001332 // Reorder classes so that classes precede super classes.
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001333 std::sort(Classes.begin(), Classes.end(), less_ptr<ClassInfo>());
Daniel Dunbar20927f22009-08-07 08:26:05 +00001334}
1335
Chris Lattner0bb780c2010-11-04 00:57:06 +00001336/// BuildInstructionOperandReference - The specified operand is a reference to a
1337/// named operand such as $src. Resolve the Class and OperandInfo pointers.
1338void AsmMatcherInfo::
1339BuildInstructionOperandReference(MatchableInfo *II,
Chris Lattner5f4280c2010-11-04 01:58:23 +00001340 StringRef OperandName,
Bob Wilsona49c7df2011-01-26 19:44:55 +00001341 unsigned AsmOpIdx) {
Chris Lattnerc07bd402010-11-04 02:11:18 +00001342 const CodeGenInstruction &CGI = *II->DefRec.get<const CodeGenInstruction*>();
1343 const CGIOperandList &Operands = CGI.Operands;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001344 MatchableInfo::AsmOperand *Op = &II->AsmOperands[AsmOpIdx];
Bob Wilson828295b2011-01-26 21:26:19 +00001345
Chris Lattner662e5a32010-11-06 07:14:44 +00001346 // Map this token to an operand.
Chris Lattner0bb780c2010-11-04 00:57:06 +00001347 unsigned Idx;
1348 if (!Operands.hasOperandNamed(OperandName, Idx))
1349 throw TGError(II->TheDef->getLoc(), "error: unable to find operand: '" +
1350 OperandName.str() + "'");
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001351
Bob Wilsona49c7df2011-01-26 19:44:55 +00001352 // If the instruction operand has multiple suboperands, but the parser
1353 // match class for the asm operand is still the default "ImmAsmOperand",
1354 // then handle each suboperand separately.
1355 if (Op->SubOpIdx == -1 && Operands[Idx].MINumOperands > 1) {
1356 Record *Rec = Operands[Idx].Rec;
1357 assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
1358 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
1359 if (MatchClass && MatchClass->getValueAsString("Name") == "Imm") {
1360 // Insert remaining suboperands after AsmOpIdx in II->AsmOperands.
1361 StringRef Token = Op->Token; // save this in case Op gets moved
1362 for (unsigned SI = 1, SE = Operands[Idx].MINumOperands; SI != SE; ++SI) {
1363 MatchableInfo::AsmOperand NewAsmOp(Token);
1364 NewAsmOp.SubOpIdx = SI;
1365 II->AsmOperands.insert(II->AsmOperands.begin()+AsmOpIdx+SI, NewAsmOp);
1366 }
1367 // Replace Op with first suboperand.
1368 Op = &II->AsmOperands[AsmOpIdx]; // update the pointer in case it moved
1369 Op->SubOpIdx = 0;
1370 }
1371 }
1372
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001373 // Set up the operand class.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001374 Op->Class = getOperandClass(Operands[Idx], Op->SubOpIdx);
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001375
1376 // If the named operand is tied, canonicalize it to the untied operand.
1377 // For example, something like:
1378 // (outs GPR:$dst), (ins GPR:$src)
1379 // with an asmstring of
1380 // "inc $src"
1381 // we want to canonicalize to:
1382 // "inc $dst"
1383 // so that we know how to provide the $dst operand when filling in the result.
1384 int OITied = Operands[Idx].getTiedRegister();
Chris Lattner0bb780c2010-11-04 00:57:06 +00001385 if (OITied != -1) {
1386 // The tied operand index is an MIOperand index, find the operand that
1387 // contains it.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001388 std::pair<unsigned, unsigned> Idx = Operands.getSubOperandNumber(OITied);
1389 OperandName = Operands[Idx.first].Name;
1390 Op->SubOpIdx = Idx.second;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001391 }
Bob Wilson828295b2011-01-26 21:26:19 +00001392
Bob Wilsona49c7df2011-01-26 19:44:55 +00001393 Op->SrcOpName = OperandName;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001394}
1395
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001396/// BuildAliasOperandReference - When parsing an operand reference out of the
1397/// matching string (e.g. "movsx $src, $dst"), determine what the class of the
1398/// operand reference is by looking it up in the result pattern definition.
Chris Lattnerc07bd402010-11-04 02:11:18 +00001399void AsmMatcherInfo::BuildAliasOperandReference(MatchableInfo *II,
1400 StringRef OperandName,
1401 MatchableInfo::AsmOperand &Op) {
1402 const CodeGenInstAlias &CGA = *II->DefRec.get<const CodeGenInstAlias*>();
Bob Wilson828295b2011-01-26 21:26:19 +00001403
Chris Lattnerc07bd402010-11-04 02:11:18 +00001404 // Set up the operand class.
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001405 for (unsigned i = 0, e = CGA.ResultOperands.size(); i != e; ++i)
Chris Lattner98c870f2010-11-06 19:25:43 +00001406 if (CGA.ResultOperands[i].isRecord() &&
1407 CGA.ResultOperands[i].getName() == OperandName) {
Chris Lattner662e5a32010-11-06 07:14:44 +00001408 // It's safe to go with the first one we find, because CodeGenInstAlias
1409 // validates that all operands with the same name have the same record.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001410 Op.SubOpIdx = CGA.ResultInstOperandIndex[i].second;
Jim Grosbach48c1f842011-10-28 22:32:53 +00001411 // Use the match class from the Alias definition, not the
1412 // destination instruction, as we may have an immediate that's
1413 // being munged by the match class.
1414 Op.Class = getOperandClass(CGA.ResultOperands[i].getRecord(),
Bob Wilsona49c7df2011-01-26 19:44:55 +00001415 Op.SubOpIdx);
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001416 Op.SrcOpName = OperandName;
1417 return;
Chris Lattnerc07bd402010-11-04 02:11:18 +00001418 }
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001419
1420 throw TGError(II->TheDef->getLoc(), "error: unable to find operand: '" +
1421 OperandName.str() + "'");
Chris Lattnerc07bd402010-11-04 02:11:18 +00001422}
1423
Chris Lattner41409852010-11-06 07:31:43 +00001424void MatchableInfo::BuildInstructionResultOperands() {
Chris Lattner662e5a32010-11-06 07:14:44 +00001425 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001426
Chris Lattner662e5a32010-11-06 07:14:44 +00001427 // Loop over all operands of the result instruction, determining how to
1428 // populate them.
1429 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
1430 const CGIOperandList::OperandInfo &OpInfo = ResultInst->Operands[i];
Chris Lattner567820c2010-11-04 01:42:59 +00001431
1432 // If this is a tied operand, just copy from the previously handled operand.
1433 int TiedOp = OpInfo.getTiedRegister();
1434 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001435 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner567820c2010-11-04 01:42:59 +00001436 continue;
1437 }
Bob Wilson828295b2011-01-26 21:26:19 +00001438
Bob Wilsona49c7df2011-01-26 19:44:55 +00001439 // Find out what operand from the asmparser this MCInst operand comes from.
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001440 int SrcOperand = FindAsmOperandNamed(OpInfo.Name);
Bob Wilsona49c7df2011-01-26 19:44:55 +00001441 if (OpInfo.Name.empty() || SrcOperand == -1)
1442 throw TGError(TheDef->getLoc(), "Instruction '" +
1443 TheDef->getName() + "' has operand '" + OpInfo.Name +
1444 "' that doesn't appear in asm string!");
Chris Lattner567820c2010-11-04 01:42:59 +00001445
Bob Wilsona49c7df2011-01-26 19:44:55 +00001446 // Check if the one AsmOperand populates the entire operand.
1447 unsigned NumOperands = OpInfo.MINumOperands;
1448 if (AsmOperands[SrcOperand].SubOpIdx == -1) {
1449 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand, NumOperands));
Chris Lattner1d13bda2010-11-04 00:43:46 +00001450 continue;
1451 }
Bob Wilsona49c7df2011-01-26 19:44:55 +00001452
1453 // Add a separate ResOperand for each suboperand.
1454 for (unsigned AI = 0; AI < NumOperands; ++AI) {
1455 assert(AsmOperands[SrcOperand+AI].SubOpIdx == (int)AI &&
1456 AsmOperands[SrcOperand+AI].SrcOpName == OpInfo.Name &&
1457 "unexpected AsmOperands for suboperands");
1458 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand + AI, 1));
1459 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001460 }
1461}
1462
Chris Lattner41409852010-11-06 07:31:43 +00001463void MatchableInfo::BuildAliasResultOperands() {
1464 const CodeGenInstAlias &CGA = *DefRec.get<const CodeGenInstAlias*>();
1465 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001466
Chris Lattner41409852010-11-06 07:31:43 +00001467 // Loop over all operands of the result instruction, determining how to
1468 // populate them.
1469 unsigned AliasOpNo = 0;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001470 unsigned LastOpNo = CGA.ResultInstOperandIndex.size();
Chris Lattner41409852010-11-06 07:31:43 +00001471 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001472 const CGIOperandList::OperandInfo *OpInfo = &ResultInst->Operands[i];
Bob Wilson828295b2011-01-26 21:26:19 +00001473
Chris Lattner41409852010-11-06 07:31:43 +00001474 // If this is a tied operand, just copy from the previously handled operand.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001475 int TiedOp = OpInfo->getTiedRegister();
Chris Lattner41409852010-11-06 07:31:43 +00001476 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001477 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner90fd7972010-11-06 19:57:21 +00001478 continue;
1479 }
1480
Bob Wilsona49c7df2011-01-26 19:44:55 +00001481 // Handle all the suboperands for this operand.
1482 const std::string &OpName = OpInfo->Name;
1483 for ( ; AliasOpNo < LastOpNo &&
1484 CGA.ResultInstOperandIndex[AliasOpNo].first == i; ++AliasOpNo) {
1485 int SubIdx = CGA.ResultInstOperandIndex[AliasOpNo].second;
1486
1487 // Find out what operand from the asmparser that this MCInst operand
1488 // comes from.
1489 switch (CGA.ResultOperands[AliasOpNo].Kind) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001490 case CodeGenInstAlias::ResultOperand::K_Record: {
1491 StringRef Name = CGA.ResultOperands[AliasOpNo].getName();
1492 int SrcOperand = FindAsmOperand(Name, SubIdx);
1493 if (SrcOperand == -1)
1494 throw TGError(TheDef->getLoc(), "Instruction '" +
1495 TheDef->getName() + "' has operand '" + OpName +
1496 "' that doesn't appear in asm string!");
1497 unsigned NumOperands = (SubIdx == -1 ? OpInfo->MINumOperands : 1);
1498 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand,
1499 NumOperands));
1500 break;
1501 }
1502 case CodeGenInstAlias::ResultOperand::K_Imm: {
1503 int64_t ImmVal = CGA.ResultOperands[AliasOpNo].getImm();
1504 ResOperands.push_back(ResOperand::getImmOp(ImmVal));
1505 break;
1506 }
1507 case CodeGenInstAlias::ResultOperand::K_Reg: {
1508 Record *Reg = CGA.ResultOperands[AliasOpNo].getRegister();
1509 ResOperands.push_back(ResOperand::getRegOp(Reg));
1510 break;
1511 }
1512 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001513 }
Chris Lattner41409852010-11-06 07:31:43 +00001514 }
1515}
Chris Lattner1d13bda2010-11-04 00:43:46 +00001516
Daniel Dunbar5c228a92011-02-04 23:17:40 +00001517static void EmitConvertToMCInst(CodeGenTarget &Target, StringRef ClassName,
Chris Lattner22bc5c42010-11-01 05:06:45 +00001518 std::vector<MatchableInfo*> &Infos,
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00001519 raw_ostream &OS) {
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001520 // Write the convert function to a separate stream, so we can drop it after
1521 // the enum.
1522 std::string ConvertFnBody;
1523 raw_string_ostream CvtOS(ConvertFnBody);
1524
Daniel Dunbar20927f22009-08-07 08:26:05 +00001525 // Function we have already generated.
1526 std::set<std::string> GeneratedFns;
1527
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001528 // Start the unified conversion function.
Daniel Dunbar5c228a92011-02-04 23:17:40 +00001529 CvtOS << "bool " << Target.getName() << ClassName << "::\n";
1530 CvtOS << "ConvertToMCInst(unsigned Kind, MCInst &Inst, "
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001531 << "unsigned Opcode,\n"
Chris Lattner98986712010-01-14 22:21:20 +00001532 << " const SmallVectorImpl<MCParsedAsmOperand*"
1533 << "> &Operands) {\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001534 CvtOS << " Inst.setOpcode(Opcode);\n";
1535 CvtOS << " switch (Kind) {\n";
1536 CvtOS << " default:\n";
1537
1538 // Start the enum, which we will generate inline.
1539
Chris Lattnerd51257a2010-11-02 23:18:43 +00001540 OS << "// Unified function for converting operands to MCInst instances.\n\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001541 OS << "enum ConversionKind {\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001542
Chris Lattner98986712010-01-14 22:21:20 +00001543 // TargetOperandClass - This is the target's operand class, like X86Operand.
1544 std::string TargetOperandClass = Target.getName() + "Operand";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001545
Chris Lattner22bc5c42010-11-01 05:06:45 +00001546 for (std::vector<MatchableInfo*>::const_iterator it = Infos.begin(),
Daniel Dunbar20927f22009-08-07 08:26:05 +00001547 ie = Infos.end(); it != ie; ++it) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00001548 MatchableInfo &II = **it;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001549
Daniel Dunbarcf120672011-02-04 17:12:15 +00001550 // Check if we have a custom match function.
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001551 std::string AsmMatchConverter =
1552 II.getResultInst()->TheDef->getValueAsString("AsmMatchConverter");
Daniel Dunbarcf120672011-02-04 17:12:15 +00001553 if (!AsmMatchConverter.empty()) {
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001554 std::string Signature = "ConvertCustom_" + AsmMatchConverter;
Daniel Dunbarcf120672011-02-04 17:12:15 +00001555 II.ConversionFnKind = Signature;
1556
1557 // Check if we have already generated this signature.
1558 if (!GeneratedFns.insert(Signature).second)
1559 continue;
1560
1561 // If not, emit it now. Add to the enum list.
1562 OS << " " << Signature << ",\n";
1563
1564 CvtOS << " case " << Signature << ":\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00001565 CvtOS << " return " << AsmMatchConverter
1566 << "(Inst, Opcode, Operands);\n";
Daniel Dunbarcf120672011-02-04 17:12:15 +00001567 continue;
1568 }
1569
Daniel Dunbar20927f22009-08-07 08:26:05 +00001570 // Build the conversion function signature.
1571 std::string Signature = "Convert";
Chris Lattnerdda855d2010-11-02 21:49:44 +00001572 std::string CaseBody;
1573 raw_string_ostream CaseOS(CaseBody);
Bob Wilson828295b2011-01-26 21:26:19 +00001574
Chris Lattnerdda855d2010-11-02 21:49:44 +00001575 // Compute the convert enum and the case body.
Chris Lattner1d13bda2010-11-04 00:43:46 +00001576 for (unsigned i = 0, e = II.ResOperands.size(); i != e; ++i) {
1577 const MatchableInfo::ResOperand &OpInfo = II.ResOperands[i];
Jim Grosbacha7c78222010-10-29 22:13:48 +00001578
Chris Lattner1d13bda2010-11-04 00:43:46 +00001579 // Generate code to populate each result operand.
1580 switch (OpInfo.Kind) {
Chris Lattner1d13bda2010-11-04 00:43:46 +00001581 case MatchableInfo::ResOperand::RenderAsmOperand: {
1582 // This comes from something we parsed.
1583 MatchableInfo::AsmOperand &Op = II.AsmOperands[OpInfo.AsmOperandNum];
Bob Wilson828295b2011-01-26 21:26:19 +00001584
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001585 // Registers are always converted the same, don't duplicate the
1586 // conversion function based on them.
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001587 Signature += "__";
1588 if (Op.Class->isRegisterClass())
1589 Signature += "Reg";
1590 else
1591 Signature += Op.Class->ClassName;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001592 Signature += utostr(OpInfo.MINumOperands);
Chris Lattner1d13bda2010-11-04 00:43:46 +00001593 Signature += "_" + itostr(OpInfo.AsmOperandNum);
Bob Wilson828295b2011-01-26 21:26:19 +00001594
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001595 CaseOS << " ((" << TargetOperandClass << "*)Operands["
Chris Lattner1d13bda2010-11-04 00:43:46 +00001596 << (OpInfo.AsmOperandNum+1) << "])->" << Op.Class->RenderMethod
Bob Wilsona49c7df2011-01-26 19:44:55 +00001597 << "(Inst, " << OpInfo.MINumOperands << ");\n";
Chris Lattner1d13bda2010-11-04 00:43:46 +00001598 break;
Daniel Dunbaraf616812010-02-10 08:15:48 +00001599 }
Bob Wilson828295b2011-01-26 21:26:19 +00001600
Chris Lattner1d13bda2010-11-04 00:43:46 +00001601 case MatchableInfo::ResOperand::TiedOperand: {
1602 // If this operand is tied to a previous one, just copy the MCInst
1603 // operand from the earlier one.We can only tie single MCOperand values.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001604 //assert(OpInfo.MINumOperands == 1 && "Not a singular MCOperand");
Chris Lattner1d13bda2010-11-04 00:43:46 +00001605 unsigned TiedOp = OpInfo.TiedOperandNum;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001606 assert(i > TiedOp && "Tied operand precedes its target!");
Chris Lattner1d13bda2010-11-04 00:43:46 +00001607 CaseOS << " Inst.addOperand(Inst.getOperand(" << TiedOp << "));\n";
1608 Signature += "__Tie" + utostr(TiedOp);
1609 break;
1610 }
Chris Lattner98c870f2010-11-06 19:25:43 +00001611 case MatchableInfo::ResOperand::ImmOperand: {
1612 int64_t Val = OpInfo.ImmVal;
1613 CaseOS << " Inst.addOperand(MCOperand::CreateImm(" << Val << "));\n";
1614 Signature += "__imm" + itostr(Val);
1615 break;
1616 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001617 case MatchableInfo::ResOperand::RegOperand: {
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001618 if (OpInfo.Register == 0) {
1619 CaseOS << " Inst.addOperand(MCOperand::CreateReg(0));\n";
1620 Signature += "__reg0";
1621 } else {
1622 std::string N = getQualifiedName(OpInfo.Register);
1623 CaseOS << " Inst.addOperand(MCOperand::CreateReg(" << N << "));\n";
1624 Signature += "__reg" + OpInfo.Register->getName();
1625 }
Bob Wilson828295b2011-01-26 21:26:19 +00001626 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001627 }
Daniel Dunbar20927f22009-08-07 08:26:05 +00001628 }
Bob Wilson828295b2011-01-26 21:26:19 +00001629
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001630 II.ConversionFnKind = Signature;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001631
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001632 // Check if we have already generated this signature.
Daniel Dunbar20927f22009-08-07 08:26:05 +00001633 if (!GeneratedFns.insert(Signature).second)
1634 continue;
1635
Chris Lattnerdda855d2010-11-02 21:49:44 +00001636 // If not, emit it now. Add to the enum list.
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001637 OS << " " << Signature << ",\n";
1638
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001639 CvtOS << " case " << Signature << ":\n";
Chris Lattnerdda855d2010-11-02 21:49:44 +00001640 CvtOS << CaseOS.str();
Daniel Dunbarb4129152011-02-04 17:12:23 +00001641 CvtOS << " return true;\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +00001642 }
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001643
1644 // Finish the convert function.
1645
1646 CvtOS << " }\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00001647 CvtOS << " return false;\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001648 CvtOS << "}\n\n";
1649
1650 // Finish the enum, and drop the convert function after it.
1651
1652 OS << " NumConversionVariants\n";
1653 OS << "};\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001654
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001655 OS << CvtOS.str();
Daniel Dunbara027d222009-07-31 02:32:59 +00001656}
1657
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001658/// EmitMatchClassEnumeration - Emit the enumeration for match class kinds.
1659static void EmitMatchClassEnumeration(CodeGenTarget &Target,
1660 std::vector<ClassInfo*> &Infos,
1661 raw_ostream &OS) {
1662 OS << "namespace {\n\n";
1663
1664 OS << "/// MatchClassKind - The kinds of classes which participate in\n"
1665 << "/// instruction matching.\n";
1666 OS << "enum MatchClassKind {\n";
1667 OS << " InvalidMatchClass = 0,\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001668 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001669 ie = Infos.end(); it != ie; ++it) {
1670 ClassInfo &CI = **it;
1671 OS << " " << CI.Name << ", // ";
1672 if (CI.Kind == ClassInfo::Token) {
1673 OS << "'" << CI.ValueName << "'\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001674 } else if (CI.isRegisterClass()) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001675 if (!CI.ValueName.empty())
1676 OS << "register class '" << CI.ValueName << "'\n";
1677 else
1678 OS << "derived register class\n";
1679 } else {
1680 OS << "user defined class '" << CI.ValueName << "'\n";
1681 }
1682 }
1683 OS << " NumMatchClassKinds\n";
1684 OS << "};\n\n";
1685
1686 OS << "}\n\n";
1687}
1688
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001689/// EmitValidateOperandClass - Emit the function to validate an operand class.
1690static void EmitValidateOperandClass(AsmMatcherInfo &Info,
1691 raw_ostream &OS) {
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00001692 OS << "static bool validateOperandClass(MCParsedAsmOperand *GOp, "
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001693 << "MatchClassKind Kind) {\n";
1694 OS << " " << Info.Target.getName() << "Operand &Operand = *("
Chris Lattner02bcbc92010-11-01 01:37:30 +00001695 << Info.Target.getName() << "Operand*)GOp;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001696
Kevin Enderby89381832011-07-15 18:30:43 +00001697 // The InvalidMatchClass is not to match any operand.
1698 OS << " if (Kind == InvalidMatchClass)\n";
1699 OS << " return false;\n\n";
1700
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001701 // Check for Token operands first.
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001702 OS << " if (Operand.isToken())\n";
Jim Grosbacha66512e2011-12-06 23:43:54 +00001703 OS << " return isSubclass(matchTokenString(Operand.getToken()), Kind);"
1704 << "\n\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001705
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001706 // Check for register operands, including sub-classes.
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001707 OS << " if (Operand.isReg()) {\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001708 OS << " MatchClassKind OpKind;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001709 OS << " switch (Operand.getReg()) {\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001710 OS << " default: OpKind = InvalidMatchClass; break;\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001711 for (std::map<Record*, ClassInfo*>::iterator
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001712 it = Info.RegisterClasses.begin(), ie = Info.RegisterClasses.end();
1713 it != ie; ++it)
Chris Lattner02bcbc92010-11-01 01:37:30 +00001714 OS << " case " << Info.Target.getName() << "::"
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001715 << it->first->getName() << ": OpKind = " << it->second->Name
1716 << "; break;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001717 OS << " }\n";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00001718 OS << " return isSubclass(OpKind, Kind);\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001719 OS << " }\n\n";
1720
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001721 // Check the user classes. We don't care what order since we're only
1722 // actually matching against one of them.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001723 for (std::vector<ClassInfo*>::iterator it = Info.Classes.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001724 ie = Info.Classes.end(); it != ie; ++it) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001725 ClassInfo &CI = **it;
1726
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001727 if (!CI.isUserClass())
1728 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00001729
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001730 OS << " // '" << CI.ClassName << "' class\n";
1731 OS << " if (Kind == " << CI.Name
1732 << " && Operand." << CI.PredicateMethod << "()) {\n";
1733 OS << " return true;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001734 OS << " }\n\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001735 }
Bob Wilson828295b2011-01-26 21:26:19 +00001736
Jim Grosbachb9db0c52011-02-10 00:08:28 +00001737 OS << " return false;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001738 OS << "}\n\n";
1739}
1740
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001741/// EmitIsSubclass - Emit the subclass predicate function.
1742static void EmitIsSubclass(CodeGenTarget &Target,
1743 std::vector<ClassInfo*> &Infos,
1744 raw_ostream &OS) {
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00001745 OS << "/// isSubclass - Compute whether \\arg A is a subclass of \\arg B.\n";
1746 OS << "static bool isSubclass(MatchClassKind A, MatchClassKind B) {\n";
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001747 OS << " if (A == B)\n";
1748 OS << " return true;\n\n";
1749
1750 OS << " switch (A) {\n";
1751 OS << " default:\n";
1752 OS << " return false;\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001753 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001754 ie = Infos.end(); it != ie; ++it) {
1755 ClassInfo &A = **it;
1756
Jim Grosbacha66512e2011-12-06 23:43:54 +00001757 std::vector<StringRef> SuperClasses;
1758 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
1759 ie = Infos.end(); it != ie; ++it) {
1760 ClassInfo &B = **it;
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001761
Jim Grosbacha66512e2011-12-06 23:43:54 +00001762 if (&A != &B && A.isSubsetOf(B))
1763 SuperClasses.push_back(B.Name);
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001764 }
Jim Grosbacha66512e2011-12-06 23:43:54 +00001765
1766 if (SuperClasses.empty())
1767 continue;
1768
1769 OS << "\n case " << A.Name << ":\n";
1770
1771 if (SuperClasses.size() == 1) {
1772 OS << " return B == " << SuperClasses.back() << ";\n";
1773 continue;
1774 }
1775
1776 OS << " switch (B) {\n";
1777 OS << " default: return false;\n";
1778 for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
1779 OS << " case " << SuperClasses[i] << ": return true;\n";
1780 OS << " }\n";
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00001781 }
1782 OS << " }\n";
1783 OS << "}\n\n";
1784}
1785
Daniel Dunbar245f0582009-08-08 21:22:41 +00001786/// EmitMatchTokenString - Emit the function to match a token string to the
1787/// appropriate match class value.
1788static void EmitMatchTokenString(CodeGenTarget &Target,
1789 std::vector<ClassInfo*> &Infos,
1790 raw_ostream &OS) {
1791 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00001792 std::vector<StringMatcher::StringPair> Matches;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001793 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbar245f0582009-08-08 21:22:41 +00001794 ie = Infos.end(); it != ie; ++it) {
1795 ClassInfo &CI = **it;
1796
1797 if (CI.Kind == ClassInfo::Token)
Chris Lattner5845e5c2010-09-06 02:01:51 +00001798 Matches.push_back(StringMatcher::StringPair(CI.ValueName,
1799 "return " + CI.Name + ";"));
Daniel Dunbar245f0582009-08-08 21:22:41 +00001800 }
1801
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00001802 OS << "static MatchClassKind matchTokenString(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00001803
Chris Lattner5845e5c2010-09-06 02:01:51 +00001804 StringMatcher("Name", Matches, OS).Emit();
Daniel Dunbar245f0582009-08-08 21:22:41 +00001805
1806 OS << " return InvalidMatchClass;\n";
1807 OS << "}\n\n";
1808}
Chris Lattner70add882009-08-08 20:02:57 +00001809
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00001810/// EmitMatchRegisterName - Emit the function to match a string to the target
1811/// specific register enum.
1812static void EmitMatchRegisterName(CodeGenTarget &Target, Record *AsmParser,
1813 raw_ostream &OS) {
Daniel Dunbar245f0582009-08-08 21:22:41 +00001814 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00001815 std::vector<StringMatcher::StringPair> Matches;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001816 const std::vector<CodeGenRegister*> &Regs =
1817 Target.getRegBank().getRegisters();
1818 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
1819 const CodeGenRegister *Reg = Regs[i];
1820 if (Reg->TheDef->getValueAsString("AsmName").empty())
Daniel Dunbar22be5222009-07-17 18:51:11 +00001821 continue;
1822
Chris Lattner5845e5c2010-09-06 02:01:51 +00001823 Matches.push_back(StringMatcher::StringPair(
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001824 Reg->TheDef->getValueAsString("AsmName"),
1825 "return " + utostr(Reg->EnumValue) + ";"));
Daniel Dunbar22be5222009-07-17 18:51:11 +00001826 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001827
Chris Lattnerb8d6e982010-02-09 00:34:28 +00001828 OS << "static unsigned MatchRegisterName(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00001829
Chris Lattner5845e5c2010-09-06 02:01:51 +00001830 StringMatcher("Name", Matches, OS).Emit();
Jim Grosbacha7c78222010-10-29 22:13:48 +00001831
Daniel Dunbar245f0582009-08-08 21:22:41 +00001832 OS << " return 0;\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +00001833 OS << "}\n\n";
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00001834}
Daniel Dunbara027d222009-07-31 02:32:59 +00001835
Daniel Dunbar54074b52010-07-19 05:44:09 +00001836/// EmitSubtargetFeatureFlagEnumeration - Emit the subtarget feature flag
1837/// definitions.
Chris Lattner02bcbc92010-11-01 01:37:30 +00001838static void EmitSubtargetFeatureFlagEnumeration(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00001839 raw_ostream &OS) {
1840 OS << "// Flags for subtarget features that participate in "
1841 << "instruction matching.\n";
1842 OS << "enum SubtargetFeatureFlag {\n";
1843 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
1844 it = Info.SubtargetFeatures.begin(),
1845 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
1846 SubtargetFeatureInfo &SFI = *it->second;
Chris Lattner0aed1e72010-10-30 20:07:57 +00001847 OS << " " << SFI.getEnumName() << " = (1 << " << SFI.Index << "),\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00001848 }
1849 OS << " Feature_None = 0\n";
1850 OS << "};\n\n";
1851}
1852
1853/// EmitComputeAvailableFeatures - Emit the function to compute the list of
1854/// available features given a subtarget.
Chris Lattner02bcbc92010-11-01 01:37:30 +00001855static void EmitComputeAvailableFeatures(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00001856 raw_ostream &OS) {
1857 std::string ClassName =
1858 Info.AsmParser->getValueAsString("AsmParserClassName");
1859
Chris Lattner02bcbc92010-11-01 01:37:30 +00001860 OS << "unsigned " << Info.Target.getName() << ClassName << "::\n"
Evan Chengebdeeab2011-07-08 01:53:10 +00001861 << "ComputeAvailableFeatures(uint64_t FB) const {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00001862 OS << " unsigned Features = 0;\n";
1863 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
1864 it = Info.SubtargetFeatures.begin(),
1865 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
1866 SubtargetFeatureInfo &SFI = *it->second;
Evan Chengebdeeab2011-07-08 01:53:10 +00001867
1868 OS << " if (";
Evan Chengfbc38d22011-07-08 18:04:22 +00001869 std::string CondStorage = SFI.TheDef->getValueAsString("AssemblerCondString");
1870 StringRef Conds = CondStorage;
Evan Chengebdeeab2011-07-08 01:53:10 +00001871 std::pair<StringRef,StringRef> Comma = Conds.split(',');
1872 bool First = true;
1873 do {
1874 if (!First)
1875 OS << " && ";
1876
1877 bool Neg = false;
1878 StringRef Cond = Comma.first;
1879 if (Cond[0] == '!') {
1880 Neg = true;
1881 Cond = Cond.substr(1);
1882 }
1883
1884 OS << "((FB & " << Info.Target.getName() << "::" << Cond << ")";
1885 if (Neg)
1886 OS << " == 0";
1887 else
1888 OS << " != 0";
1889 OS << ")";
1890
1891 if (Comma.second.empty())
1892 break;
1893
1894 First = false;
1895 Comma = Comma.second.split(',');
1896 } while (true);
1897
1898 OS << ")\n";
Chris Lattner0aed1e72010-10-30 20:07:57 +00001899 OS << " Features |= " << SFI.getEnumName() << ";\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00001900 }
1901 OS << " return Features;\n";
1902 OS << "}\n\n";
1903}
1904
Chris Lattner6fa152c2010-10-30 20:15:02 +00001905static std::string GetAliasRequiredFeatures(Record *R,
1906 const AsmMatcherInfo &Info) {
Chris Lattner693173f2010-10-30 19:23:13 +00001907 std::vector<Record*> ReqFeatures = R->getValueAsListOfDefs("Predicates");
Chris Lattner693173f2010-10-30 19:23:13 +00001908 std::string Result;
1909 unsigned NumFeatures = 0;
1910 for (unsigned i = 0, e = ReqFeatures.size(); i != e; ++i) {
Chris Lattner4a74ee72010-11-01 02:09:21 +00001911 SubtargetFeatureInfo *F = Info.getSubtargetFeature(ReqFeatures[i]);
Bob Wilson828295b2011-01-26 21:26:19 +00001912
Chris Lattner4a74ee72010-11-01 02:09:21 +00001913 if (F == 0)
1914 throw TGError(R->getLoc(), "Predicate '" + ReqFeatures[i]->getName() +
1915 "' is not marked as an AssemblerPredicate!");
Bob Wilson828295b2011-01-26 21:26:19 +00001916
Chris Lattner4a74ee72010-11-01 02:09:21 +00001917 if (NumFeatures)
1918 Result += '|';
Bob Wilson828295b2011-01-26 21:26:19 +00001919
Chris Lattner4a74ee72010-11-01 02:09:21 +00001920 Result += F->getEnumName();
1921 ++NumFeatures;
Chris Lattner693173f2010-10-30 19:23:13 +00001922 }
Bob Wilson828295b2011-01-26 21:26:19 +00001923
Chris Lattner693173f2010-10-30 19:23:13 +00001924 if (NumFeatures > 1)
1925 Result = '(' + Result + ')';
1926 return Result;
1927}
1928
Chris Lattner674c1dc2010-10-30 17:36:36 +00001929/// EmitMnemonicAliases - If the target has any MnemonicAlias<> definitions,
Chris Lattner7fd44892010-10-30 18:48:18 +00001930/// emit a function for them and return true, otherwise return false.
Chris Lattner0aed1e72010-10-30 20:07:57 +00001931static bool EmitMnemonicAliases(raw_ostream &OS, const AsmMatcherInfo &Info) {
Daniel Dunbarc0a70072011-01-24 23:26:31 +00001932 // Ignore aliases when match-prefix is set.
1933 if (!MatchPrefix.empty())
1934 return false;
1935
Chris Lattner674c1dc2010-10-30 17:36:36 +00001936 std::vector<Record*> Aliases =
Chris Lattner67db8832010-12-13 00:23:57 +00001937 Info.getRecords().getAllDerivedDefinitions("MnemonicAlias");
Chris Lattner7fd44892010-10-30 18:48:18 +00001938 if (Aliases.empty()) return false;
Chris Lattner674c1dc2010-10-30 17:36:36 +00001939
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00001940 OS << "static void applyMnemonicAliases(StringRef &Mnemonic, "
Chris Lattner8cc0a6b2010-10-30 18:57:07 +00001941 "unsigned Features) {\n";
Bob Wilson828295b2011-01-26 21:26:19 +00001942
Chris Lattner4fd32c62010-10-30 18:56:12 +00001943 // Keep track of all the aliases from a mnemonic. Use an std::map so that the
1944 // iteration order of the map is stable.
1945 std::map<std::string, std::vector<Record*> > AliasesFromMnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +00001946
Chris Lattner674c1dc2010-10-30 17:36:36 +00001947 for (unsigned i = 0, e = Aliases.size(); i != e; ++i) {
1948 Record *R = Aliases[i];
Chris Lattner4fd32c62010-10-30 18:56:12 +00001949 AliasesFromMnemonic[R->getValueAsString("FromMnemonic")].push_back(R);
Chris Lattner674c1dc2010-10-30 17:36:36 +00001950 }
Chris Lattner4fd32c62010-10-30 18:56:12 +00001951
1952 // Process each alias a "from" mnemonic at a time, building the code executed
1953 // by the string remapper.
1954 std::vector<StringMatcher::StringPair> Cases;
1955 for (std::map<std::string, std::vector<Record*> >::iterator
1956 I = AliasesFromMnemonic.begin(), E = AliasesFromMnemonic.end();
1957 I != E; ++I) {
Chris Lattner4fd32c62010-10-30 18:56:12 +00001958 const std::vector<Record*> &ToVec = I->second;
Chris Lattner693173f2010-10-30 19:23:13 +00001959
1960 // Loop through each alias and emit code that handles each case. If there
1961 // are two instructions without predicates, emit an error. If there is one,
1962 // emit it last.
1963 std::string MatchCode;
1964 int AliasWithNoPredicate = -1;
Bob Wilson828295b2011-01-26 21:26:19 +00001965
Chris Lattner693173f2010-10-30 19:23:13 +00001966 for (unsigned i = 0, e = ToVec.size(); i != e; ++i) {
1967 Record *R = ToVec[i];
Chris Lattner6fa152c2010-10-30 20:15:02 +00001968 std::string FeatureMask = GetAliasRequiredFeatures(R, Info);
Bob Wilson828295b2011-01-26 21:26:19 +00001969
Chris Lattner693173f2010-10-30 19:23:13 +00001970 // If this unconditionally matches, remember it for later and diagnose
1971 // duplicates.
1972 if (FeatureMask.empty()) {
1973 if (AliasWithNoPredicate != -1) {
1974 // We can't have two aliases from the same mnemonic with no predicate.
1975 PrintError(ToVec[AliasWithNoPredicate]->getLoc(),
1976 "two MnemonicAliases with the same 'from' mnemonic!");
Chris Lattner4164f6b2010-11-01 04:44:29 +00001977 throw TGError(R->getLoc(), "this is the other MnemonicAlias.");
Chris Lattner693173f2010-10-30 19:23:13 +00001978 }
Bob Wilson828295b2011-01-26 21:26:19 +00001979
Chris Lattner693173f2010-10-30 19:23:13 +00001980 AliasWithNoPredicate = i;
1981 continue;
1982 }
Joerg Sonnenberger6ef6ced2011-02-17 23:22:19 +00001983 if (R->getValueAsString("ToMnemonic") == I->first)
1984 throw TGError(R->getLoc(), "MnemonicAlias to the same string");
Bob Wilson828295b2011-01-26 21:26:19 +00001985
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00001986 if (!MatchCode.empty())
1987 MatchCode += "else ";
Chris Lattner693173f2010-10-30 19:23:13 +00001988 MatchCode += "if ((Features & " + FeatureMask + ") == "+FeatureMask+")\n";
1989 MatchCode += " Mnemonic = \"" +R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner4fd32c62010-10-30 18:56:12 +00001990 }
Bob Wilson828295b2011-01-26 21:26:19 +00001991
Chris Lattner693173f2010-10-30 19:23:13 +00001992 if (AliasWithNoPredicate != -1) {
1993 Record *R = ToVec[AliasWithNoPredicate];
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00001994 if (!MatchCode.empty())
1995 MatchCode += "else\n ";
1996 MatchCode += "Mnemonic = \"" + R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner693173f2010-10-30 19:23:13 +00001997 }
Bob Wilson828295b2011-01-26 21:26:19 +00001998
Chris Lattner693173f2010-10-30 19:23:13 +00001999 MatchCode += "return;";
2000
2001 Cases.push_back(std::make_pair(I->first, MatchCode));
Chris Lattner4fd32c62010-10-30 18:56:12 +00002002 }
Bob Wilson828295b2011-01-26 21:26:19 +00002003
Chris Lattner674c1dc2010-10-30 17:36:36 +00002004 StringMatcher("Mnemonic", Cases, OS).Emit();
Daniel Dunbar55b5e852011-01-18 01:59:30 +00002005 OS << "}\n\n";
Bob Wilson828295b2011-01-26 21:26:19 +00002006
Chris Lattner7fd44892010-10-30 18:48:18 +00002007 return true;
Chris Lattner674c1dc2010-10-30 17:36:36 +00002008}
2009
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002010static const char *getMinimalTypeForRange(uint64_t Range) {
2011 assert(Range < 0xFFFFFFFFULL && "Enum too large");
2012 if (Range > 0xFFFF)
2013 return "uint32_t";
2014 if (Range > 0xFF)
2015 return "uint16_t";
2016 return "uint8_t";
2017}
2018
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002019static void EmitCustomOperandParsing(raw_ostream &OS, CodeGenTarget &Target,
2020 const AsmMatcherInfo &Info, StringRef ClassName) {
2021 // Emit the static custom operand parsing table;
2022 OS << "namespace {\n";
2023 OS << " struct OperandMatchEntry {\n";
2024 OS << " const char *Mnemonic;\n";
2025 OS << " unsigned OperandMask;\n";
2026 OS << " MatchClassKind Class;\n";
2027 OS << " unsigned RequiredFeatures;\n";
2028 OS << " };\n\n";
2029
2030 OS << " // Predicate for searching for an opcode.\n";
2031 OS << " struct LessOpcodeOperand {\n";
2032 OS << " bool operator()(const OperandMatchEntry &LHS, StringRef RHS) {\n";
2033 OS << " return StringRef(LHS.Mnemonic) < RHS;\n";
2034 OS << " }\n";
2035 OS << " bool operator()(StringRef LHS, const OperandMatchEntry &RHS) {\n";
2036 OS << " return LHS < StringRef(RHS.Mnemonic);\n";
2037 OS << " }\n";
2038 OS << " bool operator()(const OperandMatchEntry &LHS,";
2039 OS << " const OperandMatchEntry &RHS) {\n";
2040 OS << " return StringRef(LHS.Mnemonic) < StringRef(RHS.Mnemonic);\n";
2041 OS << " }\n";
2042 OS << " };\n";
2043
2044 OS << "} // end anonymous namespace.\n\n";
2045
2046 OS << "static const OperandMatchEntry OperandMatchTable["
2047 << Info.OperandMatchInfo.size() << "] = {\n";
2048
2049 OS << " /* Mnemonic, Operand List Mask, Operand Class, Features */\n";
2050 for (std::vector<OperandMatchEntry>::const_iterator it =
2051 Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2052 it != ie; ++it) {
2053 const OperandMatchEntry &OMI = *it;
2054 const MatchableInfo &II = *OMI.MI;
2055
2056 OS << " { \"" << II.Mnemonic << "\""
2057 << ", " << OMI.OperandMask;
2058
2059 OS << " /* ";
2060 bool printComma = false;
2061 for (int i = 0, e = 31; i !=e; ++i)
2062 if (OMI.OperandMask & (1 << i)) {
2063 if (printComma)
2064 OS << ", ";
2065 OS << i;
2066 printComma = true;
2067 }
2068 OS << " */";
2069
2070 OS << ", " << OMI.CI->Name
2071 << ", ";
2072
2073 // Write the required features mask.
2074 if (!II.RequiredFeatures.empty()) {
2075 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2076 if (i) OS << "|";
2077 OS << II.RequiredFeatures[i]->getEnumName();
2078 }
2079 } else
2080 OS << "0";
2081 OS << " },\n";
2082 }
2083 OS << "};\n\n";
2084
2085 // Emit the operand class switch to call the correct custom parser for
2086 // the found operand class.
Jim Grosbachf922c472011-02-12 01:34:40 +00002087 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
2088 << Target.getName() << ClassName << "::\n"
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002089 << "tryCustomParseOperand(SmallVectorImpl<MCParsedAsmOperand*>"
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002090 << " &Operands,\n unsigned MCK) {\n\n"
2091 << " switch(MCK) {\n";
2092
2093 for (std::vector<ClassInfo*>::const_iterator it = Info.Classes.begin(),
2094 ie = Info.Classes.end(); it != ie; ++it) {
2095 ClassInfo *CI = *it;
2096 if (CI->ParserMethod.empty())
2097 continue;
2098 OS << " case " << CI->Name << ":\n"
2099 << " return " << CI->ParserMethod << "(Operands);\n";
2100 }
2101
2102 OS << " default:\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002103 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002104 OS << " }\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002105 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002106 OS << "}\n\n";
2107
2108 // Emit the static custom operand parser. This code is very similar with
2109 // the other matcher. Also use MatchResultTy here just in case we go for
2110 // a better error handling.
Jim Grosbachf922c472011-02-12 01:34:40 +00002111 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002112 << Target.getName() << ClassName << "::\n"
2113 << "MatchOperandParserImpl(SmallVectorImpl<MCParsedAsmOperand*>"
2114 << " &Operands,\n StringRef Mnemonic) {\n";
2115
2116 // Emit code to get the available features.
2117 OS << " // Get the current feature set.\n";
2118 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2119
2120 OS << " // Get the next operand index.\n";
2121 OS << " unsigned NextOpNum = Operands.size()-1;\n";
2122
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002123 // Emit code to search the table.
2124 OS << " // Search the table.\n";
2125 OS << " std::pair<const OperandMatchEntry*, const OperandMatchEntry*>";
2126 OS << " MnemonicRange =\n";
2127 OS << " std::equal_range(OperandMatchTable, OperandMatchTable+"
2128 << Info.OperandMatchInfo.size() << ", Mnemonic,\n"
2129 << " LessOpcodeOperand());\n\n";
2130
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002131 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002132 OS << " return MatchOperand_NoMatch;\n\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002133
2134 OS << " for (const OperandMatchEntry *it = MnemonicRange.first,\n"
2135 << " *ie = MnemonicRange.second; it != ie; ++it) {\n";
2136
2137 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
2138 OS << " assert(Mnemonic == it->Mnemonic);\n\n";
2139
2140 // Emit check that the required features are available.
2141 OS << " // check if the available features match\n";
2142 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2143 << "!= it->RequiredFeatures) {\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002144 OS << " continue;\n";
2145 OS << " }\n\n";
2146
2147 // Emit check to ensure the operand number matches.
2148 OS << " // check if the operand in question has a custom parser.\n";
2149 OS << " if (!(it->OperandMask & (1 << NextOpNum)))\n";
2150 OS << " continue;\n\n";
2151
2152 // Emit call to the custom parser method
2153 OS << " // call custom parse method to handle the operand\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002154 OS << " OperandMatchResultTy Result = ";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002155 OS << "tryCustomParseOperand(Operands, it->Class);\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002156 OS << " if (Result != MatchOperand_NoMatch)\n";
2157 OS << " return Result;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002158 OS << " }\n\n";
2159
Jim Grosbachf922c472011-02-12 01:34:40 +00002160 OS << " // Okay, we had no match.\n";
2161 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002162 OS << "}\n\n";
2163}
2164
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002165void AsmMatcherEmitter::run(raw_ostream &OS) {
Chris Lattner67db8832010-12-13 00:23:57 +00002166 CodeGenTarget Target(Records);
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002167 Record *AsmParser = Target.getAsmParser();
2168 std::string ClassName = AsmParser->getValueAsString("AsmParserClassName");
2169
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002170 // Compute the information on the instructions to match.
Chris Lattner67db8832010-12-13 00:23:57 +00002171 AsmMatcherInfo Info(AsmParser, Target, Records);
Chris Lattner02bcbc92010-11-01 01:37:30 +00002172 Info.BuildInfo();
Daniel Dunbara027d222009-07-31 02:32:59 +00002173
Daniel Dunbare1f6de32010-02-02 23:46:36 +00002174 // Sort the instruction table using the partial order on classes. We use
2175 // stable_sort to ensure that ambiguous instructions are still
2176 // deterministically ordered.
Chris Lattner22bc5c42010-11-01 05:06:45 +00002177 std::stable_sort(Info.Matchables.begin(), Info.Matchables.end(),
2178 less_ptr<MatchableInfo>());
Jim Grosbacha7c78222010-10-29 22:13:48 +00002179
Daniel Dunbarb7479c02009-08-08 05:24:34 +00002180 DEBUG_WITH_TYPE("instruction_info", {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002181 for (std::vector<MatchableInfo*>::iterator
2182 it = Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002183 it != ie; ++it)
Daniel Dunbar20927f22009-08-07 08:26:05 +00002184 (*it)->dump();
2185 });
Daniel Dunbara027d222009-07-31 02:32:59 +00002186
Chris Lattner22bc5c42010-11-01 05:06:45 +00002187 // Check for ambiguous matchables.
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002188 DEBUG_WITH_TYPE("ambiguous_instrs", {
2189 unsigned NumAmbiguous = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002190 for (unsigned i = 0, e = Info.Matchables.size(); i != e; ++i) {
Chris Lattner87410362010-09-06 20:21:47 +00002191 for (unsigned j = i + 1; j != e; ++j) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002192 MatchableInfo &A = *Info.Matchables[i];
2193 MatchableInfo &B = *Info.Matchables[j];
Jim Grosbacha7c78222010-10-29 22:13:48 +00002194
Bob Wilson1f64ac42011-01-26 21:26:21 +00002195 if (A.CouldMatchAmbiguouslyWith(B)) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002196 errs() << "warning: ambiguous matchables:\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002197 A.dump();
2198 errs() << "\nis incomparable with:\n";
2199 B.dump();
2200 errs() << "\n\n";
Chris Lattner87410362010-09-06 20:21:47 +00002201 ++NumAmbiguous;
2202 }
Daniel Dunbar2b544812009-08-09 06:05:33 +00002203 }
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002204 }
Chris Lattner87410362010-09-06 20:21:47 +00002205 if (NumAmbiguous)
Jim Grosbacha7c78222010-10-29 22:13:48 +00002206 errs() << "warning: " << NumAmbiguous
Chris Lattner22bc5c42010-11-01 05:06:45 +00002207 << " ambiguous matchables!\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002208 });
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002209
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002210 // Compute the information on the custom operand parsing.
2211 Info.BuildOperandMatchInfo();
2212
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002213 // Write the output.
2214
2215 EmitSourceFileHeader("Assembly Matcher Source Fragment", OS);
2216
Chris Lattner0692ee62010-09-06 19:11:01 +00002217 // Information for the class declaration.
2218 OS << "\n#ifdef GET_ASSEMBLER_HEADER\n";
2219 OS << "#undef GET_ASSEMBLER_HEADER\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002220 OS << " // This should be included into the middle of the declaration of\n";
Evan Cheng94b95502011-07-26 00:24:13 +00002221 OS << " // your subclasses implementation of MCTargetAsmParser.\n";
Evan Chengebdeeab2011-07-08 01:53:10 +00002222 OS << " unsigned ComputeAvailableFeatures(uint64_t FeatureBits) const;\n";
Daniel Dunbar5c228a92011-02-04 23:17:40 +00002223 OS << " bool ConvertToMCInst(unsigned Kind, MCInst &Inst, "
2224 << "unsigned Opcode,\n"
2225 << " const SmallVectorImpl<MCParsedAsmOperand*> "
2226 << "&Operands);\n";
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002227 OS << " bool MnemonicIsValid(StringRef Mnemonic);\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002228 OS << " unsigned MatchInstructionImpl(\n";
Daniel Dunbar083203d2011-01-10 15:26:11 +00002229 OS << " const SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
Devang Patel56315d32012-01-10 17:50:43 +00002230 OS << " MCInst &Inst, unsigned &ErrorInfo, unsigned VariantID = 0);\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002231
2232 if (Info.OperandMatchInfo.size()) {
Jim Grosbachf922c472011-02-12 01:34:40 +00002233 OS << "\n enum OperandMatchResultTy {\n";
2234 OS << " MatchOperand_Success, // operand matched successfully\n";
2235 OS << " MatchOperand_NoMatch, // operand did not match\n";
2236 OS << " MatchOperand_ParseFail // operand matched but had errors\n";
2237 OS << " };\n";
2238 OS << " OperandMatchResultTy MatchOperandParserImpl(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002239 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2240 OS << " StringRef Mnemonic);\n";
2241
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002242 OS << " OperandMatchResultTy tryCustomParseOperand(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002243 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2244 OS << " unsigned MCK);\n\n";
2245 }
2246
Chris Lattner0692ee62010-09-06 19:11:01 +00002247 OS << "#endif // GET_ASSEMBLER_HEADER_INFO\n\n";
2248
Chris Lattner0692ee62010-09-06 19:11:01 +00002249 OS << "\n#ifdef GET_REGISTER_MATCHER\n";
2250 OS << "#undef GET_REGISTER_MATCHER\n\n";
2251
Daniel Dunbar54074b52010-07-19 05:44:09 +00002252 // Emit the subtarget feature enumeration.
Chris Lattner02bcbc92010-11-01 01:37:30 +00002253 EmitSubtargetFeatureFlagEnumeration(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002254
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002255 // Emit the function to match a register name to number.
2256 EmitMatchRegisterName(Target, AsmParser, OS);
Chris Lattner0692ee62010-09-06 19:11:01 +00002257
2258 OS << "#endif // GET_REGISTER_MATCHER\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002259
Chris Lattner0692ee62010-09-06 19:11:01 +00002260
2261 OS << "\n#ifdef GET_MATCHER_IMPLEMENTATION\n";
2262 OS << "#undef GET_MATCHER_IMPLEMENTATION\n\n";
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002263
Chris Lattner7fd44892010-10-30 18:48:18 +00002264 // Generate the function that remaps for mnemonic aliases.
Chris Lattner0aed1e72010-10-30 20:07:57 +00002265 bool HasMnemonicAliases = EmitMnemonicAliases(OS, Info);
Bob Wilson828295b2011-01-26 21:26:19 +00002266
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002267 // Generate the unified function to convert operands into an MCInst.
Daniel Dunbar5c228a92011-02-04 23:17:40 +00002268 EmitConvertToMCInst(Target, ClassName, Info.Matchables, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002269
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002270 // Emit the enumeration for classes which participate in matching.
2271 EmitMatchClassEnumeration(Target, Info.Classes, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002272
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002273 // Emit the routine to match token strings to their match class.
2274 EmitMatchTokenString(Target, Info.Classes, OS);
2275
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002276 // Emit the subclass predicate routine.
2277 EmitIsSubclass(Target, Info.Classes, OS);
2278
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002279 // Emit the routine to validate an operand against a match class.
2280 EmitValidateOperandClass(Info, OS);
2281
Daniel Dunbar54074b52010-07-19 05:44:09 +00002282 // Emit the available features compute function.
Chris Lattner02bcbc92010-11-01 01:37:30 +00002283 EmitComputeAvailableFeatures(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002284
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002285
2286 size_t MaxNumOperands = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002287 for (std::vector<MatchableInfo*>::const_iterator it =
2288 Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002289 it != ie; ++it)
Chris Lattner3116fef2010-11-02 01:03:43 +00002290 MaxNumOperands = std::max(MaxNumOperands, (*it)->AsmOperands.size());
Jim Grosbacha7c78222010-10-29 22:13:48 +00002291
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002292 // Emit the static match table; unused classes get initalized to 0 which is
2293 // guaranteed to be InvalidMatchClass.
2294 //
2295 // FIXME: We can reduce the size of this table very easily. First, we change
2296 // it so that store the kinds in separate bit-fields for each index, which
2297 // only needs to be the max width used for classes at that index (we also need
2298 // to reject based on this during classification). If we then make sure to
2299 // order the match kinds appropriately (putting mnemonics last), then we
2300 // should only end up using a few bits for each class, especially the ones
2301 // following the mnemonic.
Chris Lattner96352e52010-09-06 21:08:38 +00002302 OS << "namespace {\n";
2303 OS << " struct MatchEntry {\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002304 OS << " unsigned Opcode;\n";
Chris Lattnere206fcf2010-09-06 21:01:37 +00002305 OS << " const char *Mnemonic;\n";
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002306 OS << " " << getMinimalTypeForRange(Info.Matchables.size())
2307 << " ConvertFn;\n";
2308 OS << " " << getMinimalTypeForRange(Info.Classes.size())
2309 << " Classes[" << MaxNumOperands << "];\n";
2310 OS << " " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
2311 << " RequiredFeatures;\n";
Devang Patel56315d32012-01-10 17:50:43 +00002312 OS << " unsigned AsmVariantID;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002313 OS << " };\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002314
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002315 OS << " // Predicate for searching for an opcode.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002316 OS << " struct LessOpcode {\n";
2317 OS << " bool operator()(const MatchEntry &LHS, StringRef RHS) {\n";
2318 OS << " return StringRef(LHS.Mnemonic) < RHS;\n";
2319 OS << " }\n";
2320 OS << " bool operator()(StringRef LHS, const MatchEntry &RHS) {\n";
2321 OS << " return LHS < StringRef(RHS.Mnemonic);\n";
2322 OS << " }\n";
Chris Lattner32c685c2010-09-07 06:10:48 +00002323 OS << " bool operator()(const MatchEntry &LHS, const MatchEntry &RHS) {\n";
2324 OS << " return StringRef(LHS.Mnemonic) < StringRef(RHS.Mnemonic);\n";
2325 OS << " }\n";
Chris Lattner96352e52010-09-06 21:08:38 +00002326 OS << " };\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002327
Chris Lattner96352e52010-09-06 21:08:38 +00002328 OS << "} // end anonymous namespace.\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002329
Chris Lattner96352e52010-09-06 21:08:38 +00002330 OS << "static const MatchEntry MatchTable["
Chris Lattner22bc5c42010-11-01 05:06:45 +00002331 << Info.Matchables.size() << "] = {\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002332
Chris Lattner22bc5c42010-11-01 05:06:45 +00002333 for (std::vector<MatchableInfo*>::const_iterator it =
2334 Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002335 it != ie; ++it) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002336 MatchableInfo &II = **it;
Jim Grosbacha7c78222010-10-29 22:13:48 +00002337
Chris Lattner662e5a32010-11-06 07:14:44 +00002338 OS << " { " << Target.getName() << "::"
2339 << II.getResultInst()->TheDef->getName() << ", \"" << II.Mnemonic << "\""
2340 << ", " << II.ConversionFnKind << ", { ";
Chris Lattner3116fef2010-11-02 01:03:43 +00002341 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +00002342 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
Jim Grosbacha7c78222010-10-29 22:13:48 +00002343
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002344 if (i) OS << ", ";
2345 OS << Op.Class->Name;
Daniel Dunbar20927f22009-08-07 08:26:05 +00002346 }
Daniel Dunbar54074b52010-07-19 05:44:09 +00002347 OS << " }, ";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002348
Daniel Dunbar54074b52010-07-19 05:44:09 +00002349 // Write the required features mask.
2350 if (!II.RequiredFeatures.empty()) {
2351 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2352 if (i) OS << "|";
Chris Lattner0aed1e72010-10-30 20:07:57 +00002353 OS << II.RequiredFeatures[i]->getEnumName();
Daniel Dunbar54074b52010-07-19 05:44:09 +00002354 }
2355 } else
2356 OS << "0";
Devang Patel56315d32012-01-10 17:50:43 +00002357 OS << ", " << II.AsmVariantID;
Daniel Dunbar54074b52010-07-19 05:44:09 +00002358 OS << "},\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002359 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002360
Chris Lattner96352e52010-09-06 21:08:38 +00002361 OS << "};\n\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002362
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002363 // A method to determine if a mnemonic is in the list.
2364 OS << "bool " << Target.getName() << ClassName << "::\n"
2365 << "MnemonicIsValid(StringRef Mnemonic) {\n";
2366 OS << " // Search the table.\n";
2367 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2368 OS << " std::equal_range(MatchTable, MatchTable+"
2369 << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n";
2370 OS << " return MnemonicRange.first != MnemonicRange.second;\n";
2371 OS << "}\n\n";
2372
Chris Lattner96352e52010-09-06 21:08:38 +00002373 // Finally, build the match function.
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002374 OS << "unsigned "
Chris Lattner96352e52010-09-06 21:08:38 +00002375 << Target.getName() << ClassName << "::\n"
2376 << "MatchInstructionImpl(const SmallVectorImpl<MCParsedAsmOperand*>"
2377 << " &Operands,\n";
Devang Patel56315d32012-01-10 17:50:43 +00002378 OS << " MCInst &Inst, unsigned &ErrorInfo,\n";
2379 OS << " unsigned VariantID) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002380
2381 // Emit code to get the available features.
2382 OS << " // Get the current feature set.\n";
2383 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2384
Chris Lattner674c1dc2010-10-30 17:36:36 +00002385 OS << " // Get the instruction mnemonic, which is the first token.\n";
2386 OS << " StringRef Mnemonic = ((" << Target.getName()
2387 << "Operand*)Operands[0])->getToken();\n\n";
2388
Chris Lattner7fd44892010-10-30 18:48:18 +00002389 if (HasMnemonicAliases) {
2390 OS << " // Process all MnemonicAliases to remap the mnemonic.\n";
Devang Patel40bced02012-01-17 18:30:45 +00002391 OS << " // FIXME : Add an entry in AsmParserVariant to check this.\n";
2392 OS << " if (!VariantID)\n";
2393 OS << " applyMnemonicAliases(Mnemonic, AvailableFeatures);\n\n";
Chris Lattner7fd44892010-10-30 18:48:18 +00002394 }
Bob Wilson828295b2011-01-26 21:26:19 +00002395
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002396 // Emit code to compute the class list for this operand vector.
2397 OS << " // Eliminate obvious mismatches.\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002398 OS << " if (Operands.size() > " << (MaxNumOperands+1) << ") {\n";
2399 OS << " ErrorInfo = " << (MaxNumOperands+1) << ";\n";
2400 OS << " return Match_InvalidOperand;\n";
2401 OS << " }\n\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002402
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002403 OS << " // Some state to try to produce better error messages.\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002404 OS << " bool HadMatchOtherThanFeatures = false;\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00002405 OS << " bool HadMatchOtherThanPredicate = false;\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002406 OS << " unsigned RetCode = Match_InvalidOperand;\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002407 OS << " // Set ErrorInfo to the operand that mismatches if it is\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002408 OS << " // wrong for all instances of the instruction.\n";
2409 OS << " ErrorInfo = ~0U;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002410
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002411 // Emit code to search the table.
2412 OS << " // Search the table.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002413 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2414 OS << " std::equal_range(MatchTable, MatchTable+"
Chris Lattner22bc5c42010-11-01 05:06:45 +00002415 << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002416
Chris Lattnera008e8a2010-09-06 21:54:15 +00002417 OS << " // Return a more specific error code if no mnemonics match.\n";
2418 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
2419 OS << " return Match_MnemonicFail;\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002420
Chris Lattner2b1f9432010-09-06 21:22:45 +00002421 OS << " for (const MatchEntry *it = MnemonicRange.first, "
Chris Lattner80db4e52010-09-06 21:23:43 +00002422 << "*ie = MnemonicRange.second;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002423 OS << " it != ie; ++it) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002424
Gabor Greife53ee3b2010-09-07 06:06:06 +00002425 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
Chris Lattner44b0daa2010-09-06 21:25:43 +00002426 OS << " assert(Mnemonic == it->Mnemonic);\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002427
Daniel Dunbar54074b52010-07-19 05:44:09 +00002428 // Emit check that the subclasses match.
Devang Patel56315d32012-01-10 17:50:43 +00002429 OS << " if (VariantID != it->AsmVariantID) continue;\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002430 OS << " bool OperandsValid = true;\n";
2431 OS << " for (unsigned i = 0; i != " << MaxNumOperands << "; ++i) {\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002432 OS << " if (i + 1 >= Operands.size()) {\n";
2433 OS << " OperandsValid = (it->Classes[i] == " <<"InvalidMatchClass);\n";
Jim Grosbachb9d5af02011-05-03 19:09:56 +00002434 OS << " break;\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002435 OS << " }\n";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002436 OS << " if (validateOperandClass(Operands[i+1], "
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002437 "(MatchClassKind)it->Classes[i]))\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002438 OS << " continue;\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002439 OS << " // If this operand is broken for all of the instances of this\n";
2440 OS << " // mnemonic, keep track of it so we can report loc info.\n";
Kevin Enderby79fcb6d2011-02-02 18:20:55 +00002441 OS << " if (it == MnemonicRange.first || ErrorInfo <= i+1)\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002442 OS << " ErrorInfo = i+1;\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002443 OS << " // Otherwise, just reject this instance of the mnemonic.\n";
2444 OS << " OperandsValid = false;\n";
2445 OS << " break;\n";
2446 OS << " }\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002447
Chris Lattnerce4a3352010-09-06 22:11:18 +00002448 OS << " if (!OperandsValid) continue;\n";
Chris Lattnerec6789f2010-09-06 20:08:02 +00002449
2450 // Emit check that the required features are available.
2451 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2452 << "!= it->RequiredFeatures) {\n";
2453 OS << " HadMatchOtherThanFeatures = true;\n";
2454 OS << " continue;\n";
2455 OS << " }\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002456 OS << "\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00002457 OS << " // We have selected a definite instruction, convert the parsed\n"
2458 << " // operands into the appropriate MCInst.\n";
2459 OS << " if (!ConvertToMCInst(it->ConvertFn, Inst,\n"
2460 << " it->Opcode, Operands))\n";
2461 OS << " return Match_ConversionFail;\n";
2462 OS << "\n";
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00002463
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002464 // Verify the instruction with the target-specific match predicate function.
2465 OS << " // We have a potential match. Check the target predicate to\n"
2466 << " // handle any context sensitive constraints.\n"
2467 << " unsigned MatchResult;\n"
2468 << " if ((MatchResult = checkTargetMatchPredicate(Inst)) !="
2469 << " Match_Success) {\n"
2470 << " Inst.clear();\n"
2471 << " RetCode = MatchResult;\n"
Jim Grosbach578071a2011-08-16 20:12:35 +00002472 << " HadMatchOtherThanPredicate = true;\n"
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002473 << " continue;\n"
2474 << " }\n\n";
2475
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00002476 // Call the post-processing function, if used.
2477 std::string InsnCleanupFn =
2478 AsmParser->getValueAsString("AsmParserInstCleanup");
2479 if (!InsnCleanupFn.empty())
2480 OS << " " << InsnCleanupFn << "(Inst);\n";
2481
Chris Lattner79ed3f72010-09-06 19:22:17 +00002482 OS << " return Match_Success;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002483 OS << " }\n\n";
2484
Chris Lattnerec6789f2010-09-06 20:08:02 +00002485 OS << " // Okay, we had no match. Try to return a useful error code.\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00002486 OS << " if (HadMatchOtherThanPredicate || !HadMatchOtherThanFeatures)";
2487 OS << " return RetCode;\n";
2488 OS << " return Match_MissingFeature;\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002489 OS << "}\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002490
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002491 if (Info.OperandMatchInfo.size())
2492 EmitCustomOperandParsing(OS, Target, Info, ClassName);
2493
Chris Lattner0692ee62010-09-06 19:11:01 +00002494 OS << "#endif // GET_MATCHER_IMPLEMENTATION\n\n";
Daniel Dunbard51ffcf2009-07-11 19:39:44 +00002495}