blob: 424f02f7ab33e83bafbcaaf81cc8ffa897797f31 [file] [log] [blame]
Chris Lattnerfe718932008-01-06 01:10:31 +00001//===- CodeGenDAGPatterns.h - Read DAG patterns from .td file ---*- C++ -*-===//
Chris Lattner6cefb772008-01-05 22:25:12 +00002//
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//
Chris Lattnerfe718932008-01-06 01:10:31 +000010// This file declares the CodeGenDAGPatterns class, which is used to read and
Chris Lattner6cefb772008-01-05 22:25:12 +000011// represent the patterns present in a .td file for instructions.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef CODEGEN_DAGPATTERNS_H
16#define CODEGEN_DAGPATTERNS_H
17
Chris Lattner6cefb772008-01-05 22:25:12 +000018#include "CodeGenIntrinsics.h"
Chandler Carruth4ffd89f2012-12-04 10:37:14 +000019#include "CodeGenTarget.h"
Chris Lattner2cacec52010-03-15 06:00:16 +000020#include "llvm/ADT/SmallVector.h"
21#include "llvm/ADT/StringMap.h"
Craig Topper655b8de2012-02-05 07:21:30 +000022#include "llvm/Support/ErrorHandling.h"
Chris Lattnere14d2e22010-03-19 01:07:44 +000023#include <algorithm>
Chris Lattnere14d2e22010-03-19 01:07:44 +000024#include <map>
Chandler Carruth4ffd89f2012-12-04 10:37:14 +000025#include <set>
26#include <vector>
Chris Lattner6cefb772008-01-05 22:25:12 +000027
28namespace llvm {
29 class Record;
David Greeneafd54262011-07-13 22:25:51 +000030 class Init;
Chris Lattner6cefb772008-01-05 22:25:12 +000031 class ListInit;
32 class DagInit;
33 class SDNodeInfo;
34 class TreePattern;
35 class TreePatternNode;
Chris Lattnerfe718932008-01-06 01:10:31 +000036 class CodeGenDAGPatterns;
Chris Lattner6cefb772008-01-05 22:25:12 +000037 class ComplexPattern;
38
Owen Andersone50ed302009-08-10 22:56:29 +000039/// EEVT::DAGISelGenValueType - These are some extended forms of
Owen Anderson825b72b2009-08-11 20:47:22 +000040/// MVT::SimpleValueType that we use as lattice values during type inference.
Bob Wilsoncdfa01b2009-08-29 05:53:25 +000041/// The existing MVT iAny, fAny and vAny types suffice to represent
42/// arbitrary integer, floating-point, and vector types, so only an unknown
43/// value is needed.
Owen Andersone50ed302009-08-10 22:56:29 +000044namespace EEVT {
Chris Lattner2cacec52010-03-15 06:00:16 +000045 /// TypeSet - This is either empty if it's completely unknown, or holds a set
46 /// of types. It is used during type inference because register classes can
47 /// have multiple possible types and we don't know which one they get until
48 /// type inference is complete.
49 ///
50 /// TypeSet can have three states:
51 /// Vector is empty: The type is completely unknown, it can be any valid
52 /// target type.
53 /// Vector has multiple constrained types: (e.g. v4i32 + v4f32) it is one
54 /// of those types only.
55 /// Vector has one concrete type: The type is completely known.
56 ///
57 class TypeSet {
Chris Lattner774ce292010-03-19 17:41:26 +000058 SmallVector<MVT::SimpleValueType, 4> TypeVec;
Chris Lattner2cacec52010-03-15 06:00:16 +000059 public:
60 TypeSet() {}
61 TypeSet(MVT::SimpleValueType VT, TreePattern &TP);
Jim Grosbach398abb42010-12-24 05:06:32 +000062 TypeSet(const std::vector<MVT::SimpleValueType> &VTList);
63
Chris Lattner2cacec52010-03-15 06:00:16 +000064 bool isCompletelyUnknown() const { return TypeVec.empty(); }
Jim Grosbach398abb42010-12-24 05:06:32 +000065
Chris Lattner2cacec52010-03-15 06:00:16 +000066 bool isConcrete() const {
67 if (TypeVec.size() != 1) return false;
68 unsigned char T = TypeVec[0]; (void)T;
69 assert(T < MVT::LAST_VALUETYPE || T == MVT::iPTR || T == MVT::iPTRAny);
70 return true;
71 }
Jim Grosbach398abb42010-12-24 05:06:32 +000072
Chris Lattner2cacec52010-03-15 06:00:16 +000073 MVT::SimpleValueType getConcrete() const {
74 assert(isConcrete() && "Type isn't concrete yet");
75 return (MVT::SimpleValueType)TypeVec[0];
76 }
Jim Grosbach398abb42010-12-24 05:06:32 +000077
Chris Lattner2cacec52010-03-15 06:00:16 +000078 bool isDynamicallyResolved() const {
79 return getConcrete() == MVT::iPTR || getConcrete() == MVT::iPTRAny;
80 }
Jim Grosbach398abb42010-12-24 05:06:32 +000081
Chris Lattner2cacec52010-03-15 06:00:16 +000082 const SmallVectorImpl<MVT::SimpleValueType> &getTypeList() const {
83 assert(!TypeVec.empty() && "Not a type list!");
84 return TypeVec;
85 }
Jim Grosbach398abb42010-12-24 05:06:32 +000086
Chris Lattner6c6ba362010-03-18 23:15:10 +000087 bool isVoid() const {
88 return TypeVec.size() == 1 && TypeVec[0] == MVT::isVoid;
89 }
Jim Grosbach398abb42010-12-24 05:06:32 +000090
Chris Lattner2cacec52010-03-15 06:00:16 +000091 /// hasIntegerTypes - Return true if this TypeSet contains any integer value
92 /// types.
93 bool hasIntegerTypes() const;
Jim Grosbach398abb42010-12-24 05:06:32 +000094
Chris Lattner2cacec52010-03-15 06:00:16 +000095 /// hasFloatingPointTypes - Return true if this TypeSet contains an fAny or
96 /// a floating point value type.
97 bool hasFloatingPointTypes() const;
Jim Grosbach398abb42010-12-24 05:06:32 +000098
Chris Lattner2cacec52010-03-15 06:00:16 +000099 /// hasVectorTypes - Return true if this TypeSet contains a vector value
100 /// type.
101 bool hasVectorTypes() const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000102
Chris Lattner2cacec52010-03-15 06:00:16 +0000103 /// getName() - Return this TypeSet as a string.
104 std::string getName() const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000105
Chris Lattner2cacec52010-03-15 06:00:16 +0000106 /// MergeInTypeInfo - This merges in type information from the specified
107 /// argument. If 'this' changes, it returns true. If the two types are
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000108 /// contradictory (e.g. merge f32 into i32) then this flags an error.
Chris Lattner2cacec52010-03-15 06:00:16 +0000109 bool MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000110
Chris Lattner2cacec52010-03-15 06:00:16 +0000111 bool MergeInTypeInfo(MVT::SimpleValueType InVT, TreePattern &TP) {
112 return MergeInTypeInfo(EEVT::TypeSet(InVT, TP), TP);
113 }
Chris Lattner6cefb772008-01-05 22:25:12 +0000114
Chris Lattner2cacec52010-03-15 06:00:16 +0000115 /// Force this type list to only contain integer types.
116 bool EnforceInteger(TreePattern &TP);
Bob Wilson36e3e662009-08-12 22:30:59 +0000117
Chris Lattner2cacec52010-03-15 06:00:16 +0000118 /// Force this type list to only contain floating point types.
119 bool EnforceFloatingPoint(TreePattern &TP);
120
121 /// EnforceScalar - Remove all vector types from this type list.
122 bool EnforceScalar(TreePattern &TP);
123
124 /// EnforceVector - Remove all non-vector types from this type list.
125 bool EnforceVector(TreePattern &TP);
126
127 /// EnforceSmallerThan - 'this' must be a smaller VT than Other. Update
128 /// this an other based on this information.
129 bool EnforceSmallerThan(EEVT::TypeSet &Other, TreePattern &TP);
Jim Grosbach398abb42010-12-24 05:06:32 +0000130
Chris Lattner2cacec52010-03-15 06:00:16 +0000131 /// EnforceVectorEltTypeIs - 'this' is now constrainted to be a vector type
132 /// whose element is VT.
Chris Lattner66fb9d22010-03-24 00:01:16 +0000133 bool EnforceVectorEltTypeIs(EEVT::TypeSet &VT, TreePattern &TP);
Jim Grosbach398abb42010-12-24 05:06:32 +0000134
David Greene60322692011-01-24 20:53:18 +0000135 /// EnforceVectorSubVectorTypeIs - 'this' is now constrainted to
136 /// be a vector type VT.
137 bool EnforceVectorSubVectorTypeIs(EEVT::TypeSet &VT, TreePattern &TP);
138
Chris Lattner2cacec52010-03-15 06:00:16 +0000139 bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
140 bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000141
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000142 private:
143 /// FillWithPossibleTypes - Set to all legal types and return true, only
Chris Lattner774ce292010-03-19 17:41:26 +0000144 /// valid on completely unknown type sets. If Pred is non-null, only MVTs
145 /// that pass the predicate are added.
146 bool FillWithPossibleTypes(TreePattern &TP,
147 bool (*Pred)(MVT::SimpleValueType) = 0,
148 const char *PredicateName = 0);
Chris Lattner2cacec52010-03-15 06:00:16 +0000149 };
Chris Lattner6cefb772008-01-05 22:25:12 +0000150}
151
Scott Michel327d0652008-03-05 17:49:05 +0000152/// Set type used to track multiply used variables in patterns
153typedef std::set<std::string> MultipleUseVarSet;
154
Chris Lattner6cefb772008-01-05 22:25:12 +0000155/// SDTypeConstraint - This is a discriminated union of constraints,
156/// corresponding to the SDTypeConstraint tablegen class in Target.td.
157struct SDTypeConstraint {
158 SDTypeConstraint(Record *R);
Jim Grosbach398abb42010-12-24 05:06:32 +0000159
Chris Lattner6cefb772008-01-05 22:25:12 +0000160 unsigned OperandNo; // The operand # this constraint applies to.
Jim Grosbach398abb42010-12-24 05:06:32 +0000161 enum {
162 SDTCisVT, SDTCisPtrTy, SDTCisInt, SDTCisFP, SDTCisVec, SDTCisSameAs,
David Greene60322692011-01-24 20:53:18 +0000163 SDTCisVTSmallerThanOp, SDTCisOpSmallerThanOp, SDTCisEltOfVec,
164 SDTCisSubVecOfVec
Chris Lattner6cefb772008-01-05 22:25:12 +0000165 } ConstraintType;
Jim Grosbach398abb42010-12-24 05:06:32 +0000166
Chris Lattner6cefb772008-01-05 22:25:12 +0000167 union { // The discriminated union.
168 struct {
Chris Lattner2cacec52010-03-15 06:00:16 +0000169 MVT::SimpleValueType VT;
Chris Lattner6cefb772008-01-05 22:25:12 +0000170 } SDTCisVT_Info;
171 struct {
172 unsigned OtherOperandNum;
173 } SDTCisSameAs_Info;
174 struct {
175 unsigned OtherOperandNum;
176 } SDTCisVTSmallerThanOp_Info;
177 struct {
178 unsigned BigOperandNum;
179 } SDTCisOpSmallerThanOp_Info;
180 struct {
181 unsigned OtherOperandNum;
Nate Begemanb5af3342008-02-09 01:37:05 +0000182 } SDTCisEltOfVec_Info;
David Greene60322692011-01-24 20:53:18 +0000183 struct {
184 unsigned OtherOperandNum;
185 } SDTCisSubVecOfVec_Info;
Chris Lattner6cefb772008-01-05 22:25:12 +0000186 } x;
187
188 /// ApplyTypeConstraint - Given a node in a pattern, apply this type
189 /// constraint to the nodes operands. This returns true if it makes a
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000190 /// change, false otherwise. If a type contradiction is found, an error
191 /// is flagged.
Chris Lattner6cefb772008-01-05 22:25:12 +0000192 bool ApplyTypeConstraint(TreePatternNode *N, const SDNodeInfo &NodeInfo,
193 TreePattern &TP) const;
Chris Lattner6cefb772008-01-05 22:25:12 +0000194};
195
196/// SDNodeInfo - One of these records is created for each SDNode instance in
197/// the target .td file. This represents the various dag nodes we will be
198/// processing.
199class SDNodeInfo {
200 Record *Def;
201 std::string EnumName;
202 std::string SDClassName;
203 unsigned Properties;
204 unsigned NumResults;
205 int NumOperands;
206 std::vector<SDTypeConstraint> TypeConstraints;
207public:
208 SDNodeInfo(Record *R); // Parse the specified record.
Jim Grosbach398abb42010-12-24 05:06:32 +0000209
Chris Lattner6cefb772008-01-05 22:25:12 +0000210 unsigned getNumResults() const { return NumResults; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000211
Chris Lattner2a22cdc2010-03-28 08:48:47 +0000212 /// getNumOperands - This is the number of operands required or -1 if
213 /// variadic.
Chris Lattner6cefb772008-01-05 22:25:12 +0000214 int getNumOperands() const { return NumOperands; }
215 Record *getRecord() const { return Def; }
216 const std::string &getEnumName() const { return EnumName; }
217 const std::string &getSDClassName() const { return SDClassName; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000218
Chris Lattner6cefb772008-01-05 22:25:12 +0000219 const std::vector<SDTypeConstraint> &getTypeConstraints() const {
220 return TypeConstraints;
221 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000222
Chris Lattner22579812010-02-28 00:22:30 +0000223 /// getKnownType - If the type constraints on this node imply a fixed type
224 /// (e.g. all stores return void, etc), then return it as an
Chris Lattneraac5b5b2010-03-19 01:14:27 +0000225 /// MVT::SimpleValueType. Otherwise, return MVT::Other.
Chris Lattner084df622010-03-24 00:41:19 +0000226 MVT::SimpleValueType getKnownType(unsigned ResNo) const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000227
Chris Lattner6cefb772008-01-05 22:25:12 +0000228 /// hasProperty - Return true if this node has the specified property.
229 ///
230 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
231
232 /// ApplyTypeConstraints - Given a node in a pattern, apply the type
233 /// constraints for this node to the operands of the node. This returns
234 /// true if it makes a change, false otherwise. If a type contradiction is
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000235 /// found, an error is flagged.
Chris Lattner6cefb772008-01-05 22:25:12 +0000236 bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const {
237 bool MadeChange = false;
238 for (unsigned i = 0, e = TypeConstraints.size(); i != e; ++i)
239 MadeChange |= TypeConstraints[i].ApplyTypeConstraint(N, *this, TP);
240 return MadeChange;
241 }
242};
Chris Lattner54379062011-04-17 21:38:24 +0000243
244/// TreePredicateFn - This is an abstraction that represents the predicates on
245/// a PatFrag node. This is a simple one-word wrapper around a pointer to
246/// provide nice accessors.
247class TreePredicateFn {
248 /// PatFragRec - This is the TreePattern for the PatFrag that we
249 /// originally came from.
250 TreePattern *PatFragRec;
251public:
252 /// TreePredicateFn constructor. Here 'N' is a subclass of PatFrag.
Chris Lattner7ed13912011-04-17 22:05:17 +0000253 TreePredicateFn(TreePattern *N);
Chris Lattner54379062011-04-17 21:38:24 +0000254
255
256 TreePattern *getOrigPatFragRecord() const { return PatFragRec; }
257
258 /// isAlwaysTrue - Return true if this is a noop predicate.
259 bool isAlwaysTrue() const;
260
Chris Lattner1518afd2011-04-18 06:22:33 +0000261 bool isImmediatePattern() const { return !getImmCode().empty(); }
262
263 /// getImmediatePredicateCode - Return the code that evaluates this pattern if
264 /// this is an immediate predicate. It is an error to call this on a
265 /// non-immediate pattern.
266 std::string getImmediatePredicateCode() const {
267 std::string Result = getImmCode();
268 assert(!Result.empty() && "Isn't an immediate pattern!");
269 return Result;
270 }
271
Chris Lattner54379062011-04-17 21:38:24 +0000272
273 bool operator==(const TreePredicateFn &RHS) const {
274 return PatFragRec == RHS.PatFragRec;
275 }
276
277 bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
278
279 /// Return the name to use in the generated code to reference this, this is
280 /// "Predicate_foo" if from a pattern fragment "foo".
281 std::string getFnName() const;
282
283 /// getCodeToRunOnSDNode - Return the code for the function body that
284 /// evaluates this predicate. The argument is expected to be in "Node",
285 /// not N. This handles casting and conversion to a concrete node type as
286 /// appropriate.
287 std::string getCodeToRunOnSDNode() const;
288
289private:
290 std::string getPredCode() const;
Chris Lattner7ed13912011-04-17 22:05:17 +0000291 std::string getImmCode() const;
Chris Lattner54379062011-04-17 21:38:24 +0000292};
293
Chris Lattner6cefb772008-01-05 22:25:12 +0000294
295/// FIXME: TreePatternNode's can be shared in some cases (due to dag-shaped
296/// patterns), and as such should be ref counted. We currently just leak all
297/// TreePatternNode objects!
298class TreePatternNode {
Chris Lattnerd7349192010-03-19 21:37:09 +0000299 /// The type of each node result. Before and during type inference, each
300 /// result may be a set of possible types. After (successful) type inference,
301 /// each is a single concrete type.
302 SmallVector<EEVT::TypeSet, 1> Types;
Jim Grosbach398abb42010-12-24 05:06:32 +0000303
Chris Lattner6cefb772008-01-05 22:25:12 +0000304 /// Operator - The Record for the operator if this is an interior node (not
305 /// a leaf).
306 Record *Operator;
Jim Grosbach398abb42010-12-24 05:06:32 +0000307
Chris Lattner6cefb772008-01-05 22:25:12 +0000308 /// Val - The init value (e.g. the "GPRC" record, or "7") for a leaf.
309 ///
David Greene05bce0b2011-07-29 22:43:06 +0000310 Init *Val;
Jim Grosbach398abb42010-12-24 05:06:32 +0000311
Chris Lattner6cefb772008-01-05 22:25:12 +0000312 /// Name - The name given to this node with the :$foo notation.
313 ///
314 std::string Name;
Jim Grosbach398abb42010-12-24 05:06:32 +0000315
Dan Gohman0540e172008-10-15 06:17:21 +0000316 /// PredicateFns - The predicate functions to execute on this node to check
317 /// for a match. If this list is empty, no predicate is involved.
Chris Lattner54379062011-04-17 21:38:24 +0000318 std::vector<TreePredicateFn> PredicateFns;
Jim Grosbach398abb42010-12-24 05:06:32 +0000319
Chris Lattner6cefb772008-01-05 22:25:12 +0000320 /// TransformFn - The transformation function to execute on this node before
321 /// it can be substituted into the resulting instruction on a pattern match.
322 Record *TransformFn;
Jim Grosbach398abb42010-12-24 05:06:32 +0000323
Chris Lattner6cefb772008-01-05 22:25:12 +0000324 std::vector<TreePatternNode*> Children;
325public:
Chris Lattnerd7349192010-03-19 21:37:09 +0000326 TreePatternNode(Record *Op, const std::vector<TreePatternNode*> &Ch,
Jim Grosbach398abb42010-12-24 05:06:32 +0000327 unsigned NumResults)
Chris Lattnerd7349192010-03-19 21:37:09 +0000328 : Operator(Op), Val(0), TransformFn(0), Children(Ch) {
329 Types.resize(NumResults);
330 }
David Greene05bce0b2011-07-29 22:43:06 +0000331 TreePatternNode(Init *val, unsigned NumResults) // leaf ctor
Chris Lattner2cacec52010-03-15 06:00:16 +0000332 : Operator(0), Val(val), TransformFn(0) {
Chris Lattnerd7349192010-03-19 21:37:09 +0000333 Types.resize(NumResults);
Chris Lattner6cefb772008-01-05 22:25:12 +0000334 }
335 ~TreePatternNode();
Jim Grosbach398abb42010-12-24 05:06:32 +0000336
Chris Lattner6cefb772008-01-05 22:25:12 +0000337 const std::string &getName() const { return Name; }
Chris Lattnerc2173052010-03-28 06:50:34 +0000338 void setName(StringRef N) { Name.assign(N.begin(), N.end()); }
Jim Grosbach398abb42010-12-24 05:06:32 +0000339
Chris Lattner6cefb772008-01-05 22:25:12 +0000340 bool isLeaf() const { return Val != 0; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000341
Chris Lattner2cacec52010-03-15 06:00:16 +0000342 // Type accessors.
Chris Lattnerd7349192010-03-19 21:37:09 +0000343 unsigned getNumTypes() const { return Types.size(); }
344 MVT::SimpleValueType getType(unsigned ResNo) const {
345 return Types[ResNo].getConcrete();
346 }
347 const SmallVectorImpl<EEVT::TypeSet> &getExtTypes() const { return Types; }
348 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
349 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
350 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000351
Chris Lattnerd7349192010-03-19 21:37:09 +0000352 bool hasTypeSet(unsigned ResNo) const {
353 return Types[ResNo].isConcrete();
354 }
355 bool isTypeCompletelyUnknown(unsigned ResNo) const {
356 return Types[ResNo].isCompletelyUnknown();
357 }
358 bool isTypeDynamicallyResolved(unsigned ResNo) const {
359 return Types[ResNo].isDynamicallyResolved();
360 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000361
David Greene05bce0b2011-07-29 22:43:06 +0000362 Init *getLeafValue() const { assert(isLeaf()); return Val; }
Chris Lattner6cefb772008-01-05 22:25:12 +0000363 Record *getOperator() const { assert(!isLeaf()); return Operator; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000364
Chris Lattner6cefb772008-01-05 22:25:12 +0000365 unsigned getNumChildren() const { return Children.size(); }
366 TreePatternNode *getChild(unsigned N) const { return Children[N]; }
367 void setChild(unsigned i, TreePatternNode *N) {
368 Children[i] = N;
369 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000370
Chris Lattnere39650a2010-02-16 06:10:58 +0000371 /// hasChild - Return true if N is any of our children.
372 bool hasChild(const TreePatternNode *N) const {
373 for (unsigned i = 0, e = Children.size(); i != e; ++i)
374 if (Children[i] == N) return true;
375 return false;
376 }
Chris Lattnere67bde52008-01-06 05:36:50 +0000377
Chris Lattner54379062011-04-17 21:38:24 +0000378 bool hasAnyPredicate() const { return !PredicateFns.empty(); }
379
380 const std::vector<TreePredicateFn> &getPredicateFns() const {
381 return PredicateFns;
382 }
Dan Gohman0540e172008-10-15 06:17:21 +0000383 void clearPredicateFns() { PredicateFns.clear(); }
Chris Lattner54379062011-04-17 21:38:24 +0000384 void setPredicateFns(const std::vector<TreePredicateFn> &Fns) {
Dan Gohman0540e172008-10-15 06:17:21 +0000385 assert(PredicateFns.empty() && "Overwriting non-empty predicate list!");
386 PredicateFns = Fns;
387 }
Chris Lattner54379062011-04-17 21:38:24 +0000388 void addPredicateFn(const TreePredicateFn &Fn) {
389 assert(!Fn.isAlwaysTrue() && "Empty predicate string!");
Dan Gohman0540e172008-10-15 06:17:21 +0000390 if (std::find(PredicateFns.begin(), PredicateFns.end(), Fn) ==
391 PredicateFns.end())
392 PredicateFns.push_back(Fn);
393 }
Chris Lattner6cefb772008-01-05 22:25:12 +0000394
395 Record *getTransformFn() const { return TransformFn; }
396 void setTransformFn(Record *Fn) { TransformFn = Fn; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000397
Chris Lattnere67bde52008-01-06 05:36:50 +0000398 /// getIntrinsicInfo - If this node corresponds to an intrinsic, return the
399 /// CodeGenIntrinsic information for it, otherwise return a null pointer.
400 const CodeGenIntrinsic *getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const;
Evan Cheng6bd95672008-06-16 20:29:38 +0000401
Chris Lattner47661322010-02-14 22:22:58 +0000402 /// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
403 /// return the ComplexPattern information, otherwise return null.
404 const ComplexPattern *
405 getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const;
406
407 /// NodeHasProperty - Return true if this node has the specified property.
Chris Lattner751d5aa2010-02-14 22:33:49 +0000408 bool NodeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000409
Chris Lattner47661322010-02-14 22:22:58 +0000410 /// TreeHasProperty - Return true if any node in this tree has the specified
411 /// property.
Chris Lattner751d5aa2010-02-14 22:33:49 +0000412 bool TreeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000413
Evan Cheng6bd95672008-06-16 20:29:38 +0000414 /// isCommutativeIntrinsic - Return true if the node is an intrinsic which is
415 /// marked isCommutative.
416 bool isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000417
Daniel Dunbar1a551802009-07-03 00:10:29 +0000418 void print(raw_ostream &OS) const;
Chris Lattner6cefb772008-01-05 22:25:12 +0000419 void dump() const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000420
Chris Lattner6cefb772008-01-05 22:25:12 +0000421public: // Higher level manipulation routines.
422
423 /// clone - Return a new copy of this tree.
424 ///
425 TreePatternNode *clone() const;
Chris Lattner47661322010-02-14 22:22:58 +0000426
427 /// RemoveAllTypes - Recursively strip all the types of this tree.
428 void RemoveAllTypes();
Jim Grosbach398abb42010-12-24 05:06:32 +0000429
Chris Lattner6cefb772008-01-05 22:25:12 +0000430 /// isIsomorphicTo - Return true if this node is recursively isomorphic to
431 /// the specified node. For this comparison, all of the state of the node
432 /// is considered, except for the assigned name. Nodes with differing names
433 /// that are otherwise identical are considered isomorphic.
Scott Michel327d0652008-03-05 17:49:05 +0000434 bool isIsomorphicTo(const TreePatternNode *N,
435 const MultipleUseVarSet &DepVars) const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000436
Chris Lattner6cefb772008-01-05 22:25:12 +0000437 /// SubstituteFormalArguments - Replace the formal arguments in this tree
438 /// with actual values specified by ArgMap.
439 void SubstituteFormalArguments(std::map<std::string,
440 TreePatternNode*> &ArgMap);
441
442 /// InlinePatternFragments - If this pattern refers to any pattern
443 /// fragments, inline them into place, giving us a pattern without any
444 /// PatFrag references.
445 TreePatternNode *InlinePatternFragments(TreePattern &TP);
Jim Grosbach398abb42010-12-24 05:06:32 +0000446
Bob Wilson6c01ca92009-01-05 17:23:09 +0000447 /// ApplyTypeConstraints - Apply all of the type constraints relevant to
Chris Lattner6cefb772008-01-05 22:25:12 +0000448 /// this node and its children in the tree. This returns true if it makes a
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000449 /// change, false otherwise. If a type contradiction is found, flag an error.
Chris Lattner6cefb772008-01-05 22:25:12 +0000450 bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters);
Jim Grosbach398abb42010-12-24 05:06:32 +0000451
Chris Lattner6cefb772008-01-05 22:25:12 +0000452 /// UpdateNodeType - Set the node type of N to VT if VT contains
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000453 /// information. If N already contains a conflicting type, then flag an
454 /// error. This returns true if any information was updated.
Chris Lattner6cefb772008-01-05 22:25:12 +0000455 ///
Chris Lattnerd7349192010-03-19 21:37:09 +0000456 bool UpdateNodeType(unsigned ResNo, const EEVT::TypeSet &InTy,
457 TreePattern &TP) {
458 return Types[ResNo].MergeInTypeInfo(InTy, TP);
Chris Lattner2cacec52010-03-15 06:00:16 +0000459 }
460
Chris Lattnerd7349192010-03-19 21:37:09 +0000461 bool UpdateNodeType(unsigned ResNo, MVT::SimpleValueType InTy,
462 TreePattern &TP) {
463 return Types[ResNo].MergeInTypeInfo(EEVT::TypeSet(InTy, TP), TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000464 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000465
Chris Lattner6cefb772008-01-05 22:25:12 +0000466 /// ContainsUnresolvedType - Return true if this tree contains any
467 /// unresolved types.
468 bool ContainsUnresolvedType() const {
Chris Lattnerd7349192010-03-19 21:37:09 +0000469 for (unsigned i = 0, e = Types.size(); i != e; ++i)
470 if (!Types[i].isConcrete()) return true;
Jim Grosbach398abb42010-12-24 05:06:32 +0000471
Chris Lattner6cefb772008-01-05 22:25:12 +0000472 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
473 if (getChild(i)->ContainsUnresolvedType()) return true;
474 return false;
475 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000476
Chris Lattner6cefb772008-01-05 22:25:12 +0000477 /// canPatternMatch - If it is impossible for this pattern to match on this
478 /// target, fill in Reason and return false. Otherwise, return true.
Dan Gohmanee4fa192008-04-03 00:02:49 +0000479 bool canPatternMatch(std::string &Reason, const CodeGenDAGPatterns &CDP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000480};
481
Chris Lattner383fed92010-02-14 21:10:33 +0000482inline raw_ostream &operator<<(raw_ostream &OS, const TreePatternNode &TPN) {
483 TPN.print(OS);
484 return OS;
485}
Jim Grosbach398abb42010-12-24 05:06:32 +0000486
Chris Lattner6cefb772008-01-05 22:25:12 +0000487
488/// TreePattern - Represent a pattern, used for instructions, pattern
489/// fragments, etc.
490///
491class TreePattern {
492 /// Trees - The list of pattern trees which corresponds to this pattern.
493 /// Note that PatFrag's only have a single tree.
494 ///
495 std::vector<TreePatternNode*> Trees;
Jim Grosbach398abb42010-12-24 05:06:32 +0000496
Chris Lattner2cacec52010-03-15 06:00:16 +0000497 /// NamedNodes - This is all of the nodes that have names in the trees in this
498 /// pattern.
499 StringMap<SmallVector<TreePatternNode*,1> > NamedNodes;
Jim Grosbach398abb42010-12-24 05:06:32 +0000500
Chris Lattner6cefb772008-01-05 22:25:12 +0000501 /// TheRecord - The actual TableGen record corresponding to this pattern.
502 ///
503 Record *TheRecord;
Jim Grosbach398abb42010-12-24 05:06:32 +0000504
Chris Lattner6cefb772008-01-05 22:25:12 +0000505 /// Args - This is a list of all of the arguments to this pattern (for
506 /// PatFrag patterns), which are the 'node' markers in this pattern.
507 std::vector<std::string> Args;
Jim Grosbach398abb42010-12-24 05:06:32 +0000508
Chris Lattner6cefb772008-01-05 22:25:12 +0000509 /// CDP - the top-level object coordinating this madness.
510 ///
Chris Lattnerfe718932008-01-06 01:10:31 +0000511 CodeGenDAGPatterns &CDP;
Chris Lattner6cefb772008-01-05 22:25:12 +0000512
513 /// isInputPattern - True if this is an input pattern, something to match.
514 /// False if this is an output pattern, something to emit.
515 bool isInputPattern;
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000516
517 /// hasError - True if the currently processed nodes have unresolvable types
518 /// or other non-fatal errors
519 bool HasError;
Chris Lattner6cefb772008-01-05 22:25:12 +0000520public:
Jim Grosbach398abb42010-12-24 05:06:32 +0000521
Chris Lattner6cefb772008-01-05 22:25:12 +0000522 /// TreePattern constructor - Parse the specified DagInits into the
523 /// current record.
David Greene05bce0b2011-07-29 22:43:06 +0000524 TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattnerfe718932008-01-06 01:10:31 +0000525 CodeGenDAGPatterns &ise);
David Greene05bce0b2011-07-29 22:43:06 +0000526 TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnerfe718932008-01-06 01:10:31 +0000527 CodeGenDAGPatterns &ise);
Chris Lattner6cefb772008-01-05 22:25:12 +0000528 TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnerfe718932008-01-06 01:10:31 +0000529 CodeGenDAGPatterns &ise);
Jim Grosbach398abb42010-12-24 05:06:32 +0000530
Chris Lattner6cefb772008-01-05 22:25:12 +0000531 /// getTrees - Return the tree patterns which corresponds to this pattern.
532 ///
533 const std::vector<TreePatternNode*> &getTrees() const { return Trees; }
534 unsigned getNumTrees() const { return Trees.size(); }
535 TreePatternNode *getTree(unsigned i) const { return Trees[i]; }
536 TreePatternNode *getOnlyTree() const {
537 assert(Trees.size() == 1 && "Doesn't have exactly one pattern!");
538 return Trees[0];
539 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000540
Chris Lattner2cacec52010-03-15 06:00:16 +0000541 const StringMap<SmallVector<TreePatternNode*,1> > &getNamedNodesMap() {
542 if (NamedNodes.empty())
543 ComputeNamedNodes();
544 return NamedNodes;
545 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000546
Chris Lattner6cefb772008-01-05 22:25:12 +0000547 /// getRecord - Return the actual TableGen record corresponding to this
548 /// pattern.
549 ///
550 Record *getRecord() const { return TheRecord; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000551
Chris Lattner6cefb772008-01-05 22:25:12 +0000552 unsigned getNumArgs() const { return Args.size(); }
553 const std::string &getArgName(unsigned i) const {
554 assert(i < Args.size() && "Argument reference out of range!");
555 return Args[i];
556 }
557 std::vector<std::string> &getArgList() { return Args; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000558
Chris Lattnerfe718932008-01-06 01:10:31 +0000559 CodeGenDAGPatterns &getDAGPatterns() const { return CDP; }
Chris Lattner6cefb772008-01-05 22:25:12 +0000560
561 /// InlinePatternFragments - If this pattern refers to any pattern
562 /// fragments, inline them into place, giving us a pattern without any
563 /// PatFrag references.
564 void InlinePatternFragments() {
565 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
566 Trees[i] = Trees[i]->InlinePatternFragments(*this);
567 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000568
Chris Lattner6cefb772008-01-05 22:25:12 +0000569 /// InferAllTypes - Infer/propagate as many types throughout the expression
Jim Grosbachda4231f2009-03-26 16:17:51 +0000570 /// patterns as possible. Return true if all types are inferred, false
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000571 /// otherwise. Bail out if a type contradiction is found.
Chris Lattner2cacec52010-03-15 06:00:16 +0000572 bool InferAllTypes(const StringMap<SmallVector<TreePatternNode*,1> >
573 *NamedTypes=0);
Jim Grosbach398abb42010-12-24 05:06:32 +0000574
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000575 /// error - If this is the first error in the current resolution step,
576 /// print it and set the error flag. Otherwise, continue silently.
577 void error(const std::string &Msg);
578 bool hasError() const {
579 return HasError;
580 }
581 void resetError() {
582 HasError = false;
583 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000584
Daniel Dunbar1a551802009-07-03 00:10:29 +0000585 void print(raw_ostream &OS) const;
Chris Lattner6cefb772008-01-05 22:25:12 +0000586 void dump() const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000587
Chris Lattner6cefb772008-01-05 22:25:12 +0000588private:
David Greene05bce0b2011-07-29 22:43:06 +0000589 TreePatternNode *ParseTreePattern(Init *DI, StringRef OpName);
Chris Lattner2cacec52010-03-15 06:00:16 +0000590 void ComputeNamedNodes();
591 void ComputeNamedNodes(TreePatternNode *N);
Chris Lattner6cefb772008-01-05 22:25:12 +0000592};
593
Tom Stellard6d3d7652012-09-06 14:15:52 +0000594/// DAGDefaultOperand - One of these is created for each OperandWithDefaultOps
595/// that has a set ExecuteAlways / DefaultOps field.
Chris Lattner6cefb772008-01-05 22:25:12 +0000596struct DAGDefaultOperand {
597 std::vector<TreePatternNode*> DefaultOps;
598};
599
600class DAGInstruction {
601 TreePattern *Pattern;
602 std::vector<Record*> Results;
603 std::vector<Record*> Operands;
604 std::vector<Record*> ImpResults;
Chris Lattner6cefb772008-01-05 22:25:12 +0000605 TreePatternNode *ResultPattern;
606public:
607 DAGInstruction(TreePattern *TP,
608 const std::vector<Record*> &results,
609 const std::vector<Record*> &operands,
Chris Lattner62bcec82010-04-20 06:28:43 +0000610 const std::vector<Record*> &impresults)
Jim Grosbach398abb42010-12-24 05:06:32 +0000611 : Pattern(TP), Results(results), Operands(operands),
Chris Lattner62bcec82010-04-20 06:28:43 +0000612 ImpResults(impresults), ResultPattern(0) {}
Chris Lattner6cefb772008-01-05 22:25:12 +0000613
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000614 TreePattern *getPattern() const { return Pattern; }
Chris Lattner6cefb772008-01-05 22:25:12 +0000615 unsigned getNumResults() const { return Results.size(); }
616 unsigned getNumOperands() const { return Operands.size(); }
617 unsigned getNumImpResults() const { return ImpResults.size(); }
Chris Lattner6cefb772008-01-05 22:25:12 +0000618 const std::vector<Record*>& getImpResults() const { return ImpResults; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000619
Chris Lattner6cefb772008-01-05 22:25:12 +0000620 void setResultPattern(TreePatternNode *R) { ResultPattern = R; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000621
Chris Lattner6cefb772008-01-05 22:25:12 +0000622 Record *getResult(unsigned RN) const {
623 assert(RN < Results.size());
624 return Results[RN];
625 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000626
Chris Lattner6cefb772008-01-05 22:25:12 +0000627 Record *getOperand(unsigned ON) const {
628 assert(ON < Operands.size());
629 return Operands[ON];
630 }
631
632 Record *getImpResult(unsigned RN) const {
633 assert(RN < ImpResults.size());
634 return ImpResults[RN];
635 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000636
Chris Lattner6cefb772008-01-05 22:25:12 +0000637 TreePatternNode *getResultPattern() const { return ResultPattern; }
638};
Jim Grosbach398abb42010-12-24 05:06:32 +0000639
Chris Lattnerfe718932008-01-06 01:10:31 +0000640/// PatternToMatch - Used by CodeGenDAGPatterns to keep tab of patterns
Chris Lattner6cefb772008-01-05 22:25:12 +0000641/// processed to produce isel.
Chris Lattnerb49985a2010-02-18 06:47:49 +0000642class PatternToMatch {
643public:
David Greene05bce0b2011-07-29 22:43:06 +0000644 PatternToMatch(Record *srcrecord, ListInit *preds,
Chris Lattner6cefb772008-01-05 22:25:12 +0000645 TreePatternNode *src, TreePatternNode *dst,
646 const std::vector<Record*> &dstregs,
Chris Lattner117ccb72010-03-01 22:09:11 +0000647 unsigned complexity, unsigned uid)
Jim Grosbach997759a2010-12-07 23:05:49 +0000648 : SrcRecord(srcrecord), Predicates(preds), SrcPattern(src), DstPattern(dst),
Chris Lattner117ccb72010-03-01 22:09:11 +0000649 Dstregs(dstregs), AddedComplexity(complexity), ID(uid) {}
Chris Lattner6cefb772008-01-05 22:25:12 +0000650
Jim Grosbach997759a2010-12-07 23:05:49 +0000651 Record *SrcRecord; // Originating Record for the pattern.
David Greene05bce0b2011-07-29 22:43:06 +0000652 ListInit *Predicates; // Top level predicate conditions to match.
Chris Lattner6cefb772008-01-05 22:25:12 +0000653 TreePatternNode *SrcPattern; // Source pattern to match.
654 TreePatternNode *DstPattern; // Resulting pattern.
655 std::vector<Record*> Dstregs; // Physical register defs being matched.
656 unsigned AddedComplexity; // Add to matching pattern complexity.
Chris Lattner117ccb72010-03-01 22:09:11 +0000657 unsigned ID; // Unique ID for the record.
Chris Lattner6cefb772008-01-05 22:25:12 +0000658
Jim Grosbach997759a2010-12-07 23:05:49 +0000659 Record *getSrcRecord() const { return SrcRecord; }
David Greene05bce0b2011-07-29 22:43:06 +0000660 ListInit *getPredicates() const { return Predicates; }
Chris Lattner6cefb772008-01-05 22:25:12 +0000661 TreePatternNode *getSrcPattern() const { return SrcPattern; }
662 TreePatternNode *getDstPattern() const { return DstPattern; }
663 const std::vector<Record*> &getDstRegs() const { return Dstregs; }
664 unsigned getAddedComplexity() const { return AddedComplexity; }
Dan Gohman22bb3112008-08-22 00:20:26 +0000665
666 std::string getPredicateCheck() const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000667
Chris Lattner48e86db2010-03-29 01:40:38 +0000668 /// Compute the complexity metric for the input pattern. This roughly
669 /// corresponds to the number of nodes that are covered.
670 unsigned getPatternComplexity(const CodeGenDAGPatterns &CGP) const;
Chris Lattner6cefb772008-01-05 22:25:12 +0000671};
672
Chris Lattnerfe718932008-01-06 01:10:31 +0000673class CodeGenDAGPatterns {
Chris Lattner6cefb772008-01-05 22:25:12 +0000674 RecordKeeper &Records;
675 CodeGenTarget Target;
676 std::vector<CodeGenIntrinsic> Intrinsics;
Dale Johannesen49de9822009-02-05 01:49:45 +0000677 std::vector<CodeGenIntrinsic> TgtIntrinsics;
Jim Grosbach398abb42010-12-24 05:06:32 +0000678
Sean Silva90fee072012-09-19 01:47:00 +0000679 std::map<Record*, SDNodeInfo, LessRecordByID> SDNodes;
680 std::map<Record*, std::pair<Record*, std::string>, LessRecordByID> SDNodeXForms;
681 std::map<Record*, ComplexPattern, LessRecordByID> ComplexPatterns;
682 std::map<Record*, TreePattern*, LessRecordByID> PatternFragments;
683 std::map<Record*, DAGDefaultOperand, LessRecordByID> DefaultOperands;
684 std::map<Record*, DAGInstruction, LessRecordByID> Instructions;
Jim Grosbach398abb42010-12-24 05:06:32 +0000685
Chris Lattner6cefb772008-01-05 22:25:12 +0000686 // Specific SDNode definitions:
687 Record *intrinsic_void_sdnode;
688 Record *intrinsic_w_chain_sdnode, *intrinsic_wo_chain_sdnode;
Jim Grosbach398abb42010-12-24 05:06:32 +0000689
Chris Lattner6cefb772008-01-05 22:25:12 +0000690 /// PatternsToMatch - All of the things we are matching on the DAG. The first
691 /// value is the pattern to match, the second pattern is the result to
692 /// emit.
693 std::vector<PatternToMatch> PatternsToMatch;
694public:
Jim Grosbach398abb42010-12-24 05:06:32 +0000695 CodeGenDAGPatterns(RecordKeeper &R);
Chris Lattnerfe718932008-01-06 01:10:31 +0000696 ~CodeGenDAGPatterns();
Jim Grosbach398abb42010-12-24 05:06:32 +0000697
Dan Gohmanee4fa192008-04-03 00:02:49 +0000698 CodeGenTarget &getTargetInfo() { return Target; }
Chris Lattner6cefb772008-01-05 22:25:12 +0000699 const CodeGenTarget &getTargetInfo() const { return Target; }
Jim Grosbach398abb42010-12-24 05:06:32 +0000700
Chris Lattner6cefb772008-01-05 22:25:12 +0000701 Record *getSDNodeNamed(const std::string &Name) const;
Jim Grosbach398abb42010-12-24 05:06:32 +0000702
Chris Lattner6cefb772008-01-05 22:25:12 +0000703 const SDNodeInfo &getSDNodeInfo(Record *R) const {
704 assert(SDNodes.count(R) && "Unknown node!");
705 return SDNodes.find(R)->second;
706 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000707
Chris Lattner443e3f92008-01-05 22:54:53 +0000708 // Node transformation lookups.
709 typedef std::pair<Record*, std::string> NodeXForm;
710 const NodeXForm &getSDNodeTransform(Record *R) const {
Chris Lattner6cefb772008-01-05 22:25:12 +0000711 assert(SDNodeXForms.count(R) && "Invalid transform!");
712 return SDNodeXForms.find(R)->second;
713 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000714
Sean Silva90fee072012-09-19 01:47:00 +0000715 typedef std::map<Record*, NodeXForm, LessRecordByID>::const_iterator
Benjamin Kramer5b9e7ef2009-08-23 10:39:21 +0000716 nx_iterator;
Chris Lattner443e3f92008-01-05 22:54:53 +0000717 nx_iterator nx_begin() const { return SDNodeXForms.begin(); }
718 nx_iterator nx_end() const { return SDNodeXForms.end(); }
719
Jim Grosbach398abb42010-12-24 05:06:32 +0000720
Chris Lattner6cefb772008-01-05 22:25:12 +0000721 const ComplexPattern &getComplexPattern(Record *R) const {
722 assert(ComplexPatterns.count(R) && "Unknown addressing mode!");
723 return ComplexPatterns.find(R)->second;
724 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000725
Chris Lattner6cefb772008-01-05 22:25:12 +0000726 const CodeGenIntrinsic &getIntrinsic(Record *R) const {
727 for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
728 if (Intrinsics[i].TheDef == R) return Intrinsics[i];
Dale Johannesen49de9822009-02-05 01:49:45 +0000729 for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
730 if (TgtIntrinsics[i].TheDef == R) return TgtIntrinsics[i];
Craig Topper655b8de2012-02-05 07:21:30 +0000731 llvm_unreachable("Unknown intrinsic!");
Chris Lattner6cefb772008-01-05 22:25:12 +0000732 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000733
Chris Lattner6cefb772008-01-05 22:25:12 +0000734 const CodeGenIntrinsic &getIntrinsicInfo(unsigned IID) const {
Dale Johannesen49de9822009-02-05 01:49:45 +0000735 if (IID-1 < Intrinsics.size())
736 return Intrinsics[IID-1];
737 if (IID-Intrinsics.size()-1 < TgtIntrinsics.size())
738 return TgtIntrinsics[IID-Intrinsics.size()-1];
Craig Topper655b8de2012-02-05 07:21:30 +0000739 llvm_unreachable("Bad intrinsic ID!");
Chris Lattner6cefb772008-01-05 22:25:12 +0000740 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000741
Chris Lattner6cefb772008-01-05 22:25:12 +0000742 unsigned getIntrinsicID(Record *R) const {
743 for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
744 if (Intrinsics[i].TheDef == R) return i;
Dale Johannesen49de9822009-02-05 01:49:45 +0000745 for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
746 if (TgtIntrinsics[i].TheDef == R) return i + Intrinsics.size();
Craig Topper655b8de2012-02-05 07:21:30 +0000747 llvm_unreachable("Unknown intrinsic!");
Chris Lattner6cefb772008-01-05 22:25:12 +0000748 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000749
Chris Lattnerb49985a2010-02-18 06:47:49 +0000750 const DAGDefaultOperand &getDefaultOperand(Record *R) const {
Chris Lattner6cefb772008-01-05 22:25:12 +0000751 assert(DefaultOperands.count(R) &&"Isn't an analyzed default operand!");
752 return DefaultOperands.find(R)->second;
753 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000754
Chris Lattner6cefb772008-01-05 22:25:12 +0000755 // Pattern Fragment information.
756 TreePattern *getPatternFragment(Record *R) const {
757 assert(PatternFragments.count(R) && "Invalid pattern fragment request!");
758 return PatternFragments.find(R)->second;
759 }
Chris Lattnerd7349192010-03-19 21:37:09 +0000760 TreePattern *getPatternFragmentIfRead(Record *R) const {
761 if (!PatternFragments.count(R)) return 0;
762 return PatternFragments.find(R)->second;
763 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000764
Sean Silva90fee072012-09-19 01:47:00 +0000765 typedef std::map<Record*, TreePattern*, LessRecordByID>::const_iterator
Benjamin Kramer5b9e7ef2009-08-23 10:39:21 +0000766 pf_iterator;
Chris Lattner6cefb772008-01-05 22:25:12 +0000767 pf_iterator pf_begin() const { return PatternFragments.begin(); }
768 pf_iterator pf_end() const { return PatternFragments.end(); }
769
770 // Patterns to match information.
Chris Lattner60d81392008-01-05 22:30:17 +0000771 typedef std::vector<PatternToMatch>::const_iterator ptm_iterator;
772 ptm_iterator ptm_begin() const { return PatternsToMatch.begin(); }
773 ptm_iterator ptm_end() const { return PatternsToMatch.end(); }
Jim Grosbach398abb42010-12-24 05:06:32 +0000774
775
776
Chris Lattner6cefb772008-01-05 22:25:12 +0000777 const DAGInstruction &getInstruction(Record *R) const {
778 assert(Instructions.count(R) && "Unknown instruction!");
779 return Instructions.find(R)->second;
780 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000781
Chris Lattner6cefb772008-01-05 22:25:12 +0000782 Record *get_intrinsic_void_sdnode() const {
783 return intrinsic_void_sdnode;
784 }
785 Record *get_intrinsic_w_chain_sdnode() const {
786 return intrinsic_w_chain_sdnode;
787 }
788 Record *get_intrinsic_wo_chain_sdnode() const {
789 return intrinsic_wo_chain_sdnode;
790 }
Jim Grosbach398abb42010-12-24 05:06:32 +0000791
Jakob Stoklund Olesen11ee5082009-10-15 18:50:03 +0000792 bool hasTargetIntrinsics() { return !TgtIntrinsics.empty(); }
793
Chris Lattner6cefb772008-01-05 22:25:12 +0000794private:
795 void ParseNodeInfo();
Chris Lattner443e3f92008-01-05 22:54:53 +0000796 void ParseNodeTransforms();
Chris Lattner6cefb772008-01-05 22:25:12 +0000797 void ParseComplexPatterns();
Chris Lattnerdc32f982008-01-05 22:43:57 +0000798 void ParsePatternFragments();
Chris Lattner6cefb772008-01-05 22:25:12 +0000799 void ParseDefaultOperands();
800 void ParseInstructions();
801 void ParsePatterns();
Dan Gohmanee4fa192008-04-03 00:02:49 +0000802 void InferInstructionFlags();
Chris Lattner6cefb772008-01-05 22:25:12 +0000803 void GenerateVariants();
Jakob Stoklund Olesen325907d2012-08-28 03:26:49 +0000804 void VerifyInstructionFlags();
Jim Grosbach398abb42010-12-24 05:06:32 +0000805
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000806 void AddPatternToMatch(TreePattern *Pattern, const PatternToMatch &PTM);
Chris Lattner6cefb772008-01-05 22:25:12 +0000807 void FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
808 std::map<std::string,
809 TreePatternNode*> &InstInputs,
810 std::map<std::string,
811 TreePatternNode*> &InstResults,
Chris Lattner6cefb772008-01-05 22:25:12 +0000812 std::vector<Record*> &InstImpResults);
813};
814} // end namespace llvm
815
816#endif