blob: 9ce3cdfd7bc1533f536709a1aa3a95b6fa516ab2 [file] [log] [blame]
Chris Lattnerab3242f2008-01-06 01:10:31 +00001//===- CodeGenDAGPatterns.h - Read DAG patterns from .td file ---*- C++ -*-===//
Chris Lattner8cab0212008-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 Lattnerab3242f2008-01-06 01:10:31 +000010// This file declares the CodeGenDAGPatterns class, which is used to read and
Chris Lattner8cab0212008-01-05 22:25:12 +000011// represent the patterns present in a .td file for instructions.
12//
13//===----------------------------------------------------------------------===//
14
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000015#ifndef LLVM_UTILS_TABLEGEN_CODEGENDAGPATTERNS_H
16#define LLVM_UTILS_TABLEGEN_CODEGENDAGPATTERNS_H
Chris Lattner8cab0212008-01-05 22:25:12 +000017
Chris Lattner8cab0212008-01-05 22:25:12 +000018#include "CodeGenIntrinsics.h"
Chandler Carruth91d19d82012-12-04 10:37:14 +000019#include "CodeGenTarget.h"
Chris Lattnercabe0372010-03-15 06:00:16 +000020#include "llvm/ADT/SmallVector.h"
21#include "llvm/ADT/StringMap.h"
Craig Topperc4965bc2012-02-05 07:21:30 +000022#include "llvm/Support/ErrorHandling.h"
Chris Lattner1802b172010-03-19 01:07:44 +000023#include <algorithm>
Chris Lattner1802b172010-03-19 01:07:44 +000024#include <map>
Chandler Carruth91d19d82012-12-04 10:37:14 +000025#include <set>
26#include <vector>
Chris Lattner8cab0212008-01-05 22:25:12 +000027
28namespace llvm {
29 class Record;
David Greene9908c172011-07-13 22:25:51 +000030 class Init;
Chris Lattner8cab0212008-01-05 22:25:12 +000031 class ListInit;
32 class DagInit;
33 class SDNodeInfo;
34 class TreePattern;
35 class TreePatternNode;
Chris Lattnerab3242f2008-01-06 01:10:31 +000036 class CodeGenDAGPatterns;
Chris Lattner8cab0212008-01-05 22:25:12 +000037 class ComplexPattern;
38
Owen Anderson53aa7a92009-08-10 22:56:29 +000039/// EEVT::DAGISelGenValueType - These are some extended forms of
Owen Anderson9f944592009-08-11 20:47:22 +000040/// MVT::SimpleValueType that we use as lattice values during type inference.
Bob Wilson57b946c2009-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 Anderson53aa7a92009-08-10 22:56:29 +000044namespace EEVT {
Chris Lattnercabe0372010-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 Lattner6d765eb2010-03-19 17:41:26 +000058 SmallVector<MVT::SimpleValueType, 4> TypeVec;
Chris Lattnercabe0372010-03-15 06:00:16 +000059 public:
60 TypeSet() {}
61 TypeSet(MVT::SimpleValueType VT, TreePattern &TP);
Jakob Stoklund Olesen13d4a072013-03-17 17:26:09 +000062 TypeSet(ArrayRef<MVT::SimpleValueType> VTList);
Jim Grosbach50986b52010-12-24 05:06:32 +000063
Chris Lattnercabe0372010-03-15 06:00:16 +000064 bool isCompletelyUnknown() const { return TypeVec.empty(); }
Jim Grosbach50986b52010-12-24 05:06:32 +000065
Chris Lattnercabe0372010-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 Grosbach50986b52010-12-24 05:06:32 +000072
Chris Lattnercabe0372010-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 Grosbach50986b52010-12-24 05:06:32 +000077
Chris Lattnercabe0372010-03-15 06:00:16 +000078 bool isDynamicallyResolved() const {
79 return getConcrete() == MVT::iPTR || getConcrete() == MVT::iPTRAny;
80 }
Jim Grosbach50986b52010-12-24 05:06:32 +000081
Chris Lattnercabe0372010-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 Grosbach50986b52010-12-24 05:06:32 +000086
Chris Lattnerfdc20712010-03-18 23:15:10 +000087 bool isVoid() const {
88 return TypeVec.size() == 1 && TypeVec[0] == MVT::isVoid;
89 }
Jim Grosbach50986b52010-12-24 05:06:32 +000090
Chris Lattnercabe0372010-03-15 06:00:16 +000091 /// hasIntegerTypes - Return true if this TypeSet contains any integer value
92 /// types.
93 bool hasIntegerTypes() const;
Jim Grosbach50986b52010-12-24 05:06:32 +000094
Chris Lattnercabe0372010-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 Grosbach50986b52010-12-24 05:06:32 +000098
Craig Topper74169dc2014-01-28 04:49:01 +000099 /// hasScalarTypes - Return true if this TypeSet contains a scalar value
100 /// type.
101 bool hasScalarTypes() const;
102
Chris Lattnercabe0372010-03-15 06:00:16 +0000103 /// hasVectorTypes - Return true if this TypeSet contains a vector value
104 /// type.
105 bool hasVectorTypes() const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000106
Chris Lattnercabe0372010-03-15 06:00:16 +0000107 /// getName() - Return this TypeSet as a string.
108 std::string getName() const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000109
Chris Lattnercabe0372010-03-15 06:00:16 +0000110 /// MergeInTypeInfo - This merges in type information from the specified
111 /// argument. If 'this' changes, it returns true. If the two types are
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000112 /// contradictory (e.g. merge f32 into i32) then this flags an error.
Chris Lattnercabe0372010-03-15 06:00:16 +0000113 bool MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP);
Duncan Sands13237ac2008-06-06 12:08:01 +0000114
Chris Lattnercabe0372010-03-15 06:00:16 +0000115 bool MergeInTypeInfo(MVT::SimpleValueType InVT, TreePattern &TP) {
116 return MergeInTypeInfo(EEVT::TypeSet(InVT, TP), TP);
117 }
Chris Lattner8cab0212008-01-05 22:25:12 +0000118
Chris Lattnercabe0372010-03-15 06:00:16 +0000119 /// Force this type list to only contain integer types.
120 bool EnforceInteger(TreePattern &TP);
Bob Wilsonf7e587f2009-08-12 22:30:59 +0000121
Chris Lattnercabe0372010-03-15 06:00:16 +0000122 /// Force this type list to only contain floating point types.
123 bool EnforceFloatingPoint(TreePattern &TP);
124
125 /// EnforceScalar - Remove all vector types from this type list.
126 bool EnforceScalar(TreePattern &TP);
127
128 /// EnforceVector - Remove all non-vector types from this type list.
129 bool EnforceVector(TreePattern &TP);
130
131 /// EnforceSmallerThan - 'this' must be a smaller VT than Other. Update
132 /// this an other based on this information.
133 bool EnforceSmallerThan(EEVT::TypeSet &Other, TreePattern &TP);
Jim Grosbach50986b52010-12-24 05:06:32 +0000134
Chris Lattnercabe0372010-03-15 06:00:16 +0000135 /// EnforceVectorEltTypeIs - 'this' is now constrainted to be a vector type
136 /// whose element is VT.
Chris Lattner57ebf632010-03-24 00:01:16 +0000137 bool EnforceVectorEltTypeIs(EEVT::TypeSet &VT, TreePattern &TP);
Jim Grosbach50986b52010-12-24 05:06:32 +0000138
Craig Topper0be34582015-03-05 07:11:34 +0000139 /// EnforceVectorEltTypeIs - 'this' is now constrainted to be a vector type
140 /// whose element is VT.
141 bool EnforceVectorEltTypeIs(MVT::SimpleValueType VT, TreePattern &TP);
142
David Greene127fd1d2011-01-24 20:53:18 +0000143 /// EnforceVectorSubVectorTypeIs - 'this' is now constrainted to
144 /// be a vector type VT.
145 bool EnforceVectorSubVectorTypeIs(EEVT::TypeSet &VT, TreePattern &TP);
146
Craig Topper0be34582015-03-05 07:11:34 +0000147 /// EnforceVectorSameNumElts - 'this' is now constrainted to
148 /// be a vector with same num elements as VT.
149 bool EnforceVectorSameNumElts(EEVT::TypeSet &VT, TreePattern &TP);
150
Chris Lattnercabe0372010-03-15 06:00:16 +0000151 bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
152 bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000153
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000154 private:
155 /// FillWithPossibleTypes - Set to all legal types and return true, only
Chris Lattner6d765eb2010-03-19 17:41:26 +0000156 /// valid on completely unknown type sets. If Pred is non-null, only MVTs
157 /// that pass the predicate are added.
158 bool FillWithPossibleTypes(TreePattern &TP,
Craig Topperada08572014-04-16 04:21:27 +0000159 bool (*Pred)(MVT::SimpleValueType) = nullptr,
160 const char *PredicateName = nullptr);
Chris Lattnercabe0372010-03-15 06:00:16 +0000161 };
Chris Lattner8cab0212008-01-05 22:25:12 +0000162}
163
Scott Michel94420742008-03-05 17:49:05 +0000164/// Set type used to track multiply used variables in patterns
165typedef std::set<std::string> MultipleUseVarSet;
166
Chris Lattner8cab0212008-01-05 22:25:12 +0000167/// SDTypeConstraint - This is a discriminated union of constraints,
168/// corresponding to the SDTypeConstraint tablegen class in Target.td.
169struct SDTypeConstraint {
170 SDTypeConstraint(Record *R);
Jim Grosbach50986b52010-12-24 05:06:32 +0000171
Chris Lattner8cab0212008-01-05 22:25:12 +0000172 unsigned OperandNo; // The operand # this constraint applies to.
Jim Grosbach50986b52010-12-24 05:06:32 +0000173 enum {
174 SDTCisVT, SDTCisPtrTy, SDTCisInt, SDTCisFP, SDTCisVec, SDTCisSameAs,
David Greene127fd1d2011-01-24 20:53:18 +0000175 SDTCisVTSmallerThanOp, SDTCisOpSmallerThanOp, SDTCisEltOfVec,
Craig Topper0be34582015-03-05 07:11:34 +0000176 SDTCisSubVecOfVec, SDTCVecEltisVT, SDTCisSameNumEltsAs
Chris Lattner8cab0212008-01-05 22:25:12 +0000177 } ConstraintType;
Jim Grosbach50986b52010-12-24 05:06:32 +0000178
Chris Lattner8cab0212008-01-05 22:25:12 +0000179 union { // The discriminated union.
180 struct {
Chris Lattnercabe0372010-03-15 06:00:16 +0000181 MVT::SimpleValueType VT;
Chris Lattner8cab0212008-01-05 22:25:12 +0000182 } SDTCisVT_Info;
183 struct {
184 unsigned OtherOperandNum;
185 } SDTCisSameAs_Info;
186 struct {
187 unsigned OtherOperandNum;
188 } SDTCisVTSmallerThanOp_Info;
189 struct {
190 unsigned BigOperandNum;
191 } SDTCisOpSmallerThanOp_Info;
192 struct {
193 unsigned OtherOperandNum;
Nate Begeman17bedbc2008-02-09 01:37:05 +0000194 } SDTCisEltOfVec_Info;
David Greene127fd1d2011-01-24 20:53:18 +0000195 struct {
196 unsigned OtherOperandNum;
197 } SDTCisSubVecOfVec_Info;
Craig Topper0be34582015-03-05 07:11:34 +0000198 struct {
199 MVT::SimpleValueType VT;
200 } SDTCVecEltisVT_Info;
201 struct {
202 unsigned OtherOperandNum;
203 } SDTCisSameNumEltsAs_Info;
Chris Lattner8cab0212008-01-05 22:25:12 +0000204 } x;
205
206 /// ApplyTypeConstraint - Given a node in a pattern, apply this type
207 /// constraint to the nodes operands. This returns true if it makes a
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000208 /// change, false otherwise. If a type contradiction is found, an error
209 /// is flagged.
Chris Lattner8cab0212008-01-05 22:25:12 +0000210 bool ApplyTypeConstraint(TreePatternNode *N, const SDNodeInfo &NodeInfo,
211 TreePattern &TP) const;
Chris Lattner8cab0212008-01-05 22:25:12 +0000212};
213
214/// SDNodeInfo - One of these records is created for each SDNode instance in
215/// the target .td file. This represents the various dag nodes we will be
216/// processing.
217class SDNodeInfo {
218 Record *Def;
219 std::string EnumName;
220 std::string SDClassName;
221 unsigned Properties;
222 unsigned NumResults;
223 int NumOperands;
224 std::vector<SDTypeConstraint> TypeConstraints;
225public:
226 SDNodeInfo(Record *R); // Parse the specified record.
Jim Grosbach50986b52010-12-24 05:06:32 +0000227
Chris Lattner8cab0212008-01-05 22:25:12 +0000228 unsigned getNumResults() const { return NumResults; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000229
Chris Lattner135091b2010-03-28 08:48:47 +0000230 /// getNumOperands - This is the number of operands required or -1 if
231 /// variadic.
Chris Lattner8cab0212008-01-05 22:25:12 +0000232 int getNumOperands() const { return NumOperands; }
233 Record *getRecord() const { return Def; }
234 const std::string &getEnumName() const { return EnumName; }
235 const std::string &getSDClassName() const { return SDClassName; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000236
Chris Lattner8cab0212008-01-05 22:25:12 +0000237 const std::vector<SDTypeConstraint> &getTypeConstraints() const {
238 return TypeConstraints;
239 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000240
Chris Lattner99e53b32010-02-28 00:22:30 +0000241 /// getKnownType - If the type constraints on this node imply a fixed type
242 /// (e.g. all stores return void, etc), then return it as an
Chris Lattnerda5b4ad2010-03-19 01:14:27 +0000243 /// MVT::SimpleValueType. Otherwise, return MVT::Other.
Chris Lattner6c2d1782010-03-24 00:41:19 +0000244 MVT::SimpleValueType getKnownType(unsigned ResNo) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000245
Chris Lattner8cab0212008-01-05 22:25:12 +0000246 /// hasProperty - Return true if this node has the specified property.
247 ///
248 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
249
250 /// ApplyTypeConstraints - Given a node in a pattern, apply the type
251 /// constraints for this node to the operands of the node. This returns
252 /// true if it makes a change, false otherwise. If a type contradiction is
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000253 /// found, an error is flagged.
Chris Lattner8cab0212008-01-05 22:25:12 +0000254 bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const {
255 bool MadeChange = false;
256 for (unsigned i = 0, e = TypeConstraints.size(); i != e; ++i)
257 MadeChange |= TypeConstraints[i].ApplyTypeConstraint(N, *this, TP);
258 return MadeChange;
259 }
260};
Chris Lattner514e2922011-04-17 21:38:24 +0000261
262/// TreePredicateFn - This is an abstraction that represents the predicates on
263/// a PatFrag node. This is a simple one-word wrapper around a pointer to
264/// provide nice accessors.
265class TreePredicateFn {
266 /// PatFragRec - This is the TreePattern for the PatFrag that we
267 /// originally came from.
268 TreePattern *PatFragRec;
269public:
270 /// TreePredicateFn constructor. Here 'N' is a subclass of PatFrag.
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000271 TreePredicateFn(TreePattern *N);
Chris Lattner514e2922011-04-17 21:38:24 +0000272
273
274 TreePattern *getOrigPatFragRecord() const { return PatFragRec; }
275
276 /// isAlwaysTrue - Return true if this is a noop predicate.
277 bool isAlwaysTrue() const;
278
Chris Lattner07add492011-04-18 06:22:33 +0000279 bool isImmediatePattern() const { return !getImmCode().empty(); }
280
281 /// getImmediatePredicateCode - Return the code that evaluates this pattern if
282 /// this is an immediate predicate. It is an error to call this on a
283 /// non-immediate pattern.
284 std::string getImmediatePredicateCode() const {
285 std::string Result = getImmCode();
286 assert(!Result.empty() && "Isn't an immediate pattern!");
287 return Result;
288 }
289
Chris Lattner514e2922011-04-17 21:38:24 +0000290
291 bool operator==(const TreePredicateFn &RHS) const {
292 return PatFragRec == RHS.PatFragRec;
293 }
294
295 bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
296
297 /// Return the name to use in the generated code to reference this, this is
298 /// "Predicate_foo" if from a pattern fragment "foo".
299 std::string getFnName() const;
300
301 /// getCodeToRunOnSDNode - Return the code for the function body that
302 /// evaluates this predicate. The argument is expected to be in "Node",
303 /// not N. This handles casting and conversion to a concrete node type as
304 /// appropriate.
305 std::string getCodeToRunOnSDNode() const;
306
307private:
308 std::string getPredCode() const;
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000309 std::string getImmCode() const;
Chris Lattner514e2922011-04-17 21:38:24 +0000310};
David Blaikiecf195302014-11-17 22:55:41 +0000311
Chris Lattner8cab0212008-01-05 22:25:12 +0000312
313/// FIXME: TreePatternNode's can be shared in some cases (due to dag-shaped
314/// patterns), and as such should be ref counted. We currently just leak all
315/// TreePatternNode objects!
316class TreePatternNode {
Chris Lattnerf1447252010-03-19 21:37:09 +0000317 /// The type of each node result. Before and during type inference, each
318 /// result may be a set of possible types. After (successful) type inference,
319 /// each is a single concrete type.
320 SmallVector<EEVT::TypeSet, 1> Types;
Jim Grosbach50986b52010-12-24 05:06:32 +0000321
Chris Lattner8cab0212008-01-05 22:25:12 +0000322 /// Operator - The Record for the operator if this is an interior node (not
323 /// a leaf).
324 Record *Operator;
Jim Grosbach50986b52010-12-24 05:06:32 +0000325
Chris Lattner8cab0212008-01-05 22:25:12 +0000326 /// Val - The init value (e.g. the "GPRC" record, or "7") for a leaf.
327 ///
David Greeneaf8ee2c2011-07-29 22:43:06 +0000328 Init *Val;
Jim Grosbach50986b52010-12-24 05:06:32 +0000329
Chris Lattner8cab0212008-01-05 22:25:12 +0000330 /// Name - The name given to this node with the :$foo notation.
331 ///
332 std::string Name;
Jim Grosbach50986b52010-12-24 05:06:32 +0000333
Dan Gohman6e979022008-10-15 06:17:21 +0000334 /// PredicateFns - The predicate functions to execute on this node to check
335 /// for a match. If this list is empty, no predicate is involved.
Chris Lattner514e2922011-04-17 21:38:24 +0000336 std::vector<TreePredicateFn> PredicateFns;
Jim Grosbach50986b52010-12-24 05:06:32 +0000337
Chris Lattner8cab0212008-01-05 22:25:12 +0000338 /// TransformFn - The transformation function to execute on this node before
339 /// it can be substituted into the resulting instruction on a pattern match.
340 Record *TransformFn;
Jim Grosbach50986b52010-12-24 05:06:32 +0000341
Chris Lattner8cab0212008-01-05 22:25:12 +0000342 std::vector<TreePatternNode*> Children;
343public:
Chris Lattnerf1447252010-03-19 21:37:09 +0000344 TreePatternNode(Record *Op, const std::vector<TreePatternNode*> &Ch,
Jim Grosbach50986b52010-12-24 05:06:32 +0000345 unsigned NumResults)
Craig Topperada08572014-04-16 04:21:27 +0000346 : Operator(Op), Val(nullptr), TransformFn(nullptr), Children(Ch) {
Chris Lattnerf1447252010-03-19 21:37:09 +0000347 Types.resize(NumResults);
348 }
David Greeneaf8ee2c2011-07-29 22:43:06 +0000349 TreePatternNode(Init *val, unsigned NumResults) // leaf ctor
Craig Topperada08572014-04-16 04:21:27 +0000350 : Operator(nullptr), Val(val), TransformFn(nullptr) {
Chris Lattnerf1447252010-03-19 21:37:09 +0000351 Types.resize(NumResults);
Chris Lattner8cab0212008-01-05 22:25:12 +0000352 }
353 ~TreePatternNode();
Jim Grosbach50986b52010-12-24 05:06:32 +0000354
Jakob Stoklund Olesenb5b91102013-03-23 18:08:44 +0000355 bool hasName() const { return !Name.empty(); }
Chris Lattner8cab0212008-01-05 22:25:12 +0000356 const std::string &getName() const { return Name; }
Chris Lattneradf7ecf2010-03-28 06:50:34 +0000357 void setName(StringRef N) { Name.assign(N.begin(), N.end()); }
Jim Grosbach50986b52010-12-24 05:06:32 +0000358
Craig Topperada08572014-04-16 04:21:27 +0000359 bool isLeaf() const { return Val != nullptr; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000360
Chris Lattnercabe0372010-03-15 06:00:16 +0000361 // Type accessors.
Chris Lattnerf1447252010-03-19 21:37:09 +0000362 unsigned getNumTypes() const { return Types.size(); }
363 MVT::SimpleValueType getType(unsigned ResNo) const {
364 return Types[ResNo].getConcrete();
365 }
366 const SmallVectorImpl<EEVT::TypeSet> &getExtTypes() const { return Types; }
367 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
368 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
369 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000370
Chris Lattnerf1447252010-03-19 21:37:09 +0000371 bool hasTypeSet(unsigned ResNo) const {
372 return Types[ResNo].isConcrete();
373 }
374 bool isTypeCompletelyUnknown(unsigned ResNo) const {
375 return Types[ResNo].isCompletelyUnknown();
376 }
377 bool isTypeDynamicallyResolved(unsigned ResNo) const {
378 return Types[ResNo].isDynamicallyResolved();
379 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000380
David Greeneaf8ee2c2011-07-29 22:43:06 +0000381 Init *getLeafValue() const { assert(isLeaf()); return Val; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000382 Record *getOperator() const { assert(!isLeaf()); return Operator; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000383
Chris Lattner8cab0212008-01-05 22:25:12 +0000384 unsigned getNumChildren() const { return Children.size(); }
385 TreePatternNode *getChild(unsigned N) const { return Children[N]; }
386 void setChild(unsigned i, TreePatternNode *N) {
387 Children[i] = N;
388 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000389
Chris Lattneraa7d3e02010-02-16 06:10:58 +0000390 /// hasChild - Return true if N is any of our children.
391 bool hasChild(const TreePatternNode *N) const {
392 for (unsigned i = 0, e = Children.size(); i != e; ++i)
393 if (Children[i] == N) return true;
394 return false;
395 }
Chris Lattner89c65662008-01-06 05:36:50 +0000396
Chris Lattner514e2922011-04-17 21:38:24 +0000397 bool hasAnyPredicate() const { return !PredicateFns.empty(); }
398
399 const std::vector<TreePredicateFn> &getPredicateFns() const {
400 return PredicateFns;
401 }
Dan Gohman6e979022008-10-15 06:17:21 +0000402 void clearPredicateFns() { PredicateFns.clear(); }
Chris Lattner514e2922011-04-17 21:38:24 +0000403 void setPredicateFns(const std::vector<TreePredicateFn> &Fns) {
Dan Gohman6e979022008-10-15 06:17:21 +0000404 assert(PredicateFns.empty() && "Overwriting non-empty predicate list!");
405 PredicateFns = Fns;
406 }
Chris Lattner514e2922011-04-17 21:38:24 +0000407 void addPredicateFn(const TreePredicateFn &Fn) {
408 assert(!Fn.isAlwaysTrue() && "Empty predicate string!");
Dan Gohman6e979022008-10-15 06:17:21 +0000409 if (std::find(PredicateFns.begin(), PredicateFns.end(), Fn) ==
410 PredicateFns.end())
411 PredicateFns.push_back(Fn);
412 }
Chris Lattner8cab0212008-01-05 22:25:12 +0000413
414 Record *getTransformFn() const { return TransformFn; }
415 void setTransformFn(Record *Fn) { TransformFn = Fn; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000416
Chris Lattner89c65662008-01-06 05:36:50 +0000417 /// getIntrinsicInfo - If this node corresponds to an intrinsic, return the
418 /// CodeGenIntrinsic information for it, otherwise return a null pointer.
419 const CodeGenIntrinsic *getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const;
Evan Cheng49bad4c2008-06-16 20:29:38 +0000420
Chris Lattner53c39ba2010-02-14 22:22:58 +0000421 /// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
422 /// return the ComplexPattern information, otherwise return null.
423 const ComplexPattern *
424 getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const;
425
Tim Northoverc807a172014-05-20 11:52:46 +0000426 /// Returns the number of MachineInstr operands that would be produced by this
427 /// node if it mapped directly to an output Instruction's
428 /// operand. ComplexPattern specifies this explicitly; MIOperandInfo gives it
429 /// for Operands; otherwise 1.
430 unsigned getNumMIResults(const CodeGenDAGPatterns &CGP) const;
431
Chris Lattner53c39ba2010-02-14 22:22:58 +0000432 /// NodeHasProperty - Return true if this node has the specified property.
Chris Lattner450d5042010-02-14 22:33:49 +0000433 bool NodeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000434
Chris Lattner53c39ba2010-02-14 22:22:58 +0000435 /// TreeHasProperty - Return true if any node in this tree has the specified
436 /// property.
Chris Lattner450d5042010-02-14 22:33:49 +0000437 bool TreeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000438
Evan Cheng49bad4c2008-06-16 20:29:38 +0000439 /// isCommutativeIntrinsic - Return true if the node is an intrinsic which is
440 /// marked isCommutative.
441 bool isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000442
Daniel Dunbar38a22bf2009-07-03 00:10:29 +0000443 void print(raw_ostream &OS) const;
Chris Lattner8cab0212008-01-05 22:25:12 +0000444 void dump() const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000445
Chris Lattner8cab0212008-01-05 22:25:12 +0000446public: // Higher level manipulation routines.
447
448 /// clone - Return a new copy of this tree.
449 ///
450 TreePatternNode *clone() const;
Chris Lattner53c39ba2010-02-14 22:22:58 +0000451
452 /// RemoveAllTypes - Recursively strip all the types of this tree.
453 void RemoveAllTypes();
Jim Grosbach50986b52010-12-24 05:06:32 +0000454
Chris Lattner8cab0212008-01-05 22:25:12 +0000455 /// isIsomorphicTo - Return true if this node is recursively isomorphic to
456 /// the specified node. For this comparison, all of the state of the node
457 /// is considered, except for the assigned name. Nodes with differing names
458 /// that are otherwise identical are considered isomorphic.
Scott Michel94420742008-03-05 17:49:05 +0000459 bool isIsomorphicTo(const TreePatternNode *N,
460 const MultipleUseVarSet &DepVars) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000461
Chris Lattner8cab0212008-01-05 22:25:12 +0000462 /// SubstituteFormalArguments - Replace the formal arguments in this tree
463 /// with actual values specified by ArgMap.
464 void SubstituteFormalArguments(std::map<std::string,
465 TreePatternNode*> &ArgMap);
466
467 /// InlinePatternFragments - If this pattern refers to any pattern
468 /// fragments, inline them into place, giving us a pattern without any
469 /// PatFrag references.
470 TreePatternNode *InlinePatternFragments(TreePattern &TP);
Jim Grosbach50986b52010-12-24 05:06:32 +0000471
Bob Wilson1b97f3f2009-01-05 17:23:09 +0000472 /// ApplyTypeConstraints - Apply all of the type constraints relevant to
Chris Lattner8cab0212008-01-05 22:25:12 +0000473 /// this node and its children in the tree. This returns true if it makes a
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000474 /// change, false otherwise. If a type contradiction is found, flag an error.
Chris Lattner8cab0212008-01-05 22:25:12 +0000475 bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters);
Jim Grosbach50986b52010-12-24 05:06:32 +0000476
Chris Lattner8cab0212008-01-05 22:25:12 +0000477 /// UpdateNodeType - Set the node type of N to VT if VT contains
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000478 /// information. If N already contains a conflicting type, then flag an
479 /// error. This returns true if any information was updated.
Chris Lattner8cab0212008-01-05 22:25:12 +0000480 ///
Chris Lattnerf1447252010-03-19 21:37:09 +0000481 bool UpdateNodeType(unsigned ResNo, const EEVT::TypeSet &InTy,
482 TreePattern &TP) {
483 return Types[ResNo].MergeInTypeInfo(InTy, TP);
Chris Lattnercabe0372010-03-15 06:00:16 +0000484 }
485
Chris Lattnerf1447252010-03-19 21:37:09 +0000486 bool UpdateNodeType(unsigned ResNo, MVT::SimpleValueType InTy,
487 TreePattern &TP) {
488 return Types[ResNo].MergeInTypeInfo(EEVT::TypeSet(InTy, TP), TP);
Chris Lattner8cab0212008-01-05 22:25:12 +0000489 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000490
Jakob Stoklund Olesen57a86502013-03-18 04:08:07 +0000491 // Update node type with types inferred from an instruction operand or result
492 // def from the ins/outs lists.
493 // Return true if the type changed.
494 bool UpdateNodeTypeFromInst(unsigned ResNo, Record *Operand, TreePattern &TP);
495
Chris Lattner8cab0212008-01-05 22:25:12 +0000496 /// ContainsUnresolvedType - Return true if this tree contains any
497 /// unresolved types.
498 bool ContainsUnresolvedType() const {
Chris Lattnerf1447252010-03-19 21:37:09 +0000499 for (unsigned i = 0, e = Types.size(); i != e; ++i)
500 if (!Types[i].isConcrete()) return true;
Jim Grosbach50986b52010-12-24 05:06:32 +0000501
Chris Lattner8cab0212008-01-05 22:25:12 +0000502 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
503 if (getChild(i)->ContainsUnresolvedType()) return true;
504 return false;
505 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000506
Chris Lattner8cab0212008-01-05 22:25:12 +0000507 /// canPatternMatch - If it is impossible for this pattern to match on this
508 /// target, fill in Reason and return false. Otherwise, return true.
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +0000509 bool canPatternMatch(std::string &Reason, const CodeGenDAGPatterns &CDP);
Chris Lattner8cab0212008-01-05 22:25:12 +0000510};
511
Chris Lattnerdd2ec582010-02-14 21:10:33 +0000512inline raw_ostream &operator<<(raw_ostream &OS, const TreePatternNode &TPN) {
513 TPN.print(OS);
514 return OS;
515}
Jim Grosbach50986b52010-12-24 05:06:32 +0000516
Chris Lattner8cab0212008-01-05 22:25:12 +0000517
518/// TreePattern - Represent a pattern, used for instructions, pattern
519/// fragments, etc.
520///
521class TreePattern {
522 /// Trees - The list of pattern trees which corresponds to this pattern.
523 /// Note that PatFrag's only have a single tree.
524 ///
David Blaikiecf195302014-11-17 22:55:41 +0000525 std::vector<TreePatternNode*> Trees;
Jim Grosbach50986b52010-12-24 05:06:32 +0000526
Chris Lattnercabe0372010-03-15 06:00:16 +0000527 /// NamedNodes - This is all of the nodes that have names in the trees in this
528 /// pattern.
529 StringMap<SmallVector<TreePatternNode*,1> > NamedNodes;
Jim Grosbach50986b52010-12-24 05:06:32 +0000530
Chris Lattner8cab0212008-01-05 22:25:12 +0000531 /// TheRecord - The actual TableGen record corresponding to this pattern.
532 ///
533 Record *TheRecord;
Jim Grosbach50986b52010-12-24 05:06:32 +0000534
Chris Lattner8cab0212008-01-05 22:25:12 +0000535 /// Args - This is a list of all of the arguments to this pattern (for
536 /// PatFrag patterns), which are the 'node' markers in this pattern.
537 std::vector<std::string> Args;
Jim Grosbach50986b52010-12-24 05:06:32 +0000538
Chris Lattner8cab0212008-01-05 22:25:12 +0000539 /// CDP - the top-level object coordinating this madness.
540 ///
Chris Lattnerab3242f2008-01-06 01:10:31 +0000541 CodeGenDAGPatterns &CDP;
Chris Lattner8cab0212008-01-05 22:25:12 +0000542
543 /// isInputPattern - True if this is an input pattern, something to match.
544 /// False if this is an output pattern, something to emit.
545 bool isInputPattern;
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000546
547 /// hasError - True if the currently processed nodes have unresolvable types
548 /// or other non-fatal errors
549 bool HasError;
Tim Northoverc807a172014-05-20 11:52:46 +0000550
551 /// It's important that the usage of operands in ComplexPatterns is
552 /// consistent: each named operand can be defined by at most one
553 /// ComplexPattern. This records the ComplexPattern instance and the operand
554 /// number for each operand encountered in a ComplexPattern to aid in that
555 /// check.
556 StringMap<std::pair<Record *, unsigned>> ComplexPatternOperands;
Chris Lattner8cab0212008-01-05 22:25:12 +0000557public:
Jim Grosbach50986b52010-12-24 05:06:32 +0000558
Chris Lattner8cab0212008-01-05 22:25:12 +0000559 /// TreePattern constructor - Parse the specified DagInits into the
560 /// current record.
David Greeneaf8ee2c2011-07-29 22:43:06 +0000561 TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattnerab3242f2008-01-06 01:10:31 +0000562 CodeGenDAGPatterns &ise);
David Greeneaf8ee2c2011-07-29 22:43:06 +0000563 TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnerab3242f2008-01-06 01:10:31 +0000564 CodeGenDAGPatterns &ise);
David Blaikiecf195302014-11-17 22:55:41 +0000565 TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
566 CodeGenDAGPatterns &ise);
Jim Grosbach50986b52010-12-24 05:06:32 +0000567
Chris Lattner8cab0212008-01-05 22:25:12 +0000568 /// getTrees - Return the tree patterns which corresponds to this pattern.
569 ///
David Blaikiecf195302014-11-17 22:55:41 +0000570 const std::vector<TreePatternNode*> &getTrees() const { return Trees; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000571 unsigned getNumTrees() const { return Trees.size(); }
David Blaikiecf195302014-11-17 22:55:41 +0000572 TreePatternNode *getTree(unsigned i) const { return Trees[i]; }
573 TreePatternNode *getOnlyTree() const {
Chris Lattner8cab0212008-01-05 22:25:12 +0000574 assert(Trees.size() == 1 && "Doesn't have exactly one pattern!");
575 return Trees[0];
576 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000577
Chris Lattnercabe0372010-03-15 06:00:16 +0000578 const StringMap<SmallVector<TreePatternNode*,1> > &getNamedNodesMap() {
579 if (NamedNodes.empty())
580 ComputeNamedNodes();
581 return NamedNodes;
582 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000583
Chris Lattner8cab0212008-01-05 22:25:12 +0000584 /// getRecord - Return the actual TableGen record corresponding to this
585 /// pattern.
586 ///
587 Record *getRecord() const { return TheRecord; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000588
Chris Lattner8cab0212008-01-05 22:25:12 +0000589 unsigned getNumArgs() const { return Args.size(); }
590 const std::string &getArgName(unsigned i) const {
591 assert(i < Args.size() && "Argument reference out of range!");
592 return Args[i];
593 }
594 std::vector<std::string> &getArgList() { return Args; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000595
Chris Lattnerab3242f2008-01-06 01:10:31 +0000596 CodeGenDAGPatterns &getDAGPatterns() const { return CDP; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000597
598 /// InlinePatternFragments - If this pattern refers to any pattern
599 /// fragments, inline them into place, giving us a pattern without any
600 /// PatFrag references.
601 void InlinePatternFragments() {
602 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
David Blaikiecf195302014-11-17 22:55:41 +0000603 Trees[i] = Trees[i]->InlinePatternFragments(*this);
Chris Lattner8cab0212008-01-05 22:25:12 +0000604 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000605
Chris Lattner8cab0212008-01-05 22:25:12 +0000606 /// InferAllTypes - Infer/propagate as many types throughout the expression
Jim Grosbach975c1cb2009-03-26 16:17:51 +0000607 /// patterns as possible. Return true if all types are inferred, false
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000608 /// otherwise. Bail out if a type contradiction is found.
Chris Lattnercabe0372010-03-15 06:00:16 +0000609 bool InferAllTypes(const StringMap<SmallVector<TreePatternNode*,1> >
Craig Topperada08572014-04-16 04:21:27 +0000610 *NamedTypes=nullptr);
Jim Grosbach50986b52010-12-24 05:06:32 +0000611
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000612 /// error - If this is the first error in the current resolution step,
613 /// print it and set the error flag. Otherwise, continue silently.
Matt Arsenaultea8df3a2014-11-11 23:48:11 +0000614 void error(const Twine &Msg);
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000615 bool hasError() const {
616 return HasError;
617 }
618 void resetError() {
619 HasError = false;
620 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000621
Daniel Dunbar38a22bf2009-07-03 00:10:29 +0000622 void print(raw_ostream &OS) const;
Chris Lattner8cab0212008-01-05 22:25:12 +0000623 void dump() const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000624
Chris Lattner8cab0212008-01-05 22:25:12 +0000625private:
David Blaikiecf195302014-11-17 22:55:41 +0000626 TreePatternNode *ParseTreePattern(Init *DI, StringRef OpName);
Chris Lattnercabe0372010-03-15 06:00:16 +0000627 void ComputeNamedNodes();
628 void ComputeNamedNodes(TreePatternNode *N);
Chris Lattner8cab0212008-01-05 22:25:12 +0000629};
630
Tom Stellardb7246a72012-09-06 14:15:52 +0000631/// DAGDefaultOperand - One of these is created for each OperandWithDefaultOps
632/// that has a set ExecuteAlways / DefaultOps field.
Chris Lattner8cab0212008-01-05 22:25:12 +0000633struct DAGDefaultOperand {
634 std::vector<TreePatternNode*> DefaultOps;
635};
636
637class DAGInstruction {
638 TreePattern *Pattern;
639 std::vector<Record*> Results;
640 std::vector<Record*> Operands;
641 std::vector<Record*> ImpResults;
David Blaikiecf195302014-11-17 22:55:41 +0000642 TreePatternNode *ResultPattern;
Chris Lattner8cab0212008-01-05 22:25:12 +0000643public:
644 DAGInstruction(TreePattern *TP,
645 const std::vector<Record*> &results,
646 const std::vector<Record*> &operands,
Chris Lattner9dc68d32010-04-20 06:28:43 +0000647 const std::vector<Record*> &impresults)
Jim Grosbach50986b52010-12-24 05:06:32 +0000648 : Pattern(TP), Results(results), Operands(operands),
David Blaikiecf195302014-11-17 22:55:41 +0000649 ImpResults(impresults), ResultPattern(nullptr) {}
Chris Lattner8cab0212008-01-05 22:25:12 +0000650
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000651 TreePattern *getPattern() const { return Pattern; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000652 unsigned getNumResults() const { return Results.size(); }
653 unsigned getNumOperands() const { return Operands.size(); }
654 unsigned getNumImpResults() const { return ImpResults.size(); }
Chris Lattner8cab0212008-01-05 22:25:12 +0000655 const std::vector<Record*>& getImpResults() const { return ImpResults; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000656
David Blaikiecf195302014-11-17 22:55:41 +0000657 void setResultPattern(TreePatternNode *R) { ResultPattern = R; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000658
Chris Lattner8cab0212008-01-05 22:25:12 +0000659 Record *getResult(unsigned RN) const {
660 assert(RN < Results.size());
661 return Results[RN];
662 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000663
Chris Lattner8cab0212008-01-05 22:25:12 +0000664 Record *getOperand(unsigned ON) const {
665 assert(ON < Operands.size());
666 return Operands[ON];
667 }
668
669 Record *getImpResult(unsigned RN) const {
670 assert(RN < ImpResults.size());
671 return ImpResults[RN];
672 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000673
David Blaikiecf195302014-11-17 22:55:41 +0000674 TreePatternNode *getResultPattern() const { return ResultPattern; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000675};
Jim Grosbach50986b52010-12-24 05:06:32 +0000676
Chris Lattnerab3242f2008-01-06 01:10:31 +0000677/// PatternToMatch - Used by CodeGenDAGPatterns to keep tab of patterns
Chris Lattner8cab0212008-01-05 22:25:12 +0000678/// processed to produce isel.
Chris Lattner7ed81692010-02-18 06:47:49 +0000679class PatternToMatch {
680public:
David Greeneaf8ee2c2011-07-29 22:43:06 +0000681 PatternToMatch(Record *srcrecord, ListInit *preds,
Chris Lattner8cab0212008-01-05 22:25:12 +0000682 TreePatternNode *src, TreePatternNode *dst,
683 const std::vector<Record*> &dstregs,
Tom Stellard6655dd62014-08-01 00:32:36 +0000684 int complexity, unsigned uid)
Jim Grosbachfb116ae2010-12-07 23:05:49 +0000685 : SrcRecord(srcrecord), Predicates(preds), SrcPattern(src), DstPattern(dst),
Chris Lattnerd39f75b2010-03-01 22:09:11 +0000686 Dstregs(dstregs), AddedComplexity(complexity), ID(uid) {}
Chris Lattner8cab0212008-01-05 22:25:12 +0000687
Jim Grosbachfb116ae2010-12-07 23:05:49 +0000688 Record *SrcRecord; // Originating Record for the pattern.
David Greeneaf8ee2c2011-07-29 22:43:06 +0000689 ListInit *Predicates; // Top level predicate conditions to match.
Chris Lattner8cab0212008-01-05 22:25:12 +0000690 TreePatternNode *SrcPattern; // Source pattern to match.
691 TreePatternNode *DstPattern; // Resulting pattern.
692 std::vector<Record*> Dstregs; // Physical register defs being matched.
Tom Stellard6655dd62014-08-01 00:32:36 +0000693 int AddedComplexity; // Add to matching pattern complexity.
Chris Lattnerd39f75b2010-03-01 22:09:11 +0000694 unsigned ID; // Unique ID for the record.
Chris Lattner8cab0212008-01-05 22:25:12 +0000695
Jim Grosbachfb116ae2010-12-07 23:05:49 +0000696 Record *getSrcRecord() const { return SrcRecord; }
David Greeneaf8ee2c2011-07-29 22:43:06 +0000697 ListInit *getPredicates() const { return Predicates; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000698 TreePatternNode *getSrcPattern() const { return SrcPattern; }
699 TreePatternNode *getDstPattern() const { return DstPattern; }
700 const std::vector<Record*> &getDstRegs() const { return Dstregs; }
Tom Stellard6655dd62014-08-01 00:32:36 +0000701 int getAddedComplexity() const { return AddedComplexity; }
Dan Gohman49e19e92008-08-22 00:20:26 +0000702
703 std::string getPredicateCheck() const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000704
Chris Lattner05925fe2010-03-29 01:40:38 +0000705 /// Compute the complexity metric for the input pattern. This roughly
706 /// corresponds to the number of nodes that are covered.
Tom Stellard6655dd62014-08-01 00:32:36 +0000707 int getPatternComplexity(const CodeGenDAGPatterns &CGP) const;
Chris Lattner8cab0212008-01-05 22:25:12 +0000708};
709
Chris Lattnerab3242f2008-01-06 01:10:31 +0000710class CodeGenDAGPatterns {
Chris Lattner8cab0212008-01-05 22:25:12 +0000711 RecordKeeper &Records;
712 CodeGenTarget Target;
713 std::vector<CodeGenIntrinsic> Intrinsics;
Dale Johannesenb842d522009-02-05 01:49:45 +0000714 std::vector<CodeGenIntrinsic> TgtIntrinsics;
Jim Grosbach50986b52010-12-24 05:06:32 +0000715
Sean Silvaa4e2c5f2012-09-19 01:47:00 +0000716 std::map<Record*, SDNodeInfo, LessRecordByID> SDNodes;
717 std::map<Record*, std::pair<Record*, std::string>, LessRecordByID> SDNodeXForms;
718 std::map<Record*, ComplexPattern, LessRecordByID> ComplexPatterns;
David Blaikie3c6ca232014-11-13 21:40:02 +0000719 std::map<Record *, std::unique_ptr<TreePattern>, LessRecordByID>
720 PatternFragments;
Sean Silvaa4e2c5f2012-09-19 01:47:00 +0000721 std::map<Record*, DAGDefaultOperand, LessRecordByID> DefaultOperands;
722 std::map<Record*, DAGInstruction, LessRecordByID> Instructions;
Jim Grosbach50986b52010-12-24 05:06:32 +0000723
Chris Lattner8cab0212008-01-05 22:25:12 +0000724 // Specific SDNode definitions:
725 Record *intrinsic_void_sdnode;
726 Record *intrinsic_w_chain_sdnode, *intrinsic_wo_chain_sdnode;
Jim Grosbach50986b52010-12-24 05:06:32 +0000727
Chris Lattner8cab0212008-01-05 22:25:12 +0000728 /// PatternsToMatch - All of the things we are matching on the DAG. The first
729 /// value is the pattern to match, the second pattern is the result to
730 /// emit.
731 std::vector<PatternToMatch> PatternsToMatch;
732public:
Jim Grosbach50986b52010-12-24 05:06:32 +0000733 CodeGenDAGPatterns(RecordKeeper &R);
Jim Grosbach50986b52010-12-24 05:06:32 +0000734
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +0000735 CodeGenTarget &getTargetInfo() { return Target; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000736 const CodeGenTarget &getTargetInfo() const { return Target; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000737
Chris Lattner8cab0212008-01-05 22:25:12 +0000738 Record *getSDNodeNamed(const std::string &Name) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000739
Chris Lattner8cab0212008-01-05 22:25:12 +0000740 const SDNodeInfo &getSDNodeInfo(Record *R) const {
741 assert(SDNodes.count(R) && "Unknown node!");
742 return SDNodes.find(R)->second;
743 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000744
Chris Lattnercc43e792008-01-05 22:54:53 +0000745 // Node transformation lookups.
746 typedef std::pair<Record*, std::string> NodeXForm;
747 const NodeXForm &getSDNodeTransform(Record *R) const {
Chris Lattner8cab0212008-01-05 22:25:12 +0000748 assert(SDNodeXForms.count(R) && "Invalid transform!");
749 return SDNodeXForms.find(R)->second;
750 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000751
Sean Silvaa4e2c5f2012-09-19 01:47:00 +0000752 typedef std::map<Record*, NodeXForm, LessRecordByID>::const_iterator
Benjamin Kramerc2dbd5d2009-08-23 10:39:21 +0000753 nx_iterator;
Chris Lattnercc43e792008-01-05 22:54:53 +0000754 nx_iterator nx_begin() const { return SDNodeXForms.begin(); }
755 nx_iterator nx_end() const { return SDNodeXForms.end(); }
756
Jim Grosbach50986b52010-12-24 05:06:32 +0000757
Chris Lattner8cab0212008-01-05 22:25:12 +0000758 const ComplexPattern &getComplexPattern(Record *R) const {
759 assert(ComplexPatterns.count(R) && "Unknown addressing mode!");
760 return ComplexPatterns.find(R)->second;
761 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000762
Chris Lattner8cab0212008-01-05 22:25:12 +0000763 const CodeGenIntrinsic &getIntrinsic(Record *R) const {
764 for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
765 if (Intrinsics[i].TheDef == R) return Intrinsics[i];
Dale Johannesenb842d522009-02-05 01:49:45 +0000766 for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
767 if (TgtIntrinsics[i].TheDef == R) return TgtIntrinsics[i];
Craig Topperc4965bc2012-02-05 07:21:30 +0000768 llvm_unreachable("Unknown intrinsic!");
Chris Lattner8cab0212008-01-05 22:25:12 +0000769 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000770
Chris Lattner8cab0212008-01-05 22:25:12 +0000771 const CodeGenIntrinsic &getIntrinsicInfo(unsigned IID) const {
Dale Johannesenb842d522009-02-05 01:49:45 +0000772 if (IID-1 < Intrinsics.size())
773 return Intrinsics[IID-1];
774 if (IID-Intrinsics.size()-1 < TgtIntrinsics.size())
775 return TgtIntrinsics[IID-Intrinsics.size()-1];
Craig Topperc4965bc2012-02-05 07:21:30 +0000776 llvm_unreachable("Bad intrinsic ID!");
Chris Lattner8cab0212008-01-05 22:25:12 +0000777 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000778
Chris Lattner8cab0212008-01-05 22:25:12 +0000779 unsigned getIntrinsicID(Record *R) const {
780 for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
781 if (Intrinsics[i].TheDef == R) return i;
Dale Johannesenb842d522009-02-05 01:49:45 +0000782 for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
783 if (TgtIntrinsics[i].TheDef == R) return i + Intrinsics.size();
Craig Topperc4965bc2012-02-05 07:21:30 +0000784 llvm_unreachable("Unknown intrinsic!");
Chris Lattner8cab0212008-01-05 22:25:12 +0000785 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000786
Chris Lattner7ed81692010-02-18 06:47:49 +0000787 const DAGDefaultOperand &getDefaultOperand(Record *R) const {
Chris Lattner8cab0212008-01-05 22:25:12 +0000788 assert(DefaultOperands.count(R) &&"Isn't an analyzed default operand!");
789 return DefaultOperands.find(R)->second;
790 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000791
Chris Lattner8cab0212008-01-05 22:25:12 +0000792 // Pattern Fragment information.
793 TreePattern *getPatternFragment(Record *R) const {
794 assert(PatternFragments.count(R) && "Invalid pattern fragment request!");
David Blaikie3c6ca232014-11-13 21:40:02 +0000795 return PatternFragments.find(R)->second.get();
Chris Lattner8cab0212008-01-05 22:25:12 +0000796 }
Chris Lattnerf1447252010-03-19 21:37:09 +0000797 TreePattern *getPatternFragmentIfRead(Record *R) const {
David Blaikie3c6ca232014-11-13 21:40:02 +0000798 if (!PatternFragments.count(R))
799 return nullptr;
800 return PatternFragments.find(R)->second.get();
Chris Lattnerf1447252010-03-19 21:37:09 +0000801 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000802
David Blaikiefcacc742014-11-13 21:56:57 +0000803 typedef std::map<Record *, std::unique_ptr<TreePattern>,
804 LessRecordByID>::const_iterator pf_iterator;
Chris Lattner8cab0212008-01-05 22:25:12 +0000805 pf_iterator pf_begin() const { return PatternFragments.begin(); }
806 pf_iterator pf_end() const { return PatternFragments.end(); }
807
808 // Patterns to match information.
Chris Lattner9abe77b2008-01-05 22:30:17 +0000809 typedef std::vector<PatternToMatch>::const_iterator ptm_iterator;
810 ptm_iterator ptm_begin() const { return PatternsToMatch.begin(); }
811 ptm_iterator ptm_end() const { return PatternsToMatch.end(); }
Jim Grosbach50986b52010-12-24 05:06:32 +0000812
Ahmed Bougacha14107512013-10-28 18:07:21 +0000813 /// Parse the Pattern for an instruction, and insert the result in DAGInsts.
814 typedef std::map<Record*, DAGInstruction, LessRecordByID> DAGInstMap;
815 const DAGInstruction &parseInstructionPattern(
816 CodeGenInstruction &CGI, ListInit *Pattern,
817 DAGInstMap &DAGInsts);
Jim Grosbach50986b52010-12-24 05:06:32 +0000818
Chris Lattner8cab0212008-01-05 22:25:12 +0000819 const DAGInstruction &getInstruction(Record *R) const {
820 assert(Instructions.count(R) && "Unknown instruction!");
821 return Instructions.find(R)->second;
822 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000823
Chris Lattner8cab0212008-01-05 22:25:12 +0000824 Record *get_intrinsic_void_sdnode() const {
825 return intrinsic_void_sdnode;
826 }
827 Record *get_intrinsic_w_chain_sdnode() const {
828 return intrinsic_w_chain_sdnode;
829 }
830 Record *get_intrinsic_wo_chain_sdnode() const {
831 return intrinsic_wo_chain_sdnode;
832 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000833
Jakob Stoklund Olesene4197252009-10-15 18:50:03 +0000834 bool hasTargetIntrinsics() { return !TgtIntrinsics.empty(); }
835
Chris Lattner8cab0212008-01-05 22:25:12 +0000836private:
837 void ParseNodeInfo();
Chris Lattnercc43e792008-01-05 22:54:53 +0000838 void ParseNodeTransforms();
Chris Lattner8cab0212008-01-05 22:25:12 +0000839 void ParseComplexPatterns();
Hal Finkel2756dc12014-02-28 00:26:56 +0000840 void ParsePatternFragments(bool OutFrags = false);
Chris Lattner8cab0212008-01-05 22:25:12 +0000841 void ParseDefaultOperands();
842 void ParseInstructions();
843 void ParsePatterns();
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +0000844 void InferInstructionFlags();
Chris Lattner8cab0212008-01-05 22:25:12 +0000845 void GenerateVariants();
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +0000846 void VerifyInstructionFlags();
Jim Grosbach50986b52010-12-24 05:06:32 +0000847
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000848 void AddPatternToMatch(TreePattern *Pattern, const PatternToMatch &PTM);
Chris Lattner8cab0212008-01-05 22:25:12 +0000849 void FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
850 std::map<std::string,
851 TreePatternNode*> &InstInputs,
852 std::map<std::string,
853 TreePatternNode*> &InstResults,
Chris Lattner8cab0212008-01-05 22:25:12 +0000854 std::vector<Record*> &InstImpResults);
855};
856} // end namespace llvm
857
858#endif