blob: 468ce1c007d574fd89e8805c287e03214e681e25 [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
Craig Topperbe480ff2012-09-18 01:13:36 +000080// identifiers that need to be mapped to specific values in the final encoded
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +000081// 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
Daniel Dunbard51ffcf2009-07-11 19:39:44 +000099#include "CodeGenTarget.h"
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +0000100#include "StringToOffsetTable.h"
Daniel Dunbar20927f22009-08-07 08:26:05 +0000101#include "llvm/ADT/OwningPtr.h"
Chris Lattnerc07bd402010-11-04 02:11:18 +0000102#include "llvm/ADT/PointerUnion.h"
Chandler Carruth4ffd89f2012-12-04 10:37:14 +0000103#include "llvm/ADT/STLExtras.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 Dunbar20927f22009-08-07 08:26:05 +0000106#include "llvm/ADT/StringExtras.h"
107#include "llvm/Support/CommandLine.h"
Daniel Dunbara027d222009-07-31 02:32:59 +0000108#include "llvm/Support/Debug.h"
Craig Topper655b8de2012-02-05 07:21:30 +0000109#include "llvm/Support/ErrorHandling.h"
Peter Collingbourne7c788882011-10-01 16:41:13 +0000110#include "llvm/TableGen/Error.h"
111#include "llvm/TableGen/Record.h"
Douglas Gregorf657da22012-05-02 17:32:48 +0000112#include "llvm/TableGen/StringMatcher.h"
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000113#include "llvm/TableGen/TableGenBackend.h"
114#include <cassert>
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000115#include <map>
116#include <set>
Aaron Ballman54911a52013-07-15 16:53:32 +0000117#include <sstream>
Daniel Dunbard51ffcf2009-07-11 19:39:44 +0000118using namespace llvm;
119
Daniel Dunbar27249152009-08-07 20:33:39 +0000120static cl::opt<std::string>
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000121MatchPrefix("match-prefix", cl::init(""),
122 cl::desc("Only match instructions with the given prefix"));
Daniel Dunbar20927f22009-08-07 08:26:05 +0000123
Daniel Dunbar20927f22009-08-07 08:26:05 +0000124namespace {
Bob Wilson828295b2011-01-26 21:26:19 +0000125class AsmMatcherInfo;
Daniel Dunbar54074b52010-07-19 05:44:09 +0000126struct SubtargetFeatureInfo;
127
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000128class AsmMatcherEmitter {
129 RecordKeeper &Records;
130public:
131 AsmMatcherEmitter(RecordKeeper &R) : Records(R) {}
132
133 void run(raw_ostream &o);
134};
135
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000136/// ClassInfo - Helper class for storing the information about a particular
137/// class of operands which can be matched.
138struct ClassInfo {
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000139 enum ClassInfoKind {
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000140 /// Invalid kind, for use as a sentinel value.
141 Invalid = 0,
142
143 /// The class for a particular token.
144 Token,
145
146 /// The (first) register class, subsequent register classes are
147 /// RegisterClass0+1, and so on.
148 RegisterClass0,
149
150 /// The (first) user defined class, subsequent user defined classes are
151 /// UserClass0+1, and so on.
152 UserClass0 = 1<<16
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000153 };
154
155 /// Kind - The class kind, which is either a predefined kind, or (UserClass0 +
156 /// N) for the Nth user defined class.
157 unsigned Kind;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000158
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000159 /// SuperClasses - The super classes of this class. Note that for simplicities
160 /// sake user operands only record their immediate super class, while register
161 /// operands include all superclasses.
162 std::vector<ClassInfo*> SuperClasses;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000163
Daniel Dunbar6745d422009-08-09 05:18:30 +0000164 /// Name - The full class name, suitable for use in an enum.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000165 std::string Name;
166
Daniel Dunbar6745d422009-08-09 05:18:30 +0000167 /// ClassName - The unadorned generic name for this class (e.g., Token).
168 std::string ClassName;
169
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000170 /// ValueName - The name of the value this class represents; for a token this
171 /// is the literal token string, for an operand it is the TableGen class (or
172 /// empty if this is a derived class).
173 std::string ValueName;
174
175 /// PredicateMethod - The name of the operand method to test whether the
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000176 /// operand matches this class; this is not valid for Token or register kinds.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000177 std::string PredicateMethod;
178
179 /// RenderMethod - The name of the operand method to add this operand to an
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000180 /// MCInst; this is not valid for Token or register kinds.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000181 std::string RenderMethod;
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000182
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000183 /// ParserMethod - The name of the operand method to do a target specific
184 /// parsing on the operand.
185 std::string ParserMethod;
186
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000187 /// For register classes, the records for all the registers in this class.
188 std::set<Record*> Registers;
189
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +0000190 /// For custom match classes, he diagnostic kind for when the predicate fails.
191 std::string DiagnosticType;
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000192public:
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000193 /// isRegisterClass() - Check if this is a register class.
194 bool isRegisterClass() const {
195 return Kind >= RegisterClass0 && Kind < UserClass0;
196 }
197
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000198 /// isUserClass() - Check if this is a user defined class.
199 bool isUserClass() const {
200 return Kind >= UserClass0;
201 }
202
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +0000203 /// isRelatedTo - Check whether this class is "related" to \p RHS. Classes
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000204 /// are related if they are in the same class hierarchy.
205 bool isRelatedTo(const ClassInfo &RHS) const {
206 // Tokens are only related to tokens.
207 if (Kind == Token || RHS.Kind == Token)
208 return Kind == Token && RHS.Kind == Token;
209
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000210 // Registers classes are only related to registers classes, and only if
211 // their intersection is non-empty.
212 if (isRegisterClass() || RHS.isRegisterClass()) {
213 if (!isRegisterClass() || !RHS.isRegisterClass())
214 return false;
215
216 std::set<Record*> Tmp;
217 std::insert_iterator< std::set<Record*> > II(Tmp, Tmp.begin());
Jim Grosbacha7c78222010-10-29 22:13:48 +0000218 std::set_intersection(Registers.begin(), Registers.end(),
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000219 RHS.Registers.begin(), RHS.Registers.end(),
220 II);
221
222 return !Tmp.empty();
223 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000224
225 // Otherwise we have two users operands; they are related if they are in the
226 // same class hierarchy.
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000227 //
228 // FIXME: This is an oversimplification, they should only be related if they
229 // intersect, however we don't have that information.
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000230 assert(isUserClass() && RHS.isUserClass() && "Unexpected class!");
231 const ClassInfo *Root = this;
232 while (!Root->SuperClasses.empty())
233 Root = Root->SuperClasses.front();
234
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000235 const ClassInfo *RHSRoot = &RHS;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000236 while (!RHSRoot->SuperClasses.empty())
237 RHSRoot = RHSRoot->SuperClasses.front();
Jim Grosbacha7c78222010-10-29 22:13:48 +0000238
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000239 return Root == RHSRoot;
240 }
241
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +0000242 /// isSubsetOf - Test whether this class is a subset of \p RHS.
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000243 bool isSubsetOf(const ClassInfo &RHS) const {
244 // This is a subset of RHS if it is the same class...
245 if (this == &RHS)
246 return true;
247
248 // ... or if any of its super classes are a subset of RHS.
249 for (std::vector<ClassInfo*>::const_iterator it = SuperClasses.begin(),
250 ie = SuperClasses.end(); it != ie; ++it)
251 if ((*it)->isSubsetOf(RHS))
252 return true;
253
254 return false;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000255 }
256
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000257 /// operator< - Compare two classes.
258 bool operator<(const ClassInfo &RHS) const {
Daniel Dunbar368a4562010-05-27 05:31:32 +0000259 if (this == &RHS)
260 return false;
261
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000262 // Unrelated classes can be ordered by kind.
263 if (!isRelatedTo(RHS))
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000264 return Kind < RHS.Kind;
265
266 switch (Kind) {
Daniel Dunbar6745d422009-08-09 05:18:30 +0000267 case Invalid:
Craig Topper655b8de2012-02-05 07:21:30 +0000268 llvm_unreachable("Invalid kind!");
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000269
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000270 default:
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000271 // This class precedes the RHS if it is a proper subset of the RHS.
Daniel Dunbar368a4562010-05-27 05:31:32 +0000272 if (isSubsetOf(RHS))
Duncan Sands34727662010-07-12 08:16:59 +0000273 return true;
Daniel Dunbar368a4562010-05-27 05:31:32 +0000274 if (RHS.isSubsetOf(*this))
Duncan Sands34727662010-07-12 08:16:59 +0000275 return false;
Daniel Dunbar368a4562010-05-27 05:31:32 +0000276
277 // Otherwise, order by name to ensure we have a total ordering.
278 return ValueName < RHS.ValueName;
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000279 }
280 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000281};
282
Sean Silvab2df6102012-09-19 01:47:03 +0000283namespace {
284/// Sort ClassInfo pointers independently of pointer value.
285struct LessClassInfoPtr {
286 bool operator()(const ClassInfo *LHS, const ClassInfo *RHS) const {
287 return *LHS < *RHS;
288 }
289};
290}
291
Chris Lattner22bc5c42010-11-01 05:06:45 +0000292/// MatchableInfo - Helper class for storing the necessary information for an
293/// instruction or alias which is capable of being matched.
294struct MatchableInfo {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000295 struct AsmOperand {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000296 /// Token - This is the token that the operand came from.
297 StringRef Token;
Bob Wilson828295b2011-01-26 21:26:19 +0000298
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000299 /// The unique class instance this operand should match.
300 ClassInfo *Class;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000301
Chris Lattner567820c2010-11-04 01:42:59 +0000302 /// The operand name this is, if anything.
303 StringRef SrcOpName;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000304
305 /// The suboperand index within SrcOpName, or -1 for the entire operand.
306 int SubOpIdx;
Bob Wilson828295b2011-01-26 21:26:19 +0000307
Devang Patel63faf822012-01-07 01:33:34 +0000308 /// Register record if this token is singleton register.
309 Record *SingletonReg;
310
Jim Grosbachf35307c2012-01-24 21:06:59 +0000311 explicit AsmOperand(StringRef T) : Token(T), Class(0), SubOpIdx(-1),
Jim Grosbach11fc6462012-04-11 21:02:33 +0000312 SingletonReg(0) {}
Daniel Dunbar20927f22009-08-07 08:26:05 +0000313 };
Bob Wilson828295b2011-01-26 21:26:19 +0000314
Chris Lattner1d13bda2010-11-04 00:43:46 +0000315 /// ResOperand - This represents a single operand in the result instruction
316 /// generated by the match. In cases (like addressing modes) where a single
317 /// assembler operand expands to multiple MCOperands, this represents the
318 /// single assembler operand, not the MCOperand.
319 struct ResOperand {
320 enum {
321 /// RenderAsmOperand - This represents an operand result that is
322 /// generated by calling the render method on the assembly operand. The
323 /// corresponding AsmOperand is specified by AsmOperandNum.
324 RenderAsmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000325
Chris Lattner1d13bda2010-11-04 00:43:46 +0000326 /// TiedOperand - This represents a result operand that is a duplicate of
327 /// a previous result operand.
Chris Lattner98c870f2010-11-06 19:25:43 +0000328 TiedOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000329
Chris Lattner98c870f2010-11-06 19:25:43 +0000330 /// ImmOperand - This represents an immediate value that is dumped into
331 /// the operand.
Chris Lattner90fd7972010-11-06 19:57:21 +0000332 ImmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000333
Chris Lattner90fd7972010-11-06 19:57:21 +0000334 /// RegOperand - This represents a fixed register that is dumped in.
335 RegOperand
Chris Lattner1d13bda2010-11-04 00:43:46 +0000336 } Kind;
Bob Wilson828295b2011-01-26 21:26:19 +0000337
Chris Lattner1d13bda2010-11-04 00:43:46 +0000338 union {
339 /// This is the operand # in the AsmOperands list that this should be
340 /// copied from.
341 unsigned AsmOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000342
Chris Lattner1d13bda2010-11-04 00:43:46 +0000343 /// TiedOperandNum - This is the (earlier) result operand that should be
344 /// copied from.
345 unsigned TiedOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000346
Chris Lattner98c870f2010-11-06 19:25:43 +0000347 /// ImmVal - This is the immediate value added to the instruction.
348 int64_t ImmVal;
Bob Wilson828295b2011-01-26 21:26:19 +0000349
Chris Lattner90fd7972010-11-06 19:57:21 +0000350 /// Register - This is the register record.
351 Record *Register;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000352 };
Bob Wilson828295b2011-01-26 21:26:19 +0000353
Bob Wilsona49c7df2011-01-26 19:44:55 +0000354 /// MINumOperands - The number of MCInst operands populated by this
355 /// operand.
356 unsigned MINumOperands;
Bob Wilson828295b2011-01-26 21:26:19 +0000357
Bob Wilsona49c7df2011-01-26 19:44:55 +0000358 static ResOperand getRenderedOp(unsigned AsmOpNum, unsigned NumOperands) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000359 ResOperand X;
360 X.Kind = RenderAsmOperand;
361 X.AsmOperandNum = AsmOpNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000362 X.MINumOperands = NumOperands;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000363 return X;
364 }
Bob Wilson828295b2011-01-26 21:26:19 +0000365
Bob Wilsona49c7df2011-01-26 19:44:55 +0000366 static ResOperand getTiedOp(unsigned TiedOperandNum) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000367 ResOperand X;
368 X.Kind = TiedOperand;
369 X.TiedOperandNum = TiedOperandNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000370 X.MINumOperands = 1;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000371 return X;
372 }
Bob Wilson828295b2011-01-26 21:26:19 +0000373
Bob Wilsona49c7df2011-01-26 19:44:55 +0000374 static ResOperand getImmOp(int64_t Val) {
Chris Lattner98c870f2010-11-06 19:25:43 +0000375 ResOperand X;
376 X.Kind = ImmOperand;
377 X.ImmVal = Val;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000378 X.MINumOperands = 1;
Chris Lattner98c870f2010-11-06 19:25:43 +0000379 return X;
380 }
Bob Wilson828295b2011-01-26 21:26:19 +0000381
Bob Wilsona49c7df2011-01-26 19:44:55 +0000382 static ResOperand getRegOp(Record *Reg) {
Chris Lattner90fd7972010-11-06 19:57:21 +0000383 ResOperand X;
384 X.Kind = RegOperand;
385 X.Register = Reg;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000386 X.MINumOperands = 1;
Chris Lattner90fd7972010-11-06 19:57:21 +0000387 return X;
388 }
Chris Lattner1d13bda2010-11-04 00:43:46 +0000389 };
Daniel Dunbar20927f22009-08-07 08:26:05 +0000390
Devang Patel56315d32012-01-10 17:50:43 +0000391 /// AsmVariantID - Target's assembly syntax variant no.
392 int AsmVariantID;
393
Chris Lattner3b5aec62010-11-02 17:34:28 +0000394 /// TheDef - This is the definition of the instruction or InstAlias that this
395 /// matchable came from.
Chris Lattner5bc93872010-11-01 04:34:44 +0000396 Record *const TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000397
Chris Lattnerc07bd402010-11-04 02:11:18 +0000398 /// DefRec - This is the definition that it came from.
399 PointerUnion<const CodeGenInstruction*, const CodeGenInstAlias*> DefRec;
Bob Wilson828295b2011-01-26 21:26:19 +0000400
Chris Lattner662e5a32010-11-06 07:14:44 +0000401 const CodeGenInstruction *getResultInst() const {
402 if (DefRec.is<const CodeGenInstruction*>())
403 return DefRec.get<const CodeGenInstruction*>();
404 return DefRec.get<const CodeGenInstAlias*>()->ResultInst;
405 }
Bob Wilson828295b2011-01-26 21:26:19 +0000406
Chris Lattner1d13bda2010-11-04 00:43:46 +0000407 /// ResOperands - This is the operand list that should be built for the result
408 /// MCInst.
Jim Grosbachb423d182012-04-19 17:52:34 +0000409 SmallVector<ResOperand, 8> ResOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000410
411 /// AsmString - The assembly string for this instruction (with variants
Chris Lattner3b5aec62010-11-02 17:34:28 +0000412 /// removed), e.g. "movsx $src, $dst".
Daniel Dunbar20927f22009-08-07 08:26:05 +0000413 std::string AsmString;
414
Chris Lattnerd19ec052010-11-02 17:30:52 +0000415 /// Mnemonic - This is the first token of the matched instruction, its
416 /// mnemonic.
417 StringRef Mnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +0000418
Chris Lattner3116fef2010-11-02 01:03:43 +0000419 /// AsmOperands - The textual operands that this instruction matches,
Chris Lattner3b5aec62010-11-02 17:34:28 +0000420 /// annotated with a class and where in the OperandList they were defined.
421 /// This directly corresponds to the tokenized AsmString after the mnemonic is
422 /// removed.
Jim Grosbachb423d182012-04-19 17:52:34 +0000423 SmallVector<AsmOperand, 8> AsmOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000424
Daniel Dunbar54074b52010-07-19 05:44:09 +0000425 /// Predicates - The required subtarget features to match this instruction.
426 SmallVector<SubtargetFeatureInfo*, 4> RequiredFeatures;
427
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000428 /// ConversionFnKind - The enum value which is passed to the generated
Chad Rosier90e11f82012-09-05 01:02:38 +0000429 /// convertToMCInst to convert parsed operands into an MCInst for this
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000430 /// function.
431 std::string ConversionFnKind;
Bob Wilson828295b2011-01-26 21:26:19 +0000432
Chris Lattner22bc5c42010-11-01 05:06:45 +0000433 MatchableInfo(const CodeGenInstruction &CGI)
Jim Grosbachf35307c2012-01-24 21:06:59 +0000434 : AsmVariantID(0), TheDef(CGI.TheDef), DefRec(&CGI),
Devang Patel56315d32012-01-10 17:50:43 +0000435 AsmString(CGI.AsmString) {
Chris Lattner5bc93872010-11-01 04:34:44 +0000436 }
437
Chris Lattner22bc5c42010-11-01 05:06:45 +0000438 MatchableInfo(const CodeGenInstAlias *Alias)
Jim Grosbachf35307c2012-01-24 21:06:59 +0000439 : AsmVariantID(0), TheDef(Alias->TheDef), DefRec(Alias),
Devang Patel56315d32012-01-10 17:50:43 +0000440 AsmString(Alias->AsmString) {
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000441 }
Bob Wilson828295b2011-01-26 21:26:19 +0000442
Jim Grosbachc1922c72012-04-19 23:59:23 +0000443 // Two-operand aliases clone from the main matchable, but mark the second
444 // operand as a tied operand of the first for purposes of the assembler.
445 void formTwoOperandAlias(StringRef Constraint);
446
Jim Grosbach8caecde2012-04-19 17:52:32 +0000447 void initialize(const AsmMatcherInfo &Info,
Jim Grosbachf35307c2012-01-24 21:06:59 +0000448 SmallPtrSet<Record*, 16> &SingletonRegisters,
Jim Grosbach11fc6462012-04-11 21:02:33 +0000449 int AsmVariantNo, std::string &RegisterPrefix);
Bob Wilson828295b2011-01-26 21:26:19 +0000450
Jim Grosbach8caecde2012-04-19 17:52:32 +0000451 /// validate - Return true if this matchable is a valid thing to match against
Chris Lattner22bc5c42010-11-01 05:06:45 +0000452 /// and perform a bunch of validity checking.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000453 bool validate(StringRef CommentDelimiter, bool Hack) const;
Bob Wilson828295b2011-01-26 21:26:19 +0000454
Jim Grosbachf35307c2012-01-24 21:06:59 +0000455 /// extractSingletonRegisterForAsmOperand - Extract singleton register,
Devang Patel63faf822012-01-07 01:33:34 +0000456 /// if present, from specified token.
457 void
458 extractSingletonRegisterForAsmOperand(unsigned i, const AsmMatcherInfo &Info,
459 std::string &RegisterPrefix);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000460
Jim Grosbach8caecde2012-04-19 17:52:32 +0000461 /// findAsmOperand - Find the AsmOperand with the specified name and
Bob Wilsona49c7df2011-01-26 19:44:55 +0000462 /// suboperand index.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000463 int findAsmOperand(StringRef N, int SubOpIdx) const {
Bob Wilsona49c7df2011-01-26 19:44:55 +0000464 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
465 if (N == AsmOperands[i].SrcOpName &&
466 SubOpIdx == AsmOperands[i].SubOpIdx)
467 return i;
468 return -1;
469 }
Bob Wilson828295b2011-01-26 21:26:19 +0000470
Jim Grosbach8caecde2012-04-19 17:52:32 +0000471 /// findAsmOperandNamed - Find the first AsmOperand with the specified name.
Bob Wilsona49c7df2011-01-26 19:44:55 +0000472 /// This does not check the suboperand index.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000473 int findAsmOperandNamed(StringRef N) const {
Chris Lattnerba3b5b62010-11-04 01:55:23 +0000474 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
475 if (N == AsmOperands[i].SrcOpName)
476 return i;
477 return -1;
478 }
Bob Wilson828295b2011-01-26 21:26:19 +0000479
Jim Grosbach8caecde2012-04-19 17:52:32 +0000480 void buildInstructionResultOperands();
481 void buildAliasResultOperands();
Chris Lattner1d13bda2010-11-04 00:43:46 +0000482
Chris Lattner22bc5c42010-11-01 05:06:45 +0000483 /// operator< - Compare two matchables.
484 bool operator<(const MatchableInfo &RHS) const {
Chris Lattnere206fcf2010-09-06 21:01:37 +0000485 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000486 if (Mnemonic != RHS.Mnemonic)
487 return Mnemonic < RHS.Mnemonic;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000488
Chris Lattner3116fef2010-11-02 01:03:43 +0000489 if (AsmOperands.size() != RHS.AsmOperands.size())
490 return AsmOperands.size() < RHS.AsmOperands.size();
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000491
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000492 // Compare lexicographically by operand. The matcher validates that other
Jim Grosbach8caecde2012-04-19 17:52:32 +0000493 // orderings wouldn't be ambiguous using \see couldMatchAmbiguouslyWith().
Chris Lattner3116fef2010-11-02 01:03:43 +0000494 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
495 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000496 return true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000497 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000498 return false;
499 }
500
Andrew Trick2b70dfa2012-08-29 03:52:57 +0000501 // Give matches that require more features higher precedence. This is useful
502 // because we cannot define AssemblerPredicates with the negation of
503 // processor features. For example, ARM v6 "nop" may be either a HINT or
504 // MOV. With v6, we want to match HINT. The assembler has no way to
505 // predicate MOV under "NoV6", but HINT will always match first because it
506 // requires V6 while MOV does not.
507 if (RequiredFeatures.size() != RHS.RequiredFeatures.size())
508 return RequiredFeatures.size() > RHS.RequiredFeatures.size();
509
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000510 return false;
511 }
512
Jim Grosbach8caecde2012-04-19 17:52:32 +0000513 /// couldMatchAmbiguouslyWith - Check whether this matchable could
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +0000514 /// ambiguously match the same set of operands as \p RHS (without being a
Daniel Dunbar2b544812009-08-09 06:05:33 +0000515 /// strictly superior match).
Jim Grosbach8caecde2012-04-19 17:52:32 +0000516 bool couldMatchAmbiguouslyWith(const MatchableInfo &RHS) {
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000517 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000518 if (Mnemonic != RHS.Mnemonic)
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000519 return false;
Bob Wilson828295b2011-01-26 21:26:19 +0000520
Daniel Dunbar2b544812009-08-09 06:05:33 +0000521 // The number of operands is unambiguous.
Chris Lattner3116fef2010-11-02 01:03:43 +0000522 if (AsmOperands.size() != RHS.AsmOperands.size())
Daniel Dunbar2b544812009-08-09 06:05:33 +0000523 return false;
524
Daniel Dunbar1402f0b2010-01-23 00:26:16 +0000525 // Otherwise, make sure the ordering of the two instructions is unambiguous
526 // by checking that either (a) a token or operand kind discriminates them,
527 // or (b) the ordering among equivalent kinds is consistent.
528
Daniel Dunbar2b544812009-08-09 06:05:33 +0000529 // Tokens and operand kinds are unambiguous (assuming a correct target
530 // specific parser).
Chris Lattner3116fef2010-11-02 01:03:43 +0000531 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
532 if (AsmOperands[i].Class->Kind != RHS.AsmOperands[i].Class->Kind ||
533 AsmOperands[i].Class->Kind == ClassInfo::Token)
534 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class ||
535 *RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000536 return false;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000537
Daniel Dunbar2b544812009-08-09 06:05:33 +0000538 // Otherwise, this operand could commute if all operands are equivalent, or
539 // there is a pair of operands that compare less than and a pair that
540 // compare greater than.
541 bool HasLT = false, HasGT = false;
Chris Lattner3116fef2010-11-02 01:03:43 +0000542 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
543 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000544 HasLT = true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000545 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000546 HasGT = true;
547 }
548
549 return !(HasLT ^ HasGT);
550 }
551
Daniel Dunbar20927f22009-08-07 08:26:05 +0000552 void dump();
Bob Wilson828295b2011-01-26 21:26:19 +0000553
Chris Lattnerd19ec052010-11-02 17:30:52 +0000554private:
Jim Grosbach8caecde2012-04-19 17:52:32 +0000555 void tokenizeAsmString(const AsmMatcherInfo &Info);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000556};
557
Daniel Dunbar54074b52010-07-19 05:44:09 +0000558/// SubtargetFeatureInfo - Helper class for storing information on a subtarget
559/// feature which participates in instruction matching.
560struct SubtargetFeatureInfo {
561 /// \brief The predicate record for this feature.
562 Record *TheDef;
563
564 /// \brief An unique index assigned to represent this feature.
565 unsigned Index;
566
Chris Lattner0aed1e72010-10-30 20:07:57 +0000567 SubtargetFeatureInfo(Record *D, unsigned Idx) : TheDef(D), Index(Idx) {}
Bob Wilson828295b2011-01-26 21:26:19 +0000568
Daniel Dunbar54074b52010-07-19 05:44:09 +0000569 /// \brief The name of the enumerated constant identifying this feature.
Chris Lattner0aed1e72010-10-30 20:07:57 +0000570 std::string getEnumName() const {
571 return "Feature_" + TheDef->getName();
572 }
Daniel Dunbar54074b52010-07-19 05:44:09 +0000573};
574
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000575struct OperandMatchEntry {
576 unsigned OperandMask;
577 MatchableInfo* MI;
578 ClassInfo *CI;
579
Jim Grosbach8caecde2012-04-19 17:52:32 +0000580 static OperandMatchEntry create(MatchableInfo* mi, ClassInfo *ci,
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000581 unsigned opMask) {
582 OperandMatchEntry X;
583 X.OperandMask = opMask;
584 X.CI = ci;
585 X.MI = mi;
586 return X;
587 }
588};
589
590
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000591class AsmMatcherInfo {
592public:
Chris Lattner67db8832010-12-13 00:23:57 +0000593 /// Tracked Records
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000594 RecordKeeper &Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000595
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000596 /// The tablegen AsmParser record.
597 Record *AsmParser;
598
Chris Lattner02bcbc92010-11-01 01:37:30 +0000599 /// Target - The target information.
600 CodeGenTarget &Target;
601
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000602 /// The classes which are needed for matching.
603 std::vector<ClassInfo*> Classes;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000604
Chris Lattner22bc5c42010-11-01 05:06:45 +0000605 /// The information on the matchables to match.
606 std::vector<MatchableInfo*> Matchables;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000607
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000608 /// Info for custom matching operands by user defined methods.
609 std::vector<OperandMatchEntry> OperandMatchInfo;
610
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000611 /// Map of Register records to their class information.
Sean Silvadecfdf52012-09-19 01:47:01 +0000612 typedef std::map<Record*, ClassInfo*, LessRecordByID> RegisterClassesTy;
613 RegisterClassesTy RegisterClasses;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000614
Daniel Dunbar54074b52010-07-19 05:44:09 +0000615 /// Map of Predicate records to their subtarget information.
616 std::map<Record*, SubtargetFeatureInfo*> SubtargetFeatures;
Bob Wilson828295b2011-01-26 21:26:19 +0000617
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +0000618 /// Map of AsmOperandClass records to their class information.
619 std::map<Record*, ClassInfo*> AsmOperandClasses;
620
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000621private:
622 /// Map of token to class information which has already been constructed.
623 std::map<std::string, ClassInfo*> TokenClasses;
624
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000625 /// Map of RegisterClass records to their class information.
626 std::map<Record*, ClassInfo*> RegisterClassClasses;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000627
628private:
629 /// getTokenClass - Lookup or create the class for the given token.
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000630 ClassInfo *getTokenClass(StringRef Token);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000631
632 /// getOperandClass - Lookup or create the class for the given operand.
Bob Wilsona49c7df2011-01-26 19:44:55 +0000633 ClassInfo *getOperandClass(const CGIOperandList::OperandInfo &OI,
Jim Grosbach48c1f842011-10-28 22:32:53 +0000634 int SubOpIdx);
635 ClassInfo *getOperandClass(Record *Rec, int SubOpIdx);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000636
Jim Grosbach8caecde2012-04-19 17:52:32 +0000637 /// buildRegisterClasses - Build the ClassInfo* instances for register
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000638 /// classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000639 void buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters);
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000640
Jim Grosbach8caecde2012-04-19 17:52:32 +0000641 /// buildOperandClasses - Build the ClassInfo* instances for user defined
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000642 /// operand classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000643 void buildOperandClasses();
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000644
Jim Grosbach8caecde2012-04-19 17:52:32 +0000645 void buildInstructionOperandReference(MatchableInfo *II, StringRef OpName,
Bob Wilsona49c7df2011-01-26 19:44:55 +0000646 unsigned AsmOpIdx);
Jim Grosbach8caecde2012-04-19 17:52:32 +0000647 void buildAliasOperandReference(MatchableInfo *II, StringRef OpName,
Chris Lattnerc07bd402010-11-04 02:11:18 +0000648 MatchableInfo::AsmOperand &Op);
Bob Wilson828295b2011-01-26 21:26:19 +0000649
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000650public:
Bob Wilson828295b2011-01-26 21:26:19 +0000651 AsmMatcherInfo(Record *AsmParser,
652 CodeGenTarget &Target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000653 RecordKeeper &Records);
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000654
Jim Grosbach8caecde2012-04-19 17:52:32 +0000655 /// buildInfo - Construct the various tables used during matching.
656 void buildInfo();
Bob Wilson828295b2011-01-26 21:26:19 +0000657
Jim Grosbach8caecde2012-04-19 17:52:32 +0000658 /// buildOperandMatchInfo - Build the necessary information to handle user
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000659 /// defined operand parsing methods.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000660 void buildOperandMatchInfo();
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000661
Chris Lattner6fa152c2010-10-30 20:15:02 +0000662 /// getSubtargetFeature - Lookup or create the subtarget feature info for the
663 /// given operand.
664 SubtargetFeatureInfo *getSubtargetFeature(Record *Def) const {
665 assert(Def->isSubClassOf("Predicate") && "Invalid predicate type!");
666 std::map<Record*, SubtargetFeatureInfo*>::const_iterator I =
667 SubtargetFeatures.find(Def);
668 return I == SubtargetFeatures.end() ? 0 : I->second;
669 }
Chris Lattner67db8832010-12-13 00:23:57 +0000670
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000671 RecordKeeper &getRecords() const {
672 return Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000673 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000674};
675
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000676} // End anonymous namespace
Daniel Dunbar20927f22009-08-07 08:26:05 +0000677
Chris Lattner22bc5c42010-11-01 05:06:45 +0000678void MatchableInfo::dump() {
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000679 errs() << TheDef->getName() << " -- " << "flattened:\"" << AsmString <<"\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000680
Chris Lattner3116fef2010-11-02 01:03:43 +0000681 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000682 AsmOperand &Op = AsmOperands[i];
Daniel Dunbar6745d422009-08-09 05:18:30 +0000683 errs() << " op[" << i << "] = " << Op.Class->ClassName << " - ";
Chris Lattner0bb780c2010-11-04 00:57:06 +0000684 errs() << '\"' << Op.Token << "\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000685 }
686}
687
Jim Grosbachc1922c72012-04-19 23:59:23 +0000688static std::pair<StringRef, StringRef>
Jakob Stoklund Olesen376a8a72012-08-22 23:33:58 +0000689parseTwoOperandConstraint(StringRef S, ArrayRef<SMLoc> Loc) {
Jim Grosbachc1922c72012-04-19 23:59:23 +0000690 // Split via the '='.
691 std::pair<StringRef, StringRef> Ops = S.split('=');
692 if (Ops.second == "")
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000693 PrintFatalError(Loc, "missing '=' in two-operand alias constraint");
Jim Grosbachc1922c72012-04-19 23:59:23 +0000694 // Trim whitespace and the leading '$' on the operand names.
695 size_t start = Ops.first.find_first_of('$');
696 if (start == std::string::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000697 PrintFatalError(Loc, "expected '$' prefix on asm operand name");
Jim Grosbachc1922c72012-04-19 23:59:23 +0000698 Ops.first = Ops.first.slice(start + 1, std::string::npos);
699 size_t end = Ops.first.find_last_of(" \t");
700 Ops.first = Ops.first.slice(0, end);
701 // Now the second operand.
702 start = Ops.second.find_first_of('$');
703 if (start == std::string::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000704 PrintFatalError(Loc, "expected '$' prefix on asm operand name");
Jim Grosbachc1922c72012-04-19 23:59:23 +0000705 Ops.second = Ops.second.slice(start + 1, std::string::npos);
706 end = Ops.second.find_last_of(" \t");
707 Ops.first = Ops.first.slice(0, end);
708 return Ops;
709}
710
711void MatchableInfo::formTwoOperandAlias(StringRef Constraint) {
712 // Figure out which operands are aliased and mark them as tied.
713 std::pair<StringRef, StringRef> Ops =
714 parseTwoOperandConstraint(Constraint, TheDef->getLoc());
715
716 // Find the AsmOperands that refer to the operands we're aliasing.
717 int SrcAsmOperand = findAsmOperandNamed(Ops.first);
718 int DstAsmOperand = findAsmOperandNamed(Ops.second);
719 if (SrcAsmOperand == -1)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000720 PrintFatalError(TheDef->getLoc(),
Jim Grosbachc1922c72012-04-19 23:59:23 +0000721 "unknown source two-operand alias operand '" +
722 Ops.first.str() + "'.");
723 if (DstAsmOperand == -1)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000724 PrintFatalError(TheDef->getLoc(),
Jim Grosbachc1922c72012-04-19 23:59:23 +0000725 "unknown destination two-operand alias operand '" +
726 Ops.second.str() + "'.");
727
728 // Find the ResOperand that refers to the operand we're aliasing away
729 // and update it to refer to the combined operand instead.
730 for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
731 ResOperand &Op = ResOperands[i];
732 if (Op.Kind == ResOperand::RenderAsmOperand &&
733 Op.AsmOperandNum == (unsigned)SrcAsmOperand) {
734 Op.AsmOperandNum = DstAsmOperand;
735 break;
736 }
737 }
738 // Remove the AsmOperand for the alias operand.
739 AsmOperands.erase(AsmOperands.begin() + SrcAsmOperand);
740 // Adjust the ResOperand references to any AsmOperands that followed
741 // the one we just deleted.
742 for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
743 ResOperand &Op = ResOperands[i];
744 switch(Op.Kind) {
745 default:
746 // Nothing to do for operands that don't reference AsmOperands.
747 break;
748 case ResOperand::RenderAsmOperand:
749 if (Op.AsmOperandNum > (unsigned)SrcAsmOperand)
750 --Op.AsmOperandNum;
751 break;
752 case ResOperand::TiedOperand:
753 if (Op.TiedOperandNum > (unsigned)SrcAsmOperand)
754 --Op.TiedOperandNum;
755 break;
756 }
757 }
758}
759
Jim Grosbach8caecde2012-04-19 17:52:32 +0000760void MatchableInfo::initialize(const AsmMatcherInfo &Info,
Devang Patel63faf822012-01-07 01:33:34 +0000761 SmallPtrSet<Record*, 16> &SingletonRegisters,
762 int AsmVariantNo, std::string &RegisterPrefix) {
Devang Patel56315d32012-01-10 17:50:43 +0000763 AsmVariantID = AsmVariantNo;
Jim Grosbachf35307c2012-01-24 21:06:59 +0000764 AsmString =
Devang Patel63faf822012-01-07 01:33:34 +0000765 CodeGenInstruction::FlattenAsmStringVariants(AsmString, AsmVariantNo);
Bob Wilson828295b2011-01-26 21:26:19 +0000766
Jim Grosbach8caecde2012-04-19 17:52:32 +0000767 tokenizeAsmString(Info);
Bob Wilson828295b2011-01-26 21:26:19 +0000768
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000769 // Compute the require features.
770 std::vector<Record*> Predicates =TheDef->getValueAsListOfDefs("Predicates");
771 for (unsigned i = 0, e = Predicates.size(); i != e; ++i)
772 if (SubtargetFeatureInfo *Feature =
773 Info.getSubtargetFeature(Predicates[i]))
774 RequiredFeatures.push_back(Feature);
Bob Wilson828295b2011-01-26 21:26:19 +0000775
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000776 // Collect singleton registers, if used.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000777 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Devang Patel63faf822012-01-07 01:33:34 +0000778 extractSingletonRegisterForAsmOperand(i, Info, RegisterPrefix);
779 if (Record *Reg = AsmOperands[i].SingletonReg)
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000780 SingletonRegisters.insert(Reg);
781 }
782}
783
Jim Grosbach8caecde2012-04-19 17:52:32 +0000784/// tokenizeAsmString - Tokenize a simplified assembly string.
785void MatchableInfo::tokenizeAsmString(const AsmMatcherInfo &Info) {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000786 StringRef String = AsmString;
787 unsigned Prev = 0;
788 bool InTok = true;
789 for (unsigned i = 0, e = String.size(); i != e; ++i) {
790 switch (String[i]) {
791 case '[':
792 case ']':
793 case '*':
794 case '!':
795 case ' ':
796 case '\t':
797 case ',':
798 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000799 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000800 InTok = false;
801 }
802 if (!isspace(String[i]) && String[i] != ',')
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000803 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000804 Prev = i + 1;
805 break;
806
807 case '\\':
808 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000809 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000810 InTok = false;
811 }
812 ++i;
813 assert(i != String.size() && "Invalid quoted character");
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000814 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000815 Prev = i + 1;
816 break;
817
818 case '$': {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000819 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000820 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000821 InTok = false;
822 }
Bob Wilson828295b2011-01-26 21:26:19 +0000823
Chris Lattner7ad31472010-11-06 22:06:03 +0000824 // If this isn't "${", treat like a normal token.
825 if (i + 1 == String.size() || String[i + 1] != '{') {
826 Prev = i;
827 break;
828 }
Chris Lattnerd19ec052010-11-02 17:30:52 +0000829
830 StringRef::iterator End = std::find(String.begin() + i, String.end(),'}');
831 assert(End != String.end() && "Missing brace in operand reference!");
832 size_t EndPos = End - String.begin();
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000833 AsmOperands.push_back(AsmOperand(String.slice(i, EndPos+1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000834 Prev = EndPos + 1;
835 i = EndPos;
836 break;
837 }
838
839 case '.':
Vladimir Medic588f4082013-08-01 09:25:27 +0000840 if (!Info.AsmParser->getValueAsBit("MnemonicContainsDot")) {
Vladimir Medic92731512013-07-16 09:22:38 +0000841 if (InTok)
842 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
843 Prev = i;
844 }
Chris Lattnerd19ec052010-11-02 17:30:52 +0000845 InTok = true;
846 break;
847
848 default:
849 InTok = true;
850 }
851 }
852 if (InTok && Prev != String.size())
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000853 AsmOperands.push_back(AsmOperand(String.substr(Prev)));
Bob Wilson828295b2011-01-26 21:26:19 +0000854
Chris Lattnerd19ec052010-11-02 17:30:52 +0000855 // The first token of the instruction is the mnemonic, which must be a
856 // simple string, not a $foo variable or a singleton register.
Jim Grosbach4a2242c2011-11-30 23:16:25 +0000857 if (AsmOperands.empty())
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000858 PrintFatalError(TheDef->getLoc(),
Jim Grosbach4a2242c2011-11-30 23:16:25 +0000859 "Instruction '" + TheDef->getName() + "' has no tokens");
Chris Lattnerd19ec052010-11-02 17:30:52 +0000860 Mnemonic = AsmOperands[0].Token;
Jim Grosbach8e27c962012-05-06 17:33:14 +0000861 if (Mnemonic.empty())
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000862 PrintFatalError(TheDef->getLoc(),
Jim Grosbach8e27c962012-05-06 17:33:14 +0000863 "Missing instruction mnemonic");
Devang Patel63faf822012-01-07 01:33:34 +0000864 // FIXME : Check and raise an error if it is a register.
Devang Patelb78307f2012-01-07 01:22:23 +0000865 if (Mnemonic[0] == '$')
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000866 PrintFatalError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000867 "Invalid instruction mnemonic '" + Mnemonic.str() + "'!");
Bob Wilson828295b2011-01-26 21:26:19 +0000868
Chris Lattnerd19ec052010-11-02 17:30:52 +0000869 // Remove the first operand, it is tracked in the mnemonic field.
870 AsmOperands.erase(AsmOperands.begin());
871}
872
Jim Grosbach8caecde2012-04-19 17:52:32 +0000873bool MatchableInfo::validate(StringRef CommentDelimiter, bool Hack) const {
Chris Lattner22bc5c42010-11-01 05:06:45 +0000874 // Reject matchables with no .s string.
Chris Lattner5bc93872010-11-01 04:34:44 +0000875 if (AsmString.empty())
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000876 PrintFatalError(TheDef->getLoc(), "instruction with empty asm string");
Bob Wilson828295b2011-01-26 21:26:19 +0000877
Chris Lattner22bc5c42010-11-01 05:06:45 +0000878 // Reject any matchables with a newline in them, they should be marked
Chris Lattner5bc93872010-11-01 04:34:44 +0000879 // isCodeGenOnly if they are pseudo instructions.
880 if (AsmString.find('\n') != std::string::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000881 PrintFatalError(TheDef->getLoc(),
Chris Lattner5bc93872010-11-01 04:34:44 +0000882 "multiline instruction is not valid for the asmparser, "
883 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000884
Chris Lattner4164f6b2010-11-01 04:44:29 +0000885 // Remove comments from the asm string. We know that the asmstring only
886 // has one line.
887 if (!CommentDelimiter.empty() &&
888 StringRef(AsmString).find(CommentDelimiter) != StringRef::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000889 PrintFatalError(TheDef->getLoc(),
Chris Lattner4164f6b2010-11-01 04:44:29 +0000890 "asmstring for instruction has comment character in it, "
891 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000892
Chris Lattner22bc5c42010-11-01 05:06:45 +0000893 // Reject matchables with operand modifiers, these aren't something we can
Bob Wilson906bc362011-01-20 18:38:07 +0000894 // handle, the target should be refactored to use operands instead of
895 // modifiers.
Chris Lattner5bc93872010-11-01 04:34:44 +0000896 //
897 // Also, check for instructions which reference the operand multiple times;
898 // this implies a constraint we would not honor.
899 std::set<std::string> OperandNames;
Chris Lattnerd19ec052010-11-02 17:30:52 +0000900 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
901 StringRef Tok = AsmOperands[i].Token;
902 if (Tok[0] == '$' && Tok.find(':') != StringRef::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000903 PrintFatalError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000904 "matchable with operand modifier '" + Tok.str() +
Chris Lattner5bc93872010-11-01 04:34:44 +0000905 "' not supported by asm matcher. Mark isCodeGenOnly!");
Bob Wilson828295b2011-01-26 21:26:19 +0000906
Chris Lattner22bc5c42010-11-01 05:06:45 +0000907 // Verify that any operand is only mentioned once.
Chris Lattnerd51257a2010-11-02 23:18:43 +0000908 // We reject aliases and ignore instructions for now.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000909 if (Tok[0] == '$' && !OperandNames.insert(Tok).second) {
Chris Lattner22bc5c42010-11-01 05:06:45 +0000910 if (!Hack)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000911 PrintFatalError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000912 "ERROR: matchable with tied operand '" + Tok.str() +
Chris Lattner22bc5c42010-11-01 05:06:45 +0000913 "' can never be matched!");
914 // FIXME: Should reject these. The ARM backend hits this with $lane in a
915 // bunch of instructions. It is unclear what the right answer is.
Chris Lattner5bc93872010-11-01 04:34:44 +0000916 DEBUG({
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000917 errs() << "warning: '" << TheDef->getName() << "': "
Chris Lattner22bc5c42010-11-01 05:06:45 +0000918 << "ignoring instruction with tied operand '"
Chris Lattnerd19ec052010-11-02 17:30:52 +0000919 << Tok.str() << "'\n";
Chris Lattner5bc93872010-11-01 04:34:44 +0000920 });
921 return false;
922 }
923 }
Bob Wilson828295b2011-01-26 21:26:19 +0000924
Chris Lattner5bc93872010-11-01 04:34:44 +0000925 return true;
926}
927
Jim Grosbachf35307c2012-01-24 21:06:59 +0000928/// extractSingletonRegisterForAsmOperand - Extract singleton register,
Devang Pateld06b01c2012-01-09 21:30:46 +0000929/// if present, from specified token.
Devang Patel63faf822012-01-07 01:33:34 +0000930void MatchableInfo::
Jim Grosbachf35307c2012-01-24 21:06:59 +0000931extractSingletonRegisterForAsmOperand(unsigned OperandNo,
Devang Pateld06b01c2012-01-09 21:30:46 +0000932 const AsmMatcherInfo &Info,
Jim Grosbach11fc6462012-04-11 21:02:33 +0000933 std::string &RegisterPrefix) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000934 StringRef Tok = AsmOperands[OperandNo].Token;
Devang Patel63faf822012-01-07 01:33:34 +0000935 if (RegisterPrefix.empty()) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000936 std::string LoweredTok = Tok.lower();
937 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(LoweredTok))
938 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Devang Patel63faf822012-01-07 01:33:34 +0000939 return;
Jim Grosbachf35307c2012-01-24 21:06:59 +0000940 }
Bob Wilson828295b2011-01-26 21:26:19 +0000941
Devang Patel63faf822012-01-07 01:33:34 +0000942 if (!Tok.startswith(RegisterPrefix))
943 return;
944
945 StringRef RegName = Tok.substr(RegisterPrefix.size());
Chris Lattnerec6f0962010-11-02 18:10:06 +0000946 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(RegName))
Devang Pateld06b01c2012-01-09 21:30:46 +0000947 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000948
Chris Lattner1de88232010-11-01 01:47:07 +0000949 // If there is no register prefix (i.e. "%" in "%eax"), then this may
950 // be some random non-register token, just ignore it.
Devang Patel63faf822012-01-07 01:33:34 +0000951 return;
Chris Lattner02bcbc92010-11-01 01:37:30 +0000952}
953
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000954static std::string getEnumNameForToken(StringRef Str) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000955 std::string Res;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000956
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000957 for (StringRef::iterator it = Str.begin(), ie = Str.end(); it != ie; ++it) {
958 switch (*it) {
959 case '*': Res += "_STAR_"; break;
960 case '%': Res += "_PCT_"; break;
961 case ':': Res += "_COLON_"; break;
Bill Wendlingbd9c77b2010-11-18 23:36:54 +0000962 case '!': Res += "_EXCLAIM_"; break;
Bill Wendling0ef755d2011-01-22 09:44:32 +0000963 case '.': Res += "_DOT_"; break;
Tim Northover12da5052013-01-10 16:47:31 +0000964 case '<': Res += "_LT_"; break;
965 case '>': Res += "_GT_"; break;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000966 default:
Tim Northover12da5052013-01-10 16:47:31 +0000967 if ((*it >= 'A' && *it <= 'Z') ||
968 (*it >= 'a' && *it <= 'z') ||
969 (*it >= '0' && *it <= '9'))
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000970 Res += *it;
Chris Lattner39ee0362010-10-31 19:10:56 +0000971 else
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000972 Res += "_" + utostr((unsigned) *it) + "_";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000973 }
974 }
975
976 return Res;
977}
978
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000979ClassInfo *AsmMatcherInfo::getTokenClass(StringRef Token) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000980 ClassInfo *&Entry = TokenClasses[Token];
Jim Grosbacha7c78222010-10-29 22:13:48 +0000981
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000982 if (!Entry) {
983 Entry = new ClassInfo();
984 Entry->Kind = ClassInfo::Token;
Daniel Dunbar6745d422009-08-09 05:18:30 +0000985 Entry->ClassName = "Token";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000986 Entry->Name = "MCK_" + getEnumNameForToken(Token);
987 Entry->ValueName = Token;
988 Entry->PredicateMethod = "<invalid>";
989 Entry->RenderMethod = "<invalid>";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000990 Entry->ParserMethod = "";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +0000991 Entry->DiagnosticType = "";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000992 Classes.push_back(Entry);
993 }
994
995 return Entry;
996}
997
998ClassInfo *
Bob Wilsona49c7df2011-01-26 19:44:55 +0000999AsmMatcherInfo::getOperandClass(const CGIOperandList::OperandInfo &OI,
1000 int SubOpIdx) {
1001 Record *Rec = OI.Rec;
1002 if (SubOpIdx != -1)
Sean Silva3f7b7f82012-10-10 20:24:47 +00001003 Rec = cast<DefInit>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
Jim Grosbach48c1f842011-10-28 22:32:53 +00001004 return getOperandClass(Rec, SubOpIdx);
1005}
Bob Wilsona49c7df2011-01-26 19:44:55 +00001006
Jim Grosbach48c1f842011-10-28 22:32:53 +00001007ClassInfo *
1008AsmMatcherInfo::getOperandClass(Record *Rec, int SubOpIdx) {
Owen Andersonbea6f612011-06-27 21:06:21 +00001009 if (Rec->isSubClassOf("RegisterOperand")) {
1010 // RegisterOperand may have an associated ParserMatchClass. If it does,
1011 // use it, else just fall back to the underlying register class.
1012 const RecordVal *R = Rec->getValue("ParserMatchClass");
1013 if (R == 0 || R->getValue() == 0)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001014 PrintFatalError("Record `" + Rec->getName() +
1015 "' does not have a ParserMatchClass!\n");
Owen Andersonbea6f612011-06-27 21:06:21 +00001016
Sean Silva6cfc8062012-10-10 20:24:43 +00001017 if (DefInit *DI= dyn_cast<DefInit>(R->getValue())) {
Owen Andersonbea6f612011-06-27 21:06:21 +00001018 Record *MatchClass = DI->getDef();
1019 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
1020 return CI;
1021 }
1022
1023 // No custom match class. Just use the register class.
1024 Record *ClassRec = Rec->getValueAsDef("RegClass");
1025 if (!ClassRec)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001026 PrintFatalError(Rec->getLoc(), "RegisterOperand `" + Rec->getName() +
Owen Andersonbea6f612011-06-27 21:06:21 +00001027 "' has no associated register class!\n");
1028 if (ClassInfo *CI = RegisterClassClasses[ClassRec])
1029 return CI;
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001030 PrintFatalError(Rec->getLoc(), "register class has no class info!");
Owen Andersonbea6f612011-06-27 21:06:21 +00001031 }
1032
1033
Bob Wilsona49c7df2011-01-26 19:44:55 +00001034 if (Rec->isSubClassOf("RegisterClass")) {
1035 if (ClassInfo *CI = RegisterClassClasses[Rec])
Chris Lattnerec6f0962010-11-02 18:10:06 +00001036 return CI;
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001037 PrintFatalError(Rec->getLoc(), "register class has no class info!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001038 }
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001039
Jim Grosbacha562dc72012-09-12 17:40:25 +00001040 if (!Rec->isSubClassOf("Operand"))
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001041 PrintFatalError(Rec->getLoc(), "Operand `" + Rec->getName() +
Jim Grosbacha562dc72012-09-12 17:40:25 +00001042 "' does not derive from class Operand!\n");
Bob Wilsona49c7df2011-01-26 19:44:55 +00001043 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
Chris Lattnerec6f0962010-11-02 18:10:06 +00001044 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
1045 return CI;
Daniel Dunbar338825c2009-08-10 18:41:10 +00001046
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001047 PrintFatalError(Rec->getLoc(), "operand has no match class!");
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001048}
1049
Chris Lattner1de88232010-11-01 01:47:07 +00001050void AsmMatcherInfo::
Jim Grosbach8caecde2012-04-19 17:52:32 +00001051buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001052 const std::vector<CodeGenRegister*> &Registers =
1053 Target.getRegBank().getRegisters();
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001054 ArrayRef<CodeGenRegisterClass*> RegClassList =
1055 Target.getRegBank().getRegClasses();
Daniel Dunbar338825c2009-08-10 18:41:10 +00001056
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001057 // The register sets used for matching.
1058 std::set< std::set<Record*> > RegisterSets;
1059
Jim Grosbacha7c78222010-10-29 22:13:48 +00001060 // Gather the defined sets.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001061 for (ArrayRef<CodeGenRegisterClass*>::const_iterator it =
Chris Lattnerec6f0962010-11-02 18:10:06 +00001062 RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it)
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001063 RegisterSets.insert(std::set<Record*>(
1064 (*it)->getOrder().begin(), (*it)->getOrder().end()));
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001065
1066 // Add any required singleton sets.
Chris Lattner1de88232010-11-01 01:47:07 +00001067 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1068 ie = SingletonRegisters.end(); it != ie; ++it) {
1069 Record *Rec = *it;
1070 RegisterSets.insert(std::set<Record*>(&Rec, &Rec + 1));
1071 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001072
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001073 // Introduce derived sets where necessary (when a register does not determine
1074 // a unique register set class), and build the mapping of registers to the set
1075 // they should classify to.
1076 std::map<Record*, std::set<Record*> > RegisterMap;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001077 for (std::vector<CodeGenRegister*>::const_iterator it = Registers.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001078 ie = Registers.end(); it != ie; ++it) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001079 const CodeGenRegister &CGR = **it;
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001080 // Compute the intersection of all sets containing this register.
1081 std::set<Record*> ContainingSet;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001082
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001083 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1084 ie = RegisterSets.end(); it != ie; ++it) {
1085 if (!it->count(CGR.TheDef))
1086 continue;
1087
1088 if (ContainingSet.empty()) {
1089 ContainingSet = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +00001090 continue;
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001091 }
Bob Wilson828295b2011-01-26 21:26:19 +00001092
Chris Lattnerec6f0962010-11-02 18:10:06 +00001093 std::set<Record*> Tmp;
1094 std::swap(Tmp, ContainingSet);
1095 std::insert_iterator< std::set<Record*> > II(ContainingSet,
1096 ContainingSet.begin());
1097 std::set_intersection(Tmp.begin(), Tmp.end(), it->begin(), it->end(), II);
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001098 }
1099
1100 if (!ContainingSet.empty()) {
1101 RegisterSets.insert(ContainingSet);
1102 RegisterMap.insert(std::make_pair(CGR.TheDef, ContainingSet));
1103 }
1104 }
1105
1106 // Construct the register classes.
1107 std::map<std::set<Record*>, ClassInfo*> RegisterSetClasses;
1108 unsigned Index = 0;
1109 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1110 ie = RegisterSets.end(); it != ie; ++it, ++Index) {
1111 ClassInfo *CI = new ClassInfo();
1112 CI->Kind = ClassInfo::RegisterClass0 + Index;
1113 CI->ClassName = "Reg" + utostr(Index);
1114 CI->Name = "MCK_Reg" + utostr(Index);
1115 CI->ValueName = "";
1116 CI->PredicateMethod = ""; // unused
1117 CI->RenderMethod = "addRegOperands";
Daniel Dunbar8409bfb2009-08-11 20:10:07 +00001118 CI->Registers = *it;
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00001119 // FIXME: diagnostic type.
1120 CI->DiagnosticType = "";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001121 Classes.push_back(CI);
1122 RegisterSetClasses.insert(std::make_pair(*it, CI));
1123 }
1124
1125 // Find the superclasses; we could compute only the subgroup lattice edges,
1126 // but there isn't really a point.
1127 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1128 ie = RegisterSets.end(); it != ie; ++it) {
1129 ClassInfo *CI = RegisterSetClasses[*it];
1130 for (std::set< std::set<Record*> >::iterator it2 = RegisterSets.begin(),
1131 ie2 = RegisterSets.end(); it2 != ie2; ++it2)
Jim Grosbacha7c78222010-10-29 22:13:48 +00001132 if (*it != *it2 &&
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001133 std::includes(it2->begin(), it2->end(), it->begin(), it->end()))
1134 CI->SuperClasses.push_back(RegisterSetClasses[*it2]);
1135 }
1136
1137 // Name the register classes which correspond to a user defined RegisterClass.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001138 for (ArrayRef<CodeGenRegisterClass*>::const_iterator
Chris Lattnerec6f0962010-11-02 18:10:06 +00001139 it = RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001140 const CodeGenRegisterClass &RC = **it;
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001141 // Def will be NULL for non-user defined register classes.
1142 Record *Def = RC.getDef();
1143 if (!Def)
1144 continue;
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001145 ClassInfo *CI = RegisterSetClasses[std::set<Record*>(RC.getOrder().begin(),
1146 RC.getOrder().end())];
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001147 if (CI->ValueName.empty()) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001148 CI->ClassName = RC.getName();
1149 CI->Name = "MCK_" + RC.getName();
1150 CI->ValueName = RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001151 } else
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001152 CI->ValueName = CI->ValueName + "," + RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001153
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001154 RegisterClassClasses.insert(std::make_pair(Def, CI));
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001155 }
1156
1157 // Populate the map for individual registers.
1158 for (std::map<Record*, std::set<Record*> >::iterator it = RegisterMap.begin(),
1159 ie = RegisterMap.end(); it != ie; ++it)
Chris Lattnerec6f0962010-11-02 18:10:06 +00001160 RegisterClasses[it->first] = RegisterSetClasses[it->second];
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001161
1162 // Name the register classes which correspond to singleton registers.
Chris Lattner1de88232010-11-01 01:47:07 +00001163 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1164 ie = SingletonRegisters.end(); it != ie; ++it) {
1165 Record *Rec = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +00001166 ClassInfo *CI = RegisterClasses[Rec];
Chris Lattner1de88232010-11-01 01:47:07 +00001167 assert(CI && "Missing singleton register class info!");
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001168
Chris Lattner1de88232010-11-01 01:47:07 +00001169 if (CI->ValueName.empty()) {
1170 CI->ClassName = Rec->getName();
1171 CI->Name = "MCK_" + Rec->getName();
1172 CI->ValueName = Rec->getName();
1173 } else
1174 CI->ValueName = CI->ValueName + "," + Rec->getName();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001175 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001176}
1177
Jim Grosbach8caecde2012-04-19 17:52:32 +00001178void AsmMatcherInfo::buildOperandClasses() {
Chris Lattnere66b7eb2010-11-01 23:57:23 +00001179 std::vector<Record*> AsmOperands =
1180 Records.getAllDerivedDefinitions("AsmOperandClass");
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001181
1182 // Pre-populate AsmOperandClasses map.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001183 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001184 ie = AsmOperands.end(); it != ie; ++it)
1185 AsmOperandClasses[*it] = new ClassInfo();
1186
Daniel Dunbar338825c2009-08-10 18:41:10 +00001187 unsigned Index = 0;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001188 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbar338825c2009-08-10 18:41:10 +00001189 ie = AsmOperands.end(); it != ie; ++it, ++Index) {
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001190 ClassInfo *CI = AsmOperandClasses[*it];
Daniel Dunbar338825c2009-08-10 18:41:10 +00001191 CI->Kind = ClassInfo::UserClass0 + Index;
1192
David Greene05bce0b2011-07-29 22:43:06 +00001193 ListInit *Supers = (*it)->getValueAsListInit("SuperClasses");
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001194 for (unsigned i = 0, e = Supers->getSize(); i != e; ++i) {
Sean Silva6cfc8062012-10-10 20:24:43 +00001195 DefInit *DI = dyn_cast<DefInit>(Supers->getElement(i));
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001196 if (!DI) {
1197 PrintError((*it)->getLoc(), "Invalid super class reference!");
1198 continue;
1199 }
1200
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001201 ClassInfo *SC = AsmOperandClasses[DI->getDef()];
1202 if (!SC)
Daniel Dunbar338825c2009-08-10 18:41:10 +00001203 PrintError((*it)->getLoc(), "Invalid super class reference!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001204 else
1205 CI->SuperClasses.push_back(SC);
Daniel Dunbar338825c2009-08-10 18:41:10 +00001206 }
1207 CI->ClassName = (*it)->getValueAsString("Name");
1208 CI->Name = "MCK_" + CI->ClassName;
1209 CI->ValueName = (*it)->getName();
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001210
1211 // Get or construct the predicate method name.
David Greene05bce0b2011-07-29 22:43:06 +00001212 Init *PMName = (*it)->getValueInit("PredicateMethod");
Sean Silva6cfc8062012-10-10 20:24:43 +00001213 if (StringInit *SI = dyn_cast<StringInit>(PMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001214 CI->PredicateMethod = SI->getValue();
1215 } else {
Sean Silva3f7b7f82012-10-10 20:24:47 +00001216 assert(isa<UnsetInit>(PMName) && "Unexpected PredicateMethod field!");
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001217 CI->PredicateMethod = "is" + CI->ClassName;
1218 }
1219
1220 // Get or construct the render method name.
David Greene05bce0b2011-07-29 22:43:06 +00001221 Init *RMName = (*it)->getValueInit("RenderMethod");
Sean Silva6cfc8062012-10-10 20:24:43 +00001222 if (StringInit *SI = dyn_cast<StringInit>(RMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001223 CI->RenderMethod = SI->getValue();
1224 } else {
Sean Silva3f7b7f82012-10-10 20:24:47 +00001225 assert(isa<UnsetInit>(RMName) && "Unexpected RenderMethod field!");
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001226 CI->RenderMethod = "add" + CI->ClassName + "Operands";
1227 }
1228
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001229 // Get the parse method name or leave it as empty.
David Greene05bce0b2011-07-29 22:43:06 +00001230 Init *PRMName = (*it)->getValueInit("ParserMethod");
Sean Silva6cfc8062012-10-10 20:24:43 +00001231 if (StringInit *SI = dyn_cast<StringInit>(PRMName))
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001232 CI->ParserMethod = SI->getValue();
1233
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00001234 // Get the diagnostic type or leave it as empty.
1235 // Get the parse method name or leave it as empty.
1236 Init *DiagnosticType = (*it)->getValueInit("DiagnosticType");
Sean Silva6cfc8062012-10-10 20:24:43 +00001237 if (StringInit *SI = dyn_cast<StringInit>(DiagnosticType))
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00001238 CI->DiagnosticType = SI->getValue();
1239
Daniel Dunbar338825c2009-08-10 18:41:10 +00001240 AsmOperandClasses[*it] = CI;
1241 Classes.push_back(CI);
1242 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001243}
1244
Bob Wilson828295b2011-01-26 21:26:19 +00001245AsmMatcherInfo::AsmMatcherInfo(Record *asmParser,
1246 CodeGenTarget &target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +00001247 RecordKeeper &records)
Devang Patel63faf822012-01-07 01:33:34 +00001248 : Records(records), AsmParser(asmParser), Target(target) {
Daniel Dunbar59fc42d2009-08-11 20:59:47 +00001249}
1250
Jim Grosbach8caecde2012-04-19 17:52:32 +00001251/// buildOperandMatchInfo - Build the necessary information to handle user
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001252/// defined operand parsing methods.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001253void AsmMatcherInfo::buildOperandMatchInfo() {
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001254
Jim Grosbachd4824fc2012-04-18 23:46:25 +00001255 /// Map containing a mask with all operands indices that can be found for
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001256 /// that class inside a instruction.
Sean Silvab2df6102012-09-19 01:47:03 +00001257 typedef std::map<ClassInfo*, unsigned, LessClassInfoPtr> OpClassMaskTy;
1258 OpClassMaskTy OpClassMask;
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001259
1260 for (std::vector<MatchableInfo*>::const_iterator it =
1261 Matchables.begin(), ie = Matchables.end();
1262 it != ie; ++it) {
1263 MatchableInfo &II = **it;
1264 OpClassMask.clear();
1265
1266 // Keep track of all operands of this instructions which belong to the
1267 // same class.
1268 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
1269 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
1270 if (Op.Class->ParserMethod.empty())
1271 continue;
1272 unsigned &OperandMask = OpClassMask[Op.Class];
1273 OperandMask |= (1 << i);
1274 }
1275
1276 // Generate operand match info for each mnemonic/operand class pair.
Sean Silvab2df6102012-09-19 01:47:03 +00001277 for (OpClassMaskTy::iterator iit = OpClassMask.begin(),
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001278 iie = OpClassMask.end(); iit != iie; ++iit) {
1279 unsigned OpMask = iit->second;
1280 ClassInfo *CI = iit->first;
Jim Grosbach8caecde2012-04-19 17:52:32 +00001281 OperandMatchInfo.push_back(OperandMatchEntry::create(&II, CI, OpMask));
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001282 }
1283 }
1284}
1285
Jim Grosbach8caecde2012-04-19 17:52:32 +00001286void AsmMatcherInfo::buildInfo() {
Chris Lattner0aed1e72010-10-30 20:07:57 +00001287 // Build information about all of the AssemblerPredicates.
1288 std::vector<Record*> AllPredicates =
1289 Records.getAllDerivedDefinitions("Predicate");
1290 for (unsigned i = 0, e = AllPredicates.size(); i != e; ++i) {
1291 Record *Pred = AllPredicates[i];
1292 // Ignore predicates that are not intended for the assembler.
1293 if (!Pred->getValueAsBit("AssemblerMatcherPredicate"))
1294 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00001295
Chris Lattner4164f6b2010-11-01 04:44:29 +00001296 if (Pred->getName().empty())
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001297 PrintFatalError(Pred->getLoc(), "Predicate has no name!");
Bob Wilson828295b2011-01-26 21:26:19 +00001298
Chris Lattner0aed1e72010-10-30 20:07:57 +00001299 unsigned FeatureNo = SubtargetFeatures.size();
1300 SubtargetFeatures[Pred] = new SubtargetFeatureInfo(Pred, FeatureNo);
1301 assert(FeatureNo < 32 && "Too many subtarget features!");
1302 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001303
Chris Lattner39ee0362010-10-31 19:10:56 +00001304 // Parse the instructions; we need to do this first so that we can gather the
1305 // singleton register classes.
Chris Lattner1de88232010-11-01 01:47:07 +00001306 SmallPtrSet<Record*, 16> SingletonRegisters;
Devang Patel0dbcada2012-01-09 19:13:28 +00001307 unsigned VariantCount = Target.getAsmParserVariantCount();
1308 for (unsigned VC = 0; VC != VariantCount; ++VC) {
1309 Record *AsmVariant = Target.getAsmParserVariant(VC);
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001310 std::string CommentDelimiter =
1311 AsmVariant->getValueAsString("CommentDelimiter");
Devang Patel0dbcada2012-01-09 19:13:28 +00001312 std::string RegisterPrefix = AsmVariant->getValueAsString("RegisterPrefix");
1313 int AsmVariantNo = AsmVariant->getValueAsInt("Variant");
Jim Grosbachf35307c2012-01-24 21:06:59 +00001314
Devang Patel0dbcada2012-01-09 19:13:28 +00001315 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
Jim Grosbach11fc6462012-04-11 21:02:33 +00001316 E = Target.inst_end(); I != E; ++I) {
Devang Patel0dbcada2012-01-09 19:13:28 +00001317 const CodeGenInstruction &CGI = **I;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001318
Devang Patel0dbcada2012-01-09 19:13:28 +00001319 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1320 // filter the set of instructions we consider.
1321 if (!StringRef(CGI.TheDef->getName()).startswith(MatchPrefix))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001322 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001323
Devang Patel0dbcada2012-01-09 19:13:28 +00001324 // Ignore "codegen only" instructions.
1325 if (CGI.TheDef->getValueAsBit("isCodeGenOnly"))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001326 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001327
Devang Patel0dbcada2012-01-09 19:13:28 +00001328 OwningPtr<MatchableInfo> II(new MatchableInfo(CGI));
Jim Grosbachf35307c2012-01-24 21:06:59 +00001329
Jim Grosbach8caecde2012-04-19 17:52:32 +00001330 II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001331
Devang Patel0dbcada2012-01-09 19:13:28 +00001332 // Ignore instructions which shouldn't be matched and diagnose invalid
1333 // instruction definitions with an error.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001334 if (!II->validate(CommentDelimiter, true))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001335 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001336
Devang Patel0dbcada2012-01-09 19:13:28 +00001337 // Ignore "Int_*" and "*_Int" instructions, which are internal aliases.
1338 //
1339 // FIXME: This is a total hack.
1340 if (StringRef(II->TheDef->getName()).startswith("Int_") ||
Jim Grosbach11fc6462012-04-11 21:02:33 +00001341 StringRef(II->TheDef->getName()).endswith("_Int"))
1342 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001343
Devang Patel0dbcada2012-01-09 19:13:28 +00001344 Matchables.push_back(II.take());
Chris Lattner1d13bda2010-11-04 00:43:46 +00001345 }
Jim Grosbachf35307c2012-01-24 21:06:59 +00001346
Devang Patel0dbcada2012-01-09 19:13:28 +00001347 // Parse all of the InstAlias definitions and stick them in the list of
1348 // matchables.
1349 std::vector<Record*> AllInstAliases =
1350 Records.getAllDerivedDefinitions("InstAlias");
1351 for (unsigned i = 0, e = AllInstAliases.size(); i != e; ++i) {
1352 CodeGenInstAlias *Alias = new CodeGenInstAlias(AllInstAliases[i], Target);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001353
Devang Patel0dbcada2012-01-09 19:13:28 +00001354 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1355 // filter the set of instruction aliases we consider, based on the target
1356 // instruction.
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001357 if (!StringRef(Alias->ResultInst->TheDef->getName())
1358 .startswith( MatchPrefix))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001359 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001360
Devang Patel0dbcada2012-01-09 19:13:28 +00001361 OwningPtr<MatchableInfo> II(new MatchableInfo(Alias));
Jim Grosbachf35307c2012-01-24 21:06:59 +00001362
Jim Grosbach8caecde2012-04-19 17:52:32 +00001363 II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001364
Devang Patel0dbcada2012-01-09 19:13:28 +00001365 // Validate the alias definitions.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001366 II->validate(CommentDelimiter, false);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001367
Devang Patel0dbcada2012-01-09 19:13:28 +00001368 Matchables.push_back(II.take());
1369 }
Chris Lattnerc76e80d2010-11-01 04:05:41 +00001370 }
Chris Lattnerc240bb02010-11-01 04:03:32 +00001371
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001372 // Build info for the register classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001373 buildRegisterClasses(SingletonRegisters);
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001374
1375 // Build info for the user defined assembly operand classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001376 buildOperandClasses();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001377
Chris Lattner0bb780c2010-11-04 00:57:06 +00001378 // Build the information about matchables, now that we have fully formed
1379 // classes.
Jim Grosbachc1922c72012-04-19 23:59:23 +00001380 std::vector<MatchableInfo*> NewMatchables;
Chris Lattner22bc5c42010-11-01 05:06:45 +00001381 for (std::vector<MatchableInfo*>::iterator it = Matchables.begin(),
1382 ie = Matchables.end(); it != ie; ++it) {
1383 MatchableInfo *II = *it;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001384
Chris Lattnere206fcf2010-09-06 21:01:37 +00001385 // Parse the tokens after the mnemonic.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001386 // Note: buildInstructionOperandReference may insert new AsmOperands, so
Bob Wilsona49c7df2011-01-26 19:44:55 +00001387 // don't precompute the loop bound.
1388 for (unsigned i = 0; i != II->AsmOperands.size(); ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +00001389 MatchableInfo::AsmOperand &Op = II->AsmOperands[i];
Chris Lattnerd19ec052010-11-02 17:30:52 +00001390 StringRef Token = Op.Token;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001391
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001392 // Check for singleton registers.
Devang Patel63faf822012-01-07 01:33:34 +00001393 if (Record *RegRecord = II->AsmOperands[i].SingletonReg) {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001394 Op.Class = RegisterClasses[RegRecord];
Chris Lattner02bcbc92010-11-01 01:37:30 +00001395 assert(Op.Class && Op.Class->Registers.size() == 1 &&
1396 "Unexpected class for singleton register");
Chris Lattner02bcbc92010-11-01 01:37:30 +00001397 continue;
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001398 }
1399
Daniel Dunbar20927f22009-08-07 08:26:05 +00001400 // Check for simple tokens.
1401 if (Token[0] != '$') {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001402 Op.Class = getTokenClass(Token);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001403 continue;
1404 }
1405
Chris Lattner7ad31472010-11-06 22:06:03 +00001406 if (Token.size() > 1 && isdigit(Token[1])) {
1407 Op.Class = getTokenClass(Token);
1408 continue;
1409 }
Bob Wilson828295b2011-01-26 21:26:19 +00001410
Chris Lattnerc07bd402010-11-04 02:11:18 +00001411 // Otherwise this is an operand reference.
Chris Lattner5f4280c2010-11-04 01:58:23 +00001412 StringRef OperandName;
1413 if (Token[1] == '{')
1414 OperandName = Token.substr(2, Token.size() - 3);
1415 else
1416 OperandName = Token.substr(1);
Bob Wilson828295b2011-01-26 21:26:19 +00001417
Chris Lattnerc07bd402010-11-04 02:11:18 +00001418 if (II->DefRec.is<const CodeGenInstruction*>())
Jim Grosbach8caecde2012-04-19 17:52:32 +00001419 buildInstructionOperandReference(II, OperandName, i);
Chris Lattnerc07bd402010-11-04 02:11:18 +00001420 else
Jim Grosbach8caecde2012-04-19 17:52:32 +00001421 buildAliasOperandReference(II, OperandName, Op);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001422 }
Bob Wilson828295b2011-01-26 21:26:19 +00001423
Jim Grosbachc1922c72012-04-19 23:59:23 +00001424 if (II->DefRec.is<const CodeGenInstruction*>()) {
Jim Grosbach8caecde2012-04-19 17:52:32 +00001425 II->buildInstructionResultOperands();
Jim Grosbachc1922c72012-04-19 23:59:23 +00001426 // If the instruction has a two-operand alias, build up the
1427 // matchable here. We'll add them in bulk at the end to avoid
1428 // confusing this loop.
1429 std::string Constraint =
1430 II->TheDef->getValueAsString("TwoOperandAliasConstraint");
1431 if (Constraint != "") {
1432 // Start by making a copy of the original matchable.
1433 OwningPtr<MatchableInfo> AliasII(new MatchableInfo(*II));
1434
1435 // Adjust it to be a two-operand alias.
1436 AliasII->formTwoOperandAlias(Constraint);
1437
1438 // Add the alias to the matchables list.
1439 NewMatchables.push_back(AliasII.take());
1440 }
1441 } else
Jim Grosbach8caecde2012-04-19 17:52:32 +00001442 II->buildAliasResultOperands();
Daniel Dunbar20927f22009-08-07 08:26:05 +00001443 }
Jim Grosbachc1922c72012-04-19 23:59:23 +00001444 if (!NewMatchables.empty())
1445 Matchables.insert(Matchables.end(), NewMatchables.begin(),
1446 NewMatchables.end());
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001447
Jim Grosbacha66512e2011-12-06 23:43:54 +00001448 // Process token alias definitions and set up the associated superclass
1449 // information.
1450 std::vector<Record*> AllTokenAliases =
1451 Records.getAllDerivedDefinitions("TokenAlias");
1452 for (unsigned i = 0, e = AllTokenAliases.size(); i != e; ++i) {
1453 Record *Rec = AllTokenAliases[i];
1454 ClassInfo *FromClass = getTokenClass(Rec->getValueAsString("FromToken"));
1455 ClassInfo *ToClass = getTokenClass(Rec->getValueAsString("ToToken"));
Jim Grosbach67cd20d2012-04-17 21:23:52 +00001456 if (FromClass == ToClass)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001457 PrintFatalError(Rec->getLoc(),
Jim Grosbach67cd20d2012-04-17 21:23:52 +00001458 "error: Destination value identical to source value.");
Jim Grosbacha66512e2011-12-06 23:43:54 +00001459 FromClass->SuperClasses.push_back(ToClass);
1460 }
1461
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001462 // Reorder classes so that classes precede super classes.
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001463 std::sort(Classes.begin(), Classes.end(), less_ptr<ClassInfo>());
Daniel Dunbar20927f22009-08-07 08:26:05 +00001464}
1465
Jim Grosbach8caecde2012-04-19 17:52:32 +00001466/// buildInstructionOperandReference - The specified operand is a reference to a
Chris Lattner0bb780c2010-11-04 00:57:06 +00001467/// named operand such as $src. Resolve the Class and OperandInfo pointers.
1468void AsmMatcherInfo::
Jim Grosbach8caecde2012-04-19 17:52:32 +00001469buildInstructionOperandReference(MatchableInfo *II,
Chris Lattner5f4280c2010-11-04 01:58:23 +00001470 StringRef OperandName,
Bob Wilsona49c7df2011-01-26 19:44:55 +00001471 unsigned AsmOpIdx) {
Chris Lattnerc07bd402010-11-04 02:11:18 +00001472 const CodeGenInstruction &CGI = *II->DefRec.get<const CodeGenInstruction*>();
1473 const CGIOperandList &Operands = CGI.Operands;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001474 MatchableInfo::AsmOperand *Op = &II->AsmOperands[AsmOpIdx];
Bob Wilson828295b2011-01-26 21:26:19 +00001475
Chris Lattner662e5a32010-11-06 07:14:44 +00001476 // Map this token to an operand.
Chris Lattner0bb780c2010-11-04 00:57:06 +00001477 unsigned Idx;
1478 if (!Operands.hasOperandNamed(OperandName, Idx))
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001479 PrintFatalError(II->TheDef->getLoc(), "error: unable to find operand: '" +
Chris Lattner0bb780c2010-11-04 00:57:06 +00001480 OperandName.str() + "'");
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001481
Bob Wilsona49c7df2011-01-26 19:44:55 +00001482 // If the instruction operand has multiple suboperands, but the parser
1483 // match class for the asm operand is still the default "ImmAsmOperand",
1484 // then handle each suboperand separately.
1485 if (Op->SubOpIdx == -1 && Operands[Idx].MINumOperands > 1) {
1486 Record *Rec = Operands[Idx].Rec;
1487 assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
1488 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
1489 if (MatchClass && MatchClass->getValueAsString("Name") == "Imm") {
1490 // Insert remaining suboperands after AsmOpIdx in II->AsmOperands.
1491 StringRef Token = Op->Token; // save this in case Op gets moved
1492 for (unsigned SI = 1, SE = Operands[Idx].MINumOperands; SI != SE; ++SI) {
1493 MatchableInfo::AsmOperand NewAsmOp(Token);
1494 NewAsmOp.SubOpIdx = SI;
1495 II->AsmOperands.insert(II->AsmOperands.begin()+AsmOpIdx+SI, NewAsmOp);
1496 }
1497 // Replace Op with first suboperand.
1498 Op = &II->AsmOperands[AsmOpIdx]; // update the pointer in case it moved
1499 Op->SubOpIdx = 0;
1500 }
1501 }
1502
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001503 // Set up the operand class.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001504 Op->Class = getOperandClass(Operands[Idx], Op->SubOpIdx);
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001505
1506 // If the named operand is tied, canonicalize it to the untied operand.
1507 // For example, something like:
1508 // (outs GPR:$dst), (ins GPR:$src)
1509 // with an asmstring of
1510 // "inc $src"
1511 // we want to canonicalize to:
1512 // "inc $dst"
1513 // so that we know how to provide the $dst operand when filling in the result.
Ulrich Weigandd9990622013-04-27 18:48:23 +00001514 int OITied = -1;
1515 if (Operands[Idx].MINumOperands == 1)
1516 OITied = Operands[Idx].getTiedRegister();
Chris Lattner0bb780c2010-11-04 00:57:06 +00001517 if (OITied != -1) {
1518 // The tied operand index is an MIOperand index, find the operand that
1519 // contains it.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001520 std::pair<unsigned, unsigned> Idx = Operands.getSubOperandNumber(OITied);
1521 OperandName = Operands[Idx.first].Name;
1522 Op->SubOpIdx = Idx.second;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001523 }
Bob Wilson828295b2011-01-26 21:26:19 +00001524
Bob Wilsona49c7df2011-01-26 19:44:55 +00001525 Op->SrcOpName = OperandName;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001526}
1527
Jim Grosbach8caecde2012-04-19 17:52:32 +00001528/// buildAliasOperandReference - When parsing an operand reference out of the
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001529/// matching string (e.g. "movsx $src, $dst"), determine what the class of the
1530/// operand reference is by looking it up in the result pattern definition.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001531void AsmMatcherInfo::buildAliasOperandReference(MatchableInfo *II,
Chris Lattnerc07bd402010-11-04 02:11:18 +00001532 StringRef OperandName,
1533 MatchableInfo::AsmOperand &Op) {
1534 const CodeGenInstAlias &CGA = *II->DefRec.get<const CodeGenInstAlias*>();
Bob Wilson828295b2011-01-26 21:26:19 +00001535
Chris Lattnerc07bd402010-11-04 02:11:18 +00001536 // Set up the operand class.
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001537 for (unsigned i = 0, e = CGA.ResultOperands.size(); i != e; ++i)
Chris Lattner98c870f2010-11-06 19:25:43 +00001538 if (CGA.ResultOperands[i].isRecord() &&
1539 CGA.ResultOperands[i].getName() == OperandName) {
Chris Lattner662e5a32010-11-06 07:14:44 +00001540 // It's safe to go with the first one we find, because CodeGenInstAlias
1541 // validates that all operands with the same name have the same record.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001542 Op.SubOpIdx = CGA.ResultInstOperandIndex[i].second;
Jim Grosbach48c1f842011-10-28 22:32:53 +00001543 // Use the match class from the Alias definition, not the
1544 // destination instruction, as we may have an immediate that's
1545 // being munged by the match class.
1546 Op.Class = getOperandClass(CGA.ResultOperands[i].getRecord(),
Bob Wilsona49c7df2011-01-26 19:44:55 +00001547 Op.SubOpIdx);
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001548 Op.SrcOpName = OperandName;
1549 return;
Chris Lattnerc07bd402010-11-04 02:11:18 +00001550 }
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001551
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001552 PrintFatalError(II->TheDef->getLoc(), "error: unable to find operand: '" +
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001553 OperandName.str() + "'");
Chris Lattnerc07bd402010-11-04 02:11:18 +00001554}
1555
Jim Grosbach8caecde2012-04-19 17:52:32 +00001556void MatchableInfo::buildInstructionResultOperands() {
Chris Lattner662e5a32010-11-06 07:14:44 +00001557 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001558
Chris Lattner662e5a32010-11-06 07:14:44 +00001559 // Loop over all operands of the result instruction, determining how to
1560 // populate them.
1561 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
1562 const CGIOperandList::OperandInfo &OpInfo = ResultInst->Operands[i];
Chris Lattner567820c2010-11-04 01:42:59 +00001563
1564 // If this is a tied operand, just copy from the previously handled operand.
Ulrich Weigandd9990622013-04-27 18:48:23 +00001565 int TiedOp = -1;
1566 if (OpInfo.MINumOperands == 1)
1567 TiedOp = OpInfo.getTiedRegister();
Chris Lattner567820c2010-11-04 01:42:59 +00001568 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001569 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner567820c2010-11-04 01:42:59 +00001570 continue;
1571 }
Bob Wilson828295b2011-01-26 21:26:19 +00001572
Bob Wilsona49c7df2011-01-26 19:44:55 +00001573 // Find out what operand from the asmparser this MCInst operand comes from.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001574 int SrcOperand = findAsmOperandNamed(OpInfo.Name);
Ulrich Weigandd9990622013-04-27 18:48:23 +00001575 if (OpInfo.Name.empty() || SrcOperand == -1) {
1576 // This may happen for operands that are tied to a suboperand of a
1577 // complex operand. Simply use a dummy value here; nobody should
1578 // use this operand slot.
1579 // FIXME: The long term goal is for the MCOperand list to not contain
1580 // tied operands at all.
1581 ResOperands.push_back(ResOperand::getImmOp(0));
1582 continue;
1583 }
Chris Lattner567820c2010-11-04 01:42:59 +00001584
Bob Wilsona49c7df2011-01-26 19:44:55 +00001585 // Check if the one AsmOperand populates the entire operand.
1586 unsigned NumOperands = OpInfo.MINumOperands;
1587 if (AsmOperands[SrcOperand].SubOpIdx == -1) {
1588 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand, NumOperands));
Chris Lattner1d13bda2010-11-04 00:43:46 +00001589 continue;
1590 }
Bob Wilsona49c7df2011-01-26 19:44:55 +00001591
1592 // Add a separate ResOperand for each suboperand.
1593 for (unsigned AI = 0; AI < NumOperands; ++AI) {
1594 assert(AsmOperands[SrcOperand+AI].SubOpIdx == (int)AI &&
1595 AsmOperands[SrcOperand+AI].SrcOpName == OpInfo.Name &&
1596 "unexpected AsmOperands for suboperands");
1597 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand + AI, 1));
1598 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001599 }
1600}
1601
Jim Grosbach8caecde2012-04-19 17:52:32 +00001602void MatchableInfo::buildAliasResultOperands() {
Chris Lattner41409852010-11-06 07:31:43 +00001603 const CodeGenInstAlias &CGA = *DefRec.get<const CodeGenInstAlias*>();
1604 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001605
Chris Lattner41409852010-11-06 07:31:43 +00001606 // Loop over all operands of the result instruction, determining how to
1607 // populate them.
1608 unsigned AliasOpNo = 0;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001609 unsigned LastOpNo = CGA.ResultInstOperandIndex.size();
Chris Lattner41409852010-11-06 07:31:43 +00001610 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001611 const CGIOperandList::OperandInfo *OpInfo = &ResultInst->Operands[i];
Bob Wilson828295b2011-01-26 21:26:19 +00001612
Chris Lattner41409852010-11-06 07:31:43 +00001613 // If this is a tied operand, just copy from the previously handled operand.
Ulrich Weigandd9990622013-04-27 18:48:23 +00001614 int TiedOp = -1;
1615 if (OpInfo->MINumOperands == 1)
1616 TiedOp = OpInfo->getTiedRegister();
Chris Lattner41409852010-11-06 07:31:43 +00001617 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001618 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner90fd7972010-11-06 19:57:21 +00001619 continue;
1620 }
1621
Bob Wilsona49c7df2011-01-26 19:44:55 +00001622 // Handle all the suboperands for this operand.
1623 const std::string &OpName = OpInfo->Name;
1624 for ( ; AliasOpNo < LastOpNo &&
1625 CGA.ResultInstOperandIndex[AliasOpNo].first == i; ++AliasOpNo) {
1626 int SubIdx = CGA.ResultInstOperandIndex[AliasOpNo].second;
1627
1628 // Find out what operand from the asmparser that this MCInst operand
1629 // comes from.
1630 switch (CGA.ResultOperands[AliasOpNo].Kind) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001631 case CodeGenInstAlias::ResultOperand::K_Record: {
1632 StringRef Name = CGA.ResultOperands[AliasOpNo].getName();
Jim Grosbach8caecde2012-04-19 17:52:32 +00001633 int SrcOperand = findAsmOperand(Name, SubIdx);
Bob Wilsona49c7df2011-01-26 19:44:55 +00001634 if (SrcOperand == -1)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001635 PrintFatalError(TheDef->getLoc(), "Instruction '" +
Bob Wilsona49c7df2011-01-26 19:44:55 +00001636 TheDef->getName() + "' has operand '" + OpName +
1637 "' that doesn't appear in asm string!");
1638 unsigned NumOperands = (SubIdx == -1 ? OpInfo->MINumOperands : 1);
1639 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand,
1640 NumOperands));
1641 break;
1642 }
1643 case CodeGenInstAlias::ResultOperand::K_Imm: {
1644 int64_t ImmVal = CGA.ResultOperands[AliasOpNo].getImm();
1645 ResOperands.push_back(ResOperand::getImmOp(ImmVal));
1646 break;
1647 }
1648 case CodeGenInstAlias::ResultOperand::K_Reg: {
1649 Record *Reg = CGA.ResultOperands[AliasOpNo].getRegister();
1650 ResOperands.push_back(ResOperand::getRegOp(Reg));
1651 break;
1652 }
1653 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001654 }
Chris Lattner41409852010-11-06 07:31:43 +00001655 }
1656}
Chris Lattner1d13bda2010-11-04 00:43:46 +00001657
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001658static unsigned getConverterOperandID(const std::string &Name,
1659 SetVector<std::string> &Table,
1660 bool &IsNew) {
1661 IsNew = Table.insert(Name);
1662
1663 unsigned ID = IsNew ? Table.size() - 1 :
1664 std::find(Table.begin(), Table.end(), Name) - Table.begin();
1665
1666 assert(ID < Table.size());
1667
1668 return ID;
1669}
1670
1671
Chad Rosier22685872012-10-01 23:45:51 +00001672static void emitConvertFuncs(CodeGenTarget &Target, StringRef ClassName,
1673 std::vector<MatchableInfo*> &Infos,
1674 raw_ostream &OS) {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001675 SetVector<std::string> OperandConversionKinds;
1676 SetVector<std::string> InstructionConversionKinds;
1677 std::vector<std::vector<uint8_t> > ConversionTable;
1678 size_t MaxRowLength = 2; // minimum is custom converter plus terminator.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001679
Chris Lattner98986712010-01-14 22:21:20 +00001680 // TargetOperandClass - This is the target's operand class, like X86Operand.
1681 std::string TargetOperandClass = Target.getName() + "Operand";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001682
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001683 // Write the convert function to a separate stream, so we can drop it after
1684 // the enum. We'll build up the conversion handlers for the individual
1685 // operand types opportunistically as we encounter them.
1686 std::string ConvertFnBody;
1687 raw_string_ostream CvtOS(ConvertFnBody);
1688 // Start the unified conversion function.
Chad Rosier359956d2012-08-31 00:03:31 +00001689 CvtOS << "void " << Target.getName() << ClassName << "::\n"
Chad Rosier90e11f82012-09-05 01:02:38 +00001690 << "convertToMCInst(unsigned Kind, MCInst &Inst, "
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001691 << "unsigned Opcode,\n"
Chad Rosier04508c62012-08-30 21:46:00 +00001692 << " const SmallVectorImpl<MCParsedAsmOperand*"
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001693 << "> &Operands) {\n"
Chad Rosier359956d2012-08-31 00:03:31 +00001694 << " assert(Kind < CVT_NUM_SIGNATURES && \"Invalid signature!\");\n"
Craig Topperb198f5c2012-09-18 01:41:49 +00001695 << " const uint8_t *Converter = ConversionTable[Kind];\n"
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001696 << " Inst.setOpcode(Opcode);\n"
Craig Topperb198f5c2012-09-18 01:41:49 +00001697 << " for (const uint8_t *p = Converter; *p; p+= 2) {\n"
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001698 << " switch (*p) {\n"
1699 << " default: llvm_unreachable(\"invalid conversion entry!\");\n"
1700 << " case CVT_Reg:\n"
1701 << " static_cast<" << TargetOperandClass
1702 << "*>(Operands[*(p + 1)])->addRegOperands(Inst, 1);\n"
1703 << " break;\n"
1704 << " case CVT_Tied:\n"
1705 << " Inst.addOperand(Inst.getOperand(*(p + 1)));\n"
1706 << " break;\n";
1707
Chad Rosier62316fa2012-08-30 17:59:25 +00001708 std::string OperandFnBody;
1709 raw_string_ostream OpOS(OperandFnBody);
1710 // Start the operand number lookup function.
Chad Rosier22685872012-10-01 23:45:51 +00001711 OpOS << "void " << Target.getName() << ClassName << "::\n"
1712 << "convertToMapAndConstraints(unsigned Kind,\n";
Chad Rosierc69bb702012-10-02 00:25:57 +00001713 OpOS.indent(27);
Chad Rosier6e006d32012-10-12 22:53:36 +00001714 OpOS << "const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {\n"
Chad Rosier359956d2012-08-31 00:03:31 +00001715 << " assert(Kind < CVT_NUM_SIGNATURES && \"Invalid signature!\");\n"
Chad Rosier22685872012-10-01 23:45:51 +00001716 << " unsigned NumMCOperands = 0;\n"
Craig Topperb198f5c2012-09-18 01:41:49 +00001717 << " const uint8_t *Converter = ConversionTable[Kind];\n"
1718 << " for (const uint8_t *p = Converter; *p; p+= 2) {\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001719 << " switch (*p) {\n"
1720 << " default: llvm_unreachable(\"invalid conversion entry!\");\n"
1721 << " case CVT_Reg:\n"
Chad Rosier6e006d32012-10-12 22:53:36 +00001722 << " Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
Chad Rosier1c99a7f2013-01-15 23:07:53 +00001723 << " Operands[*(p + 1)]->setConstraint(\"r\");\n"
Chad Rosier6e006d32012-10-12 22:53:36 +00001724 << " ++NumMCOperands;\n"
1725 << " break;\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001726 << " case CVT_Tied:\n"
Chad Rosier22685872012-10-01 23:45:51 +00001727 << " ++NumMCOperands;\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001728 << " break;\n";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001729
1730 // Pre-populate the operand conversion kinds with the standard always
1731 // available entries.
1732 OperandConversionKinds.insert("CVT_Done");
1733 OperandConversionKinds.insert("CVT_Reg");
1734 OperandConversionKinds.insert("CVT_Tied");
1735 enum { CVT_Done, CVT_Reg, CVT_Tied };
1736
Chris Lattner22bc5c42010-11-01 05:06:45 +00001737 for (std::vector<MatchableInfo*>::const_iterator it = Infos.begin(),
Daniel Dunbar20927f22009-08-07 08:26:05 +00001738 ie = Infos.end(); it != ie; ++it) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00001739 MatchableInfo &II = **it;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001740
Daniel Dunbarcf120672011-02-04 17:12:15 +00001741 // Check if we have a custom match function.
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001742 std::string AsmMatchConverter =
1743 II.getResultInst()->TheDef->getValueAsString("AsmMatchConverter");
Daniel Dunbarcf120672011-02-04 17:12:15 +00001744 if (!AsmMatchConverter.empty()) {
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001745 std::string Signature = "ConvertCustom_" + AsmMatchConverter;
Daniel Dunbarcf120672011-02-04 17:12:15 +00001746 II.ConversionFnKind = Signature;
1747
1748 // Check if we have already generated this signature.
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001749 if (!InstructionConversionKinds.insert(Signature))
Daniel Dunbarcf120672011-02-04 17:12:15 +00001750 continue;
1751
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001752 // Remember this converter for the kind enum.
1753 unsigned KindID = OperandConversionKinds.size();
Tim Northover12da5052013-01-10 16:47:31 +00001754 OperandConversionKinds.insert("CVT_" +
1755 getEnumNameForToken(AsmMatchConverter));
Daniel Dunbarcf120672011-02-04 17:12:15 +00001756
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001757 // Add the converter row for this instruction.
1758 ConversionTable.push_back(std::vector<uint8_t>());
1759 ConversionTable.back().push_back(KindID);
1760 ConversionTable.back().push_back(CVT_Done);
1761
1762 // Add the handler to the conversion driver function.
Tim Northover12da5052013-01-10 16:47:31 +00001763 CvtOS << " case CVT_"
1764 << getEnumNameForToken(AsmMatchConverter) << ":\n"
Chad Rosier756d2cc2012-08-31 22:12:31 +00001765 << " " << AsmMatchConverter << "(Inst, Operands);\n"
Chad Rosier359956d2012-08-31 00:03:31 +00001766 << " break;\n";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001767
Chad Rosier62316fa2012-08-30 17:59:25 +00001768 // FIXME: Handle the operand number lookup for custom match functions.
Daniel Dunbarcf120672011-02-04 17:12:15 +00001769 continue;
1770 }
1771
Daniel Dunbar20927f22009-08-07 08:26:05 +00001772 // Build the conversion function signature.
1773 std::string Signature = "Convert";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001774
1775 std::vector<uint8_t> ConversionRow;
Bob Wilson828295b2011-01-26 21:26:19 +00001776
Chris Lattnerdda855d2010-11-02 21:49:44 +00001777 // Compute the convert enum and the case body.
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001778 MaxRowLength = std::max(MaxRowLength, II.ResOperands.size()*2 + 1 );
1779
Chris Lattner1d13bda2010-11-04 00:43:46 +00001780 for (unsigned i = 0, e = II.ResOperands.size(); i != e; ++i) {
1781 const MatchableInfo::ResOperand &OpInfo = II.ResOperands[i];
Jim Grosbacha7c78222010-10-29 22:13:48 +00001782
Chris Lattner1d13bda2010-11-04 00:43:46 +00001783 // Generate code to populate each result operand.
1784 switch (OpInfo.Kind) {
Chris Lattner1d13bda2010-11-04 00:43:46 +00001785 case MatchableInfo::ResOperand::RenderAsmOperand: {
1786 // This comes from something we parsed.
1787 MatchableInfo::AsmOperand &Op = II.AsmOperands[OpInfo.AsmOperandNum];
Bob Wilson828295b2011-01-26 21:26:19 +00001788
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001789 // Registers are always converted the same, don't duplicate the
1790 // conversion function based on them.
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001791 Signature += "__";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001792 std::string Class;
1793 Class = Op.Class->isRegisterClass() ? "Reg" : Op.Class->ClassName;
1794 Signature += Class;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001795 Signature += utostr(OpInfo.MINumOperands);
Chris Lattner1d13bda2010-11-04 00:43:46 +00001796 Signature += "_" + itostr(OpInfo.AsmOperandNum);
Bob Wilson828295b2011-01-26 21:26:19 +00001797
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001798 // Add the conversion kind, if necessary, and get the associated ID
1799 // the index of its entry in the vector).
1800 std::string Name = "CVT_" + (Op.Class->isRegisterClass() ? "Reg" :
1801 Op.Class->RenderMethod);
Tim Northover12da5052013-01-10 16:47:31 +00001802 Name = getEnumNameForToken(Name);
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001803
1804 bool IsNewConverter = false;
1805 unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1806 IsNewConverter);
1807
1808 // Add the operand entry to the instruction kind conversion row.
1809 ConversionRow.push_back(ID);
1810 ConversionRow.push_back(OpInfo.AsmOperandNum + 1);
1811
1812 if (!IsNewConverter)
1813 break;
1814
1815 // This is a new operand kind. Add a handler for it to the
1816 // converter driver.
1817 CvtOS << " case " << Name << ":\n"
1818 << " static_cast<" << TargetOperandClass
1819 << "*>(Operands[*(p + 1)])->"
1820 << Op.Class->RenderMethod << "(Inst, " << OpInfo.MINumOperands
1821 << ");\n"
1822 << " break;\n";
Chad Rosier62316fa2012-08-30 17:59:25 +00001823
1824 // Add a handler for the operand number lookup.
1825 OpOS << " case " << Name << ":\n"
Chad Rosier1c99a7f2013-01-15 23:07:53 +00001826 << " Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n";
1827
1828 if (Op.Class->isRegisterClass())
1829 OpOS << " Operands[*(p + 1)]->setConstraint(\"r\");\n";
1830 else
1831 OpOS << " Operands[*(p + 1)]->setConstraint(\"m\");\n";
1832 OpOS << " NumMCOperands += " << OpInfo.MINumOperands << ";\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001833 << " break;\n";
Chris Lattner1d13bda2010-11-04 00:43:46 +00001834 break;
Daniel Dunbaraf616812010-02-10 08:15:48 +00001835 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001836 case MatchableInfo::ResOperand::TiedOperand: {
1837 // If this operand is tied to a previous one, just copy the MCInst
1838 // operand from the earlier one.We can only tie single MCOperand values.
Ulrich Weigandd9990622013-04-27 18:48:23 +00001839 assert(OpInfo.MINumOperands == 1 && "Not a singular MCOperand");
Chris Lattner1d13bda2010-11-04 00:43:46 +00001840 unsigned TiedOp = OpInfo.TiedOperandNum;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001841 assert(i > TiedOp && "Tied operand precedes its target!");
Chris Lattner1d13bda2010-11-04 00:43:46 +00001842 Signature += "__Tie" + utostr(TiedOp);
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001843 ConversionRow.push_back(CVT_Tied);
1844 ConversionRow.push_back(TiedOp);
Chris Lattner1d13bda2010-11-04 00:43:46 +00001845 break;
1846 }
Chris Lattner98c870f2010-11-06 19:25:43 +00001847 case MatchableInfo::ResOperand::ImmOperand: {
1848 int64_t Val = OpInfo.ImmVal;
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001849 std::string Ty = "imm_" + itostr(Val);
1850 Signature += "__" + Ty;
1851
1852 std::string Name = "CVT_" + Ty;
1853 bool IsNewConverter = false;
1854 unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1855 IsNewConverter);
1856 // Add the operand entry to the instruction kind conversion row.
1857 ConversionRow.push_back(ID);
1858 ConversionRow.push_back(0);
1859
1860 if (!IsNewConverter)
1861 break;
1862
1863 CvtOS << " case " << Name << ":\n"
1864 << " Inst.addOperand(MCOperand::CreateImm(" << Val << "));\n"
1865 << " break;\n";
1866
Chad Rosier62316fa2012-08-30 17:59:25 +00001867 OpOS << " case " << Name << ":\n"
Chad Rosier6e006d32012-10-12 22:53:36 +00001868 << " Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1869 << " Operands[*(p + 1)]->setConstraint(\"\");\n"
Chad Rosier22685872012-10-01 23:45:51 +00001870 << " ++NumMCOperands;\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001871 << " break;\n";
Chris Lattner98c870f2010-11-06 19:25:43 +00001872 break;
1873 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001874 case MatchableInfo::ResOperand::RegOperand: {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001875 std::string Reg, Name;
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001876 if (OpInfo.Register == 0) {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001877 Name = "reg0";
1878 Reg = "0";
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001879 } else {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001880 Reg = getQualifiedName(OpInfo.Register);
1881 Name = "reg" + OpInfo.Register->getName();
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001882 }
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001883 Signature += "__" + Name;
1884 Name = "CVT_" + Name;
1885 bool IsNewConverter = false;
1886 unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1887 IsNewConverter);
1888 // Add the operand entry to the instruction kind conversion row.
1889 ConversionRow.push_back(ID);
1890 ConversionRow.push_back(0);
1891
1892 if (!IsNewConverter)
1893 break;
1894 CvtOS << " case " << Name << ":\n"
1895 << " Inst.addOperand(MCOperand::CreateReg(" << Reg << "));\n"
1896 << " break;\n";
Chad Rosier62316fa2012-08-30 17:59:25 +00001897
1898 OpOS << " case " << Name << ":\n"
Chad Rosier6e006d32012-10-12 22:53:36 +00001899 << " Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1900 << " Operands[*(p + 1)]->setConstraint(\"m\");\n"
Chad Rosier22685872012-10-01 23:45:51 +00001901 << " ++NumMCOperands;\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001902 << " break;\n";
Bob Wilson828295b2011-01-26 21:26:19 +00001903 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001904 }
Daniel Dunbar20927f22009-08-07 08:26:05 +00001905 }
Bob Wilson828295b2011-01-26 21:26:19 +00001906
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001907 // If there were no operands, add to the signature to that effect
1908 if (Signature == "Convert")
1909 Signature += "_NoOperands";
1910
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001911 II.ConversionFnKind = Signature;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001912
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001913 // Save the signature. If we already have it, don't add a new row
1914 // to the table.
1915 if (!InstructionConversionKinds.insert(Signature))
Daniel Dunbar20927f22009-08-07 08:26:05 +00001916 continue;
1917
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001918 // Add the row to the table.
1919 ConversionTable.push_back(ConversionRow);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001920 }
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001921
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001922 // Finish up the converter driver function.
Chad Rosierad2d3e62012-09-03 17:39:57 +00001923 CvtOS << " }\n }\n}\n\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001924
Chad Rosier62316fa2012-08-30 17:59:25 +00001925 // Finish up the operand number lookup function.
Chad Rosier22685872012-10-01 23:45:51 +00001926 OpOS << " }\n }\n}\n\n";
Chad Rosier62316fa2012-08-30 17:59:25 +00001927
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001928 OS << "namespace {\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001929
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001930 // Output the operand conversion kind enum.
1931 OS << "enum OperatorConversionKind {\n";
1932 for (unsigned i = 0, e = OperandConversionKinds.size(); i != e; ++i)
1933 OS << " " << OperandConversionKinds[i] << ",\n";
1934 OS << " CVT_NUM_CONVERTERS\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001935 OS << "};\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001936
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001937 // Output the instruction conversion kind enum.
1938 OS << "enum InstructionConversionKind {\n";
1939 for (SetVector<std::string>::const_iterator
1940 i = InstructionConversionKinds.begin(),
1941 e = InstructionConversionKinds.end(); i != e; ++i)
1942 OS << " " << *i << ",\n";
1943 OS << " CVT_NUM_SIGNATURES\n";
1944 OS << "};\n\n";
1945
1946
1947 OS << "} // end anonymous namespace\n\n";
1948
1949 // Output the conversion table.
Craig Topperb198f5c2012-09-18 01:41:49 +00001950 OS << "static const uint8_t ConversionTable[CVT_NUM_SIGNATURES]["
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001951 << MaxRowLength << "] = {\n";
1952
1953 for (unsigned Row = 0, ERow = ConversionTable.size(); Row != ERow; ++Row) {
1954 assert(ConversionTable[Row].size() % 2 == 0 && "bad conversion row!");
1955 OS << " // " << InstructionConversionKinds[Row] << "\n";
1956 OS << " { ";
1957 for (unsigned i = 0, e = ConversionTable[Row].size(); i != e; i += 2)
1958 OS << OperandConversionKinds[ConversionTable[Row][i]] << ", "
1959 << (unsigned)(ConversionTable[Row][i + 1]) << ", ";
1960 OS << "CVT_Done },\n";
1961 }
1962
1963 OS << "};\n\n";
1964
1965 // Spit out the conversion driver function.
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001966 OS << CvtOS.str();
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001967
Chad Rosier62316fa2012-08-30 17:59:25 +00001968 // Spit out the operand number lookup function.
1969 OS << OpOS.str();
Daniel Dunbara027d222009-07-31 02:32:59 +00001970}
1971
Jim Grosbach8caecde2012-04-19 17:52:32 +00001972/// emitMatchClassEnumeration - Emit the enumeration for match class kinds.
1973static void emitMatchClassEnumeration(CodeGenTarget &Target,
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001974 std::vector<ClassInfo*> &Infos,
1975 raw_ostream &OS) {
1976 OS << "namespace {\n\n";
1977
1978 OS << "/// MatchClassKind - The kinds of classes which participate in\n"
1979 << "/// instruction matching.\n";
1980 OS << "enum MatchClassKind {\n";
1981 OS << " InvalidMatchClass = 0,\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001982 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001983 ie = Infos.end(); it != ie; ++it) {
1984 ClassInfo &CI = **it;
1985 OS << " " << CI.Name << ", // ";
1986 if (CI.Kind == ClassInfo::Token) {
1987 OS << "'" << CI.ValueName << "'\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001988 } else if (CI.isRegisterClass()) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001989 if (!CI.ValueName.empty())
1990 OS << "register class '" << CI.ValueName << "'\n";
1991 else
1992 OS << "derived register class\n";
1993 } else {
1994 OS << "user defined class '" << CI.ValueName << "'\n";
1995 }
1996 }
1997 OS << " NumMatchClassKinds\n";
1998 OS << "};\n\n";
1999
2000 OS << "}\n\n";
2001}
2002
Jim Grosbach8caecde2012-04-19 17:52:32 +00002003/// emitValidateOperandClass - Emit the function to validate an operand class.
2004static void emitValidateOperandClass(AsmMatcherInfo &Info,
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002005 raw_ostream &OS) {
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002006 OS << "static unsigned validateOperandClass(MCParsedAsmOperand *GOp, "
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002007 << "MatchClassKind Kind) {\n";
2008 OS << " " << Info.Target.getName() << "Operand &Operand = *("
Chris Lattner02bcbc92010-11-01 01:37:30 +00002009 << Info.Target.getName() << "Operand*)GOp;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002010
Kevin Enderby89381832011-07-15 18:30:43 +00002011 // The InvalidMatchClass is not to match any operand.
2012 OS << " if (Kind == InvalidMatchClass)\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002013 OS << " return MCTargetAsmParser::Match_InvalidOperand;\n\n";
Kevin Enderby89381832011-07-15 18:30:43 +00002014
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002015 // Check for Token operands first.
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002016 // FIXME: Use a more specific diagnostic type.
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002017 OS << " if (Operand.isToken())\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002018 OS << " return isSubclass(matchTokenString(Operand.getToken()), Kind) ?\n"
2019 << " MCTargetAsmParser::Match_Success :\n"
2020 << " MCTargetAsmParser::Match_InvalidOperand;\n\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002021
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002022 // Check the user classes. We don't care what order since we're only
2023 // actually matching against one of them.
Jim Grosbacha7c78222010-10-29 22:13:48 +00002024 for (std::vector<ClassInfo*>::iterator it = Info.Classes.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002025 ie = Info.Classes.end(); it != ie; ++it) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002026 ClassInfo &CI = **it;
2027
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002028 if (!CI.isUserClass())
2029 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00002030
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002031 OS << " // '" << CI.ClassName << "' class\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002032 OS << " if (Kind == " << CI.Name << ") {\n";
2033 OS << " if (Operand." << CI.PredicateMethod << "())\n";
2034 OS << " return MCTargetAsmParser::Match_Success;\n";
2035 if (!CI.DiagnosticType.empty())
2036 OS << " return " << Info.Target.getName() << "AsmParser::Match_"
2037 << CI.DiagnosticType << ";\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002038 OS << " }\n\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002039 }
Bob Wilson828295b2011-01-26 21:26:19 +00002040
Owen Andersonb885dc82012-07-16 23:20:09 +00002041 // Check for register operands, including sub-classes.
2042 OS << " if (Operand.isReg()) {\n";
2043 OS << " MatchClassKind OpKind;\n";
2044 OS << " switch (Operand.getReg()) {\n";
2045 OS << " default: OpKind = InvalidMatchClass; break;\n";
Sean Silvadecfdf52012-09-19 01:47:01 +00002046 for (AsmMatcherInfo::RegisterClassesTy::iterator
Owen Andersonb885dc82012-07-16 23:20:09 +00002047 it = Info.RegisterClasses.begin(), ie = Info.RegisterClasses.end();
2048 it != ie; ++it)
2049 OS << " case " << Info.Target.getName() << "::"
2050 << it->first->getName() << ": OpKind = " << it->second->Name
2051 << "; break;\n";
2052 OS << " }\n";
2053 OS << " return isSubclass(OpKind, Kind) ? "
2054 << "MCTargetAsmParser::Match_Success :\n "
2055 << " MCTargetAsmParser::Match_InvalidOperand;\n }\n\n";
2056
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002057 // Generic fallthrough match failure case for operands that don't have
2058 // specialized diagnostic types.
2059 OS << " return MCTargetAsmParser::Match_InvalidOperand;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002060 OS << "}\n\n";
2061}
2062
Jim Grosbach8caecde2012-04-19 17:52:32 +00002063/// emitIsSubclass - Emit the subclass predicate function.
2064static void emitIsSubclass(CodeGenTarget &Target,
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002065 std::vector<ClassInfo*> &Infos,
2066 raw_ostream &OS) {
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +00002067 OS << "/// isSubclass - Compute whether \\p A is a subclass of \\p B.\n";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002068 OS << "static bool isSubclass(MatchClassKind A, MatchClassKind B) {\n";
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002069 OS << " if (A == B)\n";
2070 OS << " return true;\n\n";
2071
Reid Kleckner47cfec02013-08-06 22:51:21 +00002072 std::string OStr;
2073 raw_string_ostream SS(OStr);
Aaron Ballman54911a52013-07-15 16:53:32 +00002074 unsigned Count = 0;
2075 SS << " switch (A) {\n";
2076 SS << " default:\n";
2077 SS << " return false;\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002078 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002079 ie = Infos.end(); it != ie; ++it) {
2080 ClassInfo &A = **it;
2081
Jim Grosbacha66512e2011-12-06 23:43:54 +00002082 std::vector<StringRef> SuperClasses;
2083 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
2084 ie = Infos.end(); it != ie; ++it) {
2085 ClassInfo &B = **it;
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002086
Jim Grosbacha66512e2011-12-06 23:43:54 +00002087 if (&A != &B && A.isSubsetOf(B))
2088 SuperClasses.push_back(B.Name);
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002089 }
Jim Grosbacha66512e2011-12-06 23:43:54 +00002090
2091 if (SuperClasses.empty())
2092 continue;
Aaron Ballman54911a52013-07-15 16:53:32 +00002093 ++Count;
Jim Grosbacha66512e2011-12-06 23:43:54 +00002094
Aaron Ballman54911a52013-07-15 16:53:32 +00002095 SS << "\n case " << A.Name << ":\n";
Jim Grosbacha66512e2011-12-06 23:43:54 +00002096
2097 if (SuperClasses.size() == 1) {
Aaron Ballman54911a52013-07-15 16:53:32 +00002098 SS << " return B == " << SuperClasses.back().str() << ";\n";
Jim Grosbacha66512e2011-12-06 23:43:54 +00002099 continue;
2100 }
2101
Aaron Ballman54911a52013-07-15 16:53:32 +00002102 if (!SuperClasses.empty()) {
2103 SS << " switch (B) {\n";
2104 SS << " default: return false;\n";
2105 for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
2106 SS << " case " << SuperClasses[i].str() << ": return true;\n";
2107 SS << " }\n";
2108 } else {
2109 // No case statement to emit
2110 SS << " return false;\n";
2111 }
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002112 }
Aaron Ballman54911a52013-07-15 16:53:32 +00002113 SS << " }\n";
2114
2115 // If there were case statements emitted into the string stream, write them
2116 // to the output stream, otherwise write the default.
2117 if (Count)
2118 OS << SS.str();
2119 else
2120 OS << " return false;\n";
2121
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002122 OS << "}\n\n";
2123}
2124
Jim Grosbach8caecde2012-04-19 17:52:32 +00002125/// emitMatchTokenString - Emit the function to match a token string to the
Daniel Dunbar245f0582009-08-08 21:22:41 +00002126/// appropriate match class value.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002127static void emitMatchTokenString(CodeGenTarget &Target,
Daniel Dunbar245f0582009-08-08 21:22:41 +00002128 std::vector<ClassInfo*> &Infos,
2129 raw_ostream &OS) {
2130 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00002131 std::vector<StringMatcher::StringPair> Matches;
Jim Grosbacha7c78222010-10-29 22:13:48 +00002132 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbar245f0582009-08-08 21:22:41 +00002133 ie = Infos.end(); it != ie; ++it) {
2134 ClassInfo &CI = **it;
2135
2136 if (CI.Kind == ClassInfo::Token)
Chris Lattner5845e5c2010-09-06 02:01:51 +00002137 Matches.push_back(StringMatcher::StringPair(CI.ValueName,
2138 "return " + CI.Name + ";"));
Daniel Dunbar245f0582009-08-08 21:22:41 +00002139 }
2140
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002141 OS << "static MatchClassKind matchTokenString(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00002142
Chris Lattner5845e5c2010-09-06 02:01:51 +00002143 StringMatcher("Name", Matches, OS).Emit();
Daniel Dunbar245f0582009-08-08 21:22:41 +00002144
2145 OS << " return InvalidMatchClass;\n";
2146 OS << "}\n\n";
2147}
Chris Lattner70add882009-08-08 20:02:57 +00002148
Jim Grosbach8caecde2012-04-19 17:52:32 +00002149/// emitMatchRegisterName - Emit the function to match a string to the target
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002150/// specific register enum.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002151static void emitMatchRegisterName(CodeGenTarget &Target, Record *AsmParser,
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002152 raw_ostream &OS) {
Daniel Dunbar245f0582009-08-08 21:22:41 +00002153 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00002154 std::vector<StringMatcher::StringPair> Matches;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00002155 const std::vector<CodeGenRegister*> &Regs =
2156 Target.getRegBank().getRegisters();
2157 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
2158 const CodeGenRegister *Reg = Regs[i];
2159 if (Reg->TheDef->getValueAsString("AsmName").empty())
Daniel Dunbar22be5222009-07-17 18:51:11 +00002160 continue;
2161
Chris Lattner5845e5c2010-09-06 02:01:51 +00002162 Matches.push_back(StringMatcher::StringPair(
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00002163 Reg->TheDef->getValueAsString("AsmName"),
2164 "return " + utostr(Reg->EnumValue) + ";"));
Daniel Dunbar22be5222009-07-17 18:51:11 +00002165 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002166
Chris Lattnerb8d6e982010-02-09 00:34:28 +00002167 OS << "static unsigned MatchRegisterName(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00002168
Chris Lattner5845e5c2010-09-06 02:01:51 +00002169 StringMatcher("Name", Matches, OS).Emit();
Jim Grosbacha7c78222010-10-29 22:13:48 +00002170
Daniel Dunbar245f0582009-08-08 21:22:41 +00002171 OS << " return 0;\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +00002172 OS << "}\n\n";
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002173}
Daniel Dunbara027d222009-07-31 02:32:59 +00002174
Jim Grosbach8caecde2012-04-19 17:52:32 +00002175/// emitSubtargetFeatureFlagEnumeration - Emit the subtarget feature flag
Daniel Dunbar54074b52010-07-19 05:44:09 +00002176/// definitions.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002177static void emitSubtargetFeatureFlagEnumeration(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00002178 raw_ostream &OS) {
2179 OS << "// Flags for subtarget features that participate in "
2180 << "instruction matching.\n";
2181 OS << "enum SubtargetFeatureFlag {\n";
2182 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2183 it = Info.SubtargetFeatures.begin(),
2184 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2185 SubtargetFeatureInfo &SFI = *it->second;
Chris Lattner0aed1e72010-10-30 20:07:57 +00002186 OS << " " << SFI.getEnumName() << " = (1 << " << SFI.Index << "),\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002187 }
2188 OS << " Feature_None = 0\n";
2189 OS << "};\n\n";
2190}
2191
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002192/// emitOperandDiagnosticTypes - Emit the operand matching diagnostic types.
2193static void emitOperandDiagnosticTypes(AsmMatcherInfo &Info, raw_ostream &OS) {
2194 // Get the set of diagnostic types from all of the operand classes.
2195 std::set<StringRef> Types;
2196 for (std::map<Record*, ClassInfo*>::const_iterator
2197 I = Info.AsmOperandClasses.begin(),
2198 E = Info.AsmOperandClasses.end(); I != E; ++I) {
2199 if (!I->second->DiagnosticType.empty())
2200 Types.insert(I->second->DiagnosticType);
2201 }
2202
2203 if (Types.empty()) return;
2204
2205 // Now emit the enum entries.
2206 for (std::set<StringRef>::const_iterator I = Types.begin(), E = Types.end();
2207 I != E; ++I)
2208 OS << " Match_" << *I << ",\n";
2209 OS << " END_OPERAND_DIAGNOSTIC_TYPES\n";
2210}
2211
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002212/// emitGetSubtargetFeatureName - Emit the helper function to get the
2213/// user-level name for a subtarget feature.
2214static void emitGetSubtargetFeatureName(AsmMatcherInfo &Info, raw_ostream &OS) {
2215 OS << "// User-level names for subtarget features that participate in\n"
2216 << "// instruction matching.\n"
Aaron Ballman54911a52013-07-15 16:53:32 +00002217 << "static const char *getSubtargetFeatureName(unsigned Val) {\n";
2218 if (!Info.SubtargetFeatures.empty()) {
2219 OS << " switch(Val) {\n";
2220 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2221 it = Info.SubtargetFeatures.begin(),
2222 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2223 SubtargetFeatureInfo &SFI = *it->second;
2224 // FIXME: Totally just a placeholder name to get the algorithm working.
2225 OS << " case " << SFI.getEnumName() << ": return \""
2226 << SFI.TheDef->getValueAsString("PredicateName") << "\";\n";
2227 }
2228 OS << " default: return \"(unknown)\";\n";
2229 OS << " }\n";
2230 } else {
2231 // Nothing to emit, so skip the switch
2232 OS << " return \"(unknown)\";\n";
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002233 }
Aaron Ballman54911a52013-07-15 16:53:32 +00002234 OS << "}\n\n";
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002235}
2236
Jim Grosbach8caecde2012-04-19 17:52:32 +00002237/// emitComputeAvailableFeatures - Emit the function to compute the list of
Daniel Dunbar54074b52010-07-19 05:44:09 +00002238/// available features given a subtarget.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002239static void emitComputeAvailableFeatures(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00002240 raw_ostream &OS) {
2241 std::string ClassName =
2242 Info.AsmParser->getValueAsString("AsmParserClassName");
2243
Chris Lattner02bcbc92010-11-01 01:37:30 +00002244 OS << "unsigned " << Info.Target.getName() << ClassName << "::\n"
Evan Chengebdeeab2011-07-08 01:53:10 +00002245 << "ComputeAvailableFeatures(uint64_t FB) const {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002246 OS << " unsigned Features = 0;\n";
2247 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2248 it = Info.SubtargetFeatures.begin(),
2249 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2250 SubtargetFeatureInfo &SFI = *it->second;
Evan Chengebdeeab2011-07-08 01:53:10 +00002251
2252 OS << " if (";
Jim Grosbach65da6fc2012-04-17 00:01:04 +00002253 std::string CondStorage =
2254 SFI.TheDef->getValueAsString("AssemblerCondString");
Evan Chengfbc38d22011-07-08 18:04:22 +00002255 StringRef Conds = CondStorage;
Evan Chengebdeeab2011-07-08 01:53:10 +00002256 std::pair<StringRef,StringRef> Comma = Conds.split(',');
2257 bool First = true;
2258 do {
2259 if (!First)
2260 OS << " && ";
2261
2262 bool Neg = false;
2263 StringRef Cond = Comma.first;
2264 if (Cond[0] == '!') {
2265 Neg = true;
2266 Cond = Cond.substr(1);
2267 }
2268
2269 OS << "((FB & " << Info.Target.getName() << "::" << Cond << ")";
2270 if (Neg)
2271 OS << " == 0";
2272 else
2273 OS << " != 0";
2274 OS << ")";
2275
2276 if (Comma.second.empty())
2277 break;
2278
2279 First = false;
2280 Comma = Comma.second.split(',');
2281 } while (true);
2282
2283 OS << ")\n";
Chris Lattner0aed1e72010-10-30 20:07:57 +00002284 OS << " Features |= " << SFI.getEnumName() << ";\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002285 }
2286 OS << " return Features;\n";
2287 OS << "}\n\n";
2288}
2289
Chris Lattner6fa152c2010-10-30 20:15:02 +00002290static std::string GetAliasRequiredFeatures(Record *R,
2291 const AsmMatcherInfo &Info) {
Chris Lattner693173f2010-10-30 19:23:13 +00002292 std::vector<Record*> ReqFeatures = R->getValueAsListOfDefs("Predicates");
Chris Lattner693173f2010-10-30 19:23:13 +00002293 std::string Result;
2294 unsigned NumFeatures = 0;
2295 for (unsigned i = 0, e = ReqFeatures.size(); i != e; ++i) {
Chris Lattner4a74ee72010-11-01 02:09:21 +00002296 SubtargetFeatureInfo *F = Info.getSubtargetFeature(ReqFeatures[i]);
Bob Wilson828295b2011-01-26 21:26:19 +00002297
Chris Lattner4a74ee72010-11-01 02:09:21 +00002298 if (F == 0)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002299 PrintFatalError(R->getLoc(), "Predicate '" + ReqFeatures[i]->getName() +
Chris Lattner4a74ee72010-11-01 02:09:21 +00002300 "' is not marked as an AssemblerPredicate!");
Bob Wilson828295b2011-01-26 21:26:19 +00002301
Chris Lattner4a74ee72010-11-01 02:09:21 +00002302 if (NumFeatures)
2303 Result += '|';
Bob Wilson828295b2011-01-26 21:26:19 +00002304
Chris Lattner4a74ee72010-11-01 02:09:21 +00002305 Result += F->getEnumName();
2306 ++NumFeatures;
Chris Lattner693173f2010-10-30 19:23:13 +00002307 }
Bob Wilson828295b2011-01-26 21:26:19 +00002308
Chris Lattner693173f2010-10-30 19:23:13 +00002309 if (NumFeatures > 1)
2310 Result = '(' + Result + ')';
2311 return Result;
2312}
2313
Chad Rosier88eb89b2013-04-18 22:35:36 +00002314static void emitMnemonicAliasVariant(raw_ostream &OS,const AsmMatcherInfo &Info,
2315 std::vector<Record*> &Aliases,
2316 unsigned Indent = 0,
2317 StringRef AsmParserVariantName = StringRef()){
Chris Lattner4fd32c62010-10-30 18:56:12 +00002318 // Keep track of all the aliases from a mnemonic. Use an std::map so that the
2319 // iteration order of the map is stable.
2320 std::map<std::string, std::vector<Record*> > AliasesFromMnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +00002321
Chris Lattner674c1dc2010-10-30 17:36:36 +00002322 for (unsigned i = 0, e = Aliases.size(); i != e; ++i) {
2323 Record *R = Aliases[i];
Chad Rosier88eb89b2013-04-18 22:35:36 +00002324 // FIXME: Allow AssemblerVariantName to be a comma separated list.
2325 std::string AsmVariantName = R->getValueAsString("AsmVariantName");
2326 if (AsmVariantName != AsmParserVariantName)
2327 continue;
Chris Lattner4fd32c62010-10-30 18:56:12 +00002328 AliasesFromMnemonic[R->getValueAsString("FromMnemonic")].push_back(R);
Chris Lattner674c1dc2010-10-30 17:36:36 +00002329 }
Chad Rosier88eb89b2013-04-18 22:35:36 +00002330 if (AliasesFromMnemonic.empty())
2331 return;
Vladimir Medic92731512013-07-16 09:22:38 +00002332
Chris Lattner4fd32c62010-10-30 18:56:12 +00002333 // Process each alias a "from" mnemonic at a time, building the code executed
2334 // by the string remapper.
2335 std::vector<StringMatcher::StringPair> Cases;
2336 for (std::map<std::string, std::vector<Record*> >::iterator
2337 I = AliasesFromMnemonic.begin(), E = AliasesFromMnemonic.end();
2338 I != E; ++I) {
Chris Lattner4fd32c62010-10-30 18:56:12 +00002339 const std::vector<Record*> &ToVec = I->second;
Chris Lattner693173f2010-10-30 19:23:13 +00002340
2341 // Loop through each alias and emit code that handles each case. If there
2342 // are two instructions without predicates, emit an error. If there is one,
2343 // emit it last.
2344 std::string MatchCode;
2345 int AliasWithNoPredicate = -1;
Bob Wilson828295b2011-01-26 21:26:19 +00002346
Chris Lattner693173f2010-10-30 19:23:13 +00002347 for (unsigned i = 0, e = ToVec.size(); i != e; ++i) {
2348 Record *R = ToVec[i];
Chris Lattner6fa152c2010-10-30 20:15:02 +00002349 std::string FeatureMask = GetAliasRequiredFeatures(R, Info);
Bob Wilson828295b2011-01-26 21:26:19 +00002350
Chris Lattner693173f2010-10-30 19:23:13 +00002351 // If this unconditionally matches, remember it for later and diagnose
2352 // duplicates.
2353 if (FeatureMask.empty()) {
2354 if (AliasWithNoPredicate != -1) {
2355 // We can't have two aliases from the same mnemonic with no predicate.
2356 PrintError(ToVec[AliasWithNoPredicate]->getLoc(),
2357 "two MnemonicAliases with the same 'from' mnemonic!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002358 PrintFatalError(R->getLoc(), "this is the other MnemonicAlias.");
Chris Lattner693173f2010-10-30 19:23:13 +00002359 }
Bob Wilson828295b2011-01-26 21:26:19 +00002360
Chris Lattner693173f2010-10-30 19:23:13 +00002361 AliasWithNoPredicate = i;
2362 continue;
2363 }
Joerg Sonnenberger6ef6ced2011-02-17 23:22:19 +00002364 if (R->getValueAsString("ToMnemonic") == I->first)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002365 PrintFatalError(R->getLoc(), "MnemonicAlias to the same string");
Bob Wilson828295b2011-01-26 21:26:19 +00002366
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00002367 if (!MatchCode.empty())
2368 MatchCode += "else ";
Chris Lattner693173f2010-10-30 19:23:13 +00002369 MatchCode += "if ((Features & " + FeatureMask + ") == "+FeatureMask+")\n";
2370 MatchCode += " Mnemonic = \"" +R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner4fd32c62010-10-30 18:56:12 +00002371 }
Bob Wilson828295b2011-01-26 21:26:19 +00002372
Chris Lattner693173f2010-10-30 19:23:13 +00002373 if (AliasWithNoPredicate != -1) {
2374 Record *R = ToVec[AliasWithNoPredicate];
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00002375 if (!MatchCode.empty())
2376 MatchCode += "else\n ";
2377 MatchCode += "Mnemonic = \"" + R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner693173f2010-10-30 19:23:13 +00002378 }
Bob Wilson828295b2011-01-26 21:26:19 +00002379
Chris Lattner693173f2010-10-30 19:23:13 +00002380 MatchCode += "return;";
2381
2382 Cases.push_back(std::make_pair(I->first, MatchCode));
Chris Lattner4fd32c62010-10-30 18:56:12 +00002383 }
Chad Rosier88eb89b2013-04-18 22:35:36 +00002384 StringMatcher("Mnemonic", Cases, OS).Emit(Indent);
2385}
Bob Wilson828295b2011-01-26 21:26:19 +00002386
Chad Rosier88eb89b2013-04-18 22:35:36 +00002387/// emitMnemonicAliases - If the target has any MnemonicAlias<> definitions,
2388/// emit a function for them and return true, otherwise return false.
2389static bool emitMnemonicAliases(raw_ostream &OS, const AsmMatcherInfo &Info,
2390 CodeGenTarget &Target) {
2391 // Ignore aliases when match-prefix is set.
2392 if (!MatchPrefix.empty())
2393 return false;
2394
2395 std::vector<Record*> Aliases =
2396 Info.getRecords().getAllDerivedDefinitions("MnemonicAlias");
2397 if (Aliases.empty()) return false;
2398
2399 OS << "static void applyMnemonicAliases(StringRef &Mnemonic, "
2400 "unsigned Features, unsigned VariantID) {\n";
2401 OS << " switch (VariantID) {\n";
2402 unsigned VariantCount = Target.getAsmParserVariantCount();
2403 for (unsigned VC = 0; VC != VariantCount; ++VC) {
2404 Record *AsmVariant = Target.getAsmParserVariant(VC);
2405 int AsmParserVariantNo = AsmVariant->getValueAsInt("Variant");
2406 std::string AsmParserVariantName = AsmVariant->getValueAsString("Name");
2407 OS << " case " << AsmParserVariantNo << ":\n";
2408 emitMnemonicAliasVariant(OS, Info, Aliases, /*Indent=*/2,
2409 AsmParserVariantName);
2410 OS << " break;\n";
2411 }
2412 OS << " }\n";
2413
2414 // Emit aliases that apply to all variants.
2415 emitMnemonicAliasVariant(OS, Info, Aliases);
2416
Daniel Dunbar55b5e852011-01-18 01:59:30 +00002417 OS << "}\n\n";
Bob Wilson828295b2011-01-26 21:26:19 +00002418
Chris Lattner7fd44892010-10-30 18:48:18 +00002419 return true;
Chris Lattner674c1dc2010-10-30 17:36:36 +00002420}
2421
Jim Grosbach194f3fa2012-03-01 17:30:35 +00002422static const char *getMinimalTypeForRange(uint64_t Range) {
2423 assert(Range < 0xFFFFFFFFULL && "Enum too large");
2424 if (Range > 0xFFFF)
2425 return "uint32_t";
2426 if (Range > 0xFF)
2427 return "uint16_t";
2428 return "uint8_t";
2429}
2430
Jim Grosbach8caecde2012-04-19 17:52:32 +00002431static void emitCustomOperandParsing(raw_ostream &OS, CodeGenTarget &Target,
Craig Topper3a364442012-09-18 07:02:21 +00002432 const AsmMatcherInfo &Info, StringRef ClassName,
2433 StringToOffsetTable &StringTable,
2434 unsigned MaxMnemonicIndex) {
2435 unsigned MaxMask = 0;
2436 for (std::vector<OperandMatchEntry>::const_iterator it =
2437 Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2438 it != ie; ++it) {
2439 MaxMask |= it->OperandMask;
2440 }
2441
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002442 // Emit the static custom operand parsing table;
2443 OS << "namespace {\n";
2444 OS << " struct OperandMatchEntry {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002445 OS << " " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
Craig Topperfab3f7e2012-04-02 07:48:39 +00002446 << " RequiredFeatures;\n";
Craig Topper3a364442012-09-18 07:02:21 +00002447 OS << " " << getMinimalTypeForRange(MaxMnemonicIndex)
2448 << " Mnemonic;\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002449 OS << " " << getMinimalTypeForRange(Info.Classes.size())
Craig Topper3a364442012-09-18 07:02:21 +00002450 << " Class;\n";
2451 OS << " " << getMinimalTypeForRange(MaxMask)
2452 << " OperandMask;\n\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002453 OS << " StringRef getMnemonic() const {\n";
2454 OS << " return StringRef(MnemonicTable + Mnemonic + 1,\n";
2455 OS << " MnemonicTable[Mnemonic]);\n";
2456 OS << " }\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002457 OS << " };\n\n";
2458
2459 OS << " // Predicate for searching for an opcode.\n";
2460 OS << " struct LessOpcodeOperand {\n";
2461 OS << " bool operator()(const OperandMatchEntry &LHS, StringRef RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002462 OS << " return LHS.getMnemonic() < RHS;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002463 OS << " }\n";
2464 OS << " bool operator()(StringRef LHS, const OperandMatchEntry &RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002465 OS << " return LHS < RHS.getMnemonic();\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002466 OS << " }\n";
2467 OS << " bool operator()(const OperandMatchEntry &LHS,";
2468 OS << " const OperandMatchEntry &RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002469 OS << " return LHS.getMnemonic() < RHS.getMnemonic();\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002470 OS << " }\n";
2471 OS << " };\n";
2472
2473 OS << "} // end anonymous namespace.\n\n";
2474
2475 OS << "static const OperandMatchEntry OperandMatchTable["
2476 << Info.OperandMatchInfo.size() << "] = {\n";
2477
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002478 OS << " /* Operand List Mask, Mnemonic, Operand Class, Features */\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002479 for (std::vector<OperandMatchEntry>::const_iterator it =
2480 Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2481 it != ie; ++it) {
2482 const OperandMatchEntry &OMI = *it;
2483 const MatchableInfo &II = *OMI.MI;
2484
Craig Topper3a364442012-09-18 07:02:21 +00002485 OS << " { ";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002486
Craig Topper3a364442012-09-18 07:02:21 +00002487 // Write the required features mask.
2488 if (!II.RequiredFeatures.empty()) {
2489 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2490 if (i) OS << "|";
2491 OS << II.RequiredFeatures[i]->getEnumName();
2492 }
2493 } else
2494 OS << "0";
2495
2496 // Store a pascal-style length byte in the mnemonic.
2497 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2498 OS << ", " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
2499 << " /* " << II.Mnemonic << " */, ";
2500
2501 OS << OMI.CI->Name;
2502
2503 OS << ", " << OMI.OperandMask;
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002504 OS << " /* ";
2505 bool printComma = false;
2506 for (int i = 0, e = 31; i !=e; ++i)
2507 if (OMI.OperandMask & (1 << i)) {
2508 if (printComma)
2509 OS << ", ";
2510 OS << i;
2511 printComma = true;
2512 }
2513 OS << " */";
2514
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002515 OS << " },\n";
2516 }
2517 OS << "};\n\n";
2518
2519 // Emit the operand class switch to call the correct custom parser for
2520 // the found operand class.
Jim Grosbachf922c472011-02-12 01:34:40 +00002521 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
2522 << Target.getName() << ClassName << "::\n"
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002523 << "tryCustomParseOperand(SmallVectorImpl<MCParsedAsmOperand*>"
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002524 << " &Operands,\n unsigned MCK) {\n\n"
2525 << " switch(MCK) {\n";
2526
2527 for (std::vector<ClassInfo*>::const_iterator it = Info.Classes.begin(),
2528 ie = Info.Classes.end(); it != ie; ++it) {
2529 ClassInfo *CI = *it;
2530 if (CI->ParserMethod.empty())
2531 continue;
2532 OS << " case " << CI->Name << ":\n"
2533 << " return " << CI->ParserMethod << "(Operands);\n";
2534 }
2535
2536 OS << " default:\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002537 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002538 OS << " }\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002539 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002540 OS << "}\n\n";
2541
2542 // Emit the static custom operand parser. This code is very similar with
2543 // the other matcher. Also use MatchResultTy here just in case we go for
2544 // a better error handling.
Jim Grosbachf922c472011-02-12 01:34:40 +00002545 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002546 << Target.getName() << ClassName << "::\n"
2547 << "MatchOperandParserImpl(SmallVectorImpl<MCParsedAsmOperand*>"
2548 << " &Operands,\n StringRef Mnemonic) {\n";
2549
2550 // Emit code to get the available features.
2551 OS << " // Get the current feature set.\n";
2552 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2553
2554 OS << " // Get the next operand index.\n";
2555 OS << " unsigned NextOpNum = Operands.size()-1;\n";
2556
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002557 // Emit code to search the table.
2558 OS << " // Search the table.\n";
2559 OS << " std::pair<const OperandMatchEntry*, const OperandMatchEntry*>";
2560 OS << " MnemonicRange =\n";
2561 OS << " std::equal_range(OperandMatchTable, OperandMatchTable+"
2562 << Info.OperandMatchInfo.size() << ", Mnemonic,\n"
2563 << " LessOpcodeOperand());\n\n";
2564
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002565 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002566 OS << " return MatchOperand_NoMatch;\n\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002567
2568 OS << " for (const OperandMatchEntry *it = MnemonicRange.first,\n"
2569 << " *ie = MnemonicRange.second; it != ie; ++it) {\n";
2570
2571 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002572 OS << " assert(Mnemonic == it->getMnemonic());\n\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002573
2574 // Emit check that the required features are available.
2575 OS << " // check if the available features match\n";
2576 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2577 << "!= it->RequiredFeatures) {\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002578 OS << " continue;\n";
2579 OS << " }\n\n";
2580
2581 // Emit check to ensure the operand number matches.
2582 OS << " // check if the operand in question has a custom parser.\n";
2583 OS << " if (!(it->OperandMask & (1 << NextOpNum)))\n";
2584 OS << " continue;\n\n";
2585
2586 // Emit call to the custom parser method
2587 OS << " // call custom parse method to handle the operand\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002588 OS << " OperandMatchResultTy Result = ";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002589 OS << "tryCustomParseOperand(Operands, it->Class);\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002590 OS << " if (Result != MatchOperand_NoMatch)\n";
2591 OS << " return Result;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002592 OS << " }\n\n";
2593
Jim Grosbachf922c472011-02-12 01:34:40 +00002594 OS << " // Okay, we had no match.\n";
2595 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002596 OS << "}\n\n";
2597}
2598
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002599void AsmMatcherEmitter::run(raw_ostream &OS) {
Chris Lattner67db8832010-12-13 00:23:57 +00002600 CodeGenTarget Target(Records);
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002601 Record *AsmParser = Target.getAsmParser();
2602 std::string ClassName = AsmParser->getValueAsString("AsmParserClassName");
2603
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002604 // Compute the information on the instructions to match.
Chris Lattner67db8832010-12-13 00:23:57 +00002605 AsmMatcherInfo Info(AsmParser, Target, Records);
Jim Grosbach8caecde2012-04-19 17:52:32 +00002606 Info.buildInfo();
Daniel Dunbara027d222009-07-31 02:32:59 +00002607
Daniel Dunbare1f6de32010-02-02 23:46:36 +00002608 // Sort the instruction table using the partial order on classes. We use
2609 // stable_sort to ensure that ambiguous instructions are still
2610 // deterministically ordered.
Chris Lattner22bc5c42010-11-01 05:06:45 +00002611 std::stable_sort(Info.Matchables.begin(), Info.Matchables.end(),
2612 less_ptr<MatchableInfo>());
Jim Grosbacha7c78222010-10-29 22:13:48 +00002613
Daniel Dunbarb7479c02009-08-08 05:24:34 +00002614 DEBUG_WITH_TYPE("instruction_info", {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002615 for (std::vector<MatchableInfo*>::iterator
2616 it = Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002617 it != ie; ++it)
Daniel Dunbar20927f22009-08-07 08:26:05 +00002618 (*it)->dump();
2619 });
Daniel Dunbara027d222009-07-31 02:32:59 +00002620
Chris Lattner22bc5c42010-11-01 05:06:45 +00002621 // Check for ambiguous matchables.
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002622 DEBUG_WITH_TYPE("ambiguous_instrs", {
2623 unsigned NumAmbiguous = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002624 for (unsigned i = 0, e = Info.Matchables.size(); i != e; ++i) {
Chris Lattner87410362010-09-06 20:21:47 +00002625 for (unsigned j = i + 1; j != e; ++j) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002626 MatchableInfo &A = *Info.Matchables[i];
2627 MatchableInfo &B = *Info.Matchables[j];
Jim Grosbacha7c78222010-10-29 22:13:48 +00002628
Jim Grosbach8caecde2012-04-19 17:52:32 +00002629 if (A.couldMatchAmbiguouslyWith(B)) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002630 errs() << "warning: ambiguous matchables:\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002631 A.dump();
2632 errs() << "\nis incomparable with:\n";
2633 B.dump();
2634 errs() << "\n\n";
Chris Lattner87410362010-09-06 20:21:47 +00002635 ++NumAmbiguous;
2636 }
Daniel Dunbar2b544812009-08-09 06:05:33 +00002637 }
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002638 }
Chris Lattner87410362010-09-06 20:21:47 +00002639 if (NumAmbiguous)
Jim Grosbacha7c78222010-10-29 22:13:48 +00002640 errs() << "warning: " << NumAmbiguous
Chris Lattner22bc5c42010-11-01 05:06:45 +00002641 << " ambiguous matchables!\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002642 });
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002643
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002644 // Compute the information on the custom operand parsing.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002645 Info.buildOperandMatchInfo();
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002646
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002647 // Write the output.
2648
Chris Lattner0692ee62010-09-06 19:11:01 +00002649 // Information for the class declaration.
2650 OS << "\n#ifdef GET_ASSEMBLER_HEADER\n";
2651 OS << "#undef GET_ASSEMBLER_HEADER\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002652 OS << " // This should be included into the middle of the declaration of\n";
Evan Cheng94b95502011-07-26 00:24:13 +00002653 OS << " // your subclasses implementation of MCTargetAsmParser.\n";
Evan Chengebdeeab2011-07-08 01:53:10 +00002654 OS << " unsigned ComputeAvailableFeatures(uint64_t FeatureBits) const;\n";
Chad Rosier90e11f82012-09-05 01:02:38 +00002655 OS << " void convertToMCInst(unsigned Kind, MCInst &Inst, "
Daniel Dunbar5c228a92011-02-04 23:17:40 +00002656 << "unsigned Opcode,\n"
Chad Rosierc69bb702012-10-02 00:25:57 +00002657 << " const SmallVectorImpl<MCParsedAsmOperand*> "
Daniel Dunbar5c228a92011-02-04 23:17:40 +00002658 << "&Operands);\n";
Chad Rosierc69bb702012-10-02 00:25:57 +00002659 OS << " void convertToMapAndConstraints(unsigned Kind,\n ";
Chad Rosier6e006d32012-10-12 22:53:36 +00002660 OS << " const SmallVectorImpl<MCParsedAsmOperand*> &Operands);\n";
Craig Topperf63ef912013-07-24 07:33:14 +00002661 OS << " bool mnemonicIsValid(StringRef Mnemonic, unsigned VariantID);\n";
Chad Rosier9ba9d4d2012-10-05 18:41:14 +00002662 OS << " unsigned MatchInstructionImpl(\n";
2663 OS.indent(27);
2664 OS << "const SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n"
Chad Rosier6e006d32012-10-12 22:53:36 +00002665 << " MCInst &Inst,\n"
Chad Rosierc69bb702012-10-02 00:25:57 +00002666 << " unsigned &ErrorInfo,"
2667 << " bool matchingInlineAsm,\n"
2668 << " unsigned VariantID = 0);\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002669
2670 if (Info.OperandMatchInfo.size()) {
Jim Grosbachf922c472011-02-12 01:34:40 +00002671 OS << "\n enum OperandMatchResultTy {\n";
2672 OS << " MatchOperand_Success, // operand matched successfully\n";
2673 OS << " MatchOperand_NoMatch, // operand did not match\n";
2674 OS << " MatchOperand_ParseFail // operand matched but had errors\n";
2675 OS << " };\n";
2676 OS << " OperandMatchResultTy MatchOperandParserImpl(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002677 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2678 OS << " StringRef Mnemonic);\n";
2679
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002680 OS << " OperandMatchResultTy tryCustomParseOperand(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002681 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2682 OS << " unsigned MCK);\n\n";
2683 }
2684
Chris Lattner0692ee62010-09-06 19:11:01 +00002685 OS << "#endif // GET_ASSEMBLER_HEADER_INFO\n\n";
2686
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002687 // Emit the operand match diagnostic enum names.
2688 OS << "\n#ifdef GET_OPERAND_DIAGNOSTIC_TYPES\n";
2689 OS << "#undef GET_OPERAND_DIAGNOSTIC_TYPES\n\n";
2690 emitOperandDiagnosticTypes(Info, OS);
2691 OS << "#endif // GET_OPERAND_DIAGNOSTIC_TYPES\n\n";
2692
2693
Chris Lattner0692ee62010-09-06 19:11:01 +00002694 OS << "\n#ifdef GET_REGISTER_MATCHER\n";
2695 OS << "#undef GET_REGISTER_MATCHER\n\n";
2696
Daniel Dunbar54074b52010-07-19 05:44:09 +00002697 // Emit the subtarget feature enumeration.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002698 emitSubtargetFeatureFlagEnumeration(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002699
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002700 // Emit the function to match a register name to number.
Akira Hatanaka72e9b6a2012-08-17 20:16:42 +00002701 // This should be omitted for Mips target
2702 if (AsmParser->getValueAsBit("ShouldEmitMatchRegisterName"))
2703 emitMatchRegisterName(Target, AsmParser, OS);
Chris Lattner0692ee62010-09-06 19:11:01 +00002704
2705 OS << "#endif // GET_REGISTER_MATCHER\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002706
Craig Topper8030e1a2012-04-25 06:56:34 +00002707 OS << "\n#ifdef GET_SUBTARGET_FEATURE_NAME\n";
2708 OS << "#undef GET_SUBTARGET_FEATURE_NAME\n\n";
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002709
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002710 // Generate the helper function to get the names for subtarget features.
2711 emitGetSubtargetFeatureName(Info, OS);
2712
Craig Topper8030e1a2012-04-25 06:56:34 +00002713 OS << "#endif // GET_SUBTARGET_FEATURE_NAME\n\n";
2714
2715 OS << "\n#ifdef GET_MATCHER_IMPLEMENTATION\n";
2716 OS << "#undef GET_MATCHER_IMPLEMENTATION\n\n";
2717
Chris Lattner7fd44892010-10-30 18:48:18 +00002718 // Generate the function that remaps for mnemonic aliases.
Chad Rosier88eb89b2013-04-18 22:35:36 +00002719 bool HasMnemonicAliases = emitMnemonicAliases(OS, Info, Target);
Bob Wilson828295b2011-01-26 21:26:19 +00002720
Chad Rosier22685872012-10-01 23:45:51 +00002721 // Generate the convertToMCInst function to convert operands into an MCInst.
2722 // Also, generate the convertToMapAndConstraints function for MS-style inline
2723 // assembly. The latter doesn't actually generate a MCInst.
2724 emitConvertFuncs(Target, ClassName, Info.Matchables, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002725
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002726 // Emit the enumeration for classes which participate in matching.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002727 emitMatchClassEnumeration(Target, Info.Classes, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002728
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002729 // Emit the routine to match token strings to their match class.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002730 emitMatchTokenString(Target, Info.Classes, OS);
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002731
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002732 // Emit the subclass predicate routine.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002733 emitIsSubclass(Target, Info.Classes, OS);
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002734
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002735 // Emit the routine to validate an operand against a match class.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002736 emitValidateOperandClass(Info, OS);
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002737
Daniel Dunbar54074b52010-07-19 05:44:09 +00002738 // Emit the available features compute function.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002739 emitComputeAvailableFeatures(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002740
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002741
Craig Topperfee7f012012-09-18 06:10:45 +00002742 StringToOffsetTable StringTable;
2743
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002744 size_t MaxNumOperands = 0;
Craig Topperfee7f012012-09-18 06:10:45 +00002745 unsigned MaxMnemonicIndex = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002746 for (std::vector<MatchableInfo*>::const_iterator it =
2747 Info.Matchables.begin(), ie = Info.Matchables.end();
Craig Topperfee7f012012-09-18 06:10:45 +00002748 it != ie; ++it) {
2749 MatchableInfo &II = **it;
2750 MaxNumOperands = std::max(MaxNumOperands, II.AsmOperands.size());
2751
2752 // Store a pascal-style length byte in the mnemonic.
2753 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2754 MaxMnemonicIndex = std::max(MaxMnemonicIndex,
2755 StringTable.GetOrAddStringOffset(LenMnemonic, false));
2756 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002757
Craig Topper3a364442012-09-18 07:02:21 +00002758 OS << "static const char *const MnemonicTable =\n";
2759 StringTable.EmitString(OS);
2760 OS << ";\n\n";
2761
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002762 // Emit the static match table; unused classes get initalized to 0 which is
2763 // guaranteed to be InvalidMatchClass.
2764 //
2765 // FIXME: We can reduce the size of this table very easily. First, we change
2766 // it so that store the kinds in separate bit-fields for each index, which
2767 // only needs to be the max width used for classes at that index (we also need
2768 // to reject based on this during classification). If we then make sure to
2769 // order the match kinds appropriately (putting mnemonics last), then we
2770 // should only end up using a few bits for each class, especially the ones
2771 // following the mnemonic.
Chris Lattner96352e52010-09-06 21:08:38 +00002772 OS << "namespace {\n";
2773 OS << " struct MatchEntry {\n";
Craig Topperfee7f012012-09-18 06:10:45 +00002774 OS << " " << getMinimalTypeForRange(MaxMnemonicIndex)
2775 << " Mnemonic;\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002776 OS << " uint16_t Opcode;\n";
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002777 OS << " " << getMinimalTypeForRange(Info.Matchables.size())
2778 << " ConvertFn;\n";
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002779 OS << " " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
2780 << " RequiredFeatures;\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002781 OS << " " << getMinimalTypeForRange(Info.Classes.size())
2782 << " Classes[" << MaxNumOperands << "];\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002783 OS << " StringRef getMnemonic() const {\n";
2784 OS << " return StringRef(MnemonicTable + Mnemonic + 1,\n";
2785 OS << " MnemonicTable[Mnemonic]);\n";
2786 OS << " }\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002787 OS << " };\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002788
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002789 OS << " // Predicate for searching for an opcode.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002790 OS << " struct LessOpcode {\n";
2791 OS << " bool operator()(const MatchEntry &LHS, StringRef RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002792 OS << " return LHS.getMnemonic() < RHS;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002793 OS << " }\n";
2794 OS << " bool operator()(StringRef LHS, const MatchEntry &RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002795 OS << " return LHS < RHS.getMnemonic();\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002796 OS << " }\n";
Chris Lattner32c685c2010-09-07 06:10:48 +00002797 OS << " bool operator()(const MatchEntry &LHS, const MatchEntry &RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002798 OS << " return LHS.getMnemonic() < RHS.getMnemonic();\n";
Chris Lattner32c685c2010-09-07 06:10:48 +00002799 OS << " }\n";
Chris Lattner96352e52010-09-06 21:08:38 +00002800 OS << " };\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002801
Chris Lattner96352e52010-09-06 21:08:38 +00002802 OS << "} // end anonymous namespace.\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002803
Craig Topperf63ef912013-07-24 07:33:14 +00002804 unsigned VariantCount = Target.getAsmParserVariantCount();
2805 for (unsigned VC = 0; VC != VariantCount; ++VC) {
2806 Record *AsmVariant = Target.getAsmParserVariant(VC);
2807 std::string CommentDelimiter =
2808 AsmVariant->getValueAsString("CommentDelimiter");
2809 std::string RegisterPrefix = AsmVariant->getValueAsString("RegisterPrefix");
2810 int AsmVariantNo = AsmVariant->getValueAsInt("Variant");
Jim Grosbacha7c78222010-10-29 22:13:48 +00002811
Craig Topperf63ef912013-07-24 07:33:14 +00002812 OS << "static const MatchEntry MatchTable" << VC << "[] = {\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002813
Craig Topperf63ef912013-07-24 07:33:14 +00002814 for (std::vector<MatchableInfo*>::const_iterator it =
2815 Info.Matchables.begin(), ie = Info.Matchables.end();
2816 it != ie; ++it) {
2817 MatchableInfo &II = **it;
2818 if (II.AsmVariantID != AsmVariantNo)
2819 continue;
Jim Grosbacha7c78222010-10-29 22:13:48 +00002820
Craig Topperf63ef912013-07-24 07:33:14 +00002821 // Store a pascal-style length byte in the mnemonic.
2822 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2823 OS << " { " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
2824 << " /* " << II.Mnemonic << " */, "
2825 << Target.getName() << "::"
2826 << II.getResultInst()->TheDef->getName() << ", "
2827 << II.ConversionFnKind << ", ";
2828
2829 // Write the required features mask.
2830 if (!II.RequiredFeatures.empty()) {
2831 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2832 if (i) OS << "|";
2833 OS << II.RequiredFeatures[i]->getEnumName();
2834 }
2835 } else
2836 OS << "0";
2837
2838 OS << ", { ";
2839 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
2840 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
2841
2842 if (i) OS << ", ";
2843 OS << Op.Class->Name;
Daniel Dunbar54074b52010-07-19 05:44:09 +00002844 }
Craig Topperf63ef912013-07-24 07:33:14 +00002845 OS << " }, },\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002846 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002847
Craig Topperf63ef912013-07-24 07:33:14 +00002848 OS << "};\n\n";
2849 }
Daniel Dunbara027d222009-07-31 02:32:59 +00002850
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002851 // A method to determine if a mnemonic is in the list.
2852 OS << "bool " << Target.getName() << ClassName << "::\n"
Craig Topperf63ef912013-07-24 07:33:14 +00002853 << "mnemonicIsValid(StringRef Mnemonic, unsigned VariantID) {\n";
2854 OS << " // Find the appropriate table for this asm variant.\n";
2855 OS << " const MatchEntry *Start, *End;\n";
2856 OS << " switch (VariantID) {\n";
2857 OS << " default: // unreachable\n";
2858 for (unsigned VC = 0; VC != VariantCount; ++VC) {
2859 Record *AsmVariant = Target.getAsmParserVariant(VC);
2860 std::string CommentDelimiter =
2861 AsmVariant->getValueAsString("CommentDelimiter");
2862 std::string RegisterPrefix = AsmVariant->getValueAsString("RegisterPrefix");
2863 int AsmVariantNo = AsmVariant->getValueAsInt("Variant");
2864 OS << " case " << AsmVariantNo << ": Start = MatchTable" << VC
2865 << "; End = array_endof(MatchTable" << VC << "); break;\n";
2866 }
2867 OS << " }\n";
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002868 OS << " // Search the table.\n";
2869 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
Craig Topperf63ef912013-07-24 07:33:14 +00002870 OS << " std::equal_range(Start, End, Mnemonic, LessOpcode());\n";
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002871 OS << " return MnemonicRange.first != MnemonicRange.second;\n";
2872 OS << "}\n\n";
2873
Chris Lattner96352e52010-09-06 21:08:38 +00002874 // Finally, build the match function.
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002875 OS << "unsigned "
Chris Lattner96352e52010-09-06 21:08:38 +00002876 << Target.getName() << ClassName << "::\n"
2877 << "MatchInstructionImpl(const SmallVectorImpl<MCParsedAsmOperand*>"
2878 << " &Operands,\n";
Chad Rosier6e006d32012-10-12 22:53:36 +00002879 OS << " MCInst &Inst,\n"
Chad Rosier22685872012-10-01 23:45:51 +00002880 << "unsigned &ErrorInfo, bool matchingInlineAsm, unsigned VariantID) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002881
Chad Rosier0bad0862012-08-30 21:43:05 +00002882 OS << " // Eliminate obvious mismatches.\n";
2883 OS << " if (Operands.size() > " << (MaxNumOperands+1) << ") {\n";
2884 OS << " ErrorInfo = " << (MaxNumOperands+1) << ";\n";
2885 OS << " return Match_InvalidOperand;\n";
2886 OS << " }\n\n";
2887
Daniel Dunbar54074b52010-07-19 05:44:09 +00002888 // Emit code to get the available features.
2889 OS << " // Get the current feature set.\n";
2890 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2891
Chris Lattner674c1dc2010-10-30 17:36:36 +00002892 OS << " // Get the instruction mnemonic, which is the first token.\n";
2893 OS << " StringRef Mnemonic = ((" << Target.getName()
2894 << "Operand*)Operands[0])->getToken();\n\n";
2895
Chris Lattner7fd44892010-10-30 18:48:18 +00002896 if (HasMnemonicAliases) {
2897 OS << " // Process all MnemonicAliases to remap the mnemonic.\n";
Chad Rosier88eb89b2013-04-18 22:35:36 +00002898 OS << " applyMnemonicAliases(Mnemonic, AvailableFeatures, VariantID);\n\n";
Chris Lattner7fd44892010-10-30 18:48:18 +00002899 }
Bob Wilson828295b2011-01-26 21:26:19 +00002900
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002901 // Emit code to compute the class list for this operand vector.
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002902 OS << " // Some state to try to produce better error messages.\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002903 OS << " bool HadMatchOtherThanFeatures = false;\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00002904 OS << " bool HadMatchOtherThanPredicate = false;\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002905 OS << " unsigned RetCode = Match_InvalidOperand;\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002906 OS << " unsigned MissingFeatures = ~0U;\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002907 OS << " // Set ErrorInfo to the operand that mismatches if it is\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002908 OS << " // wrong for all instances of the instruction.\n";
2909 OS << " ErrorInfo = ~0U;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002910
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002911 // Emit code to search the table.
Craig Topperf63ef912013-07-24 07:33:14 +00002912 OS << " // Find the appropriate table for this asm variant.\n";
2913 OS << " const MatchEntry *Start, *End;\n";
2914 OS << " switch (VariantID) {\n";
2915 OS << " default: // unreachable\n";
2916 for (unsigned VC = 0; VC != VariantCount; ++VC) {
2917 Record *AsmVariant = Target.getAsmParserVariant(VC);
2918 std::string CommentDelimiter =
2919 AsmVariant->getValueAsString("CommentDelimiter");
2920 std::string RegisterPrefix = AsmVariant->getValueAsString("RegisterPrefix");
2921 int AsmVariantNo = AsmVariant->getValueAsInt("Variant");
2922 OS << " case " << AsmVariantNo << ": Start = MatchTable" << VC
2923 << "; End = array_endof(MatchTable" << VC << "); break;\n";
2924 }
2925 OS << " }\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002926 OS << " // Search the table.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002927 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
Craig Topperf63ef912013-07-24 07:33:14 +00002928 OS << " std::equal_range(Start, End, Mnemonic, LessOpcode());\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002929
Chris Lattnera008e8a2010-09-06 21:54:15 +00002930 OS << " // Return a more specific error code if no mnemonics match.\n";
2931 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
2932 OS << " return Match_MnemonicFail;\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002933
Chris Lattner2b1f9432010-09-06 21:22:45 +00002934 OS << " for (const MatchEntry *it = MnemonicRange.first, "
Chris Lattner80db4e52010-09-06 21:23:43 +00002935 << "*ie = MnemonicRange.second;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002936 OS << " it != ie; ++it) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002937
Gabor Greife53ee3b2010-09-07 06:06:06 +00002938 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002939 OS << " assert(Mnemonic == it->getMnemonic());\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002940
Daniel Dunbar54074b52010-07-19 05:44:09 +00002941 // Emit check that the subclasses match.
Chris Lattnerce4a3352010-09-06 22:11:18 +00002942 OS << " bool OperandsValid = true;\n";
2943 OS << " for (unsigned i = 0; i != " << MaxNumOperands << "; ++i) {\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002944 OS << " if (i + 1 >= Operands.size()) {\n";
2945 OS << " OperandsValid = (it->Classes[i] == " <<"InvalidMatchClass);\n";
Bill Wendling087642f2012-08-04 10:31:40 +00002946 OS << " if (!OperandsValid) ErrorInfo = i + 1;\n";
Jim Grosbachb9d5af02011-05-03 19:09:56 +00002947 OS << " break;\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002948 OS << " }\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002949 OS << " unsigned Diag = validateOperandClass(Operands[i+1],\n";
2950 OS.indent(43);
2951 OS << "(MatchClassKind)it->Classes[i]);\n";
2952 OS << " if (Diag == Match_Success)\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002953 OS << " continue;\n";
Jim Grosbachfa05def2013-02-06 06:00:06 +00002954 OS << " // If the generic handler indicates an invalid operand\n";
2955 OS << " // failure, check for a special case.\n";
2956 OS << " if (Diag == Match_InvalidOperand) {\n";
2957 OS << " Diag = validateTargetOperandClass(Operands[i+1],\n";
2958 OS.indent(43);
2959 OS << "(MatchClassKind)it->Classes[i]);\n";
2960 OS << " if (Diag == Match_Success)\n";
2961 OS << " continue;\n";
2962 OS << " }\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002963 OS << " // If this operand is broken for all of the instances of this\n";
2964 OS << " // mnemonic, keep track of it so we can report loc info.\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002965 OS << " // If we already had a match that only failed due to a\n";
2966 OS << " // target predicate, that diagnostic is preferred.\n";
2967 OS << " if (!HadMatchOtherThanPredicate &&\n";
2968 OS << " (it == MnemonicRange.first || ErrorInfo <= i+1)) {\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002969 OS << " ErrorInfo = i+1;\n";
Jim Grosbachef970c12012-06-26 22:58:01 +00002970 OS << " // InvalidOperand is the default. Prefer specificity.\n";
2971 OS << " if (Diag != Match_InvalidOperand)\n";
2972 OS << " RetCode = Diag;\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002973 OS << " }\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002974 OS << " // Otherwise, just reject this instance of the mnemonic.\n";
2975 OS << " OperandsValid = false;\n";
2976 OS << " break;\n";
2977 OS << " }\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002978
Chris Lattnerce4a3352010-09-06 22:11:18 +00002979 OS << " if (!OperandsValid) continue;\n";
Chris Lattnerec6789f2010-09-06 20:08:02 +00002980
2981 // Emit check that the required features are available.
2982 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2983 << "!= it->RequiredFeatures) {\n";
2984 OS << " HadMatchOtherThanFeatures = true;\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002985 OS << " unsigned NewMissingFeatures = it->RequiredFeatures & "
2986 "~AvailableFeatures;\n";
Chad Rosier0bad0862012-08-30 21:43:05 +00002987 OS << " if (CountPopulation_32(NewMissingFeatures) <=\n"
2988 " CountPopulation_32(MissingFeatures))\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002989 OS << " MissingFeatures = NewMissingFeatures;\n";
Chris Lattnerec6789f2010-09-06 20:08:02 +00002990 OS << " continue;\n";
2991 OS << " }\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002992 OS << "\n";
Chad Rosier22685872012-10-01 23:45:51 +00002993 OS << " if (matchingInlineAsm) {\n";
Chad Rosier22685872012-10-01 23:45:51 +00002994 OS << " Inst.setOpcode(it->Opcode);\n";
Chad Rosier6e006d32012-10-12 22:53:36 +00002995 OS << " convertToMapAndConstraints(it->ConvertFn, Operands);\n";
Chad Rosier22685872012-10-01 23:45:51 +00002996 OS << " return Match_Success;\n";
2997 OS << " }\n\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00002998 OS << " // We have selected a definite instruction, convert the parsed\n"
2999 << " // operands into the appropriate MCInst.\n";
Chad Rosier90e11f82012-09-05 01:02:38 +00003000 OS << " convertToMCInst(it->ConvertFn, Inst, it->Opcode, Operands);\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00003001 OS << "\n";
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00003002
Jim Grosbach19cb7f42011-08-15 23:03:29 +00003003 // Verify the instruction with the target-specific match predicate function.
3004 OS << " // We have a potential match. Check the target predicate to\n"
3005 << " // handle any context sensitive constraints.\n"
3006 << " unsigned MatchResult;\n"
3007 << " if ((MatchResult = checkTargetMatchPredicate(Inst)) !="
3008 << " Match_Success) {\n"
3009 << " Inst.clear();\n"
3010 << " RetCode = MatchResult;\n"
Jim Grosbach578071a2011-08-16 20:12:35 +00003011 << " HadMatchOtherThanPredicate = true;\n"
Jim Grosbach19cb7f42011-08-15 23:03:29 +00003012 << " continue;\n"
3013 << " }\n\n";
3014
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00003015 // Call the post-processing function, if used.
3016 std::string InsnCleanupFn =
3017 AsmParser->getValueAsString("AsmParserInstCleanup");
3018 if (!InsnCleanupFn.empty())
3019 OS << " " << InsnCleanupFn << "(Inst);\n";
3020
Chris Lattner79ed3f72010-09-06 19:22:17 +00003021 OS << " return Match_Success;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00003022 OS << " }\n\n";
3023
Chris Lattnerec6789f2010-09-06 20:08:02 +00003024 OS << " // Okay, we had no match. Try to return a useful error code.\n";
Chad Rosier4c1d2ba2012-08-21 17:22:47 +00003025 OS << " if (HadMatchOtherThanPredicate || !HadMatchOtherThanFeatures)\n";
3026 OS << " return RetCode;\n\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00003027 OS << " // Missing feature matches return which features were missing\n";
3028 OS << " ErrorInfo = MissingFeatures;\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00003029 OS << " return Match_MissingFeature;\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00003030 OS << "}\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00003031
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00003032 if (Info.OperandMatchInfo.size())
Craig Topper3a364442012-09-18 07:02:21 +00003033 emitCustomOperandParsing(OS, Target, Info, ClassName, StringTable,
3034 MaxMnemonicIndex);
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00003035
Chris Lattner0692ee62010-09-06 19:11:01 +00003036 OS << "#endif // GET_MATCHER_IMPLEMENTATION\n\n";
Daniel Dunbard51ffcf2009-07-11 19:39:44 +00003037}
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +00003038
3039namespace llvm {
3040
3041void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS) {
3042 emitSourceFileHeader("Assembly Matcher Source Fragment", OS);
3043 AsmMatcherEmitter(RK).run(OS);
3044}
3045
3046} // End llvm namespace