blob: b8deba384b98b76fb97c03a7b6c21faa44808500 [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"
Chris Lattner1de88232010-11-01 01:47:07 +0000103#include "llvm/ADT/SmallPtrSet.h"
Daniel Dunbara027d222009-07-31 02:32:59 +0000104#include "llvm/ADT/SmallVector.h"
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000105#include "llvm/ADT/STLExtras.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>
Daniel Dunbard51ffcf2009-07-11 19:39:44 +0000117using namespace llvm;
118
Daniel Dunbar27249152009-08-07 20:33:39 +0000119static cl::opt<std::string>
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000120MatchPrefix("match-prefix", cl::init(""),
121 cl::desc("Only match instructions with the given prefix"));
Daniel Dunbar20927f22009-08-07 08:26:05 +0000122
Daniel Dunbar20927f22009-08-07 08:26:05 +0000123namespace {
Bob Wilson828295b2011-01-26 21:26:19 +0000124class AsmMatcherInfo;
Daniel Dunbar54074b52010-07-19 05:44:09 +0000125struct SubtargetFeatureInfo;
126
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000127class AsmMatcherEmitter {
128 RecordKeeper &Records;
129public:
130 AsmMatcherEmitter(RecordKeeper &R) : Records(R) {}
131
132 void run(raw_ostream &o);
133};
134
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000135/// ClassInfo - Helper class for storing the information about a particular
136/// class of operands which can be matched.
137struct ClassInfo {
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000138 enum ClassInfoKind {
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000139 /// Invalid kind, for use as a sentinel value.
140 Invalid = 0,
141
142 /// The class for a particular token.
143 Token,
144
145 /// The (first) register class, subsequent register classes are
146 /// RegisterClass0+1, and so on.
147 RegisterClass0,
148
149 /// The (first) user defined class, subsequent user defined classes are
150 /// UserClass0+1, and so on.
151 UserClass0 = 1<<16
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000152 };
153
154 /// Kind - The class kind, which is either a predefined kind, or (UserClass0 +
155 /// N) for the Nth user defined class.
156 unsigned Kind;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000157
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000158 /// SuperClasses - The super classes of this class. Note that for simplicities
159 /// sake user operands only record their immediate super class, while register
160 /// operands include all superclasses.
161 std::vector<ClassInfo*> SuperClasses;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000162
Daniel Dunbar6745d422009-08-09 05:18:30 +0000163 /// Name - The full class name, suitable for use in an enum.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000164 std::string Name;
165
Daniel Dunbar6745d422009-08-09 05:18:30 +0000166 /// ClassName - The unadorned generic name for this class (e.g., Token).
167 std::string ClassName;
168
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000169 /// ValueName - The name of the value this class represents; for a token this
170 /// is the literal token string, for an operand it is the TableGen class (or
171 /// empty if this is a derived class).
172 std::string ValueName;
173
174 /// PredicateMethod - The name of the operand method to test whether the
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000175 /// operand matches this class; this is not valid for Token or register kinds.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000176 std::string PredicateMethod;
177
178 /// RenderMethod - The name of the operand method to add this operand to an
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000179 /// MCInst; this is not valid for Token or register kinds.
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000180 std::string RenderMethod;
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000181
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000182 /// ParserMethod - The name of the operand method to do a target specific
183 /// parsing on the operand.
184 std::string ParserMethod;
185
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000186 /// For register classes, the records for all the registers in this class.
187 std::set<Record*> Registers;
188
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +0000189 /// For custom match classes, he diagnostic kind for when the predicate fails.
190 std::string DiagnosticType;
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000191public:
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000192 /// isRegisterClass() - Check if this is a register class.
193 bool isRegisterClass() const {
194 return Kind >= RegisterClass0 && Kind < UserClass0;
195 }
196
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000197 /// isUserClass() - Check if this is a user defined class.
198 bool isUserClass() const {
199 return Kind >= UserClass0;
200 }
201
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +0000202 /// isRelatedTo - Check whether this class is "related" to \p RHS. Classes
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000203 /// are related if they are in the same class hierarchy.
204 bool isRelatedTo(const ClassInfo &RHS) const {
205 // Tokens are only related to tokens.
206 if (Kind == Token || RHS.Kind == Token)
207 return Kind == Token && RHS.Kind == Token;
208
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000209 // Registers classes are only related to registers classes, and only if
210 // their intersection is non-empty.
211 if (isRegisterClass() || RHS.isRegisterClass()) {
212 if (!isRegisterClass() || !RHS.isRegisterClass())
213 return false;
214
215 std::set<Record*> Tmp;
216 std::insert_iterator< std::set<Record*> > II(Tmp, Tmp.begin());
Jim Grosbacha7c78222010-10-29 22:13:48 +0000217 std::set_intersection(Registers.begin(), Registers.end(),
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000218 RHS.Registers.begin(), RHS.Registers.end(),
219 II);
220
221 return !Tmp.empty();
222 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000223
224 // Otherwise we have two users operands; they are related if they are in the
225 // same class hierarchy.
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000226 //
227 // FIXME: This is an oversimplification, they should only be related if they
228 // intersect, however we don't have that information.
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000229 assert(isUserClass() && RHS.isUserClass() && "Unexpected class!");
230 const ClassInfo *Root = this;
231 while (!Root->SuperClasses.empty())
232 Root = Root->SuperClasses.front();
233
Daniel Dunbar8409bfb2009-08-11 20:10:07 +0000234 const ClassInfo *RHSRoot = &RHS;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000235 while (!RHSRoot->SuperClasses.empty())
236 RHSRoot = RHSRoot->SuperClasses.front();
Jim Grosbacha7c78222010-10-29 22:13:48 +0000237
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000238 return Root == RHSRoot;
239 }
240
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +0000241 /// isSubsetOf - Test whether this class is a subset of \p RHS.
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000242 bool isSubsetOf(const ClassInfo &RHS) const {
243 // This is a subset of RHS if it is the same class...
244 if (this == &RHS)
245 return true;
246
247 // ... or if any of its super classes are a subset of RHS.
248 for (std::vector<ClassInfo*>::const_iterator it = SuperClasses.begin(),
249 ie = SuperClasses.end(); it != ie; ++it)
250 if ((*it)->isSubsetOf(RHS))
251 return true;
252
253 return false;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000254 }
255
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000256 /// operator< - Compare two classes.
257 bool operator<(const ClassInfo &RHS) const {
Daniel Dunbar368a4562010-05-27 05:31:32 +0000258 if (this == &RHS)
259 return false;
260
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000261 // Unrelated classes can be ordered by kind.
262 if (!isRelatedTo(RHS))
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000263 return Kind < RHS.Kind;
264
265 switch (Kind) {
Daniel Dunbar6745d422009-08-09 05:18:30 +0000266 case Invalid:
Craig Topper655b8de2012-02-05 07:21:30 +0000267 llvm_unreachable("Invalid kind!");
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000268
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000269 default:
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000270 // This class precedes the RHS if it is a proper subset of the RHS.
Daniel Dunbar368a4562010-05-27 05:31:32 +0000271 if (isSubsetOf(RHS))
Duncan Sands34727662010-07-12 08:16:59 +0000272 return true;
Daniel Dunbar368a4562010-05-27 05:31:32 +0000273 if (RHS.isSubsetOf(*this))
Duncan Sands34727662010-07-12 08:16:59 +0000274 return false;
Daniel Dunbar368a4562010-05-27 05:31:32 +0000275
276 // Otherwise, order by name to ensure we have a total ordering.
277 return ValueName < RHS.ValueName;
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000278 }
279 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000280};
281
Chris Lattner22bc5c42010-11-01 05:06:45 +0000282/// MatchableInfo - Helper class for storing the necessary information for an
283/// instruction or alias which is capable of being matched.
284struct MatchableInfo {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000285 struct AsmOperand {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000286 /// Token - This is the token that the operand came from.
287 StringRef Token;
Bob Wilson828295b2011-01-26 21:26:19 +0000288
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000289 /// The unique class instance this operand should match.
290 ClassInfo *Class;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000291
Chris Lattner567820c2010-11-04 01:42:59 +0000292 /// The operand name this is, if anything.
293 StringRef SrcOpName;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000294
295 /// The suboperand index within SrcOpName, or -1 for the entire operand.
296 int SubOpIdx;
Bob Wilson828295b2011-01-26 21:26:19 +0000297
Devang Patel63faf822012-01-07 01:33:34 +0000298 /// Register record if this token is singleton register.
299 Record *SingletonReg;
300
Jim Grosbachf35307c2012-01-24 21:06:59 +0000301 explicit AsmOperand(StringRef T) : Token(T), Class(0), SubOpIdx(-1),
Jim Grosbach11fc6462012-04-11 21:02:33 +0000302 SingletonReg(0) {}
Daniel Dunbar20927f22009-08-07 08:26:05 +0000303 };
Bob Wilson828295b2011-01-26 21:26:19 +0000304
Chris Lattner1d13bda2010-11-04 00:43:46 +0000305 /// ResOperand - This represents a single operand in the result instruction
306 /// generated by the match. In cases (like addressing modes) where a single
307 /// assembler operand expands to multiple MCOperands, this represents the
308 /// single assembler operand, not the MCOperand.
309 struct ResOperand {
310 enum {
311 /// RenderAsmOperand - This represents an operand result that is
312 /// generated by calling the render method on the assembly operand. The
313 /// corresponding AsmOperand is specified by AsmOperandNum.
314 RenderAsmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000315
Chris Lattner1d13bda2010-11-04 00:43:46 +0000316 /// TiedOperand - This represents a result operand that is a duplicate of
317 /// a previous result operand.
Chris Lattner98c870f2010-11-06 19:25:43 +0000318 TiedOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000319
Chris Lattner98c870f2010-11-06 19:25:43 +0000320 /// ImmOperand - This represents an immediate value that is dumped into
321 /// the operand.
Chris Lattner90fd7972010-11-06 19:57:21 +0000322 ImmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000323
Chris Lattner90fd7972010-11-06 19:57:21 +0000324 /// RegOperand - This represents a fixed register that is dumped in.
325 RegOperand
Chris Lattner1d13bda2010-11-04 00:43:46 +0000326 } Kind;
Bob Wilson828295b2011-01-26 21:26:19 +0000327
Chris Lattner1d13bda2010-11-04 00:43:46 +0000328 union {
329 /// This is the operand # in the AsmOperands list that this should be
330 /// copied from.
331 unsigned AsmOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000332
Chris Lattner1d13bda2010-11-04 00:43:46 +0000333 /// TiedOperandNum - This is the (earlier) result operand that should be
334 /// copied from.
335 unsigned TiedOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000336
Chris Lattner98c870f2010-11-06 19:25:43 +0000337 /// ImmVal - This is the immediate value added to the instruction.
338 int64_t ImmVal;
Bob Wilson828295b2011-01-26 21:26:19 +0000339
Chris Lattner90fd7972010-11-06 19:57:21 +0000340 /// Register - This is the register record.
341 Record *Register;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000342 };
Bob Wilson828295b2011-01-26 21:26:19 +0000343
Bob Wilsona49c7df2011-01-26 19:44:55 +0000344 /// MINumOperands - The number of MCInst operands populated by this
345 /// operand.
346 unsigned MINumOperands;
Bob Wilson828295b2011-01-26 21:26:19 +0000347
Bob Wilsona49c7df2011-01-26 19:44:55 +0000348 static ResOperand getRenderedOp(unsigned AsmOpNum, unsigned NumOperands) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000349 ResOperand X;
350 X.Kind = RenderAsmOperand;
351 X.AsmOperandNum = AsmOpNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000352 X.MINumOperands = NumOperands;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000353 return X;
354 }
Bob Wilson828295b2011-01-26 21:26:19 +0000355
Bob Wilsona49c7df2011-01-26 19:44:55 +0000356 static ResOperand getTiedOp(unsigned TiedOperandNum) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000357 ResOperand X;
358 X.Kind = TiedOperand;
359 X.TiedOperandNum = TiedOperandNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000360 X.MINumOperands = 1;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000361 return X;
362 }
Bob Wilson828295b2011-01-26 21:26:19 +0000363
Bob Wilsona49c7df2011-01-26 19:44:55 +0000364 static ResOperand getImmOp(int64_t Val) {
Chris Lattner98c870f2010-11-06 19:25:43 +0000365 ResOperand X;
366 X.Kind = ImmOperand;
367 X.ImmVal = Val;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000368 X.MINumOperands = 1;
Chris Lattner98c870f2010-11-06 19:25:43 +0000369 return X;
370 }
Bob Wilson828295b2011-01-26 21:26:19 +0000371
Bob Wilsona49c7df2011-01-26 19:44:55 +0000372 static ResOperand getRegOp(Record *Reg) {
Chris Lattner90fd7972010-11-06 19:57:21 +0000373 ResOperand X;
374 X.Kind = RegOperand;
375 X.Register = Reg;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000376 X.MINumOperands = 1;
Chris Lattner90fd7972010-11-06 19:57:21 +0000377 return X;
378 }
Chris Lattner1d13bda2010-11-04 00:43:46 +0000379 };
Daniel Dunbar20927f22009-08-07 08:26:05 +0000380
Devang Patel56315d32012-01-10 17:50:43 +0000381 /// AsmVariantID - Target's assembly syntax variant no.
382 int AsmVariantID;
383
Chris Lattner3b5aec62010-11-02 17:34:28 +0000384 /// TheDef - This is the definition of the instruction or InstAlias that this
385 /// matchable came from.
Chris Lattner5bc93872010-11-01 04:34:44 +0000386 Record *const TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000387
Chris Lattnerc07bd402010-11-04 02:11:18 +0000388 /// DefRec - This is the definition that it came from.
389 PointerUnion<const CodeGenInstruction*, const CodeGenInstAlias*> DefRec;
Bob Wilson828295b2011-01-26 21:26:19 +0000390
Chris Lattner662e5a32010-11-06 07:14:44 +0000391 const CodeGenInstruction *getResultInst() const {
392 if (DefRec.is<const CodeGenInstruction*>())
393 return DefRec.get<const CodeGenInstruction*>();
394 return DefRec.get<const CodeGenInstAlias*>()->ResultInst;
395 }
Bob Wilson828295b2011-01-26 21:26:19 +0000396
Chris Lattner1d13bda2010-11-04 00:43:46 +0000397 /// ResOperands - This is the operand list that should be built for the result
398 /// MCInst.
Jim Grosbachb423d182012-04-19 17:52:34 +0000399 SmallVector<ResOperand, 8> ResOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000400
401 /// AsmString - The assembly string for this instruction (with variants
Chris Lattner3b5aec62010-11-02 17:34:28 +0000402 /// removed), e.g. "movsx $src, $dst".
Daniel Dunbar20927f22009-08-07 08:26:05 +0000403 std::string AsmString;
404
Chris Lattnerd19ec052010-11-02 17:30:52 +0000405 /// Mnemonic - This is the first token of the matched instruction, its
406 /// mnemonic.
407 StringRef Mnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +0000408
Chris Lattner3116fef2010-11-02 01:03:43 +0000409 /// AsmOperands - The textual operands that this instruction matches,
Chris Lattner3b5aec62010-11-02 17:34:28 +0000410 /// annotated with a class and where in the OperandList they were defined.
411 /// This directly corresponds to the tokenized AsmString after the mnemonic is
412 /// removed.
Jim Grosbachb423d182012-04-19 17:52:34 +0000413 SmallVector<AsmOperand, 8> AsmOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000414
Daniel Dunbar54074b52010-07-19 05:44:09 +0000415 /// Predicates - The required subtarget features to match this instruction.
416 SmallVector<SubtargetFeatureInfo*, 4> RequiredFeatures;
417
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000418 /// ConversionFnKind - The enum value which is passed to the generated
Chad Rosier90e11f82012-09-05 01:02:38 +0000419 /// convertToMCInst to convert parsed operands into an MCInst for this
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000420 /// function.
421 std::string ConversionFnKind;
Bob Wilson828295b2011-01-26 21:26:19 +0000422
Chris Lattner22bc5c42010-11-01 05:06:45 +0000423 MatchableInfo(const CodeGenInstruction &CGI)
Jim Grosbachf35307c2012-01-24 21:06:59 +0000424 : AsmVariantID(0), TheDef(CGI.TheDef), DefRec(&CGI),
Devang Patel56315d32012-01-10 17:50:43 +0000425 AsmString(CGI.AsmString) {
Chris Lattner5bc93872010-11-01 04:34:44 +0000426 }
427
Chris Lattner22bc5c42010-11-01 05:06:45 +0000428 MatchableInfo(const CodeGenInstAlias *Alias)
Jim Grosbachf35307c2012-01-24 21:06:59 +0000429 : AsmVariantID(0), TheDef(Alias->TheDef), DefRec(Alias),
Devang Patel56315d32012-01-10 17:50:43 +0000430 AsmString(Alias->AsmString) {
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000431 }
Bob Wilson828295b2011-01-26 21:26:19 +0000432
Jim Grosbachc1922c72012-04-19 23:59:23 +0000433 // Two-operand aliases clone from the main matchable, but mark the second
434 // operand as a tied operand of the first for purposes of the assembler.
435 void formTwoOperandAlias(StringRef Constraint);
436
Jim Grosbach8caecde2012-04-19 17:52:32 +0000437 void initialize(const AsmMatcherInfo &Info,
Jim Grosbachf35307c2012-01-24 21:06:59 +0000438 SmallPtrSet<Record*, 16> &SingletonRegisters,
Jim Grosbach11fc6462012-04-11 21:02:33 +0000439 int AsmVariantNo, std::string &RegisterPrefix);
Bob Wilson828295b2011-01-26 21:26:19 +0000440
Jim Grosbach8caecde2012-04-19 17:52:32 +0000441 /// validate - Return true if this matchable is a valid thing to match against
Chris Lattner22bc5c42010-11-01 05:06:45 +0000442 /// and perform a bunch of validity checking.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000443 bool validate(StringRef CommentDelimiter, bool Hack) const;
Bob Wilson828295b2011-01-26 21:26:19 +0000444
Jim Grosbachf35307c2012-01-24 21:06:59 +0000445 /// extractSingletonRegisterForAsmOperand - Extract singleton register,
Devang Patel63faf822012-01-07 01:33:34 +0000446 /// if present, from specified token.
447 void
448 extractSingletonRegisterForAsmOperand(unsigned i, const AsmMatcherInfo &Info,
449 std::string &RegisterPrefix);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000450
Jim Grosbach8caecde2012-04-19 17:52:32 +0000451 /// findAsmOperand - Find the AsmOperand with the specified name and
Bob Wilsona49c7df2011-01-26 19:44:55 +0000452 /// suboperand index.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000453 int findAsmOperand(StringRef N, int SubOpIdx) const {
Bob Wilsona49c7df2011-01-26 19:44:55 +0000454 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
455 if (N == AsmOperands[i].SrcOpName &&
456 SubOpIdx == AsmOperands[i].SubOpIdx)
457 return i;
458 return -1;
459 }
Bob Wilson828295b2011-01-26 21:26:19 +0000460
Jim Grosbach8caecde2012-04-19 17:52:32 +0000461 /// findAsmOperandNamed - Find the first AsmOperand with the specified name.
Bob Wilsona49c7df2011-01-26 19:44:55 +0000462 /// This does not check the suboperand index.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000463 int findAsmOperandNamed(StringRef N) const {
Chris Lattnerba3b5b62010-11-04 01:55:23 +0000464 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
465 if (N == AsmOperands[i].SrcOpName)
466 return i;
467 return -1;
468 }
Bob Wilson828295b2011-01-26 21:26:19 +0000469
Jim Grosbach8caecde2012-04-19 17:52:32 +0000470 void buildInstructionResultOperands();
471 void buildAliasResultOperands();
Chris Lattner1d13bda2010-11-04 00:43:46 +0000472
Chris Lattner22bc5c42010-11-01 05:06:45 +0000473 /// operator< - Compare two matchables.
474 bool operator<(const MatchableInfo &RHS) const {
Chris Lattnere206fcf2010-09-06 21:01:37 +0000475 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000476 if (Mnemonic != RHS.Mnemonic)
477 return Mnemonic < RHS.Mnemonic;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000478
Chris Lattner3116fef2010-11-02 01:03:43 +0000479 if (AsmOperands.size() != RHS.AsmOperands.size())
480 return AsmOperands.size() < RHS.AsmOperands.size();
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000481
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000482 // Compare lexicographically by operand. The matcher validates that other
Jim Grosbach8caecde2012-04-19 17:52:32 +0000483 // orderings wouldn't be ambiguous using \see couldMatchAmbiguouslyWith().
Chris Lattner3116fef2010-11-02 01:03:43 +0000484 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
485 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000486 return true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000487 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000488 return false;
489 }
490
Andrew Trick2b70dfa2012-08-29 03:52:57 +0000491 // Give matches that require more features higher precedence. This is useful
492 // because we cannot define AssemblerPredicates with the negation of
493 // processor features. For example, ARM v6 "nop" may be either a HINT or
494 // MOV. With v6, we want to match HINT. The assembler has no way to
495 // predicate MOV under "NoV6", but HINT will always match first because it
496 // requires V6 while MOV does not.
497 if (RequiredFeatures.size() != RHS.RequiredFeatures.size())
498 return RequiredFeatures.size() > RHS.RequiredFeatures.size();
499
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000500 return false;
501 }
502
Jim Grosbach8caecde2012-04-19 17:52:32 +0000503 /// couldMatchAmbiguouslyWith - Check whether this matchable could
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +0000504 /// ambiguously match the same set of operands as \p RHS (without being a
Daniel Dunbar2b544812009-08-09 06:05:33 +0000505 /// strictly superior match).
Jim Grosbach8caecde2012-04-19 17:52:32 +0000506 bool couldMatchAmbiguouslyWith(const MatchableInfo &RHS) {
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000507 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000508 if (Mnemonic != RHS.Mnemonic)
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000509 return false;
Bob Wilson828295b2011-01-26 21:26:19 +0000510
Daniel Dunbar2b544812009-08-09 06:05:33 +0000511 // The number of operands is unambiguous.
Chris Lattner3116fef2010-11-02 01:03:43 +0000512 if (AsmOperands.size() != RHS.AsmOperands.size())
Daniel Dunbar2b544812009-08-09 06:05:33 +0000513 return false;
514
Daniel Dunbar1402f0b2010-01-23 00:26:16 +0000515 // Otherwise, make sure the ordering of the two instructions is unambiguous
516 // by checking that either (a) a token or operand kind discriminates them,
517 // or (b) the ordering among equivalent kinds is consistent.
518
Daniel Dunbar2b544812009-08-09 06:05:33 +0000519 // Tokens and operand kinds are unambiguous (assuming a correct target
520 // specific parser).
Chris Lattner3116fef2010-11-02 01:03:43 +0000521 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
522 if (AsmOperands[i].Class->Kind != RHS.AsmOperands[i].Class->Kind ||
523 AsmOperands[i].Class->Kind == ClassInfo::Token)
524 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class ||
525 *RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000526 return false;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000527
Daniel Dunbar2b544812009-08-09 06:05:33 +0000528 // Otherwise, this operand could commute if all operands are equivalent, or
529 // there is a pair of operands that compare less than and a pair that
530 // compare greater than.
531 bool HasLT = false, HasGT = false;
Chris Lattner3116fef2010-11-02 01:03:43 +0000532 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
533 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000534 HasLT = true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000535 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000536 HasGT = true;
537 }
538
539 return !(HasLT ^ HasGT);
540 }
541
Daniel Dunbar20927f22009-08-07 08:26:05 +0000542 void dump();
Bob Wilson828295b2011-01-26 21:26:19 +0000543
Chris Lattnerd19ec052010-11-02 17:30:52 +0000544private:
Jim Grosbach8caecde2012-04-19 17:52:32 +0000545 void tokenizeAsmString(const AsmMatcherInfo &Info);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000546};
547
Daniel Dunbar54074b52010-07-19 05:44:09 +0000548/// SubtargetFeatureInfo - Helper class for storing information on a subtarget
549/// feature which participates in instruction matching.
550struct SubtargetFeatureInfo {
551 /// \brief The predicate record for this feature.
552 Record *TheDef;
553
554 /// \brief An unique index assigned to represent this feature.
555 unsigned Index;
556
Chris Lattner0aed1e72010-10-30 20:07:57 +0000557 SubtargetFeatureInfo(Record *D, unsigned Idx) : TheDef(D), Index(Idx) {}
Bob Wilson828295b2011-01-26 21:26:19 +0000558
Daniel Dunbar54074b52010-07-19 05:44:09 +0000559 /// \brief The name of the enumerated constant identifying this feature.
Chris Lattner0aed1e72010-10-30 20:07:57 +0000560 std::string getEnumName() const {
561 return "Feature_" + TheDef->getName();
562 }
Daniel Dunbar54074b52010-07-19 05:44:09 +0000563};
564
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000565struct OperandMatchEntry {
566 unsigned OperandMask;
567 MatchableInfo* MI;
568 ClassInfo *CI;
569
Jim Grosbach8caecde2012-04-19 17:52:32 +0000570 static OperandMatchEntry create(MatchableInfo* mi, ClassInfo *ci,
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000571 unsigned opMask) {
572 OperandMatchEntry X;
573 X.OperandMask = opMask;
574 X.CI = ci;
575 X.MI = mi;
576 return X;
577 }
578};
579
580
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000581class AsmMatcherInfo {
582public:
Chris Lattner67db8832010-12-13 00:23:57 +0000583 /// Tracked Records
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000584 RecordKeeper &Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000585
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000586 /// The tablegen AsmParser record.
587 Record *AsmParser;
588
Chris Lattner02bcbc92010-11-01 01:37:30 +0000589 /// Target - The target information.
590 CodeGenTarget &Target;
591
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000592 /// The classes which are needed for matching.
593 std::vector<ClassInfo*> Classes;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000594
Chris Lattner22bc5c42010-11-01 05:06:45 +0000595 /// The information on the matchables to match.
596 std::vector<MatchableInfo*> Matchables;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000597
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000598 /// Info for custom matching operands by user defined methods.
599 std::vector<OperandMatchEntry> OperandMatchInfo;
600
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000601 /// Map of Register records to their class information.
Sean Silvadecfdf52012-09-19 01:47:01 +0000602 typedef std::map<Record*, ClassInfo*, LessRecordByID> RegisterClassesTy;
603 RegisterClassesTy RegisterClasses;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000604
Daniel Dunbar54074b52010-07-19 05:44:09 +0000605 /// Map of Predicate records to their subtarget information.
606 std::map<Record*, SubtargetFeatureInfo*> SubtargetFeatures;
Bob Wilson828295b2011-01-26 21:26:19 +0000607
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +0000608 /// Map of AsmOperandClass records to their class information.
609 std::map<Record*, ClassInfo*> AsmOperandClasses;
610
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000611private:
612 /// Map of token to class information which has already been constructed.
613 std::map<std::string, ClassInfo*> TokenClasses;
614
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000615 /// Map of RegisterClass records to their class information.
616 std::map<Record*, ClassInfo*> RegisterClassClasses;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000617
618private:
619 /// getTokenClass - Lookup or create the class for the given token.
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000620 ClassInfo *getTokenClass(StringRef Token);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000621
622 /// getOperandClass - Lookup or create the class for the given operand.
Bob Wilsona49c7df2011-01-26 19:44:55 +0000623 ClassInfo *getOperandClass(const CGIOperandList::OperandInfo &OI,
Jim Grosbach48c1f842011-10-28 22:32:53 +0000624 int SubOpIdx);
625 ClassInfo *getOperandClass(Record *Rec, int SubOpIdx);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000626
Jim Grosbach8caecde2012-04-19 17:52:32 +0000627 /// buildRegisterClasses - Build the ClassInfo* instances for register
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000628 /// classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000629 void buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters);
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000630
Jim Grosbach8caecde2012-04-19 17:52:32 +0000631 /// buildOperandClasses - Build the ClassInfo* instances for user defined
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000632 /// operand classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000633 void buildOperandClasses();
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000634
Jim Grosbach8caecde2012-04-19 17:52:32 +0000635 void buildInstructionOperandReference(MatchableInfo *II, StringRef OpName,
Bob Wilsona49c7df2011-01-26 19:44:55 +0000636 unsigned AsmOpIdx);
Jim Grosbach8caecde2012-04-19 17:52:32 +0000637 void buildAliasOperandReference(MatchableInfo *II, StringRef OpName,
Chris Lattnerc07bd402010-11-04 02:11:18 +0000638 MatchableInfo::AsmOperand &Op);
Bob Wilson828295b2011-01-26 21:26:19 +0000639
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000640public:
Bob Wilson828295b2011-01-26 21:26:19 +0000641 AsmMatcherInfo(Record *AsmParser,
642 CodeGenTarget &Target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000643 RecordKeeper &Records);
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000644
Jim Grosbach8caecde2012-04-19 17:52:32 +0000645 /// buildInfo - Construct the various tables used during matching.
646 void buildInfo();
Bob Wilson828295b2011-01-26 21:26:19 +0000647
Jim Grosbach8caecde2012-04-19 17:52:32 +0000648 /// buildOperandMatchInfo - Build the necessary information to handle user
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000649 /// defined operand parsing methods.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000650 void buildOperandMatchInfo();
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000651
Chris Lattner6fa152c2010-10-30 20:15:02 +0000652 /// getSubtargetFeature - Lookup or create the subtarget feature info for the
653 /// given operand.
654 SubtargetFeatureInfo *getSubtargetFeature(Record *Def) const {
655 assert(Def->isSubClassOf("Predicate") && "Invalid predicate type!");
656 std::map<Record*, SubtargetFeatureInfo*>::const_iterator I =
657 SubtargetFeatures.find(Def);
658 return I == SubtargetFeatures.end() ? 0 : I->second;
659 }
Chris Lattner67db8832010-12-13 00:23:57 +0000660
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000661 RecordKeeper &getRecords() const {
662 return Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000663 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000664};
665
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000666} // End anonymous namespace
Daniel Dunbar20927f22009-08-07 08:26:05 +0000667
Chris Lattner22bc5c42010-11-01 05:06:45 +0000668void MatchableInfo::dump() {
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000669 errs() << TheDef->getName() << " -- " << "flattened:\"" << AsmString <<"\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000670
Chris Lattner3116fef2010-11-02 01:03:43 +0000671 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000672 AsmOperand &Op = AsmOperands[i];
Daniel Dunbar6745d422009-08-09 05:18:30 +0000673 errs() << " op[" << i << "] = " << Op.Class->ClassName << " - ";
Chris Lattner0bb780c2010-11-04 00:57:06 +0000674 errs() << '\"' << Op.Token << "\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000675 }
676}
677
Jim Grosbachc1922c72012-04-19 23:59:23 +0000678static std::pair<StringRef, StringRef>
Jakob Stoklund Olesen376a8a72012-08-22 23:33:58 +0000679parseTwoOperandConstraint(StringRef S, ArrayRef<SMLoc> Loc) {
Jim Grosbachc1922c72012-04-19 23:59:23 +0000680 // Split via the '='.
681 std::pair<StringRef, StringRef> Ops = S.split('=');
682 if (Ops.second == "")
683 throw TGError(Loc, "missing '=' in two-operand alias constraint");
684 // Trim whitespace and the leading '$' on the operand names.
685 size_t start = Ops.first.find_first_of('$');
686 if (start == std::string::npos)
687 throw TGError(Loc, "expected '$' prefix on asm operand name");
688 Ops.first = Ops.first.slice(start + 1, std::string::npos);
689 size_t end = Ops.first.find_last_of(" \t");
690 Ops.first = Ops.first.slice(0, end);
691 // Now the second operand.
692 start = Ops.second.find_first_of('$');
693 if (start == std::string::npos)
694 throw TGError(Loc, "expected '$' prefix on asm operand name");
695 Ops.second = Ops.second.slice(start + 1, std::string::npos);
696 end = Ops.second.find_last_of(" \t");
697 Ops.first = Ops.first.slice(0, end);
698 return Ops;
699}
700
701void MatchableInfo::formTwoOperandAlias(StringRef Constraint) {
702 // Figure out which operands are aliased and mark them as tied.
703 std::pair<StringRef, StringRef> Ops =
704 parseTwoOperandConstraint(Constraint, TheDef->getLoc());
705
706 // Find the AsmOperands that refer to the operands we're aliasing.
707 int SrcAsmOperand = findAsmOperandNamed(Ops.first);
708 int DstAsmOperand = findAsmOperandNamed(Ops.second);
709 if (SrcAsmOperand == -1)
710 throw TGError(TheDef->getLoc(),
711 "unknown source two-operand alias operand '" +
712 Ops.first.str() + "'.");
713 if (DstAsmOperand == -1)
714 throw TGError(TheDef->getLoc(),
715 "unknown destination two-operand alias operand '" +
716 Ops.second.str() + "'.");
717
718 // Find the ResOperand that refers to the operand we're aliasing away
719 // and update it to refer to the combined operand instead.
720 for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
721 ResOperand &Op = ResOperands[i];
722 if (Op.Kind == ResOperand::RenderAsmOperand &&
723 Op.AsmOperandNum == (unsigned)SrcAsmOperand) {
724 Op.AsmOperandNum = DstAsmOperand;
725 break;
726 }
727 }
728 // Remove the AsmOperand for the alias operand.
729 AsmOperands.erase(AsmOperands.begin() + SrcAsmOperand);
730 // Adjust the ResOperand references to any AsmOperands that followed
731 // the one we just deleted.
732 for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
733 ResOperand &Op = ResOperands[i];
734 switch(Op.Kind) {
735 default:
736 // Nothing to do for operands that don't reference AsmOperands.
737 break;
738 case ResOperand::RenderAsmOperand:
739 if (Op.AsmOperandNum > (unsigned)SrcAsmOperand)
740 --Op.AsmOperandNum;
741 break;
742 case ResOperand::TiedOperand:
743 if (Op.TiedOperandNum > (unsigned)SrcAsmOperand)
744 --Op.TiedOperandNum;
745 break;
746 }
747 }
748}
749
Jim Grosbach8caecde2012-04-19 17:52:32 +0000750void MatchableInfo::initialize(const AsmMatcherInfo &Info,
Devang Patel63faf822012-01-07 01:33:34 +0000751 SmallPtrSet<Record*, 16> &SingletonRegisters,
752 int AsmVariantNo, std::string &RegisterPrefix) {
Devang Patel56315d32012-01-10 17:50:43 +0000753 AsmVariantID = AsmVariantNo;
Jim Grosbachf35307c2012-01-24 21:06:59 +0000754 AsmString =
Devang Patel63faf822012-01-07 01:33:34 +0000755 CodeGenInstruction::FlattenAsmStringVariants(AsmString, AsmVariantNo);
Bob Wilson828295b2011-01-26 21:26:19 +0000756
Jim Grosbach8caecde2012-04-19 17:52:32 +0000757 tokenizeAsmString(Info);
Bob Wilson828295b2011-01-26 21:26:19 +0000758
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000759 // Compute the require features.
760 std::vector<Record*> Predicates =TheDef->getValueAsListOfDefs("Predicates");
761 for (unsigned i = 0, e = Predicates.size(); i != e; ++i)
762 if (SubtargetFeatureInfo *Feature =
763 Info.getSubtargetFeature(Predicates[i]))
764 RequiredFeatures.push_back(Feature);
Bob Wilson828295b2011-01-26 21:26:19 +0000765
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000766 // Collect singleton registers, if used.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000767 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Devang Patel63faf822012-01-07 01:33:34 +0000768 extractSingletonRegisterForAsmOperand(i, Info, RegisterPrefix);
769 if (Record *Reg = AsmOperands[i].SingletonReg)
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000770 SingletonRegisters.insert(Reg);
771 }
772}
773
Jim Grosbach8caecde2012-04-19 17:52:32 +0000774/// tokenizeAsmString - Tokenize a simplified assembly string.
775void MatchableInfo::tokenizeAsmString(const AsmMatcherInfo &Info) {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000776 StringRef String = AsmString;
777 unsigned Prev = 0;
778 bool InTok = true;
779 for (unsigned i = 0, e = String.size(); i != e; ++i) {
780 switch (String[i]) {
781 case '[':
782 case ']':
783 case '*':
784 case '!':
785 case ' ':
786 case '\t':
787 case ',':
788 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000789 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000790 InTok = false;
791 }
792 if (!isspace(String[i]) && String[i] != ',')
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000793 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000794 Prev = i + 1;
795 break;
796
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 ++i;
803 assert(i != String.size() && "Invalid quoted character");
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000804 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000805 Prev = i + 1;
806 break;
807
808 case '$': {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000809 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000810 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000811 InTok = false;
812 }
Bob Wilson828295b2011-01-26 21:26:19 +0000813
Chris Lattner7ad31472010-11-06 22:06:03 +0000814 // If this isn't "${", treat like a normal token.
815 if (i + 1 == String.size() || String[i + 1] != '{') {
816 Prev = i;
817 break;
818 }
Chris Lattnerd19ec052010-11-02 17:30:52 +0000819
820 StringRef::iterator End = std::find(String.begin() + i, String.end(),'}');
821 assert(End != String.end() && "Missing brace in operand reference!");
822 size_t EndPos = End - String.begin();
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000823 AsmOperands.push_back(AsmOperand(String.slice(i, EndPos+1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000824 Prev = EndPos + 1;
825 i = EndPos;
826 break;
827 }
828
829 case '.':
830 if (InTok)
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000831 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000832 Prev = i;
833 InTok = true;
834 break;
835
836 default:
837 InTok = true;
838 }
839 }
840 if (InTok && Prev != String.size())
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000841 AsmOperands.push_back(AsmOperand(String.substr(Prev)));
Bob Wilson828295b2011-01-26 21:26:19 +0000842
Chris Lattnerd19ec052010-11-02 17:30:52 +0000843 // The first token of the instruction is the mnemonic, which must be a
844 // simple string, not a $foo variable or a singleton register.
Jim Grosbach4a2242c2011-11-30 23:16:25 +0000845 if (AsmOperands.empty())
846 throw TGError(TheDef->getLoc(),
847 "Instruction '" + TheDef->getName() + "' has no tokens");
Chris Lattnerd19ec052010-11-02 17:30:52 +0000848 Mnemonic = AsmOperands[0].Token;
Jim Grosbach8e27c962012-05-06 17:33:14 +0000849 if (Mnemonic.empty())
850 throw TGError(TheDef->getLoc(),
851 "Missing instruction mnemonic");
Devang Patel63faf822012-01-07 01:33:34 +0000852 // FIXME : Check and raise an error if it is a register.
Devang Patelb78307f2012-01-07 01:22:23 +0000853 if (Mnemonic[0] == '$')
Chris Lattnerd19ec052010-11-02 17:30:52 +0000854 throw TGError(TheDef->getLoc(),
855 "Invalid instruction mnemonic '" + Mnemonic.str() + "'!");
Bob Wilson828295b2011-01-26 21:26:19 +0000856
Chris Lattnerd19ec052010-11-02 17:30:52 +0000857 // Remove the first operand, it is tracked in the mnemonic field.
858 AsmOperands.erase(AsmOperands.begin());
859}
860
Jim Grosbach8caecde2012-04-19 17:52:32 +0000861bool MatchableInfo::validate(StringRef CommentDelimiter, bool Hack) const {
Chris Lattner22bc5c42010-11-01 05:06:45 +0000862 // Reject matchables with no .s string.
Chris Lattner5bc93872010-11-01 04:34:44 +0000863 if (AsmString.empty())
864 throw TGError(TheDef->getLoc(), "instruction with empty asm string");
Bob Wilson828295b2011-01-26 21:26:19 +0000865
Chris Lattner22bc5c42010-11-01 05:06:45 +0000866 // Reject any matchables with a newline in them, they should be marked
Chris Lattner5bc93872010-11-01 04:34:44 +0000867 // isCodeGenOnly if they are pseudo instructions.
868 if (AsmString.find('\n') != std::string::npos)
869 throw TGError(TheDef->getLoc(),
870 "multiline instruction is not valid for the asmparser, "
871 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000872
Chris Lattner4164f6b2010-11-01 04:44:29 +0000873 // Remove comments from the asm string. We know that the asmstring only
874 // has one line.
875 if (!CommentDelimiter.empty() &&
876 StringRef(AsmString).find(CommentDelimiter) != StringRef::npos)
877 throw TGError(TheDef->getLoc(),
878 "asmstring for instruction has comment character in it, "
879 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000880
Chris Lattner22bc5c42010-11-01 05:06:45 +0000881 // Reject matchables with operand modifiers, these aren't something we can
Bob Wilson906bc362011-01-20 18:38:07 +0000882 // handle, the target should be refactored to use operands instead of
883 // modifiers.
Chris Lattner5bc93872010-11-01 04:34:44 +0000884 //
885 // Also, check for instructions which reference the operand multiple times;
886 // this implies a constraint we would not honor.
887 std::set<std::string> OperandNames;
Chris Lattnerd19ec052010-11-02 17:30:52 +0000888 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
889 StringRef Tok = AsmOperands[i].Token;
890 if (Tok[0] == '$' && Tok.find(':') != StringRef::npos)
Chris Lattner5bc93872010-11-01 04:34:44 +0000891 throw TGError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000892 "matchable with operand modifier '" + Tok.str() +
Chris Lattner5bc93872010-11-01 04:34:44 +0000893 "' not supported by asm matcher. Mark isCodeGenOnly!");
Bob Wilson828295b2011-01-26 21:26:19 +0000894
Chris Lattner22bc5c42010-11-01 05:06:45 +0000895 // Verify that any operand is only mentioned once.
Chris Lattnerd51257a2010-11-02 23:18:43 +0000896 // We reject aliases and ignore instructions for now.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000897 if (Tok[0] == '$' && !OperandNames.insert(Tok).second) {
Chris Lattner22bc5c42010-11-01 05:06:45 +0000898 if (!Hack)
899 throw TGError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000900 "ERROR: matchable with tied operand '" + Tok.str() +
Chris Lattner22bc5c42010-11-01 05:06:45 +0000901 "' can never be matched!");
902 // FIXME: Should reject these. The ARM backend hits this with $lane in a
903 // bunch of instructions. It is unclear what the right answer is.
Chris Lattner5bc93872010-11-01 04:34:44 +0000904 DEBUG({
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000905 errs() << "warning: '" << TheDef->getName() << "': "
Chris Lattner22bc5c42010-11-01 05:06:45 +0000906 << "ignoring instruction with tied operand '"
Chris Lattnerd19ec052010-11-02 17:30:52 +0000907 << Tok.str() << "'\n";
Chris Lattner5bc93872010-11-01 04:34:44 +0000908 });
909 return false;
910 }
911 }
Bob Wilson828295b2011-01-26 21:26:19 +0000912
Chris Lattner5bc93872010-11-01 04:34:44 +0000913 return true;
914}
915
Jim Grosbachf35307c2012-01-24 21:06:59 +0000916/// extractSingletonRegisterForAsmOperand - Extract singleton register,
Devang Pateld06b01c2012-01-09 21:30:46 +0000917/// if present, from specified token.
Devang Patel63faf822012-01-07 01:33:34 +0000918void MatchableInfo::
Jim Grosbachf35307c2012-01-24 21:06:59 +0000919extractSingletonRegisterForAsmOperand(unsigned OperandNo,
Devang Pateld06b01c2012-01-09 21:30:46 +0000920 const AsmMatcherInfo &Info,
Jim Grosbach11fc6462012-04-11 21:02:33 +0000921 std::string &RegisterPrefix) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000922 StringRef Tok = AsmOperands[OperandNo].Token;
Devang Patel63faf822012-01-07 01:33:34 +0000923 if (RegisterPrefix.empty()) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000924 std::string LoweredTok = Tok.lower();
925 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(LoweredTok))
926 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Devang Patel63faf822012-01-07 01:33:34 +0000927 return;
Jim Grosbachf35307c2012-01-24 21:06:59 +0000928 }
Bob Wilson828295b2011-01-26 21:26:19 +0000929
Devang Patel63faf822012-01-07 01:33:34 +0000930 if (!Tok.startswith(RegisterPrefix))
931 return;
932
933 StringRef RegName = Tok.substr(RegisterPrefix.size());
Chris Lattnerec6f0962010-11-02 18:10:06 +0000934 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(RegName))
Devang Pateld06b01c2012-01-09 21:30:46 +0000935 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000936
Chris Lattner1de88232010-11-01 01:47:07 +0000937 // If there is no register prefix (i.e. "%" in "%eax"), then this may
938 // be some random non-register token, just ignore it.
Devang Patel63faf822012-01-07 01:33:34 +0000939 return;
Chris Lattner02bcbc92010-11-01 01:37:30 +0000940}
941
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000942static std::string getEnumNameForToken(StringRef Str) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000943 std::string Res;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000944
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000945 for (StringRef::iterator it = Str.begin(), ie = Str.end(); it != ie; ++it) {
946 switch (*it) {
947 case '*': Res += "_STAR_"; break;
948 case '%': Res += "_PCT_"; break;
949 case ':': Res += "_COLON_"; break;
Bill Wendlingbd9c77b2010-11-18 23:36:54 +0000950 case '!': Res += "_EXCLAIM_"; break;
Bill Wendling0ef755d2011-01-22 09:44:32 +0000951 case '.': Res += "_DOT_"; break;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000952 default:
Chris Lattner39ee0362010-10-31 19:10:56 +0000953 if (isalnum(*it))
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000954 Res += *it;
Chris Lattner39ee0362010-10-31 19:10:56 +0000955 else
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000956 Res += "_" + utostr((unsigned) *it) + "_";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000957 }
958 }
959
960 return Res;
961}
962
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000963ClassInfo *AsmMatcherInfo::getTokenClass(StringRef Token) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000964 ClassInfo *&Entry = TokenClasses[Token];
Jim Grosbacha7c78222010-10-29 22:13:48 +0000965
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000966 if (!Entry) {
967 Entry = new ClassInfo();
968 Entry->Kind = ClassInfo::Token;
Daniel Dunbar6745d422009-08-09 05:18:30 +0000969 Entry->ClassName = "Token";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000970 Entry->Name = "MCK_" + getEnumNameForToken(Token);
971 Entry->ValueName = Token;
972 Entry->PredicateMethod = "<invalid>";
973 Entry->RenderMethod = "<invalid>";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000974 Entry->ParserMethod = "";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +0000975 Entry->DiagnosticType = "";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000976 Classes.push_back(Entry);
977 }
978
979 return Entry;
980}
981
982ClassInfo *
Bob Wilsona49c7df2011-01-26 19:44:55 +0000983AsmMatcherInfo::getOperandClass(const CGIOperandList::OperandInfo &OI,
984 int SubOpIdx) {
985 Record *Rec = OI.Rec;
986 if (SubOpIdx != -1)
David Greene05bce0b2011-07-29 22:43:06 +0000987 Rec = dynamic_cast<DefInit*>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
Jim Grosbach48c1f842011-10-28 22:32:53 +0000988 return getOperandClass(Rec, SubOpIdx);
989}
Bob Wilsona49c7df2011-01-26 19:44:55 +0000990
Jim Grosbach48c1f842011-10-28 22:32:53 +0000991ClassInfo *
992AsmMatcherInfo::getOperandClass(Record *Rec, int SubOpIdx) {
Owen Andersonbea6f612011-06-27 21:06:21 +0000993 if (Rec->isSubClassOf("RegisterOperand")) {
994 // RegisterOperand may have an associated ParserMatchClass. If it does,
995 // use it, else just fall back to the underlying register class.
996 const RecordVal *R = Rec->getValue("ParserMatchClass");
997 if (R == 0 || R->getValue() == 0)
998 throw "Record `" + Rec->getName() +
999 "' does not have a ParserMatchClass!\n";
1000
David Greene05bce0b2011-07-29 22:43:06 +00001001 if (DefInit *DI= dynamic_cast<DefInit*>(R->getValue())) {
Owen Andersonbea6f612011-06-27 21:06:21 +00001002 Record *MatchClass = DI->getDef();
1003 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
1004 return CI;
1005 }
1006
1007 // No custom match class. Just use the register class.
1008 Record *ClassRec = Rec->getValueAsDef("RegClass");
1009 if (!ClassRec)
1010 throw TGError(Rec->getLoc(), "RegisterOperand `" + Rec->getName() +
1011 "' has no associated register class!\n");
1012 if (ClassInfo *CI = RegisterClassClasses[ClassRec])
1013 return CI;
1014 throw TGError(Rec->getLoc(), "register class has no class info!");
1015 }
1016
1017
Bob Wilsona49c7df2011-01-26 19:44:55 +00001018 if (Rec->isSubClassOf("RegisterClass")) {
1019 if (ClassInfo *CI = RegisterClassClasses[Rec])
Chris Lattnerec6f0962010-11-02 18:10:06 +00001020 return CI;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001021 throw TGError(Rec->getLoc(), "register class has no class info!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001022 }
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001023
Jim Grosbacha562dc72012-09-12 17:40:25 +00001024 if (!Rec->isSubClassOf("Operand"))
1025 throw TGError(Rec->getLoc(), "Operand `" + Rec->getName() +
1026 "' does not derive from class Operand!\n");
Bob Wilsona49c7df2011-01-26 19:44:55 +00001027 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
Chris Lattnerec6f0962010-11-02 18:10:06 +00001028 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
1029 return CI;
Daniel Dunbar338825c2009-08-10 18:41:10 +00001030
Bob Wilsona49c7df2011-01-26 19:44:55 +00001031 throw TGError(Rec->getLoc(), "operand has no match class!");
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001032}
1033
Chris Lattner1de88232010-11-01 01:47:07 +00001034void AsmMatcherInfo::
Jim Grosbach8caecde2012-04-19 17:52:32 +00001035buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001036 const std::vector<CodeGenRegister*> &Registers =
1037 Target.getRegBank().getRegisters();
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001038 ArrayRef<CodeGenRegisterClass*> RegClassList =
1039 Target.getRegBank().getRegClasses();
Daniel Dunbar338825c2009-08-10 18:41:10 +00001040
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001041 // The register sets used for matching.
1042 std::set< std::set<Record*> > RegisterSets;
1043
Jim Grosbacha7c78222010-10-29 22:13:48 +00001044 // Gather the defined sets.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001045 for (ArrayRef<CodeGenRegisterClass*>::const_iterator it =
Chris Lattnerec6f0962010-11-02 18:10:06 +00001046 RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it)
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001047 RegisterSets.insert(std::set<Record*>(
1048 (*it)->getOrder().begin(), (*it)->getOrder().end()));
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001049
1050 // Add any required singleton sets.
Chris Lattner1de88232010-11-01 01:47:07 +00001051 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1052 ie = SingletonRegisters.end(); it != ie; ++it) {
1053 Record *Rec = *it;
1054 RegisterSets.insert(std::set<Record*>(&Rec, &Rec + 1));
1055 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001056
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001057 // Introduce derived sets where necessary (when a register does not determine
1058 // a unique register set class), and build the mapping of registers to the set
1059 // they should classify to.
1060 std::map<Record*, std::set<Record*> > RegisterMap;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001061 for (std::vector<CodeGenRegister*>::const_iterator it = Registers.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001062 ie = Registers.end(); it != ie; ++it) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001063 const CodeGenRegister &CGR = **it;
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001064 // Compute the intersection of all sets containing this register.
1065 std::set<Record*> ContainingSet;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001066
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001067 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1068 ie = RegisterSets.end(); it != ie; ++it) {
1069 if (!it->count(CGR.TheDef))
1070 continue;
1071
1072 if (ContainingSet.empty()) {
1073 ContainingSet = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +00001074 continue;
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001075 }
Bob Wilson828295b2011-01-26 21:26:19 +00001076
Chris Lattnerec6f0962010-11-02 18:10:06 +00001077 std::set<Record*> Tmp;
1078 std::swap(Tmp, ContainingSet);
1079 std::insert_iterator< std::set<Record*> > II(ContainingSet,
1080 ContainingSet.begin());
1081 std::set_intersection(Tmp.begin(), Tmp.end(), it->begin(), it->end(), II);
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001082 }
1083
1084 if (!ContainingSet.empty()) {
1085 RegisterSets.insert(ContainingSet);
1086 RegisterMap.insert(std::make_pair(CGR.TheDef, ContainingSet));
1087 }
1088 }
1089
1090 // Construct the register classes.
1091 std::map<std::set<Record*>, ClassInfo*> RegisterSetClasses;
1092 unsigned Index = 0;
1093 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1094 ie = RegisterSets.end(); it != ie; ++it, ++Index) {
1095 ClassInfo *CI = new ClassInfo();
1096 CI->Kind = ClassInfo::RegisterClass0 + Index;
1097 CI->ClassName = "Reg" + utostr(Index);
1098 CI->Name = "MCK_Reg" + utostr(Index);
1099 CI->ValueName = "";
1100 CI->PredicateMethod = ""; // unused
1101 CI->RenderMethod = "addRegOperands";
Daniel Dunbar8409bfb2009-08-11 20:10:07 +00001102 CI->Registers = *it;
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00001103 // FIXME: diagnostic type.
1104 CI->DiagnosticType = "";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001105 Classes.push_back(CI);
1106 RegisterSetClasses.insert(std::make_pair(*it, CI));
1107 }
1108
1109 // Find the superclasses; we could compute only the subgroup lattice edges,
1110 // but there isn't really a point.
1111 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1112 ie = RegisterSets.end(); it != ie; ++it) {
1113 ClassInfo *CI = RegisterSetClasses[*it];
1114 for (std::set< std::set<Record*> >::iterator it2 = RegisterSets.begin(),
1115 ie2 = RegisterSets.end(); it2 != ie2; ++it2)
Jim Grosbacha7c78222010-10-29 22:13:48 +00001116 if (*it != *it2 &&
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001117 std::includes(it2->begin(), it2->end(), it->begin(), it->end()))
1118 CI->SuperClasses.push_back(RegisterSetClasses[*it2]);
1119 }
1120
1121 // Name the register classes which correspond to a user defined RegisterClass.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001122 for (ArrayRef<CodeGenRegisterClass*>::const_iterator
Chris Lattnerec6f0962010-11-02 18:10:06 +00001123 it = RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001124 const CodeGenRegisterClass &RC = **it;
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001125 // Def will be NULL for non-user defined register classes.
1126 Record *Def = RC.getDef();
1127 if (!Def)
1128 continue;
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001129 ClassInfo *CI = RegisterSetClasses[std::set<Record*>(RC.getOrder().begin(),
1130 RC.getOrder().end())];
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001131 if (CI->ValueName.empty()) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001132 CI->ClassName = RC.getName();
1133 CI->Name = "MCK_" + RC.getName();
1134 CI->ValueName = RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001135 } else
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001136 CI->ValueName = CI->ValueName + "," + RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001137
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001138 RegisterClassClasses.insert(std::make_pair(Def, CI));
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001139 }
1140
1141 // Populate the map for individual registers.
1142 for (std::map<Record*, std::set<Record*> >::iterator it = RegisterMap.begin(),
1143 ie = RegisterMap.end(); it != ie; ++it)
Chris Lattnerec6f0962010-11-02 18:10:06 +00001144 RegisterClasses[it->first] = RegisterSetClasses[it->second];
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001145
1146 // Name the register classes which correspond to singleton registers.
Chris Lattner1de88232010-11-01 01:47:07 +00001147 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1148 ie = SingletonRegisters.end(); it != ie; ++it) {
1149 Record *Rec = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +00001150 ClassInfo *CI = RegisterClasses[Rec];
Chris Lattner1de88232010-11-01 01:47:07 +00001151 assert(CI && "Missing singleton register class info!");
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001152
Chris Lattner1de88232010-11-01 01:47:07 +00001153 if (CI->ValueName.empty()) {
1154 CI->ClassName = Rec->getName();
1155 CI->Name = "MCK_" + Rec->getName();
1156 CI->ValueName = Rec->getName();
1157 } else
1158 CI->ValueName = CI->ValueName + "," + Rec->getName();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001159 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001160}
1161
Jim Grosbach8caecde2012-04-19 17:52:32 +00001162void AsmMatcherInfo::buildOperandClasses() {
Chris Lattnere66b7eb2010-11-01 23:57:23 +00001163 std::vector<Record*> AsmOperands =
1164 Records.getAllDerivedDefinitions("AsmOperandClass");
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001165
1166 // Pre-populate AsmOperandClasses map.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001167 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001168 ie = AsmOperands.end(); it != ie; ++it)
1169 AsmOperandClasses[*it] = new ClassInfo();
1170
Daniel Dunbar338825c2009-08-10 18:41:10 +00001171 unsigned Index = 0;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001172 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbar338825c2009-08-10 18:41:10 +00001173 ie = AsmOperands.end(); it != ie; ++it, ++Index) {
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001174 ClassInfo *CI = AsmOperandClasses[*it];
Daniel Dunbar338825c2009-08-10 18:41:10 +00001175 CI->Kind = ClassInfo::UserClass0 + Index;
1176
David Greene05bce0b2011-07-29 22:43:06 +00001177 ListInit *Supers = (*it)->getValueAsListInit("SuperClasses");
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001178 for (unsigned i = 0, e = Supers->getSize(); i != e; ++i) {
David Greene05bce0b2011-07-29 22:43:06 +00001179 DefInit *DI = dynamic_cast<DefInit*>(Supers->getElement(i));
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001180 if (!DI) {
1181 PrintError((*it)->getLoc(), "Invalid super class reference!");
1182 continue;
1183 }
1184
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001185 ClassInfo *SC = AsmOperandClasses[DI->getDef()];
1186 if (!SC)
Daniel Dunbar338825c2009-08-10 18:41:10 +00001187 PrintError((*it)->getLoc(), "Invalid super class reference!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001188 else
1189 CI->SuperClasses.push_back(SC);
Daniel Dunbar338825c2009-08-10 18:41:10 +00001190 }
1191 CI->ClassName = (*it)->getValueAsString("Name");
1192 CI->Name = "MCK_" + CI->ClassName;
1193 CI->ValueName = (*it)->getName();
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001194
1195 // Get or construct the predicate method name.
David Greene05bce0b2011-07-29 22:43:06 +00001196 Init *PMName = (*it)->getValueInit("PredicateMethod");
1197 if (StringInit *SI = dynamic_cast<StringInit*>(PMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001198 CI->PredicateMethod = SI->getValue();
1199 } else {
David Greene05bce0b2011-07-29 22:43:06 +00001200 assert(dynamic_cast<UnsetInit*>(PMName) &&
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001201 "Unexpected PredicateMethod field!");
1202 CI->PredicateMethod = "is" + CI->ClassName;
1203 }
1204
1205 // Get or construct the render method name.
David Greene05bce0b2011-07-29 22:43:06 +00001206 Init *RMName = (*it)->getValueInit("RenderMethod");
1207 if (StringInit *SI = dynamic_cast<StringInit*>(RMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001208 CI->RenderMethod = SI->getValue();
1209 } else {
David Greene05bce0b2011-07-29 22:43:06 +00001210 assert(dynamic_cast<UnsetInit*>(RMName) &&
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001211 "Unexpected RenderMethod field!");
1212 CI->RenderMethod = "add" + CI->ClassName + "Operands";
1213 }
1214
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001215 // Get the parse method name or leave it as empty.
David Greene05bce0b2011-07-29 22:43:06 +00001216 Init *PRMName = (*it)->getValueInit("ParserMethod");
1217 if (StringInit *SI = dynamic_cast<StringInit*>(PRMName))
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001218 CI->ParserMethod = SI->getValue();
1219
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00001220 // Get the diagnostic type or leave it as empty.
1221 // Get the parse method name or leave it as empty.
1222 Init *DiagnosticType = (*it)->getValueInit("DiagnosticType");
1223 if (StringInit *SI = dynamic_cast<StringInit*>(DiagnosticType))
1224 CI->DiagnosticType = SI->getValue();
1225
Daniel Dunbar338825c2009-08-10 18:41:10 +00001226 AsmOperandClasses[*it] = CI;
1227 Classes.push_back(CI);
1228 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001229}
1230
Bob Wilson828295b2011-01-26 21:26:19 +00001231AsmMatcherInfo::AsmMatcherInfo(Record *asmParser,
1232 CodeGenTarget &target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +00001233 RecordKeeper &records)
Devang Patel63faf822012-01-07 01:33:34 +00001234 : Records(records), AsmParser(asmParser), Target(target) {
Daniel Dunbar59fc42d2009-08-11 20:59:47 +00001235}
1236
Jim Grosbach8caecde2012-04-19 17:52:32 +00001237/// buildOperandMatchInfo - Build the necessary information to handle user
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001238/// defined operand parsing methods.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001239void AsmMatcherInfo::buildOperandMatchInfo() {
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001240
Jim Grosbachd4824fc2012-04-18 23:46:25 +00001241 /// Map containing a mask with all operands indices that can be found for
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001242 /// that class inside a instruction.
1243 std::map<ClassInfo*, unsigned> OpClassMask;
1244
1245 for (std::vector<MatchableInfo*>::const_iterator it =
1246 Matchables.begin(), ie = Matchables.end();
1247 it != ie; ++it) {
1248 MatchableInfo &II = **it;
1249 OpClassMask.clear();
1250
1251 // Keep track of all operands of this instructions which belong to the
1252 // same class.
1253 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
1254 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
1255 if (Op.Class->ParserMethod.empty())
1256 continue;
1257 unsigned &OperandMask = OpClassMask[Op.Class];
1258 OperandMask |= (1 << i);
1259 }
1260
1261 // Generate operand match info for each mnemonic/operand class pair.
1262 for (std::map<ClassInfo*, unsigned>::iterator iit = OpClassMask.begin(),
1263 iie = OpClassMask.end(); iit != iie; ++iit) {
1264 unsigned OpMask = iit->second;
1265 ClassInfo *CI = iit->first;
Jim Grosbach8caecde2012-04-19 17:52:32 +00001266 OperandMatchInfo.push_back(OperandMatchEntry::create(&II, CI, OpMask));
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001267 }
1268 }
1269}
1270
Jim Grosbach8caecde2012-04-19 17:52:32 +00001271void AsmMatcherInfo::buildInfo() {
Chris Lattner0aed1e72010-10-30 20:07:57 +00001272 // Build information about all of the AssemblerPredicates.
1273 std::vector<Record*> AllPredicates =
1274 Records.getAllDerivedDefinitions("Predicate");
1275 for (unsigned i = 0, e = AllPredicates.size(); i != e; ++i) {
1276 Record *Pred = AllPredicates[i];
1277 // Ignore predicates that are not intended for the assembler.
1278 if (!Pred->getValueAsBit("AssemblerMatcherPredicate"))
1279 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00001280
Chris Lattner4164f6b2010-11-01 04:44:29 +00001281 if (Pred->getName().empty())
1282 throw TGError(Pred->getLoc(), "Predicate has no name!");
Bob Wilson828295b2011-01-26 21:26:19 +00001283
Chris Lattner0aed1e72010-10-30 20:07:57 +00001284 unsigned FeatureNo = SubtargetFeatures.size();
1285 SubtargetFeatures[Pred] = new SubtargetFeatureInfo(Pred, FeatureNo);
1286 assert(FeatureNo < 32 && "Too many subtarget features!");
1287 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001288
Chris Lattner39ee0362010-10-31 19:10:56 +00001289 // Parse the instructions; we need to do this first so that we can gather the
1290 // singleton register classes.
Chris Lattner1de88232010-11-01 01:47:07 +00001291 SmallPtrSet<Record*, 16> SingletonRegisters;
Devang Patel0dbcada2012-01-09 19:13:28 +00001292 unsigned VariantCount = Target.getAsmParserVariantCount();
1293 for (unsigned VC = 0; VC != VariantCount; ++VC) {
1294 Record *AsmVariant = Target.getAsmParserVariant(VC);
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001295 std::string CommentDelimiter =
1296 AsmVariant->getValueAsString("CommentDelimiter");
Devang Patel0dbcada2012-01-09 19:13:28 +00001297 std::string RegisterPrefix = AsmVariant->getValueAsString("RegisterPrefix");
1298 int AsmVariantNo = AsmVariant->getValueAsInt("Variant");
Jim Grosbachf35307c2012-01-24 21:06:59 +00001299
Devang Patel0dbcada2012-01-09 19:13:28 +00001300 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
Jim Grosbach11fc6462012-04-11 21:02:33 +00001301 E = Target.inst_end(); I != E; ++I) {
Devang Patel0dbcada2012-01-09 19:13:28 +00001302 const CodeGenInstruction &CGI = **I;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001303
Devang Patel0dbcada2012-01-09 19:13:28 +00001304 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1305 // filter the set of instructions we consider.
1306 if (!StringRef(CGI.TheDef->getName()).startswith(MatchPrefix))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001307 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001308
Devang Patel0dbcada2012-01-09 19:13:28 +00001309 // Ignore "codegen only" instructions.
1310 if (CGI.TheDef->getValueAsBit("isCodeGenOnly"))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001311 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001312
Devang Patel0dbcada2012-01-09 19:13:28 +00001313 // Validate the operand list to ensure we can handle this instruction.
1314 for (unsigned i = 0, e = CGI.Operands.size(); i != e; ++i) {
Jim Grosbach11fc6462012-04-11 21:02:33 +00001315 const CGIOperandList::OperandInfo &OI = CGI.Operands[i];
1316
1317 // Validate tied operands.
1318 if (OI.getTiedRegister() != -1) {
1319 // If we have a tied operand that consists of multiple MCOperands,
1320 // reject it. We reject aliases and ignore instructions for now.
1321 if (OI.MINumOperands != 1) {
1322 // FIXME: Should reject these. The ARM backend hits this with $lane
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001323 // in a bunch of instructions. The right answer is unclear.
Jim Grosbach11fc6462012-04-11 21:02:33 +00001324 DEBUG({
1325 errs() << "warning: '" << CGI.TheDef->getName() << "': "
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001326 << "ignoring instruction with multi-operand tied operand '"
1327 << OI.Name << "'\n";
Jim Grosbach11fc6462012-04-11 21:02:33 +00001328 });
1329 continue;
1330 }
1331 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001332 }
Jim Grosbachf35307c2012-01-24 21:06:59 +00001333
Devang Patel0dbcada2012-01-09 19:13:28 +00001334 OwningPtr<MatchableInfo> II(new MatchableInfo(CGI));
Jim Grosbachf35307c2012-01-24 21:06:59 +00001335
Jim Grosbach8caecde2012-04-19 17:52:32 +00001336 II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001337
Devang Patel0dbcada2012-01-09 19:13:28 +00001338 // Ignore instructions which shouldn't be matched and diagnose invalid
1339 // instruction definitions with an error.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001340 if (!II->validate(CommentDelimiter, true))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001341 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001342
Devang Patel0dbcada2012-01-09 19:13:28 +00001343 // Ignore "Int_*" and "*_Int" instructions, which are internal aliases.
1344 //
1345 // FIXME: This is a total hack.
1346 if (StringRef(II->TheDef->getName()).startswith("Int_") ||
Jim Grosbach11fc6462012-04-11 21:02:33 +00001347 StringRef(II->TheDef->getName()).endswith("_Int"))
1348 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001349
Devang Patel0dbcada2012-01-09 19:13:28 +00001350 Matchables.push_back(II.take());
Chris Lattner1d13bda2010-11-04 00:43:46 +00001351 }
Jim Grosbachf35307c2012-01-24 21:06:59 +00001352
Devang Patel0dbcada2012-01-09 19:13:28 +00001353 // Parse all of the InstAlias definitions and stick them in the list of
1354 // matchables.
1355 std::vector<Record*> AllInstAliases =
1356 Records.getAllDerivedDefinitions("InstAlias");
1357 for (unsigned i = 0, e = AllInstAliases.size(); i != e; ++i) {
1358 CodeGenInstAlias *Alias = new CodeGenInstAlias(AllInstAliases[i], Target);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001359
Devang Patel0dbcada2012-01-09 19:13:28 +00001360 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1361 // filter the set of instruction aliases we consider, based on the target
1362 // instruction.
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001363 if (!StringRef(Alias->ResultInst->TheDef->getName())
1364 .startswith( MatchPrefix))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001365 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001366
Devang Patel0dbcada2012-01-09 19:13:28 +00001367 OwningPtr<MatchableInfo> II(new MatchableInfo(Alias));
Jim Grosbachf35307c2012-01-24 21:06:59 +00001368
Jim Grosbach8caecde2012-04-19 17:52:32 +00001369 II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001370
Devang Patel0dbcada2012-01-09 19:13:28 +00001371 // Validate the alias definitions.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001372 II->validate(CommentDelimiter, false);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001373
Devang Patel0dbcada2012-01-09 19:13:28 +00001374 Matchables.push_back(II.take());
1375 }
Chris Lattnerc76e80d2010-11-01 04:05:41 +00001376 }
Chris Lattnerc240bb02010-11-01 04:03:32 +00001377
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001378 // Build info for the register classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001379 buildRegisterClasses(SingletonRegisters);
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001380
1381 // Build info for the user defined assembly operand classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001382 buildOperandClasses();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001383
Chris Lattner0bb780c2010-11-04 00:57:06 +00001384 // Build the information about matchables, now that we have fully formed
1385 // classes.
Jim Grosbachc1922c72012-04-19 23:59:23 +00001386 std::vector<MatchableInfo*> NewMatchables;
Chris Lattner22bc5c42010-11-01 05:06:45 +00001387 for (std::vector<MatchableInfo*>::iterator it = Matchables.begin(),
1388 ie = Matchables.end(); it != ie; ++it) {
1389 MatchableInfo *II = *it;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001390
Chris Lattnere206fcf2010-09-06 21:01:37 +00001391 // Parse the tokens after the mnemonic.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001392 // Note: buildInstructionOperandReference may insert new AsmOperands, so
Bob Wilsona49c7df2011-01-26 19:44:55 +00001393 // don't precompute the loop bound.
1394 for (unsigned i = 0; i != II->AsmOperands.size(); ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +00001395 MatchableInfo::AsmOperand &Op = II->AsmOperands[i];
Chris Lattnerd19ec052010-11-02 17:30:52 +00001396 StringRef Token = Op.Token;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001397
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001398 // Check for singleton registers.
Devang Patel63faf822012-01-07 01:33:34 +00001399 if (Record *RegRecord = II->AsmOperands[i].SingletonReg) {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001400 Op.Class = RegisterClasses[RegRecord];
Chris Lattner02bcbc92010-11-01 01:37:30 +00001401 assert(Op.Class && Op.Class->Registers.size() == 1 &&
1402 "Unexpected class for singleton register");
Chris Lattner02bcbc92010-11-01 01:37:30 +00001403 continue;
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001404 }
1405
Daniel Dunbar20927f22009-08-07 08:26:05 +00001406 // Check for simple tokens.
1407 if (Token[0] != '$') {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001408 Op.Class = getTokenClass(Token);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001409 continue;
1410 }
1411
Chris Lattner7ad31472010-11-06 22:06:03 +00001412 if (Token.size() > 1 && isdigit(Token[1])) {
1413 Op.Class = getTokenClass(Token);
1414 continue;
1415 }
Bob Wilson828295b2011-01-26 21:26:19 +00001416
Chris Lattnerc07bd402010-11-04 02:11:18 +00001417 // Otherwise this is an operand reference.
Chris Lattner5f4280c2010-11-04 01:58:23 +00001418 StringRef OperandName;
1419 if (Token[1] == '{')
1420 OperandName = Token.substr(2, Token.size() - 3);
1421 else
1422 OperandName = Token.substr(1);
Bob Wilson828295b2011-01-26 21:26:19 +00001423
Chris Lattnerc07bd402010-11-04 02:11:18 +00001424 if (II->DefRec.is<const CodeGenInstruction*>())
Jim Grosbach8caecde2012-04-19 17:52:32 +00001425 buildInstructionOperandReference(II, OperandName, i);
Chris Lattnerc07bd402010-11-04 02:11:18 +00001426 else
Jim Grosbach8caecde2012-04-19 17:52:32 +00001427 buildAliasOperandReference(II, OperandName, Op);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001428 }
Bob Wilson828295b2011-01-26 21:26:19 +00001429
Jim Grosbachc1922c72012-04-19 23:59:23 +00001430 if (II->DefRec.is<const CodeGenInstruction*>()) {
Jim Grosbach8caecde2012-04-19 17:52:32 +00001431 II->buildInstructionResultOperands();
Jim Grosbachc1922c72012-04-19 23:59:23 +00001432 // If the instruction has a two-operand alias, build up the
1433 // matchable here. We'll add them in bulk at the end to avoid
1434 // confusing this loop.
1435 std::string Constraint =
1436 II->TheDef->getValueAsString("TwoOperandAliasConstraint");
1437 if (Constraint != "") {
1438 // Start by making a copy of the original matchable.
1439 OwningPtr<MatchableInfo> AliasII(new MatchableInfo(*II));
1440
1441 // Adjust it to be a two-operand alias.
1442 AliasII->formTwoOperandAlias(Constraint);
1443
1444 // Add the alias to the matchables list.
1445 NewMatchables.push_back(AliasII.take());
1446 }
1447 } else
Jim Grosbach8caecde2012-04-19 17:52:32 +00001448 II->buildAliasResultOperands();
Daniel Dunbar20927f22009-08-07 08:26:05 +00001449 }
Jim Grosbachc1922c72012-04-19 23:59:23 +00001450 if (!NewMatchables.empty())
1451 Matchables.insert(Matchables.end(), NewMatchables.begin(),
1452 NewMatchables.end());
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001453
Jim Grosbacha66512e2011-12-06 23:43:54 +00001454 // Process token alias definitions and set up the associated superclass
1455 // information.
1456 std::vector<Record*> AllTokenAliases =
1457 Records.getAllDerivedDefinitions("TokenAlias");
1458 for (unsigned i = 0, e = AllTokenAliases.size(); i != e; ++i) {
1459 Record *Rec = AllTokenAliases[i];
1460 ClassInfo *FromClass = getTokenClass(Rec->getValueAsString("FromToken"));
1461 ClassInfo *ToClass = getTokenClass(Rec->getValueAsString("ToToken"));
Jim Grosbach67cd20d2012-04-17 21:23:52 +00001462 if (FromClass == ToClass)
1463 throw TGError(Rec->getLoc(),
1464 "error: Destination value identical to source value.");
Jim Grosbacha66512e2011-12-06 23:43:54 +00001465 FromClass->SuperClasses.push_back(ToClass);
1466 }
1467
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001468 // Reorder classes so that classes precede super classes.
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001469 std::sort(Classes.begin(), Classes.end(), less_ptr<ClassInfo>());
Daniel Dunbar20927f22009-08-07 08:26:05 +00001470}
1471
Jim Grosbach8caecde2012-04-19 17:52:32 +00001472/// buildInstructionOperandReference - The specified operand is a reference to a
Chris Lattner0bb780c2010-11-04 00:57:06 +00001473/// named operand such as $src. Resolve the Class and OperandInfo pointers.
1474void AsmMatcherInfo::
Jim Grosbach8caecde2012-04-19 17:52:32 +00001475buildInstructionOperandReference(MatchableInfo *II,
Chris Lattner5f4280c2010-11-04 01:58:23 +00001476 StringRef OperandName,
Bob Wilsona49c7df2011-01-26 19:44:55 +00001477 unsigned AsmOpIdx) {
Chris Lattnerc07bd402010-11-04 02:11:18 +00001478 const CodeGenInstruction &CGI = *II->DefRec.get<const CodeGenInstruction*>();
1479 const CGIOperandList &Operands = CGI.Operands;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001480 MatchableInfo::AsmOperand *Op = &II->AsmOperands[AsmOpIdx];
Bob Wilson828295b2011-01-26 21:26:19 +00001481
Chris Lattner662e5a32010-11-06 07:14:44 +00001482 // Map this token to an operand.
Chris Lattner0bb780c2010-11-04 00:57:06 +00001483 unsigned Idx;
1484 if (!Operands.hasOperandNamed(OperandName, Idx))
1485 throw TGError(II->TheDef->getLoc(), "error: unable to find operand: '" +
1486 OperandName.str() + "'");
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001487
Bob Wilsona49c7df2011-01-26 19:44:55 +00001488 // If the instruction operand has multiple suboperands, but the parser
1489 // match class for the asm operand is still the default "ImmAsmOperand",
1490 // then handle each suboperand separately.
1491 if (Op->SubOpIdx == -1 && Operands[Idx].MINumOperands > 1) {
1492 Record *Rec = Operands[Idx].Rec;
1493 assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
1494 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
1495 if (MatchClass && MatchClass->getValueAsString("Name") == "Imm") {
1496 // Insert remaining suboperands after AsmOpIdx in II->AsmOperands.
1497 StringRef Token = Op->Token; // save this in case Op gets moved
1498 for (unsigned SI = 1, SE = Operands[Idx].MINumOperands; SI != SE; ++SI) {
1499 MatchableInfo::AsmOperand NewAsmOp(Token);
1500 NewAsmOp.SubOpIdx = SI;
1501 II->AsmOperands.insert(II->AsmOperands.begin()+AsmOpIdx+SI, NewAsmOp);
1502 }
1503 // Replace Op with first suboperand.
1504 Op = &II->AsmOperands[AsmOpIdx]; // update the pointer in case it moved
1505 Op->SubOpIdx = 0;
1506 }
1507 }
1508
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001509 // Set up the operand class.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001510 Op->Class = getOperandClass(Operands[Idx], Op->SubOpIdx);
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001511
1512 // If the named operand is tied, canonicalize it to the untied operand.
1513 // For example, something like:
1514 // (outs GPR:$dst), (ins GPR:$src)
1515 // with an asmstring of
1516 // "inc $src"
1517 // we want to canonicalize to:
1518 // "inc $dst"
1519 // so that we know how to provide the $dst operand when filling in the result.
1520 int OITied = Operands[Idx].getTiedRegister();
Chris Lattner0bb780c2010-11-04 00:57:06 +00001521 if (OITied != -1) {
1522 // The tied operand index is an MIOperand index, find the operand that
1523 // contains it.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001524 std::pair<unsigned, unsigned> Idx = Operands.getSubOperandNumber(OITied);
1525 OperandName = Operands[Idx.first].Name;
1526 Op->SubOpIdx = Idx.second;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001527 }
Bob Wilson828295b2011-01-26 21:26:19 +00001528
Bob Wilsona49c7df2011-01-26 19:44:55 +00001529 Op->SrcOpName = OperandName;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001530}
1531
Jim Grosbach8caecde2012-04-19 17:52:32 +00001532/// buildAliasOperandReference - When parsing an operand reference out of the
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001533/// matching string (e.g. "movsx $src, $dst"), determine what the class of the
1534/// operand reference is by looking it up in the result pattern definition.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001535void AsmMatcherInfo::buildAliasOperandReference(MatchableInfo *II,
Chris Lattnerc07bd402010-11-04 02:11:18 +00001536 StringRef OperandName,
1537 MatchableInfo::AsmOperand &Op) {
1538 const CodeGenInstAlias &CGA = *II->DefRec.get<const CodeGenInstAlias*>();
Bob Wilson828295b2011-01-26 21:26:19 +00001539
Chris Lattnerc07bd402010-11-04 02:11:18 +00001540 // Set up the operand class.
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001541 for (unsigned i = 0, e = CGA.ResultOperands.size(); i != e; ++i)
Chris Lattner98c870f2010-11-06 19:25:43 +00001542 if (CGA.ResultOperands[i].isRecord() &&
1543 CGA.ResultOperands[i].getName() == OperandName) {
Chris Lattner662e5a32010-11-06 07:14:44 +00001544 // It's safe to go with the first one we find, because CodeGenInstAlias
1545 // validates that all operands with the same name have the same record.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001546 Op.SubOpIdx = CGA.ResultInstOperandIndex[i].second;
Jim Grosbach48c1f842011-10-28 22:32:53 +00001547 // Use the match class from the Alias definition, not the
1548 // destination instruction, as we may have an immediate that's
1549 // being munged by the match class.
1550 Op.Class = getOperandClass(CGA.ResultOperands[i].getRecord(),
Bob Wilsona49c7df2011-01-26 19:44:55 +00001551 Op.SubOpIdx);
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001552 Op.SrcOpName = OperandName;
1553 return;
Chris Lattnerc07bd402010-11-04 02:11:18 +00001554 }
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001555
1556 throw TGError(II->TheDef->getLoc(), "error: unable to find operand: '" +
1557 OperandName.str() + "'");
Chris Lattnerc07bd402010-11-04 02:11:18 +00001558}
1559
Jim Grosbach8caecde2012-04-19 17:52:32 +00001560void MatchableInfo::buildInstructionResultOperands() {
Chris Lattner662e5a32010-11-06 07:14:44 +00001561 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001562
Chris Lattner662e5a32010-11-06 07:14:44 +00001563 // Loop over all operands of the result instruction, determining how to
1564 // populate them.
1565 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
1566 const CGIOperandList::OperandInfo &OpInfo = ResultInst->Operands[i];
Chris Lattner567820c2010-11-04 01:42:59 +00001567
1568 // If this is a tied operand, just copy from the previously handled operand.
1569 int TiedOp = OpInfo.getTiedRegister();
1570 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001571 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner567820c2010-11-04 01:42:59 +00001572 continue;
1573 }
Bob Wilson828295b2011-01-26 21:26:19 +00001574
Bob Wilsona49c7df2011-01-26 19:44:55 +00001575 // Find out what operand from the asmparser this MCInst operand comes from.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001576 int SrcOperand = findAsmOperandNamed(OpInfo.Name);
Bob Wilsona49c7df2011-01-26 19:44:55 +00001577 if (OpInfo.Name.empty() || SrcOperand == -1)
1578 throw TGError(TheDef->getLoc(), "Instruction '" +
1579 TheDef->getName() + "' has operand '" + OpInfo.Name +
1580 "' that doesn't appear in asm string!");
Chris Lattner567820c2010-11-04 01:42:59 +00001581
Bob Wilsona49c7df2011-01-26 19:44:55 +00001582 // Check if the one AsmOperand populates the entire operand.
1583 unsigned NumOperands = OpInfo.MINumOperands;
1584 if (AsmOperands[SrcOperand].SubOpIdx == -1) {
1585 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand, NumOperands));
Chris Lattner1d13bda2010-11-04 00:43:46 +00001586 continue;
1587 }
Bob Wilsona49c7df2011-01-26 19:44:55 +00001588
1589 // Add a separate ResOperand for each suboperand.
1590 for (unsigned AI = 0; AI < NumOperands; ++AI) {
1591 assert(AsmOperands[SrcOperand+AI].SubOpIdx == (int)AI &&
1592 AsmOperands[SrcOperand+AI].SrcOpName == OpInfo.Name &&
1593 "unexpected AsmOperands for suboperands");
1594 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand + AI, 1));
1595 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001596 }
1597}
1598
Jim Grosbach8caecde2012-04-19 17:52:32 +00001599void MatchableInfo::buildAliasResultOperands() {
Chris Lattner41409852010-11-06 07:31:43 +00001600 const CodeGenInstAlias &CGA = *DefRec.get<const CodeGenInstAlias*>();
1601 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001602
Chris Lattner41409852010-11-06 07:31:43 +00001603 // Loop over all operands of the result instruction, determining how to
1604 // populate them.
1605 unsigned AliasOpNo = 0;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001606 unsigned LastOpNo = CGA.ResultInstOperandIndex.size();
Chris Lattner41409852010-11-06 07:31:43 +00001607 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001608 const CGIOperandList::OperandInfo *OpInfo = &ResultInst->Operands[i];
Bob Wilson828295b2011-01-26 21:26:19 +00001609
Chris Lattner41409852010-11-06 07:31:43 +00001610 // If this is a tied operand, just copy from the previously handled operand.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001611 int TiedOp = OpInfo->getTiedRegister();
Chris Lattner41409852010-11-06 07:31:43 +00001612 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001613 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner90fd7972010-11-06 19:57:21 +00001614 continue;
1615 }
1616
Bob Wilsona49c7df2011-01-26 19:44:55 +00001617 // Handle all the suboperands for this operand.
1618 const std::string &OpName = OpInfo->Name;
1619 for ( ; AliasOpNo < LastOpNo &&
1620 CGA.ResultInstOperandIndex[AliasOpNo].first == i; ++AliasOpNo) {
1621 int SubIdx = CGA.ResultInstOperandIndex[AliasOpNo].second;
1622
1623 // Find out what operand from the asmparser that this MCInst operand
1624 // comes from.
1625 switch (CGA.ResultOperands[AliasOpNo].Kind) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001626 case CodeGenInstAlias::ResultOperand::K_Record: {
1627 StringRef Name = CGA.ResultOperands[AliasOpNo].getName();
Jim Grosbach8caecde2012-04-19 17:52:32 +00001628 int SrcOperand = findAsmOperand(Name, SubIdx);
Bob Wilsona49c7df2011-01-26 19:44:55 +00001629 if (SrcOperand == -1)
1630 throw TGError(TheDef->getLoc(), "Instruction '" +
1631 TheDef->getName() + "' has operand '" + OpName +
1632 "' that doesn't appear in asm string!");
1633 unsigned NumOperands = (SubIdx == -1 ? OpInfo->MINumOperands : 1);
1634 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand,
1635 NumOperands));
1636 break;
1637 }
1638 case CodeGenInstAlias::ResultOperand::K_Imm: {
1639 int64_t ImmVal = CGA.ResultOperands[AliasOpNo].getImm();
1640 ResOperands.push_back(ResOperand::getImmOp(ImmVal));
1641 break;
1642 }
1643 case CodeGenInstAlias::ResultOperand::K_Reg: {
1644 Record *Reg = CGA.ResultOperands[AliasOpNo].getRegister();
1645 ResOperands.push_back(ResOperand::getRegOp(Reg));
1646 break;
1647 }
1648 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001649 }
Chris Lattner41409852010-11-06 07:31:43 +00001650 }
1651}
Chris Lattner1d13bda2010-11-04 00:43:46 +00001652
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001653static unsigned getConverterOperandID(const std::string &Name,
1654 SetVector<std::string> &Table,
1655 bool &IsNew) {
1656 IsNew = Table.insert(Name);
1657
1658 unsigned ID = IsNew ? Table.size() - 1 :
1659 std::find(Table.begin(), Table.end(), Name) - Table.begin();
1660
1661 assert(ID < Table.size());
1662
1663 return ID;
1664}
1665
1666
Jim Grosbach8caecde2012-04-19 17:52:32 +00001667static void emitConvertToMCInst(CodeGenTarget &Target, StringRef ClassName,
Chris Lattner22bc5c42010-11-01 05:06:45 +00001668 std::vector<MatchableInfo*> &Infos,
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00001669 raw_ostream &OS) {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001670 SetVector<std::string> OperandConversionKinds;
1671 SetVector<std::string> InstructionConversionKinds;
1672 std::vector<std::vector<uint8_t> > ConversionTable;
1673 size_t MaxRowLength = 2; // minimum is custom converter plus terminator.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001674
Chris Lattner98986712010-01-14 22:21:20 +00001675 // TargetOperandClass - This is the target's operand class, like X86Operand.
1676 std::string TargetOperandClass = Target.getName() + "Operand";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001677
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001678 // Write the convert function to a separate stream, so we can drop it after
1679 // the enum. We'll build up the conversion handlers for the individual
1680 // operand types opportunistically as we encounter them.
1681 std::string ConvertFnBody;
1682 raw_string_ostream CvtOS(ConvertFnBody);
1683 // Start the unified conversion function.
Chad Rosier359956d2012-08-31 00:03:31 +00001684 CvtOS << "void " << Target.getName() << ClassName << "::\n"
Chad Rosier90e11f82012-09-05 01:02:38 +00001685 << "convertToMCInst(unsigned Kind, MCInst &Inst, "
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001686 << "unsigned Opcode,\n"
Chad Rosier04508c62012-08-30 21:46:00 +00001687 << " const SmallVectorImpl<MCParsedAsmOperand*"
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001688 << "> &Operands) {\n"
Chad Rosier359956d2012-08-31 00:03:31 +00001689 << " assert(Kind < CVT_NUM_SIGNATURES && \"Invalid signature!\");\n"
Craig Topperb198f5c2012-09-18 01:41:49 +00001690 << " const uint8_t *Converter = ConversionTable[Kind];\n"
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001691 << " Inst.setOpcode(Opcode);\n"
Craig Topperb198f5c2012-09-18 01:41:49 +00001692 << " for (const uint8_t *p = Converter; *p; p+= 2) {\n"
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001693 << " switch (*p) {\n"
1694 << " default: llvm_unreachable(\"invalid conversion entry!\");\n"
1695 << " case CVT_Reg:\n"
1696 << " static_cast<" << TargetOperandClass
1697 << "*>(Operands[*(p + 1)])->addRegOperands(Inst, 1);\n"
1698 << " break;\n"
1699 << " case CVT_Tied:\n"
1700 << " Inst.addOperand(Inst.getOperand(*(p + 1)));\n"
1701 << " break;\n";
1702
Chad Rosier62316fa2012-08-30 17:59:25 +00001703 std::string OperandFnBody;
1704 raw_string_ostream OpOS(OperandFnBody);
1705 // Start the operand number lookup function.
Chad Rosier87d910e2012-09-03 17:33:50 +00001706 OpOS << "unsigned " << Target.getName() << ClassName << "::\n"
Chad Rosier5d637d72012-09-05 01:15:43 +00001707 << "getMCInstOperandNumImpl(unsigned Kind, MCInst &Inst,\n"
Chad Rosier038f3e32012-09-03 18:47:45 +00001708 << " const SmallVectorImpl<MCParsedAsmOperand*> "
Chad Rosier2cc97de2012-09-03 20:31:23 +00001709 << "&Operands,\n unsigned OperandNum, unsigned "
1710 << "&NumMCOperands) {\n"
Chad Rosier359956d2012-08-31 00:03:31 +00001711 << " assert(Kind < CVT_NUM_SIGNATURES && \"Invalid signature!\");\n"
Chad Rosier2cc97de2012-09-03 20:31:23 +00001712 << " NumMCOperands = 0;\n"
Chad Rosier87d910e2012-09-03 17:33:50 +00001713 << " unsigned MCOperandNum = 0;\n"
Craig Topperb198f5c2012-09-18 01:41:49 +00001714 << " const uint8_t *Converter = ConversionTable[Kind];\n"
1715 << " for (const uint8_t *p = Converter; *p; p+= 2) {\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001716 << " if (*(p + 1) > OperandNum) continue;\n"
1717 << " switch (*p) {\n"
1718 << " default: llvm_unreachable(\"invalid conversion entry!\");\n"
1719 << " case CVT_Reg:\n"
Chad Rosier2cc97de2012-09-03 20:31:23 +00001720 << " if (*(p + 1) == OperandNum) {\n"
1721 << " NumMCOperands = 1;\n"
1722 << " break;\n"
1723 << " }\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001724 << " ++MCOperandNum;\n"
1725 << " break;\n"
1726 << " case CVT_Tied:\n"
Chad Rosier2dc88d92012-09-03 20:37:01 +00001727 << " // FIXME: Tied operand calculation not supported.\n"
Chad Rosier5d637d72012-09-05 01:15:43 +00001728 << " assert (0 && \"getMCInstOperandNumImpl() doesn't support tied operands, yet!\");\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001729 << " break;\n";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001730
1731 // Pre-populate the operand conversion kinds with the standard always
1732 // available entries.
1733 OperandConversionKinds.insert("CVT_Done");
1734 OperandConversionKinds.insert("CVT_Reg");
1735 OperandConversionKinds.insert("CVT_Tied");
1736 enum { CVT_Done, CVT_Reg, CVT_Tied };
1737
Chris Lattner22bc5c42010-11-01 05:06:45 +00001738 for (std::vector<MatchableInfo*>::const_iterator it = Infos.begin(),
Daniel Dunbar20927f22009-08-07 08:26:05 +00001739 ie = Infos.end(); it != ie; ++it) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00001740 MatchableInfo &II = **it;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001741
Daniel Dunbarcf120672011-02-04 17:12:15 +00001742 // Check if we have a custom match function.
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001743 std::string AsmMatchConverter =
1744 II.getResultInst()->TheDef->getValueAsString("AsmMatchConverter");
Daniel Dunbarcf120672011-02-04 17:12:15 +00001745 if (!AsmMatchConverter.empty()) {
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001746 std::string Signature = "ConvertCustom_" + AsmMatchConverter;
Daniel Dunbarcf120672011-02-04 17:12:15 +00001747 II.ConversionFnKind = Signature;
1748
1749 // Check if we have already generated this signature.
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001750 if (!InstructionConversionKinds.insert(Signature))
Daniel Dunbarcf120672011-02-04 17:12:15 +00001751 continue;
1752
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001753 // Remember this converter for the kind enum.
1754 unsigned KindID = OperandConversionKinds.size();
1755 OperandConversionKinds.insert("CVT_" + 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.
1763 CvtOS << " case CVT_" << AsmMatchConverter << ":\n"
Chad Rosier756d2cc2012-08-31 22:12:31 +00001764 << " " << AsmMatchConverter << "(Inst, Operands);\n"
Chad Rosier359956d2012-08-31 00:03:31 +00001765 << " break;\n";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001766
Chad Rosier62316fa2012-08-30 17:59:25 +00001767 // FIXME: Handle the operand number lookup for custom match functions.
Daniel Dunbarcf120672011-02-04 17:12:15 +00001768 continue;
1769 }
1770
Daniel Dunbar20927f22009-08-07 08:26:05 +00001771 // Build the conversion function signature.
1772 std::string Signature = "Convert";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001773
1774 std::vector<uint8_t> ConversionRow;
Bob Wilson828295b2011-01-26 21:26:19 +00001775
Chris Lattnerdda855d2010-11-02 21:49:44 +00001776 // Compute the convert enum and the case body.
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001777 MaxRowLength = std::max(MaxRowLength, II.ResOperands.size()*2 + 1 );
1778
Chris Lattner1d13bda2010-11-04 00:43:46 +00001779 for (unsigned i = 0, e = II.ResOperands.size(); i != e; ++i) {
1780 const MatchableInfo::ResOperand &OpInfo = II.ResOperands[i];
Jim Grosbacha7c78222010-10-29 22:13:48 +00001781
Chris Lattner1d13bda2010-11-04 00:43:46 +00001782 // Generate code to populate each result operand.
1783 switch (OpInfo.Kind) {
Chris Lattner1d13bda2010-11-04 00:43:46 +00001784 case MatchableInfo::ResOperand::RenderAsmOperand: {
1785 // This comes from something we parsed.
1786 MatchableInfo::AsmOperand &Op = II.AsmOperands[OpInfo.AsmOperandNum];
Bob Wilson828295b2011-01-26 21:26:19 +00001787
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001788 // Registers are always converted the same, don't duplicate the
1789 // conversion function based on them.
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001790 Signature += "__";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001791 std::string Class;
1792 Class = Op.Class->isRegisterClass() ? "Reg" : Op.Class->ClassName;
1793 Signature += Class;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001794 Signature += utostr(OpInfo.MINumOperands);
Chris Lattner1d13bda2010-11-04 00:43:46 +00001795 Signature += "_" + itostr(OpInfo.AsmOperandNum);
Bob Wilson828295b2011-01-26 21:26:19 +00001796
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001797 // Add the conversion kind, if necessary, and get the associated ID
1798 // the index of its entry in the vector).
1799 std::string Name = "CVT_" + (Op.Class->isRegisterClass() ? "Reg" :
1800 Op.Class->RenderMethod);
1801
1802 bool IsNewConverter = false;
1803 unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1804 IsNewConverter);
1805
1806 // Add the operand entry to the instruction kind conversion row.
1807 ConversionRow.push_back(ID);
1808 ConversionRow.push_back(OpInfo.AsmOperandNum + 1);
1809
1810 if (!IsNewConverter)
1811 break;
1812
1813 // This is a new operand kind. Add a handler for it to the
1814 // converter driver.
1815 CvtOS << " case " << Name << ":\n"
1816 << " static_cast<" << TargetOperandClass
1817 << "*>(Operands[*(p + 1)])->"
1818 << Op.Class->RenderMethod << "(Inst, " << OpInfo.MINumOperands
1819 << ");\n"
1820 << " break;\n";
Chad Rosier62316fa2012-08-30 17:59:25 +00001821
1822 // Add a handler for the operand number lookup.
1823 OpOS << " case " << Name << ":\n"
Chad Rosier2cc97de2012-09-03 20:31:23 +00001824 << " if (*(p + 1) == OperandNum) {\n"
1825 << " NumMCOperands = " << OpInfo.MINumOperands << ";\n"
1826 << " break;\n"
1827 << " }\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001828 << " MCOperandNum += " << OpInfo.MINumOperands << ";\n"
1829 << " break;\n";
Chris Lattner1d13bda2010-11-04 00:43:46 +00001830 break;
Daniel Dunbaraf616812010-02-10 08:15:48 +00001831 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001832 case MatchableInfo::ResOperand::TiedOperand: {
1833 // If this operand is tied to a previous one, just copy the MCInst
1834 // operand from the earlier one.We can only tie single MCOperand values.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001835 //assert(OpInfo.MINumOperands == 1 && "Not a singular MCOperand");
Chris Lattner1d13bda2010-11-04 00:43:46 +00001836 unsigned TiedOp = OpInfo.TiedOperandNum;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001837 assert(i > TiedOp && "Tied operand precedes its target!");
Chris Lattner1d13bda2010-11-04 00:43:46 +00001838 Signature += "__Tie" + utostr(TiedOp);
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001839 ConversionRow.push_back(CVT_Tied);
1840 ConversionRow.push_back(TiedOp);
Chad Rosier62316fa2012-08-30 17:59:25 +00001841 // FIXME: Handle the operand number lookup for tied operands.
Chris Lattner1d13bda2010-11-04 00:43:46 +00001842 break;
1843 }
Chris Lattner98c870f2010-11-06 19:25:43 +00001844 case MatchableInfo::ResOperand::ImmOperand: {
1845 int64_t Val = OpInfo.ImmVal;
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001846 std::string Ty = "imm_" + itostr(Val);
1847 Signature += "__" + Ty;
1848
1849 std::string Name = "CVT_" + Ty;
1850 bool IsNewConverter = false;
1851 unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1852 IsNewConverter);
1853 // Add the operand entry to the instruction kind conversion row.
1854 ConversionRow.push_back(ID);
1855 ConversionRow.push_back(0);
1856
1857 if (!IsNewConverter)
1858 break;
1859
1860 CvtOS << " case " << Name << ":\n"
1861 << " Inst.addOperand(MCOperand::CreateImm(" << Val << "));\n"
1862 << " break;\n";
1863
Chad Rosier62316fa2012-08-30 17:59:25 +00001864 OpOS << " case " << Name << ":\n"
Chad Rosier2cc97de2012-09-03 20:31:23 +00001865 << " if (*(p + 1) == OperandNum) {\n"
1866 << " NumMCOperands = 1;\n"
1867 << " break;\n"
1868 << " }\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001869 << " ++MCOperandNum;\n"
1870 << " break;\n";
Chris Lattner98c870f2010-11-06 19:25:43 +00001871 break;
1872 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001873 case MatchableInfo::ResOperand::RegOperand: {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001874 std::string Reg, Name;
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001875 if (OpInfo.Register == 0) {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001876 Name = "reg0";
1877 Reg = "0";
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001878 } else {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001879 Reg = getQualifiedName(OpInfo.Register);
1880 Name = "reg" + OpInfo.Register->getName();
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001881 }
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001882 Signature += "__" + Name;
1883 Name = "CVT_" + Name;
1884 bool IsNewConverter = false;
1885 unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1886 IsNewConverter);
1887 // Add the operand entry to the instruction kind conversion row.
1888 ConversionRow.push_back(ID);
1889 ConversionRow.push_back(0);
1890
1891 if (!IsNewConverter)
1892 break;
1893 CvtOS << " case " << Name << ":\n"
1894 << " Inst.addOperand(MCOperand::CreateReg(" << Reg << "));\n"
1895 << " break;\n";
Chad Rosier62316fa2012-08-30 17:59:25 +00001896
1897 OpOS << " case " << Name << ":\n"
Chad Rosier2cc97de2012-09-03 20:31:23 +00001898 << " if (*(p + 1) == OperandNum) {\n"
1899 << " NumMCOperands = 1;\n"
1900 << " break;\n"
1901 << " }\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001902 << " ++MCOperandNum;\n"
1903 << " break;\n";
Bob Wilson828295b2011-01-26 21:26:19 +00001904 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001905 }
Daniel Dunbar20927f22009-08-07 08:26:05 +00001906 }
Bob Wilson828295b2011-01-26 21:26:19 +00001907
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001908 // If there were no operands, add to the signature to that effect
1909 if (Signature == "Convert")
1910 Signature += "_NoOperands";
1911
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001912 II.ConversionFnKind = Signature;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001913
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001914 // Save the signature. If we already have it, don't add a new row
1915 // to the table.
1916 if (!InstructionConversionKinds.insert(Signature))
Daniel Dunbar20927f22009-08-07 08:26:05 +00001917 continue;
1918
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001919 // Add the row to the table.
1920 ConversionTable.push_back(ConversionRow);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001921 }
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001922
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001923 // Finish up the converter driver function.
Chad Rosierad2d3e62012-09-03 17:39:57 +00001924 CvtOS << " }\n }\n}\n\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001925
Chad Rosier62316fa2012-08-30 17:59:25 +00001926 // Finish up the operand number lookup function.
Chad Rosier87d910e2012-09-03 17:33:50 +00001927 OpOS << " }\n }\n return MCOperandNum;\n}\n\n";
Chad Rosier62316fa2012-08-30 17:59:25 +00001928
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001929 OS << "namespace {\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001930
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001931 // Output the operand conversion kind enum.
1932 OS << "enum OperatorConversionKind {\n";
1933 for (unsigned i = 0, e = OperandConversionKinds.size(); i != e; ++i)
1934 OS << " " << OperandConversionKinds[i] << ",\n";
1935 OS << " CVT_NUM_CONVERTERS\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001936 OS << "};\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001937
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001938 // Output the instruction conversion kind enum.
1939 OS << "enum InstructionConversionKind {\n";
1940 for (SetVector<std::string>::const_iterator
1941 i = InstructionConversionKinds.begin(),
1942 e = InstructionConversionKinds.end(); i != e; ++i)
1943 OS << " " << *i << ",\n";
1944 OS << " CVT_NUM_SIGNATURES\n";
1945 OS << "};\n\n";
1946
1947
1948 OS << "} // end anonymous namespace\n\n";
1949
1950 // Output the conversion table.
Craig Topperb198f5c2012-09-18 01:41:49 +00001951 OS << "static const uint8_t ConversionTable[CVT_NUM_SIGNATURES]["
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001952 << MaxRowLength << "] = {\n";
1953
1954 for (unsigned Row = 0, ERow = ConversionTable.size(); Row != ERow; ++Row) {
1955 assert(ConversionTable[Row].size() % 2 == 0 && "bad conversion row!");
1956 OS << " // " << InstructionConversionKinds[Row] << "\n";
1957 OS << " { ";
1958 for (unsigned i = 0, e = ConversionTable[Row].size(); i != e; i += 2)
1959 OS << OperandConversionKinds[ConversionTable[Row][i]] << ", "
1960 << (unsigned)(ConversionTable[Row][i + 1]) << ", ";
1961 OS << "CVT_Done },\n";
1962 }
1963
1964 OS << "};\n\n";
1965
1966 // Spit out the conversion driver function.
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001967 OS << CvtOS.str();
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001968
Chad Rosier62316fa2012-08-30 17:59:25 +00001969 // Spit out the operand number lookup function.
1970 OS << OpOS.str();
Daniel Dunbara027d222009-07-31 02:32:59 +00001971}
1972
Jim Grosbach8caecde2012-04-19 17:52:32 +00001973/// emitMatchClassEnumeration - Emit the enumeration for match class kinds.
1974static void emitMatchClassEnumeration(CodeGenTarget &Target,
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001975 std::vector<ClassInfo*> &Infos,
1976 raw_ostream &OS) {
1977 OS << "namespace {\n\n";
1978
1979 OS << "/// MatchClassKind - The kinds of classes which participate in\n"
1980 << "/// instruction matching.\n";
1981 OS << "enum MatchClassKind {\n";
1982 OS << " InvalidMatchClass = 0,\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001983 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001984 ie = Infos.end(); it != ie; ++it) {
1985 ClassInfo &CI = **it;
1986 OS << " " << CI.Name << ", // ";
1987 if (CI.Kind == ClassInfo::Token) {
1988 OS << "'" << CI.ValueName << "'\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001989 } else if (CI.isRegisterClass()) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001990 if (!CI.ValueName.empty())
1991 OS << "register class '" << CI.ValueName << "'\n";
1992 else
1993 OS << "derived register class\n";
1994 } else {
1995 OS << "user defined class '" << CI.ValueName << "'\n";
1996 }
1997 }
1998 OS << " NumMatchClassKinds\n";
1999 OS << "};\n\n";
2000
2001 OS << "}\n\n";
2002}
2003
Jim Grosbach8caecde2012-04-19 17:52:32 +00002004/// emitValidateOperandClass - Emit the function to validate an operand class.
2005static void emitValidateOperandClass(AsmMatcherInfo &Info,
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002006 raw_ostream &OS) {
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002007 OS << "static unsigned validateOperandClass(MCParsedAsmOperand *GOp, "
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002008 << "MatchClassKind Kind) {\n";
2009 OS << " " << Info.Target.getName() << "Operand &Operand = *("
Chris Lattner02bcbc92010-11-01 01:37:30 +00002010 << Info.Target.getName() << "Operand*)GOp;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002011
Kevin Enderby89381832011-07-15 18:30:43 +00002012 // The InvalidMatchClass is not to match any operand.
2013 OS << " if (Kind == InvalidMatchClass)\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002014 OS << " return MCTargetAsmParser::Match_InvalidOperand;\n\n";
Kevin Enderby89381832011-07-15 18:30:43 +00002015
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002016 // Check for Token operands first.
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002017 // FIXME: Use a more specific diagnostic type.
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002018 OS << " if (Operand.isToken())\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002019 OS << " return isSubclass(matchTokenString(Operand.getToken()), Kind) ?\n"
2020 << " MCTargetAsmParser::Match_Success :\n"
2021 << " MCTargetAsmParser::Match_InvalidOperand;\n\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002022
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002023 // Check the user classes. We don't care what order since we're only
2024 // actually matching against one of them.
Jim Grosbacha7c78222010-10-29 22:13:48 +00002025 for (std::vector<ClassInfo*>::iterator it = Info.Classes.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002026 ie = Info.Classes.end(); it != ie; ++it) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002027 ClassInfo &CI = **it;
2028
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002029 if (!CI.isUserClass())
2030 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00002031
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002032 OS << " // '" << CI.ClassName << "' class\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002033 OS << " if (Kind == " << CI.Name << ") {\n";
2034 OS << " if (Operand." << CI.PredicateMethod << "())\n";
2035 OS << " return MCTargetAsmParser::Match_Success;\n";
2036 if (!CI.DiagnosticType.empty())
2037 OS << " return " << Info.Target.getName() << "AsmParser::Match_"
2038 << CI.DiagnosticType << ";\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002039 OS << " }\n\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002040 }
Bob Wilson828295b2011-01-26 21:26:19 +00002041
Owen Andersonb885dc82012-07-16 23:20:09 +00002042 // Check for register operands, including sub-classes.
2043 OS << " if (Operand.isReg()) {\n";
2044 OS << " MatchClassKind OpKind;\n";
2045 OS << " switch (Operand.getReg()) {\n";
2046 OS << " default: OpKind = InvalidMatchClass; break;\n";
Sean Silvadecfdf52012-09-19 01:47:01 +00002047 for (AsmMatcherInfo::RegisterClassesTy::iterator
Owen Andersonb885dc82012-07-16 23:20:09 +00002048 it = Info.RegisterClasses.begin(), ie = Info.RegisterClasses.end();
2049 it != ie; ++it)
2050 OS << " case " << Info.Target.getName() << "::"
2051 << it->first->getName() << ": OpKind = " << it->second->Name
2052 << "; break;\n";
2053 OS << " }\n";
2054 OS << " return isSubclass(OpKind, Kind) ? "
2055 << "MCTargetAsmParser::Match_Success :\n "
2056 << " MCTargetAsmParser::Match_InvalidOperand;\n }\n\n";
2057
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002058 // Generic fallthrough match failure case for operands that don't have
2059 // specialized diagnostic types.
2060 OS << " return MCTargetAsmParser::Match_InvalidOperand;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002061 OS << "}\n\n";
2062}
2063
Jim Grosbach8caecde2012-04-19 17:52:32 +00002064/// emitIsSubclass - Emit the subclass predicate function.
2065static void emitIsSubclass(CodeGenTarget &Target,
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002066 std::vector<ClassInfo*> &Infos,
2067 raw_ostream &OS) {
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +00002068 OS << "/// isSubclass - Compute whether \\p A is a subclass of \\p B.\n";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002069 OS << "static bool isSubclass(MatchClassKind A, MatchClassKind B) {\n";
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002070 OS << " if (A == B)\n";
2071 OS << " return true;\n\n";
2072
2073 OS << " switch (A) {\n";
2074 OS << " default:\n";
2075 OS << " return false;\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002076 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002077 ie = Infos.end(); it != ie; ++it) {
2078 ClassInfo &A = **it;
2079
Jim Grosbacha66512e2011-12-06 23:43:54 +00002080 std::vector<StringRef> SuperClasses;
2081 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
2082 ie = Infos.end(); it != ie; ++it) {
2083 ClassInfo &B = **it;
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002084
Jim Grosbacha66512e2011-12-06 23:43:54 +00002085 if (&A != &B && A.isSubsetOf(B))
2086 SuperClasses.push_back(B.Name);
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002087 }
Jim Grosbacha66512e2011-12-06 23:43:54 +00002088
2089 if (SuperClasses.empty())
2090 continue;
2091
2092 OS << "\n case " << A.Name << ":\n";
2093
2094 if (SuperClasses.size() == 1) {
2095 OS << " return B == " << SuperClasses.back() << ";\n";
2096 continue;
2097 }
2098
2099 OS << " switch (B) {\n";
2100 OS << " default: return false;\n";
2101 for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
2102 OS << " case " << SuperClasses[i] << ": return true;\n";
2103 OS << " }\n";
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002104 }
2105 OS << " }\n";
2106 OS << "}\n\n";
2107}
2108
Jim Grosbach8caecde2012-04-19 17:52:32 +00002109/// emitMatchTokenString - Emit the function to match a token string to the
Daniel Dunbar245f0582009-08-08 21:22:41 +00002110/// appropriate match class value.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002111static void emitMatchTokenString(CodeGenTarget &Target,
Daniel Dunbar245f0582009-08-08 21:22:41 +00002112 std::vector<ClassInfo*> &Infos,
2113 raw_ostream &OS) {
2114 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00002115 std::vector<StringMatcher::StringPair> Matches;
Jim Grosbacha7c78222010-10-29 22:13:48 +00002116 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbar245f0582009-08-08 21:22:41 +00002117 ie = Infos.end(); it != ie; ++it) {
2118 ClassInfo &CI = **it;
2119
2120 if (CI.Kind == ClassInfo::Token)
Chris Lattner5845e5c2010-09-06 02:01:51 +00002121 Matches.push_back(StringMatcher::StringPair(CI.ValueName,
2122 "return " + CI.Name + ";"));
Daniel Dunbar245f0582009-08-08 21:22:41 +00002123 }
2124
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002125 OS << "static MatchClassKind matchTokenString(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00002126
Chris Lattner5845e5c2010-09-06 02:01:51 +00002127 StringMatcher("Name", Matches, OS).Emit();
Daniel Dunbar245f0582009-08-08 21:22:41 +00002128
2129 OS << " return InvalidMatchClass;\n";
2130 OS << "}\n\n";
2131}
Chris Lattner70add882009-08-08 20:02:57 +00002132
Jim Grosbach8caecde2012-04-19 17:52:32 +00002133/// emitMatchRegisterName - Emit the function to match a string to the target
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002134/// specific register enum.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002135static void emitMatchRegisterName(CodeGenTarget &Target, Record *AsmParser,
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002136 raw_ostream &OS) {
Daniel Dunbar245f0582009-08-08 21:22:41 +00002137 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00002138 std::vector<StringMatcher::StringPair> Matches;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00002139 const std::vector<CodeGenRegister*> &Regs =
2140 Target.getRegBank().getRegisters();
2141 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
2142 const CodeGenRegister *Reg = Regs[i];
2143 if (Reg->TheDef->getValueAsString("AsmName").empty())
Daniel Dunbar22be5222009-07-17 18:51:11 +00002144 continue;
2145
Chris Lattner5845e5c2010-09-06 02:01:51 +00002146 Matches.push_back(StringMatcher::StringPair(
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00002147 Reg->TheDef->getValueAsString("AsmName"),
2148 "return " + utostr(Reg->EnumValue) + ";"));
Daniel Dunbar22be5222009-07-17 18:51:11 +00002149 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002150
Chris Lattnerb8d6e982010-02-09 00:34:28 +00002151 OS << "static unsigned MatchRegisterName(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00002152
Chris Lattner5845e5c2010-09-06 02:01:51 +00002153 StringMatcher("Name", Matches, OS).Emit();
Jim Grosbacha7c78222010-10-29 22:13:48 +00002154
Daniel Dunbar245f0582009-08-08 21:22:41 +00002155 OS << " return 0;\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +00002156 OS << "}\n\n";
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002157}
Daniel Dunbara027d222009-07-31 02:32:59 +00002158
Jim Grosbach8caecde2012-04-19 17:52:32 +00002159/// emitSubtargetFeatureFlagEnumeration - Emit the subtarget feature flag
Daniel Dunbar54074b52010-07-19 05:44:09 +00002160/// definitions.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002161static void emitSubtargetFeatureFlagEnumeration(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00002162 raw_ostream &OS) {
2163 OS << "// Flags for subtarget features that participate in "
2164 << "instruction matching.\n";
2165 OS << "enum SubtargetFeatureFlag {\n";
2166 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2167 it = Info.SubtargetFeatures.begin(),
2168 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2169 SubtargetFeatureInfo &SFI = *it->second;
Chris Lattner0aed1e72010-10-30 20:07:57 +00002170 OS << " " << SFI.getEnumName() << " = (1 << " << SFI.Index << "),\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002171 }
2172 OS << " Feature_None = 0\n";
2173 OS << "};\n\n";
2174}
2175
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002176/// emitOperandDiagnosticTypes - Emit the operand matching diagnostic types.
2177static void emitOperandDiagnosticTypes(AsmMatcherInfo &Info, raw_ostream &OS) {
2178 // Get the set of diagnostic types from all of the operand classes.
2179 std::set<StringRef> Types;
2180 for (std::map<Record*, ClassInfo*>::const_iterator
2181 I = Info.AsmOperandClasses.begin(),
2182 E = Info.AsmOperandClasses.end(); I != E; ++I) {
2183 if (!I->second->DiagnosticType.empty())
2184 Types.insert(I->second->DiagnosticType);
2185 }
2186
2187 if (Types.empty()) return;
2188
2189 // Now emit the enum entries.
2190 for (std::set<StringRef>::const_iterator I = Types.begin(), E = Types.end();
2191 I != E; ++I)
2192 OS << " Match_" << *I << ",\n";
2193 OS << " END_OPERAND_DIAGNOSTIC_TYPES\n";
2194}
2195
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002196/// emitGetSubtargetFeatureName - Emit the helper function to get the
2197/// user-level name for a subtarget feature.
2198static void emitGetSubtargetFeatureName(AsmMatcherInfo &Info, raw_ostream &OS) {
2199 OS << "// User-level names for subtarget features that participate in\n"
2200 << "// instruction matching.\n"
2201 << "static const char *getSubtargetFeatureName(unsigned Val) {\n"
2202 << " switch(Val) {\n";
2203 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2204 it = Info.SubtargetFeatures.begin(),
2205 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2206 SubtargetFeatureInfo &SFI = *it->second;
2207 // FIXME: Totally just a placeholder name to get the algorithm working.
2208 OS << " case " << SFI.getEnumName() << ": return \""
2209 << SFI.TheDef->getValueAsString("PredicateName") << "\";\n";
2210 }
2211 OS << " default: return \"(unknown)\";\n";
2212 OS << " }\n}\n\n";
2213}
2214
Jim Grosbach8caecde2012-04-19 17:52:32 +00002215/// emitComputeAvailableFeatures - Emit the function to compute the list of
Daniel Dunbar54074b52010-07-19 05:44:09 +00002216/// available features given a subtarget.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002217static void emitComputeAvailableFeatures(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00002218 raw_ostream &OS) {
2219 std::string ClassName =
2220 Info.AsmParser->getValueAsString("AsmParserClassName");
2221
Chris Lattner02bcbc92010-11-01 01:37:30 +00002222 OS << "unsigned " << Info.Target.getName() << ClassName << "::\n"
Evan Chengebdeeab2011-07-08 01:53:10 +00002223 << "ComputeAvailableFeatures(uint64_t FB) const {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002224 OS << " unsigned Features = 0;\n";
2225 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2226 it = Info.SubtargetFeatures.begin(),
2227 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2228 SubtargetFeatureInfo &SFI = *it->second;
Evan Chengebdeeab2011-07-08 01:53:10 +00002229
2230 OS << " if (";
Jim Grosbach65da6fc2012-04-17 00:01:04 +00002231 std::string CondStorage =
2232 SFI.TheDef->getValueAsString("AssemblerCondString");
Evan Chengfbc38d22011-07-08 18:04:22 +00002233 StringRef Conds = CondStorage;
Evan Chengebdeeab2011-07-08 01:53:10 +00002234 std::pair<StringRef,StringRef> Comma = Conds.split(',');
2235 bool First = true;
2236 do {
2237 if (!First)
2238 OS << " && ";
2239
2240 bool Neg = false;
2241 StringRef Cond = Comma.first;
2242 if (Cond[0] == '!') {
2243 Neg = true;
2244 Cond = Cond.substr(1);
2245 }
2246
2247 OS << "((FB & " << Info.Target.getName() << "::" << Cond << ")";
2248 if (Neg)
2249 OS << " == 0";
2250 else
2251 OS << " != 0";
2252 OS << ")";
2253
2254 if (Comma.second.empty())
2255 break;
2256
2257 First = false;
2258 Comma = Comma.second.split(',');
2259 } while (true);
2260
2261 OS << ")\n";
Chris Lattner0aed1e72010-10-30 20:07:57 +00002262 OS << " Features |= " << SFI.getEnumName() << ";\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002263 }
2264 OS << " return Features;\n";
2265 OS << "}\n\n";
2266}
2267
Chris Lattner6fa152c2010-10-30 20:15:02 +00002268static std::string GetAliasRequiredFeatures(Record *R,
2269 const AsmMatcherInfo &Info) {
Chris Lattner693173f2010-10-30 19:23:13 +00002270 std::vector<Record*> ReqFeatures = R->getValueAsListOfDefs("Predicates");
Chris Lattner693173f2010-10-30 19:23:13 +00002271 std::string Result;
2272 unsigned NumFeatures = 0;
2273 for (unsigned i = 0, e = ReqFeatures.size(); i != e; ++i) {
Chris Lattner4a74ee72010-11-01 02:09:21 +00002274 SubtargetFeatureInfo *F = Info.getSubtargetFeature(ReqFeatures[i]);
Bob Wilson828295b2011-01-26 21:26:19 +00002275
Chris Lattner4a74ee72010-11-01 02:09:21 +00002276 if (F == 0)
2277 throw TGError(R->getLoc(), "Predicate '" + ReqFeatures[i]->getName() +
2278 "' is not marked as an AssemblerPredicate!");
Bob Wilson828295b2011-01-26 21:26:19 +00002279
Chris Lattner4a74ee72010-11-01 02:09:21 +00002280 if (NumFeatures)
2281 Result += '|';
Bob Wilson828295b2011-01-26 21:26:19 +00002282
Chris Lattner4a74ee72010-11-01 02:09:21 +00002283 Result += F->getEnumName();
2284 ++NumFeatures;
Chris Lattner693173f2010-10-30 19:23:13 +00002285 }
Bob Wilson828295b2011-01-26 21:26:19 +00002286
Chris Lattner693173f2010-10-30 19:23:13 +00002287 if (NumFeatures > 1)
2288 Result = '(' + Result + ')';
2289 return Result;
2290}
2291
Jim Grosbach8caecde2012-04-19 17:52:32 +00002292/// emitMnemonicAliases - If the target has any MnemonicAlias<> definitions,
Chris Lattner7fd44892010-10-30 18:48:18 +00002293/// emit a function for them and return true, otherwise return false.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002294static bool emitMnemonicAliases(raw_ostream &OS, const AsmMatcherInfo &Info) {
Daniel Dunbarc0a70072011-01-24 23:26:31 +00002295 // Ignore aliases when match-prefix is set.
2296 if (!MatchPrefix.empty())
2297 return false;
2298
Chris Lattner674c1dc2010-10-30 17:36:36 +00002299 std::vector<Record*> Aliases =
Chris Lattner67db8832010-12-13 00:23:57 +00002300 Info.getRecords().getAllDerivedDefinitions("MnemonicAlias");
Chris Lattner7fd44892010-10-30 18:48:18 +00002301 if (Aliases.empty()) return false;
Chris Lattner674c1dc2010-10-30 17:36:36 +00002302
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002303 OS << "static void applyMnemonicAliases(StringRef &Mnemonic, "
Chris Lattner8cc0a6b2010-10-30 18:57:07 +00002304 "unsigned Features) {\n";
Bob Wilson828295b2011-01-26 21:26:19 +00002305
Chris Lattner4fd32c62010-10-30 18:56:12 +00002306 // Keep track of all the aliases from a mnemonic. Use an std::map so that the
2307 // iteration order of the map is stable.
2308 std::map<std::string, std::vector<Record*> > AliasesFromMnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +00002309
Chris Lattner674c1dc2010-10-30 17:36:36 +00002310 for (unsigned i = 0, e = Aliases.size(); i != e; ++i) {
2311 Record *R = Aliases[i];
Chris Lattner4fd32c62010-10-30 18:56:12 +00002312 AliasesFromMnemonic[R->getValueAsString("FromMnemonic")].push_back(R);
Chris Lattner674c1dc2010-10-30 17:36:36 +00002313 }
Chris Lattner4fd32c62010-10-30 18:56:12 +00002314
2315 // Process each alias a "from" mnemonic at a time, building the code executed
2316 // by the string remapper.
2317 std::vector<StringMatcher::StringPair> Cases;
2318 for (std::map<std::string, std::vector<Record*> >::iterator
2319 I = AliasesFromMnemonic.begin(), E = AliasesFromMnemonic.end();
2320 I != E; ++I) {
Chris Lattner4fd32c62010-10-30 18:56:12 +00002321 const std::vector<Record*> &ToVec = I->second;
Chris Lattner693173f2010-10-30 19:23:13 +00002322
2323 // Loop through each alias and emit code that handles each case. If there
2324 // are two instructions without predicates, emit an error. If there is one,
2325 // emit it last.
2326 std::string MatchCode;
2327 int AliasWithNoPredicate = -1;
Bob Wilson828295b2011-01-26 21:26:19 +00002328
Chris Lattner693173f2010-10-30 19:23:13 +00002329 for (unsigned i = 0, e = ToVec.size(); i != e; ++i) {
2330 Record *R = ToVec[i];
Chris Lattner6fa152c2010-10-30 20:15:02 +00002331 std::string FeatureMask = GetAliasRequiredFeatures(R, Info);
Bob Wilson828295b2011-01-26 21:26:19 +00002332
Chris Lattner693173f2010-10-30 19:23:13 +00002333 // If this unconditionally matches, remember it for later and diagnose
2334 // duplicates.
2335 if (FeatureMask.empty()) {
2336 if (AliasWithNoPredicate != -1) {
2337 // We can't have two aliases from the same mnemonic with no predicate.
2338 PrintError(ToVec[AliasWithNoPredicate]->getLoc(),
2339 "two MnemonicAliases with the same 'from' mnemonic!");
Chris Lattner4164f6b2010-11-01 04:44:29 +00002340 throw TGError(R->getLoc(), "this is the other MnemonicAlias.");
Chris Lattner693173f2010-10-30 19:23:13 +00002341 }
Bob Wilson828295b2011-01-26 21:26:19 +00002342
Chris Lattner693173f2010-10-30 19:23:13 +00002343 AliasWithNoPredicate = i;
2344 continue;
2345 }
Joerg Sonnenberger6ef6ced2011-02-17 23:22:19 +00002346 if (R->getValueAsString("ToMnemonic") == I->first)
2347 throw TGError(R->getLoc(), "MnemonicAlias to the same string");
Bob Wilson828295b2011-01-26 21:26:19 +00002348
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00002349 if (!MatchCode.empty())
2350 MatchCode += "else ";
Chris Lattner693173f2010-10-30 19:23:13 +00002351 MatchCode += "if ((Features & " + FeatureMask + ") == "+FeatureMask+")\n";
2352 MatchCode += " Mnemonic = \"" +R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner4fd32c62010-10-30 18:56:12 +00002353 }
Bob Wilson828295b2011-01-26 21:26:19 +00002354
Chris Lattner693173f2010-10-30 19:23:13 +00002355 if (AliasWithNoPredicate != -1) {
2356 Record *R = ToVec[AliasWithNoPredicate];
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00002357 if (!MatchCode.empty())
2358 MatchCode += "else\n ";
2359 MatchCode += "Mnemonic = \"" + R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner693173f2010-10-30 19:23:13 +00002360 }
Bob Wilson828295b2011-01-26 21:26:19 +00002361
Chris Lattner693173f2010-10-30 19:23:13 +00002362 MatchCode += "return;";
2363
2364 Cases.push_back(std::make_pair(I->first, MatchCode));
Chris Lattner4fd32c62010-10-30 18:56:12 +00002365 }
Bob Wilson828295b2011-01-26 21:26:19 +00002366
Chris Lattner674c1dc2010-10-30 17:36:36 +00002367 StringMatcher("Mnemonic", Cases, OS).Emit();
Daniel Dunbar55b5e852011-01-18 01:59:30 +00002368 OS << "}\n\n";
Bob Wilson828295b2011-01-26 21:26:19 +00002369
Chris Lattner7fd44892010-10-30 18:48:18 +00002370 return true;
Chris Lattner674c1dc2010-10-30 17:36:36 +00002371}
2372
Jim Grosbach194f3fa2012-03-01 17:30:35 +00002373static const char *getMinimalTypeForRange(uint64_t Range) {
2374 assert(Range < 0xFFFFFFFFULL && "Enum too large");
2375 if (Range > 0xFFFF)
2376 return "uint32_t";
2377 if (Range > 0xFF)
2378 return "uint16_t";
2379 return "uint8_t";
2380}
2381
Jim Grosbach8caecde2012-04-19 17:52:32 +00002382static void emitCustomOperandParsing(raw_ostream &OS, CodeGenTarget &Target,
Craig Topper3a364442012-09-18 07:02:21 +00002383 const AsmMatcherInfo &Info, StringRef ClassName,
2384 StringToOffsetTable &StringTable,
2385 unsigned MaxMnemonicIndex) {
2386 unsigned MaxMask = 0;
2387 for (std::vector<OperandMatchEntry>::const_iterator it =
2388 Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2389 it != ie; ++it) {
2390 MaxMask |= it->OperandMask;
2391 }
2392
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002393 // Emit the static custom operand parsing table;
2394 OS << "namespace {\n";
2395 OS << " struct OperandMatchEntry {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002396 OS << " " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
Craig Topperfab3f7e2012-04-02 07:48:39 +00002397 << " RequiredFeatures;\n";
Craig Topper3a364442012-09-18 07:02:21 +00002398 OS << " " << getMinimalTypeForRange(MaxMnemonicIndex)
2399 << " Mnemonic;\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002400 OS << " " << getMinimalTypeForRange(Info.Classes.size())
Craig Topper3a364442012-09-18 07:02:21 +00002401 << " Class;\n";
2402 OS << " " << getMinimalTypeForRange(MaxMask)
2403 << " OperandMask;\n\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002404 OS << " StringRef getMnemonic() const {\n";
2405 OS << " return StringRef(MnemonicTable + Mnemonic + 1,\n";
2406 OS << " MnemonicTable[Mnemonic]);\n";
2407 OS << " }\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002408 OS << " };\n\n";
2409
2410 OS << " // Predicate for searching for an opcode.\n";
2411 OS << " struct LessOpcodeOperand {\n";
2412 OS << " bool operator()(const OperandMatchEntry &LHS, StringRef RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002413 OS << " return LHS.getMnemonic() < RHS;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002414 OS << " }\n";
2415 OS << " bool operator()(StringRef LHS, const OperandMatchEntry &RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002416 OS << " return LHS < RHS.getMnemonic();\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002417 OS << " }\n";
2418 OS << " bool operator()(const OperandMatchEntry &LHS,";
2419 OS << " const OperandMatchEntry &RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002420 OS << " return LHS.getMnemonic() < RHS.getMnemonic();\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002421 OS << " }\n";
2422 OS << " };\n";
2423
2424 OS << "} // end anonymous namespace.\n\n";
2425
2426 OS << "static const OperandMatchEntry OperandMatchTable["
2427 << Info.OperandMatchInfo.size() << "] = {\n";
2428
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002429 OS << " /* Operand List Mask, Mnemonic, Operand Class, Features */\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002430 for (std::vector<OperandMatchEntry>::const_iterator it =
2431 Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2432 it != ie; ++it) {
2433 const OperandMatchEntry &OMI = *it;
2434 const MatchableInfo &II = *OMI.MI;
2435
Craig Topper3a364442012-09-18 07:02:21 +00002436 OS << " { ";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002437
Craig Topper3a364442012-09-18 07:02:21 +00002438 // Write the required features mask.
2439 if (!II.RequiredFeatures.empty()) {
2440 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2441 if (i) OS << "|";
2442 OS << II.RequiredFeatures[i]->getEnumName();
2443 }
2444 } else
2445 OS << "0";
2446
2447 // Store a pascal-style length byte in the mnemonic.
2448 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2449 OS << ", " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
2450 << " /* " << II.Mnemonic << " */, ";
2451
2452 OS << OMI.CI->Name;
2453
2454 OS << ", " << OMI.OperandMask;
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002455 OS << " /* ";
2456 bool printComma = false;
2457 for (int i = 0, e = 31; i !=e; ++i)
2458 if (OMI.OperandMask & (1 << i)) {
2459 if (printComma)
2460 OS << ", ";
2461 OS << i;
2462 printComma = true;
2463 }
2464 OS << " */";
2465
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002466 OS << " },\n";
2467 }
2468 OS << "};\n\n";
2469
2470 // Emit the operand class switch to call the correct custom parser for
2471 // the found operand class.
Jim Grosbachf922c472011-02-12 01:34:40 +00002472 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
2473 << Target.getName() << ClassName << "::\n"
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002474 << "tryCustomParseOperand(SmallVectorImpl<MCParsedAsmOperand*>"
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002475 << " &Operands,\n unsigned MCK) {\n\n"
2476 << " switch(MCK) {\n";
2477
2478 for (std::vector<ClassInfo*>::const_iterator it = Info.Classes.begin(),
2479 ie = Info.Classes.end(); it != ie; ++it) {
2480 ClassInfo *CI = *it;
2481 if (CI->ParserMethod.empty())
2482 continue;
2483 OS << " case " << CI->Name << ":\n"
2484 << " return " << CI->ParserMethod << "(Operands);\n";
2485 }
2486
2487 OS << " default:\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002488 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002489 OS << " }\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002490 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002491 OS << "}\n\n";
2492
2493 // Emit the static custom operand parser. This code is very similar with
2494 // the other matcher. Also use MatchResultTy here just in case we go for
2495 // a better error handling.
Jim Grosbachf922c472011-02-12 01:34:40 +00002496 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002497 << Target.getName() << ClassName << "::\n"
2498 << "MatchOperandParserImpl(SmallVectorImpl<MCParsedAsmOperand*>"
2499 << " &Operands,\n StringRef Mnemonic) {\n";
2500
2501 // Emit code to get the available features.
2502 OS << " // Get the current feature set.\n";
2503 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2504
2505 OS << " // Get the next operand index.\n";
2506 OS << " unsigned NextOpNum = Operands.size()-1;\n";
2507
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002508 // Emit code to search the table.
2509 OS << " // Search the table.\n";
2510 OS << " std::pair<const OperandMatchEntry*, const OperandMatchEntry*>";
2511 OS << " MnemonicRange =\n";
2512 OS << " std::equal_range(OperandMatchTable, OperandMatchTable+"
2513 << Info.OperandMatchInfo.size() << ", Mnemonic,\n"
2514 << " LessOpcodeOperand());\n\n";
2515
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002516 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002517 OS << " return MatchOperand_NoMatch;\n\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002518
2519 OS << " for (const OperandMatchEntry *it = MnemonicRange.first,\n"
2520 << " *ie = MnemonicRange.second; it != ie; ++it) {\n";
2521
2522 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002523 OS << " assert(Mnemonic == it->getMnemonic());\n\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002524
2525 // Emit check that the required features are available.
2526 OS << " // check if the available features match\n";
2527 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2528 << "!= it->RequiredFeatures) {\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002529 OS << " continue;\n";
2530 OS << " }\n\n";
2531
2532 // Emit check to ensure the operand number matches.
2533 OS << " // check if the operand in question has a custom parser.\n";
2534 OS << " if (!(it->OperandMask & (1 << NextOpNum)))\n";
2535 OS << " continue;\n\n";
2536
2537 // Emit call to the custom parser method
2538 OS << " // call custom parse method to handle the operand\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002539 OS << " OperandMatchResultTy Result = ";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002540 OS << "tryCustomParseOperand(Operands, it->Class);\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002541 OS << " if (Result != MatchOperand_NoMatch)\n";
2542 OS << " return Result;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002543 OS << " }\n\n";
2544
Jim Grosbachf922c472011-02-12 01:34:40 +00002545 OS << " // Okay, we had no match.\n";
2546 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002547 OS << "}\n\n";
2548}
2549
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002550void AsmMatcherEmitter::run(raw_ostream &OS) {
Chris Lattner67db8832010-12-13 00:23:57 +00002551 CodeGenTarget Target(Records);
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002552 Record *AsmParser = Target.getAsmParser();
2553 std::string ClassName = AsmParser->getValueAsString("AsmParserClassName");
2554
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002555 // Compute the information on the instructions to match.
Chris Lattner67db8832010-12-13 00:23:57 +00002556 AsmMatcherInfo Info(AsmParser, Target, Records);
Jim Grosbach8caecde2012-04-19 17:52:32 +00002557 Info.buildInfo();
Daniel Dunbara027d222009-07-31 02:32:59 +00002558
Daniel Dunbare1f6de32010-02-02 23:46:36 +00002559 // Sort the instruction table using the partial order on classes. We use
2560 // stable_sort to ensure that ambiguous instructions are still
2561 // deterministically ordered.
Chris Lattner22bc5c42010-11-01 05:06:45 +00002562 std::stable_sort(Info.Matchables.begin(), Info.Matchables.end(),
2563 less_ptr<MatchableInfo>());
Jim Grosbacha7c78222010-10-29 22:13:48 +00002564
Daniel Dunbarb7479c02009-08-08 05:24:34 +00002565 DEBUG_WITH_TYPE("instruction_info", {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002566 for (std::vector<MatchableInfo*>::iterator
2567 it = Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002568 it != ie; ++it)
Daniel Dunbar20927f22009-08-07 08:26:05 +00002569 (*it)->dump();
2570 });
Daniel Dunbara027d222009-07-31 02:32:59 +00002571
Chris Lattner22bc5c42010-11-01 05:06:45 +00002572 // Check for ambiguous matchables.
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002573 DEBUG_WITH_TYPE("ambiguous_instrs", {
2574 unsigned NumAmbiguous = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002575 for (unsigned i = 0, e = Info.Matchables.size(); i != e; ++i) {
Chris Lattner87410362010-09-06 20:21:47 +00002576 for (unsigned j = i + 1; j != e; ++j) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002577 MatchableInfo &A = *Info.Matchables[i];
2578 MatchableInfo &B = *Info.Matchables[j];
Jim Grosbacha7c78222010-10-29 22:13:48 +00002579
Jim Grosbach8caecde2012-04-19 17:52:32 +00002580 if (A.couldMatchAmbiguouslyWith(B)) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002581 errs() << "warning: ambiguous matchables:\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002582 A.dump();
2583 errs() << "\nis incomparable with:\n";
2584 B.dump();
2585 errs() << "\n\n";
Chris Lattner87410362010-09-06 20:21:47 +00002586 ++NumAmbiguous;
2587 }
Daniel Dunbar2b544812009-08-09 06:05:33 +00002588 }
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002589 }
Chris Lattner87410362010-09-06 20:21:47 +00002590 if (NumAmbiguous)
Jim Grosbacha7c78222010-10-29 22:13:48 +00002591 errs() << "warning: " << NumAmbiguous
Chris Lattner22bc5c42010-11-01 05:06:45 +00002592 << " ambiguous matchables!\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002593 });
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002594
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002595 // Compute the information on the custom operand parsing.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002596 Info.buildOperandMatchInfo();
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002597
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002598 // Write the output.
2599
Chris Lattner0692ee62010-09-06 19:11:01 +00002600 // Information for the class declaration.
2601 OS << "\n#ifdef GET_ASSEMBLER_HEADER\n";
2602 OS << "#undef GET_ASSEMBLER_HEADER\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002603 OS << " // This should be included into the middle of the declaration of\n";
Evan Cheng94b95502011-07-26 00:24:13 +00002604 OS << " // your subclasses implementation of MCTargetAsmParser.\n";
Evan Chengebdeeab2011-07-08 01:53:10 +00002605 OS << " unsigned ComputeAvailableFeatures(uint64_t FeatureBits) const;\n";
Chad Rosier90e11f82012-09-05 01:02:38 +00002606 OS << " void convertToMCInst(unsigned Kind, MCInst &Inst, "
Daniel Dunbar5c228a92011-02-04 23:17:40 +00002607 << "unsigned Opcode,\n"
Chad Rosier87d910e2012-09-03 17:33:50 +00002608 << " const SmallVectorImpl<MCParsedAsmOperand*> "
Daniel Dunbar5c228a92011-02-04 23:17:40 +00002609 << "&Operands);\n";
Chad Rosier5d637d72012-09-05 01:15:43 +00002610 OS << " unsigned getMCInstOperandNumImpl(unsigned Kind, MCInst &Inst,\n "
Chad Rosier038f3e32012-09-03 18:47:45 +00002611 << " const "
2612 << "SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n "
Chad Rosier2cc97de2012-09-03 20:31:23 +00002613 << " unsigned OperandNum, unsigned &NumMCOperands);\n";
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002614 OS << " bool MnemonicIsValid(StringRef Mnemonic);\n";
Chad Rosier3a86e132012-09-03 02:06:46 +00002615 OS << " unsigned MatchInstructionImpl(\n"
2616 << " const SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n"
Chad Rosierc4d25602012-09-03 03:16:09 +00002617 << " unsigned &Kind, MCInst &Inst, "
2618 << "unsigned &ErrorInfo,\n unsigned VariantID = 0);\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002619
2620 if (Info.OperandMatchInfo.size()) {
Jim Grosbachf922c472011-02-12 01:34:40 +00002621 OS << "\n enum OperandMatchResultTy {\n";
2622 OS << " MatchOperand_Success, // operand matched successfully\n";
2623 OS << " MatchOperand_NoMatch, // operand did not match\n";
2624 OS << " MatchOperand_ParseFail // operand matched but had errors\n";
2625 OS << " };\n";
2626 OS << " OperandMatchResultTy MatchOperandParserImpl(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002627 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2628 OS << " StringRef Mnemonic);\n";
2629
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002630 OS << " OperandMatchResultTy tryCustomParseOperand(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002631 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2632 OS << " unsigned MCK);\n\n";
2633 }
2634
Chris Lattner0692ee62010-09-06 19:11:01 +00002635 OS << "#endif // GET_ASSEMBLER_HEADER_INFO\n\n";
2636
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002637 // Emit the operand match diagnostic enum names.
2638 OS << "\n#ifdef GET_OPERAND_DIAGNOSTIC_TYPES\n";
2639 OS << "#undef GET_OPERAND_DIAGNOSTIC_TYPES\n\n";
2640 emitOperandDiagnosticTypes(Info, OS);
2641 OS << "#endif // GET_OPERAND_DIAGNOSTIC_TYPES\n\n";
2642
2643
Chris Lattner0692ee62010-09-06 19:11:01 +00002644 OS << "\n#ifdef GET_REGISTER_MATCHER\n";
2645 OS << "#undef GET_REGISTER_MATCHER\n\n";
2646
Daniel Dunbar54074b52010-07-19 05:44:09 +00002647 // Emit the subtarget feature enumeration.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002648 emitSubtargetFeatureFlagEnumeration(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002649
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002650 // Emit the function to match a register name to number.
Akira Hatanaka72e9b6a2012-08-17 20:16:42 +00002651 // This should be omitted for Mips target
2652 if (AsmParser->getValueAsBit("ShouldEmitMatchRegisterName"))
2653 emitMatchRegisterName(Target, AsmParser, OS);
Chris Lattner0692ee62010-09-06 19:11:01 +00002654
2655 OS << "#endif // GET_REGISTER_MATCHER\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002656
Craig Topper8030e1a2012-04-25 06:56:34 +00002657 OS << "\n#ifdef GET_SUBTARGET_FEATURE_NAME\n";
2658 OS << "#undef GET_SUBTARGET_FEATURE_NAME\n\n";
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002659
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002660 // Generate the helper function to get the names for subtarget features.
2661 emitGetSubtargetFeatureName(Info, OS);
2662
Craig Topper8030e1a2012-04-25 06:56:34 +00002663 OS << "#endif // GET_SUBTARGET_FEATURE_NAME\n\n";
2664
2665 OS << "\n#ifdef GET_MATCHER_IMPLEMENTATION\n";
2666 OS << "#undef GET_MATCHER_IMPLEMENTATION\n\n";
2667
Chris Lattner7fd44892010-10-30 18:48:18 +00002668 // Generate the function that remaps for mnemonic aliases.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002669 bool HasMnemonicAliases = emitMnemonicAliases(OS, Info);
Bob Wilson828295b2011-01-26 21:26:19 +00002670
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002671 // Generate the unified function to convert operands into an MCInst.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002672 emitConvertToMCInst(Target, ClassName, Info.Matchables, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002673
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002674 // Emit the enumeration for classes which participate in matching.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002675 emitMatchClassEnumeration(Target, Info.Classes, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002676
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002677 // Emit the routine to match token strings to their match class.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002678 emitMatchTokenString(Target, Info.Classes, OS);
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002679
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002680 // Emit the subclass predicate routine.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002681 emitIsSubclass(Target, Info.Classes, OS);
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002682
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002683 // Emit the routine to validate an operand against a match class.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002684 emitValidateOperandClass(Info, OS);
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002685
Daniel Dunbar54074b52010-07-19 05:44:09 +00002686 // Emit the available features compute function.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002687 emitComputeAvailableFeatures(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002688
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002689
Craig Topperfee7f012012-09-18 06:10:45 +00002690 StringToOffsetTable StringTable;
2691
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002692 size_t MaxNumOperands = 0;
Craig Topperfee7f012012-09-18 06:10:45 +00002693 unsigned MaxMnemonicIndex = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002694 for (std::vector<MatchableInfo*>::const_iterator it =
2695 Info.Matchables.begin(), ie = Info.Matchables.end();
Craig Topperfee7f012012-09-18 06:10:45 +00002696 it != ie; ++it) {
2697 MatchableInfo &II = **it;
2698 MaxNumOperands = std::max(MaxNumOperands, II.AsmOperands.size());
2699
2700 // Store a pascal-style length byte in the mnemonic.
2701 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2702 MaxMnemonicIndex = std::max(MaxMnemonicIndex,
2703 StringTable.GetOrAddStringOffset(LenMnemonic, false));
2704 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002705
Craig Topper3a364442012-09-18 07:02:21 +00002706 OS << "static const char *const MnemonicTable =\n";
2707 StringTable.EmitString(OS);
2708 OS << ";\n\n";
2709
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002710 // Emit the static match table; unused classes get initalized to 0 which is
2711 // guaranteed to be InvalidMatchClass.
2712 //
2713 // FIXME: We can reduce the size of this table very easily. First, we change
2714 // it so that store the kinds in separate bit-fields for each index, which
2715 // only needs to be the max width used for classes at that index (we also need
2716 // to reject based on this during classification). If we then make sure to
2717 // order the match kinds appropriately (putting mnemonics last), then we
2718 // should only end up using a few bits for each class, especially the ones
2719 // following the mnemonic.
Chris Lattner96352e52010-09-06 21:08:38 +00002720 OS << "namespace {\n";
2721 OS << " struct MatchEntry {\n";
Craig Topperfee7f012012-09-18 06:10:45 +00002722 OS << " " << getMinimalTypeForRange(MaxMnemonicIndex)
2723 << " Mnemonic;\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002724 OS << " uint16_t Opcode;\n";
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002725 OS << " " << getMinimalTypeForRange(Info.Matchables.size())
2726 << " ConvertFn;\n";
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002727 OS << " " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
2728 << " RequiredFeatures;\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002729 OS << " " << getMinimalTypeForRange(Info.Classes.size())
2730 << " Classes[" << MaxNumOperands << "];\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002731 OS << " uint8_t AsmVariantID;\n\n";
2732 OS << " StringRef getMnemonic() const {\n";
2733 OS << " return StringRef(MnemonicTable + Mnemonic + 1,\n";
2734 OS << " MnemonicTable[Mnemonic]);\n";
2735 OS << " }\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002736 OS << " };\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002737
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002738 OS << " // Predicate for searching for an opcode.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002739 OS << " struct LessOpcode {\n";
2740 OS << " bool operator()(const MatchEntry &LHS, StringRef RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002741 OS << " return LHS.getMnemonic() < RHS;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002742 OS << " }\n";
2743 OS << " bool operator()(StringRef LHS, const MatchEntry &RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002744 OS << " return LHS < RHS.getMnemonic();\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002745 OS << " }\n";
Chris Lattner32c685c2010-09-07 06:10:48 +00002746 OS << " bool operator()(const MatchEntry &LHS, const MatchEntry &RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002747 OS << " return LHS.getMnemonic() < RHS.getMnemonic();\n";
Chris Lattner32c685c2010-09-07 06:10:48 +00002748 OS << " }\n";
Chris Lattner96352e52010-09-06 21:08:38 +00002749 OS << " };\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002750
Chris Lattner96352e52010-09-06 21:08:38 +00002751 OS << "} // end anonymous namespace.\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002752
Chris Lattner96352e52010-09-06 21:08:38 +00002753 OS << "static const MatchEntry MatchTable["
Chris Lattner22bc5c42010-11-01 05:06:45 +00002754 << Info.Matchables.size() << "] = {\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002755
Chris Lattner22bc5c42010-11-01 05:06:45 +00002756 for (std::vector<MatchableInfo*>::const_iterator it =
2757 Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002758 it != ie; ++it) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002759 MatchableInfo &II = **it;
Jim Grosbacha7c78222010-10-29 22:13:48 +00002760
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002761 // Store a pascal-style length byte in the mnemonic.
2762 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
Craig Topperfab3f7e2012-04-02 07:48:39 +00002763 OS << " { " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
2764 << " /* " << II.Mnemonic << " */, "
2765 << Target.getName() << "::"
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002766 << II.getResultInst()->TheDef->getName() << ", "
Craig Topperfab3f7e2012-04-02 07:48:39 +00002767 << II.ConversionFnKind << ", ";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002768
Daniel Dunbar54074b52010-07-19 05:44:09 +00002769 // Write the required features mask.
2770 if (!II.RequiredFeatures.empty()) {
2771 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2772 if (i) OS << "|";
Chris Lattner0aed1e72010-10-30 20:07:57 +00002773 OS << II.RequiredFeatures[i]->getEnumName();
Daniel Dunbar54074b52010-07-19 05:44:09 +00002774 }
2775 } else
2776 OS << "0";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002777
2778 OS << ", { ";
2779 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
2780 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
2781
2782 if (i) OS << ", ";
2783 OS << Op.Class->Name;
2784 }
2785 OS << " }, " << II.AsmVariantID;
Daniel Dunbar54074b52010-07-19 05:44:09 +00002786 OS << "},\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002787 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002788
Chris Lattner96352e52010-09-06 21:08:38 +00002789 OS << "};\n\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002790
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002791 // A method to determine if a mnemonic is in the list.
2792 OS << "bool " << Target.getName() << ClassName << "::\n"
2793 << "MnemonicIsValid(StringRef Mnemonic) {\n";
2794 OS << " // Search the table.\n";
2795 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2796 OS << " std::equal_range(MatchTable, MatchTable+"
2797 << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n";
2798 OS << " return MnemonicRange.first != MnemonicRange.second;\n";
2799 OS << "}\n\n";
2800
Chris Lattner96352e52010-09-06 21:08:38 +00002801 // Finally, build the match function.
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002802 OS << "unsigned "
Chris Lattner96352e52010-09-06 21:08:38 +00002803 << Target.getName() << ClassName << "::\n"
2804 << "MatchInstructionImpl(const SmallVectorImpl<MCParsedAsmOperand*>"
2805 << " &Operands,\n";
Chad Rosierc4d25602012-09-03 03:16:09 +00002806 OS << " unsigned &Kind, MCInst &Inst, unsigned ";
2807 OS << "&ErrorInfo,\n unsigned VariantID) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002808
Chad Rosier0bad0862012-08-30 21:43:05 +00002809 OS << " // Eliminate obvious mismatches.\n";
2810 OS << " if (Operands.size() > " << (MaxNumOperands+1) << ") {\n";
2811 OS << " ErrorInfo = " << (MaxNumOperands+1) << ";\n";
2812 OS << " return Match_InvalidOperand;\n";
2813 OS << " }\n\n";
2814
Daniel Dunbar54074b52010-07-19 05:44:09 +00002815 // Emit code to get the available features.
2816 OS << " // Get the current feature set.\n";
2817 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2818
Chris Lattner674c1dc2010-10-30 17:36:36 +00002819 OS << " // Get the instruction mnemonic, which is the first token.\n";
2820 OS << " StringRef Mnemonic = ((" << Target.getName()
2821 << "Operand*)Operands[0])->getToken();\n\n";
2822
Chris Lattner7fd44892010-10-30 18:48:18 +00002823 if (HasMnemonicAliases) {
2824 OS << " // Process all MnemonicAliases to remap the mnemonic.\n";
Devang Patel40bced02012-01-17 18:30:45 +00002825 OS << " // FIXME : Add an entry in AsmParserVariant to check this.\n";
2826 OS << " if (!VariantID)\n";
2827 OS << " applyMnemonicAliases(Mnemonic, AvailableFeatures);\n\n";
Chris Lattner7fd44892010-10-30 18:48:18 +00002828 }
Bob Wilson828295b2011-01-26 21:26:19 +00002829
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002830 // Emit code to compute the class list for this operand vector.
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002831 OS << " // Some state to try to produce better error messages.\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002832 OS << " bool HadMatchOtherThanFeatures = false;\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00002833 OS << " bool HadMatchOtherThanPredicate = false;\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002834 OS << " unsigned RetCode = Match_InvalidOperand;\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002835 OS << " unsigned MissingFeatures = ~0U;\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002836 OS << " // Set ErrorInfo to the operand that mismatches if it is\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002837 OS << " // wrong for all instances of the instruction.\n";
2838 OS << " ErrorInfo = ~0U;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002839
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002840 // Emit code to search the table.
2841 OS << " // Search the table.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002842 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2843 OS << " std::equal_range(MatchTable, MatchTable+"
Chris Lattner22bc5c42010-11-01 05:06:45 +00002844 << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002845
Chris Lattnera008e8a2010-09-06 21:54:15 +00002846 OS << " // Return a more specific error code if no mnemonics match.\n";
2847 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
2848 OS << " return Match_MnemonicFail;\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002849
Chris Lattner2b1f9432010-09-06 21:22:45 +00002850 OS << " for (const MatchEntry *it = MnemonicRange.first, "
Chris Lattner80db4e52010-09-06 21:23:43 +00002851 << "*ie = MnemonicRange.second;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002852 OS << " it != ie; ++it) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002853
Gabor Greife53ee3b2010-09-07 06:06:06 +00002854 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002855 OS << " assert(Mnemonic == it->getMnemonic());\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002856
Daniel Dunbar54074b52010-07-19 05:44:09 +00002857 // Emit check that the subclasses match.
Devang Patel56315d32012-01-10 17:50:43 +00002858 OS << " if (VariantID != it->AsmVariantID) continue;\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002859 OS << " bool OperandsValid = true;\n";
2860 OS << " for (unsigned i = 0; i != " << MaxNumOperands << "; ++i) {\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002861 OS << " if (i + 1 >= Operands.size()) {\n";
2862 OS << " OperandsValid = (it->Classes[i] == " <<"InvalidMatchClass);\n";
Bill Wendling087642f2012-08-04 10:31:40 +00002863 OS << " if (!OperandsValid) ErrorInfo = i + 1;\n";
Jim Grosbachb9d5af02011-05-03 19:09:56 +00002864 OS << " break;\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002865 OS << " }\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002866 OS << " unsigned Diag = validateOperandClass(Operands[i+1],\n";
2867 OS.indent(43);
2868 OS << "(MatchClassKind)it->Classes[i]);\n";
2869 OS << " if (Diag == Match_Success)\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002870 OS << " continue;\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002871 OS << " // If this operand is broken for all of the instances of this\n";
2872 OS << " // mnemonic, keep track of it so we can report loc info.\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002873 OS << " // If we already had a match that only failed due to a\n";
2874 OS << " // target predicate, that diagnostic is preferred.\n";
2875 OS << " if (!HadMatchOtherThanPredicate &&\n";
2876 OS << " (it == MnemonicRange.first || ErrorInfo <= i+1)) {\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002877 OS << " ErrorInfo = i+1;\n";
Jim Grosbachef970c12012-06-26 22:58:01 +00002878 OS << " // InvalidOperand is the default. Prefer specificity.\n";
2879 OS << " if (Diag != Match_InvalidOperand)\n";
2880 OS << " RetCode = Diag;\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002881 OS << " }\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002882 OS << " // Otherwise, just reject this instance of the mnemonic.\n";
2883 OS << " OperandsValid = false;\n";
2884 OS << " break;\n";
2885 OS << " }\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002886
Chris Lattnerce4a3352010-09-06 22:11:18 +00002887 OS << " if (!OperandsValid) continue;\n";
Chris Lattnerec6789f2010-09-06 20:08:02 +00002888
2889 // Emit check that the required features are available.
2890 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2891 << "!= it->RequiredFeatures) {\n";
2892 OS << " HadMatchOtherThanFeatures = true;\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002893 OS << " unsigned NewMissingFeatures = it->RequiredFeatures & "
2894 "~AvailableFeatures;\n";
Chad Rosier0bad0862012-08-30 21:43:05 +00002895 OS << " if (CountPopulation_32(NewMissingFeatures) <=\n"
2896 " CountPopulation_32(MissingFeatures))\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002897 OS << " MissingFeatures = NewMissingFeatures;\n";
Chris Lattnerec6789f2010-09-06 20:08:02 +00002898 OS << " continue;\n";
2899 OS << " }\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002900 OS << "\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00002901 OS << " // We have selected a definite instruction, convert the parsed\n"
2902 << " // operands into the appropriate MCInst.\n";
Chad Rosier90e11f82012-09-05 01:02:38 +00002903 OS << " convertToMCInst(it->ConvertFn, Inst, it->Opcode, Operands);\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00002904 OS << "\n";
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00002905
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002906 // Verify the instruction with the target-specific match predicate function.
2907 OS << " // We have a potential match. Check the target predicate to\n"
2908 << " // handle any context sensitive constraints.\n"
2909 << " unsigned MatchResult;\n"
2910 << " if ((MatchResult = checkTargetMatchPredicate(Inst)) !="
2911 << " Match_Success) {\n"
2912 << " Inst.clear();\n"
2913 << " RetCode = MatchResult;\n"
Jim Grosbach578071a2011-08-16 20:12:35 +00002914 << " HadMatchOtherThanPredicate = true;\n"
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002915 << " continue;\n"
2916 << " }\n\n";
2917
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00002918 // Call the post-processing function, if used.
2919 std::string InsnCleanupFn =
2920 AsmParser->getValueAsString("AsmParserInstCleanup");
2921 if (!InsnCleanupFn.empty())
2922 OS << " " << InsnCleanupFn << "(Inst);\n";
2923
Chad Rosier3a86e132012-09-03 02:06:46 +00002924 OS << " Kind = it->ConvertFn;\n";
Chris Lattner79ed3f72010-09-06 19:22:17 +00002925 OS << " return Match_Success;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002926 OS << " }\n\n";
2927
Chris Lattnerec6789f2010-09-06 20:08:02 +00002928 OS << " // Okay, we had no match. Try to return a useful error code.\n";
Chad Rosier4c1d2ba2012-08-21 17:22:47 +00002929 OS << " if (HadMatchOtherThanPredicate || !HadMatchOtherThanFeatures)\n";
2930 OS << " return RetCode;\n\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002931 OS << " // Missing feature matches return which features were missing\n";
2932 OS << " ErrorInfo = MissingFeatures;\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00002933 OS << " return Match_MissingFeature;\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002934 OS << "}\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002935
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002936 if (Info.OperandMatchInfo.size())
Craig Topper3a364442012-09-18 07:02:21 +00002937 emitCustomOperandParsing(OS, Target, Info, ClassName, StringTable,
2938 MaxMnemonicIndex);
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002939
Chris Lattner0692ee62010-09-06 19:11:01 +00002940 OS << "#endif // GET_MATCHER_IMPLEMENTATION\n\n";
Daniel Dunbard51ffcf2009-07-11 19:39:44 +00002941}
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +00002942
2943namespace llvm {
2944
2945void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS) {
2946 emitSourceFileHeader("Assembly Matcher Source Fragment", OS);
2947 AsmMatcherEmitter(RK).run(OS);
2948}
2949
2950} // End llvm namespace