blob: bc0cf4368f33621c0b1ec83c722cd2672c9f388b [file] [log] [blame]
Daniel Dunbard51ffcf2009-07-11 19:39:44 +00001//===- AsmMatcherEmitter.cpp - Generate an assembly matcher ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This tablegen backend emits a target specifier matcher for converting parsed
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +000011// assembly operands in the MCInst structures. It also emits a matcher for
12// custom operand parsing.
13//
14// Converting assembly operands into MCInst structures
15// ---------------------------------------------------
Daniel Dunbard51ffcf2009-07-11 19:39:44 +000016//
Daniel Dunbar20927f22009-08-07 08:26:05 +000017// The input to the target specific matcher is a list of literal tokens and
18// operands. The target specific parser should generally eliminate any syntax
19// which is not relevant for matching; for example, comma tokens should have
20// already been consumed and eliminated by the parser. Most instructions will
21// end up with a single literal token (the instruction name) and some number of
22// operands.
23//
24// Some example inputs, for X86:
25// 'addl' (immediate ...) (register ...)
26// 'add' (immediate ...) (memory ...)
Jim Grosbacha7c78222010-10-29 22:13:48 +000027// 'call' '*' %epc
Daniel Dunbar20927f22009-08-07 08:26:05 +000028//
29// The assembly matcher is responsible for converting this input into a precise
30// machine instruction (i.e., an instruction with a well defined encoding). This
31// mapping has several properties which complicate matching:
32//
33// - It may be ambiguous; many architectures can legally encode particular
34// variants of an instruction in different ways (for example, using a smaller
35// encoding for small immediates). Such ambiguities should never be
36// arbitrarily resolved by the assembler, the assembler is always responsible
37// for choosing the "best" available instruction.
38//
39// - It may depend on the subtarget or the assembler context. Instructions
40// which are invalid for the current mode, but otherwise unambiguous (e.g.,
41// an SSE instruction in a file being assembled for i486) should be accepted
42// and rejected by the assembler front end. However, if the proper encoding
43// for an instruction is dependent on the assembler context then the matcher
44// is responsible for selecting the correct machine instruction for the
45// current mode.
46//
47// The core matching algorithm attempts to exploit the regularity in most
48// instruction sets to quickly determine the set of possibly matching
49// instructions, and the simplify the generated code. Additionally, this helps
50// to ensure that the ambiguities are intentionally resolved by the user.
51//
52// The matching is divided into two distinct phases:
53//
54// 1. Classification: Each operand is mapped to the unique set which (a)
55// contains it, and (b) is the largest such subset for which a single
56// instruction could match all members.
57//
58// For register classes, we can generate these subgroups automatically. For
59// arbitrary operands, we expect the user to define the classes and their
60// relations to one another (for example, 8-bit signed immediates as a
61// subset of 32-bit immediates).
62//
63// By partitioning the operands in this way, we guarantee that for any
64// tuple of classes, any single instruction must match either all or none
65// of the sets of operands which could classify to that tuple.
66//
67// In addition, the subset relation amongst classes induces a partial order
68// on such tuples, which we use to resolve ambiguities.
69//
Daniel Dunbar20927f22009-08-07 08:26:05 +000070// 2. The input can now be treated as a tuple of classes (static tokens are
71// simple singleton sets). Each such tuple should generally map to a single
72// instruction (we currently ignore cases where this isn't true, whee!!!),
73// which we can emit a simple matcher for.
74//
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +000075// Custom Operand Parsing
76// ----------------------
77//
78// Some targets need a custom way to parse operands, some specific instructions
79// can contain arguments that can represent processor flags and other kinds of
Craig Topperbe480ff2012-09-18 01:13:36 +000080// identifiers that need to be mapped to specific values in the final encoded
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +000081// instructions. The target specific custom operand parsing works in the
82// following way:
83//
84// 1. A operand match table is built, each entry contains a mnemonic, an
85// operand class, a mask for all operand positions for that same
86// class/mnemonic and target features to be checked while trying to match.
87//
88// 2. The operand matcher will try every possible entry with the same
89// mnemonic and will check if the target feature for this mnemonic also
90// matches. After that, if the operand to be matched has its index
Chris Lattner7a2bdde2011-04-15 05:18:47 +000091// present in the mask, a successful match occurs. Otherwise, fallback
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +000092// to the regular operand parsing.
93//
94// 3. For a match success, each operand class that has a 'ParserMethod'
95// becomes part of a switch from where the custom method is called.
96//
Daniel Dunbard51ffcf2009-07-11 19:39:44 +000097//===----------------------------------------------------------------------===//
98
Daniel Dunbard51ffcf2009-07-11 19:39:44 +000099#include "CodeGenTarget.h"
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +0000100#include "StringToOffsetTable.h"
Daniel Dunbar20927f22009-08-07 08:26:05 +0000101#include "llvm/ADT/OwningPtr.h"
Chris Lattnerc07bd402010-11-04 02:11:18 +0000102#include "llvm/ADT/PointerUnion.h"
Chandler Carruth4ffd89f2012-12-04 10:37:14 +0000103#include "llvm/ADT/STLExtras.h"
Chris Lattner1de88232010-11-01 01:47:07 +0000104#include "llvm/ADT/SmallPtrSet.h"
Daniel Dunbara027d222009-07-31 02:32:59 +0000105#include "llvm/ADT/SmallVector.h"
Daniel Dunbar20927f22009-08-07 08:26:05 +0000106#include "llvm/ADT/StringExtras.h"
107#include "llvm/Support/CommandLine.h"
Daniel Dunbara027d222009-07-31 02:32:59 +0000108#include "llvm/Support/Debug.h"
Craig Topper655b8de2012-02-05 07:21:30 +0000109#include "llvm/Support/ErrorHandling.h"
Peter Collingbourne7c788882011-10-01 16:41:13 +0000110#include "llvm/TableGen/Error.h"
111#include "llvm/TableGen/Record.h"
Douglas Gregorf657da22012-05-02 17:32:48 +0000112#include "llvm/TableGen/StringMatcher.h"
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000113#include "llvm/TableGen/TableGenBackend.h"
114#include <cassert>
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000115#include <map>
116#include <set>
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
Sean Silvab2df6102012-09-19 01:47:03 +0000282namespace {
283/// Sort ClassInfo pointers independently of pointer value.
284struct LessClassInfoPtr {
285 bool operator()(const ClassInfo *LHS, const ClassInfo *RHS) const {
286 return *LHS < *RHS;
287 }
288};
289}
290
Chris Lattner22bc5c42010-11-01 05:06:45 +0000291/// MatchableInfo - Helper class for storing the necessary information for an
292/// instruction or alias which is capable of being matched.
293struct MatchableInfo {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000294 struct AsmOperand {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000295 /// Token - This is the token that the operand came from.
296 StringRef Token;
Bob Wilson828295b2011-01-26 21:26:19 +0000297
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000298 /// The unique class instance this operand should match.
299 ClassInfo *Class;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000300
Chris Lattner567820c2010-11-04 01:42:59 +0000301 /// The operand name this is, if anything.
302 StringRef SrcOpName;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000303
304 /// The suboperand index within SrcOpName, or -1 for the entire operand.
305 int SubOpIdx;
Bob Wilson828295b2011-01-26 21:26:19 +0000306
Devang Patel63faf822012-01-07 01:33:34 +0000307 /// Register record if this token is singleton register.
308 Record *SingletonReg;
309
Jim Grosbachf35307c2012-01-24 21:06:59 +0000310 explicit AsmOperand(StringRef T) : Token(T), Class(0), SubOpIdx(-1),
Jim Grosbach11fc6462012-04-11 21:02:33 +0000311 SingletonReg(0) {}
Daniel Dunbar20927f22009-08-07 08:26:05 +0000312 };
Bob Wilson828295b2011-01-26 21:26:19 +0000313
Chris Lattner1d13bda2010-11-04 00:43:46 +0000314 /// ResOperand - This represents a single operand in the result instruction
315 /// generated by the match. In cases (like addressing modes) where a single
316 /// assembler operand expands to multiple MCOperands, this represents the
317 /// single assembler operand, not the MCOperand.
318 struct ResOperand {
319 enum {
320 /// RenderAsmOperand - This represents an operand result that is
321 /// generated by calling the render method on the assembly operand. The
322 /// corresponding AsmOperand is specified by AsmOperandNum.
323 RenderAsmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000324
Chris Lattner1d13bda2010-11-04 00:43:46 +0000325 /// TiedOperand - This represents a result operand that is a duplicate of
326 /// a previous result operand.
Chris Lattner98c870f2010-11-06 19:25:43 +0000327 TiedOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000328
Chris Lattner98c870f2010-11-06 19:25:43 +0000329 /// ImmOperand - This represents an immediate value that is dumped into
330 /// the operand.
Chris Lattner90fd7972010-11-06 19:57:21 +0000331 ImmOperand,
Bob Wilson828295b2011-01-26 21:26:19 +0000332
Chris Lattner90fd7972010-11-06 19:57:21 +0000333 /// RegOperand - This represents a fixed register that is dumped in.
334 RegOperand
Chris Lattner1d13bda2010-11-04 00:43:46 +0000335 } Kind;
Bob Wilson828295b2011-01-26 21:26:19 +0000336
Chris Lattner1d13bda2010-11-04 00:43:46 +0000337 union {
338 /// This is the operand # in the AsmOperands list that this should be
339 /// copied from.
340 unsigned AsmOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000341
Chris Lattner1d13bda2010-11-04 00:43:46 +0000342 /// TiedOperandNum - This is the (earlier) result operand that should be
343 /// copied from.
344 unsigned TiedOperandNum;
Bob Wilson828295b2011-01-26 21:26:19 +0000345
Chris Lattner98c870f2010-11-06 19:25:43 +0000346 /// ImmVal - This is the immediate value added to the instruction.
347 int64_t ImmVal;
Bob Wilson828295b2011-01-26 21:26:19 +0000348
Chris Lattner90fd7972010-11-06 19:57:21 +0000349 /// Register - This is the register record.
350 Record *Register;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000351 };
Bob Wilson828295b2011-01-26 21:26:19 +0000352
Bob Wilsona49c7df2011-01-26 19:44:55 +0000353 /// MINumOperands - The number of MCInst operands populated by this
354 /// operand.
355 unsigned MINumOperands;
Bob Wilson828295b2011-01-26 21:26:19 +0000356
Bob Wilsona49c7df2011-01-26 19:44:55 +0000357 static ResOperand getRenderedOp(unsigned AsmOpNum, unsigned NumOperands) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000358 ResOperand X;
359 X.Kind = RenderAsmOperand;
360 X.AsmOperandNum = AsmOpNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000361 X.MINumOperands = NumOperands;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000362 return X;
363 }
Bob Wilson828295b2011-01-26 21:26:19 +0000364
Bob Wilsona49c7df2011-01-26 19:44:55 +0000365 static ResOperand getTiedOp(unsigned TiedOperandNum) {
Chris Lattner1d13bda2010-11-04 00:43:46 +0000366 ResOperand X;
367 X.Kind = TiedOperand;
368 X.TiedOperandNum = TiedOperandNum;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000369 X.MINumOperands = 1;
Chris Lattner1d13bda2010-11-04 00:43:46 +0000370 return X;
371 }
Bob Wilson828295b2011-01-26 21:26:19 +0000372
Bob Wilsona49c7df2011-01-26 19:44:55 +0000373 static ResOperand getImmOp(int64_t Val) {
Chris Lattner98c870f2010-11-06 19:25:43 +0000374 ResOperand X;
375 X.Kind = ImmOperand;
376 X.ImmVal = Val;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000377 X.MINumOperands = 1;
Chris Lattner98c870f2010-11-06 19:25:43 +0000378 return X;
379 }
Bob Wilson828295b2011-01-26 21:26:19 +0000380
Bob Wilsona49c7df2011-01-26 19:44:55 +0000381 static ResOperand getRegOp(Record *Reg) {
Chris Lattner90fd7972010-11-06 19:57:21 +0000382 ResOperand X;
383 X.Kind = RegOperand;
384 X.Register = Reg;
Bob Wilsona49c7df2011-01-26 19:44:55 +0000385 X.MINumOperands = 1;
Chris Lattner90fd7972010-11-06 19:57:21 +0000386 return X;
387 }
Chris Lattner1d13bda2010-11-04 00:43:46 +0000388 };
Daniel Dunbar20927f22009-08-07 08:26:05 +0000389
Devang Patel56315d32012-01-10 17:50:43 +0000390 /// AsmVariantID - Target's assembly syntax variant no.
391 int AsmVariantID;
392
Chris Lattner3b5aec62010-11-02 17:34:28 +0000393 /// TheDef - This is the definition of the instruction or InstAlias that this
394 /// matchable came from.
Chris Lattner5bc93872010-11-01 04:34:44 +0000395 Record *const TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000396
Chris Lattnerc07bd402010-11-04 02:11:18 +0000397 /// DefRec - This is the definition that it came from.
398 PointerUnion<const CodeGenInstruction*, const CodeGenInstAlias*> DefRec;
Bob Wilson828295b2011-01-26 21:26:19 +0000399
Chris Lattner662e5a32010-11-06 07:14:44 +0000400 const CodeGenInstruction *getResultInst() const {
401 if (DefRec.is<const CodeGenInstruction*>())
402 return DefRec.get<const CodeGenInstruction*>();
403 return DefRec.get<const CodeGenInstAlias*>()->ResultInst;
404 }
Bob Wilson828295b2011-01-26 21:26:19 +0000405
Chris Lattner1d13bda2010-11-04 00:43:46 +0000406 /// ResOperands - This is the operand list that should be built for the result
407 /// MCInst.
Jim Grosbachb423d182012-04-19 17:52:34 +0000408 SmallVector<ResOperand, 8> ResOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000409
410 /// AsmString - The assembly string for this instruction (with variants
Chris Lattner3b5aec62010-11-02 17:34:28 +0000411 /// removed), e.g. "movsx $src, $dst".
Daniel Dunbar20927f22009-08-07 08:26:05 +0000412 std::string AsmString;
413
Chris Lattnerd19ec052010-11-02 17:30:52 +0000414 /// Mnemonic - This is the first token of the matched instruction, its
415 /// mnemonic.
416 StringRef Mnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +0000417
Chris Lattner3116fef2010-11-02 01:03:43 +0000418 /// AsmOperands - The textual operands that this instruction matches,
Chris Lattner3b5aec62010-11-02 17:34:28 +0000419 /// annotated with a class and where in the OperandList they were defined.
420 /// This directly corresponds to the tokenized AsmString after the mnemonic is
421 /// removed.
Jim Grosbachb423d182012-04-19 17:52:34 +0000422 SmallVector<AsmOperand, 8> AsmOperands;
Daniel Dunbar20927f22009-08-07 08:26:05 +0000423
Daniel Dunbar54074b52010-07-19 05:44:09 +0000424 /// Predicates - The required subtarget features to match this instruction.
425 SmallVector<SubtargetFeatureInfo*, 4> RequiredFeatures;
426
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000427 /// ConversionFnKind - The enum value which is passed to the generated
Chad Rosier90e11f82012-09-05 01:02:38 +0000428 /// convertToMCInst to convert parsed operands into an MCInst for this
Daniel Dunbarb7479c02009-08-08 05:24:34 +0000429 /// function.
430 std::string ConversionFnKind;
Bob Wilson828295b2011-01-26 21:26:19 +0000431
Chris Lattner22bc5c42010-11-01 05:06:45 +0000432 MatchableInfo(const CodeGenInstruction &CGI)
Jim Grosbachf35307c2012-01-24 21:06:59 +0000433 : AsmVariantID(0), TheDef(CGI.TheDef), DefRec(&CGI),
Devang Patel56315d32012-01-10 17:50:43 +0000434 AsmString(CGI.AsmString) {
Chris Lattner5bc93872010-11-01 04:34:44 +0000435 }
436
Chris Lattner22bc5c42010-11-01 05:06:45 +0000437 MatchableInfo(const CodeGenInstAlias *Alias)
Jim Grosbachf35307c2012-01-24 21:06:59 +0000438 : AsmVariantID(0), TheDef(Alias->TheDef), DefRec(Alias),
Devang Patel56315d32012-01-10 17:50:43 +0000439 AsmString(Alias->AsmString) {
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000440 }
Bob Wilson828295b2011-01-26 21:26:19 +0000441
Jim Grosbachc1922c72012-04-19 23:59:23 +0000442 // Two-operand aliases clone from the main matchable, but mark the second
443 // operand as a tied operand of the first for purposes of the assembler.
444 void formTwoOperandAlias(StringRef Constraint);
445
Jim Grosbach8caecde2012-04-19 17:52:32 +0000446 void initialize(const AsmMatcherInfo &Info,
Jim Grosbachf35307c2012-01-24 21:06:59 +0000447 SmallPtrSet<Record*, 16> &SingletonRegisters,
Jim Grosbach11fc6462012-04-11 21:02:33 +0000448 int AsmVariantNo, std::string &RegisterPrefix);
Bob Wilson828295b2011-01-26 21:26:19 +0000449
Jim Grosbach8caecde2012-04-19 17:52:32 +0000450 /// validate - Return true if this matchable is a valid thing to match against
Chris Lattner22bc5c42010-11-01 05:06:45 +0000451 /// and perform a bunch of validity checking.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000452 bool validate(StringRef CommentDelimiter, bool Hack) const;
Bob Wilson828295b2011-01-26 21:26:19 +0000453
Jim Grosbachf35307c2012-01-24 21:06:59 +0000454 /// extractSingletonRegisterForAsmOperand - Extract singleton register,
Devang Patel63faf822012-01-07 01:33:34 +0000455 /// if present, from specified token.
456 void
457 extractSingletonRegisterForAsmOperand(unsigned i, const AsmMatcherInfo &Info,
458 std::string &RegisterPrefix);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000459
Jim Grosbach8caecde2012-04-19 17:52:32 +0000460 /// findAsmOperand - Find the AsmOperand with the specified name and
Bob Wilsona49c7df2011-01-26 19:44:55 +0000461 /// suboperand index.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000462 int findAsmOperand(StringRef N, int SubOpIdx) const {
Bob Wilsona49c7df2011-01-26 19:44:55 +0000463 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
464 if (N == AsmOperands[i].SrcOpName &&
465 SubOpIdx == AsmOperands[i].SubOpIdx)
466 return i;
467 return -1;
468 }
Bob Wilson828295b2011-01-26 21:26:19 +0000469
Jim Grosbach8caecde2012-04-19 17:52:32 +0000470 /// findAsmOperandNamed - Find the first AsmOperand with the specified name.
Bob Wilsona49c7df2011-01-26 19:44:55 +0000471 /// This does not check the suboperand index.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000472 int findAsmOperandNamed(StringRef N) const {
Chris Lattnerba3b5b62010-11-04 01:55:23 +0000473 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
474 if (N == AsmOperands[i].SrcOpName)
475 return i;
476 return -1;
477 }
Bob Wilson828295b2011-01-26 21:26:19 +0000478
Jim Grosbach8caecde2012-04-19 17:52:32 +0000479 void buildInstructionResultOperands();
480 void buildAliasResultOperands();
Chris Lattner1d13bda2010-11-04 00:43:46 +0000481
Chris Lattner22bc5c42010-11-01 05:06:45 +0000482 /// operator< - Compare two matchables.
483 bool operator<(const MatchableInfo &RHS) const {
Chris Lattnere206fcf2010-09-06 21:01:37 +0000484 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000485 if (Mnemonic != RHS.Mnemonic)
486 return Mnemonic < RHS.Mnemonic;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000487
Chris Lattner3116fef2010-11-02 01:03:43 +0000488 if (AsmOperands.size() != RHS.AsmOperands.size())
489 return AsmOperands.size() < RHS.AsmOperands.size();
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000490
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000491 // Compare lexicographically by operand. The matcher validates that other
Jim Grosbach8caecde2012-04-19 17:52:32 +0000492 // orderings wouldn't be ambiguous using \see couldMatchAmbiguouslyWith().
Chris Lattner3116fef2010-11-02 01:03:43 +0000493 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
494 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000495 return true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000496 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbardb2ddb52009-08-09 08:23:23 +0000497 return false;
498 }
499
Andrew Trick2b70dfa2012-08-29 03:52:57 +0000500 // Give matches that require more features higher precedence. This is useful
501 // because we cannot define AssemblerPredicates with the negation of
502 // processor features. For example, ARM v6 "nop" may be either a HINT or
503 // MOV. With v6, we want to match HINT. The assembler has no way to
504 // predicate MOV under "NoV6", but HINT will always match first because it
505 // requires V6 while MOV does not.
506 if (RequiredFeatures.size() != RHS.RequiredFeatures.size())
507 return RequiredFeatures.size() > RHS.RequiredFeatures.size();
508
Daniel Dunbar606e8ad2009-08-09 04:00:06 +0000509 return false;
510 }
511
Jim Grosbach8caecde2012-04-19 17:52:32 +0000512 /// couldMatchAmbiguouslyWith - Check whether this matchable could
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +0000513 /// ambiguously match the same set of operands as \p RHS (without being a
Daniel Dunbar2b544812009-08-09 06:05:33 +0000514 /// strictly superior match).
Jim Grosbach8caecde2012-04-19 17:52:32 +0000515 bool couldMatchAmbiguouslyWith(const MatchableInfo &RHS) {
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000516 // The primary comparator is the instruction mnemonic.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000517 if (Mnemonic != RHS.Mnemonic)
Chris Lattnere66b7eb2010-11-01 23:57:23 +0000518 return false;
Bob Wilson828295b2011-01-26 21:26:19 +0000519
Daniel Dunbar2b544812009-08-09 06:05:33 +0000520 // The number of operands is unambiguous.
Chris Lattner3116fef2010-11-02 01:03:43 +0000521 if (AsmOperands.size() != RHS.AsmOperands.size())
Daniel Dunbar2b544812009-08-09 06:05:33 +0000522 return false;
523
Daniel Dunbar1402f0b2010-01-23 00:26:16 +0000524 // Otherwise, make sure the ordering of the two instructions is unambiguous
525 // by checking that either (a) a token or operand kind discriminates them,
526 // or (b) the ordering among equivalent kinds is consistent.
527
Daniel Dunbar2b544812009-08-09 06:05:33 +0000528 // Tokens and operand kinds are unambiguous (assuming a correct target
529 // specific parser).
Chris Lattner3116fef2010-11-02 01:03:43 +0000530 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
531 if (AsmOperands[i].Class->Kind != RHS.AsmOperands[i].Class->Kind ||
532 AsmOperands[i].Class->Kind == ClassInfo::Token)
533 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class ||
534 *RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000535 return false;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000536
Daniel Dunbar2b544812009-08-09 06:05:33 +0000537 // Otherwise, this operand could commute if all operands are equivalent, or
538 // there is a pair of operands that compare less than and a pair that
539 // compare greater than.
540 bool HasLT = false, HasGT = false;
Chris Lattner3116fef2010-11-02 01:03:43 +0000541 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
542 if (*AsmOperands[i].Class < *RHS.AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000543 HasLT = true;
Chris Lattner3116fef2010-11-02 01:03:43 +0000544 if (*RHS.AsmOperands[i].Class < *AsmOperands[i].Class)
Daniel Dunbar2b544812009-08-09 06:05:33 +0000545 HasGT = true;
546 }
547
548 return !(HasLT ^ HasGT);
549 }
550
Daniel Dunbar20927f22009-08-07 08:26:05 +0000551 void dump();
Bob Wilson828295b2011-01-26 21:26:19 +0000552
Chris Lattnerd19ec052010-11-02 17:30:52 +0000553private:
Jim Grosbach8caecde2012-04-19 17:52:32 +0000554 void tokenizeAsmString(const AsmMatcherInfo &Info);
Daniel Dunbar20927f22009-08-07 08:26:05 +0000555};
556
Daniel Dunbar54074b52010-07-19 05:44:09 +0000557/// SubtargetFeatureInfo - Helper class for storing information on a subtarget
558/// feature which participates in instruction matching.
559struct SubtargetFeatureInfo {
560 /// \brief The predicate record for this feature.
561 Record *TheDef;
562
563 /// \brief An unique index assigned to represent this feature.
564 unsigned Index;
565
Chris Lattner0aed1e72010-10-30 20:07:57 +0000566 SubtargetFeatureInfo(Record *D, unsigned Idx) : TheDef(D), Index(Idx) {}
Bob Wilson828295b2011-01-26 21:26:19 +0000567
Daniel Dunbar54074b52010-07-19 05:44:09 +0000568 /// \brief The name of the enumerated constant identifying this feature.
Chris Lattner0aed1e72010-10-30 20:07:57 +0000569 std::string getEnumName() const {
570 return "Feature_" + TheDef->getName();
571 }
Daniel Dunbar54074b52010-07-19 05:44:09 +0000572};
573
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000574struct OperandMatchEntry {
575 unsigned OperandMask;
576 MatchableInfo* MI;
577 ClassInfo *CI;
578
Jim Grosbach8caecde2012-04-19 17:52:32 +0000579 static OperandMatchEntry create(MatchableInfo* mi, ClassInfo *ci,
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000580 unsigned opMask) {
581 OperandMatchEntry X;
582 X.OperandMask = opMask;
583 X.CI = ci;
584 X.MI = mi;
585 return X;
586 }
587};
588
589
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000590class AsmMatcherInfo {
591public:
Chris Lattner67db8832010-12-13 00:23:57 +0000592 /// Tracked Records
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000593 RecordKeeper &Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000594
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000595 /// The tablegen AsmParser record.
596 Record *AsmParser;
597
Chris Lattner02bcbc92010-11-01 01:37:30 +0000598 /// Target - The target information.
599 CodeGenTarget &Target;
600
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000601 /// The classes which are needed for matching.
602 std::vector<ClassInfo*> Classes;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000603
Chris Lattner22bc5c42010-11-01 05:06:45 +0000604 /// The information on the matchables to match.
605 std::vector<MatchableInfo*> Matchables;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000606
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000607 /// Info for custom matching operands by user defined methods.
608 std::vector<OperandMatchEntry> OperandMatchInfo;
609
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000610 /// Map of Register records to their class information.
Sean Silvadecfdf52012-09-19 01:47:01 +0000611 typedef std::map<Record*, ClassInfo*, LessRecordByID> RegisterClassesTy;
612 RegisterClassesTy RegisterClasses;
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000613
Daniel Dunbar54074b52010-07-19 05:44:09 +0000614 /// Map of Predicate records to their subtarget information.
615 std::map<Record*, SubtargetFeatureInfo*> SubtargetFeatures;
Bob Wilson828295b2011-01-26 21:26:19 +0000616
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +0000617 /// Map of AsmOperandClass records to their class information.
618 std::map<Record*, ClassInfo*> AsmOperandClasses;
619
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000620private:
621 /// Map of token to class information which has already been constructed.
622 std::map<std::string, ClassInfo*> TokenClasses;
623
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000624 /// Map of RegisterClass records to their class information.
625 std::map<Record*, ClassInfo*> RegisterClassClasses;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000626
627private:
628 /// getTokenClass - Lookup or create the class for the given token.
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000629 ClassInfo *getTokenClass(StringRef Token);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000630
631 /// getOperandClass - Lookup or create the class for the given operand.
Bob Wilsona49c7df2011-01-26 19:44:55 +0000632 ClassInfo *getOperandClass(const CGIOperandList::OperandInfo &OI,
Jim Grosbach48c1f842011-10-28 22:32:53 +0000633 int SubOpIdx);
634 ClassInfo *getOperandClass(Record *Rec, int SubOpIdx);
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000635
Jim Grosbach8caecde2012-04-19 17:52:32 +0000636 /// buildRegisterClasses - Build the ClassInfo* instances for register
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000637 /// classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000638 void buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters);
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000639
Jim Grosbach8caecde2012-04-19 17:52:32 +0000640 /// buildOperandClasses - Build the ClassInfo* instances for user defined
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000641 /// operand classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000642 void buildOperandClasses();
Daniel Dunbarea6408f2009-08-11 02:59:53 +0000643
Jim Grosbach8caecde2012-04-19 17:52:32 +0000644 void buildInstructionOperandReference(MatchableInfo *II, StringRef OpName,
Bob Wilsona49c7df2011-01-26 19:44:55 +0000645 unsigned AsmOpIdx);
Jim Grosbach8caecde2012-04-19 17:52:32 +0000646 void buildAliasOperandReference(MatchableInfo *II, StringRef OpName,
Chris Lattnerc07bd402010-11-04 02:11:18 +0000647 MatchableInfo::AsmOperand &Op);
Bob Wilson828295b2011-01-26 21:26:19 +0000648
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000649public:
Bob Wilson828295b2011-01-26 21:26:19 +0000650 AsmMatcherInfo(Record *AsmParser,
651 CodeGenTarget &Target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000652 RecordKeeper &Records);
Daniel Dunbar59fc42d2009-08-11 20:59:47 +0000653
Jim Grosbach8caecde2012-04-19 17:52:32 +0000654 /// buildInfo - Construct the various tables used during matching.
655 void buildInfo();
Bob Wilson828295b2011-01-26 21:26:19 +0000656
Jim Grosbach8caecde2012-04-19 17:52:32 +0000657 /// buildOperandMatchInfo - Build the necessary information to handle user
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000658 /// defined operand parsing methods.
Jim Grosbach8caecde2012-04-19 17:52:32 +0000659 void buildOperandMatchInfo();
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000660
Chris Lattner6fa152c2010-10-30 20:15:02 +0000661 /// getSubtargetFeature - Lookup or create the subtarget feature info for the
662 /// given operand.
663 SubtargetFeatureInfo *getSubtargetFeature(Record *Def) const {
664 assert(Def->isSubClassOf("Predicate") && "Invalid predicate type!");
665 std::map<Record*, SubtargetFeatureInfo*>::const_iterator I =
666 SubtargetFeatures.find(Def);
667 return I == SubtargetFeatures.end() ? 0 : I->second;
668 }
Chris Lattner67db8832010-12-13 00:23:57 +0000669
Chris Lattner9c6b60e2010-12-15 04:48:22 +0000670 RecordKeeper &getRecords() const {
671 return Records;
Chris Lattner67db8832010-12-13 00:23:57 +0000672 }
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000673};
674
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +0000675} // End anonymous namespace
Daniel Dunbar20927f22009-08-07 08:26:05 +0000676
Chris Lattner22bc5c42010-11-01 05:06:45 +0000677void MatchableInfo::dump() {
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000678 errs() << TheDef->getName() << " -- " << "flattened:\"" << AsmString <<"\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000679
Chris Lattner3116fef2010-11-02 01:03:43 +0000680 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000681 AsmOperand &Op = AsmOperands[i];
Daniel Dunbar6745d422009-08-09 05:18:30 +0000682 errs() << " op[" << i << "] = " << Op.Class->ClassName << " - ";
Chris Lattner0bb780c2010-11-04 00:57:06 +0000683 errs() << '\"' << Op.Token << "\"\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +0000684 }
685}
686
Jim Grosbachc1922c72012-04-19 23:59:23 +0000687static std::pair<StringRef, StringRef>
Jakob Stoklund Olesen376a8a72012-08-22 23:33:58 +0000688parseTwoOperandConstraint(StringRef S, ArrayRef<SMLoc> Loc) {
Jim Grosbachc1922c72012-04-19 23:59:23 +0000689 // Split via the '='.
690 std::pair<StringRef, StringRef> Ops = S.split('=');
691 if (Ops.second == "")
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000692 PrintFatalError(Loc, "missing '=' in two-operand alias constraint");
Jim Grosbachc1922c72012-04-19 23:59:23 +0000693 // Trim whitespace and the leading '$' on the operand names.
694 size_t start = Ops.first.find_first_of('$');
695 if (start == std::string::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000696 PrintFatalError(Loc, "expected '$' prefix on asm operand name");
Jim Grosbachc1922c72012-04-19 23:59:23 +0000697 Ops.first = Ops.first.slice(start + 1, std::string::npos);
698 size_t end = Ops.first.find_last_of(" \t");
699 Ops.first = Ops.first.slice(0, end);
700 // Now the second operand.
701 start = Ops.second.find_first_of('$');
702 if (start == std::string::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000703 PrintFatalError(Loc, "expected '$' prefix on asm operand name");
Jim Grosbachc1922c72012-04-19 23:59:23 +0000704 Ops.second = Ops.second.slice(start + 1, std::string::npos);
705 end = Ops.second.find_last_of(" \t");
706 Ops.first = Ops.first.slice(0, end);
707 return Ops;
708}
709
710void MatchableInfo::formTwoOperandAlias(StringRef Constraint) {
711 // Figure out which operands are aliased and mark them as tied.
712 std::pair<StringRef, StringRef> Ops =
713 parseTwoOperandConstraint(Constraint, TheDef->getLoc());
714
715 // Find the AsmOperands that refer to the operands we're aliasing.
716 int SrcAsmOperand = findAsmOperandNamed(Ops.first);
717 int DstAsmOperand = findAsmOperandNamed(Ops.second);
718 if (SrcAsmOperand == -1)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000719 PrintFatalError(TheDef->getLoc(),
Jim Grosbachc1922c72012-04-19 23:59:23 +0000720 "unknown source two-operand alias operand '" +
721 Ops.first.str() + "'.");
722 if (DstAsmOperand == -1)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000723 PrintFatalError(TheDef->getLoc(),
Jim Grosbachc1922c72012-04-19 23:59:23 +0000724 "unknown destination two-operand alias operand '" +
725 Ops.second.str() + "'.");
726
727 // Find the ResOperand that refers to the operand we're aliasing away
728 // and update it to refer to the combined operand instead.
729 for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
730 ResOperand &Op = ResOperands[i];
731 if (Op.Kind == ResOperand::RenderAsmOperand &&
732 Op.AsmOperandNum == (unsigned)SrcAsmOperand) {
733 Op.AsmOperandNum = DstAsmOperand;
734 break;
735 }
736 }
737 // Remove the AsmOperand for the alias operand.
738 AsmOperands.erase(AsmOperands.begin() + SrcAsmOperand);
739 // Adjust the ResOperand references to any AsmOperands that followed
740 // the one we just deleted.
741 for (unsigned i = 0, e = ResOperands.size(); i != e; ++i) {
742 ResOperand &Op = ResOperands[i];
743 switch(Op.Kind) {
744 default:
745 // Nothing to do for operands that don't reference AsmOperands.
746 break;
747 case ResOperand::RenderAsmOperand:
748 if (Op.AsmOperandNum > (unsigned)SrcAsmOperand)
749 --Op.AsmOperandNum;
750 break;
751 case ResOperand::TiedOperand:
752 if (Op.TiedOperandNum > (unsigned)SrcAsmOperand)
753 --Op.TiedOperandNum;
754 break;
755 }
756 }
757}
758
Jim Grosbach8caecde2012-04-19 17:52:32 +0000759void MatchableInfo::initialize(const AsmMatcherInfo &Info,
Devang Patel63faf822012-01-07 01:33:34 +0000760 SmallPtrSet<Record*, 16> &SingletonRegisters,
761 int AsmVariantNo, std::string &RegisterPrefix) {
Devang Patel56315d32012-01-10 17:50:43 +0000762 AsmVariantID = AsmVariantNo;
Jim Grosbachf35307c2012-01-24 21:06:59 +0000763 AsmString =
Devang Patel63faf822012-01-07 01:33:34 +0000764 CodeGenInstruction::FlattenAsmStringVariants(AsmString, AsmVariantNo);
Bob Wilson828295b2011-01-26 21:26:19 +0000765
Jim Grosbach8caecde2012-04-19 17:52:32 +0000766 tokenizeAsmString(Info);
Bob Wilson828295b2011-01-26 21:26:19 +0000767
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000768 // Compute the require features.
769 std::vector<Record*> Predicates =TheDef->getValueAsListOfDefs("Predicates");
770 for (unsigned i = 0, e = Predicates.size(); i != e; ++i)
771 if (SubtargetFeatureInfo *Feature =
772 Info.getSubtargetFeature(Predicates[i]))
773 RequiredFeatures.push_back(Feature);
Bob Wilson828295b2011-01-26 21:26:19 +0000774
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000775 // Collect singleton registers, if used.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000776 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
Devang Patel63faf822012-01-07 01:33:34 +0000777 extractSingletonRegisterForAsmOperand(i, Info, RegisterPrefix);
778 if (Record *Reg = AsmOperands[i].SingletonReg)
Chris Lattnerc2d67bb2010-11-01 04:53:48 +0000779 SingletonRegisters.insert(Reg);
780 }
781}
782
Jim Grosbach8caecde2012-04-19 17:52:32 +0000783/// tokenizeAsmString - Tokenize a simplified assembly string.
784void MatchableInfo::tokenizeAsmString(const AsmMatcherInfo &Info) {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000785 StringRef String = AsmString;
786 unsigned Prev = 0;
787 bool InTok = true;
788 for (unsigned i = 0, e = String.size(); i != e; ++i) {
789 switch (String[i]) {
790 case '[':
791 case ']':
792 case '*':
793 case '!':
794 case ' ':
795 case '\t':
796 case ',':
797 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000798 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000799 InTok = false;
800 }
801 if (!isspace(String[i]) && String[i] != ',')
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000802 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000803 Prev = i + 1;
804 break;
805
806 case '\\':
807 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000808 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000809 InTok = false;
810 }
811 ++i;
812 assert(i != String.size() && "Invalid quoted character");
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000813 AsmOperands.push_back(AsmOperand(String.substr(i, 1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000814 Prev = i + 1;
815 break;
816
817 case '$': {
Chris Lattnerd19ec052010-11-02 17:30:52 +0000818 if (InTok) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000819 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000820 InTok = false;
821 }
Bob Wilson828295b2011-01-26 21:26:19 +0000822
Chris Lattner7ad31472010-11-06 22:06:03 +0000823 // If this isn't "${", treat like a normal token.
824 if (i + 1 == String.size() || String[i + 1] != '{') {
825 Prev = i;
826 break;
827 }
Chris Lattnerd19ec052010-11-02 17:30:52 +0000828
829 StringRef::iterator End = std::find(String.begin() + i, String.end(),'}');
830 assert(End != String.end() && "Missing brace in operand reference!");
831 size_t EndPos = End - String.begin();
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000832 AsmOperands.push_back(AsmOperand(String.slice(i, EndPos+1)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000833 Prev = EndPos + 1;
834 i = EndPos;
835 break;
836 }
837
838 case '.':
839 if (InTok)
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000840 AsmOperands.push_back(AsmOperand(String.slice(Prev, i)));
Chris Lattnerd19ec052010-11-02 17:30:52 +0000841 Prev = i;
842 InTok = true;
843 break;
844
845 default:
846 InTok = true;
847 }
848 }
849 if (InTok && Prev != String.size())
Chris Lattnerc0b14a22010-11-03 19:47:34 +0000850 AsmOperands.push_back(AsmOperand(String.substr(Prev)));
Bob Wilson828295b2011-01-26 21:26:19 +0000851
Chris Lattnerd19ec052010-11-02 17:30:52 +0000852 // The first token of the instruction is the mnemonic, which must be a
853 // simple string, not a $foo variable or a singleton register.
Jim Grosbach4a2242c2011-11-30 23:16:25 +0000854 if (AsmOperands.empty())
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000855 PrintFatalError(TheDef->getLoc(),
Jim Grosbach4a2242c2011-11-30 23:16:25 +0000856 "Instruction '" + TheDef->getName() + "' has no tokens");
Chris Lattnerd19ec052010-11-02 17:30:52 +0000857 Mnemonic = AsmOperands[0].Token;
Jim Grosbach8e27c962012-05-06 17:33:14 +0000858 if (Mnemonic.empty())
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000859 PrintFatalError(TheDef->getLoc(),
Jim Grosbach8e27c962012-05-06 17:33:14 +0000860 "Missing instruction mnemonic");
Devang Patel63faf822012-01-07 01:33:34 +0000861 // FIXME : Check and raise an error if it is a register.
Devang Patelb78307f2012-01-07 01:22:23 +0000862 if (Mnemonic[0] == '$')
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000863 PrintFatalError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000864 "Invalid instruction mnemonic '" + Mnemonic.str() + "'!");
Bob Wilson828295b2011-01-26 21:26:19 +0000865
Chris Lattnerd19ec052010-11-02 17:30:52 +0000866 // Remove the first operand, it is tracked in the mnemonic field.
867 AsmOperands.erase(AsmOperands.begin());
868}
869
Jim Grosbach8caecde2012-04-19 17:52:32 +0000870bool MatchableInfo::validate(StringRef CommentDelimiter, bool Hack) const {
Chris Lattner22bc5c42010-11-01 05:06:45 +0000871 // Reject matchables with no .s string.
Chris Lattner5bc93872010-11-01 04:34:44 +0000872 if (AsmString.empty())
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000873 PrintFatalError(TheDef->getLoc(), "instruction with empty asm string");
Bob Wilson828295b2011-01-26 21:26:19 +0000874
Chris Lattner22bc5c42010-11-01 05:06:45 +0000875 // Reject any matchables with a newline in them, they should be marked
Chris Lattner5bc93872010-11-01 04:34:44 +0000876 // isCodeGenOnly if they are pseudo instructions.
877 if (AsmString.find('\n') != std::string::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000878 PrintFatalError(TheDef->getLoc(),
Chris Lattner5bc93872010-11-01 04:34:44 +0000879 "multiline instruction is not valid for the asmparser, "
880 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000881
Chris Lattner4164f6b2010-11-01 04:44:29 +0000882 // Remove comments from the asm string. We know that the asmstring only
883 // has one line.
884 if (!CommentDelimiter.empty() &&
885 StringRef(AsmString).find(CommentDelimiter) != StringRef::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000886 PrintFatalError(TheDef->getLoc(),
Chris Lattner4164f6b2010-11-01 04:44:29 +0000887 "asmstring for instruction has comment character in it, "
888 "mark it isCodeGenOnly");
Bob Wilson828295b2011-01-26 21:26:19 +0000889
Chris Lattner22bc5c42010-11-01 05:06:45 +0000890 // Reject matchables with operand modifiers, these aren't something we can
Bob Wilson906bc362011-01-20 18:38:07 +0000891 // handle, the target should be refactored to use operands instead of
892 // modifiers.
Chris Lattner5bc93872010-11-01 04:34:44 +0000893 //
894 // Also, check for instructions which reference the operand multiple times;
895 // this implies a constraint we would not honor.
896 std::set<std::string> OperandNames;
Chris Lattnerd19ec052010-11-02 17:30:52 +0000897 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
898 StringRef Tok = AsmOperands[i].Token;
899 if (Tok[0] == '$' && Tok.find(':') != StringRef::npos)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000900 PrintFatalError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000901 "matchable with operand modifier '" + Tok.str() +
Chris Lattner5bc93872010-11-01 04:34:44 +0000902 "' not supported by asm matcher. Mark isCodeGenOnly!");
Bob Wilson828295b2011-01-26 21:26:19 +0000903
Chris Lattner22bc5c42010-11-01 05:06:45 +0000904 // Verify that any operand is only mentioned once.
Chris Lattnerd51257a2010-11-02 23:18:43 +0000905 // We reject aliases and ignore instructions for now.
Chris Lattnerd19ec052010-11-02 17:30:52 +0000906 if (Tok[0] == '$' && !OperandNames.insert(Tok).second) {
Chris Lattner22bc5c42010-11-01 05:06:45 +0000907 if (!Hack)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000908 PrintFatalError(TheDef->getLoc(),
Chris Lattnerd19ec052010-11-02 17:30:52 +0000909 "ERROR: matchable with tied operand '" + Tok.str() +
Chris Lattner22bc5c42010-11-01 05:06:45 +0000910 "' can never be matched!");
911 // FIXME: Should reject these. The ARM backend hits this with $lane in a
912 // bunch of instructions. It is unclear what the right answer is.
Chris Lattner5bc93872010-11-01 04:34:44 +0000913 DEBUG({
Chris Lattner5abd1eb2010-11-06 06:43:11 +0000914 errs() << "warning: '" << TheDef->getName() << "': "
Chris Lattner22bc5c42010-11-01 05:06:45 +0000915 << "ignoring instruction with tied operand '"
Chris Lattnerd19ec052010-11-02 17:30:52 +0000916 << Tok.str() << "'\n";
Chris Lattner5bc93872010-11-01 04:34:44 +0000917 });
918 return false;
919 }
920 }
Bob Wilson828295b2011-01-26 21:26:19 +0000921
Chris Lattner5bc93872010-11-01 04:34:44 +0000922 return true;
923}
924
Jim Grosbachf35307c2012-01-24 21:06:59 +0000925/// extractSingletonRegisterForAsmOperand - Extract singleton register,
Devang Pateld06b01c2012-01-09 21:30:46 +0000926/// if present, from specified token.
Devang Patel63faf822012-01-07 01:33:34 +0000927void MatchableInfo::
Jim Grosbachf35307c2012-01-24 21:06:59 +0000928extractSingletonRegisterForAsmOperand(unsigned OperandNo,
Devang Pateld06b01c2012-01-09 21:30:46 +0000929 const AsmMatcherInfo &Info,
Jim Grosbach11fc6462012-04-11 21:02:33 +0000930 std::string &RegisterPrefix) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000931 StringRef Tok = AsmOperands[OperandNo].Token;
Devang Patel63faf822012-01-07 01:33:34 +0000932 if (RegisterPrefix.empty()) {
Devang Pateld06b01c2012-01-09 21:30:46 +0000933 std::string LoweredTok = Tok.lower();
934 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(LoweredTok))
935 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Devang Patel63faf822012-01-07 01:33:34 +0000936 return;
Jim Grosbachf35307c2012-01-24 21:06:59 +0000937 }
Bob Wilson828295b2011-01-26 21:26:19 +0000938
Devang Patel63faf822012-01-07 01:33:34 +0000939 if (!Tok.startswith(RegisterPrefix))
940 return;
941
942 StringRef RegName = Tok.substr(RegisterPrefix.size());
Chris Lattnerec6f0962010-11-02 18:10:06 +0000943 if (const CodeGenRegister *Reg = Info.Target.getRegisterByName(RegName))
Devang Pateld06b01c2012-01-09 21:30:46 +0000944 AsmOperands[OperandNo].SingletonReg = Reg->TheDef;
Bob Wilson828295b2011-01-26 21:26:19 +0000945
Chris Lattner1de88232010-11-01 01:47:07 +0000946 // If there is no register prefix (i.e. "%" in "%eax"), then this may
947 // be some random non-register token, just ignore it.
Devang Patel63faf822012-01-07 01:33:34 +0000948 return;
Chris Lattner02bcbc92010-11-01 01:37:30 +0000949}
950
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000951static std::string getEnumNameForToken(StringRef Str) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000952 std::string Res;
Jim Grosbacha7c78222010-10-29 22:13:48 +0000953
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000954 for (StringRef::iterator it = Str.begin(), ie = Str.end(); it != ie; ++it) {
955 switch (*it) {
956 case '*': Res += "_STAR_"; break;
957 case '%': Res += "_PCT_"; break;
958 case ':': Res += "_COLON_"; break;
Bill Wendlingbd9c77b2010-11-18 23:36:54 +0000959 case '!': Res += "_EXCLAIM_"; break;
Bill Wendling0ef755d2011-01-22 09:44:32 +0000960 case '.': Res += "_DOT_"; break;
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000961 default:
Chris Lattner39ee0362010-10-31 19:10:56 +0000962 if (isalnum(*it))
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000963 Res += *it;
Chris Lattner39ee0362010-10-31 19:10:56 +0000964 else
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000965 Res += "_" + utostr((unsigned) *it) + "_";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000966 }
967 }
968
969 return Res;
970}
971
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000972ClassInfo *AsmMatcherInfo::getTokenClass(StringRef Token) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000973 ClassInfo *&Entry = TokenClasses[Token];
Jim Grosbacha7c78222010-10-29 22:13:48 +0000974
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000975 if (!Entry) {
976 Entry = new ClassInfo();
977 Entry->Kind = ClassInfo::Token;
Daniel Dunbar6745d422009-08-09 05:18:30 +0000978 Entry->ClassName = "Token";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000979 Entry->Name = "MCK_" + getEnumNameForToken(Token);
980 Entry->ValueName = Token;
981 Entry->PredicateMethod = "<invalid>";
982 Entry->RenderMethod = "<invalid>";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +0000983 Entry->ParserMethod = "";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +0000984 Entry->DiagnosticType = "";
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000985 Classes.push_back(Entry);
986 }
987
988 return Entry;
989}
990
991ClassInfo *
Bob Wilsona49c7df2011-01-26 19:44:55 +0000992AsmMatcherInfo::getOperandClass(const CGIOperandList::OperandInfo &OI,
993 int SubOpIdx) {
994 Record *Rec = OI.Rec;
995 if (SubOpIdx != -1)
Sean Silva3f7b7f82012-10-10 20:24:47 +0000996 Rec = cast<DefInit>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
Jim Grosbach48c1f842011-10-28 22:32:53 +0000997 return getOperandClass(Rec, SubOpIdx);
998}
Bob Wilsona49c7df2011-01-26 19:44:55 +0000999
Jim Grosbach48c1f842011-10-28 22:32:53 +00001000ClassInfo *
1001AsmMatcherInfo::getOperandClass(Record *Rec, int SubOpIdx) {
Owen Andersonbea6f612011-06-27 21:06:21 +00001002 if (Rec->isSubClassOf("RegisterOperand")) {
1003 // RegisterOperand may have an associated ParserMatchClass. If it does,
1004 // use it, else just fall back to the underlying register class.
1005 const RecordVal *R = Rec->getValue("ParserMatchClass");
1006 if (R == 0 || R->getValue() == 0)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001007 PrintFatalError("Record `" + Rec->getName() +
1008 "' does not have a ParserMatchClass!\n");
Owen Andersonbea6f612011-06-27 21:06:21 +00001009
Sean Silva6cfc8062012-10-10 20:24:43 +00001010 if (DefInit *DI= dyn_cast<DefInit>(R->getValue())) {
Owen Andersonbea6f612011-06-27 21:06:21 +00001011 Record *MatchClass = DI->getDef();
1012 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
1013 return CI;
1014 }
1015
1016 // No custom match class. Just use the register class.
1017 Record *ClassRec = Rec->getValueAsDef("RegClass");
1018 if (!ClassRec)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001019 PrintFatalError(Rec->getLoc(), "RegisterOperand `" + Rec->getName() +
Owen Andersonbea6f612011-06-27 21:06:21 +00001020 "' has no associated register class!\n");
1021 if (ClassInfo *CI = RegisterClassClasses[ClassRec])
1022 return CI;
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001023 PrintFatalError(Rec->getLoc(), "register class has no class info!");
Owen Andersonbea6f612011-06-27 21:06:21 +00001024 }
1025
1026
Bob Wilsona49c7df2011-01-26 19:44:55 +00001027 if (Rec->isSubClassOf("RegisterClass")) {
1028 if (ClassInfo *CI = RegisterClassClasses[Rec])
Chris Lattnerec6f0962010-11-02 18:10:06 +00001029 return CI;
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001030 PrintFatalError(Rec->getLoc(), "register class has no class info!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001031 }
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001032
Jim Grosbacha562dc72012-09-12 17:40:25 +00001033 if (!Rec->isSubClassOf("Operand"))
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001034 PrintFatalError(Rec->getLoc(), "Operand `" + Rec->getName() +
Jim Grosbacha562dc72012-09-12 17:40:25 +00001035 "' does not derive from class Operand!\n");
Bob Wilsona49c7df2011-01-26 19:44:55 +00001036 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
Chris Lattnerec6f0962010-11-02 18:10:06 +00001037 if (ClassInfo *CI = AsmOperandClasses[MatchClass])
1038 return CI;
Daniel Dunbar338825c2009-08-10 18:41:10 +00001039
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001040 PrintFatalError(Rec->getLoc(), "operand has no match class!");
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001041}
1042
Chris Lattner1de88232010-11-01 01:47:07 +00001043void AsmMatcherInfo::
Jim Grosbach8caecde2012-04-19 17:52:32 +00001044buildRegisterClasses(SmallPtrSet<Record*, 16> &SingletonRegisters) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001045 const std::vector<CodeGenRegister*> &Registers =
1046 Target.getRegBank().getRegisters();
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001047 ArrayRef<CodeGenRegisterClass*> RegClassList =
1048 Target.getRegBank().getRegClasses();
Daniel Dunbar338825c2009-08-10 18:41:10 +00001049
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001050 // The register sets used for matching.
1051 std::set< std::set<Record*> > RegisterSets;
1052
Jim Grosbacha7c78222010-10-29 22:13:48 +00001053 // Gather the defined sets.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001054 for (ArrayRef<CodeGenRegisterClass*>::const_iterator it =
Chris Lattnerec6f0962010-11-02 18:10:06 +00001055 RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it)
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001056 RegisterSets.insert(std::set<Record*>(
1057 (*it)->getOrder().begin(), (*it)->getOrder().end()));
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001058
1059 // Add any required singleton sets.
Chris Lattner1de88232010-11-01 01:47:07 +00001060 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1061 ie = SingletonRegisters.end(); it != ie; ++it) {
1062 Record *Rec = *it;
1063 RegisterSets.insert(std::set<Record*>(&Rec, &Rec + 1));
1064 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001065
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001066 // Introduce derived sets where necessary (when a register does not determine
1067 // a unique register set class), and build the mapping of registers to the set
1068 // they should classify to.
1069 std::map<Record*, std::set<Record*> > RegisterMap;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001070 for (std::vector<CodeGenRegister*>::const_iterator it = Registers.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001071 ie = Registers.end(); it != ie; ++it) {
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00001072 const CodeGenRegister &CGR = **it;
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001073 // Compute the intersection of all sets containing this register.
1074 std::set<Record*> ContainingSet;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001075
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001076 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1077 ie = RegisterSets.end(); it != ie; ++it) {
1078 if (!it->count(CGR.TheDef))
1079 continue;
1080
1081 if (ContainingSet.empty()) {
1082 ContainingSet = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +00001083 continue;
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001084 }
Bob Wilson828295b2011-01-26 21:26:19 +00001085
Chris Lattnerec6f0962010-11-02 18:10:06 +00001086 std::set<Record*> Tmp;
1087 std::swap(Tmp, ContainingSet);
1088 std::insert_iterator< std::set<Record*> > II(ContainingSet,
1089 ContainingSet.begin());
1090 std::set_intersection(Tmp.begin(), Tmp.end(), it->begin(), it->end(), II);
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001091 }
1092
1093 if (!ContainingSet.empty()) {
1094 RegisterSets.insert(ContainingSet);
1095 RegisterMap.insert(std::make_pair(CGR.TheDef, ContainingSet));
1096 }
1097 }
1098
1099 // Construct the register classes.
1100 std::map<std::set<Record*>, ClassInfo*> RegisterSetClasses;
1101 unsigned Index = 0;
1102 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1103 ie = RegisterSets.end(); it != ie; ++it, ++Index) {
1104 ClassInfo *CI = new ClassInfo();
1105 CI->Kind = ClassInfo::RegisterClass0 + Index;
1106 CI->ClassName = "Reg" + utostr(Index);
1107 CI->Name = "MCK_Reg" + utostr(Index);
1108 CI->ValueName = "";
1109 CI->PredicateMethod = ""; // unused
1110 CI->RenderMethod = "addRegOperands";
Daniel Dunbar8409bfb2009-08-11 20:10:07 +00001111 CI->Registers = *it;
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00001112 // FIXME: diagnostic type.
1113 CI->DiagnosticType = "";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001114 Classes.push_back(CI);
1115 RegisterSetClasses.insert(std::make_pair(*it, CI));
1116 }
1117
1118 // Find the superclasses; we could compute only the subgroup lattice edges,
1119 // but there isn't really a point.
1120 for (std::set< std::set<Record*> >::iterator it = RegisterSets.begin(),
1121 ie = RegisterSets.end(); it != ie; ++it) {
1122 ClassInfo *CI = RegisterSetClasses[*it];
1123 for (std::set< std::set<Record*> >::iterator it2 = RegisterSets.begin(),
1124 ie2 = RegisterSets.end(); it2 != ie2; ++it2)
Jim Grosbacha7c78222010-10-29 22:13:48 +00001125 if (*it != *it2 &&
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001126 std::includes(it2->begin(), it2->end(), it->begin(), it->end()))
1127 CI->SuperClasses.push_back(RegisterSetClasses[*it2]);
1128 }
1129
1130 // Name the register classes which correspond to a user defined RegisterClass.
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001131 for (ArrayRef<CodeGenRegisterClass*>::const_iterator
Chris Lattnerec6f0962010-11-02 18:10:06 +00001132 it = RegClassList.begin(), ie = RegClassList.end(); it != ie; ++it) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001133 const CodeGenRegisterClass &RC = **it;
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001134 // Def will be NULL for non-user defined register classes.
1135 Record *Def = RC.getDef();
1136 if (!Def)
1137 continue;
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001138 ClassInfo *CI = RegisterSetClasses[std::set<Record*>(RC.getOrder().begin(),
1139 RC.getOrder().end())];
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001140 if (CI->ValueName.empty()) {
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001141 CI->ClassName = RC.getName();
1142 CI->Name = "MCK_" + RC.getName();
1143 CI->ValueName = RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001144 } else
Jakob Stoklund Olesen29f018c2011-09-29 22:28:37 +00001145 CI->ValueName = CI->ValueName + "," + RC.getName();
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001146
Jakob Stoklund Olesen6fea31e2011-10-04 15:28:08 +00001147 RegisterClassClasses.insert(std::make_pair(Def, CI));
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001148 }
1149
1150 // Populate the map for individual registers.
1151 for (std::map<Record*, std::set<Record*> >::iterator it = RegisterMap.begin(),
1152 ie = RegisterMap.end(); it != ie; ++it)
Chris Lattnerec6f0962010-11-02 18:10:06 +00001153 RegisterClasses[it->first] = RegisterSetClasses[it->second];
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001154
1155 // Name the register classes which correspond to singleton registers.
Chris Lattner1de88232010-11-01 01:47:07 +00001156 for (SmallPtrSet<Record*, 16>::iterator it = SingletonRegisters.begin(),
1157 ie = SingletonRegisters.end(); it != ie; ++it) {
1158 Record *Rec = *it;
Chris Lattnerec6f0962010-11-02 18:10:06 +00001159 ClassInfo *CI = RegisterClasses[Rec];
Chris Lattner1de88232010-11-01 01:47:07 +00001160 assert(CI && "Missing singleton register class info!");
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001161
Chris Lattner1de88232010-11-01 01:47:07 +00001162 if (CI->ValueName.empty()) {
1163 CI->ClassName = Rec->getName();
1164 CI->Name = "MCK_" + Rec->getName();
1165 CI->ValueName = Rec->getName();
1166 } else
1167 CI->ValueName = CI->ValueName + "," + Rec->getName();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001168 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001169}
1170
Jim Grosbach8caecde2012-04-19 17:52:32 +00001171void AsmMatcherInfo::buildOperandClasses() {
Chris Lattnere66b7eb2010-11-01 23:57:23 +00001172 std::vector<Record*> AsmOperands =
1173 Records.getAllDerivedDefinitions("AsmOperandClass");
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001174
1175 // Pre-populate AsmOperandClasses map.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001176 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001177 ie = AsmOperands.end(); it != ie; ++it)
1178 AsmOperandClasses[*it] = new ClassInfo();
1179
Daniel Dunbar338825c2009-08-10 18:41:10 +00001180 unsigned Index = 0;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001181 for (std::vector<Record*>::iterator it = AsmOperands.begin(),
Daniel Dunbar338825c2009-08-10 18:41:10 +00001182 ie = AsmOperands.end(); it != ie; ++it, ++Index) {
Daniel Dunbara2f5e002010-01-30 01:02:37 +00001183 ClassInfo *CI = AsmOperandClasses[*it];
Daniel Dunbar338825c2009-08-10 18:41:10 +00001184 CI->Kind = ClassInfo::UserClass0 + Index;
1185
David Greene05bce0b2011-07-29 22:43:06 +00001186 ListInit *Supers = (*it)->getValueAsListInit("SuperClasses");
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001187 for (unsigned i = 0, e = Supers->getSize(); i != e; ++i) {
Sean Silva6cfc8062012-10-10 20:24:43 +00001188 DefInit *DI = dyn_cast<DefInit>(Supers->getElement(i));
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +00001189 if (!DI) {
1190 PrintError((*it)->getLoc(), "Invalid super class reference!");
1191 continue;
1192 }
1193
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001194 ClassInfo *SC = AsmOperandClasses[DI->getDef()];
1195 if (!SC)
Daniel Dunbar338825c2009-08-10 18:41:10 +00001196 PrintError((*it)->getLoc(), "Invalid super class reference!");
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001197 else
1198 CI->SuperClasses.push_back(SC);
Daniel Dunbar338825c2009-08-10 18:41:10 +00001199 }
1200 CI->ClassName = (*it)->getValueAsString("Name");
1201 CI->Name = "MCK_" + CI->ClassName;
1202 CI->ValueName = (*it)->getName();
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001203
1204 // Get or construct the predicate method name.
David Greene05bce0b2011-07-29 22:43:06 +00001205 Init *PMName = (*it)->getValueInit("PredicateMethod");
Sean Silva6cfc8062012-10-10 20:24:43 +00001206 if (StringInit *SI = dyn_cast<StringInit>(PMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001207 CI->PredicateMethod = SI->getValue();
1208 } else {
Sean Silva3f7b7f82012-10-10 20:24:47 +00001209 assert(isa<UnsetInit>(PMName) && "Unexpected PredicateMethod field!");
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001210 CI->PredicateMethod = "is" + CI->ClassName;
1211 }
1212
1213 // Get or construct the render method name.
David Greene05bce0b2011-07-29 22:43:06 +00001214 Init *RMName = (*it)->getValueInit("RenderMethod");
Sean Silva6cfc8062012-10-10 20:24:43 +00001215 if (StringInit *SI = dyn_cast<StringInit>(RMName)) {
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001216 CI->RenderMethod = SI->getValue();
1217 } else {
Sean Silva3f7b7f82012-10-10 20:24:47 +00001218 assert(isa<UnsetInit>(RMName) && "Unexpected RenderMethod field!");
Daniel Dunbar5c468e32009-08-10 21:00:45 +00001219 CI->RenderMethod = "add" + CI->ClassName + "Operands";
1220 }
1221
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001222 // Get the parse method name or leave it as empty.
David Greene05bce0b2011-07-29 22:43:06 +00001223 Init *PRMName = (*it)->getValueInit("ParserMethod");
Sean Silva6cfc8062012-10-10 20:24:43 +00001224 if (StringInit *SI = dyn_cast<StringInit>(PRMName))
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001225 CI->ParserMethod = SI->getValue();
1226
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00001227 // Get the diagnostic type or leave it as empty.
1228 // Get the parse method name or leave it as empty.
1229 Init *DiagnosticType = (*it)->getValueInit("DiagnosticType");
Sean Silva6cfc8062012-10-10 20:24:43 +00001230 if (StringInit *SI = dyn_cast<StringInit>(DiagnosticType))
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00001231 CI->DiagnosticType = SI->getValue();
1232
Daniel Dunbar338825c2009-08-10 18:41:10 +00001233 AsmOperandClasses[*it] = CI;
1234 Classes.push_back(CI);
1235 }
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001236}
1237
Bob Wilson828295b2011-01-26 21:26:19 +00001238AsmMatcherInfo::AsmMatcherInfo(Record *asmParser,
1239 CodeGenTarget &target,
Chris Lattner9c6b60e2010-12-15 04:48:22 +00001240 RecordKeeper &records)
Devang Patel63faf822012-01-07 01:33:34 +00001241 : Records(records), AsmParser(asmParser), Target(target) {
Daniel Dunbar59fc42d2009-08-11 20:59:47 +00001242}
1243
Jim Grosbach8caecde2012-04-19 17:52:32 +00001244/// buildOperandMatchInfo - Build the necessary information to handle user
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001245/// defined operand parsing methods.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001246void AsmMatcherInfo::buildOperandMatchInfo() {
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001247
Jim Grosbachd4824fc2012-04-18 23:46:25 +00001248 /// Map containing a mask with all operands indices that can be found for
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001249 /// that class inside a instruction.
Sean Silvab2df6102012-09-19 01:47:03 +00001250 typedef std::map<ClassInfo*, unsigned, LessClassInfoPtr> OpClassMaskTy;
1251 OpClassMaskTy OpClassMask;
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001252
1253 for (std::vector<MatchableInfo*>::const_iterator it =
1254 Matchables.begin(), ie = Matchables.end();
1255 it != ie; ++it) {
1256 MatchableInfo &II = **it;
1257 OpClassMask.clear();
1258
1259 // Keep track of all operands of this instructions which belong to the
1260 // same class.
1261 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
1262 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
1263 if (Op.Class->ParserMethod.empty())
1264 continue;
1265 unsigned &OperandMask = OpClassMask[Op.Class];
1266 OperandMask |= (1 << i);
1267 }
1268
1269 // Generate operand match info for each mnemonic/operand class pair.
Sean Silvab2df6102012-09-19 01:47:03 +00001270 for (OpClassMaskTy::iterator iit = OpClassMask.begin(),
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001271 iie = OpClassMask.end(); iit != iie; ++iit) {
1272 unsigned OpMask = iit->second;
1273 ClassInfo *CI = iit->first;
Jim Grosbach8caecde2012-04-19 17:52:32 +00001274 OperandMatchInfo.push_back(OperandMatchEntry::create(&II, CI, OpMask));
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00001275 }
1276 }
1277}
1278
Jim Grosbach8caecde2012-04-19 17:52:32 +00001279void AsmMatcherInfo::buildInfo() {
Chris Lattner0aed1e72010-10-30 20:07:57 +00001280 // Build information about all of the AssemblerPredicates.
1281 std::vector<Record*> AllPredicates =
1282 Records.getAllDerivedDefinitions("Predicate");
1283 for (unsigned i = 0, e = AllPredicates.size(); i != e; ++i) {
1284 Record *Pred = AllPredicates[i];
1285 // Ignore predicates that are not intended for the assembler.
1286 if (!Pred->getValueAsBit("AssemblerMatcherPredicate"))
1287 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00001288
Chris Lattner4164f6b2010-11-01 04:44:29 +00001289 if (Pred->getName().empty())
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001290 PrintFatalError(Pred->getLoc(), "Predicate has no name!");
Bob Wilson828295b2011-01-26 21:26:19 +00001291
Chris Lattner0aed1e72010-10-30 20:07:57 +00001292 unsigned FeatureNo = SubtargetFeatures.size();
1293 SubtargetFeatures[Pred] = new SubtargetFeatureInfo(Pred, FeatureNo);
1294 assert(FeatureNo < 32 && "Too many subtarget features!");
1295 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00001296
Chris Lattner39ee0362010-10-31 19:10:56 +00001297 // Parse the instructions; we need to do this first so that we can gather the
1298 // singleton register classes.
Chris Lattner1de88232010-11-01 01:47:07 +00001299 SmallPtrSet<Record*, 16> SingletonRegisters;
Devang Patel0dbcada2012-01-09 19:13:28 +00001300 unsigned VariantCount = Target.getAsmParserVariantCount();
1301 for (unsigned VC = 0; VC != VariantCount; ++VC) {
1302 Record *AsmVariant = Target.getAsmParserVariant(VC);
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001303 std::string CommentDelimiter =
1304 AsmVariant->getValueAsString("CommentDelimiter");
Devang Patel0dbcada2012-01-09 19:13:28 +00001305 std::string RegisterPrefix = AsmVariant->getValueAsString("RegisterPrefix");
1306 int AsmVariantNo = AsmVariant->getValueAsInt("Variant");
Jim Grosbachf35307c2012-01-24 21:06:59 +00001307
Devang Patel0dbcada2012-01-09 19:13:28 +00001308 for (CodeGenTarget::inst_iterator I = Target.inst_begin(),
Jim Grosbach11fc6462012-04-11 21:02:33 +00001309 E = Target.inst_end(); I != E; ++I) {
Devang Patel0dbcada2012-01-09 19:13:28 +00001310 const CodeGenInstruction &CGI = **I;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001311
Devang Patel0dbcada2012-01-09 19:13:28 +00001312 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1313 // filter the set of instructions we consider.
1314 if (!StringRef(CGI.TheDef->getName()).startswith(MatchPrefix))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001315 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001316
Devang Patel0dbcada2012-01-09 19:13:28 +00001317 // Ignore "codegen only" instructions.
1318 if (CGI.TheDef->getValueAsBit("isCodeGenOnly"))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001319 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001320
Devang Patel0dbcada2012-01-09 19:13:28 +00001321 // Validate the operand list to ensure we can handle this instruction.
1322 for (unsigned i = 0, e = CGI.Operands.size(); i != e; ++i) {
Jim Grosbach11fc6462012-04-11 21:02:33 +00001323 const CGIOperandList::OperandInfo &OI = CGI.Operands[i];
1324
1325 // Validate tied operands.
1326 if (OI.getTiedRegister() != -1) {
1327 // If we have a tied operand that consists of multiple MCOperands,
1328 // reject it. We reject aliases and ignore instructions for now.
1329 if (OI.MINumOperands != 1) {
1330 // FIXME: Should reject these. The ARM backend hits this with $lane
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001331 // in a bunch of instructions. The right answer is unclear.
Jim Grosbach11fc6462012-04-11 21:02:33 +00001332 DEBUG({
1333 errs() << "warning: '" << CGI.TheDef->getName() << "': "
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001334 << "ignoring instruction with multi-operand tied operand '"
1335 << OI.Name << "'\n";
Jim Grosbach11fc6462012-04-11 21:02:33 +00001336 });
1337 continue;
1338 }
1339 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001340 }
Jim Grosbachf35307c2012-01-24 21:06:59 +00001341
Devang Patel0dbcada2012-01-09 19:13:28 +00001342 OwningPtr<MatchableInfo> II(new MatchableInfo(CGI));
Jim Grosbachf35307c2012-01-24 21:06:59 +00001343
Jim Grosbach8caecde2012-04-19 17:52:32 +00001344 II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001345
Devang Patel0dbcada2012-01-09 19:13:28 +00001346 // Ignore instructions which shouldn't be matched and diagnose invalid
1347 // instruction definitions with an error.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001348 if (!II->validate(CommentDelimiter, true))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001349 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001350
Devang Patel0dbcada2012-01-09 19:13:28 +00001351 // Ignore "Int_*" and "*_Int" instructions, which are internal aliases.
1352 //
1353 // FIXME: This is a total hack.
1354 if (StringRef(II->TheDef->getName()).startswith("Int_") ||
Jim Grosbach11fc6462012-04-11 21:02:33 +00001355 StringRef(II->TheDef->getName()).endswith("_Int"))
1356 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001357
Devang Patel0dbcada2012-01-09 19:13:28 +00001358 Matchables.push_back(II.take());
Chris Lattner1d13bda2010-11-04 00:43:46 +00001359 }
Jim Grosbachf35307c2012-01-24 21:06:59 +00001360
Devang Patel0dbcada2012-01-09 19:13:28 +00001361 // Parse all of the InstAlias definitions and stick them in the list of
1362 // matchables.
1363 std::vector<Record*> AllInstAliases =
1364 Records.getAllDerivedDefinitions("InstAlias");
1365 for (unsigned i = 0, e = AllInstAliases.size(); i != e; ++i) {
1366 CodeGenInstAlias *Alias = new CodeGenInstAlias(AllInstAliases[i], Target);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001367
Devang Patel0dbcada2012-01-09 19:13:28 +00001368 // If the tblgen -match-prefix option is specified (for tblgen hackers),
1369 // filter the set of instruction aliases we consider, based on the target
1370 // instruction.
Jim Grosbach65da6fc2012-04-17 00:01:04 +00001371 if (!StringRef(Alias->ResultInst->TheDef->getName())
1372 .startswith( MatchPrefix))
Jim Grosbach11fc6462012-04-11 21:02:33 +00001373 continue;
Jim Grosbachf35307c2012-01-24 21:06:59 +00001374
Devang Patel0dbcada2012-01-09 19:13:28 +00001375 OwningPtr<MatchableInfo> II(new MatchableInfo(Alias));
Jim Grosbachf35307c2012-01-24 21:06:59 +00001376
Jim Grosbach8caecde2012-04-19 17:52:32 +00001377 II->initialize(*this, SingletonRegisters, AsmVariantNo, RegisterPrefix);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001378
Devang Patel0dbcada2012-01-09 19:13:28 +00001379 // Validate the alias definitions.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001380 II->validate(CommentDelimiter, false);
Jim Grosbachf35307c2012-01-24 21:06:59 +00001381
Devang Patel0dbcada2012-01-09 19:13:28 +00001382 Matchables.push_back(II.take());
1383 }
Chris Lattnerc76e80d2010-11-01 04:05:41 +00001384 }
Chris Lattnerc240bb02010-11-01 04:03:32 +00001385
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001386 // Build info for the register classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001387 buildRegisterClasses(SingletonRegisters);
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001388
1389 // Build info for the user defined assembly operand classes.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001390 buildOperandClasses();
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001391
Chris Lattner0bb780c2010-11-04 00:57:06 +00001392 // Build the information about matchables, now that we have fully formed
1393 // classes.
Jim Grosbachc1922c72012-04-19 23:59:23 +00001394 std::vector<MatchableInfo*> NewMatchables;
Chris Lattner22bc5c42010-11-01 05:06:45 +00001395 for (std::vector<MatchableInfo*>::iterator it = Matchables.begin(),
1396 ie = Matchables.end(); it != ie; ++it) {
1397 MatchableInfo *II = *it;
Jim Grosbacha7c78222010-10-29 22:13:48 +00001398
Chris Lattnere206fcf2010-09-06 21:01:37 +00001399 // Parse the tokens after the mnemonic.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001400 // Note: buildInstructionOperandReference may insert new AsmOperands, so
Bob Wilsona49c7df2011-01-26 19:44:55 +00001401 // don't precompute the loop bound.
1402 for (unsigned i = 0; i != II->AsmOperands.size(); ++i) {
Chris Lattnerc0b14a22010-11-03 19:47:34 +00001403 MatchableInfo::AsmOperand &Op = II->AsmOperands[i];
Chris Lattnerd19ec052010-11-02 17:30:52 +00001404 StringRef Token = Op.Token;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001405
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001406 // Check for singleton registers.
Devang Patel63faf822012-01-07 01:33:34 +00001407 if (Record *RegRecord = II->AsmOperands[i].SingletonReg) {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001408 Op.Class = RegisterClasses[RegRecord];
Chris Lattner02bcbc92010-11-01 01:37:30 +00001409 assert(Op.Class && Op.Class->Registers.size() == 1 &&
1410 "Unexpected class for singleton register");
Chris Lattner02bcbc92010-11-01 01:37:30 +00001411 continue;
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00001412 }
1413
Daniel Dunbar20927f22009-08-07 08:26:05 +00001414 // Check for simple tokens.
1415 if (Token[0] != '$') {
Chris Lattnerd19ec052010-11-02 17:30:52 +00001416 Op.Class = getTokenClass(Token);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001417 continue;
1418 }
1419
Chris Lattner7ad31472010-11-06 22:06:03 +00001420 if (Token.size() > 1 && isdigit(Token[1])) {
1421 Op.Class = getTokenClass(Token);
1422 continue;
1423 }
Bob Wilson828295b2011-01-26 21:26:19 +00001424
Chris Lattnerc07bd402010-11-04 02:11:18 +00001425 // Otherwise this is an operand reference.
Chris Lattner5f4280c2010-11-04 01:58:23 +00001426 StringRef OperandName;
1427 if (Token[1] == '{')
1428 OperandName = Token.substr(2, Token.size() - 3);
1429 else
1430 OperandName = Token.substr(1);
Bob Wilson828295b2011-01-26 21:26:19 +00001431
Chris Lattnerc07bd402010-11-04 02:11:18 +00001432 if (II->DefRec.is<const CodeGenInstruction*>())
Jim Grosbach8caecde2012-04-19 17:52:32 +00001433 buildInstructionOperandReference(II, OperandName, i);
Chris Lattnerc07bd402010-11-04 02:11:18 +00001434 else
Jim Grosbach8caecde2012-04-19 17:52:32 +00001435 buildAliasOperandReference(II, OperandName, Op);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001436 }
Bob Wilson828295b2011-01-26 21:26:19 +00001437
Jim Grosbachc1922c72012-04-19 23:59:23 +00001438 if (II->DefRec.is<const CodeGenInstruction*>()) {
Jim Grosbach8caecde2012-04-19 17:52:32 +00001439 II->buildInstructionResultOperands();
Jim Grosbachc1922c72012-04-19 23:59:23 +00001440 // If the instruction has a two-operand alias, build up the
1441 // matchable here. We'll add them in bulk at the end to avoid
1442 // confusing this loop.
1443 std::string Constraint =
1444 II->TheDef->getValueAsString("TwoOperandAliasConstraint");
1445 if (Constraint != "") {
1446 // Start by making a copy of the original matchable.
1447 OwningPtr<MatchableInfo> AliasII(new MatchableInfo(*II));
1448
1449 // Adjust it to be a two-operand alias.
1450 AliasII->formTwoOperandAlias(Constraint);
1451
1452 // Add the alias to the matchables list.
1453 NewMatchables.push_back(AliasII.take());
1454 }
1455 } else
Jim Grosbach8caecde2012-04-19 17:52:32 +00001456 II->buildAliasResultOperands();
Daniel Dunbar20927f22009-08-07 08:26:05 +00001457 }
Jim Grosbachc1922c72012-04-19 23:59:23 +00001458 if (!NewMatchables.empty())
1459 Matchables.insert(Matchables.end(), NewMatchables.begin(),
1460 NewMatchables.end());
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001461
Jim Grosbacha66512e2011-12-06 23:43:54 +00001462 // Process token alias definitions and set up the associated superclass
1463 // information.
1464 std::vector<Record*> AllTokenAliases =
1465 Records.getAllDerivedDefinitions("TokenAlias");
1466 for (unsigned i = 0, e = AllTokenAliases.size(); i != e; ++i) {
1467 Record *Rec = AllTokenAliases[i];
1468 ClassInfo *FromClass = getTokenClass(Rec->getValueAsString("FromToken"));
1469 ClassInfo *ToClass = getTokenClass(Rec->getValueAsString("ToToken"));
Jim Grosbach67cd20d2012-04-17 21:23:52 +00001470 if (FromClass == ToClass)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001471 PrintFatalError(Rec->getLoc(),
Jim Grosbach67cd20d2012-04-17 21:23:52 +00001472 "error: Destination value identical to source value.");
Jim Grosbacha66512e2011-12-06 23:43:54 +00001473 FromClass->SuperClasses.push_back(ToClass);
1474 }
1475
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001476 // Reorder classes so that classes precede super classes.
Daniel Dunbar5fe63382009-08-09 07:20:21 +00001477 std::sort(Classes.begin(), Classes.end(), less_ptr<ClassInfo>());
Daniel Dunbar20927f22009-08-07 08:26:05 +00001478}
1479
Jim Grosbach8caecde2012-04-19 17:52:32 +00001480/// buildInstructionOperandReference - The specified operand is a reference to a
Chris Lattner0bb780c2010-11-04 00:57:06 +00001481/// named operand such as $src. Resolve the Class and OperandInfo pointers.
1482void AsmMatcherInfo::
Jim Grosbach8caecde2012-04-19 17:52:32 +00001483buildInstructionOperandReference(MatchableInfo *II,
Chris Lattner5f4280c2010-11-04 01:58:23 +00001484 StringRef OperandName,
Bob Wilsona49c7df2011-01-26 19:44:55 +00001485 unsigned AsmOpIdx) {
Chris Lattnerc07bd402010-11-04 02:11:18 +00001486 const CodeGenInstruction &CGI = *II->DefRec.get<const CodeGenInstruction*>();
1487 const CGIOperandList &Operands = CGI.Operands;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001488 MatchableInfo::AsmOperand *Op = &II->AsmOperands[AsmOpIdx];
Bob Wilson828295b2011-01-26 21:26:19 +00001489
Chris Lattner662e5a32010-11-06 07:14:44 +00001490 // Map this token to an operand.
Chris Lattner0bb780c2010-11-04 00:57:06 +00001491 unsigned Idx;
1492 if (!Operands.hasOperandNamed(OperandName, Idx))
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001493 PrintFatalError(II->TheDef->getLoc(), "error: unable to find operand: '" +
Chris Lattner0bb780c2010-11-04 00:57:06 +00001494 OperandName.str() + "'");
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001495
Bob Wilsona49c7df2011-01-26 19:44:55 +00001496 // If the instruction operand has multiple suboperands, but the parser
1497 // match class for the asm operand is still the default "ImmAsmOperand",
1498 // then handle each suboperand separately.
1499 if (Op->SubOpIdx == -1 && Operands[Idx].MINumOperands > 1) {
1500 Record *Rec = Operands[Idx].Rec;
1501 assert(Rec->isSubClassOf("Operand") && "Unexpected operand!");
1502 Record *MatchClass = Rec->getValueAsDef("ParserMatchClass");
1503 if (MatchClass && MatchClass->getValueAsString("Name") == "Imm") {
1504 // Insert remaining suboperands after AsmOpIdx in II->AsmOperands.
1505 StringRef Token = Op->Token; // save this in case Op gets moved
1506 for (unsigned SI = 1, SE = Operands[Idx].MINumOperands; SI != SE; ++SI) {
1507 MatchableInfo::AsmOperand NewAsmOp(Token);
1508 NewAsmOp.SubOpIdx = SI;
1509 II->AsmOperands.insert(II->AsmOperands.begin()+AsmOpIdx+SI, NewAsmOp);
1510 }
1511 // Replace Op with first suboperand.
1512 Op = &II->AsmOperands[AsmOpIdx]; // update the pointer in case it moved
1513 Op->SubOpIdx = 0;
1514 }
1515 }
1516
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001517 // Set up the operand class.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001518 Op->Class = getOperandClass(Operands[Idx], Op->SubOpIdx);
Chris Lattnerba3b5b62010-11-04 01:55:23 +00001519
1520 // If the named operand is tied, canonicalize it to the untied operand.
1521 // For example, something like:
1522 // (outs GPR:$dst), (ins GPR:$src)
1523 // with an asmstring of
1524 // "inc $src"
1525 // we want to canonicalize to:
1526 // "inc $dst"
1527 // so that we know how to provide the $dst operand when filling in the result.
1528 int OITied = Operands[Idx].getTiedRegister();
Chris Lattner0bb780c2010-11-04 00:57:06 +00001529 if (OITied != -1) {
1530 // The tied operand index is an MIOperand index, find the operand that
1531 // contains it.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001532 std::pair<unsigned, unsigned> Idx = Operands.getSubOperandNumber(OITied);
1533 OperandName = Operands[Idx.first].Name;
1534 Op->SubOpIdx = Idx.second;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001535 }
Bob Wilson828295b2011-01-26 21:26:19 +00001536
Bob Wilsona49c7df2011-01-26 19:44:55 +00001537 Op->SrcOpName = OperandName;
Chris Lattner0bb780c2010-11-04 00:57:06 +00001538}
1539
Jim Grosbach8caecde2012-04-19 17:52:32 +00001540/// buildAliasOperandReference - When parsing an operand reference out of the
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001541/// matching string (e.g. "movsx $src, $dst"), determine what the class of the
1542/// operand reference is by looking it up in the result pattern definition.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001543void AsmMatcherInfo::buildAliasOperandReference(MatchableInfo *II,
Chris Lattnerc07bd402010-11-04 02:11:18 +00001544 StringRef OperandName,
1545 MatchableInfo::AsmOperand &Op) {
1546 const CodeGenInstAlias &CGA = *II->DefRec.get<const CodeGenInstAlias*>();
Bob Wilson828295b2011-01-26 21:26:19 +00001547
Chris Lattnerc07bd402010-11-04 02:11:18 +00001548 // Set up the operand class.
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001549 for (unsigned i = 0, e = CGA.ResultOperands.size(); i != e; ++i)
Chris Lattner98c870f2010-11-06 19:25:43 +00001550 if (CGA.ResultOperands[i].isRecord() &&
1551 CGA.ResultOperands[i].getName() == OperandName) {
Chris Lattner662e5a32010-11-06 07:14:44 +00001552 // It's safe to go with the first one we find, because CodeGenInstAlias
1553 // validates that all operands with the same name have the same record.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001554 Op.SubOpIdx = CGA.ResultInstOperandIndex[i].second;
Jim Grosbach48c1f842011-10-28 22:32:53 +00001555 // Use the match class from the Alias definition, not the
1556 // destination instruction, as we may have an immediate that's
1557 // being munged by the match class.
1558 Op.Class = getOperandClass(CGA.ResultOperands[i].getRecord(),
Bob Wilsona49c7df2011-01-26 19:44:55 +00001559 Op.SubOpIdx);
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001560 Op.SrcOpName = OperandName;
1561 return;
Chris Lattnerc07bd402010-11-04 02:11:18 +00001562 }
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001563
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001564 PrintFatalError(II->TheDef->getLoc(), "error: unable to find operand: '" +
Chris Lattner3f2c8e42010-11-06 07:06:09 +00001565 OperandName.str() + "'");
Chris Lattnerc07bd402010-11-04 02:11:18 +00001566}
1567
Jim Grosbach8caecde2012-04-19 17:52:32 +00001568void MatchableInfo::buildInstructionResultOperands() {
Chris Lattner662e5a32010-11-06 07:14:44 +00001569 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001570
Chris Lattner662e5a32010-11-06 07:14:44 +00001571 // Loop over all operands of the result instruction, determining how to
1572 // populate them.
1573 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
1574 const CGIOperandList::OperandInfo &OpInfo = ResultInst->Operands[i];
Chris Lattner567820c2010-11-04 01:42:59 +00001575
1576 // If this is a tied operand, just copy from the previously handled operand.
1577 int TiedOp = OpInfo.getTiedRegister();
1578 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001579 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner567820c2010-11-04 01:42:59 +00001580 continue;
1581 }
Bob Wilson828295b2011-01-26 21:26:19 +00001582
Bob Wilsona49c7df2011-01-26 19:44:55 +00001583 // Find out what operand from the asmparser this MCInst operand comes from.
Jim Grosbach8caecde2012-04-19 17:52:32 +00001584 int SrcOperand = findAsmOperandNamed(OpInfo.Name);
Bob Wilsona49c7df2011-01-26 19:44:55 +00001585 if (OpInfo.Name.empty() || SrcOperand == -1)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001586 PrintFatalError(TheDef->getLoc(), "Instruction '" +
Bob Wilsona49c7df2011-01-26 19:44:55 +00001587 TheDef->getName() + "' has operand '" + OpInfo.Name +
1588 "' that doesn't appear in asm string!");
Chris Lattner567820c2010-11-04 01:42:59 +00001589
Bob Wilsona49c7df2011-01-26 19:44:55 +00001590 // Check if the one AsmOperand populates the entire operand.
1591 unsigned NumOperands = OpInfo.MINumOperands;
1592 if (AsmOperands[SrcOperand].SubOpIdx == -1) {
1593 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand, NumOperands));
Chris Lattner1d13bda2010-11-04 00:43:46 +00001594 continue;
1595 }
Bob Wilsona49c7df2011-01-26 19:44:55 +00001596
1597 // Add a separate ResOperand for each suboperand.
1598 for (unsigned AI = 0; AI < NumOperands; ++AI) {
1599 assert(AsmOperands[SrcOperand+AI].SubOpIdx == (int)AI &&
1600 AsmOperands[SrcOperand+AI].SrcOpName == OpInfo.Name &&
1601 "unexpected AsmOperands for suboperands");
1602 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand + AI, 1));
1603 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001604 }
1605}
1606
Jim Grosbach8caecde2012-04-19 17:52:32 +00001607void MatchableInfo::buildAliasResultOperands() {
Chris Lattner41409852010-11-06 07:31:43 +00001608 const CodeGenInstAlias &CGA = *DefRec.get<const CodeGenInstAlias*>();
1609 const CodeGenInstruction *ResultInst = getResultInst();
Bob Wilson828295b2011-01-26 21:26:19 +00001610
Chris Lattner41409852010-11-06 07:31:43 +00001611 // Loop over all operands of the result instruction, determining how to
1612 // populate them.
1613 unsigned AliasOpNo = 0;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001614 unsigned LastOpNo = CGA.ResultInstOperandIndex.size();
Chris Lattner41409852010-11-06 07:31:43 +00001615 for (unsigned i = 0, e = ResultInst->Operands.size(); i != e; ++i) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001616 const CGIOperandList::OperandInfo *OpInfo = &ResultInst->Operands[i];
Bob Wilson828295b2011-01-26 21:26:19 +00001617
Chris Lattner41409852010-11-06 07:31:43 +00001618 // If this is a tied operand, just copy from the previously handled operand.
Bob Wilsona49c7df2011-01-26 19:44:55 +00001619 int TiedOp = OpInfo->getTiedRegister();
Chris Lattner41409852010-11-06 07:31:43 +00001620 if (TiedOp != -1) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001621 ResOperands.push_back(ResOperand::getTiedOp(TiedOp));
Chris Lattner90fd7972010-11-06 19:57:21 +00001622 continue;
1623 }
1624
Bob Wilsona49c7df2011-01-26 19:44:55 +00001625 // Handle all the suboperands for this operand.
1626 const std::string &OpName = OpInfo->Name;
1627 for ( ; AliasOpNo < LastOpNo &&
1628 CGA.ResultInstOperandIndex[AliasOpNo].first == i; ++AliasOpNo) {
1629 int SubIdx = CGA.ResultInstOperandIndex[AliasOpNo].second;
1630
1631 // Find out what operand from the asmparser that this MCInst operand
1632 // comes from.
1633 switch (CGA.ResultOperands[AliasOpNo].Kind) {
Bob Wilsona49c7df2011-01-26 19:44:55 +00001634 case CodeGenInstAlias::ResultOperand::K_Record: {
1635 StringRef Name = CGA.ResultOperands[AliasOpNo].getName();
Jim Grosbach8caecde2012-04-19 17:52:32 +00001636 int SrcOperand = findAsmOperand(Name, SubIdx);
Bob Wilsona49c7df2011-01-26 19:44:55 +00001637 if (SrcOperand == -1)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001638 PrintFatalError(TheDef->getLoc(), "Instruction '" +
Bob Wilsona49c7df2011-01-26 19:44:55 +00001639 TheDef->getName() + "' has operand '" + OpName +
1640 "' that doesn't appear in asm string!");
1641 unsigned NumOperands = (SubIdx == -1 ? OpInfo->MINumOperands : 1);
1642 ResOperands.push_back(ResOperand::getRenderedOp(SrcOperand,
1643 NumOperands));
1644 break;
1645 }
1646 case CodeGenInstAlias::ResultOperand::K_Imm: {
1647 int64_t ImmVal = CGA.ResultOperands[AliasOpNo].getImm();
1648 ResOperands.push_back(ResOperand::getImmOp(ImmVal));
1649 break;
1650 }
1651 case CodeGenInstAlias::ResultOperand::K_Reg: {
1652 Record *Reg = CGA.ResultOperands[AliasOpNo].getRegister();
1653 ResOperands.push_back(ResOperand::getRegOp(Reg));
1654 break;
1655 }
1656 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001657 }
Chris Lattner41409852010-11-06 07:31:43 +00001658 }
1659}
Chris Lattner1d13bda2010-11-04 00:43:46 +00001660
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001661static unsigned getConverterOperandID(const std::string &Name,
1662 SetVector<std::string> &Table,
1663 bool &IsNew) {
1664 IsNew = Table.insert(Name);
1665
1666 unsigned ID = IsNew ? Table.size() - 1 :
1667 std::find(Table.begin(), Table.end(), Name) - Table.begin();
1668
1669 assert(ID < Table.size());
1670
1671 return ID;
1672}
1673
1674
Chad Rosier22685872012-10-01 23:45:51 +00001675static void emitConvertFuncs(CodeGenTarget &Target, StringRef ClassName,
1676 std::vector<MatchableInfo*> &Infos,
1677 raw_ostream &OS) {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001678 SetVector<std::string> OperandConversionKinds;
1679 SetVector<std::string> InstructionConversionKinds;
1680 std::vector<std::vector<uint8_t> > ConversionTable;
1681 size_t MaxRowLength = 2; // minimum is custom converter plus terminator.
Jim Grosbacha7c78222010-10-29 22:13:48 +00001682
Chris Lattner98986712010-01-14 22:21:20 +00001683 // TargetOperandClass - This is the target's operand class, like X86Operand.
1684 std::string TargetOperandClass = Target.getName() + "Operand";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001685
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001686 // Write the convert function to a separate stream, so we can drop it after
1687 // the enum. We'll build up the conversion handlers for the individual
1688 // operand types opportunistically as we encounter them.
1689 std::string ConvertFnBody;
1690 raw_string_ostream CvtOS(ConvertFnBody);
1691 // Start the unified conversion function.
Chad Rosier359956d2012-08-31 00:03:31 +00001692 CvtOS << "void " << Target.getName() << ClassName << "::\n"
Chad Rosier90e11f82012-09-05 01:02:38 +00001693 << "convertToMCInst(unsigned Kind, MCInst &Inst, "
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001694 << "unsigned Opcode,\n"
Chad Rosier04508c62012-08-30 21:46:00 +00001695 << " const SmallVectorImpl<MCParsedAsmOperand*"
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001696 << "> &Operands) {\n"
Chad Rosier359956d2012-08-31 00:03:31 +00001697 << " assert(Kind < CVT_NUM_SIGNATURES && \"Invalid signature!\");\n"
Craig Topperb198f5c2012-09-18 01:41:49 +00001698 << " const uint8_t *Converter = ConversionTable[Kind];\n"
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001699 << " Inst.setOpcode(Opcode);\n"
Craig Topperb198f5c2012-09-18 01:41:49 +00001700 << " for (const uint8_t *p = Converter; *p; p+= 2) {\n"
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001701 << " switch (*p) {\n"
1702 << " default: llvm_unreachable(\"invalid conversion entry!\");\n"
1703 << " case CVT_Reg:\n"
1704 << " static_cast<" << TargetOperandClass
1705 << "*>(Operands[*(p + 1)])->addRegOperands(Inst, 1);\n"
1706 << " break;\n"
1707 << " case CVT_Tied:\n"
1708 << " Inst.addOperand(Inst.getOperand(*(p + 1)));\n"
1709 << " break;\n";
1710
Chad Rosier62316fa2012-08-30 17:59:25 +00001711 std::string OperandFnBody;
1712 raw_string_ostream OpOS(OperandFnBody);
1713 // Start the operand number lookup function.
Chad Rosier22685872012-10-01 23:45:51 +00001714 OpOS << "void " << Target.getName() << ClassName << "::\n"
1715 << "convertToMapAndConstraints(unsigned Kind,\n";
Chad Rosierc69bb702012-10-02 00:25:57 +00001716 OpOS.indent(27);
Chad Rosier6e006d32012-10-12 22:53:36 +00001717 OpOS << "const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {\n"
Chad Rosier359956d2012-08-31 00:03:31 +00001718 << " assert(Kind < CVT_NUM_SIGNATURES && \"Invalid signature!\");\n"
Chad Rosier22685872012-10-01 23:45:51 +00001719 << " unsigned NumMCOperands = 0;\n"
Craig Topperb198f5c2012-09-18 01:41:49 +00001720 << " const uint8_t *Converter = ConversionTable[Kind];\n"
1721 << " for (const uint8_t *p = Converter; *p; p+= 2) {\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001722 << " switch (*p) {\n"
1723 << " default: llvm_unreachable(\"invalid conversion entry!\");\n"
1724 << " case CVT_Reg:\n"
Chad Rosier6e006d32012-10-12 22:53:36 +00001725 << " Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1726 << " Operands[*(p + 1)]->setConstraint(\"m\");\n"
1727 << " ++NumMCOperands;\n"
1728 << " break;\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001729 << " case CVT_Tied:\n"
Chad Rosier22685872012-10-01 23:45:51 +00001730 << " ++NumMCOperands;\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001731 << " break;\n";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001732
1733 // Pre-populate the operand conversion kinds with the standard always
1734 // available entries.
1735 OperandConversionKinds.insert("CVT_Done");
1736 OperandConversionKinds.insert("CVT_Reg");
1737 OperandConversionKinds.insert("CVT_Tied");
1738 enum { CVT_Done, CVT_Reg, CVT_Tied };
1739
Chris Lattner22bc5c42010-11-01 05:06:45 +00001740 for (std::vector<MatchableInfo*>::const_iterator it = Infos.begin(),
Daniel Dunbar20927f22009-08-07 08:26:05 +00001741 ie = Infos.end(); it != ie; ++it) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00001742 MatchableInfo &II = **it;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001743
Daniel Dunbarcf120672011-02-04 17:12:15 +00001744 // Check if we have a custom match function.
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001745 std::string AsmMatchConverter =
1746 II.getResultInst()->TheDef->getValueAsString("AsmMatchConverter");
Daniel Dunbarcf120672011-02-04 17:12:15 +00001747 if (!AsmMatchConverter.empty()) {
Daniel Dunbar27b83d42011-04-01 20:23:52 +00001748 std::string Signature = "ConvertCustom_" + AsmMatchConverter;
Daniel Dunbarcf120672011-02-04 17:12:15 +00001749 II.ConversionFnKind = Signature;
1750
1751 // Check if we have already generated this signature.
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001752 if (!InstructionConversionKinds.insert(Signature))
Daniel Dunbarcf120672011-02-04 17:12:15 +00001753 continue;
1754
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001755 // Remember this converter for the kind enum.
1756 unsigned KindID = OperandConversionKinds.size();
1757 OperandConversionKinds.insert("CVT_" + AsmMatchConverter);
Daniel Dunbarcf120672011-02-04 17:12:15 +00001758
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001759 // Add the converter row for this instruction.
1760 ConversionTable.push_back(std::vector<uint8_t>());
1761 ConversionTable.back().push_back(KindID);
1762 ConversionTable.back().push_back(CVT_Done);
1763
1764 // Add the handler to the conversion driver function.
1765 CvtOS << " case CVT_" << AsmMatchConverter << ":\n"
Chad Rosier756d2cc2012-08-31 22:12:31 +00001766 << " " << AsmMatchConverter << "(Inst, Operands);\n"
Chad Rosier359956d2012-08-31 00:03:31 +00001767 << " break;\n";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001768
Chad Rosier62316fa2012-08-30 17:59:25 +00001769 // FIXME: Handle the operand number lookup for custom match functions.
Daniel Dunbarcf120672011-02-04 17:12:15 +00001770 continue;
1771 }
1772
Daniel Dunbar20927f22009-08-07 08:26:05 +00001773 // Build the conversion function signature.
1774 std::string Signature = "Convert";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001775
1776 std::vector<uint8_t> ConversionRow;
Bob Wilson828295b2011-01-26 21:26:19 +00001777
Chris Lattnerdda855d2010-11-02 21:49:44 +00001778 // Compute the convert enum and the case body.
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001779 MaxRowLength = std::max(MaxRowLength, II.ResOperands.size()*2 + 1 );
1780
Chris Lattner1d13bda2010-11-04 00:43:46 +00001781 for (unsigned i = 0, e = II.ResOperands.size(); i != e; ++i) {
1782 const MatchableInfo::ResOperand &OpInfo = II.ResOperands[i];
Jim Grosbacha7c78222010-10-29 22:13:48 +00001783
Chris Lattner1d13bda2010-11-04 00:43:46 +00001784 // Generate code to populate each result operand.
1785 switch (OpInfo.Kind) {
Chris Lattner1d13bda2010-11-04 00:43:46 +00001786 case MatchableInfo::ResOperand::RenderAsmOperand: {
1787 // This comes from something we parsed.
1788 MatchableInfo::AsmOperand &Op = II.AsmOperands[OpInfo.AsmOperandNum];
Bob Wilson828295b2011-01-26 21:26:19 +00001789
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001790 // Registers are always converted the same, don't duplicate the
1791 // conversion function based on them.
Chris Lattner9b0d4bf2010-11-02 22:55:03 +00001792 Signature += "__";
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001793 std::string Class;
1794 Class = Op.Class->isRegisterClass() ? "Reg" : Op.Class->ClassName;
1795 Signature += Class;
Bob Wilsona49c7df2011-01-26 19:44:55 +00001796 Signature += utostr(OpInfo.MINumOperands);
Chris Lattner1d13bda2010-11-04 00:43:46 +00001797 Signature += "_" + itostr(OpInfo.AsmOperandNum);
Bob Wilson828295b2011-01-26 21:26:19 +00001798
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001799 // Add the conversion kind, if necessary, and get the associated ID
1800 // the index of its entry in the vector).
1801 std::string Name = "CVT_" + (Op.Class->isRegisterClass() ? "Reg" :
1802 Op.Class->RenderMethod);
1803
1804 bool IsNewConverter = false;
1805 unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1806 IsNewConverter);
1807
1808 // Add the operand entry to the instruction kind conversion row.
1809 ConversionRow.push_back(ID);
1810 ConversionRow.push_back(OpInfo.AsmOperandNum + 1);
1811
1812 if (!IsNewConverter)
1813 break;
1814
1815 // This is a new operand kind. Add a handler for it to the
1816 // converter driver.
1817 CvtOS << " case " << Name << ":\n"
1818 << " static_cast<" << TargetOperandClass
1819 << "*>(Operands[*(p + 1)])->"
1820 << Op.Class->RenderMethod << "(Inst, " << OpInfo.MINumOperands
1821 << ");\n"
1822 << " break;\n";
Chad Rosier62316fa2012-08-30 17:59:25 +00001823
1824 // Add a handler for the operand number lookup.
1825 OpOS << " case " << Name << ":\n"
Chad Rosier6e006d32012-10-12 22:53:36 +00001826 << " Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1827 << " Operands[*(p + 1)]->setConstraint(\"m\");\n"
Chad Rosier22685872012-10-01 23:45:51 +00001828 << " NumMCOperands += " << OpInfo.MINumOperands << ";\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001829 << " 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 Rosier6e006d32012-10-12 22:53:36 +00001865 << " Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1866 << " Operands[*(p + 1)]->setConstraint(\"\");\n"
Chad Rosier22685872012-10-01 23:45:51 +00001867 << " ++NumMCOperands;\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001868 << " break;\n";
Chris Lattner98c870f2010-11-06 19:25:43 +00001869 break;
1870 }
Chris Lattner90fd7972010-11-06 19:57:21 +00001871 case MatchableInfo::ResOperand::RegOperand: {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001872 std::string Reg, Name;
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001873 if (OpInfo.Register == 0) {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001874 Name = "reg0";
1875 Reg = "0";
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001876 } else {
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001877 Reg = getQualifiedName(OpInfo.Register);
1878 Name = "reg" + OpInfo.Register->getName();
Bob Wilsondc1a2bd2011-01-14 22:58:09 +00001879 }
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001880 Signature += "__" + Name;
1881 Name = "CVT_" + Name;
1882 bool IsNewConverter = false;
1883 unsigned ID = getConverterOperandID(Name, OperandConversionKinds,
1884 IsNewConverter);
1885 // Add the operand entry to the instruction kind conversion row.
1886 ConversionRow.push_back(ID);
1887 ConversionRow.push_back(0);
1888
1889 if (!IsNewConverter)
1890 break;
1891 CvtOS << " case " << Name << ":\n"
1892 << " Inst.addOperand(MCOperand::CreateReg(" << Reg << "));\n"
1893 << " break;\n";
Chad Rosier62316fa2012-08-30 17:59:25 +00001894
1895 OpOS << " case " << Name << ":\n"
Chad Rosier6e006d32012-10-12 22:53:36 +00001896 << " Operands[*(p + 1)]->setMCOperandNum(NumMCOperands);\n"
1897 << " Operands[*(p + 1)]->setConstraint(\"m\");\n"
Chad Rosier22685872012-10-01 23:45:51 +00001898 << " ++NumMCOperands;\n"
Chad Rosier62316fa2012-08-30 17:59:25 +00001899 << " break;\n";
Bob Wilson828295b2011-01-26 21:26:19 +00001900 }
Chris Lattner1d13bda2010-11-04 00:43:46 +00001901 }
Daniel Dunbar20927f22009-08-07 08:26:05 +00001902 }
Bob Wilson828295b2011-01-26 21:26:19 +00001903
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001904 // If there were no operands, add to the signature to that effect
1905 if (Signature == "Convert")
1906 Signature += "_NoOperands";
1907
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001908 II.ConversionFnKind = Signature;
Daniel Dunbar20927f22009-08-07 08:26:05 +00001909
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001910 // Save the signature. If we already have it, don't add a new row
1911 // to the table.
1912 if (!InstructionConversionKinds.insert(Signature))
Daniel Dunbar20927f22009-08-07 08:26:05 +00001913 continue;
1914
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001915 // Add the row to the table.
1916 ConversionTable.push_back(ConversionRow);
Daniel Dunbar20927f22009-08-07 08:26:05 +00001917 }
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001918
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001919 // Finish up the converter driver function.
Chad Rosierad2d3e62012-09-03 17:39:57 +00001920 CvtOS << " }\n }\n}\n\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001921
Chad Rosier62316fa2012-08-30 17:59:25 +00001922 // Finish up the operand number lookup function.
Chad Rosier22685872012-10-01 23:45:51 +00001923 OpOS << " }\n }\n}\n\n";
Chad Rosier62316fa2012-08-30 17:59:25 +00001924
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001925 OS << "namespace {\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001926
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001927 // Output the operand conversion kind enum.
1928 OS << "enum OperatorConversionKind {\n";
1929 for (unsigned i = 0, e = OperandConversionKinds.size(); i != e; ++i)
1930 OS << " " << OperandConversionKinds[i] << ",\n";
1931 OS << " CVT_NUM_CONVERTERS\n";
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001932 OS << "};\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001933
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001934 // Output the instruction conversion kind enum.
1935 OS << "enum InstructionConversionKind {\n";
1936 for (SetVector<std::string>::const_iterator
1937 i = InstructionConversionKinds.begin(),
1938 e = InstructionConversionKinds.end(); i != e; ++i)
1939 OS << " " << *i << ",\n";
1940 OS << " CVT_NUM_SIGNATURES\n";
1941 OS << "};\n\n";
1942
1943
1944 OS << "} // end anonymous namespace\n\n";
1945
1946 // Output the conversion table.
Craig Topperb198f5c2012-09-18 01:41:49 +00001947 OS << "static const uint8_t ConversionTable[CVT_NUM_SIGNATURES]["
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001948 << MaxRowLength << "] = {\n";
1949
1950 for (unsigned Row = 0, ERow = ConversionTable.size(); Row != ERow; ++Row) {
1951 assert(ConversionTable[Row].size() % 2 == 0 && "bad conversion row!");
1952 OS << " // " << InstructionConversionKinds[Row] << "\n";
1953 OS << " { ";
1954 for (unsigned i = 0, e = ConversionTable[Row].size(); i != e; i += 2)
1955 OS << OperandConversionKinds[ConversionTable[Row][i]] << ", "
1956 << (unsigned)(ConversionTable[Row][i + 1]) << ", ";
1957 OS << "CVT_Done },\n";
1958 }
1959
1960 OS << "};\n\n";
1961
1962 // Spit out the conversion driver function.
Daniel Dunbarb7479c02009-08-08 05:24:34 +00001963 OS << CvtOS.str();
Jim Grosbachc8f267f2012-08-22 01:06:23 +00001964
Chad Rosier62316fa2012-08-30 17:59:25 +00001965 // Spit out the operand number lookup function.
1966 OS << OpOS.str();
Daniel Dunbara027d222009-07-31 02:32:59 +00001967}
1968
Jim Grosbach8caecde2012-04-19 17:52:32 +00001969/// emitMatchClassEnumeration - Emit the enumeration for match class kinds.
1970static void emitMatchClassEnumeration(CodeGenTarget &Target,
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001971 std::vector<ClassInfo*> &Infos,
1972 raw_ostream &OS) {
1973 OS << "namespace {\n\n";
1974
1975 OS << "/// MatchClassKind - The kinds of classes which participate in\n"
1976 << "/// instruction matching.\n";
1977 OS << "enum MatchClassKind {\n";
1978 OS << " InvalidMatchClass = 0,\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00001979 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001980 ie = Infos.end(); it != ie; ++it) {
1981 ClassInfo &CI = **it;
1982 OS << " " << CI.Name << ", // ";
1983 if (CI.Kind == ClassInfo::Token) {
1984 OS << "'" << CI.ValueName << "'\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00001985 } else if (CI.isRegisterClass()) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00001986 if (!CI.ValueName.empty())
1987 OS << "register class '" << CI.ValueName << "'\n";
1988 else
1989 OS << "derived register class\n";
1990 } else {
1991 OS << "user defined class '" << CI.ValueName << "'\n";
1992 }
1993 }
1994 OS << " NumMatchClassKinds\n";
1995 OS << "};\n\n";
1996
1997 OS << "}\n\n";
1998}
1999
Jim Grosbach8caecde2012-04-19 17:52:32 +00002000/// emitValidateOperandClass - Emit the function to validate an operand class.
2001static void emitValidateOperandClass(AsmMatcherInfo &Info,
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002002 raw_ostream &OS) {
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002003 OS << "static unsigned validateOperandClass(MCParsedAsmOperand *GOp, "
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002004 << "MatchClassKind Kind) {\n";
2005 OS << " " << Info.Target.getName() << "Operand &Operand = *("
Chris Lattner02bcbc92010-11-01 01:37:30 +00002006 << Info.Target.getName() << "Operand*)GOp;\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002007
Kevin Enderby89381832011-07-15 18:30:43 +00002008 // The InvalidMatchClass is not to match any operand.
2009 OS << " if (Kind == InvalidMatchClass)\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002010 OS << " return MCTargetAsmParser::Match_InvalidOperand;\n\n";
Kevin Enderby89381832011-07-15 18:30:43 +00002011
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002012 // Check for Token operands first.
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002013 // FIXME: Use a more specific diagnostic type.
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002014 OS << " if (Operand.isToken())\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002015 OS << " return isSubclass(matchTokenString(Operand.getToken()), Kind) ?\n"
2016 << " MCTargetAsmParser::Match_Success :\n"
2017 << " MCTargetAsmParser::Match_InvalidOperand;\n\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002018
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002019 // Check the user classes. We don't care what order since we're only
2020 // actually matching against one of them.
Jim Grosbacha7c78222010-10-29 22:13:48 +00002021 for (std::vector<ClassInfo*>::iterator it = Info.Classes.begin(),
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002022 ie = Info.Classes.end(); it != ie; ++it) {
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002023 ClassInfo &CI = **it;
2024
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002025 if (!CI.isUserClass())
2026 continue;
Bob Wilson828295b2011-01-26 21:26:19 +00002027
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002028 OS << " // '" << CI.ClassName << "' class\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002029 OS << " if (Kind == " << CI.Name << ") {\n";
2030 OS << " if (Operand." << CI.PredicateMethod << "())\n";
2031 OS << " return MCTargetAsmParser::Match_Success;\n";
2032 if (!CI.DiagnosticType.empty())
2033 OS << " return " << Info.Target.getName() << "AsmParser::Match_"
2034 << CI.DiagnosticType << ";\n";
Daniel Dunbarea6408f2009-08-11 02:59:53 +00002035 OS << " }\n\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002036 }
Bob Wilson828295b2011-01-26 21:26:19 +00002037
Owen Andersonb885dc82012-07-16 23:20:09 +00002038 // Check for register operands, including sub-classes.
2039 OS << " if (Operand.isReg()) {\n";
2040 OS << " MatchClassKind OpKind;\n";
2041 OS << " switch (Operand.getReg()) {\n";
2042 OS << " default: OpKind = InvalidMatchClass; break;\n";
Sean Silvadecfdf52012-09-19 01:47:01 +00002043 for (AsmMatcherInfo::RegisterClassesTy::iterator
Owen Andersonb885dc82012-07-16 23:20:09 +00002044 it = Info.RegisterClasses.begin(), ie = Info.RegisterClasses.end();
2045 it != ie; ++it)
2046 OS << " case " << Info.Target.getName() << "::"
2047 << it->first->getName() << ": OpKind = " << it->second->Name
2048 << "; break;\n";
2049 OS << " }\n";
2050 OS << " return isSubclass(OpKind, Kind) ? "
2051 << "MCTargetAsmParser::Match_Success :\n "
2052 << " MCTargetAsmParser::Match_InvalidOperand;\n }\n\n";
2053
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002054 // Generic fallthrough match failure case for operands that don't have
2055 // specialized diagnostic types.
2056 OS << " return MCTargetAsmParser::Match_InvalidOperand;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002057 OS << "}\n\n";
2058}
2059
Jim Grosbach8caecde2012-04-19 17:52:32 +00002060/// emitIsSubclass - Emit the subclass predicate function.
2061static void emitIsSubclass(CodeGenTarget &Target,
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002062 std::vector<ClassInfo*> &Infos,
2063 raw_ostream &OS) {
Dmitri Gribenko4e0ae442012-09-15 20:22:05 +00002064 OS << "/// isSubclass - Compute whether \\p A is a subclass of \\p B.\n";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002065 OS << "static bool isSubclass(MatchClassKind A, MatchClassKind B) {\n";
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002066 OS << " if (A == B)\n";
2067 OS << " return true;\n\n";
2068
2069 OS << " switch (A) {\n";
2070 OS << " default:\n";
2071 OS << " return false;\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002072 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002073 ie = Infos.end(); it != ie; ++it) {
2074 ClassInfo &A = **it;
2075
Jim Grosbacha66512e2011-12-06 23:43:54 +00002076 std::vector<StringRef> SuperClasses;
2077 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
2078 ie = Infos.end(); it != ie; ++it) {
2079 ClassInfo &B = **it;
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002080
Jim Grosbacha66512e2011-12-06 23:43:54 +00002081 if (&A != &B && A.isSubsetOf(B))
2082 SuperClasses.push_back(B.Name);
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002083 }
Jim Grosbacha66512e2011-12-06 23:43:54 +00002084
2085 if (SuperClasses.empty())
2086 continue;
2087
2088 OS << "\n case " << A.Name << ":\n";
2089
2090 if (SuperClasses.size() == 1) {
2091 OS << " return B == " << SuperClasses.back() << ";\n";
2092 continue;
2093 }
2094
2095 OS << " switch (B) {\n";
2096 OS << " default: return false;\n";
2097 for (unsigned i = 0, e = SuperClasses.size(); i != e; ++i)
2098 OS << " case " << SuperClasses[i] << ": return true;\n";
2099 OS << " }\n";
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002100 }
2101 OS << " }\n";
2102 OS << "}\n\n";
2103}
2104
Jim Grosbach8caecde2012-04-19 17:52:32 +00002105/// emitMatchTokenString - Emit the function to match a token string to the
Daniel Dunbar245f0582009-08-08 21:22:41 +00002106/// appropriate match class value.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002107static void emitMatchTokenString(CodeGenTarget &Target,
Daniel Dunbar245f0582009-08-08 21:22:41 +00002108 std::vector<ClassInfo*> &Infos,
2109 raw_ostream &OS) {
2110 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00002111 std::vector<StringMatcher::StringPair> Matches;
Jim Grosbacha7c78222010-10-29 22:13:48 +00002112 for (std::vector<ClassInfo*>::iterator it = Infos.begin(),
Daniel Dunbar245f0582009-08-08 21:22:41 +00002113 ie = Infos.end(); it != ie; ++it) {
2114 ClassInfo &CI = **it;
2115
2116 if (CI.Kind == ClassInfo::Token)
Chris Lattner5845e5c2010-09-06 02:01:51 +00002117 Matches.push_back(StringMatcher::StringPair(CI.ValueName,
2118 "return " + CI.Name + ";"));
Daniel Dunbar245f0582009-08-08 21:22:41 +00002119 }
2120
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002121 OS << "static MatchClassKind matchTokenString(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00002122
Chris Lattner5845e5c2010-09-06 02:01:51 +00002123 StringMatcher("Name", Matches, OS).Emit();
Daniel Dunbar245f0582009-08-08 21:22:41 +00002124
2125 OS << " return InvalidMatchClass;\n";
2126 OS << "}\n\n";
2127}
Chris Lattner70add882009-08-08 20:02:57 +00002128
Jim Grosbach8caecde2012-04-19 17:52:32 +00002129/// emitMatchRegisterName - Emit the function to match a string to the target
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002130/// specific register enum.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002131static void emitMatchRegisterName(CodeGenTarget &Target, Record *AsmParser,
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002132 raw_ostream &OS) {
Daniel Dunbar245f0582009-08-08 21:22:41 +00002133 // Construct the match list.
Chris Lattner5845e5c2010-09-06 02:01:51 +00002134 std::vector<StringMatcher::StringPair> Matches;
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00002135 const std::vector<CodeGenRegister*> &Regs =
2136 Target.getRegBank().getRegisters();
2137 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
2138 const CodeGenRegister *Reg = Regs[i];
2139 if (Reg->TheDef->getValueAsString("AsmName").empty())
Daniel Dunbar22be5222009-07-17 18:51:11 +00002140 continue;
2141
Chris Lattner5845e5c2010-09-06 02:01:51 +00002142 Matches.push_back(StringMatcher::StringPair(
Jakob Stoklund Olesenabdbc842011-06-18 04:26:06 +00002143 Reg->TheDef->getValueAsString("AsmName"),
2144 "return " + utostr(Reg->EnumValue) + ";"));
Daniel Dunbar22be5222009-07-17 18:51:11 +00002145 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002146
Chris Lattnerb8d6e982010-02-09 00:34:28 +00002147 OS << "static unsigned MatchRegisterName(StringRef Name) {\n";
Daniel Dunbar245f0582009-08-08 21:22:41 +00002148
Chris Lattner5845e5c2010-09-06 02:01:51 +00002149 StringMatcher("Name", Matches, OS).Emit();
Jim Grosbacha7c78222010-10-29 22:13:48 +00002150
Daniel Dunbar245f0582009-08-08 21:22:41 +00002151 OS << " return 0;\n";
Daniel Dunbar20927f22009-08-07 08:26:05 +00002152 OS << "}\n\n";
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002153}
Daniel Dunbara027d222009-07-31 02:32:59 +00002154
Jim Grosbach8caecde2012-04-19 17:52:32 +00002155/// emitSubtargetFeatureFlagEnumeration - Emit the subtarget feature flag
Daniel Dunbar54074b52010-07-19 05:44:09 +00002156/// definitions.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002157static void emitSubtargetFeatureFlagEnumeration(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00002158 raw_ostream &OS) {
2159 OS << "// Flags for subtarget features that participate in "
2160 << "instruction matching.\n";
2161 OS << "enum SubtargetFeatureFlag {\n";
2162 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2163 it = Info.SubtargetFeatures.begin(),
2164 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2165 SubtargetFeatureInfo &SFI = *it->second;
Chris Lattner0aed1e72010-10-30 20:07:57 +00002166 OS << " " << SFI.getEnumName() << " = (1 << " << SFI.Index << "),\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002167 }
2168 OS << " Feature_None = 0\n";
2169 OS << "};\n\n";
2170}
2171
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002172/// emitOperandDiagnosticTypes - Emit the operand matching diagnostic types.
2173static void emitOperandDiagnosticTypes(AsmMatcherInfo &Info, raw_ostream &OS) {
2174 // Get the set of diagnostic types from all of the operand classes.
2175 std::set<StringRef> Types;
2176 for (std::map<Record*, ClassInfo*>::const_iterator
2177 I = Info.AsmOperandClasses.begin(),
2178 E = Info.AsmOperandClasses.end(); I != E; ++I) {
2179 if (!I->second->DiagnosticType.empty())
2180 Types.insert(I->second->DiagnosticType);
2181 }
2182
2183 if (Types.empty()) return;
2184
2185 // Now emit the enum entries.
2186 for (std::set<StringRef>::const_iterator I = Types.begin(), E = Types.end();
2187 I != E; ++I)
2188 OS << " Match_" << *I << ",\n";
2189 OS << " END_OPERAND_DIAGNOSTIC_TYPES\n";
2190}
2191
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002192/// emitGetSubtargetFeatureName - Emit the helper function to get the
2193/// user-level name for a subtarget feature.
2194static void emitGetSubtargetFeatureName(AsmMatcherInfo &Info, raw_ostream &OS) {
2195 OS << "// User-level names for subtarget features that participate in\n"
2196 << "// instruction matching.\n"
2197 << "static const char *getSubtargetFeatureName(unsigned Val) {\n"
2198 << " switch(Val) {\n";
2199 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2200 it = Info.SubtargetFeatures.begin(),
2201 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2202 SubtargetFeatureInfo &SFI = *it->second;
2203 // FIXME: Totally just a placeholder name to get the algorithm working.
2204 OS << " case " << SFI.getEnumName() << ": return \""
2205 << SFI.TheDef->getValueAsString("PredicateName") << "\";\n";
2206 }
2207 OS << " default: return \"(unknown)\";\n";
2208 OS << " }\n}\n\n";
2209}
2210
Jim Grosbach8caecde2012-04-19 17:52:32 +00002211/// emitComputeAvailableFeatures - Emit the function to compute the list of
Daniel Dunbar54074b52010-07-19 05:44:09 +00002212/// available features given a subtarget.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002213static void emitComputeAvailableFeatures(AsmMatcherInfo &Info,
Daniel Dunbar54074b52010-07-19 05:44:09 +00002214 raw_ostream &OS) {
2215 std::string ClassName =
2216 Info.AsmParser->getValueAsString("AsmParserClassName");
2217
Chris Lattner02bcbc92010-11-01 01:37:30 +00002218 OS << "unsigned " << Info.Target.getName() << ClassName << "::\n"
Evan Chengebdeeab2011-07-08 01:53:10 +00002219 << "ComputeAvailableFeatures(uint64_t FB) const {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002220 OS << " unsigned Features = 0;\n";
2221 for (std::map<Record*, SubtargetFeatureInfo*>::const_iterator
2222 it = Info.SubtargetFeatures.begin(),
2223 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
2224 SubtargetFeatureInfo &SFI = *it->second;
Evan Chengebdeeab2011-07-08 01:53:10 +00002225
2226 OS << " if (";
Jim Grosbach65da6fc2012-04-17 00:01:04 +00002227 std::string CondStorage =
2228 SFI.TheDef->getValueAsString("AssemblerCondString");
Evan Chengfbc38d22011-07-08 18:04:22 +00002229 StringRef Conds = CondStorage;
Evan Chengebdeeab2011-07-08 01:53:10 +00002230 std::pair<StringRef,StringRef> Comma = Conds.split(',');
2231 bool First = true;
2232 do {
2233 if (!First)
2234 OS << " && ";
2235
2236 bool Neg = false;
2237 StringRef Cond = Comma.first;
2238 if (Cond[0] == '!') {
2239 Neg = true;
2240 Cond = Cond.substr(1);
2241 }
2242
2243 OS << "((FB & " << Info.Target.getName() << "::" << Cond << ")";
2244 if (Neg)
2245 OS << " == 0";
2246 else
2247 OS << " != 0";
2248 OS << ")";
2249
2250 if (Comma.second.empty())
2251 break;
2252
2253 First = false;
2254 Comma = Comma.second.split(',');
2255 } while (true);
2256
2257 OS << ")\n";
Chris Lattner0aed1e72010-10-30 20:07:57 +00002258 OS << " Features |= " << SFI.getEnumName() << ";\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002259 }
2260 OS << " return Features;\n";
2261 OS << "}\n\n";
2262}
2263
Chris Lattner6fa152c2010-10-30 20:15:02 +00002264static std::string GetAliasRequiredFeatures(Record *R,
2265 const AsmMatcherInfo &Info) {
Chris Lattner693173f2010-10-30 19:23:13 +00002266 std::vector<Record*> ReqFeatures = R->getValueAsListOfDefs("Predicates");
Chris Lattner693173f2010-10-30 19:23:13 +00002267 std::string Result;
2268 unsigned NumFeatures = 0;
2269 for (unsigned i = 0, e = ReqFeatures.size(); i != e; ++i) {
Chris Lattner4a74ee72010-11-01 02:09:21 +00002270 SubtargetFeatureInfo *F = Info.getSubtargetFeature(ReqFeatures[i]);
Bob Wilson828295b2011-01-26 21:26:19 +00002271
Chris Lattner4a74ee72010-11-01 02:09:21 +00002272 if (F == 0)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002273 PrintFatalError(R->getLoc(), "Predicate '" + ReqFeatures[i]->getName() +
Chris Lattner4a74ee72010-11-01 02:09:21 +00002274 "' is not marked as an AssemblerPredicate!");
Bob Wilson828295b2011-01-26 21:26:19 +00002275
Chris Lattner4a74ee72010-11-01 02:09:21 +00002276 if (NumFeatures)
2277 Result += '|';
Bob Wilson828295b2011-01-26 21:26:19 +00002278
Chris Lattner4a74ee72010-11-01 02:09:21 +00002279 Result += F->getEnumName();
2280 ++NumFeatures;
Chris Lattner693173f2010-10-30 19:23:13 +00002281 }
Bob Wilson828295b2011-01-26 21:26:19 +00002282
Chris Lattner693173f2010-10-30 19:23:13 +00002283 if (NumFeatures > 1)
2284 Result = '(' + Result + ')';
2285 return Result;
2286}
2287
Jim Grosbach8caecde2012-04-19 17:52:32 +00002288/// emitMnemonicAliases - If the target has any MnemonicAlias<> definitions,
Chris Lattner7fd44892010-10-30 18:48:18 +00002289/// emit a function for them and return true, otherwise return false.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002290static bool emitMnemonicAliases(raw_ostream &OS, const AsmMatcherInfo &Info) {
Daniel Dunbarc0a70072011-01-24 23:26:31 +00002291 // Ignore aliases when match-prefix is set.
2292 if (!MatchPrefix.empty())
2293 return false;
2294
Chris Lattner674c1dc2010-10-30 17:36:36 +00002295 std::vector<Record*> Aliases =
Chris Lattner67db8832010-12-13 00:23:57 +00002296 Info.getRecords().getAllDerivedDefinitions("MnemonicAlias");
Chris Lattner7fd44892010-10-30 18:48:18 +00002297 if (Aliases.empty()) return false;
Chris Lattner674c1dc2010-10-30 17:36:36 +00002298
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002299 OS << "static void applyMnemonicAliases(StringRef &Mnemonic, "
Chris Lattner8cc0a6b2010-10-30 18:57:07 +00002300 "unsigned Features) {\n";
Bob Wilson828295b2011-01-26 21:26:19 +00002301
Chris Lattner4fd32c62010-10-30 18:56:12 +00002302 // Keep track of all the aliases from a mnemonic. Use an std::map so that the
2303 // iteration order of the map is stable.
2304 std::map<std::string, std::vector<Record*> > AliasesFromMnemonic;
Bob Wilson828295b2011-01-26 21:26:19 +00002305
Chris Lattner674c1dc2010-10-30 17:36:36 +00002306 for (unsigned i = 0, e = Aliases.size(); i != e; ++i) {
2307 Record *R = Aliases[i];
Chris Lattner4fd32c62010-10-30 18:56:12 +00002308 AliasesFromMnemonic[R->getValueAsString("FromMnemonic")].push_back(R);
Chris Lattner674c1dc2010-10-30 17:36:36 +00002309 }
Chris Lattner4fd32c62010-10-30 18:56:12 +00002310
2311 // Process each alias a "from" mnemonic at a time, building the code executed
2312 // by the string remapper.
2313 std::vector<StringMatcher::StringPair> Cases;
2314 for (std::map<std::string, std::vector<Record*> >::iterator
2315 I = AliasesFromMnemonic.begin(), E = AliasesFromMnemonic.end();
2316 I != E; ++I) {
Chris Lattner4fd32c62010-10-30 18:56:12 +00002317 const std::vector<Record*> &ToVec = I->second;
Chris Lattner693173f2010-10-30 19:23:13 +00002318
2319 // Loop through each alias and emit code that handles each case. If there
2320 // are two instructions without predicates, emit an error. If there is one,
2321 // emit it last.
2322 std::string MatchCode;
2323 int AliasWithNoPredicate = -1;
Bob Wilson828295b2011-01-26 21:26:19 +00002324
Chris Lattner693173f2010-10-30 19:23:13 +00002325 for (unsigned i = 0, e = ToVec.size(); i != e; ++i) {
2326 Record *R = ToVec[i];
Chris Lattner6fa152c2010-10-30 20:15:02 +00002327 std::string FeatureMask = GetAliasRequiredFeatures(R, Info);
Bob Wilson828295b2011-01-26 21:26:19 +00002328
Chris Lattner693173f2010-10-30 19:23:13 +00002329 // If this unconditionally matches, remember it for later and diagnose
2330 // duplicates.
2331 if (FeatureMask.empty()) {
2332 if (AliasWithNoPredicate != -1) {
2333 // We can't have two aliases from the same mnemonic with no predicate.
2334 PrintError(ToVec[AliasWithNoPredicate]->getLoc(),
2335 "two MnemonicAliases with the same 'from' mnemonic!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002336 PrintFatalError(R->getLoc(), "this is the other MnemonicAlias.");
Chris Lattner693173f2010-10-30 19:23:13 +00002337 }
Bob Wilson828295b2011-01-26 21:26:19 +00002338
Chris Lattner693173f2010-10-30 19:23:13 +00002339 AliasWithNoPredicate = i;
2340 continue;
2341 }
Joerg Sonnenberger6ef6ced2011-02-17 23:22:19 +00002342 if (R->getValueAsString("ToMnemonic") == I->first)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002343 PrintFatalError(R->getLoc(), "MnemonicAlias to the same string");
Bob Wilson828295b2011-01-26 21:26:19 +00002344
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00002345 if (!MatchCode.empty())
2346 MatchCode += "else ";
Chris Lattner693173f2010-10-30 19:23:13 +00002347 MatchCode += "if ((Features & " + FeatureMask + ") == "+FeatureMask+")\n";
2348 MatchCode += " Mnemonic = \"" +R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner4fd32c62010-10-30 18:56:12 +00002349 }
Bob Wilson828295b2011-01-26 21:26:19 +00002350
Chris Lattner693173f2010-10-30 19:23:13 +00002351 if (AliasWithNoPredicate != -1) {
2352 Record *R = ToVec[AliasWithNoPredicate];
Chris Lattner8cf8bcc2010-10-30 19:47:49 +00002353 if (!MatchCode.empty())
2354 MatchCode += "else\n ";
2355 MatchCode += "Mnemonic = \"" + R->getValueAsString("ToMnemonic")+"\";\n";
Chris Lattner693173f2010-10-30 19:23:13 +00002356 }
Bob Wilson828295b2011-01-26 21:26:19 +00002357
Chris Lattner693173f2010-10-30 19:23:13 +00002358 MatchCode += "return;";
2359
2360 Cases.push_back(std::make_pair(I->first, MatchCode));
Chris Lattner4fd32c62010-10-30 18:56:12 +00002361 }
Bob Wilson828295b2011-01-26 21:26:19 +00002362
Chris Lattner674c1dc2010-10-30 17:36:36 +00002363 StringMatcher("Mnemonic", Cases, OS).Emit();
Daniel Dunbar55b5e852011-01-18 01:59:30 +00002364 OS << "}\n\n";
Bob Wilson828295b2011-01-26 21:26:19 +00002365
Chris Lattner7fd44892010-10-30 18:48:18 +00002366 return true;
Chris Lattner674c1dc2010-10-30 17:36:36 +00002367}
2368
Jim Grosbach194f3fa2012-03-01 17:30:35 +00002369static const char *getMinimalTypeForRange(uint64_t Range) {
2370 assert(Range < 0xFFFFFFFFULL && "Enum too large");
2371 if (Range > 0xFFFF)
2372 return "uint32_t";
2373 if (Range > 0xFF)
2374 return "uint16_t";
2375 return "uint8_t";
2376}
2377
Jim Grosbach8caecde2012-04-19 17:52:32 +00002378static void emitCustomOperandParsing(raw_ostream &OS, CodeGenTarget &Target,
Craig Topper3a364442012-09-18 07:02:21 +00002379 const AsmMatcherInfo &Info, StringRef ClassName,
2380 StringToOffsetTable &StringTable,
2381 unsigned MaxMnemonicIndex) {
2382 unsigned MaxMask = 0;
2383 for (std::vector<OperandMatchEntry>::const_iterator it =
2384 Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2385 it != ie; ++it) {
2386 MaxMask |= it->OperandMask;
2387 }
2388
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002389 // Emit the static custom operand parsing table;
2390 OS << "namespace {\n";
2391 OS << " struct OperandMatchEntry {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002392 OS << " " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
Craig Topperfab3f7e2012-04-02 07:48:39 +00002393 << " RequiredFeatures;\n";
Craig Topper3a364442012-09-18 07:02:21 +00002394 OS << " " << getMinimalTypeForRange(MaxMnemonicIndex)
2395 << " Mnemonic;\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002396 OS << " " << getMinimalTypeForRange(Info.Classes.size())
Craig Topper3a364442012-09-18 07:02:21 +00002397 << " Class;\n";
2398 OS << " " << getMinimalTypeForRange(MaxMask)
2399 << " OperandMask;\n\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002400 OS << " StringRef getMnemonic() const {\n";
2401 OS << " return StringRef(MnemonicTable + Mnemonic + 1,\n";
2402 OS << " MnemonicTable[Mnemonic]);\n";
2403 OS << " }\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002404 OS << " };\n\n";
2405
2406 OS << " // Predicate for searching for an opcode.\n";
2407 OS << " struct LessOpcodeOperand {\n";
2408 OS << " bool operator()(const OperandMatchEntry &LHS, StringRef RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002409 OS << " return LHS.getMnemonic() < RHS;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002410 OS << " }\n";
2411 OS << " bool operator()(StringRef LHS, const OperandMatchEntry &RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002412 OS << " return LHS < RHS.getMnemonic();\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002413 OS << " }\n";
2414 OS << " bool operator()(const OperandMatchEntry &LHS,";
2415 OS << " const OperandMatchEntry &RHS) {\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002416 OS << " return LHS.getMnemonic() < RHS.getMnemonic();\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002417 OS << " }\n";
2418 OS << " };\n";
2419
2420 OS << "} // end anonymous namespace.\n\n";
2421
2422 OS << "static const OperandMatchEntry OperandMatchTable["
2423 << Info.OperandMatchInfo.size() << "] = {\n";
2424
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002425 OS << " /* Operand List Mask, Mnemonic, Operand Class, Features */\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002426 for (std::vector<OperandMatchEntry>::const_iterator it =
2427 Info.OperandMatchInfo.begin(), ie = Info.OperandMatchInfo.end();
2428 it != ie; ++it) {
2429 const OperandMatchEntry &OMI = *it;
2430 const MatchableInfo &II = *OMI.MI;
2431
Craig Topper3a364442012-09-18 07:02:21 +00002432 OS << " { ";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002433
Craig Topper3a364442012-09-18 07:02:21 +00002434 // Write the required features mask.
2435 if (!II.RequiredFeatures.empty()) {
2436 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2437 if (i) OS << "|";
2438 OS << II.RequiredFeatures[i]->getEnumName();
2439 }
2440 } else
2441 OS << "0";
2442
2443 // Store a pascal-style length byte in the mnemonic.
2444 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2445 OS << ", " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
2446 << " /* " << II.Mnemonic << " */, ";
2447
2448 OS << OMI.CI->Name;
2449
2450 OS << ", " << OMI.OperandMask;
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002451 OS << " /* ";
2452 bool printComma = false;
2453 for (int i = 0, e = 31; i !=e; ++i)
2454 if (OMI.OperandMask & (1 << i)) {
2455 if (printComma)
2456 OS << ", ";
2457 OS << i;
2458 printComma = true;
2459 }
2460 OS << " */";
2461
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002462 OS << " },\n";
2463 }
2464 OS << "};\n\n";
2465
2466 // Emit the operand class switch to call the correct custom parser for
2467 // the found operand class.
Jim Grosbachf922c472011-02-12 01:34:40 +00002468 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
2469 << Target.getName() << ClassName << "::\n"
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002470 << "tryCustomParseOperand(SmallVectorImpl<MCParsedAsmOperand*>"
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002471 << " &Operands,\n unsigned MCK) {\n\n"
2472 << " switch(MCK) {\n";
2473
2474 for (std::vector<ClassInfo*>::const_iterator it = Info.Classes.begin(),
2475 ie = Info.Classes.end(); it != ie; ++it) {
2476 ClassInfo *CI = *it;
2477 if (CI->ParserMethod.empty())
2478 continue;
2479 OS << " case " << CI->Name << ":\n"
2480 << " return " << CI->ParserMethod << "(Operands);\n";
2481 }
2482
2483 OS << " default:\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002484 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002485 OS << " }\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002486 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002487 OS << "}\n\n";
2488
2489 // Emit the static custom operand parser. This code is very similar with
2490 // the other matcher. Also use MatchResultTy here just in case we go for
2491 // a better error handling.
Jim Grosbachf922c472011-02-12 01:34:40 +00002492 OS << Target.getName() << ClassName << "::OperandMatchResultTy "
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002493 << Target.getName() << ClassName << "::\n"
2494 << "MatchOperandParserImpl(SmallVectorImpl<MCParsedAsmOperand*>"
2495 << " &Operands,\n StringRef Mnemonic) {\n";
2496
2497 // Emit code to get the available features.
2498 OS << " // Get the current feature set.\n";
2499 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2500
2501 OS << " // Get the next operand index.\n";
2502 OS << " unsigned NextOpNum = Operands.size()-1;\n";
2503
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002504 // Emit code to search the table.
2505 OS << " // Search the table.\n";
2506 OS << " std::pair<const OperandMatchEntry*, const OperandMatchEntry*>";
2507 OS << " MnemonicRange =\n";
2508 OS << " std::equal_range(OperandMatchTable, OperandMatchTable+"
2509 << Info.OperandMatchInfo.size() << ", Mnemonic,\n"
2510 << " LessOpcodeOperand());\n\n";
2511
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002512 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002513 OS << " return MatchOperand_NoMatch;\n\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002514
2515 OS << " for (const OperandMatchEntry *it = MnemonicRange.first,\n"
2516 << " *ie = MnemonicRange.second; it != ie; ++it) {\n";
2517
2518 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
Benjamin Kramerb08bb342012-03-03 20:44:43 +00002519 OS << " assert(Mnemonic == it->getMnemonic());\n\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002520
2521 // Emit check that the required features are available.
2522 OS << " // check if the available features match\n";
2523 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2524 << "!= it->RequiredFeatures) {\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002525 OS << " continue;\n";
2526 OS << " }\n\n";
2527
2528 // Emit check to ensure the operand number matches.
2529 OS << " // check if the operand in question has a custom parser.\n";
2530 OS << " if (!(it->OperandMask & (1 << NextOpNum)))\n";
2531 OS << " continue;\n\n";
2532
2533 // Emit call to the custom parser method
2534 OS << " // call custom parse method to handle the operand\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002535 OS << " OperandMatchResultTy Result = ";
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002536 OS << "tryCustomParseOperand(Operands, it->Class);\n";
Jim Grosbachf922c472011-02-12 01:34:40 +00002537 OS << " if (Result != MatchOperand_NoMatch)\n";
2538 OS << " return Result;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002539 OS << " }\n\n";
2540
Jim Grosbachf922c472011-02-12 01:34:40 +00002541 OS << " // Okay, we had no match.\n";
2542 OS << " return MatchOperand_NoMatch;\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002543 OS << "}\n\n";
2544}
2545
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002546void AsmMatcherEmitter::run(raw_ostream &OS) {
Chris Lattner67db8832010-12-13 00:23:57 +00002547 CodeGenTarget Target(Records);
Daniel Dunbar2234e5e2009-08-07 21:01:44 +00002548 Record *AsmParser = Target.getAsmParser();
2549 std::string ClassName = AsmParser->getValueAsString("AsmParserClassName");
2550
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002551 // Compute the information on the instructions to match.
Chris Lattner67db8832010-12-13 00:23:57 +00002552 AsmMatcherInfo Info(AsmParser, Target, Records);
Jim Grosbach8caecde2012-04-19 17:52:32 +00002553 Info.buildInfo();
Daniel Dunbara027d222009-07-31 02:32:59 +00002554
Daniel Dunbare1f6de32010-02-02 23:46:36 +00002555 // Sort the instruction table using the partial order on classes. We use
2556 // stable_sort to ensure that ambiguous instructions are still
2557 // deterministically ordered.
Chris Lattner22bc5c42010-11-01 05:06:45 +00002558 std::stable_sort(Info.Matchables.begin(), Info.Matchables.end(),
2559 less_ptr<MatchableInfo>());
Jim Grosbacha7c78222010-10-29 22:13:48 +00002560
Daniel Dunbarb7479c02009-08-08 05:24:34 +00002561 DEBUG_WITH_TYPE("instruction_info", {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002562 for (std::vector<MatchableInfo*>::iterator
2563 it = Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002564 it != ie; ++it)
Daniel Dunbar20927f22009-08-07 08:26:05 +00002565 (*it)->dump();
2566 });
Daniel Dunbara027d222009-07-31 02:32:59 +00002567
Chris Lattner22bc5c42010-11-01 05:06:45 +00002568 // Check for ambiguous matchables.
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002569 DEBUG_WITH_TYPE("ambiguous_instrs", {
2570 unsigned NumAmbiguous = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002571 for (unsigned i = 0, e = Info.Matchables.size(); i != e; ++i) {
Chris Lattner87410362010-09-06 20:21:47 +00002572 for (unsigned j = i + 1; j != e; ++j) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002573 MatchableInfo &A = *Info.Matchables[i];
2574 MatchableInfo &B = *Info.Matchables[j];
Jim Grosbacha7c78222010-10-29 22:13:48 +00002575
Jim Grosbach8caecde2012-04-19 17:52:32 +00002576 if (A.couldMatchAmbiguouslyWith(B)) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002577 errs() << "warning: ambiguous matchables:\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002578 A.dump();
2579 errs() << "\nis incomparable with:\n";
2580 B.dump();
2581 errs() << "\n\n";
Chris Lattner87410362010-09-06 20:21:47 +00002582 ++NumAmbiguous;
2583 }
Daniel Dunbar2b544812009-08-09 06:05:33 +00002584 }
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002585 }
Chris Lattner87410362010-09-06 20:21:47 +00002586 if (NumAmbiguous)
Jim Grosbacha7c78222010-10-29 22:13:48 +00002587 errs() << "warning: " << NumAmbiguous
Chris Lattner22bc5c42010-11-01 05:06:45 +00002588 << " ambiguous matchables!\n";
Chris Lattnerfa0d74d2010-09-06 21:28:52 +00002589 });
Daniel Dunbar606e8ad2009-08-09 04:00:06 +00002590
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002591 // Compute the information on the custom operand parsing.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002592 Info.buildOperandMatchInfo();
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002593
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002594 // Write the output.
2595
Chris Lattner0692ee62010-09-06 19:11:01 +00002596 // Information for the class declaration.
2597 OS << "\n#ifdef GET_ASSEMBLER_HEADER\n";
2598 OS << "#undef GET_ASSEMBLER_HEADER\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002599 OS << " // This should be included into the middle of the declaration of\n";
Evan Cheng94b95502011-07-26 00:24:13 +00002600 OS << " // your subclasses implementation of MCTargetAsmParser.\n";
Evan Chengebdeeab2011-07-08 01:53:10 +00002601 OS << " unsigned ComputeAvailableFeatures(uint64_t FeatureBits) const;\n";
Chad Rosier90e11f82012-09-05 01:02:38 +00002602 OS << " void convertToMCInst(unsigned Kind, MCInst &Inst, "
Daniel Dunbar5c228a92011-02-04 23:17:40 +00002603 << "unsigned Opcode,\n"
Chad Rosierc69bb702012-10-02 00:25:57 +00002604 << " const SmallVectorImpl<MCParsedAsmOperand*> "
Daniel Dunbar5c228a92011-02-04 23:17:40 +00002605 << "&Operands);\n";
Chad Rosierc69bb702012-10-02 00:25:57 +00002606 OS << " void convertToMapAndConstraints(unsigned Kind,\n ";
Chad Rosier6e006d32012-10-12 22:53:36 +00002607 OS << " const SmallVectorImpl<MCParsedAsmOperand*> &Operands);\n";
Chad Rosier00796a12012-09-24 19:32:29 +00002608 OS << " bool mnemonicIsValid(StringRef Mnemonic);\n";
Chad Rosier9ba9d4d2012-10-05 18:41:14 +00002609 OS << " unsigned MatchInstructionImpl(\n";
2610 OS.indent(27);
2611 OS << "const SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n"
Chad Rosier6e006d32012-10-12 22:53:36 +00002612 << " MCInst &Inst,\n"
Chad Rosierc69bb702012-10-02 00:25:57 +00002613 << " unsigned &ErrorInfo,"
2614 << " bool matchingInlineAsm,\n"
2615 << " unsigned VariantID = 0);\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002616
2617 if (Info.OperandMatchInfo.size()) {
Jim Grosbachf922c472011-02-12 01:34:40 +00002618 OS << "\n enum OperandMatchResultTy {\n";
2619 OS << " MatchOperand_Success, // operand matched successfully\n";
2620 OS << " MatchOperand_NoMatch, // operand did not match\n";
2621 OS << " MatchOperand_ParseFail // operand matched but had errors\n";
2622 OS << " };\n";
2623 OS << " OperandMatchResultTy MatchOperandParserImpl(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002624 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2625 OS << " StringRef Mnemonic);\n";
2626
Jim Grosbach3d5d8f62011-12-06 22:07:02 +00002627 OS << " OperandMatchResultTy tryCustomParseOperand(\n";
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002628 OS << " SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n";
2629 OS << " unsigned MCK);\n\n";
2630 }
2631
Chris Lattner0692ee62010-09-06 19:11:01 +00002632 OS << "#endif // GET_ASSEMBLER_HEADER_INFO\n\n";
2633
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002634 // Emit the operand match diagnostic enum names.
2635 OS << "\n#ifdef GET_OPERAND_DIAGNOSTIC_TYPES\n";
2636 OS << "#undef GET_OPERAND_DIAGNOSTIC_TYPES\n\n";
2637 emitOperandDiagnosticTypes(Info, OS);
2638 OS << "#endif // GET_OPERAND_DIAGNOSTIC_TYPES\n\n";
2639
2640
Chris Lattner0692ee62010-09-06 19:11:01 +00002641 OS << "\n#ifdef GET_REGISTER_MATCHER\n";
2642 OS << "#undef GET_REGISTER_MATCHER\n\n";
2643
Daniel Dunbar54074b52010-07-19 05:44:09 +00002644 // Emit the subtarget feature enumeration.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002645 emitSubtargetFeatureFlagEnumeration(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002646
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002647 // Emit the function to match a register name to number.
Akira Hatanaka72e9b6a2012-08-17 20:16:42 +00002648 // This should be omitted for Mips target
2649 if (AsmParser->getValueAsBit("ShouldEmitMatchRegisterName"))
2650 emitMatchRegisterName(Target, AsmParser, OS);
Chris Lattner0692ee62010-09-06 19:11:01 +00002651
2652 OS << "#endif // GET_REGISTER_MATCHER\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002653
Craig Topper8030e1a2012-04-25 06:56:34 +00002654 OS << "\n#ifdef GET_SUBTARGET_FEATURE_NAME\n";
2655 OS << "#undef GET_SUBTARGET_FEATURE_NAME\n\n";
Daniel Dunbar1095f2a2009-08-11 23:23:44 +00002656
Jim Grosbach14ce6fa2012-04-24 22:40:08 +00002657 // Generate the helper function to get the names for subtarget features.
2658 emitGetSubtargetFeatureName(Info, OS);
2659
Craig Topper8030e1a2012-04-25 06:56:34 +00002660 OS << "#endif // GET_SUBTARGET_FEATURE_NAME\n\n";
2661
2662 OS << "\n#ifdef GET_MATCHER_IMPLEMENTATION\n";
2663 OS << "#undef GET_MATCHER_IMPLEMENTATION\n\n";
2664
Chris Lattner7fd44892010-10-30 18:48:18 +00002665 // Generate the function that remaps for mnemonic aliases.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002666 bool HasMnemonicAliases = emitMnemonicAliases(OS, Info);
Bob Wilson828295b2011-01-26 21:26:19 +00002667
Chad Rosier22685872012-10-01 23:45:51 +00002668 // Generate the convertToMCInst function to convert operands into an MCInst.
2669 // Also, generate the convertToMapAndConstraints function for MS-style inline
2670 // assembly. The latter doesn't actually generate a MCInst.
2671 emitConvertFuncs(Target, ClassName, Info.Matchables, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002672
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002673 // Emit the enumeration for classes which participate in matching.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002674 emitMatchClassEnumeration(Target, Info.Classes, OS);
Daniel Dunbara027d222009-07-31 02:32:59 +00002675
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002676 // Emit the routine to match token strings to their match class.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002677 emitMatchTokenString(Target, Info.Classes, OS);
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002678
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002679 // Emit the subclass predicate routine.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002680 emitIsSubclass(Target, Info.Classes, OS);
Daniel Dunbarfdb1f492009-08-10 16:05:47 +00002681
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002682 // Emit the routine to validate an operand against a match class.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002683 emitValidateOperandClass(Info, OS);
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002684
Daniel Dunbar54074b52010-07-19 05:44:09 +00002685 // Emit the available features compute function.
Jim Grosbach8caecde2012-04-19 17:52:32 +00002686 emitComputeAvailableFeatures(Info, OS);
Daniel Dunbar54074b52010-07-19 05:44:09 +00002687
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002688
Craig Topperfee7f012012-09-18 06:10:45 +00002689 StringToOffsetTable StringTable;
2690
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002691 size_t MaxNumOperands = 0;
Craig Topperfee7f012012-09-18 06:10:45 +00002692 unsigned MaxMnemonicIndex = 0;
Chris Lattner22bc5c42010-11-01 05:06:45 +00002693 for (std::vector<MatchableInfo*>::const_iterator it =
2694 Info.Matchables.begin(), ie = Info.Matchables.end();
Craig Topperfee7f012012-09-18 06:10:45 +00002695 it != ie; ++it) {
2696 MatchableInfo &II = **it;
2697 MaxNumOperands = std::max(MaxNumOperands, II.AsmOperands.size());
2698
2699 // Store a pascal-style length byte in the mnemonic.
2700 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
2701 MaxMnemonicIndex = std::max(MaxMnemonicIndex,
2702 StringTable.GetOrAddStringOffset(LenMnemonic, false));
2703 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002704
Craig Topper3a364442012-09-18 07:02:21 +00002705 OS << "static const char *const MnemonicTable =\n";
2706 StringTable.EmitString(OS);
2707 OS << ";\n\n";
2708
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002709 // Emit the static match table; unused classes get initalized to 0 which is
2710 // guaranteed to be InvalidMatchClass.
2711 //
2712 // FIXME: We can reduce the size of this table very easily. First, we change
2713 // it so that store the kinds in separate bit-fields for each index, which
2714 // only needs to be the max width used for classes at that index (we also need
2715 // to reject based on this during classification). If we then make sure to
2716 // order the match kinds appropriately (putting mnemonics last), then we
2717 // should only end up using a few bits for each class, especially the ones
2718 // following the mnemonic.
Chris Lattner96352e52010-09-06 21:08:38 +00002719 OS << "namespace {\n";
2720 OS << " struct MatchEntry {\n";
Craig Topperfee7f012012-09-18 06:10:45 +00002721 OS << " " << getMinimalTypeForRange(MaxMnemonicIndex)
2722 << " Mnemonic;\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002723 OS << " uint16_t Opcode;\n";
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002724 OS << " " << getMinimalTypeForRange(Info.Matchables.size())
2725 << " ConvertFn;\n";
Benjamin Krameraf482cf2011-10-17 16:18:09 +00002726 OS << " " << getMinimalTypeForRange(1ULL << Info.SubtargetFeatures.size())
2727 << " RequiredFeatures;\n";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002728 OS << " " << getMinimalTypeForRange(Info.Classes.size())
2729 << " Classes[" << MaxNumOperands << "];\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002730 OS << " uint8_t AsmVariantID;\n\n";
2731 OS << " StringRef getMnemonic() const {\n";
2732 OS << " return StringRef(MnemonicTable + Mnemonic + 1,\n";
2733 OS << " MnemonicTable[Mnemonic]);\n";
2734 OS << " }\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002735 OS << " };\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002736
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002737 OS << " // Predicate for searching for an opcode.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002738 OS << " struct LessOpcode {\n";
2739 OS << " bool operator()(const MatchEntry &LHS, StringRef RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002740 OS << " return LHS.getMnemonic() < RHS;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002741 OS << " }\n";
2742 OS << " bool operator()(StringRef LHS, const MatchEntry &RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002743 OS << " return LHS < RHS.getMnemonic();\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002744 OS << " }\n";
Chris Lattner32c685c2010-09-07 06:10:48 +00002745 OS << " bool operator()(const MatchEntry &LHS, const MatchEntry &RHS) {\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002746 OS << " return LHS.getMnemonic() < RHS.getMnemonic();\n";
Chris Lattner32c685c2010-09-07 06:10:48 +00002747 OS << " }\n";
Chris Lattner96352e52010-09-06 21:08:38 +00002748 OS << " };\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002749
Chris Lattner96352e52010-09-06 21:08:38 +00002750 OS << "} // end anonymous namespace.\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002751
Chris Lattner96352e52010-09-06 21:08:38 +00002752 OS << "static const MatchEntry MatchTable["
Chris Lattner22bc5c42010-11-01 05:06:45 +00002753 << Info.Matchables.size() << "] = {\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002754
Chris Lattner22bc5c42010-11-01 05:06:45 +00002755 for (std::vector<MatchableInfo*>::const_iterator it =
2756 Info.Matchables.begin(), ie = Info.Matchables.end();
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002757 it != ie; ++it) {
Chris Lattner22bc5c42010-11-01 05:06:45 +00002758 MatchableInfo &II = **it;
Jim Grosbacha7c78222010-10-29 22:13:48 +00002759
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002760 // Store a pascal-style length byte in the mnemonic.
2761 std::string LenMnemonic = char(II.Mnemonic.size()) + II.Mnemonic.str();
Craig Topperfab3f7e2012-04-02 07:48:39 +00002762 OS << " { " << StringTable.GetOrAddStringOffset(LenMnemonic, false)
2763 << " /* " << II.Mnemonic << " */, "
2764 << Target.getName() << "::"
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002765 << II.getResultInst()->TheDef->getName() << ", "
Craig Topperfab3f7e2012-04-02 07:48:39 +00002766 << II.ConversionFnKind << ", ";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002767
Daniel Dunbar54074b52010-07-19 05:44:09 +00002768 // Write the required features mask.
2769 if (!II.RequiredFeatures.empty()) {
2770 for (unsigned i = 0, e = II.RequiredFeatures.size(); i != e; ++i) {
2771 if (i) OS << "|";
Chris Lattner0aed1e72010-10-30 20:07:57 +00002772 OS << II.RequiredFeatures[i]->getEnumName();
Daniel Dunbar54074b52010-07-19 05:44:09 +00002773 }
2774 } else
2775 OS << "0";
Craig Topperfab3f7e2012-04-02 07:48:39 +00002776
2777 OS << ", { ";
2778 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
2779 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
2780
2781 if (i) OS << ", ";
2782 OS << Op.Class->Name;
2783 }
2784 OS << " }, " << II.AsmVariantID;
Daniel Dunbar54074b52010-07-19 05:44:09 +00002785 OS << "},\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002786 }
Jim Grosbacha7c78222010-10-29 22:13:48 +00002787
Chris Lattner96352e52010-09-06 21:08:38 +00002788 OS << "};\n\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002789
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002790 // A method to determine if a mnemonic is in the list.
2791 OS << "bool " << Target.getName() << ClassName << "::\n"
Chad Rosier00796a12012-09-24 19:32:29 +00002792 << "mnemonicIsValid(StringRef Mnemonic) {\n";
Bob Wilson1fe3aa12011-01-26 21:43:46 +00002793 OS << " // Search the table.\n";
2794 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2795 OS << " std::equal_range(MatchTable, MatchTable+"
2796 << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n";
2797 OS << " return MnemonicRange.first != MnemonicRange.second;\n";
2798 OS << "}\n\n";
2799
Chris Lattner96352e52010-09-06 21:08:38 +00002800 // Finally, build the match function.
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002801 OS << "unsigned "
Chris Lattner96352e52010-09-06 21:08:38 +00002802 << Target.getName() << ClassName << "::\n"
2803 << "MatchInstructionImpl(const SmallVectorImpl<MCParsedAsmOperand*>"
2804 << " &Operands,\n";
Chad Rosier6e006d32012-10-12 22:53:36 +00002805 OS << " MCInst &Inst,\n"
Chad Rosier22685872012-10-01 23:45:51 +00002806 << "unsigned &ErrorInfo, bool matchingInlineAsm, unsigned VariantID) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002807
Chad Rosier0bad0862012-08-30 21:43:05 +00002808 OS << " // Eliminate obvious mismatches.\n";
2809 OS << " if (Operands.size() > " << (MaxNumOperands+1) << ") {\n";
2810 OS << " ErrorInfo = " << (MaxNumOperands+1) << ";\n";
2811 OS << " return Match_InvalidOperand;\n";
2812 OS << " }\n\n";
2813
Daniel Dunbar54074b52010-07-19 05:44:09 +00002814 // Emit code to get the available features.
2815 OS << " // Get the current feature set.\n";
2816 OS << " unsigned AvailableFeatures = getAvailableFeatures();\n\n";
2817
Chris Lattner674c1dc2010-10-30 17:36:36 +00002818 OS << " // Get the instruction mnemonic, which is the first token.\n";
2819 OS << " StringRef Mnemonic = ((" << Target.getName()
2820 << "Operand*)Operands[0])->getToken();\n\n";
2821
Chris Lattner7fd44892010-10-30 18:48:18 +00002822 if (HasMnemonicAliases) {
2823 OS << " // Process all MnemonicAliases to remap the mnemonic.\n";
Devang Patel40bced02012-01-17 18:30:45 +00002824 OS << " // FIXME : Add an entry in AsmParserVariant to check this.\n";
2825 OS << " if (!VariantID)\n";
2826 OS << " applyMnemonicAliases(Mnemonic, AvailableFeatures);\n\n";
Chris Lattner7fd44892010-10-30 18:48:18 +00002827 }
Bob Wilson828295b2011-01-26 21:26:19 +00002828
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002829 // Emit code to compute the class list for this operand vector.
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002830 OS << " // Some state to try to produce better error messages.\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002831 OS << " bool HadMatchOtherThanFeatures = false;\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00002832 OS << " bool HadMatchOtherThanPredicate = false;\n";
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002833 OS << " unsigned RetCode = Match_InvalidOperand;\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002834 OS << " unsigned MissingFeatures = ~0U;\n";
Jim Grosbach84cb0332011-02-11 21:31:55 +00002835 OS << " // Set ErrorInfo to the operand that mismatches if it is\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002836 OS << " // wrong for all instances of the instruction.\n";
2837 OS << " ErrorInfo = ~0U;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002838
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002839 // Emit code to search the table.
2840 OS << " // Search the table.\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002841 OS << " std::pair<const MatchEntry*, const MatchEntry*> MnemonicRange =\n";
2842 OS << " std::equal_range(MatchTable, MatchTable+"
Chris Lattner22bc5c42010-11-01 05:06:45 +00002843 << Info.Matchables.size() << ", Mnemonic, LessOpcode());\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002844
Chris Lattnera008e8a2010-09-06 21:54:15 +00002845 OS << " // Return a more specific error code if no mnemonics match.\n";
2846 OS << " if (MnemonicRange.first == MnemonicRange.second)\n";
2847 OS << " return Match_MnemonicFail;\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002848
Chris Lattner2b1f9432010-09-06 21:22:45 +00002849 OS << " for (const MatchEntry *it = MnemonicRange.first, "
Chris Lattner80db4e52010-09-06 21:23:43 +00002850 << "*ie = MnemonicRange.second;\n";
Chris Lattner2b1f9432010-09-06 21:22:45 +00002851 OS << " it != ie; ++it) {\n";
Daniel Dunbar54074b52010-07-19 05:44:09 +00002852
Gabor Greife53ee3b2010-09-07 06:06:06 +00002853 OS << " // equal_range guarantees that instruction mnemonic matches.\n";
Benjamin Kramera4c5ecf2012-03-03 19:13:26 +00002854 OS << " assert(Mnemonic == it->getMnemonic());\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002855
Daniel Dunbar54074b52010-07-19 05:44:09 +00002856 // Emit check that the subclasses match.
Devang Patel56315d32012-01-10 17:50:43 +00002857 OS << " if (VariantID != it->AsmVariantID) continue;\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002858 OS << " bool OperandsValid = true;\n";
2859 OS << " for (unsigned i = 0; i != " << MaxNumOperands << "; ++i) {\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002860 OS << " if (i + 1 >= Operands.size()) {\n";
2861 OS << " OperandsValid = (it->Classes[i] == " <<"InvalidMatchClass);\n";
Bill Wendling087642f2012-08-04 10:31:40 +00002862 OS << " if (!OperandsValid) ErrorInfo = i + 1;\n";
Jim Grosbachb9d5af02011-05-03 19:09:56 +00002863 OS << " break;\n";
Jim Grosbachb9db0c52011-02-10 00:08:28 +00002864 OS << " }\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002865 OS << " unsigned Diag = validateOperandClass(Operands[i+1],\n";
2866 OS.indent(43);
2867 OS << "(MatchClassKind)it->Classes[i]);\n";
2868 OS << " if (Diag == Match_Success)\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002869 OS << " continue;\n";
Chris Lattner9bb9fa12010-09-06 23:37:39 +00002870 OS << " // If this operand is broken for all of the instances of this\n";
2871 OS << " // mnemonic, keep track of it so we can report loc info.\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002872 OS << " // If we already had a match that only failed due to a\n";
2873 OS << " // target predicate, that diagnostic is preferred.\n";
2874 OS << " if (!HadMatchOtherThanPredicate &&\n";
2875 OS << " (it == MnemonicRange.first || ErrorInfo <= i+1)) {\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002876 OS << " ErrorInfo = i+1;\n";
Jim Grosbachef970c12012-06-26 22:58:01 +00002877 OS << " // InvalidOperand is the default. Prefer specificity.\n";
2878 OS << " if (Diag != Match_InvalidOperand)\n";
2879 OS << " RetCode = Diag;\n";
Jim Grosbach4dbfdfb2012-06-22 23:56:44 +00002880 OS << " }\n";
Chris Lattnerce4a3352010-09-06 22:11:18 +00002881 OS << " // Otherwise, just reject this instance of the mnemonic.\n";
2882 OS << " OperandsValid = false;\n";
2883 OS << " break;\n";
2884 OS << " }\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002885
Chris Lattnerce4a3352010-09-06 22:11:18 +00002886 OS << " if (!OperandsValid) continue;\n";
Chris Lattnerec6789f2010-09-06 20:08:02 +00002887
2888 // Emit check that the required features are available.
2889 OS << " if ((AvailableFeatures & it->RequiredFeatures) "
2890 << "!= it->RequiredFeatures) {\n";
2891 OS << " HadMatchOtherThanFeatures = true;\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002892 OS << " unsigned NewMissingFeatures = it->RequiredFeatures & "
2893 "~AvailableFeatures;\n";
Chad Rosier0bad0862012-08-30 21:43:05 +00002894 OS << " if (CountPopulation_32(NewMissingFeatures) <=\n"
2895 " CountPopulation_32(MissingFeatures))\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002896 OS << " MissingFeatures = NewMissingFeatures;\n";
Chris Lattnerec6789f2010-09-06 20:08:02 +00002897 OS << " continue;\n";
2898 OS << " }\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002899 OS << "\n";
Chad Rosier22685872012-10-01 23:45:51 +00002900 OS << " if (matchingInlineAsm) {\n";
Chad Rosier22685872012-10-01 23:45:51 +00002901 OS << " Inst.setOpcode(it->Opcode);\n";
Chad Rosier6e006d32012-10-12 22:53:36 +00002902 OS << " convertToMapAndConstraints(it->ConvertFn, Operands);\n";
Chad Rosier22685872012-10-01 23:45:51 +00002903 OS << " return Match_Success;\n";
2904 OS << " }\n\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00002905 OS << " // We have selected a definite instruction, convert the parsed\n"
2906 << " // operands into the appropriate MCInst.\n";
Chad Rosier90e11f82012-09-05 01:02:38 +00002907 OS << " convertToMCInst(it->ConvertFn, Inst, it->Opcode, Operands);\n";
Daniel Dunbarb4129152011-02-04 17:12:23 +00002908 OS << "\n";
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00002909
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002910 // Verify the instruction with the target-specific match predicate function.
2911 OS << " // We have a potential match. Check the target predicate to\n"
2912 << " // handle any context sensitive constraints.\n"
2913 << " unsigned MatchResult;\n"
2914 << " if ((MatchResult = checkTargetMatchPredicate(Inst)) !="
2915 << " Match_Success) {\n"
2916 << " Inst.clear();\n"
2917 << " RetCode = MatchResult;\n"
Jim Grosbach578071a2011-08-16 20:12:35 +00002918 << " HadMatchOtherThanPredicate = true;\n"
Jim Grosbach19cb7f42011-08-15 23:03:29 +00002919 << " continue;\n"
2920 << " }\n\n";
2921
Daniel Dunbar8cc9c0c2010-03-18 20:05:56 +00002922 // Call the post-processing function, if used.
2923 std::string InsnCleanupFn =
2924 AsmParser->getValueAsString("AsmParserInstCleanup");
2925 if (!InsnCleanupFn.empty())
2926 OS << " " << InsnCleanupFn << "(Inst);\n";
2927
Chris Lattner79ed3f72010-09-06 19:22:17 +00002928 OS << " return Match_Success;\n";
Daniel Dunbara3741fa2009-08-08 07:50:56 +00002929 OS << " }\n\n";
2930
Chris Lattnerec6789f2010-09-06 20:08:02 +00002931 OS << " // Okay, we had no match. Try to return a useful error code.\n";
Chad Rosier4c1d2ba2012-08-21 17:22:47 +00002932 OS << " if (HadMatchOtherThanPredicate || !HadMatchOtherThanFeatures)\n";
2933 OS << " return RetCode;\n\n";
Jim Grosbach325bd662012-06-18 19:45:46 +00002934 OS << " // Missing feature matches return which features were missing\n";
2935 OS << " ErrorInfo = MissingFeatures;\n";
Jim Grosbach578071a2011-08-16 20:12:35 +00002936 OS << " return Match_MissingFeature;\n";
Daniel Dunbara027d222009-07-31 02:32:59 +00002937 OS << "}\n\n";
Jim Grosbacha7c78222010-10-29 22:13:48 +00002938
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002939 if (Info.OperandMatchInfo.size())
Craig Topper3a364442012-09-18 07:02:21 +00002940 emitCustomOperandParsing(OS, Target, Info, ClassName, StringTable,
2941 MaxMnemonicIndex);
Bruno Cardoso Lopese7a54522011-02-07 19:38:32 +00002942
Chris Lattner0692ee62010-09-06 19:11:01 +00002943 OS << "#endif // GET_MATCHER_IMPLEMENTATION\n\n";
Daniel Dunbard51ffcf2009-07-11 19:39:44 +00002944}
Jakob Stoklund Olesen6f36fa92012-06-11 15:37:55 +00002945
2946namespace llvm {
2947
2948void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS) {
2949 emitSourceFileHeader("Assembly Matcher Source Fragment", OS);
2950 AsmMatcherEmitter(RK).run(OS);
2951}
2952
2953} // End llvm namespace