blob: bce5369923e1cc01655fcda864c08e38fc9264ea [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
Bruce Mitchenere9ffb452015-09-12 01:17:08 +0000135 /// EnforceVectorEltTypeIs - 'this' is now constrained to be a vector type
Chris Lattnercabe0372010-03-15 06:00:16 +0000136 /// 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
Bruce Mitchenere9ffb452015-09-12 01:17:08 +0000139 /// EnforceVectorEltTypeIs - 'this' is now constrained to be a vector type
Craig Topper0be34582015-03-05 07:11:34 +0000140 /// whose element is VT.
141 bool EnforceVectorEltTypeIs(MVT::SimpleValueType VT, TreePattern &TP);
142
Bruce Mitchenere9ffb452015-09-12 01:17:08 +0000143 /// EnforceVectorSubVectorTypeIs - 'this' is now constrained to
David Greene127fd1d2011-01-24 20:53:18 +0000144 /// be a vector type VT.
145 bool EnforceVectorSubVectorTypeIs(EEVT::TypeSet &VT, TreePattern &TP);
146
Craig Topper13a3af12017-03-13 17:37:14 +0000147 /// EnforceSameNumElts - If VTOperand is a scalar, then 'this' is a scalar.
148 /// If VTOperand is a vector, then 'this' must have the same number of
149 /// elements.
150 bool EnforceSameNumElts(EEVT::TypeSet &VT, TreePattern &TP);
Craig Topper0be34582015-03-05 07:11:34 +0000151
Craig Topper9a44b3f2015-11-26 07:02:18 +0000152 /// EnforceSameSize - 'this' is now constrained to be the same size as VT.
153 bool EnforceSameSize(EEVT::TypeSet &VT, TreePattern &TP);
154
Chris Lattnercabe0372010-03-15 06:00:16 +0000155 bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
156 bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000157
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000158 private:
159 /// FillWithPossibleTypes - Set to all legal types and return true, only
Chris Lattner6d765eb2010-03-19 17:41:26 +0000160 /// valid on completely unknown type sets. If Pred is non-null, only MVTs
161 /// that pass the predicate are added.
162 bool FillWithPossibleTypes(TreePattern &TP,
Craig Topperada08572014-04-16 04:21:27 +0000163 bool (*Pred)(MVT::SimpleValueType) = nullptr,
164 const char *PredicateName = nullptr);
Chris Lattnercabe0372010-03-15 06:00:16 +0000165 };
Chris Lattner8cab0212008-01-05 22:25:12 +0000166}
167
Scott Michel94420742008-03-05 17:49:05 +0000168/// Set type used to track multiply used variables in patterns
169typedef std::set<std::string> MultipleUseVarSet;
170
Chris Lattner8cab0212008-01-05 22:25:12 +0000171/// SDTypeConstraint - This is a discriminated union of constraints,
172/// corresponding to the SDTypeConstraint tablegen class in Target.td.
173struct SDTypeConstraint {
174 SDTypeConstraint(Record *R);
Jim Grosbach50986b52010-12-24 05:06:32 +0000175
Chris Lattner8cab0212008-01-05 22:25:12 +0000176 unsigned OperandNo; // The operand # this constraint applies to.
Jim Grosbach50986b52010-12-24 05:06:32 +0000177 enum {
178 SDTCisVT, SDTCisPtrTy, SDTCisInt, SDTCisFP, SDTCisVec, SDTCisSameAs,
David Greene127fd1d2011-01-24 20:53:18 +0000179 SDTCisVTSmallerThanOp, SDTCisOpSmallerThanOp, SDTCisEltOfVec,
Craig Topper9a44b3f2015-11-26 07:02:18 +0000180 SDTCisSubVecOfVec, SDTCVecEltisVT, SDTCisSameNumEltsAs, SDTCisSameSizeAs
Chris Lattner8cab0212008-01-05 22:25:12 +0000181 } ConstraintType;
Jim Grosbach50986b52010-12-24 05:06:32 +0000182
Chris Lattner8cab0212008-01-05 22:25:12 +0000183 union { // The discriminated union.
184 struct {
Chris Lattnercabe0372010-03-15 06:00:16 +0000185 MVT::SimpleValueType VT;
Chris Lattner8cab0212008-01-05 22:25:12 +0000186 } SDTCisVT_Info;
187 struct {
188 unsigned OtherOperandNum;
189 } SDTCisSameAs_Info;
190 struct {
191 unsigned OtherOperandNum;
192 } SDTCisVTSmallerThanOp_Info;
193 struct {
194 unsigned BigOperandNum;
195 } SDTCisOpSmallerThanOp_Info;
196 struct {
197 unsigned OtherOperandNum;
Nate Begeman17bedbc2008-02-09 01:37:05 +0000198 } SDTCisEltOfVec_Info;
David Greene127fd1d2011-01-24 20:53:18 +0000199 struct {
200 unsigned OtherOperandNum;
201 } SDTCisSubVecOfVec_Info;
Craig Topper0be34582015-03-05 07:11:34 +0000202 struct {
203 MVT::SimpleValueType VT;
204 } SDTCVecEltisVT_Info;
205 struct {
206 unsigned OtherOperandNum;
207 } SDTCisSameNumEltsAs_Info;
Craig Topper9a44b3f2015-11-26 07:02:18 +0000208 struct {
209 unsigned OtherOperandNum;
210 } SDTCisSameSizeAs_Info;
Chris Lattner8cab0212008-01-05 22:25:12 +0000211 } x;
212
213 /// ApplyTypeConstraint - Given a node in a pattern, apply this type
214 /// constraint to the nodes operands. This returns true if it makes a
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000215 /// change, false otherwise. If a type contradiction is found, an error
216 /// is flagged.
Chris Lattner8cab0212008-01-05 22:25:12 +0000217 bool ApplyTypeConstraint(TreePatternNode *N, const SDNodeInfo &NodeInfo,
218 TreePattern &TP) const;
Chris Lattner8cab0212008-01-05 22:25:12 +0000219};
220
221/// SDNodeInfo - One of these records is created for each SDNode instance in
222/// the target .td file. This represents the various dag nodes we will be
223/// processing.
224class SDNodeInfo {
225 Record *Def;
Craig Topperbcd3c372017-05-31 21:12:46 +0000226 StringRef EnumName;
227 StringRef SDClassName;
Chris Lattner8cab0212008-01-05 22:25:12 +0000228 unsigned Properties;
229 unsigned NumResults;
230 int NumOperands;
231 std::vector<SDTypeConstraint> TypeConstraints;
232public:
233 SDNodeInfo(Record *R); // Parse the specified record.
Jim Grosbach50986b52010-12-24 05:06:32 +0000234
Chris Lattner8cab0212008-01-05 22:25:12 +0000235 unsigned getNumResults() const { return NumResults; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000236
Chris Lattner135091b2010-03-28 08:48:47 +0000237 /// getNumOperands - This is the number of operands required or -1 if
238 /// variadic.
Chris Lattner8cab0212008-01-05 22:25:12 +0000239 int getNumOperands() const { return NumOperands; }
240 Record *getRecord() const { return Def; }
Craig Topperbcd3c372017-05-31 21:12:46 +0000241 StringRef getEnumName() const { return EnumName; }
242 StringRef getSDClassName() const { return SDClassName; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000243
Chris Lattner8cab0212008-01-05 22:25:12 +0000244 const std::vector<SDTypeConstraint> &getTypeConstraints() const {
245 return TypeConstraints;
246 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000247
Chris Lattner99e53b32010-02-28 00:22:30 +0000248 /// getKnownType - If the type constraints on this node imply a fixed type
249 /// (e.g. all stores return void, etc), then return it as an
Chris Lattnerda5b4ad2010-03-19 01:14:27 +0000250 /// MVT::SimpleValueType. Otherwise, return MVT::Other.
Chris Lattner6c2d1782010-03-24 00:41:19 +0000251 MVT::SimpleValueType getKnownType(unsigned ResNo) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000252
Chris Lattner8cab0212008-01-05 22:25:12 +0000253 /// hasProperty - Return true if this node has the specified property.
254 ///
255 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
256
257 /// ApplyTypeConstraints - Given a node in a pattern, apply the type
258 /// constraints for this node to the operands of the node. This returns
259 /// true if it makes a change, false otherwise. If a type contradiction is
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000260 /// found, an error is flagged.
Chris Lattner8cab0212008-01-05 22:25:12 +0000261 bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const {
262 bool MadeChange = false;
263 for (unsigned i = 0, e = TypeConstraints.size(); i != e; ++i)
264 MadeChange |= TypeConstraints[i].ApplyTypeConstraint(N, *this, TP);
265 return MadeChange;
266 }
267};
Chris Lattner514e2922011-04-17 21:38:24 +0000268
269/// TreePredicateFn - This is an abstraction that represents the predicates on
270/// a PatFrag node. This is a simple one-word wrapper around a pointer to
271/// provide nice accessors.
272class TreePredicateFn {
273 /// PatFragRec - This is the TreePattern for the PatFrag that we
274 /// originally came from.
275 TreePattern *PatFragRec;
276public:
277 /// TreePredicateFn constructor. Here 'N' is a subclass of PatFrag.
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000278 TreePredicateFn(TreePattern *N);
Chris Lattner514e2922011-04-17 21:38:24 +0000279
280
281 TreePattern *getOrigPatFragRecord() const { return PatFragRec; }
282
283 /// isAlwaysTrue - Return true if this is a noop predicate.
284 bool isAlwaysTrue() const;
285
Chris Lattner07add492011-04-18 06:22:33 +0000286 bool isImmediatePattern() const { return !getImmCode().empty(); }
287
288 /// getImmediatePredicateCode - Return the code that evaluates this pattern if
289 /// this is an immediate predicate. It is an error to call this on a
290 /// non-immediate pattern.
291 std::string getImmediatePredicateCode() const {
292 std::string Result = getImmCode();
293 assert(!Result.empty() && "Isn't an immediate pattern!");
294 return Result;
295 }
296
Chris Lattner514e2922011-04-17 21:38:24 +0000297
298 bool operator==(const TreePredicateFn &RHS) const {
299 return PatFragRec == RHS.PatFragRec;
300 }
301
302 bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
303
304 /// Return the name to use in the generated code to reference this, this is
305 /// "Predicate_foo" if from a pattern fragment "foo".
306 std::string getFnName() const;
307
308 /// getCodeToRunOnSDNode - Return the code for the function body that
309 /// evaluates this predicate. The argument is expected to be in "Node",
310 /// not N. This handles casting and conversion to a concrete node type as
311 /// appropriate.
312 std::string getCodeToRunOnSDNode() const;
313
314private:
315 std::string getPredCode() const;
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000316 std::string getImmCode() const;
Chris Lattner514e2922011-04-17 21:38:24 +0000317};
David Blaikiecf195302014-11-17 22:55:41 +0000318
Chris Lattner8cab0212008-01-05 22:25:12 +0000319
320/// FIXME: TreePatternNode's can be shared in some cases (due to dag-shaped
321/// patterns), and as such should be ref counted. We currently just leak all
322/// TreePatternNode objects!
323class TreePatternNode {
Chris Lattnerf1447252010-03-19 21:37:09 +0000324 /// The type of each node result. Before and during type inference, each
325 /// result may be a set of possible types. After (successful) type inference,
326 /// each is a single concrete type.
327 SmallVector<EEVT::TypeSet, 1> Types;
Jim Grosbach50986b52010-12-24 05:06:32 +0000328
Chris Lattner8cab0212008-01-05 22:25:12 +0000329 /// Operator - The Record for the operator if this is an interior node (not
330 /// a leaf).
331 Record *Operator;
Jim Grosbach50986b52010-12-24 05:06:32 +0000332
Chris Lattner8cab0212008-01-05 22:25:12 +0000333 /// Val - The init value (e.g. the "GPRC" record, or "7") for a leaf.
334 ///
David Greeneaf8ee2c2011-07-29 22:43:06 +0000335 Init *Val;
Jim Grosbach50986b52010-12-24 05:06:32 +0000336
Chris Lattner8cab0212008-01-05 22:25:12 +0000337 /// Name - The name given to this node with the :$foo notation.
338 ///
339 std::string Name;
Jim Grosbach50986b52010-12-24 05:06:32 +0000340
Dan Gohman6e979022008-10-15 06:17:21 +0000341 /// PredicateFns - The predicate functions to execute on this node to check
342 /// for a match. If this list is empty, no predicate is involved.
Chris Lattner514e2922011-04-17 21:38:24 +0000343 std::vector<TreePredicateFn> PredicateFns;
Jim Grosbach50986b52010-12-24 05:06:32 +0000344
Chris Lattner8cab0212008-01-05 22:25:12 +0000345 /// TransformFn - The transformation function to execute on this node before
346 /// it can be substituted into the resulting instruction on a pattern match.
347 Record *TransformFn;
Jim Grosbach50986b52010-12-24 05:06:32 +0000348
Chris Lattner8cab0212008-01-05 22:25:12 +0000349 std::vector<TreePatternNode*> Children;
350public:
Chris Lattnerf1447252010-03-19 21:37:09 +0000351 TreePatternNode(Record *Op, const std::vector<TreePatternNode*> &Ch,
Jim Grosbach50986b52010-12-24 05:06:32 +0000352 unsigned NumResults)
Craig Topperada08572014-04-16 04:21:27 +0000353 : Operator(Op), Val(nullptr), TransformFn(nullptr), Children(Ch) {
Chris Lattnerf1447252010-03-19 21:37:09 +0000354 Types.resize(NumResults);
355 }
David Greeneaf8ee2c2011-07-29 22:43:06 +0000356 TreePatternNode(Init *val, unsigned NumResults) // leaf ctor
Craig Topperada08572014-04-16 04:21:27 +0000357 : Operator(nullptr), Val(val), TransformFn(nullptr) {
Chris Lattnerf1447252010-03-19 21:37:09 +0000358 Types.resize(NumResults);
Chris Lattner8cab0212008-01-05 22:25:12 +0000359 }
360 ~TreePatternNode();
Jim Grosbach50986b52010-12-24 05:06:32 +0000361
Jakob Stoklund Olesenb5b91102013-03-23 18:08:44 +0000362 bool hasName() const { return !Name.empty(); }
Chris Lattner8cab0212008-01-05 22:25:12 +0000363 const std::string &getName() const { return Name; }
Chris Lattneradf7ecf2010-03-28 06:50:34 +0000364 void setName(StringRef N) { Name.assign(N.begin(), N.end()); }
Jim Grosbach50986b52010-12-24 05:06:32 +0000365
Craig Topperada08572014-04-16 04:21:27 +0000366 bool isLeaf() const { return Val != nullptr; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000367
Chris Lattnercabe0372010-03-15 06:00:16 +0000368 // Type accessors.
Chris Lattnerf1447252010-03-19 21:37:09 +0000369 unsigned getNumTypes() const { return Types.size(); }
370 MVT::SimpleValueType getType(unsigned ResNo) const {
371 return Types[ResNo].getConcrete();
372 }
373 const SmallVectorImpl<EEVT::TypeSet> &getExtTypes() const { return Types; }
374 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
375 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
376 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000377
Chris Lattnerf1447252010-03-19 21:37:09 +0000378 bool hasTypeSet(unsigned ResNo) const {
379 return Types[ResNo].isConcrete();
380 }
381 bool isTypeCompletelyUnknown(unsigned ResNo) const {
382 return Types[ResNo].isCompletelyUnknown();
383 }
384 bool isTypeDynamicallyResolved(unsigned ResNo) const {
385 return Types[ResNo].isDynamicallyResolved();
386 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000387
David Greeneaf8ee2c2011-07-29 22:43:06 +0000388 Init *getLeafValue() const { assert(isLeaf()); return Val; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000389 Record *getOperator() const { assert(!isLeaf()); return Operator; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000390
Chris Lattner8cab0212008-01-05 22:25:12 +0000391 unsigned getNumChildren() const { return Children.size(); }
392 TreePatternNode *getChild(unsigned N) const { return Children[N]; }
393 void setChild(unsigned i, TreePatternNode *N) {
394 Children[i] = N;
395 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000396
Chris Lattneraa7d3e02010-02-16 06:10:58 +0000397 /// hasChild - Return true if N is any of our children.
398 bool hasChild(const TreePatternNode *N) const {
399 for (unsigned i = 0, e = Children.size(); i != e; ++i)
400 if (Children[i] == N) return true;
401 return false;
402 }
Chris Lattner89c65662008-01-06 05:36:50 +0000403
Chris Lattner514e2922011-04-17 21:38:24 +0000404 bool hasAnyPredicate() const { return !PredicateFns.empty(); }
405
406 const std::vector<TreePredicateFn> &getPredicateFns() const {
407 return PredicateFns;
408 }
Dan Gohman6e979022008-10-15 06:17:21 +0000409 void clearPredicateFns() { PredicateFns.clear(); }
Chris Lattner514e2922011-04-17 21:38:24 +0000410 void setPredicateFns(const std::vector<TreePredicateFn> &Fns) {
Dan Gohman6e979022008-10-15 06:17:21 +0000411 assert(PredicateFns.empty() && "Overwriting non-empty predicate list!");
412 PredicateFns = Fns;
413 }
Chris Lattner514e2922011-04-17 21:38:24 +0000414 void addPredicateFn(const TreePredicateFn &Fn) {
415 assert(!Fn.isAlwaysTrue() && "Empty predicate string!");
David Majnemer0d955d02016-08-11 22:21:41 +0000416 if (!is_contained(PredicateFns, Fn))
Dan Gohman6e979022008-10-15 06:17:21 +0000417 PredicateFns.push_back(Fn);
418 }
Chris Lattner8cab0212008-01-05 22:25:12 +0000419
420 Record *getTransformFn() const { return TransformFn; }
421 void setTransformFn(Record *Fn) { TransformFn = Fn; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000422
Chris Lattner89c65662008-01-06 05:36:50 +0000423 /// getIntrinsicInfo - If this node corresponds to an intrinsic, return the
424 /// CodeGenIntrinsic information for it, otherwise return a null pointer.
425 const CodeGenIntrinsic *getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const;
Evan Cheng49bad4c2008-06-16 20:29:38 +0000426
Chris Lattner53c39ba2010-02-14 22:22:58 +0000427 /// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
428 /// return the ComplexPattern information, otherwise return null.
429 const ComplexPattern *
430 getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const;
431
Tim Northoverc807a172014-05-20 11:52:46 +0000432 /// Returns the number of MachineInstr operands that would be produced by this
433 /// node if it mapped directly to an output Instruction's
434 /// operand. ComplexPattern specifies this explicitly; MIOperandInfo gives it
435 /// for Operands; otherwise 1.
436 unsigned getNumMIResults(const CodeGenDAGPatterns &CGP) const;
437
Chris Lattner53c39ba2010-02-14 22:22:58 +0000438 /// NodeHasProperty - Return true if this node has the specified property.
Chris Lattner450d5042010-02-14 22:33:49 +0000439 bool NodeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000440
Chris Lattner53c39ba2010-02-14 22:22:58 +0000441 /// TreeHasProperty - Return true if any node in this tree has the specified
442 /// property.
Chris Lattner450d5042010-02-14 22:33:49 +0000443 bool TreeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000444
Evan Cheng49bad4c2008-06-16 20:29:38 +0000445 /// isCommutativeIntrinsic - Return true if the node is an intrinsic which is
446 /// marked isCommutative.
447 bool isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000448
Daniel Dunbar38a22bf2009-07-03 00:10:29 +0000449 void print(raw_ostream &OS) const;
Chris Lattner8cab0212008-01-05 22:25:12 +0000450 void dump() const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000451
Chris Lattner8cab0212008-01-05 22:25:12 +0000452public: // Higher level manipulation routines.
453
454 /// clone - Return a new copy of this tree.
455 ///
456 TreePatternNode *clone() const;
Chris Lattner53c39ba2010-02-14 22:22:58 +0000457
458 /// RemoveAllTypes - Recursively strip all the types of this tree.
459 void RemoveAllTypes();
Jim Grosbach50986b52010-12-24 05:06:32 +0000460
Chris Lattner8cab0212008-01-05 22:25:12 +0000461 /// isIsomorphicTo - Return true if this node is recursively isomorphic to
462 /// the specified node. For this comparison, all of the state of the node
463 /// is considered, except for the assigned name. Nodes with differing names
464 /// that are otherwise identical are considered isomorphic.
Scott Michel94420742008-03-05 17:49:05 +0000465 bool isIsomorphicTo(const TreePatternNode *N,
466 const MultipleUseVarSet &DepVars) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000467
Chris Lattner8cab0212008-01-05 22:25:12 +0000468 /// SubstituteFormalArguments - Replace the formal arguments in this tree
469 /// with actual values specified by ArgMap.
470 void SubstituteFormalArguments(std::map<std::string,
471 TreePatternNode*> &ArgMap);
472
473 /// InlinePatternFragments - If this pattern refers to any pattern
474 /// fragments, inline them into place, giving us a pattern without any
475 /// PatFrag references.
476 TreePatternNode *InlinePatternFragments(TreePattern &TP);
Jim Grosbach50986b52010-12-24 05:06:32 +0000477
Bob Wilson1b97f3f2009-01-05 17:23:09 +0000478 /// ApplyTypeConstraints - Apply all of the type constraints relevant to
Chris Lattner8cab0212008-01-05 22:25:12 +0000479 /// this node and its children in the tree. This returns true if it makes a
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000480 /// change, false otherwise. If a type contradiction is found, flag an error.
Chris Lattner8cab0212008-01-05 22:25:12 +0000481 bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters);
Jim Grosbach50986b52010-12-24 05:06:32 +0000482
Chris Lattner8cab0212008-01-05 22:25:12 +0000483 /// UpdateNodeType - Set the node type of N to VT if VT contains
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000484 /// information. If N already contains a conflicting type, then flag an
485 /// error. This returns true if any information was updated.
Chris Lattner8cab0212008-01-05 22:25:12 +0000486 ///
Chris Lattnerf1447252010-03-19 21:37:09 +0000487 bool UpdateNodeType(unsigned ResNo, const EEVT::TypeSet &InTy,
488 TreePattern &TP) {
489 return Types[ResNo].MergeInTypeInfo(InTy, TP);
Chris Lattnercabe0372010-03-15 06:00:16 +0000490 }
491
Chris Lattnerf1447252010-03-19 21:37:09 +0000492 bool UpdateNodeType(unsigned ResNo, MVT::SimpleValueType InTy,
493 TreePattern &TP) {
494 return Types[ResNo].MergeInTypeInfo(EEVT::TypeSet(InTy, TP), TP);
Chris Lattner8cab0212008-01-05 22:25:12 +0000495 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000496
Jakob Stoklund Olesen57a86502013-03-18 04:08:07 +0000497 // Update node type with types inferred from an instruction operand or result
498 // def from the ins/outs lists.
499 // Return true if the type changed.
500 bool UpdateNodeTypeFromInst(unsigned ResNo, Record *Operand, TreePattern &TP);
501
Chris Lattner8cab0212008-01-05 22:25:12 +0000502 /// ContainsUnresolvedType - Return true if this tree contains any
503 /// unresolved types.
504 bool ContainsUnresolvedType() const {
Chris Lattnerf1447252010-03-19 21:37:09 +0000505 for (unsigned i = 0, e = Types.size(); i != e; ++i)
506 if (!Types[i].isConcrete()) return true;
Jim Grosbach50986b52010-12-24 05:06:32 +0000507
Chris Lattner8cab0212008-01-05 22:25:12 +0000508 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
509 if (getChild(i)->ContainsUnresolvedType()) return true;
510 return false;
511 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000512
Chris Lattner8cab0212008-01-05 22:25:12 +0000513 /// canPatternMatch - If it is impossible for this pattern to match on this
514 /// target, fill in Reason and return false. Otherwise, return true.
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +0000515 bool canPatternMatch(std::string &Reason, const CodeGenDAGPatterns &CDP);
Chris Lattner8cab0212008-01-05 22:25:12 +0000516};
517
Chris Lattnerdd2ec582010-02-14 21:10:33 +0000518inline raw_ostream &operator<<(raw_ostream &OS, const TreePatternNode &TPN) {
519 TPN.print(OS);
520 return OS;
521}
Jim Grosbach50986b52010-12-24 05:06:32 +0000522
Chris Lattner8cab0212008-01-05 22:25:12 +0000523
524/// TreePattern - Represent a pattern, used for instructions, pattern
525/// fragments, etc.
526///
527class TreePattern {
528 /// Trees - The list of pattern trees which corresponds to this pattern.
529 /// Note that PatFrag's only have a single tree.
530 ///
David Blaikiecf195302014-11-17 22:55:41 +0000531 std::vector<TreePatternNode*> Trees;
Jim Grosbach50986b52010-12-24 05:06:32 +0000532
Chris Lattnercabe0372010-03-15 06:00:16 +0000533 /// NamedNodes - This is all of the nodes that have names in the trees in this
534 /// pattern.
535 StringMap<SmallVector<TreePatternNode*,1> > NamedNodes;
Jim Grosbach50986b52010-12-24 05:06:32 +0000536
Chris Lattner8cab0212008-01-05 22:25:12 +0000537 /// TheRecord - The actual TableGen record corresponding to this pattern.
538 ///
539 Record *TheRecord;
Jim Grosbach50986b52010-12-24 05:06:32 +0000540
Chris Lattner8cab0212008-01-05 22:25:12 +0000541 /// Args - This is a list of all of the arguments to this pattern (for
542 /// PatFrag patterns), which are the 'node' markers in this pattern.
543 std::vector<std::string> Args;
Jim Grosbach50986b52010-12-24 05:06:32 +0000544
Chris Lattner8cab0212008-01-05 22:25:12 +0000545 /// CDP - the top-level object coordinating this madness.
546 ///
Chris Lattnerab3242f2008-01-06 01:10:31 +0000547 CodeGenDAGPatterns &CDP;
Chris Lattner8cab0212008-01-05 22:25:12 +0000548
549 /// isInputPattern - True if this is an input pattern, something to match.
550 /// False if this is an output pattern, something to emit.
551 bool isInputPattern;
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000552
553 /// hasError - True if the currently processed nodes have unresolvable types
554 /// or other non-fatal errors
555 bool HasError;
Tim Northoverc807a172014-05-20 11:52:46 +0000556
557 /// It's important that the usage of operands in ComplexPatterns is
558 /// consistent: each named operand can be defined by at most one
559 /// ComplexPattern. This records the ComplexPattern instance and the operand
560 /// number for each operand encountered in a ComplexPattern to aid in that
561 /// check.
562 StringMap<std::pair<Record *, unsigned>> ComplexPatternOperands;
Chris Lattner8cab0212008-01-05 22:25:12 +0000563public:
Jim Grosbach50986b52010-12-24 05:06:32 +0000564
Chris Lattner8cab0212008-01-05 22:25:12 +0000565 /// TreePattern constructor - Parse the specified DagInits into the
566 /// current record.
David Greeneaf8ee2c2011-07-29 22:43:06 +0000567 TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattnerab3242f2008-01-06 01:10:31 +0000568 CodeGenDAGPatterns &ise);
David Greeneaf8ee2c2011-07-29 22:43:06 +0000569 TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnerab3242f2008-01-06 01:10:31 +0000570 CodeGenDAGPatterns &ise);
David Blaikiecf195302014-11-17 22:55:41 +0000571 TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
572 CodeGenDAGPatterns &ise);
Jim Grosbach50986b52010-12-24 05:06:32 +0000573
Chris Lattner8cab0212008-01-05 22:25:12 +0000574 /// getTrees - Return the tree patterns which corresponds to this pattern.
575 ///
David Blaikiecf195302014-11-17 22:55:41 +0000576 const std::vector<TreePatternNode*> &getTrees() const { return Trees; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000577 unsigned getNumTrees() const { return Trees.size(); }
David Blaikiecf195302014-11-17 22:55:41 +0000578 TreePatternNode *getTree(unsigned i) const { return Trees[i]; }
579 TreePatternNode *getOnlyTree() const {
Chris Lattner8cab0212008-01-05 22:25:12 +0000580 assert(Trees.size() == 1 && "Doesn't have exactly one pattern!");
581 return Trees[0];
582 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000583
Chris Lattnercabe0372010-03-15 06:00:16 +0000584 const StringMap<SmallVector<TreePatternNode*,1> > &getNamedNodesMap() {
585 if (NamedNodes.empty())
586 ComputeNamedNodes();
587 return NamedNodes;
588 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000589
Chris Lattner8cab0212008-01-05 22:25:12 +0000590 /// getRecord - Return the actual TableGen record corresponding to this
591 /// pattern.
592 ///
593 Record *getRecord() const { return TheRecord; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000594
Chris Lattner8cab0212008-01-05 22:25:12 +0000595 unsigned getNumArgs() const { return Args.size(); }
596 const std::string &getArgName(unsigned i) const {
597 assert(i < Args.size() && "Argument reference out of range!");
598 return Args[i];
599 }
600 std::vector<std::string> &getArgList() { return Args; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000601
Chris Lattnerab3242f2008-01-06 01:10:31 +0000602 CodeGenDAGPatterns &getDAGPatterns() const { return CDP; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000603
604 /// InlinePatternFragments - If this pattern refers to any pattern
605 /// fragments, inline them into place, giving us a pattern without any
606 /// PatFrag references.
607 void InlinePatternFragments() {
608 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
David Blaikiecf195302014-11-17 22:55:41 +0000609 Trees[i] = Trees[i]->InlinePatternFragments(*this);
Chris Lattner8cab0212008-01-05 22:25:12 +0000610 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000611
Chris Lattner8cab0212008-01-05 22:25:12 +0000612 /// InferAllTypes - Infer/propagate as many types throughout the expression
Jim Grosbach975c1cb2009-03-26 16:17:51 +0000613 /// patterns as possible. Return true if all types are inferred, false
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000614 /// otherwise. Bail out if a type contradiction is found.
Chris Lattnercabe0372010-03-15 06:00:16 +0000615 bool InferAllTypes(const StringMap<SmallVector<TreePatternNode*,1> >
Craig Topperada08572014-04-16 04:21:27 +0000616 *NamedTypes=nullptr);
Jim Grosbach50986b52010-12-24 05:06:32 +0000617
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000618 /// error - If this is the first error in the current resolution step,
619 /// print it and set the error flag. Otherwise, continue silently.
Matt Arsenaultea8df3a2014-11-11 23:48:11 +0000620 void error(const Twine &Msg);
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000621 bool hasError() const {
622 return HasError;
623 }
624 void resetError() {
625 HasError = false;
626 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000627
Daniel Dunbar38a22bf2009-07-03 00:10:29 +0000628 void print(raw_ostream &OS) const;
Chris Lattner8cab0212008-01-05 22:25:12 +0000629 void dump() const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000630
Chris Lattner8cab0212008-01-05 22:25:12 +0000631private:
David Blaikiecf195302014-11-17 22:55:41 +0000632 TreePatternNode *ParseTreePattern(Init *DI, StringRef OpName);
Chris Lattnercabe0372010-03-15 06:00:16 +0000633 void ComputeNamedNodes();
634 void ComputeNamedNodes(TreePatternNode *N);
Chris Lattner8cab0212008-01-05 22:25:12 +0000635};
636
Tom Stellardb7246a72012-09-06 14:15:52 +0000637/// DAGDefaultOperand - One of these is created for each OperandWithDefaultOps
638/// that has a set ExecuteAlways / DefaultOps field.
Chris Lattner8cab0212008-01-05 22:25:12 +0000639struct DAGDefaultOperand {
640 std::vector<TreePatternNode*> DefaultOps;
641};
642
643class DAGInstruction {
644 TreePattern *Pattern;
645 std::vector<Record*> Results;
646 std::vector<Record*> Operands;
647 std::vector<Record*> ImpResults;
David Blaikiecf195302014-11-17 22:55:41 +0000648 TreePatternNode *ResultPattern;
Chris Lattner8cab0212008-01-05 22:25:12 +0000649public:
650 DAGInstruction(TreePattern *TP,
651 const std::vector<Record*> &results,
652 const std::vector<Record*> &operands,
Chris Lattner9dc68d32010-04-20 06:28:43 +0000653 const std::vector<Record*> &impresults)
Jim Grosbach50986b52010-12-24 05:06:32 +0000654 : Pattern(TP), Results(results), Operands(operands),
David Blaikiecf195302014-11-17 22:55:41 +0000655 ImpResults(impresults), ResultPattern(nullptr) {}
Chris Lattner8cab0212008-01-05 22:25:12 +0000656
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000657 TreePattern *getPattern() const { return Pattern; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000658 unsigned getNumResults() const { return Results.size(); }
659 unsigned getNumOperands() const { return Operands.size(); }
660 unsigned getNumImpResults() const { return ImpResults.size(); }
Chris Lattner8cab0212008-01-05 22:25:12 +0000661 const std::vector<Record*>& getImpResults() const { return ImpResults; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000662
David Blaikiecf195302014-11-17 22:55:41 +0000663 void setResultPattern(TreePatternNode *R) { ResultPattern = R; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000664
Chris Lattner8cab0212008-01-05 22:25:12 +0000665 Record *getResult(unsigned RN) const {
666 assert(RN < Results.size());
667 return Results[RN];
668 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000669
Chris Lattner8cab0212008-01-05 22:25:12 +0000670 Record *getOperand(unsigned ON) const {
671 assert(ON < Operands.size());
672 return Operands[ON];
673 }
674
675 Record *getImpResult(unsigned RN) const {
676 assert(RN < ImpResults.size());
677 return ImpResults[RN];
678 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000679
David Blaikiecf195302014-11-17 22:55:41 +0000680 TreePatternNode *getResultPattern() const { return ResultPattern; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000681};
Jim Grosbach50986b52010-12-24 05:06:32 +0000682
Chris Lattnerab3242f2008-01-06 01:10:31 +0000683/// PatternToMatch - Used by CodeGenDAGPatterns to keep tab of patterns
Chris Lattner8cab0212008-01-05 22:25:12 +0000684/// processed to produce isel.
Chris Lattner7ed81692010-02-18 06:47:49 +0000685class PatternToMatch {
686public:
Craig Topper18e6b572017-06-25 17:33:49 +0000687 PatternToMatch(Record *srcrecord, ListInit *preds, TreePatternNode *src,
688 TreePatternNode *dst, std::vector<Record *> dstregs,
Tom Stellard6655dd62014-08-01 00:32:36 +0000689 int complexity, unsigned uid)
Craig Topper18e6b572017-06-25 17:33:49 +0000690 : SrcRecord(srcrecord), Predicates(preds), SrcPattern(src),
691 DstPattern(dst), Dstregs(std::move(dstregs)),
692 AddedComplexity(complexity), ID(uid) {}
Chris Lattner8cab0212008-01-05 22:25:12 +0000693
Jim Grosbachfb116ae2010-12-07 23:05:49 +0000694 Record *SrcRecord; // Originating Record for the pattern.
David Greeneaf8ee2c2011-07-29 22:43:06 +0000695 ListInit *Predicates; // Top level predicate conditions to match.
Chris Lattner8cab0212008-01-05 22:25:12 +0000696 TreePatternNode *SrcPattern; // Source pattern to match.
697 TreePatternNode *DstPattern; // Resulting pattern.
698 std::vector<Record*> Dstregs; // Physical register defs being matched.
Tom Stellard6655dd62014-08-01 00:32:36 +0000699 int AddedComplexity; // Add to matching pattern complexity.
Chris Lattnerd39f75b2010-03-01 22:09:11 +0000700 unsigned ID; // Unique ID for the record.
Chris Lattner8cab0212008-01-05 22:25:12 +0000701
Jim Grosbachfb116ae2010-12-07 23:05:49 +0000702 Record *getSrcRecord() const { return SrcRecord; }
David Greeneaf8ee2c2011-07-29 22:43:06 +0000703 ListInit *getPredicates() const { return Predicates; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000704 TreePatternNode *getSrcPattern() const { return SrcPattern; }
705 TreePatternNode *getDstPattern() const { return DstPattern; }
706 const std::vector<Record*> &getDstRegs() const { return Dstregs; }
Tom Stellard6655dd62014-08-01 00:32:36 +0000707 int getAddedComplexity() const { return AddedComplexity; }
Dan Gohman49e19e92008-08-22 00:20:26 +0000708
709 std::string getPredicateCheck() const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000710
Chris Lattner05925fe2010-03-29 01:40:38 +0000711 /// Compute the complexity metric for the input pattern. This roughly
712 /// corresponds to the number of nodes that are covered.
Tom Stellard6655dd62014-08-01 00:32:36 +0000713 int getPatternComplexity(const CodeGenDAGPatterns &CGP) const;
Chris Lattner8cab0212008-01-05 22:25:12 +0000714};
715
Chris Lattnerab3242f2008-01-06 01:10:31 +0000716class CodeGenDAGPatterns {
Chris Lattner8cab0212008-01-05 22:25:12 +0000717 RecordKeeper &Records;
718 CodeGenTarget Target;
Justin Bogner92a8c612016-07-15 16:31:37 +0000719 CodeGenIntrinsicTable Intrinsics;
720 CodeGenIntrinsicTable TgtIntrinsics;
Jim Grosbach50986b52010-12-24 05:06:32 +0000721
Sean Silvaa4e2c5f2012-09-19 01:47:00 +0000722 std::map<Record*, SDNodeInfo, LessRecordByID> SDNodes;
Krzysztof Parzyszek426bf362017-09-12 15:31:26 +0000723 std::map<Record*, std::pair<Record*, std::string>, LessRecordByID>
724 SDNodeXForms;
Sean Silvaa4e2c5f2012-09-19 01:47:00 +0000725 std::map<Record*, ComplexPattern, LessRecordByID> ComplexPatterns;
David Blaikie3c6ca232014-11-13 21:40:02 +0000726 std::map<Record *, std::unique_ptr<TreePattern>, LessRecordByID>
727 PatternFragments;
Sean Silvaa4e2c5f2012-09-19 01:47:00 +0000728 std::map<Record*, DAGDefaultOperand, LessRecordByID> DefaultOperands;
729 std::map<Record*, DAGInstruction, LessRecordByID> Instructions;
Jim Grosbach50986b52010-12-24 05:06:32 +0000730
Chris Lattner8cab0212008-01-05 22:25:12 +0000731 // Specific SDNode definitions:
732 Record *intrinsic_void_sdnode;
733 Record *intrinsic_w_chain_sdnode, *intrinsic_wo_chain_sdnode;
Jim Grosbach50986b52010-12-24 05:06:32 +0000734
Chris Lattner8cab0212008-01-05 22:25:12 +0000735 /// PatternsToMatch - All of the things we are matching on the DAG. The first
736 /// value is the pattern to match, the second pattern is the result to
737 /// emit.
738 std::vector<PatternToMatch> PatternsToMatch;
739public:
Jim Grosbach50986b52010-12-24 05:06:32 +0000740 CodeGenDAGPatterns(RecordKeeper &R);
Jim Grosbach50986b52010-12-24 05:06:32 +0000741
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +0000742 CodeGenTarget &getTargetInfo() { return Target; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000743 const CodeGenTarget &getTargetInfo() const { return Target; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000744
Chris Lattner8cab0212008-01-05 22:25:12 +0000745 Record *getSDNodeNamed(const std::string &Name) const;
Jim Grosbach50986b52010-12-24 05:06:32 +0000746
Chris Lattner8cab0212008-01-05 22:25:12 +0000747 const SDNodeInfo &getSDNodeInfo(Record *R) const {
748 assert(SDNodes.count(R) && "Unknown node!");
749 return SDNodes.find(R)->second;
750 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000751
Chris Lattnercc43e792008-01-05 22:54:53 +0000752 // Node transformation lookups.
753 typedef std::pair<Record*, std::string> NodeXForm;
754 const NodeXForm &getSDNodeTransform(Record *R) const {
Chris Lattner8cab0212008-01-05 22:25:12 +0000755 assert(SDNodeXForms.count(R) && "Invalid transform!");
756 return SDNodeXForms.find(R)->second;
757 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000758
Sean Silvaa4e2c5f2012-09-19 01:47:00 +0000759 typedef std::map<Record*, NodeXForm, LessRecordByID>::const_iterator
Benjamin Kramerc2dbd5d2009-08-23 10:39:21 +0000760 nx_iterator;
Chris Lattnercc43e792008-01-05 22:54:53 +0000761 nx_iterator nx_begin() const { return SDNodeXForms.begin(); }
762 nx_iterator nx_end() const { return SDNodeXForms.end(); }
763
Jim Grosbach50986b52010-12-24 05:06:32 +0000764
Chris Lattner8cab0212008-01-05 22:25:12 +0000765 const ComplexPattern &getComplexPattern(Record *R) const {
766 assert(ComplexPatterns.count(R) && "Unknown addressing mode!");
767 return ComplexPatterns.find(R)->second;
768 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000769
Chris Lattner8cab0212008-01-05 22:25:12 +0000770 const CodeGenIntrinsic &getIntrinsic(Record *R) const {
771 for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
772 if (Intrinsics[i].TheDef == R) return Intrinsics[i];
Dale Johannesenb842d522009-02-05 01:49:45 +0000773 for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
774 if (TgtIntrinsics[i].TheDef == R) return TgtIntrinsics[i];
Craig Topperc4965bc2012-02-05 07:21:30 +0000775 llvm_unreachable("Unknown intrinsic!");
Chris Lattner8cab0212008-01-05 22:25:12 +0000776 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000777
Chris Lattner8cab0212008-01-05 22:25:12 +0000778 const CodeGenIntrinsic &getIntrinsicInfo(unsigned IID) const {
Dale Johannesenb842d522009-02-05 01:49:45 +0000779 if (IID-1 < Intrinsics.size())
780 return Intrinsics[IID-1];
781 if (IID-Intrinsics.size()-1 < TgtIntrinsics.size())
782 return TgtIntrinsics[IID-Intrinsics.size()-1];
Craig Topperc4965bc2012-02-05 07:21:30 +0000783 llvm_unreachable("Bad intrinsic ID!");
Chris Lattner8cab0212008-01-05 22:25:12 +0000784 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000785
Chris Lattner8cab0212008-01-05 22:25:12 +0000786 unsigned getIntrinsicID(Record *R) const {
787 for (unsigned i = 0, e = Intrinsics.size(); i != e; ++i)
788 if (Intrinsics[i].TheDef == R) return i;
Dale Johannesenb842d522009-02-05 01:49:45 +0000789 for (unsigned i = 0, e = TgtIntrinsics.size(); i != e; ++i)
790 if (TgtIntrinsics[i].TheDef == R) return i + Intrinsics.size();
Craig Topperc4965bc2012-02-05 07:21:30 +0000791 llvm_unreachable("Unknown intrinsic!");
Chris Lattner8cab0212008-01-05 22:25:12 +0000792 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000793
Chris Lattner7ed81692010-02-18 06:47:49 +0000794 const DAGDefaultOperand &getDefaultOperand(Record *R) const {
Chris Lattner8cab0212008-01-05 22:25:12 +0000795 assert(DefaultOperands.count(R) &&"Isn't an analyzed default operand!");
796 return DefaultOperands.find(R)->second;
797 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000798
Chris Lattner8cab0212008-01-05 22:25:12 +0000799 // Pattern Fragment information.
800 TreePattern *getPatternFragment(Record *R) const {
801 assert(PatternFragments.count(R) && "Invalid pattern fragment request!");
David Blaikie3c6ca232014-11-13 21:40:02 +0000802 return PatternFragments.find(R)->second.get();
Chris Lattner8cab0212008-01-05 22:25:12 +0000803 }
Chris Lattnerf1447252010-03-19 21:37:09 +0000804 TreePattern *getPatternFragmentIfRead(Record *R) const {
David Blaikie3c6ca232014-11-13 21:40:02 +0000805 if (!PatternFragments.count(R))
806 return nullptr;
807 return PatternFragments.find(R)->second.get();
Chris Lattnerf1447252010-03-19 21:37:09 +0000808 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000809
David Blaikiefcacc742014-11-13 21:56:57 +0000810 typedef std::map<Record *, std::unique_ptr<TreePattern>,
811 LessRecordByID>::const_iterator pf_iterator;
Chris Lattner8cab0212008-01-05 22:25:12 +0000812 pf_iterator pf_begin() const { return PatternFragments.begin(); }
813 pf_iterator pf_end() const { return PatternFragments.end(); }
Ahmed Bougacha36f70352016-12-21 23:26:20 +0000814 iterator_range<pf_iterator> ptfs() const { return PatternFragments; }
Chris Lattner8cab0212008-01-05 22:25:12 +0000815
816 // Patterns to match information.
Chris Lattner9abe77b2008-01-05 22:30:17 +0000817 typedef std::vector<PatternToMatch>::const_iterator ptm_iterator;
818 ptm_iterator ptm_begin() const { return PatternsToMatch.begin(); }
819 ptm_iterator ptm_end() const { return PatternsToMatch.end(); }
Ahmed Bougacha36f70352016-12-21 23:26:20 +0000820 iterator_range<ptm_iterator> ptms() const { return PatternsToMatch; }
Jim Grosbach50986b52010-12-24 05:06:32 +0000821
Ahmed Bougacha14107512013-10-28 18:07:21 +0000822 /// Parse the Pattern for an instruction, and insert the result in DAGInsts.
823 typedef std::map<Record*, DAGInstruction, LessRecordByID> DAGInstMap;
824 const DAGInstruction &parseInstructionPattern(
825 CodeGenInstruction &CGI, ListInit *Pattern,
826 DAGInstMap &DAGInsts);
Jim Grosbach50986b52010-12-24 05:06:32 +0000827
Chris Lattner8cab0212008-01-05 22:25:12 +0000828 const DAGInstruction &getInstruction(Record *R) const {
829 assert(Instructions.count(R) && "Unknown instruction!");
830 return Instructions.find(R)->second;
831 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000832
Chris Lattner8cab0212008-01-05 22:25:12 +0000833 Record *get_intrinsic_void_sdnode() const {
834 return intrinsic_void_sdnode;
835 }
836 Record *get_intrinsic_w_chain_sdnode() const {
837 return intrinsic_w_chain_sdnode;
838 }
839 Record *get_intrinsic_wo_chain_sdnode() const {
840 return intrinsic_wo_chain_sdnode;
841 }
Jim Grosbach50986b52010-12-24 05:06:32 +0000842
Jakob Stoklund Olesene4197252009-10-15 18:50:03 +0000843 bool hasTargetIntrinsics() { return !TgtIntrinsics.empty(); }
844
Chris Lattner8cab0212008-01-05 22:25:12 +0000845private:
846 void ParseNodeInfo();
Chris Lattnercc43e792008-01-05 22:54:53 +0000847 void ParseNodeTransforms();
Chris Lattner8cab0212008-01-05 22:25:12 +0000848 void ParseComplexPatterns();
Hal Finkel2756dc12014-02-28 00:26:56 +0000849 void ParsePatternFragments(bool OutFrags = false);
Chris Lattner8cab0212008-01-05 22:25:12 +0000850 void ParseDefaultOperands();
851 void ParseInstructions();
852 void ParsePatterns();
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +0000853 void InferInstructionFlags();
Chris Lattner8cab0212008-01-05 22:25:12 +0000854 void GenerateVariants();
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +0000855 void VerifyInstructionFlags();
Jim Grosbach50986b52010-12-24 05:06:32 +0000856
Craig Topper18e6b572017-06-25 17:33:49 +0000857 void AddPatternToMatch(TreePattern *Pattern, PatternToMatch &&PTM);
Chris Lattner8cab0212008-01-05 22:25:12 +0000858 void FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
859 std::map<std::string,
860 TreePatternNode*> &InstInputs,
861 std::map<std::string,
862 TreePatternNode*> &InstResults,
Chris Lattner8cab0212008-01-05 22:25:12 +0000863 std::vector<Record*> &InstImpResults);
864};
865} // end namespace llvm
866
867#endif