blob: 64b055033e9fb74eb79a0715aef02539c94f0292 [file] [log] [blame]
Chris Lattnerab3242f2008-01-06 01:10:31 +00001//===- CodeGenDAGPatterns.cpp - Read DAG patterns from .td file -----------===//
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 implements 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
Chris Lattner78ac0742008-01-05 23:37:52 +000015#include "CodeGenDAGPatterns.h"
Chris Lattnercabe0372010-03-15 06:00:16 +000016#include "llvm/ADT/STLExtras.h"
Craig Topper3522ab32015-11-28 08:23:02 +000017#include "llvm/ADT/SmallString.h"
Chandler Carruth91d19d82012-12-04 10:37:14 +000018#include "llvm/ADT/StringExtras.h"
Jim Grosbach3ae48a62012-04-18 17:46:41 +000019#include "llvm/ADT/Twine.h"
Chris Lattner8cab0212008-01-05 22:25:12 +000020#include "llvm/Support/Debug.h"
David Blaikieb48ed1a2012-01-17 04:43:56 +000021#include "llvm/Support/ErrorHandling.h"
Chandler Carruth91d19d82012-12-04 10:37:14 +000022#include "llvm/TableGen/Error.h"
23#include "llvm/TableGen/Record.h"
Chuck Rose IIIfe2714f2008-01-15 21:43:17 +000024#include <algorithm>
Benjamin Kramerb0640db2012-03-23 11:35:30 +000025#include <cstdio>
26#include <set>
Chris Lattner8cab0212008-01-05 22:25:12 +000027using namespace llvm;
28
Chandler Carruthe96dd892014-04-21 22:55:11 +000029#define DEBUG_TYPE "dag-patterns"
30
Chris Lattner8cab0212008-01-05 22:25:12 +000031//===----------------------------------------------------------------------===//
Chris Lattnercabe0372010-03-15 06:00:16 +000032// EEVT::TypeSet Implementation
33//===----------------------------------------------------------------------===//
Chris Lattner8cab0212008-01-05 22:25:12 +000034
Owen Anderson9f944592009-08-11 20:47:22 +000035static inline bool isInteger(MVT::SimpleValueType VT) {
Craig Topper95198f42013-09-25 06:37:18 +000036 return MVT(VT).isInteger();
Duncan Sands13237ac2008-06-06 12:08:01 +000037}
Owen Anderson9f944592009-08-11 20:47:22 +000038static inline bool isFloatingPoint(MVT::SimpleValueType VT) {
Craig Topper95198f42013-09-25 06:37:18 +000039 return MVT(VT).isFloatingPoint();
Duncan Sands13237ac2008-06-06 12:08:01 +000040}
Owen Anderson9f944592009-08-11 20:47:22 +000041static inline bool isVector(MVT::SimpleValueType VT) {
Craig Topper95198f42013-09-25 06:37:18 +000042 return MVT(VT).isVector();
Duncan Sands13237ac2008-06-06 12:08:01 +000043}
Chris Lattner6d765eb2010-03-19 17:41:26 +000044static inline bool isScalar(MVT::SimpleValueType VT) {
Craig Topper95198f42013-09-25 06:37:18 +000045 return !MVT(VT).isVector();
Chris Lattner6d765eb2010-03-19 17:41:26 +000046}
Duncan Sands13237ac2008-06-06 12:08:01 +000047
Chris Lattnercabe0372010-03-15 06:00:16 +000048EEVT::TypeSet::TypeSet(MVT::SimpleValueType VT, TreePattern &TP) {
49 if (VT == MVT::iAny)
50 EnforceInteger(TP);
51 else if (VT == MVT::fAny)
52 EnforceFloatingPoint(TP);
53 else if (VT == MVT::vAny)
54 EnforceVector(TP);
55 else {
56 assert((VT < MVT::LAST_VALUETYPE || VT == MVT::iPTR ||
Ramkumar Ramachandra75a4f352015-01-22 20:14:38 +000057 VT == MVT::iPTRAny || VT == MVT::Any) && "Not a concrete type!");
Chris Lattnercabe0372010-03-15 06:00:16 +000058 TypeVec.push_back(VT);
59 }
Chris Lattner8cab0212008-01-05 22:25:12 +000060}
61
Chris Lattnercabe0372010-03-15 06:00:16 +000062
Jakob Stoklund Olesen13d4a072013-03-17 17:26:09 +000063EEVT::TypeSet::TypeSet(ArrayRef<MVT::SimpleValueType> VTList) {
Chris Lattnercabe0372010-03-15 06:00:16 +000064 assert(!VTList.empty() && "empty list?");
65 TypeVec.append(VTList.begin(), VTList.end());
Jim Grosbach65586fe2010-12-21 16:16:00 +000066
Chris Lattnercabe0372010-03-15 06:00:16 +000067 if (!VTList.empty())
68 assert(VTList[0] != MVT::iAny && VTList[0] != MVT::vAny &&
69 VTList[0] != MVT::fAny);
Jim Grosbach65586fe2010-12-21 16:16:00 +000070
Chris Lattner4a5f7be2010-03-27 20:32:26 +000071 // Verify no duplicates.
Chris Lattnercabe0372010-03-15 06:00:16 +000072 array_pod_sort(TypeVec.begin(), TypeVec.end());
Chris Lattner4a5f7be2010-03-27 20:32:26 +000073 assert(std::unique(TypeVec.begin(), TypeVec.end()) == TypeVec.end());
Chris Lattner8cab0212008-01-05 22:25:12 +000074}
75
Chris Lattnerbe6b17f2010-03-19 04:54:36 +000076/// FillWithPossibleTypes - Set to all legal types and return true, only valid
77/// on completely unknown type sets.
Chris Lattner6d765eb2010-03-19 17:41:26 +000078bool EEVT::TypeSet::FillWithPossibleTypes(TreePattern &TP,
79 bool (*Pred)(MVT::SimpleValueType),
80 const char *PredicateName) {
Chris Lattnerbe6b17f2010-03-19 04:54:36 +000081 assert(isCompletelyUnknown());
Jakob Stoklund Olesen13d4a072013-03-17 17:26:09 +000082 ArrayRef<MVT::SimpleValueType> LegalTypes =
Chris Lattner6d765eb2010-03-19 17:41:26 +000083 TP.getDAGPatterns().getTargetInfo().getLegalValueTypes();
Jim Grosbach65586fe2010-12-21 16:16:00 +000084
Joerg Sonnenberger635debe2012-10-25 20:33:17 +000085 if (TP.hasError())
86 return false;
87
Craig Topper306cb122015-11-22 20:46:24 +000088 for (MVT::SimpleValueType VT : LegalTypes)
89 if (!Pred || Pred(VT))
90 TypeVec.push_back(VT);
Chris Lattner6d765eb2010-03-19 17:41:26 +000091
92 // If we have nothing that matches the predicate, bail out.
Joerg Sonnenberger635debe2012-10-25 20:33:17 +000093 if (TypeVec.empty()) {
Chris Lattner6d765eb2010-03-19 17:41:26 +000094 TP.error("Type inference contradiction found, no " +
Jim Grosbach65586fe2010-12-21 16:16:00 +000095 std::string(PredicateName) + " types found");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +000096 return false;
97 }
Chris Lattner6d765eb2010-03-19 17:41:26 +000098 // No need to sort with one element.
99 if (TypeVec.size() == 1) return true;
100
101 // Remove duplicates.
102 array_pod_sort(TypeVec.begin(), TypeVec.end());
103 TypeVec.erase(std::unique(TypeVec.begin(), TypeVec.end()), TypeVec.end());
Jim Grosbach65586fe2010-12-21 16:16:00 +0000104
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000105 return true;
106}
Chris Lattnercabe0372010-03-15 06:00:16 +0000107
108/// hasIntegerTypes - Return true if this TypeSet contains iAny or an
109/// integer value type.
110bool EEVT::TypeSet::hasIntegerTypes() const {
David Majnemer0a16c222016-08-11 21:15:00 +0000111 return any_of(TypeVec, isInteger);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000112}
Chris Lattnercabe0372010-03-15 06:00:16 +0000113
114/// hasFloatingPointTypes - Return true if this TypeSet contains an fAny or
115/// a floating point value type.
116bool EEVT::TypeSet::hasFloatingPointTypes() const {
David Majnemer0a16c222016-08-11 21:15:00 +0000117 return any_of(TypeVec, isFloatingPoint);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000118}
Chris Lattnercabe0372010-03-15 06:00:16 +0000119
Craig Topper74169dc2014-01-28 04:49:01 +0000120/// hasScalarTypes - Return true if this TypeSet contains a scalar value type.
121bool EEVT::TypeSet::hasScalarTypes() const {
David Majnemer0a16c222016-08-11 21:15:00 +0000122 return any_of(TypeVec, isScalar);
Craig Topper74169dc2014-01-28 04:49:01 +0000123}
124
Chris Lattnercabe0372010-03-15 06:00:16 +0000125/// hasVectorTypes - Return true if this TypeSet contains a vAny or a vector
126/// value type.
127bool EEVT::TypeSet::hasVectorTypes() const {
David Majnemer0a16c222016-08-11 21:15:00 +0000128 return any_of(TypeVec, isVector);
Chris Lattner8cab0212008-01-05 22:25:12 +0000129}
Bob Wilson2cd5da82009-08-11 01:14:02 +0000130
Chris Lattnercabe0372010-03-15 06:00:16 +0000131
132std::string EEVT::TypeSet::getName() const {
Chris Lattnerda5b4ad2010-03-19 01:14:27 +0000133 if (TypeVec.empty()) return "<empty>";
Jim Grosbach65586fe2010-12-21 16:16:00 +0000134
Chris Lattnercabe0372010-03-15 06:00:16 +0000135 std::string Result;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000136
Chris Lattnercabe0372010-03-15 06:00:16 +0000137 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i) {
138 std::string VTName = llvm::getEnumName(TypeVec[i]);
139 // Strip off MVT:: prefix if present.
140 if (VTName.substr(0,5) == "MVT::")
141 VTName = VTName.substr(5);
142 if (i) Result += ':';
143 Result += VTName;
144 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000145
Chris Lattnercabe0372010-03-15 06:00:16 +0000146 if (TypeVec.size() == 1)
147 return Result;
148 return "{" + Result + "}";
Bob Wilson2cd5da82009-08-11 01:14:02 +0000149}
Chris Lattnercabe0372010-03-15 06:00:16 +0000150
151/// MergeInTypeInfo - This merges in type information from the specified
152/// argument. If 'this' changes, it returns true. If the two types are
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000153/// contradictory (e.g. merge f32 into i32) then this flags an error.
Chris Lattnercabe0372010-03-15 06:00:16 +0000154bool EEVT::TypeSet::MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP){
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000155 if (InVT.isCompletelyUnknown() || *this == InVT || TP.hasError())
Chris Lattnercabe0372010-03-15 06:00:16 +0000156 return false;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000157
Chris Lattnercabe0372010-03-15 06:00:16 +0000158 if (isCompletelyUnknown()) {
159 *this = InVT;
160 return true;
161 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000162
Craig Topperd2177de2015-11-23 07:19:08 +0000163 assert(!TypeVec.empty() && !InVT.TypeVec.empty() && "No unknowns");
Jim Grosbach65586fe2010-12-21 16:16:00 +0000164
Chris Lattnercabe0372010-03-15 06:00:16 +0000165 // Handle the abstract cases, seeing if we can resolve them better.
166 switch (TypeVec[0]) {
167 default: break;
168 case MVT::iPTR:
169 case MVT::iPTRAny:
170 if (InVT.hasIntegerTypes()) {
171 EEVT::TypeSet InCopy(InVT);
172 InCopy.EnforceInteger(TP);
173 InCopy.EnforceScalar(TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000174
Chris Lattnercabe0372010-03-15 06:00:16 +0000175 if (InCopy.isConcrete()) {
176 // If the RHS has one integer type, upgrade iPTR to i32.
177 TypeVec[0] = InVT.TypeVec[0];
178 return true;
179 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000180
Chris Lattnercabe0372010-03-15 06:00:16 +0000181 // If the input has multiple scalar integers, this doesn't add any info.
182 if (!InCopy.isCompletelyUnknown())
183 return false;
184 }
185 break;
186 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000187
Chris Lattnercabe0372010-03-15 06:00:16 +0000188 // If the input constraint is iAny/iPTR and this is an integer type list,
189 // remove non-integer types from the list.
190 if ((InVT.TypeVec[0] == MVT::iPTR || InVT.TypeVec[0] == MVT::iPTRAny) &&
191 hasIntegerTypes()) {
192 bool MadeChange = EnforceInteger(TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000193
Chris Lattnercabe0372010-03-15 06:00:16 +0000194 // If we're merging in iPTR/iPTRAny and the node currently has a list of
195 // multiple different integer types, replace them with a single iPTR.
196 if ((InVT.TypeVec[0] == MVT::iPTR || InVT.TypeVec[0] == MVT::iPTRAny) &&
197 TypeVec.size() != 1) {
Craig Topper4856c812015-11-24 08:20:41 +0000198 TypeVec.assign(1, InVT.TypeVec[0]);
Chris Lattnercabe0372010-03-15 06:00:16 +0000199 MadeChange = true;
200 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000201
Chris Lattnercabe0372010-03-15 06:00:16 +0000202 return MadeChange;
203 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000204
Chris Lattnercabe0372010-03-15 06:00:16 +0000205 // If this is a type list and the RHS is a typelist as well, eliminate entries
206 // from this list that aren't in the other one.
Chris Lattnercabe0372010-03-15 06:00:16 +0000207 TypeSet InputSet(*this);
208
Craig Topperfef745c2015-11-24 08:20:42 +0000209 TypeVec.clear();
210 std::set_intersection(InputSet.TypeVec.begin(), InputSet.TypeVec.end(),
211 InVT.TypeVec.begin(), InVT.TypeVec.end(),
212 std::back_inserter(TypeVec));
Jim Grosbach65586fe2010-12-21 16:16:00 +0000213
Craig Topperfef745c2015-11-24 08:20:42 +0000214 // If the intersection is the same size as the original set then we're done.
215 if (TypeVec.size() == InputSet.TypeVec.size())
216 return false;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000217
Chris Lattnercabe0372010-03-15 06:00:16 +0000218 // If we removed all of our types, we have a type contradiction.
219 if (!TypeVec.empty())
Craig Topperfef745c2015-11-24 08:20:42 +0000220 return true;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000221
Chris Lattnercabe0372010-03-15 06:00:16 +0000222 // FIXME: Really want an SMLoc here!
223 TP.error("Type inference contradiction found, merging '" +
224 InVT.getName() + "' into '" + InputSet.getName() + "'");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000225 return false;
Chris Lattnercabe0372010-03-15 06:00:16 +0000226}
227
228/// EnforceInteger - Remove all non-integer types from this set.
229bool EEVT::TypeSet::EnforceInteger(TreePattern &TP) {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000230 if (TP.hasError())
231 return false;
Chris Lattnercabe0372010-03-15 06:00:16 +0000232 // If we know nothing, then get the full set.
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000233 if (TypeVec.empty())
Chris Lattner6d765eb2010-03-19 17:41:26 +0000234 return FillWithPossibleTypes(TP, isInteger, "integer");
Craig Topperd2177de2015-11-23 07:19:08 +0000235
Chris Lattnercabe0372010-03-15 06:00:16 +0000236 if (!hasFloatingPointTypes())
Chris Lattner6d765eb2010-03-19 17:41:26 +0000237 return false;
238
239 TypeSet InputSet(*this);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000240
Chris Lattnercabe0372010-03-15 06:00:16 +0000241 // Filter out all the fp types.
David Majnemerc7004902016-08-12 04:32:37 +0000242 TypeVec.erase(remove_if(TypeVec, std::not1(std::ptr_fun(isInteger))),
Craig Topperde2d7592015-11-23 07:19:10 +0000243 TypeVec.end());
Jim Grosbach65586fe2010-12-21 16:16:00 +0000244
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000245 if (TypeVec.empty()) {
Chris Lattnercabe0372010-03-15 06:00:16 +0000246 TP.error("Type inference contradiction found, '" +
247 InputSet.getName() + "' needs to be integer");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000248 return false;
249 }
Chris Lattner6d765eb2010-03-19 17:41:26 +0000250 return true;
Chris Lattnercabe0372010-03-15 06:00:16 +0000251}
252
253/// EnforceFloatingPoint - Remove all integer types from this set.
254bool EEVT::TypeSet::EnforceFloatingPoint(TreePattern &TP) {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000255 if (TP.hasError())
256 return false;
Chris Lattnercabe0372010-03-15 06:00:16 +0000257 // If we know nothing, then get the full set.
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000258 if (TypeVec.empty())
Chris Lattner6d765eb2010-03-19 17:41:26 +0000259 return FillWithPossibleTypes(TP, isFloatingPoint, "floating point");
260
Chris Lattnercabe0372010-03-15 06:00:16 +0000261 if (!hasIntegerTypes())
Chris Lattner6d765eb2010-03-19 17:41:26 +0000262 return false;
263
264 TypeSet InputSet(*this);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000265
Craig Topperde2d7592015-11-23 07:19:10 +0000266 // Filter out all the integer types.
David Majnemerc7004902016-08-12 04:32:37 +0000267 TypeVec.erase(remove_if(TypeVec, std::not1(std::ptr_fun(isFloatingPoint))),
Craig Topperde2d7592015-11-23 07:19:10 +0000268 TypeVec.end());
Jim Grosbach65586fe2010-12-21 16:16:00 +0000269
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000270 if (TypeVec.empty()) {
Chris Lattnercabe0372010-03-15 06:00:16 +0000271 TP.error("Type inference contradiction found, '" +
272 InputSet.getName() + "' needs to be floating point");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000273 return false;
274 }
Chris Lattner6d765eb2010-03-19 17:41:26 +0000275 return true;
Chris Lattnercabe0372010-03-15 06:00:16 +0000276}
277
278/// EnforceScalar - Remove all vector types from this.
279bool EEVT::TypeSet::EnforceScalar(TreePattern &TP) {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000280 if (TP.hasError())
281 return false;
282
Chris Lattnercabe0372010-03-15 06:00:16 +0000283 // If we know nothing, then get the full set.
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000284 if (TypeVec.empty())
Chris Lattner6d765eb2010-03-19 17:41:26 +0000285 return FillWithPossibleTypes(TP, isScalar, "scalar");
286
Chris Lattnercabe0372010-03-15 06:00:16 +0000287 if (!hasVectorTypes())
Chris Lattner6d765eb2010-03-19 17:41:26 +0000288 return false;
289
290 TypeSet InputSet(*this);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000291
Chris Lattnercabe0372010-03-15 06:00:16 +0000292 // Filter out all the vector types.
David Majnemerc7004902016-08-12 04:32:37 +0000293 TypeVec.erase(remove_if(TypeVec, std::not1(std::ptr_fun(isScalar))),
Craig Topperde2d7592015-11-23 07:19:10 +0000294 TypeVec.end());
Jim Grosbach65586fe2010-12-21 16:16:00 +0000295
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000296 if (TypeVec.empty()) {
Chris Lattnercabe0372010-03-15 06:00:16 +0000297 TP.error("Type inference contradiction found, '" +
298 InputSet.getName() + "' needs to be scalar");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000299 return false;
300 }
Chris Lattner6d765eb2010-03-19 17:41:26 +0000301 return true;
Chris Lattnercabe0372010-03-15 06:00:16 +0000302}
303
304/// EnforceVector - Remove all vector types from this.
305bool EEVT::TypeSet::EnforceVector(TreePattern &TP) {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000306 if (TP.hasError())
307 return false;
308
Chris Lattner6d765eb2010-03-19 17:41:26 +0000309 // If we know nothing, then get the full set.
310 if (TypeVec.empty())
311 return FillWithPossibleTypes(TP, isVector, "vector");
312
Chris Lattnercabe0372010-03-15 06:00:16 +0000313 TypeSet InputSet(*this);
314 bool MadeChange = false;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000315
Chris Lattnercabe0372010-03-15 06:00:16 +0000316 // Filter out all the scalar types.
David Majnemerc7004902016-08-12 04:32:37 +0000317 TypeVec.erase(remove_if(TypeVec, std::not1(std::ptr_fun(isVector))),
Craig Topperde2d7592015-11-23 07:19:10 +0000318 TypeVec.end());
Jim Grosbach65586fe2010-12-21 16:16:00 +0000319
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000320 if (TypeVec.empty()) {
Chris Lattnercabe0372010-03-15 06:00:16 +0000321 TP.error("Type inference contradiction found, '" +
322 InputSet.getName() + "' needs to be a vector");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000323 return false;
324 }
Chris Lattnercabe0372010-03-15 06:00:16 +0000325 return MadeChange;
326}
327
328
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000329
Craig Topper74169dc2014-01-28 04:49:01 +0000330/// EnforceSmallerThan - 'this' must be a smaller VT than Other. For vectors
Bruce Mitchenere9ffb452015-09-12 01:17:08 +0000331/// this should be based on the element type. Update this and other based on
Craig Topper74169dc2014-01-28 04:49:01 +0000332/// this information.
Chris Lattnercabe0372010-03-15 06:00:16 +0000333bool EEVT::TypeSet::EnforceSmallerThan(EEVT::TypeSet &Other, TreePattern &TP) {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000334 if (TP.hasError())
335 return false;
336
Chris Lattnercabe0372010-03-15 06:00:16 +0000337 // Both operands must be integer or FP, but we don't care which.
338 bool MadeChange = false;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000339
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000340 if (isCompletelyUnknown())
341 MadeChange = FillWithPossibleTypes(TP);
342
343 if (Other.isCompletelyUnknown())
344 MadeChange = Other.FillWithPossibleTypes(TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000345
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000346 // If one side is known to be integer or known to be FP but the other side has
347 // no information, get at least the type integrality info in there.
348 if (!hasFloatingPointTypes())
349 MadeChange |= Other.EnforceInteger(TP);
350 else if (!hasIntegerTypes())
351 MadeChange |= Other.EnforceFloatingPoint(TP);
352 if (!Other.hasFloatingPointTypes())
353 MadeChange |= EnforceInteger(TP);
354 else if (!Other.hasIntegerTypes())
355 MadeChange |= EnforceFloatingPoint(TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000356
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000357 assert(!isCompletelyUnknown() && !Other.isCompletelyUnknown() &&
358 "Should have a type list now");
Jim Grosbach65586fe2010-12-21 16:16:00 +0000359
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000360 // If one contains vectors but the other doesn't pull vectors out.
361 if (!hasVectorTypes())
362 MadeChange |= Other.EnforceScalar(TP);
Craig Topper74169dc2014-01-28 04:49:01 +0000363 else if (!hasScalarTypes())
364 MadeChange |= Other.EnforceVector(TP);
Craig Topper6dbcb942014-01-25 05:17:38 +0000365 if (!Other.hasVectorTypes())
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000366 MadeChange |= EnforceScalar(TP);
Craig Topper74169dc2014-01-28 04:49:01 +0000367 else if (!Other.hasScalarTypes())
368 MadeChange |= EnforceVector(TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000369
Craig Topper74169dc2014-01-28 04:49:01 +0000370 // This code does not currently handle nodes which have multiple types,
371 // where some types are integer, and some are fp. Assert that this is not
372 // the case.
373 assert(!(hasIntegerTypes() && hasFloatingPointTypes()) &&
374 !(Other.hasIntegerTypes() && Other.hasFloatingPointTypes()) &&
375 "SDTCisOpSmallerThanOp does not handle mixed int/fp types!");
376
377 if (TP.hasError())
378 return false;
379
Craig Topper7bbd37b2015-03-10 03:25:07 +0000380 // Okay, find the smallest type from current set and remove anything the
381 // same or smaller from the other set. We need to ensure that the scalar
382 // type size is smaller than the scalar size of the smallest type. For
383 // vectors, we also need to make sure that the total size is no larger than
384 // the size of the smallest type.
Craig Topper5712d462015-11-24 08:20:47 +0000385 {
386 TypeSet InputSet(Other);
Craig Topper1282df52015-12-03 05:57:37 +0000387 MVT Smallest = *std::min_element(TypeVec.begin(), TypeVec.end(),
388 [](MVT A, MVT B) {
389 return A.getScalarSizeInBits() < B.getScalarSizeInBits() ||
390 (A.getScalarSizeInBits() == B.getScalarSizeInBits() &&
391 A.getSizeInBits() < B.getSizeInBits());
392 });
393
David Majnemerc7004902016-08-12 04:32:37 +0000394 auto I = remove_if(Other.TypeVec, [Smallest](MVT OtherVT) {
395 // Don't compare vector and non-vector types.
396 if (OtherVT.isVector() != Smallest.isVector())
397 return false;
398 // The getSizeInBits() check here is only needed for vectors, but is
399 // a subset of the scalar check for scalars so no need to qualify.
400 return OtherVT.getScalarSizeInBits() <= Smallest.getScalarSizeInBits() ||
401 OtherVT.getSizeInBits() < Smallest.getSizeInBits();
402 });
Craig Topper5712d462015-11-24 08:20:47 +0000403 MadeChange |= I != Other.TypeVec.end(); // If we're about to remove types.
404 Other.TypeVec.erase(I, Other.TypeVec.end());
Craig Topper74169dc2014-01-28 04:49:01 +0000405
Craig Topper5712d462015-11-24 08:20:47 +0000406 if (Other.TypeVec.empty()) {
407 TP.error("Type inference contradiction found, '" + InputSet.getName() +
408 "' has nothing larger than '" + getName() +"'!");
409 return false;
410 }
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000411 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000412
Craig Topper7bbd37b2015-03-10 03:25:07 +0000413 // Okay, find the largest type from the other set and remove anything the
414 // same or smaller from the current set. We need to ensure that the scalar
415 // type size is larger than the scalar size of the largest type. For
416 // vectors, we also need to make sure that the total size is no smaller than
417 // the size of the largest type.
Craig Topper5712d462015-11-24 08:20:47 +0000418 {
419 TypeSet InputSet(*this);
Craig Topper1282df52015-12-03 05:57:37 +0000420 MVT Largest = *std::max_element(Other.TypeVec.begin(), Other.TypeVec.end(),
421 [](MVT A, MVT B) {
422 return A.getScalarSizeInBits() < B.getScalarSizeInBits() ||
423 (A.getScalarSizeInBits() == B.getScalarSizeInBits() &&
424 A.getSizeInBits() < B.getSizeInBits());
425 });
David Majnemerc7004902016-08-12 04:32:37 +0000426 auto I = remove_if(TypeVec, [Largest](MVT OtherVT) {
427 // Don't compare vector and non-vector types.
428 if (OtherVT.isVector() != Largest.isVector())
429 return false;
430 return OtherVT.getScalarSizeInBits() >= Largest.getScalarSizeInBits() ||
431 OtherVT.getSizeInBits() > Largest.getSizeInBits();
432 });
Craig Topper5712d462015-11-24 08:20:47 +0000433 MadeChange |= I != TypeVec.end(); // If we're about to remove types.
434 TypeVec.erase(I, TypeVec.end());
Jim Grosbach65586fe2010-12-21 16:16:00 +0000435
Craig Topper5712d462015-11-24 08:20:47 +0000436 if (TypeVec.empty()) {
437 TP.error("Type inference contradiction found, '" + InputSet.getName() +
438 "' has nothing smaller than '" + Other.getName() +"'!");
439 return false;
440 }
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000441 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000442
Chris Lattnerbe6b17f2010-03-19 04:54:36 +0000443 return MadeChange;
Chris Lattnercabe0372010-03-15 06:00:16 +0000444}
445
Bruce Mitchenere9ffb452015-09-12 01:17:08 +0000446/// EnforceVectorEltTypeIs - 'this' is now constrained to be a vector type
Chris Lattner57ebf632010-03-24 00:01:16 +0000447/// whose element is specified by VTOperand.
Craig Topper0be34582015-03-05 07:11:34 +0000448bool EEVT::TypeSet::EnforceVectorEltTypeIs(MVT::SimpleValueType VT,
449 TreePattern &TP) {
450 bool MadeChange = false;
451
452 MadeChange |= EnforceVector(TP);
453
454 TypeSet InputSet(*this);
455
456 // Filter out all the types which don't have the right element type.
David Majnemerc7004902016-08-12 04:32:37 +0000457 auto I = remove_if(TypeVec, [VT](MVT VVT) {
458 return VVT.getVectorElementType().SimpleTy != VT;
459 });
Craig Topper5712d462015-11-24 08:20:47 +0000460 MadeChange |= I != TypeVec.end();
461 TypeVec.erase(I, TypeVec.end());
Craig Topper0be34582015-03-05 07:11:34 +0000462
463 if (TypeVec.empty()) { // FIXME: Really want an SMLoc here!
464 TP.error("Type inference contradiction found, forcing '" +
Craig Topper5712d462015-11-24 08:20:47 +0000465 InputSet.getName() + "' to have a vector element of type " +
466 getEnumName(VT));
Craig Topper0be34582015-03-05 07:11:34 +0000467 return false;
468 }
469
470 return MadeChange;
471}
472
Bruce Mitchenere9ffb452015-09-12 01:17:08 +0000473/// EnforceVectorEltTypeIs - 'this' is now constrained to be a vector type
Craig Topper0be34582015-03-05 07:11:34 +0000474/// whose element is specified by VTOperand.
Chris Lattner57ebf632010-03-24 00:01:16 +0000475bool EEVT::TypeSet::EnforceVectorEltTypeIs(EEVT::TypeSet &VTOperand,
Chris Lattnercabe0372010-03-15 06:00:16 +0000476 TreePattern &TP) {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000477 if (TP.hasError())
478 return false;
479
Chris Lattner57ebf632010-03-24 00:01:16 +0000480 // "This" must be a vector and "VTOperand" must be a scalar.
Chris Lattnercabe0372010-03-15 06:00:16 +0000481 bool MadeChange = false;
Chris Lattner57ebf632010-03-24 00:01:16 +0000482 MadeChange |= EnforceVector(TP);
483 MadeChange |= VTOperand.EnforceScalar(TP);
484
485 // If we know the vector type, it forces the scalar to agree.
486 if (isConcrete()) {
Craig Topper95198f42013-09-25 06:37:18 +0000487 MVT IVT = getConcrete();
Chris Lattner57ebf632010-03-24 00:01:16 +0000488 IVT = IVT.getVectorElementType();
Craig Topperdbfcc102015-11-24 08:20:44 +0000489 return MadeChange || VTOperand.MergeInTypeInfo(IVT.SimpleTy, TP);
Chris Lattner57ebf632010-03-24 00:01:16 +0000490 }
491
492 // If the scalar type is known, filter out vector types whose element types
493 // disagree.
494 if (!VTOperand.isConcrete())
495 return MadeChange;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000496
Chris Lattner57ebf632010-03-24 00:01:16 +0000497 MVT::SimpleValueType VT = VTOperand.getConcrete();
Jim Grosbach65586fe2010-12-21 16:16:00 +0000498
Craig Topper16f1cbd2015-11-24 08:20:45 +0000499 MadeChange |= EnforceVectorEltTypeIs(VT, TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000500
Chris Lattnercabe0372010-03-15 06:00:16 +0000501 return MadeChange;
502}
503
Bruce Mitchenere9ffb452015-09-12 01:17:08 +0000504/// EnforceVectorSubVectorTypeIs - 'this' is now constrained to be a
David Greene127fd1d2011-01-24 20:53:18 +0000505/// vector type specified by VTOperand.
506bool EEVT::TypeSet::EnforceVectorSubVectorTypeIs(EEVT::TypeSet &VTOperand,
507 TreePattern &TP) {
Craig Topper6e1faaf2014-01-25 17:40:33 +0000508 if (TP.hasError())
509 return false;
510
David Greene127fd1d2011-01-24 20:53:18 +0000511 // "This" must be a vector and "VTOperand" must be a vector.
512 bool MadeChange = false;
513 MadeChange |= EnforceVector(TP);
514 MadeChange |= VTOperand.EnforceVector(TP);
515
Craig Topper6e1faaf2014-01-25 17:40:33 +0000516 // If one side is known to be integer or known to be FP but the other side has
517 // no information, get at least the type integrality info in there.
518 if (!hasFloatingPointTypes())
519 MadeChange |= VTOperand.EnforceInteger(TP);
520 else if (!hasIntegerTypes())
521 MadeChange |= VTOperand.EnforceFloatingPoint(TP);
522 if (!VTOperand.hasFloatingPointTypes())
523 MadeChange |= EnforceInteger(TP);
524 else if (!VTOperand.hasIntegerTypes())
525 MadeChange |= EnforceFloatingPoint(TP);
526
527 assert(!isCompletelyUnknown() && !VTOperand.isCompletelyUnknown() &&
528 "Should have a type list now");
David Greene127fd1d2011-01-24 20:53:18 +0000529
530 // If we know the vector type, it forces the scalar types to agree.
Craig Topper6e1faaf2014-01-25 17:40:33 +0000531 // Also force one vector to have more elements than the other.
David Greene127fd1d2011-01-24 20:53:18 +0000532 if (isConcrete()) {
Craig Topper95198f42013-09-25 06:37:18 +0000533 MVT IVT = getConcrete();
Craig Topper6e1faaf2014-01-25 17:40:33 +0000534 unsigned NumElems = IVT.getVectorNumElements();
David Greene127fd1d2011-01-24 20:53:18 +0000535 IVT = IVT.getVectorElementType();
536
Craig Topper95198f42013-09-25 06:37:18 +0000537 EEVT::TypeSet EltTypeSet(IVT.SimpleTy, TP);
David Greene127fd1d2011-01-24 20:53:18 +0000538 MadeChange |= VTOperand.EnforceVectorEltTypeIs(EltTypeSet, TP);
Craig Topper6e1faaf2014-01-25 17:40:33 +0000539
540 // Only keep types that have less elements than VTOperand.
541 TypeSet InputSet(VTOperand);
542
David Majnemerc7004902016-08-12 04:32:37 +0000543 auto I = remove_if(VTOperand.TypeVec, [NumElems](MVT VVT) {
544 return VVT.getVectorNumElements() >= NumElems;
545 });
Craig Topper5712d462015-11-24 08:20:47 +0000546 MadeChange |= I != VTOperand.TypeVec.end();
547 VTOperand.TypeVec.erase(I, VTOperand.TypeVec.end());
548
Craig Topper6e1faaf2014-01-25 17:40:33 +0000549 if (VTOperand.TypeVec.empty()) { // FIXME: Really want an SMLoc here!
550 TP.error("Type inference contradiction found, forcing '" +
551 InputSet.getName() + "' to have less vector elements than '" +
552 getName() + "'");
553 return false;
554 }
David Greene127fd1d2011-01-24 20:53:18 +0000555 } else if (VTOperand.isConcrete()) {
Craig Topper95198f42013-09-25 06:37:18 +0000556 MVT IVT = VTOperand.getConcrete();
Craig Topper6e1faaf2014-01-25 17:40:33 +0000557 unsigned NumElems = IVT.getVectorNumElements();
David Greene127fd1d2011-01-24 20:53:18 +0000558 IVT = IVT.getVectorElementType();
559
Craig Topper95198f42013-09-25 06:37:18 +0000560 EEVT::TypeSet EltTypeSet(IVT.SimpleTy, TP);
David Greene127fd1d2011-01-24 20:53:18 +0000561 MadeChange |= EnforceVectorEltTypeIs(EltTypeSet, TP);
Craig Topper6e1faaf2014-01-25 17:40:33 +0000562
563 // Only keep types that have more elements than 'this'.
564 TypeSet InputSet(*this);
565
David Majnemerc7004902016-08-12 04:32:37 +0000566 auto I = remove_if(TypeVec, [NumElems](MVT VVT) {
567 return VVT.getVectorNumElements() <= NumElems;
568 });
Craig Topper5712d462015-11-24 08:20:47 +0000569 MadeChange |= I != TypeVec.end();
570 TypeVec.erase(I, TypeVec.end());
571
Craig Topper6e1faaf2014-01-25 17:40:33 +0000572 if (TypeVec.empty()) { // FIXME: Really want an SMLoc here!
573 TP.error("Type inference contradiction found, forcing '" +
574 InputSet.getName() + "' to have more vector elements than '" +
575 VTOperand.getName() + "'");
576 return false;
577 }
David Greene127fd1d2011-01-24 20:53:18 +0000578 }
579
580 return MadeChange;
581}
582
Bruce Mitchenere9ffb452015-09-12 01:17:08 +0000583/// EnforceVectorSameNumElts - 'this' is now constrained to
Craig Topper0be34582015-03-05 07:11:34 +0000584/// be a vector with same num elements as VTOperand.
585bool EEVT::TypeSet::EnforceVectorSameNumElts(EEVT::TypeSet &VTOperand,
586 TreePattern &TP) {
587 if (TP.hasError())
588 return false;
589
590 // "This" must be a vector and "VTOperand" must be a vector.
591 bool MadeChange = false;
592 MadeChange |= EnforceVector(TP);
593 MadeChange |= VTOperand.EnforceVector(TP);
594
595 // If we know one of the vector types, it forces the other type to agree.
596 if (isConcrete()) {
597 MVT IVT = getConcrete();
598 unsigned NumElems = IVT.getVectorNumElements();
599
Craig Topper25ce6b82015-11-26 06:30:40 +0000600 // Only keep types that have same elements as 'this'.
Craig Topper0be34582015-03-05 07:11:34 +0000601 TypeSet InputSet(VTOperand);
602
David Majnemerc7004902016-08-12 04:32:37 +0000603 auto I = remove_if(VTOperand.TypeVec, [NumElems](MVT VVT) {
604 return VVT.getVectorNumElements() != NumElems;
605 });
Craig Topper5712d462015-11-24 08:20:47 +0000606 MadeChange |= I != VTOperand.TypeVec.end();
607 VTOperand.TypeVec.erase(I, VTOperand.TypeVec.end());
608
Craig Topper0be34582015-03-05 07:11:34 +0000609 if (VTOperand.TypeVec.empty()) { // FIXME: Really want an SMLoc here!
610 TP.error("Type inference contradiction found, forcing '" +
611 InputSet.getName() + "' to have same number elements as '" +
612 getName() + "'");
613 return false;
614 }
615 } else if (VTOperand.isConcrete()) {
616 MVT IVT = VTOperand.getConcrete();
617 unsigned NumElems = IVT.getVectorNumElements();
618
Craig Topper25ce6b82015-11-26 06:30:40 +0000619 // Only keep types that have same elements as VTOperand.
Craig Topper0be34582015-03-05 07:11:34 +0000620 TypeSet InputSet(*this);
621
David Majnemerc7004902016-08-12 04:32:37 +0000622 auto I = remove_if(TypeVec, [NumElems](MVT VVT) {
623 return VVT.getVectorNumElements() != NumElems;
624 });
Craig Topper5712d462015-11-24 08:20:47 +0000625 MadeChange |= I != TypeVec.end();
626 TypeVec.erase(I, TypeVec.end());
627
Craig Topper0be34582015-03-05 07:11:34 +0000628 if (TypeVec.empty()) { // FIXME: Really want an SMLoc here!
629 TP.error("Type inference contradiction found, forcing '" +
630 InputSet.getName() + "' to have same number elements than '" +
631 VTOperand.getName() + "'");
632 return false;
633 }
634 }
635
636 return MadeChange;
637}
638
Craig Topper9a44b3f2015-11-26 07:02:18 +0000639/// EnforceSameSize - 'this' is now constrained to be same size as VTOperand.
640bool EEVT::TypeSet::EnforceSameSize(EEVT::TypeSet &VTOperand,
641 TreePattern &TP) {
642 if (TP.hasError())
643 return false;
644
645 bool MadeChange = false;
646
647 // If we know one of the types, it forces the other type agree.
648 if (isConcrete()) {
649 MVT IVT = getConcrete();
650 unsigned Size = IVT.getSizeInBits();
651
652 // Only keep types that have the same size as 'this'.
653 TypeSet InputSet(VTOperand);
654
David Majnemerc7004902016-08-12 04:32:37 +0000655 auto I = remove_if(VTOperand.TypeVec,
656 [&](MVT VT) { return VT.getSizeInBits() != Size; });
Craig Topper9a44b3f2015-11-26 07:02:18 +0000657 MadeChange |= I != VTOperand.TypeVec.end();
658 VTOperand.TypeVec.erase(I, VTOperand.TypeVec.end());
659
660 if (VTOperand.TypeVec.empty()) { // FIXME: Really want an SMLoc here!
661 TP.error("Type inference contradiction found, forcing '" +
662 InputSet.getName() + "' to have same size as '" +
663 getName() + "'");
664 return false;
665 }
666 } else if (VTOperand.isConcrete()) {
667 MVT IVT = VTOperand.getConcrete();
668 unsigned Size = IVT.getSizeInBits();
669
670 // Only keep types that have the same size as VTOperand.
671 TypeSet InputSet(*this);
672
David Majnemerc7004902016-08-12 04:32:37 +0000673 auto I =
674 remove_if(TypeVec, [&](MVT VT) { return VT.getSizeInBits() != Size; });
Craig Topper9a44b3f2015-11-26 07:02:18 +0000675 MadeChange |= I != TypeVec.end();
676 TypeVec.erase(I, TypeVec.end());
677
678 if (TypeVec.empty()) { // FIXME: Really want an SMLoc here!
679 TP.error("Type inference contradiction found, forcing '" +
680 InputSet.getName() + "' to have same size as '" +
681 VTOperand.getName() + "'");
682 return false;
683 }
684 }
685
686 return MadeChange;
687}
688
Chris Lattnercabe0372010-03-15 06:00:16 +0000689//===----------------------------------------------------------------------===//
690// Helpers for working with extended types.
Chris Lattner8cab0212008-01-05 22:25:12 +0000691
Scott Michel94420742008-03-05 17:49:05 +0000692/// Dependent variable map for CodeGenDAGPattern variant generation
693typedef std::map<std::string, int> DepVarMap;
694
Chris Lattner514e2922011-04-17 21:38:24 +0000695static void FindDepVarsOf(TreePatternNode *N, DepVarMap &DepMap) {
Scott Michel94420742008-03-05 17:49:05 +0000696 if (N->isLeaf()) {
Sean Silva88eb8dd2012-10-10 20:24:47 +0000697 if (isa<DefInit>(N->getLeafValue()))
Scott Michel94420742008-03-05 17:49:05 +0000698 DepMap[N->getName()]++;
Scott Michel94420742008-03-05 17:49:05 +0000699 } else {
700 for (size_t i = 0, e = N->getNumChildren(); i != e; ++i)
701 FindDepVarsOf(N->getChild(i), DepMap);
702 }
703}
Chris Lattner514e2922011-04-17 21:38:24 +0000704
705/// Find dependent variables within child patterns
706static void FindDepVars(TreePatternNode *N, MultipleUseVarSet &DepVars) {
Scott Michel94420742008-03-05 17:49:05 +0000707 DepVarMap depcounts;
708 FindDepVarsOf(N, depcounts);
Craig Topper306cb122015-11-22 20:46:24 +0000709 for (const std::pair<std::string, int> &Pair : depcounts) {
710 if (Pair.second > 1)
711 DepVars.insert(Pair.first);
Scott Michel94420742008-03-05 17:49:05 +0000712 }
713}
714
Daniel Dunbarba66a812010-10-08 02:07:22 +0000715#ifndef NDEBUG
Chris Lattner514e2922011-04-17 21:38:24 +0000716/// Dump the dependent variable set:
717static void DumpDepVars(MultipleUseVarSet &DepVars) {
Scott Michel94420742008-03-05 17:49:05 +0000718 if (DepVars.empty()) {
Chris Lattner34822f62009-08-23 04:44:11 +0000719 DEBUG(errs() << "<empty set>");
Scott Michel94420742008-03-05 17:49:05 +0000720 } else {
Chris Lattner34822f62009-08-23 04:44:11 +0000721 DEBUG(errs() << "[ ");
Craig Topper306cb122015-11-22 20:46:24 +0000722 for (const std::string &DepVar : DepVars) {
723 DEBUG(errs() << DepVar << " ");
Scott Michel94420742008-03-05 17:49:05 +0000724 }
Chris Lattner34822f62009-08-23 04:44:11 +0000725 DEBUG(errs() << "]");
Scott Michel94420742008-03-05 17:49:05 +0000726 }
727}
Daniel Dunbarba66a812010-10-08 02:07:22 +0000728#endif
729
Chris Lattner514e2922011-04-17 21:38:24 +0000730
731//===----------------------------------------------------------------------===//
732// TreePredicateFn Implementation
733//===----------------------------------------------------------------------===//
734
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000735/// TreePredicateFn constructor. Here 'N' is a subclass of PatFrag.
736TreePredicateFn::TreePredicateFn(TreePattern *N) : PatFragRec(N) {
737 assert((getPredCode().empty() || getImmCode().empty()) &&
738 ".td file corrupt: can't have a node predicate *and* an imm predicate");
739}
740
Chris Lattner514e2922011-04-17 21:38:24 +0000741std::string TreePredicateFn::getPredCode() const {
Jakob Stoklund Olesendd8fbf52012-01-13 03:38:34 +0000742 return PatFragRec->getRecord()->getValueAsString("PredicateCode");
Chris Lattner514e2922011-04-17 21:38:24 +0000743}
744
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000745std::string TreePredicateFn::getImmCode() const {
Jakob Stoklund Olesendd8fbf52012-01-13 03:38:34 +0000746 return PatFragRec->getRecord()->getValueAsString("ImmediateCode");
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000747}
748
Chris Lattner514e2922011-04-17 21:38:24 +0000749
750/// isAlwaysTrue - Return true if this is a noop predicate.
751bool TreePredicateFn::isAlwaysTrue() const {
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000752 return getPredCode().empty() && getImmCode().empty();
Chris Lattner514e2922011-04-17 21:38:24 +0000753}
754
755/// Return the name to use in the generated code to reference this, this is
756/// "Predicate_foo" if from a pattern fragment "foo".
757std::string TreePredicateFn::getFnName() const {
Matthias Braun4a86d452016-12-04 05:48:16 +0000758 return "Predicate_" + PatFragRec->getRecord()->getName().str();
Chris Lattner514e2922011-04-17 21:38:24 +0000759}
760
761/// getCodeToRunOnSDNode - Return the code for the function body that
762/// evaluates this predicate. The argument is expected to be in "Node",
763/// not N. This handles casting and conversion to a concrete node type as
764/// appropriate.
765std::string TreePredicateFn::getCodeToRunOnSDNode() const {
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000766 // Handle immediate predicates first.
767 std::string ImmCode = getImmCode();
768 if (!ImmCode.empty()) {
769 std::string Result =
770 " int64_t Imm = cast<ConstantSDNode>(Node)->getSExtValue();\n";
Chris Lattner2ff8c1a2011-04-17 22:05:17 +0000771 return Result + ImmCode;
772 }
773
774 // Handle arbitrary node predicates.
775 assert(!getPredCode().empty() && "Don't have any predicate code!");
Chris Lattner514e2922011-04-17 21:38:24 +0000776 std::string ClassName;
777 if (PatFragRec->getOnlyTree()->isLeaf())
778 ClassName = "SDNode";
779 else {
780 Record *Op = PatFragRec->getOnlyTree()->getOperator();
781 ClassName = PatFragRec->getDAGPatterns().getSDNodeInfo(Op).getSDClassName();
782 }
783 std::string Result;
784 if (ClassName == "SDNode")
785 Result = " SDNode *N = Node;\n";
786 else
Craig Topper5b0f57d2015-10-11 16:59:29 +0000787 Result = " auto *N = cast<" + ClassName + ">(Node);\n";
Chris Lattner514e2922011-04-17 21:38:24 +0000788
789 return Result + getPredCode();
Scott Michel94420742008-03-05 17:49:05 +0000790}
791
Chris Lattner8cab0212008-01-05 22:25:12 +0000792//===----------------------------------------------------------------------===//
Dan Gohman49e19e92008-08-22 00:20:26 +0000793// PatternToMatch implementation
794//
795
Chris Lattner05925fe2010-03-29 01:40:38 +0000796
797/// getPatternSize - Return the 'size' of this pattern. We want to match large
798/// patterns before small ones. This is used to determine the size of a
799/// pattern.
800static unsigned getPatternSize(const TreePatternNode *P,
801 const CodeGenDAGPatterns &CGP) {
802 unsigned Size = 3; // The node itself.
803 // If the root node is a ConstantSDNode, increases its size.
804 // e.g. (set R32:$dst, 0).
Sean Silva88eb8dd2012-10-10 20:24:47 +0000805 if (P->isLeaf() && isa<IntInit>(P->getLeafValue()))
Chris Lattner05925fe2010-03-29 01:40:38 +0000806 Size += 2;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000807
Chris Lattner05925fe2010-03-29 01:40:38 +0000808 const ComplexPattern *AM = P->getComplexPatternInfo(CGP);
Tim Northoverc807a172014-05-20 11:52:46 +0000809 if (AM) {
Peter Collingbourne32ab3a82016-11-09 23:53:43 +0000810 Size += AM->getComplexity();
Jim Grosbach65586fe2010-12-21 16:16:00 +0000811
Tim Northoverc807a172014-05-20 11:52:46 +0000812 // We don't want to count any children twice, so return early.
813 return Size;
814 }
815
Chris Lattner05925fe2010-03-29 01:40:38 +0000816 // If this node has some predicate function that must match, it adds to the
817 // complexity of this node.
818 if (!P->getPredicateFns().empty())
819 ++Size;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000820
Chris Lattner05925fe2010-03-29 01:40:38 +0000821 // Count children in the count if they are also nodes.
822 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
823 TreePatternNode *Child = P->getChild(i);
824 if (!Child->isLeaf() && Child->getNumTypes() &&
825 Child->getType(0) != MVT::Other)
826 Size += getPatternSize(Child, CGP);
827 else if (Child->isLeaf()) {
Sean Silva88eb8dd2012-10-10 20:24:47 +0000828 if (isa<IntInit>(Child->getLeafValue()))
Chris Lattner05925fe2010-03-29 01:40:38 +0000829 Size += 5; // Matches a ConstantSDNode (+3) and a specific value (+2).
830 else if (Child->getComplexPatternInfo(CGP))
831 Size += getPatternSize(Child, CGP);
832 else if (!Child->getPredicateFns().empty())
833 ++Size;
834 }
835 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000836
Chris Lattner05925fe2010-03-29 01:40:38 +0000837 return Size;
838}
839
840/// Compute the complexity metric for the input pattern. This roughly
841/// corresponds to the number of nodes that are covered.
Tom Stellard6655dd62014-08-01 00:32:36 +0000842int PatternToMatch::
Chris Lattner05925fe2010-03-29 01:40:38 +0000843getPatternComplexity(const CodeGenDAGPatterns &CGP) const {
844 return getPatternSize(getSrcPattern(), CGP) + getAddedComplexity();
845}
846
847
Dan Gohman49e19e92008-08-22 00:20:26 +0000848/// getPredicateCheck - Return a single string containing all of this
849/// pattern's predicates concatenated with "&&" operators.
850///
851std::string PatternToMatch::getPredicateCheck() const {
Craig Topper8985efe2015-11-27 05:44:04 +0000852 SmallVector<Record *, 4> PredicateRecs;
Craig Topperef0578a2015-06-02 04:15:51 +0000853 for (Init *I : Predicates->getValues()) {
854 if (DefInit *Pred = dyn_cast<DefInit>(I)) {
Dan Gohman49e19e92008-08-22 00:20:26 +0000855 Record *Def = Pred->getDef();
856 if (!Def->isSubClassOf("Predicate")) {
857#ifndef NDEBUG
858 Def->dump();
859#endif
Craig Topperc4965bc2012-02-05 07:21:30 +0000860 llvm_unreachable("Unknown predicate type!");
Dan Gohman49e19e92008-08-22 00:20:26 +0000861 }
Craig Topper8985efe2015-11-27 05:44:04 +0000862 PredicateRecs.push_back(Def);
Dan Gohman49e19e92008-08-22 00:20:26 +0000863 }
864 }
Craig Topper8985efe2015-11-27 05:44:04 +0000865 // Sort so that different orders get canonicalized to the same string.
866 std::sort(PredicateRecs.begin(), PredicateRecs.end(), LessRecord());
867
Craig Topper3522ab32015-11-28 08:23:02 +0000868 SmallString<128> PredicateCheck;
Craig Topper8985efe2015-11-27 05:44:04 +0000869 for (Record *Pred : PredicateRecs) {
870 if (!PredicateCheck.empty())
871 PredicateCheck += " && ";
872 PredicateCheck += "(" + Pred->getValueAsString("CondString") + ")";
873 }
Dan Gohman49e19e92008-08-22 00:20:26 +0000874
Craig Topper3522ab32015-11-28 08:23:02 +0000875 return PredicateCheck.str();
Dan Gohman49e19e92008-08-22 00:20:26 +0000876}
877
878//===----------------------------------------------------------------------===//
Chris Lattner8cab0212008-01-05 22:25:12 +0000879// SDTypeConstraint implementation
880//
881
882SDTypeConstraint::SDTypeConstraint(Record *R) {
883 OperandNo = R->getValueAsInt("OperandNum");
Jim Grosbach65586fe2010-12-21 16:16:00 +0000884
Chris Lattner8cab0212008-01-05 22:25:12 +0000885 if (R->isSubClassOf("SDTCisVT")) {
886 ConstraintType = SDTCisVT;
887 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
Chris Lattnerffdac7b2010-03-28 06:04:39 +0000888 if (x.SDTCisVT_Info.VT == MVT::isVoid)
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000889 PrintFatalError(R->getLoc(), "Cannot use 'Void' as type to SDTCisVT");
Jim Grosbach65586fe2010-12-21 16:16:00 +0000890
Chris Lattner8cab0212008-01-05 22:25:12 +0000891 } else if (R->isSubClassOf("SDTCisPtrTy")) {
892 ConstraintType = SDTCisPtrTy;
893 } else if (R->isSubClassOf("SDTCisInt")) {
894 ConstraintType = SDTCisInt;
895 } else if (R->isSubClassOf("SDTCisFP")) {
896 ConstraintType = SDTCisFP;
Bob Wilsonf7e587f2009-08-12 22:30:59 +0000897 } else if (R->isSubClassOf("SDTCisVec")) {
898 ConstraintType = SDTCisVec;
Chris Lattner8cab0212008-01-05 22:25:12 +0000899 } else if (R->isSubClassOf("SDTCisSameAs")) {
900 ConstraintType = SDTCisSameAs;
901 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
902 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
903 ConstraintType = SDTCisVTSmallerThanOp;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000904 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum =
Chris Lattner8cab0212008-01-05 22:25:12 +0000905 R->getValueAsInt("OtherOperandNum");
906 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
907 ConstraintType = SDTCisOpSmallerThanOp;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000908 x.SDTCisOpSmallerThanOp_Info.BigOperandNum =
Chris Lattner8cab0212008-01-05 22:25:12 +0000909 R->getValueAsInt("BigOperandNum");
Nate Begeman17bedbc2008-02-09 01:37:05 +0000910 } else if (R->isSubClassOf("SDTCisEltOfVec")) {
911 ConstraintType = SDTCisEltOfVec;
Chris Lattnercabe0372010-03-15 06:00:16 +0000912 x.SDTCisEltOfVec_Info.OtherOperandNum = R->getValueAsInt("OtherOpNum");
David Greene127fd1d2011-01-24 20:53:18 +0000913 } else if (R->isSubClassOf("SDTCisSubVecOfVec")) {
914 ConstraintType = SDTCisSubVecOfVec;
915 x.SDTCisSubVecOfVec_Info.OtherOperandNum =
916 R->getValueAsInt("OtherOpNum");
Craig Topper0be34582015-03-05 07:11:34 +0000917 } else if (R->isSubClassOf("SDTCVecEltisVT")) {
918 ConstraintType = SDTCVecEltisVT;
919 x.SDTCVecEltisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
920 if (MVT(x.SDTCVecEltisVT_Info.VT).isVector())
921 PrintFatalError(R->getLoc(), "Cannot use vector type as SDTCVecEltisVT");
922 if (!MVT(x.SDTCVecEltisVT_Info.VT).isInteger() &&
923 !MVT(x.SDTCVecEltisVT_Info.VT).isFloatingPoint())
924 PrintFatalError(R->getLoc(), "Must use integer or floating point type "
925 "as SDTCVecEltisVT");
926 } else if (R->isSubClassOf("SDTCisSameNumEltsAs")) {
927 ConstraintType = SDTCisSameNumEltsAs;
928 x.SDTCisSameNumEltsAs_Info.OtherOperandNum =
929 R->getValueAsInt("OtherOperandNum");
Craig Topper9a44b3f2015-11-26 07:02:18 +0000930 } else if (R->isSubClassOf("SDTCisSameSizeAs")) {
931 ConstraintType = SDTCisSameSizeAs;
932 x.SDTCisSameSizeAs_Info.OtherOperandNum =
933 R->getValueAsInt("OtherOperandNum");
Chris Lattner8cab0212008-01-05 22:25:12 +0000934 } else {
James Y Knighte452e272015-05-11 22:17:13 +0000935 PrintFatalError("Unrecognized SDTypeConstraint '" + R->getName() + "'!\n");
Chris Lattner8cab0212008-01-05 22:25:12 +0000936 }
937}
938
939/// getOperandNum - Return the node corresponding to operand #OpNo in tree
Chris Lattner2db7aba2010-03-19 21:56:21 +0000940/// N, and the result number in ResNo.
941static TreePatternNode *getOperandNum(unsigned OpNo, TreePatternNode *N,
942 const SDNodeInfo &NodeInfo,
943 unsigned &ResNo) {
944 unsigned NumResults = NodeInfo.getNumResults();
945 if (OpNo < NumResults) {
946 ResNo = OpNo;
947 return N;
948 }
Jim Grosbach65586fe2010-12-21 16:16:00 +0000949
Chris Lattner2db7aba2010-03-19 21:56:21 +0000950 OpNo -= NumResults;
Jim Grosbach65586fe2010-12-21 16:16:00 +0000951
Chris Lattner2db7aba2010-03-19 21:56:21 +0000952 if (OpNo >= N->getNumChildren()) {
James Y Knighte452e272015-05-11 22:17:13 +0000953 std::string S;
954 raw_string_ostream OS(S);
955 OS << "Invalid operand number in type constraint "
Chris Lattner2db7aba2010-03-19 21:56:21 +0000956 << (OpNo+NumResults) << " ";
James Y Knighte452e272015-05-11 22:17:13 +0000957 N->print(OS);
958 PrintFatalError(OS.str());
Chris Lattner8cab0212008-01-05 22:25:12 +0000959 }
960
Chris Lattner2db7aba2010-03-19 21:56:21 +0000961 return N->getChild(OpNo);
Chris Lattner8cab0212008-01-05 22:25:12 +0000962}
963
964/// ApplyTypeConstraint - Given a node in a pattern, apply this type
965/// constraint to the nodes operands. This returns true if it makes a
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000966/// change, false otherwise. If a type contradiction is found, flag an error.
Chris Lattner8cab0212008-01-05 22:25:12 +0000967bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
968 const SDNodeInfo &NodeInfo,
969 TreePattern &TP) const {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +0000970 if (TP.hasError())
971 return false;
972
Chris Lattner2db7aba2010-03-19 21:56:21 +0000973 unsigned ResNo = 0; // The result number being referenced.
974 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo);
Jim Grosbach65586fe2010-12-21 16:16:00 +0000975
Chris Lattner8cab0212008-01-05 22:25:12 +0000976 switch (ConstraintType) {
Chris Lattner8cab0212008-01-05 22:25:12 +0000977 case SDTCisVT:
978 // Operand must be a particular type.
Chris Lattnerf1447252010-03-19 21:37:09 +0000979 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP);
Chris Lattnercabe0372010-03-15 06:00:16 +0000980 case SDTCisPtrTy:
Chris Lattner8cab0212008-01-05 22:25:12 +0000981 // Operand must be same as target pointer type.
Chris Lattnerf1447252010-03-19 21:37:09 +0000982 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP);
Chris Lattnercabe0372010-03-15 06:00:16 +0000983 case SDTCisInt:
984 // Require it to be one of the legal integer VTs.
Chris Lattnerf1447252010-03-19 21:37:09 +0000985 return NodeToApply->getExtType(ResNo).EnforceInteger(TP);
Chris Lattnercabe0372010-03-15 06:00:16 +0000986 case SDTCisFP:
987 // Require it to be one of the legal fp VTs.
Chris Lattnerf1447252010-03-19 21:37:09 +0000988 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP);
Chris Lattnercabe0372010-03-15 06:00:16 +0000989 case SDTCisVec:
990 // Require it to be one of the legal vector VTs.
Chris Lattnerf1447252010-03-19 21:37:09 +0000991 return NodeToApply->getExtType(ResNo).EnforceVector(TP);
Chris Lattner8cab0212008-01-05 22:25:12 +0000992 case SDTCisSameAs: {
Chris Lattner2db7aba2010-03-19 21:56:21 +0000993 unsigned OResNo = 0;
Chris Lattner8cab0212008-01-05 22:25:12 +0000994 TreePatternNode *OtherNode =
Chris Lattner2db7aba2010-03-19 21:56:21 +0000995 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NodeInfo, OResNo);
Craig Topper483a3002015-03-04 09:04:54 +0000996 return NodeToApply->UpdateNodeType(ResNo, OtherNode->getExtType(OResNo),TP)|
997 OtherNode->UpdateNodeType(OResNo,NodeToApply->getExtType(ResNo),TP);
Chris Lattner8cab0212008-01-05 22:25:12 +0000998 }
999 case SDTCisVTSmallerThanOp: {
1000 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must
1001 // have an integer type that is smaller than the VT.
1002 if (!NodeToApply->isLeaf() ||
Sean Silva88eb8dd2012-10-10 20:24:47 +00001003 !isa<DefInit>(NodeToApply->getLeafValue()) ||
David Greeneaf8ee2c2011-07-29 22:43:06 +00001004 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001005 ->isSubClassOf("ValueType")) {
Chris Lattner8cab0212008-01-05 22:25:12 +00001006 TP.error(N->getOperator()->getName() + " expects a VT operand!");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001007 return false;
1008 }
Owen Anderson9f944592009-08-11 20:47:22 +00001009 MVT::SimpleValueType VT =
David Greeneaf8ee2c2011-07-29 22:43:06 +00001010 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
Jim Grosbach65586fe2010-12-21 16:16:00 +00001011
Chris Lattner38c99662010-03-24 00:06:46 +00001012 EEVT::TypeSet TypeListTmp(VT, TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001013
Chris Lattner2db7aba2010-03-19 21:56:21 +00001014 unsigned OResNo = 0;
Chris Lattner8cab0212008-01-05 22:25:12 +00001015 TreePatternNode *OtherNode =
Chris Lattner2db7aba2010-03-19 21:56:21 +00001016 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N, NodeInfo,
1017 OResNo);
Chris Lattnercabe0372010-03-15 06:00:16 +00001018
Chris Lattner38c99662010-03-24 00:06:46 +00001019 return TypeListTmp.EnforceSmallerThan(OtherNode->getExtType(OResNo), TP);
Chris Lattner8cab0212008-01-05 22:25:12 +00001020 }
1021 case SDTCisOpSmallerThanOp: {
Chris Lattner2db7aba2010-03-19 21:56:21 +00001022 unsigned BResNo = 0;
Chris Lattner8cab0212008-01-05 22:25:12 +00001023 TreePatternNode *BigOperand =
Chris Lattner2db7aba2010-03-19 21:56:21 +00001024 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NodeInfo,
1025 BResNo);
Chris Lattnerf1447252010-03-19 21:37:09 +00001026 return NodeToApply->getExtType(ResNo).
1027 EnforceSmallerThan(BigOperand->getExtType(BResNo), TP);
Chris Lattner8cab0212008-01-05 22:25:12 +00001028 }
Nate Begeman17bedbc2008-02-09 01:37:05 +00001029 case SDTCisEltOfVec: {
Chris Lattner2db7aba2010-03-19 21:56:21 +00001030 unsigned VResNo = 0;
Chris Lattnercabe0372010-03-15 06:00:16 +00001031 TreePatternNode *VecOperand =
Chris Lattner2db7aba2010-03-19 21:56:21 +00001032 getOperandNum(x.SDTCisEltOfVec_Info.OtherOperandNum, N, NodeInfo,
1033 VResNo);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001034
Chris Lattner57ebf632010-03-24 00:01:16 +00001035 // Filter vector types out of VecOperand that don't have the right element
1036 // type.
1037 return VecOperand->getExtType(VResNo).
1038 EnforceVectorEltTypeIs(NodeToApply->getExtType(ResNo), TP);
Nate Begeman17bedbc2008-02-09 01:37:05 +00001039 }
David Greene127fd1d2011-01-24 20:53:18 +00001040 case SDTCisSubVecOfVec: {
1041 unsigned VResNo = 0;
1042 TreePatternNode *BigVecOperand =
1043 getOperandNum(x.SDTCisSubVecOfVec_Info.OtherOperandNum, N, NodeInfo,
1044 VResNo);
1045
1046 // Filter vector types out of BigVecOperand that don't have the
1047 // right subvector type.
1048 return BigVecOperand->getExtType(VResNo).
1049 EnforceVectorSubVectorTypeIs(NodeToApply->getExtType(ResNo), TP);
1050 }
Craig Topper0be34582015-03-05 07:11:34 +00001051 case SDTCVecEltisVT: {
1052 return NodeToApply->getExtType(ResNo).
1053 EnforceVectorEltTypeIs(x.SDTCVecEltisVT_Info.VT, TP);
1054 }
1055 case SDTCisSameNumEltsAs: {
1056 unsigned OResNo = 0;
1057 TreePatternNode *OtherNode =
1058 getOperandNum(x.SDTCisSameNumEltsAs_Info.OtherOperandNum,
1059 N, NodeInfo, OResNo);
1060 return OtherNode->getExtType(OResNo).
1061 EnforceVectorSameNumElts(NodeToApply->getExtType(ResNo), TP);
1062 }
Craig Topper9a44b3f2015-11-26 07:02:18 +00001063 case SDTCisSameSizeAs: {
1064 unsigned OResNo = 0;
1065 TreePatternNode *OtherNode =
1066 getOperandNum(x.SDTCisSameSizeAs_Info.OtherOperandNum,
1067 N, NodeInfo, OResNo);
1068 return OtherNode->getExtType(OResNo).
1069 EnforceSameSize(NodeToApply->getExtType(ResNo), TP);
1070 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001071 }
David Blaikiea5708dc2012-01-17 07:00:13 +00001072 llvm_unreachable("Invalid ConstraintType!");
Chris Lattner8cab0212008-01-05 22:25:12 +00001073}
1074
Jakob Stoklund Olesen57a86502013-03-18 04:08:07 +00001075// Update the node type to match an instruction operand or result as specified
1076// in the ins or outs lists on the instruction definition. Return true if the
1077// type was actually changed.
1078bool TreePatternNode::UpdateNodeTypeFromInst(unsigned ResNo,
1079 Record *Operand,
1080 TreePattern &TP) {
1081 // The 'unknown' operand indicates that types should be inferred from the
1082 // context.
1083 if (Operand->isSubClassOf("unknown_class"))
1084 return false;
1085
1086 // The Operand class specifies a type directly.
1087 if (Operand->isSubClassOf("Operand"))
1088 return UpdateNodeType(ResNo, getValueType(Operand->getValueAsDef("Type")),
1089 TP);
1090
1091 // PointerLikeRegClass has a type that is determined at runtime.
1092 if (Operand->isSubClassOf("PointerLikeRegClass"))
1093 return UpdateNodeType(ResNo, MVT::iPTR, TP);
1094
1095 // Both RegisterClass and RegisterOperand operands derive their types from a
1096 // register class def.
Craig Topper24064772014-04-15 07:20:03 +00001097 Record *RC = nullptr;
Jakob Stoklund Olesen57a86502013-03-18 04:08:07 +00001098 if (Operand->isSubClassOf("RegisterClass"))
1099 RC = Operand;
1100 else if (Operand->isSubClassOf("RegisterOperand"))
1101 RC = Operand->getValueAsDef("RegClass");
1102
1103 assert(RC && "Unknown operand type");
1104 CodeGenTarget &Tgt = TP.getDAGPatterns().getTargetInfo();
1105 return UpdateNodeType(ResNo, Tgt.getRegisterClass(RC).getValueTypes(), TP);
1106}
1107
1108
Chris Lattner8cab0212008-01-05 22:25:12 +00001109//===----------------------------------------------------------------------===//
1110// SDNodeInfo implementation
1111//
1112SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
1113 EnumName = R->getValueAsString("Opcode");
1114 SDClassName = R->getValueAsString("SDClass");
1115 Record *TypeProfile = R->getValueAsDef("TypeProfile");
1116 NumResults = TypeProfile->getValueAsInt("NumResults");
1117 NumOperands = TypeProfile->getValueAsInt("NumOperands");
Jim Grosbach65586fe2010-12-21 16:16:00 +00001118
Chris Lattner8cab0212008-01-05 22:25:12 +00001119 // Parse the properties.
1120 Properties = 0;
Craig Topper306cb122015-11-22 20:46:24 +00001121 for (Record *Property : R->getValueAsListOfDefs("Properties")) {
1122 if (Property->getName() == "SDNPCommutative") {
Chris Lattner8cab0212008-01-05 22:25:12 +00001123 Properties |= 1 << SDNPCommutative;
Craig Topper306cb122015-11-22 20:46:24 +00001124 } else if (Property->getName() == "SDNPAssociative") {
Chris Lattner8cab0212008-01-05 22:25:12 +00001125 Properties |= 1 << SDNPAssociative;
Craig Topper306cb122015-11-22 20:46:24 +00001126 } else if (Property->getName() == "SDNPHasChain") {
Chris Lattner8cab0212008-01-05 22:25:12 +00001127 Properties |= 1 << SDNPHasChain;
Craig Topper306cb122015-11-22 20:46:24 +00001128 } else if (Property->getName() == "SDNPOutGlue") {
Chris Lattner2a0a3b42010-12-23 18:28:41 +00001129 Properties |= 1 << SDNPOutGlue;
Craig Topper306cb122015-11-22 20:46:24 +00001130 } else if (Property->getName() == "SDNPInGlue") {
Chris Lattner2a0a3b42010-12-23 18:28:41 +00001131 Properties |= 1 << SDNPInGlue;
Craig Topper306cb122015-11-22 20:46:24 +00001132 } else if (Property->getName() == "SDNPOptInGlue") {
Chris Lattner2a0a3b42010-12-23 18:28:41 +00001133 Properties |= 1 << SDNPOptInGlue;
Craig Topper306cb122015-11-22 20:46:24 +00001134 } else if (Property->getName() == "SDNPMayStore") {
Chris Lattnera348f552008-01-06 06:44:58 +00001135 Properties |= 1 << SDNPMayStore;
Craig Topper306cb122015-11-22 20:46:24 +00001136 } else if (Property->getName() == "SDNPMayLoad") {
Chris Lattner1ca20682008-01-10 04:38:57 +00001137 Properties |= 1 << SDNPMayLoad;
Craig Topper306cb122015-11-22 20:46:24 +00001138 } else if (Property->getName() == "SDNPSideEffect") {
Chris Lattner42c63ef2008-01-10 05:39:30 +00001139 Properties |= 1 << SDNPSideEffect;
Craig Topper306cb122015-11-22 20:46:24 +00001140 } else if (Property->getName() == "SDNPMemOperand") {
Mon P Wang6a490372008-06-25 08:15:39 +00001141 Properties |= 1 << SDNPMemOperand;
Craig Topper306cb122015-11-22 20:46:24 +00001142 } else if (Property->getName() == "SDNPVariadic") {
Chris Lattner83aeaab2010-03-19 05:07:09 +00001143 Properties |= 1 << SDNPVariadic;
Chris Lattner8cab0212008-01-05 22:25:12 +00001144 } else {
James Y Knighte452e272015-05-11 22:17:13 +00001145 PrintFatalError("Unknown SD Node property '" +
Craig Topper306cb122015-11-22 20:46:24 +00001146 Property->getName() + "' on node '" +
James Y Knighte452e272015-05-11 22:17:13 +00001147 R->getName() + "'!");
Chris Lattner8cab0212008-01-05 22:25:12 +00001148 }
1149 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001150
1151
Chris Lattner8cab0212008-01-05 22:25:12 +00001152 // Parse the type constraints.
1153 std::vector<Record*> ConstraintList =
1154 TypeProfile->getValueAsListOfDefs("Constraints");
1155 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
1156}
1157
Chris Lattner99e53b32010-02-28 00:22:30 +00001158/// getKnownType - If the type constraints on this node imply a fixed type
1159/// (e.g. all stores return void, etc), then return it as an
Chris Lattnerda5b4ad2010-03-19 01:14:27 +00001160/// MVT::SimpleValueType. Otherwise, return EEVT::Other.
Chris Lattner6c2d1782010-03-24 00:41:19 +00001161MVT::SimpleValueType SDNodeInfo::getKnownType(unsigned ResNo) const {
Chris Lattner99e53b32010-02-28 00:22:30 +00001162 unsigned NumResults = getNumResults();
1163 assert(NumResults <= 1 &&
1164 "We only work with nodes with zero or one result so far!");
Chris Lattner6c2d1782010-03-24 00:41:19 +00001165 assert(ResNo == 0 && "Only handles single result nodes so far");
Jim Grosbach65586fe2010-12-21 16:16:00 +00001166
Craig Topper306cb122015-11-22 20:46:24 +00001167 for (const SDTypeConstraint &Constraint : TypeConstraints) {
Chris Lattner99e53b32010-02-28 00:22:30 +00001168 // Make sure that this applies to the correct node result.
Craig Topper306cb122015-11-22 20:46:24 +00001169 if (Constraint.OperandNo >= NumResults) // FIXME: need value #
Chris Lattner99e53b32010-02-28 00:22:30 +00001170 continue;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001171
Craig Topper306cb122015-11-22 20:46:24 +00001172 switch (Constraint.ConstraintType) {
Chris Lattner99e53b32010-02-28 00:22:30 +00001173 default: break;
1174 case SDTypeConstraint::SDTCisVT:
Craig Topper306cb122015-11-22 20:46:24 +00001175 return Constraint.x.SDTCisVT_Info.VT;
Chris Lattner99e53b32010-02-28 00:22:30 +00001176 case SDTypeConstraint::SDTCisPtrTy:
1177 return MVT::iPTR;
1178 }
1179 }
Chris Lattnerda5b4ad2010-03-19 01:14:27 +00001180 return MVT::Other;
Chris Lattner99e53b32010-02-28 00:22:30 +00001181}
1182
Chris Lattner8cab0212008-01-05 22:25:12 +00001183//===----------------------------------------------------------------------===//
1184// TreePatternNode implementation
1185//
1186
1187TreePatternNode::~TreePatternNode() {
1188#if 0 // FIXME: implement refcounted tree nodes!
1189 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1190 delete getChild(i);
1191#endif
1192}
1193
Chris Lattnerf1447252010-03-19 21:37:09 +00001194static unsigned GetNumNodeResults(Record *Operator, CodeGenDAGPatterns &CDP) {
1195 if (Operator->getName() == "set" ||
Chris Lattner5c2182e2010-03-27 02:53:27 +00001196 Operator->getName() == "implicit")
Chris Lattnerf1447252010-03-19 21:37:09 +00001197 return 0; // All return nothing.
Jim Grosbach65586fe2010-12-21 16:16:00 +00001198
Chris Lattner2109cb42010-03-22 20:56:36 +00001199 if (Operator->isSubClassOf("Intrinsic"))
1200 return CDP.getIntrinsic(Operator).IS.RetVTs.size();
Jim Grosbach65586fe2010-12-21 16:16:00 +00001201
Chris Lattnerf1447252010-03-19 21:37:09 +00001202 if (Operator->isSubClassOf("SDNode"))
1203 return CDP.getSDNodeInfo(Operator).getNumResults();
Jim Grosbach65586fe2010-12-21 16:16:00 +00001204
Chris Lattnerf1447252010-03-19 21:37:09 +00001205 if (Operator->isSubClassOf("PatFrag")) {
1206 // If we've already parsed this pattern fragment, get it. Otherwise, handle
1207 // the forward reference case where one pattern fragment references another
1208 // before it is processed.
1209 if (TreePattern *PFRec = CDP.getPatternFragmentIfRead(Operator))
1210 return PFRec->getOnlyTree()->getNumTypes();
Jim Grosbach65586fe2010-12-21 16:16:00 +00001211
Chris Lattnerf1447252010-03-19 21:37:09 +00001212 // Get the result tree.
David Greeneaf8ee2c2011-07-29 22:43:06 +00001213 DagInit *Tree = Operator->getValueAsDag("Fragment");
Craig Topper24064772014-04-15 07:20:03 +00001214 Record *Op = nullptr;
Sean Silva88eb8dd2012-10-10 20:24:47 +00001215 if (Tree)
1216 if (DefInit *DI = dyn_cast<DefInit>(Tree->getOperator()))
1217 Op = DI->getDef();
Chris Lattnerf1447252010-03-19 21:37:09 +00001218 assert(Op && "Invalid Fragment");
1219 return GetNumNodeResults(Op, CDP);
1220 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001221
Chris Lattnerf1447252010-03-19 21:37:09 +00001222 if (Operator->isSubClassOf("Instruction")) {
1223 CodeGenInstruction &InstInfo = CDP.getTargetInfo().getInstruction(Operator);
Chris Lattnerd44966f2010-03-27 19:15:02 +00001224
Craig Topper3a8eb892015-03-20 05:09:06 +00001225 unsigned NumDefsToAdd = InstInfo.Operands.NumDefs;
1226
1227 // Subtract any defaulted outputs.
1228 for (unsigned i = 0; i != InstInfo.Operands.NumDefs; ++i) {
1229 Record *OperandNode = InstInfo.Operands[i].Rec;
1230
1231 if (OperandNode->isSubClassOf("OperandWithDefaultOps") &&
1232 !CDP.getDefaultOperand(OperandNode).DefaultOps.empty())
1233 --NumDefsToAdd;
1234 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001235
Chris Lattner7bc5d9b2010-03-27 20:09:24 +00001236 // Add on one implicit def if it has a resolvable type.
1237 if (InstInfo.HasOneImplicitDefWithKnownVT(CDP.getTargetInfo()) !=MVT::Other)
1238 ++NumDefsToAdd;
Chris Lattnerd44966f2010-03-27 19:15:02 +00001239 return NumDefsToAdd;
Chris Lattnerf1447252010-03-19 21:37:09 +00001240 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001241
Chris Lattnerf1447252010-03-19 21:37:09 +00001242 if (Operator->isSubClassOf("SDNodeXForm"))
1243 return 1; // FIXME: Generalize SDNodeXForm
Jim Grosbach65586fe2010-12-21 16:16:00 +00001244
Hal Finkel49f1c2a2014-01-02 20:47:05 +00001245 if (Operator->isSubClassOf("ValueType"))
1246 return 1; // A type-cast of one result.
1247
Tim Northoverc807a172014-05-20 11:52:46 +00001248 if (Operator->isSubClassOf("ComplexPattern"))
1249 return 1;
1250
Chris Lattnerf1447252010-03-19 21:37:09 +00001251 Operator->dump();
James Y Knighte452e272015-05-11 22:17:13 +00001252 PrintFatalError("Unhandled node in GetNumNodeResults");
Chris Lattnerf1447252010-03-19 21:37:09 +00001253}
1254
1255void TreePatternNode::print(raw_ostream &OS) const {
1256 if (isLeaf())
1257 OS << *getLeafValue();
1258 else
1259 OS << '(' << getOperator()->getName();
1260
1261 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1262 OS << ':' << getExtType(i).getName();
Chris Lattner8cab0212008-01-05 22:25:12 +00001263
1264 if (!isLeaf()) {
1265 if (getNumChildren() != 0) {
1266 OS << " ";
1267 getChild(0)->print(OS);
1268 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
1269 OS << ", ";
1270 getChild(i)->print(OS);
1271 }
1272 }
1273 OS << ")";
1274 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001275
Craig Topper306cb122015-11-22 20:46:24 +00001276 for (const TreePredicateFn &Pred : PredicateFns)
1277 OS << "<<P:" << Pred.getFnName() << ">>";
Chris Lattner8cab0212008-01-05 22:25:12 +00001278 if (TransformFn)
1279 OS << "<<X:" << TransformFn->getName() << ">>";
1280 if (!getName().empty())
1281 OS << ":$" << getName();
1282
1283}
1284void TreePatternNode::dump() const {
Daniel Dunbar38a22bf2009-07-03 00:10:29 +00001285 print(errs());
Chris Lattner8cab0212008-01-05 22:25:12 +00001286}
1287
Scott Michel94420742008-03-05 17:49:05 +00001288/// isIsomorphicTo - Return true if this node is recursively
1289/// isomorphic to the specified node. For this comparison, the node's
1290/// entire state is considered. The assigned name is ignored, since
1291/// nodes with differing names are considered isomorphic. However, if
1292/// the assigned name is present in the dependent variable set, then
1293/// the assigned name is considered significant and the node is
1294/// isomorphic if the names match.
1295bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N,
1296 const MultipleUseVarSet &DepVars) const {
Chris Lattner8cab0212008-01-05 22:25:12 +00001297 if (N == this) return true;
Chris Lattnerf1447252010-03-19 21:37:09 +00001298 if (N->isLeaf() != isLeaf() || getExtTypes() != N->getExtTypes() ||
Dan Gohman6e979022008-10-15 06:17:21 +00001299 getPredicateFns() != N->getPredicateFns() ||
Chris Lattner8cab0212008-01-05 22:25:12 +00001300 getTransformFn() != N->getTransformFn())
1301 return false;
1302
1303 if (isLeaf()) {
Sean Silvafb509ed2012-10-10 20:24:43 +00001304 if (DefInit *DI = dyn_cast<DefInit>(getLeafValue())) {
1305 if (DefInit *NDI = dyn_cast<DefInit>(N->getLeafValue())) {
Chris Lattnera7cca362008-03-20 01:22:40 +00001306 return ((DI->getDef() == NDI->getDef())
1307 && (DepVars.find(getName()) == DepVars.end()
1308 || getName() == N->getName()));
Scott Michel94420742008-03-05 17:49:05 +00001309 }
1310 }
Chris Lattner8cab0212008-01-05 22:25:12 +00001311 return getLeafValue() == N->getLeafValue();
1312 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001313
Chris Lattner8cab0212008-01-05 22:25:12 +00001314 if (N->getOperator() != getOperator() ||
1315 N->getNumChildren() != getNumChildren()) return false;
1316 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Scott Michel94420742008-03-05 17:49:05 +00001317 if (!getChild(i)->isIsomorphicTo(N->getChild(i), DepVars))
Chris Lattner8cab0212008-01-05 22:25:12 +00001318 return false;
1319 return true;
1320}
1321
1322/// clone - Make a copy of this tree and all of its children.
1323///
1324TreePatternNode *TreePatternNode::clone() const {
1325 TreePatternNode *New;
1326 if (isLeaf()) {
Chris Lattnerf1447252010-03-19 21:37:09 +00001327 New = new TreePatternNode(getLeafValue(), getNumTypes());
Chris Lattner8cab0212008-01-05 22:25:12 +00001328 } else {
1329 std::vector<TreePatternNode*> CChildren;
1330 CChildren.reserve(Children.size());
1331 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1332 CChildren.push_back(getChild(i)->clone());
Chris Lattnerf1447252010-03-19 21:37:09 +00001333 New = new TreePatternNode(getOperator(), CChildren, getNumTypes());
Chris Lattner8cab0212008-01-05 22:25:12 +00001334 }
1335 New->setName(getName());
Chris Lattnerf1447252010-03-19 21:37:09 +00001336 New->Types = Types;
Dan Gohman6e979022008-10-15 06:17:21 +00001337 New->setPredicateFns(getPredicateFns());
Chris Lattner8cab0212008-01-05 22:25:12 +00001338 New->setTransformFn(getTransformFn());
1339 return New;
1340}
1341
Chris Lattner53c39ba2010-02-14 22:22:58 +00001342/// RemoveAllTypes - Recursively strip all the types of this tree.
1343void TreePatternNode::RemoveAllTypes() {
Craig Topper43c414f2015-11-22 20:46:22 +00001344 // Reset to unknown type.
1345 std::fill(Types.begin(), Types.end(), EEVT::TypeSet());
Chris Lattner53c39ba2010-02-14 22:22:58 +00001346 if (isLeaf()) return;
1347 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1348 getChild(i)->RemoveAllTypes();
1349}
1350
1351
Chris Lattner8cab0212008-01-05 22:25:12 +00001352/// SubstituteFormalArguments - Replace the formal arguments in this tree
1353/// with actual values specified by ArgMap.
1354void TreePatternNode::
1355SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
1356 if (isLeaf()) return;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001357
Chris Lattner8cab0212008-01-05 22:25:12 +00001358 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
1359 TreePatternNode *Child = getChild(i);
1360 if (Child->isLeaf()) {
David Greeneaf8ee2c2011-07-29 22:43:06 +00001361 Init *Val = Child->getLeafValue();
Hal Finkel2756dc12014-02-28 00:26:56 +00001362 // Note that, when substituting into an output pattern, Val might be an
1363 // UnsetInit.
1364 if (isa<UnsetInit>(Val) || (isa<DefInit>(Val) &&
1365 cast<DefInit>(Val)->getDef()->getName() == "node")) {
Chris Lattner8cab0212008-01-05 22:25:12 +00001366 // We found a use of a formal argument, replace it with its value.
Dan Gohman6e979022008-10-15 06:17:21 +00001367 TreePatternNode *NewChild = ArgMap[Child->getName()];
1368 assert(NewChild && "Couldn't find formal argument!");
1369 assert((Child->getPredicateFns().empty() ||
1370 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1371 "Non-empty child predicate clobbered!");
1372 setChild(i, NewChild);
Chris Lattner8cab0212008-01-05 22:25:12 +00001373 }
1374 } else {
1375 getChild(i)->SubstituteFormalArguments(ArgMap);
1376 }
1377 }
1378}
1379
1380
1381/// InlinePatternFragments - If this pattern refers to any pattern
1382/// fragments, inline them into place, giving us a pattern without any
1383/// PatFrag references.
1384TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001385 if (TP.hasError())
Craig Topper24064772014-04-15 07:20:03 +00001386 return nullptr;
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001387
1388 if (isLeaf())
1389 return this; // nothing to do.
Chris Lattner8cab0212008-01-05 22:25:12 +00001390 Record *Op = getOperator();
Jim Grosbach65586fe2010-12-21 16:16:00 +00001391
Chris Lattner8cab0212008-01-05 22:25:12 +00001392 if (!Op->isSubClassOf("PatFrag")) {
1393 // Just recursively inline children nodes.
Dan Gohman6e979022008-10-15 06:17:21 +00001394 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
1395 TreePatternNode *Child = getChild(i);
1396 TreePatternNode *NewChild = Child->InlinePatternFragments(TP);
1397
1398 assert((Child->getPredicateFns().empty() ||
1399 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1400 "Non-empty child predicate clobbered!");
1401
1402 setChild(i, NewChild);
1403 }
Chris Lattner8cab0212008-01-05 22:25:12 +00001404 return this;
1405 }
1406
1407 // Otherwise, we found a reference to a fragment. First, look up its
1408 // TreePattern record.
1409 TreePattern *Frag = TP.getDAGPatterns().getPatternFragment(Op);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001410
Chris Lattner8cab0212008-01-05 22:25:12 +00001411 // Verify that we are passing the right number of operands.
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001412 if (Frag->getNumArgs() != Children.size()) {
Chris Lattner8cab0212008-01-05 22:25:12 +00001413 TP.error("'" + Op->getName() + "' fragment requires " +
1414 utostr(Frag->getNumArgs()) + " operands!");
Craig Topper24064772014-04-15 07:20:03 +00001415 return nullptr;
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001416 }
Chris Lattner8cab0212008-01-05 22:25:12 +00001417
1418 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
1419
Chris Lattner514e2922011-04-17 21:38:24 +00001420 TreePredicateFn PredFn(Frag);
1421 if (!PredFn.isAlwaysTrue())
1422 FragTree->addPredicateFn(PredFn);
Dan Gohman6e979022008-10-15 06:17:21 +00001423
Chris Lattner8cab0212008-01-05 22:25:12 +00001424 // Resolve formal arguments to their actual value.
1425 if (Frag->getNumArgs()) {
1426 // Compute the map of formal to actual arguments.
1427 std::map<std::string, TreePatternNode*> ArgMap;
1428 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
1429 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001430
Chris Lattner8cab0212008-01-05 22:25:12 +00001431 FragTree->SubstituteFormalArguments(ArgMap);
1432 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001433
Chris Lattner8cab0212008-01-05 22:25:12 +00001434 FragTree->setName(getName());
Chris Lattnerf1447252010-03-19 21:37:09 +00001435 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1436 FragTree->UpdateNodeType(i, getExtType(i), TP);
Dan Gohman6e979022008-10-15 06:17:21 +00001437
1438 // Transfer in the old predicates.
Craig Topper306cb122015-11-22 20:46:24 +00001439 for (const TreePredicateFn &Pred : getPredicateFns())
1440 FragTree->addPredicateFn(Pred);
Dan Gohman6e979022008-10-15 06:17:21 +00001441
Chris Lattner8cab0212008-01-05 22:25:12 +00001442 // Get a new copy of this fragment to stitch into here.
1443 //delete this; // FIXME: implement refcounting!
Jim Grosbach65586fe2010-12-21 16:16:00 +00001444
Chris Lattner2e253b42008-06-30 03:02:03 +00001445 // The fragment we inlined could have recursive inlining that is needed. See
1446 // if there are any pattern fragments in it and inline them as needed.
1447 return FragTree->InlinePatternFragments(TP);
Chris Lattner8cab0212008-01-05 22:25:12 +00001448}
1449
1450/// getImplicitType - Check to see if the specified record has an implicit
Nick Lewyckyd9d1f812009-06-17 04:23:52 +00001451/// type which should be applied to it. This will infer the type of register
Chris Lattner8cab0212008-01-05 22:25:12 +00001452/// references from the register file information, for example.
1453///
Jakob Stoklund Olesenb5b91102013-03-23 18:08:44 +00001454/// When Unnamed is set, return the type of a DAG operand with no name, such as
1455/// the F8RC register class argument in:
1456///
1457/// (COPY_TO_REGCLASS GPR:$src, F8RC)
1458///
1459/// When Unnamed is false, return the type of a named DAG operand such as the
1460/// GPR:$src operand above.
1461///
Chris Lattnerf1447252010-03-19 21:37:09 +00001462static EEVT::TypeSet getImplicitType(Record *R, unsigned ResNo,
Jakob Stoklund Olesenb5b91102013-03-23 18:08:44 +00001463 bool NotRegisters,
1464 bool Unnamed,
1465 TreePattern &TP) {
Owen Andersona84be6c2011-06-27 21:06:21 +00001466 // Check to see if this is a register operand.
1467 if (R->isSubClassOf("RegisterOperand")) {
1468 assert(ResNo == 0 && "Regoperand ref only has one result!");
1469 if (NotRegisters)
1470 return EEVT::TypeSet(); // Unknown.
1471 Record *RegClass = R->getValueAsDef("RegClass");
1472 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo();
1473 return EEVT::TypeSet(T.getRegisterClass(RegClass).getValueTypes());
1474 }
1475
Chris Lattnercabe0372010-03-15 06:00:16 +00001476 // Check to see if this is a register or a register class.
Chris Lattner8cab0212008-01-05 22:25:12 +00001477 if (R->isSubClassOf("RegisterClass")) {
Chris Lattner6070ee22010-03-23 23:50:31 +00001478 assert(ResNo == 0 && "Regclass ref only has one result!");
Jakob Stoklund Olesenb5b91102013-03-23 18:08:44 +00001479 // An unnamed register class represents itself as an i32 immediate, for
1480 // example on a COPY_TO_REGCLASS instruction.
1481 if (Unnamed)
1482 return EEVT::TypeSet(MVT::i32, TP);
1483
1484 // In a named operand, the register class provides the possible set of
1485 // types.
Jim Grosbach65586fe2010-12-21 16:16:00 +00001486 if (NotRegisters)
Chris Lattnercabe0372010-03-15 06:00:16 +00001487 return EEVT::TypeSet(); // Unknown.
1488 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo();
1489 return EEVT::TypeSet(T.getRegisterClass(R).getValueTypes());
Chris Lattner6070ee22010-03-23 23:50:31 +00001490 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001491
Chris Lattner6070ee22010-03-23 23:50:31 +00001492 if (R->isSubClassOf("PatFrag")) {
1493 assert(ResNo == 0 && "FIXME: PatFrag with multiple results?");
Chris Lattner8cab0212008-01-05 22:25:12 +00001494 // Pattern fragment types will be resolved when they are inlined.
Chris Lattnercabe0372010-03-15 06:00:16 +00001495 return EEVT::TypeSet(); // Unknown.
Chris Lattner6070ee22010-03-23 23:50:31 +00001496 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001497
Chris Lattner6070ee22010-03-23 23:50:31 +00001498 if (R->isSubClassOf("Register")) {
1499 assert(ResNo == 0 && "Registers only produce one result!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00001500 if (NotRegisters)
Chris Lattnercabe0372010-03-15 06:00:16 +00001501 return EEVT::TypeSet(); // Unknown.
Chris Lattner8cab0212008-01-05 22:25:12 +00001502 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo();
Chris Lattnercabe0372010-03-15 06:00:16 +00001503 return EEVT::TypeSet(T.getRegisterVTs(R));
Chris Lattner6070ee22010-03-23 23:50:31 +00001504 }
Jakob Stoklund Olesen1c696462010-05-24 14:48:12 +00001505
1506 if (R->isSubClassOf("SubRegIndex")) {
1507 assert(ResNo == 0 && "SubRegisterIndices only produce one result!");
Matt Arsenaulteb492162014-11-02 23:46:51 +00001508 return EEVT::TypeSet(MVT::i32, TP);
Jakob Stoklund Olesen1c696462010-05-24 14:48:12 +00001509 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001510
Jakob Stoklund Olesend906b902013-03-23 20:35:01 +00001511 if (R->isSubClassOf("ValueType")) {
Chris Lattner6070ee22010-03-23 23:50:31 +00001512 assert(ResNo == 0 && "This node only has one result!");
Jakob Stoklund Olesend906b902013-03-23 20:35:01 +00001513 // An unnamed VTSDNode represents itself as an MVT::Other immediate.
1514 //
1515 // (sext_inreg GPR:$src, i16)
1516 // ~~~
1517 if (Unnamed)
1518 return EEVT::TypeSet(MVT::Other, TP);
1519 // With a name, the ValueType simply provides the type of the named
1520 // variable.
1521 //
1522 // (sext_inreg i32:$src, i16)
1523 // ~~~~~~~~
Jakob Stoklund Olesen04b0f912013-03-24 00:56:16 +00001524 if (NotRegisters)
1525 return EEVT::TypeSet(); // Unknown.
Jakob Stoklund Olesend906b902013-03-23 20:35:01 +00001526 return EEVT::TypeSet(getValueType(R), TP);
1527 }
1528
1529 if (R->isSubClassOf("CondCode")) {
1530 assert(ResNo == 0 && "This node only has one result!");
1531 // Using a CondCodeSDNode.
Chris Lattnercabe0372010-03-15 06:00:16 +00001532 return EEVT::TypeSet(MVT::Other, TP);
Chris Lattner6070ee22010-03-23 23:50:31 +00001533 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001534
Chris Lattner6070ee22010-03-23 23:50:31 +00001535 if (R->isSubClassOf("ComplexPattern")) {
1536 assert(ResNo == 0 && "FIXME: ComplexPattern with multiple results?");
Jim Grosbach65586fe2010-12-21 16:16:00 +00001537 if (NotRegisters)
Chris Lattnercabe0372010-03-15 06:00:16 +00001538 return EEVT::TypeSet(); // Unknown.
1539 return EEVT::TypeSet(TP.getDAGPatterns().getComplexPattern(R).getValueType(),
1540 TP);
Chris Lattner6070ee22010-03-23 23:50:31 +00001541 }
1542 if (R->isSubClassOf("PointerLikeRegClass")) {
1543 assert(ResNo == 0 && "Regclass can only have one result!");
Chris Lattnercabe0372010-03-15 06:00:16 +00001544 return EEVT::TypeSet(MVT::iPTR, TP);
Chris Lattner6070ee22010-03-23 23:50:31 +00001545 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001546
Chris Lattner6070ee22010-03-23 23:50:31 +00001547 if (R->getName() == "node" || R->getName() == "srcvalue" ||
1548 R->getName() == "zero_reg") {
Chris Lattner8cab0212008-01-05 22:25:12 +00001549 // Placeholder.
Chris Lattnercabe0372010-03-15 06:00:16 +00001550 return EEVT::TypeSet(); // Unknown.
Chris Lattner8cab0212008-01-05 22:25:12 +00001551 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001552
Tim Northoverc807a172014-05-20 11:52:46 +00001553 if (R->isSubClassOf("Operand"))
1554 return EEVT::TypeSet(getValueType(R->getValueAsDef("Type")));
1555
Chris Lattner8cab0212008-01-05 22:25:12 +00001556 TP.error("Unknown node flavor used in pattern: " + R->getName());
Chris Lattnercabe0372010-03-15 06:00:16 +00001557 return EEVT::TypeSet(MVT::Other, TP);
Chris Lattner8cab0212008-01-05 22:25:12 +00001558}
1559
Chris Lattner89c65662008-01-06 05:36:50 +00001560
1561/// getIntrinsicInfo - If this node corresponds to an intrinsic, return the
1562/// CodeGenIntrinsic information for it, otherwise return a null pointer.
1563const CodeGenIntrinsic *TreePatternNode::
1564getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const {
1565 if (getOperator() != CDP.get_intrinsic_void_sdnode() &&
1566 getOperator() != CDP.get_intrinsic_w_chain_sdnode() &&
1567 getOperator() != CDP.get_intrinsic_wo_chain_sdnode())
Craig Topper24064772014-04-15 07:20:03 +00001568 return nullptr;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001569
Sean Silva88eb8dd2012-10-10 20:24:47 +00001570 unsigned IID = cast<IntInit>(getChild(0)->getLeafValue())->getValue();
Chris Lattner89c65662008-01-06 05:36:50 +00001571 return &CDP.getIntrinsicInfo(IID);
1572}
1573
Chris Lattner53c39ba2010-02-14 22:22:58 +00001574/// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
1575/// return the ComplexPattern information, otherwise return null.
1576const ComplexPattern *
1577TreePatternNode::getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const {
Tim Northoverc807a172014-05-20 11:52:46 +00001578 Record *Rec;
1579 if (isLeaf()) {
1580 DefInit *DI = dyn_cast<DefInit>(getLeafValue());
1581 if (!DI)
1582 return nullptr;
1583 Rec = DI->getDef();
1584 } else
1585 Rec = getOperator();
Jim Grosbach65586fe2010-12-21 16:16:00 +00001586
Tim Northoverc807a172014-05-20 11:52:46 +00001587 if (!Rec->isSubClassOf("ComplexPattern"))
1588 return nullptr;
1589 return &CGP.getComplexPattern(Rec);
1590}
1591
1592unsigned TreePatternNode::getNumMIResults(const CodeGenDAGPatterns &CGP) const {
1593 // A ComplexPattern specifically declares how many results it fills in.
1594 if (const ComplexPattern *CP = getComplexPatternInfo(CGP))
1595 return CP->getNumOperands();
1596
1597 // If MIOperandInfo is specified, that gives the count.
1598 if (isLeaf()) {
1599 DefInit *DI = dyn_cast<DefInit>(getLeafValue());
1600 if (DI && DI->getDef()->isSubClassOf("Operand")) {
1601 DagInit *MIOps = DI->getDef()->getValueAsDag("MIOperandInfo");
1602 if (MIOps->getNumArgs())
1603 return MIOps->getNumArgs();
1604 }
1605 }
1606
1607 // Otherwise there is just one result.
1608 return 1;
Chris Lattner53c39ba2010-02-14 22:22:58 +00001609}
1610
1611/// NodeHasProperty - Return true if this node has the specified property.
1612bool TreePatternNode::NodeHasProperty(SDNP Property,
Chris Lattner450d5042010-02-14 22:33:49 +00001613 const CodeGenDAGPatterns &CGP) const {
Chris Lattner53c39ba2010-02-14 22:22:58 +00001614 if (isLeaf()) {
1615 if (const ComplexPattern *CP = getComplexPatternInfo(CGP))
1616 return CP->hasProperty(Property);
1617 return false;
1618 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001619
Chris Lattner53c39ba2010-02-14 22:22:58 +00001620 Record *Operator = getOperator();
1621 if (!Operator->isSubClassOf("SDNode")) return false;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001622
Chris Lattner53c39ba2010-02-14 22:22:58 +00001623 return CGP.getSDNodeInfo(Operator).hasProperty(Property);
1624}
1625
1626
1627
1628
1629/// TreeHasProperty - Return true if any node in this tree has the specified
1630/// property.
1631bool TreePatternNode::TreeHasProperty(SDNP Property,
Chris Lattner450d5042010-02-14 22:33:49 +00001632 const CodeGenDAGPatterns &CGP) const {
Chris Lattner53c39ba2010-02-14 22:22:58 +00001633 if (NodeHasProperty(Property, CGP))
1634 return true;
1635 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1636 if (getChild(i)->TreeHasProperty(Property, CGP))
1637 return true;
1638 return false;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001639}
Chris Lattner53c39ba2010-02-14 22:22:58 +00001640
Evan Cheng49bad4c2008-06-16 20:29:38 +00001641/// isCommutativeIntrinsic - Return true if the node corresponds to a
1642/// commutative intrinsic.
1643bool
1644TreePatternNode::isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const {
1645 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CDP))
1646 return Int->isCommutative;
1647 return false;
1648}
1649
Matt Arsenaulteb492162014-11-02 23:46:51 +00001650static bool isOperandClass(const TreePatternNode *N, StringRef Class) {
1651 if (!N->isLeaf())
1652 return N->getOperator()->isSubClassOf(Class);
Chris Lattner89c65662008-01-06 05:36:50 +00001653
Matt Arsenaulteb492162014-11-02 23:46:51 +00001654 DefInit *DI = dyn_cast<DefInit>(N->getLeafValue());
1655 if (DI && DI->getDef()->isSubClassOf(Class))
1656 return true;
1657
1658 return false;
1659}
Matt Arsenault9ece3ce2014-12-11 22:27:14 +00001660
1661static void emitTooManyOperandsError(TreePattern &TP,
1662 StringRef InstName,
1663 unsigned Expected,
1664 unsigned Actual) {
1665 TP.error("Instruction '" + InstName + "' was provided " + Twine(Actual) +
1666 " operands but expected only " + Twine(Expected) + "!");
1667}
1668
1669static void emitTooFewOperandsError(TreePattern &TP,
1670 StringRef InstName,
1671 unsigned Actual) {
1672 TP.error("Instruction '" + InstName +
1673 "' expects more than the provided " + Twine(Actual) + " operands!");
1674}
1675
Bob Wilson1b97f3f2009-01-05 17:23:09 +00001676/// ApplyTypeConstraints - Apply all of the type constraints relevant to
Chris Lattner8cab0212008-01-05 22:25:12 +00001677/// this node and its children in the tree. This returns true if it makes a
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001678/// change, false otherwise. If a type contradiction is found, flag an error.
Chris Lattner8cab0212008-01-05 22:25:12 +00001679bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001680 if (TP.hasError())
1681 return false;
1682
Chris Lattnerab3242f2008-01-06 01:10:31 +00001683 CodeGenDAGPatterns &CDP = TP.getDAGPatterns();
Chris Lattner8cab0212008-01-05 22:25:12 +00001684 if (isLeaf()) {
Sean Silvafb509ed2012-10-10 20:24:43 +00001685 if (DefInit *DI = dyn_cast<DefInit>(getLeafValue())) {
Chris Lattner8cab0212008-01-05 22:25:12 +00001686 // If it's a regclass or something else known, include the type.
Chris Lattnerf1447252010-03-19 21:37:09 +00001687 bool MadeChange = false;
1688 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1689 MadeChange |= UpdateNodeType(i, getImplicitType(DI->getDef(), i,
Jakob Stoklund Olesenb5b91102013-03-23 18:08:44 +00001690 NotRegisters,
1691 !hasName(), TP), TP);
Chris Lattnerf1447252010-03-19 21:37:09 +00001692 return MadeChange;
Chris Lattner78291e32010-02-14 21:10:15 +00001693 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001694
Sean Silvafb509ed2012-10-10 20:24:43 +00001695 if (IntInit *II = dyn_cast<IntInit>(getLeafValue())) {
Chris Lattnerf1447252010-03-19 21:37:09 +00001696 assert(Types.size() == 1 && "Invalid IntInit");
Jim Grosbach65586fe2010-12-21 16:16:00 +00001697
Chris Lattnerf1447252010-03-19 21:37:09 +00001698 // Int inits are always integers. :)
1699 bool MadeChange = Types[0].EnforceInteger(TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001700
Chris Lattnerf1447252010-03-19 21:37:09 +00001701 if (!Types[0].isConcrete())
Chris Lattnercabe0372010-03-15 06:00:16 +00001702 return MadeChange;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001703
Chris Lattnerf1447252010-03-19 21:37:09 +00001704 MVT::SimpleValueType VT = getType(0);
Chris Lattnercabe0372010-03-15 06:00:16 +00001705 if (VT == MVT::iPTR || VT == MVT::iPTRAny)
1706 return MadeChange;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001707
Craig Topper95198f42013-09-25 06:37:18 +00001708 unsigned Size = MVT(VT).getSizeInBits();
Chris Lattnercabe0372010-03-15 06:00:16 +00001709 // Make sure that the value is representable for this type.
1710 if (Size >= 32) return MadeChange;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001711
Richard Smith228e6d42012-08-24 23:29:28 +00001712 // Check that the value doesn't use more bits than we have. It must either
1713 // be a sign- or zero-extended equivalent of the original.
1714 int64_t SignBitAndAbove = II->getValue() >> (Size - 1);
1715 if (SignBitAndAbove == -1 || SignBitAndAbove == 0 || SignBitAndAbove == 1)
Chris Lattnercabe0372010-03-15 06:00:16 +00001716 return MadeChange;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001717
Richard Smith228e6d42012-08-24 23:29:28 +00001718 TP.error("Integer value '" + itostr(II->getValue()) +
Chris Lattnerf1447252010-03-19 21:37:09 +00001719 "' is out of range for type '" + getEnumName(getType(0)) + "'!");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001720 return false;
Chris Lattner8cab0212008-01-05 22:25:12 +00001721 }
1722 return false;
1723 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001724
Chris Lattner8cab0212008-01-05 22:25:12 +00001725 // special handling for set, which isn't really an SDNode.
1726 if (getOperator()->getName() == "set") {
Chris Lattnerf1447252010-03-19 21:37:09 +00001727 assert(getNumTypes() == 0 && "Set doesn't produce a value");
1728 assert(getNumChildren() >= 2 && "Missing RHS of a set?");
Chris Lattner8cab0212008-01-05 22:25:12 +00001729 unsigned NC = getNumChildren();
Jim Grosbach65586fe2010-12-21 16:16:00 +00001730
Chris Lattnerf1447252010-03-19 21:37:09 +00001731 TreePatternNode *SetVal = getChild(NC-1);
1732 bool MadeChange = SetVal->ApplyTypeConstraints(TP, NotRegisters);
1733
Elena Demikhovsky09954792015-03-01 08:23:41 +00001734 for (unsigned i = 0; i < NC-1; ++i) {
Chris Lattnerf1447252010-03-19 21:37:09 +00001735 TreePatternNode *Child = getChild(i);
1736 MadeChange |= Child->ApplyTypeConstraints(TP, NotRegisters);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001737
Chris Lattner8cab0212008-01-05 22:25:12 +00001738 // Types of operands must match.
Chris Lattnerf1447252010-03-19 21:37:09 +00001739 MadeChange |= Child->UpdateNodeType(0, SetVal->getExtType(i), TP);
1740 MadeChange |= SetVal->UpdateNodeType(i, Child->getExtType(0), TP);
Chris Lattner8cab0212008-01-05 22:25:12 +00001741 }
1742 return MadeChange;
Chris Lattneree820ac2010-02-23 05:51:07 +00001743 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001744
Chris Lattner5c2182e2010-03-27 02:53:27 +00001745 if (getOperator()->getName() == "implicit") {
Chris Lattnerf1447252010-03-19 21:37:09 +00001746 assert(getNumTypes() == 0 && "Node doesn't produce a value");
1747
Chris Lattner8cab0212008-01-05 22:25:12 +00001748 bool MadeChange = false;
1749 for (unsigned i = 0; i < getNumChildren(); ++i)
1750 MadeChange = getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner8cab0212008-01-05 22:25:12 +00001751 return MadeChange;
Chris Lattneree820ac2010-02-23 05:51:07 +00001752 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001753
Chris Lattneree820ac2010-02-23 05:51:07 +00001754 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CDP)) {
Chris Lattner8cab0212008-01-05 22:25:12 +00001755 bool MadeChange = false;
Duncan Sands13237ac2008-06-06 12:08:01 +00001756
Chris Lattner8cab0212008-01-05 22:25:12 +00001757 // Apply the result type to the node.
Bill Wendling91821472008-11-13 09:08:33 +00001758 unsigned NumRetVTs = Int->IS.RetVTs.size();
1759 unsigned NumParamVTs = Int->IS.ParamVTs.size();
Jim Grosbach65586fe2010-12-21 16:16:00 +00001760
Bill Wendling91821472008-11-13 09:08:33 +00001761 for (unsigned i = 0, e = NumRetVTs; i != e; ++i)
Chris Lattnerf1447252010-03-19 21:37:09 +00001762 MadeChange |= UpdateNodeType(i, Int->IS.RetVTs[i], TP);
Bill Wendling91821472008-11-13 09:08:33 +00001763
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001764 if (getNumChildren() != NumParamVTs + 1) {
Chris Lattner89c65662008-01-06 05:36:50 +00001765 TP.error("Intrinsic '" + Int->Name + "' expects " +
Chris Lattnerf1447252010-03-19 21:37:09 +00001766 utostr(NumParamVTs) + " operands, not " +
Bill Wendling91821472008-11-13 09:08:33 +00001767 utostr(getNumChildren() - 1) + " operands!");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001768 return false;
1769 }
Chris Lattner8cab0212008-01-05 22:25:12 +00001770
1771 // Apply type info to the intrinsic ID.
Chris Lattnerf1447252010-03-19 21:37:09 +00001772 MadeChange |= getChild(0)->UpdateNodeType(0, MVT::iPTR, TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001773
Chris Lattnerf1447252010-03-19 21:37:09 +00001774 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i) {
1775 MadeChange |= getChild(i+1)->ApplyTypeConstraints(TP, NotRegisters);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001776
Chris Lattnerf1447252010-03-19 21:37:09 +00001777 MVT::SimpleValueType OpVT = Int->IS.ParamVTs[i];
1778 assert(getChild(i+1)->getNumTypes() == 1 && "Unhandled case");
1779 MadeChange |= getChild(i+1)->UpdateNodeType(0, OpVT, TP);
Chris Lattner8cab0212008-01-05 22:25:12 +00001780 }
1781 return MadeChange;
Chris Lattneree820ac2010-02-23 05:51:07 +00001782 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001783
Chris Lattneree820ac2010-02-23 05:51:07 +00001784 if (getOperator()->isSubClassOf("SDNode")) {
Chris Lattner8cab0212008-01-05 22:25:12 +00001785 const SDNodeInfo &NI = CDP.getSDNodeInfo(getOperator());
Jim Grosbach65586fe2010-12-21 16:16:00 +00001786
Chris Lattner135091b2010-03-28 08:48:47 +00001787 // Check that the number of operands is sane. Negative operands -> varargs.
1788 if (NI.getNumOperands() >= 0 &&
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001789 getNumChildren() != (unsigned)NI.getNumOperands()) {
Chris Lattner135091b2010-03-28 08:48:47 +00001790 TP.error(getOperator()->getName() + " node requires exactly " +
1791 itostr(NI.getNumOperands()) + " operands!");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001792 return false;
1793 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001794
Chris Lattner8cab0212008-01-05 22:25:12 +00001795 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
1796 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1797 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnerf1447252010-03-19 21:37:09 +00001798 return MadeChange;
Chris Lattneree820ac2010-02-23 05:51:07 +00001799 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001800
Chris Lattneree820ac2010-02-23 05:51:07 +00001801 if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattner8cab0212008-01-05 22:25:12 +00001802 const DAGInstruction &Inst = CDP.getInstruction(getOperator());
Chris Lattner8cab0212008-01-05 22:25:12 +00001803 CodeGenInstruction &InstInfo =
Chris Lattner9aec14b2010-03-19 00:07:20 +00001804 CDP.getTargetInfo().getInstruction(getOperator());
Jim Grosbach65586fe2010-12-21 16:16:00 +00001805
Chris Lattnerd44966f2010-03-27 19:15:02 +00001806 bool MadeChange = false;
1807
1808 // Apply the result types to the node, these come from the things in the
1809 // (outs) list of the instruction.
Craig Topper3a8eb892015-03-20 05:09:06 +00001810 unsigned NumResultsToAdd = std::min(InstInfo.Operands.NumDefs,
1811 Inst.getNumResults());
Jakob Stoklund Olesen57a86502013-03-18 04:08:07 +00001812 for (unsigned ResNo = 0; ResNo != NumResultsToAdd; ++ResNo)
1813 MadeChange |= UpdateNodeTypeFromInst(ResNo, Inst.getResult(ResNo), TP);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001814
Chris Lattnerd44966f2010-03-27 19:15:02 +00001815 // If the instruction has implicit defs, we apply the first one as a result.
1816 // FIXME: This sucks, it should apply all implicit defs.
1817 if (!InstInfo.ImplicitDefs.empty()) {
1818 unsigned ResNo = NumResultsToAdd;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001819
Chris Lattner7bc5d9b2010-03-27 20:09:24 +00001820 // FIXME: Generalize to multiple possible types and multiple possible
1821 // ImplicitDefs.
1822 MVT::SimpleValueType VT =
1823 InstInfo.HasOneImplicitDefWithKnownVT(CDP.getTargetInfo());
Jim Grosbach65586fe2010-12-21 16:16:00 +00001824
Chris Lattner7bc5d9b2010-03-27 20:09:24 +00001825 if (VT != MVT::Other)
1826 MadeChange |= UpdateNodeType(ResNo, VT, TP);
Chris Lattner8cab0212008-01-05 22:25:12 +00001827 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001828
Chris Lattnercabe0372010-03-15 06:00:16 +00001829 // If this is an INSERT_SUBREG, constrain the source and destination VTs to
1830 // be the same.
1831 if (getOperator()->getName() == "INSERT_SUBREG") {
Chris Lattnerf1447252010-03-19 21:37:09 +00001832 assert(getChild(0)->getNumTypes() == 1 && "FIXME: Unhandled");
1833 MadeChange |= UpdateNodeType(0, getChild(0)->getExtType(0), TP);
1834 MadeChange |= getChild(0)->UpdateNodeType(0, getExtType(0), TP);
Matt Arsenaulteb492162014-11-02 23:46:51 +00001835 } else if (getOperator()->getName() == "REG_SEQUENCE") {
1836 // We need to do extra, custom typechecking for REG_SEQUENCE since it is
1837 // variadic.
1838
1839 unsigned NChild = getNumChildren();
1840 if (NChild < 3) {
1841 TP.error("REG_SEQUENCE requires at least 3 operands!");
1842 return false;
1843 }
1844
1845 if (NChild % 2 == 0) {
1846 TP.error("REG_SEQUENCE requires an odd number of operands!");
1847 return false;
1848 }
1849
1850 if (!isOperandClass(getChild(0), "RegisterClass")) {
1851 TP.error("REG_SEQUENCE requires a RegisterClass for first operand!");
1852 return false;
1853 }
1854
1855 for (unsigned I = 1; I < NChild; I += 2) {
1856 TreePatternNode *SubIdxChild = getChild(I + 1);
1857 if (!isOperandClass(SubIdxChild, "SubRegIndex")) {
1858 TP.error("REG_SEQUENCE requires a SubRegIndex for operand " +
1859 itostr(I + 1) + "!");
1860 return false;
1861 }
1862 }
Chris Lattnercabe0372010-03-15 06:00:16 +00001863 }
Chris Lattner8cab0212008-01-05 22:25:12 +00001864
1865 unsigned ChildNo = 0;
1866 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i) {
1867 Record *OperandNode = Inst.getOperand(i);
Jim Grosbach65586fe2010-12-21 16:16:00 +00001868
Chris Lattner8cab0212008-01-05 22:25:12 +00001869 // If the instruction expects a predicate or optional def operand, we
1870 // codegen this by setting the operand to it's default value if it has a
1871 // non-empty DefaultOps field.
Tom Stellardb7246a72012-09-06 14:15:52 +00001872 if (OperandNode->isSubClassOf("OperandWithDefaultOps") &&
Chris Lattner8cab0212008-01-05 22:25:12 +00001873 !CDP.getDefaultOperand(OperandNode).DefaultOps.empty())
1874 continue;
Jim Grosbach65586fe2010-12-21 16:16:00 +00001875
Chris Lattner8cab0212008-01-05 22:25:12 +00001876 // Verify that we didn't run out of provided operands.
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001877 if (ChildNo >= getNumChildren()) {
Matt Arsenault9ece3ce2014-12-11 22:27:14 +00001878 emitTooFewOperandsError(TP, getOperator()->getName(), getNumChildren());
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001879 return false;
1880 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001881
Chris Lattner8cab0212008-01-05 22:25:12 +00001882 TreePatternNode *Child = getChild(ChildNo++);
Chris Lattnerd44966f2010-03-27 19:15:02 +00001883 unsigned ChildResNo = 0; // Instructions always use res #0 of their op.
Ulrich Weigande618abd2013-03-19 19:51:09 +00001884
1885 // If the operand has sub-operands, they may be provided by distinct
1886 // child patterns, so attempt to match each sub-operand separately.
1887 if (OperandNode->isSubClassOf("Operand")) {
1888 DagInit *MIOpInfo = OperandNode->getValueAsDag("MIOperandInfo");
1889 if (unsigned NumArgs = MIOpInfo->getNumArgs()) {
1890 // But don't do that if the whole operand is being provided by
Tim Northoverc350acf2014-05-22 11:56:09 +00001891 // a single ComplexPattern-related Operand.
1892
1893 if (Child->getNumMIResults(CDP) < NumArgs) {
Ulrich Weigande618abd2013-03-19 19:51:09 +00001894 // Match first sub-operand against the child we already have.
1895 Record *SubRec = cast<DefInit>(MIOpInfo->getArg(0))->getDef();
1896 MadeChange |=
1897 Child->UpdateNodeTypeFromInst(ChildResNo, SubRec, TP);
1898
1899 // And the remaining sub-operands against subsequent children.
1900 for (unsigned Arg = 1; Arg < NumArgs; ++Arg) {
1901 if (ChildNo >= getNumChildren()) {
Matt Arsenault9ece3ce2014-12-11 22:27:14 +00001902 emitTooFewOperandsError(TP, getOperator()->getName(),
1903 getNumChildren());
Ulrich Weigande618abd2013-03-19 19:51:09 +00001904 return false;
1905 }
1906 Child = getChild(ChildNo++);
1907
1908 SubRec = cast<DefInit>(MIOpInfo->getArg(Arg))->getDef();
1909 MadeChange |=
1910 Child->UpdateNodeTypeFromInst(ChildResNo, SubRec, TP);
1911 }
1912 continue;
1913 }
1914 }
1915 }
1916
1917 // If we didn't match by pieces above, attempt to match the whole
1918 // operand now.
Jakob Stoklund Olesen57a86502013-03-18 04:08:07 +00001919 MadeChange |= Child->UpdateNodeTypeFromInst(ChildResNo, OperandNode, TP);
Chris Lattner8cab0212008-01-05 22:25:12 +00001920 }
Christopher Lamba7312392008-03-11 09:33:47 +00001921
Matt Arsenaulteb492162014-11-02 23:46:51 +00001922 if (!InstInfo.Operands.isVariadic && ChildNo != getNumChildren()) {
Matt Arsenault9ece3ce2014-12-11 22:27:14 +00001923 emitTooManyOperandsError(TP, getOperator()->getName(),
1924 ChildNo, getNumChildren());
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001925 return false;
1926 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001927
Ulrich Weigande618abd2013-03-19 19:51:09 +00001928 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1929 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner8cab0212008-01-05 22:25:12 +00001930 return MadeChange;
Chris Lattner8cab0212008-01-05 22:25:12 +00001931 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001932
Tim Northoverc807a172014-05-20 11:52:46 +00001933 if (getOperator()->isSubClassOf("ComplexPattern")) {
1934 bool MadeChange = false;
1935
1936 for (unsigned i = 0; i < getNumChildren(); ++i)
1937 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
1938
1939 return MadeChange;
1940 }
1941
Chris Lattneree820ac2010-02-23 05:51:07 +00001942 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00001943
Chris Lattneree820ac2010-02-23 05:51:07 +00001944 // Node transforms always take one operand.
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001945 if (getNumChildren() != 1) {
Chris Lattneree820ac2010-02-23 05:51:07 +00001946 TP.error("Node transform '" + getOperator()->getName() +
1947 "' requires one operand!");
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00001948 return false;
1949 }
Chris Lattneree820ac2010-02-23 05:51:07 +00001950
Chris Lattnercabe0372010-03-15 06:00:16 +00001951 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
1952
Jim Grosbach65586fe2010-12-21 16:16:00 +00001953
Chris Lattneree820ac2010-02-23 05:51:07 +00001954 // If either the output or input of the xform does not have exact
1955 // type info. We assume they must be the same. Otherwise, it is perfectly
1956 // legal to transform from one type to a completely different type.
Chris Lattnercabe0372010-03-15 06:00:16 +00001957#if 0
Chris Lattneree820ac2010-02-23 05:51:07 +00001958 if (!hasTypeSet() || !getChild(0)->hasTypeSet()) {
Chris Lattnercabe0372010-03-15 06:00:16 +00001959 bool MadeChange = UpdateNodeType(getChild(0)->getExtType(), TP);
1960 MadeChange |= getChild(0)->UpdateNodeType(getExtType(), TP);
Chris Lattneree820ac2010-02-23 05:51:07 +00001961 return MadeChange;
1962 }
Chris Lattnercabe0372010-03-15 06:00:16 +00001963#endif
1964 return MadeChange;
Chris Lattner8cab0212008-01-05 22:25:12 +00001965}
1966
1967/// OnlyOnRHSOfCommutative - Return true if this value is only allowed on the
1968/// RHS of a commutative operation, not the on LHS.
1969static bool OnlyOnRHSOfCommutative(TreePatternNode *N) {
1970 if (!N->isLeaf() && N->getOperator()->getName() == "imm")
1971 return true;
Sean Silva88eb8dd2012-10-10 20:24:47 +00001972 if (N->isLeaf() && isa<IntInit>(N->getLeafValue()))
Chris Lattner8cab0212008-01-05 22:25:12 +00001973 return true;
1974 return false;
1975}
1976
1977
1978/// canPatternMatch - If it is impossible for this pattern to match on this
1979/// target, fill in Reason and return false. Otherwise, return true. This is
Jim Grosbach975c1cb2009-03-26 16:17:51 +00001980/// used as a sanity check for .td files (to prevent people from writing stuff
Chris Lattner8cab0212008-01-05 22:25:12 +00001981/// that can never possibly work), and to prevent the pattern permuter from
1982/// generating stuff that is useless.
Jim Grosbach65586fe2010-12-21 16:16:00 +00001983bool TreePatternNode::canPatternMatch(std::string &Reason,
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00001984 const CodeGenDAGPatterns &CDP) {
Chris Lattner8cab0212008-01-05 22:25:12 +00001985 if (isLeaf()) return true;
1986
1987 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1988 if (!getChild(i)->canPatternMatch(Reason, CDP))
1989 return false;
1990
1991 // If this is an intrinsic, handle cases that would make it not match. For
1992 // example, if an operand is required to be an immediate.
1993 if (getOperator()->isSubClassOf("Intrinsic")) {
1994 // TODO:
1995 return true;
1996 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00001997
Tim Northoverc807a172014-05-20 11:52:46 +00001998 if (getOperator()->isSubClassOf("ComplexPattern"))
1999 return true;
2000
Chris Lattner8cab0212008-01-05 22:25:12 +00002001 // If this node is a commutative operator, check that the LHS isn't an
2002 // immediate.
2003 const SDNodeInfo &NodeInfo = CDP.getSDNodeInfo(getOperator());
Evan Cheng49bad4c2008-06-16 20:29:38 +00002004 bool isCommIntrinsic = isCommutativeIntrinsic(CDP);
2005 if (NodeInfo.hasProperty(SDNPCommutative) || isCommIntrinsic) {
Chris Lattner8cab0212008-01-05 22:25:12 +00002006 // Scan all of the operands of the node and make sure that only the last one
2007 // is a constant node, unless the RHS also is.
2008 if (!OnlyOnRHSOfCommutative(getChild(getNumChildren()-1))) {
Evan Cheng49bad4c2008-06-16 20:29:38 +00002009 bool Skip = isCommIntrinsic ? 1 : 0; // First operand is intrinsic id.
2010 for (unsigned i = Skip, e = getNumChildren()-1; i != e; ++i)
Chris Lattner8cab0212008-01-05 22:25:12 +00002011 if (OnlyOnRHSOfCommutative(getChild(i))) {
2012 Reason="Immediate value must be on the RHS of commutative operators!";
2013 return false;
2014 }
2015 }
2016 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002017
Chris Lattner8cab0212008-01-05 22:25:12 +00002018 return true;
2019}
2020
2021//===----------------------------------------------------------------------===//
2022// TreePattern implementation
2023//
2024
David Greeneaf8ee2c2011-07-29 22:43:06 +00002025TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00002026 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp),
2027 isInputPattern(isInput), HasError(false) {
Craig Topperef0578a2015-06-02 04:15:51 +00002028 for (Init *I : RawPat->getValues())
2029 Trees.push_back(ParseTreePattern(I, ""));
Chris Lattner8cab0212008-01-05 22:25:12 +00002030}
2031
David Greeneaf8ee2c2011-07-29 22:43:06 +00002032TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00002033 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp),
2034 isInputPattern(isInput), HasError(false) {
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002035 Trees.push_back(ParseTreePattern(Pat, ""));
Chris Lattner8cab0212008-01-05 22:25:12 +00002036}
2037
David Blaikiecf195302014-11-17 22:55:41 +00002038TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00002039 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp),
2040 isInputPattern(isInput), HasError(false) {
David Blaikiecf195302014-11-17 22:55:41 +00002041 Trees.push_back(Pat);
Chris Lattner8cab0212008-01-05 22:25:12 +00002042}
2043
Matt Arsenaultea8df3a2014-11-11 23:48:11 +00002044void TreePattern::error(const Twine &Msg) {
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00002045 if (HasError)
2046 return;
Chris Lattner8cab0212008-01-05 22:25:12 +00002047 dump();
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00002048 PrintError(TheRecord->getLoc(), "In " + TheRecord->getName() + ": " + Msg);
2049 HasError = true;
Chris Lattner8cab0212008-01-05 22:25:12 +00002050}
2051
Chris Lattnercabe0372010-03-15 06:00:16 +00002052void TreePattern::ComputeNamedNodes() {
Craig Topper306cb122015-11-22 20:46:24 +00002053 for (TreePatternNode *Tree : Trees)
2054 ComputeNamedNodes(Tree);
Chris Lattnercabe0372010-03-15 06:00:16 +00002055}
2056
2057void TreePattern::ComputeNamedNodes(TreePatternNode *N) {
2058 if (!N->getName().empty())
2059 NamedNodes[N->getName()].push_back(N);
Jim Grosbach65586fe2010-12-21 16:16:00 +00002060
Chris Lattnercabe0372010-03-15 06:00:16 +00002061 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
2062 ComputeNamedNodes(N->getChild(i));
2063}
2064
David Blaikiecf195302014-11-17 22:55:41 +00002065
2066TreePatternNode *TreePattern::ParseTreePattern(Init *TheInit, StringRef OpName){
Sean Silvafb509ed2012-10-10 20:24:43 +00002067 if (DefInit *DI = dyn_cast<DefInit>(TheInit)) {
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002068 Record *R = DI->getDef();
Jim Grosbach65586fe2010-12-21 16:16:00 +00002069
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002070 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
Jim Grosbachfdc02c12011-07-06 23:38:13 +00002071 // TreePatternNode of its own. For example:
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002072 /// (foo GPR, imm) -> (foo GPR, (imm))
2073 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag"))
David Greenee32ebf22011-07-29 19:07:07 +00002074 return ParseTreePattern(
Matthias Braun7cf3b112016-12-05 06:00:41 +00002075 DagInit::get(DI, nullptr,
David Greeneaf8ee2c2011-07-29 22:43:06 +00002076 std::vector<std::pair<Init*, std::string> >()),
David Greenee32ebf22011-07-29 19:07:07 +00002077 OpName);
Jim Grosbach65586fe2010-12-21 16:16:00 +00002078
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002079 // Input argument?
David Blaikiecf195302014-11-17 22:55:41 +00002080 TreePatternNode *Res = new TreePatternNode(DI, 1);
Chris Lattner135091b2010-03-28 08:48:47 +00002081 if (R->getName() == "node" && !OpName.empty()) {
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002082 if (OpName.empty())
2083 error("'node' argument requires a name to match with operand list");
2084 Args.push_back(OpName);
2085 }
2086
2087 Res->setName(OpName);
2088 return Res;
2089 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002090
Jakob Stoklund Olesen99ffcc82013-03-24 19:37:00 +00002091 // ?:$name or just $name.
Craig Topper1bf3d1f2015-04-22 02:09:45 +00002092 if (isa<UnsetInit>(TheInit)) {
Jakob Stoklund Olesen99ffcc82013-03-24 19:37:00 +00002093 if (OpName.empty())
2094 error("'?' argument requires a name to match with operand list");
David Blaikiecf195302014-11-17 22:55:41 +00002095 TreePatternNode *Res = new TreePatternNode(TheInit, 1);
Jakob Stoklund Olesen99ffcc82013-03-24 19:37:00 +00002096 Args.push_back(OpName);
2097 Res->setName(OpName);
2098 return Res;
2099 }
2100
Sean Silvafb509ed2012-10-10 20:24:43 +00002101 if (IntInit *II = dyn_cast<IntInit>(TheInit)) {
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002102 if (!OpName.empty())
2103 error("Constant int argument should not have a name!");
David Blaikiecf195302014-11-17 22:55:41 +00002104 return new TreePatternNode(II, 1);
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002105 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002106
Sean Silvafb509ed2012-10-10 20:24:43 +00002107 if (BitsInit *BI = dyn_cast<BitsInit>(TheInit)) {
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002108 // Turn this into an IntInit.
David Greeneaf8ee2c2011-07-29 22:43:06 +00002109 Init *II = BI->convertInitializerTo(IntRecTy::get());
Craig Topper24064772014-04-15 07:20:03 +00002110 if (!II || !isa<IntInit>(II))
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002111 error("Bits value must be constants!");
Chris Lattner2e9eae12010-03-28 06:57:56 +00002112 return ParseTreePattern(II, OpName);
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002113 }
2114
Sean Silvafb509ed2012-10-10 20:24:43 +00002115 DagInit *Dag = dyn_cast<DagInit>(TheInit);
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002116 if (!Dag) {
2117 TheInit->dump();
2118 error("Pattern has unexpected init kind!");
2119 }
Sean Silvafb509ed2012-10-10 20:24:43 +00002120 DefInit *OpDef = dyn_cast<DefInit>(Dag->getOperator());
Chris Lattner8cab0212008-01-05 22:25:12 +00002121 if (!OpDef) error("Pattern has unexpected operator type!");
2122 Record *Operator = OpDef->getDef();
Jim Grosbach65586fe2010-12-21 16:16:00 +00002123
Chris Lattner8cab0212008-01-05 22:25:12 +00002124 if (Operator->isSubClassOf("ValueType")) {
2125 // If the operator is a ValueType, then this must be "type cast" of a leaf
2126 // node.
2127 if (Dag->getNumArgs() != 1)
2128 error("Type cast only takes one operand!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002129
David Blaikiecf195302014-11-17 22:55:41 +00002130 TreePatternNode *New = ParseTreePattern(Dag->getArg(0), Dag->getArgName(0));
Jim Grosbach65586fe2010-12-21 16:16:00 +00002131
Chris Lattner8cab0212008-01-05 22:25:12 +00002132 // Apply the type cast.
Chris Lattnerf1447252010-03-19 21:37:09 +00002133 assert(New->getNumTypes() == 1 && "FIXME: Unhandled");
2134 New->UpdateNodeType(0, getValueType(Operator), *this);
Jim Grosbach65586fe2010-12-21 16:16:00 +00002135
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002136 if (!OpName.empty())
2137 error("ValueType cast should not have a name!");
Chris Lattner8cab0212008-01-05 22:25:12 +00002138 return New;
2139 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002140
Chris Lattner8cab0212008-01-05 22:25:12 +00002141 // Verify that this is something that makes sense for an operator.
Jim Grosbach65586fe2010-12-21 16:16:00 +00002142 if (!Operator->isSubClassOf("PatFrag") &&
Nate Begemandbe3f772009-03-19 05:21:56 +00002143 !Operator->isSubClassOf("SDNode") &&
Jim Grosbach65586fe2010-12-21 16:16:00 +00002144 !Operator->isSubClassOf("Instruction") &&
Chris Lattner8cab0212008-01-05 22:25:12 +00002145 !Operator->isSubClassOf("SDNodeXForm") &&
2146 !Operator->isSubClassOf("Intrinsic") &&
Tim Northoverc807a172014-05-20 11:52:46 +00002147 !Operator->isSubClassOf("ComplexPattern") &&
Chris Lattner8cab0212008-01-05 22:25:12 +00002148 Operator->getName() != "set" &&
Chris Lattner5c2182e2010-03-27 02:53:27 +00002149 Operator->getName() != "implicit")
Chris Lattner8cab0212008-01-05 22:25:12 +00002150 error("Unrecognized node '" + Operator->getName() + "'!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002151
Chris Lattner8cab0212008-01-05 22:25:12 +00002152 // Check to see if this is something that is illegal in an input pattern.
Chris Lattner2e9eae12010-03-28 06:57:56 +00002153 if (isInputPattern) {
2154 if (Operator->isSubClassOf("Instruction") ||
2155 Operator->isSubClassOf("SDNodeXForm"))
2156 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
2157 } else {
2158 if (Operator->isSubClassOf("Intrinsic"))
2159 error("Cannot use '" + Operator->getName() + "' in an output pattern!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002160
Chris Lattner2e9eae12010-03-28 06:57:56 +00002161 if (Operator->isSubClassOf("SDNode") &&
2162 Operator->getName() != "imm" &&
2163 Operator->getName() != "fpimm" &&
2164 Operator->getName() != "tglobaltlsaddr" &&
2165 Operator->getName() != "tconstpool" &&
2166 Operator->getName() != "tjumptable" &&
2167 Operator->getName() != "tframeindex" &&
2168 Operator->getName() != "texternalsym" &&
2169 Operator->getName() != "tblockaddress" &&
2170 Operator->getName() != "tglobaladdr" &&
2171 Operator->getName() != "bb" &&
Rafael Espindola36b718f2015-06-22 17:46:53 +00002172 Operator->getName() != "vt" &&
2173 Operator->getName() != "mcsym")
Chris Lattner2e9eae12010-03-28 06:57:56 +00002174 error("Cannot use '" + Operator->getName() + "' in an output pattern!");
2175 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002176
Chris Lattner8cab0212008-01-05 22:25:12 +00002177 std::vector<TreePatternNode*> Children;
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002178
2179 // Parse all the operands.
2180 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i)
David Blaikiecf195302014-11-17 22:55:41 +00002181 Children.push_back(ParseTreePattern(Dag->getArg(i), Dag->getArgName(i)));
Jim Grosbach65586fe2010-12-21 16:16:00 +00002182
Chris Lattner8cab0212008-01-05 22:25:12 +00002183 // If the operator is an intrinsic, then this is just syntactic sugar for for
Jim Grosbach65586fe2010-12-21 16:16:00 +00002184 // (intrinsic_* <number>, ..children..). Pick the right intrinsic node, and
Chris Lattner8cab0212008-01-05 22:25:12 +00002185 // convert the intrinsic name to a number.
2186 if (Operator->isSubClassOf("Intrinsic")) {
2187 const CodeGenIntrinsic &Int = getDAGPatterns().getIntrinsic(Operator);
2188 unsigned IID = getDAGPatterns().getIntrinsicID(Operator)+1;
2189
2190 // If this intrinsic returns void, it must have side-effects and thus a
2191 // chain.
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002192 if (Int.IS.RetVTs.empty())
Chris Lattner8cab0212008-01-05 22:25:12 +00002193 Operator = getDAGPatterns().get_intrinsic_void_sdnode();
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002194 else if (Int.ModRef != CodeGenIntrinsic::NoMem)
Chris Lattner8cab0212008-01-05 22:25:12 +00002195 // Has side-effects, requires chain.
2196 Operator = getDAGPatterns().get_intrinsic_w_chain_sdnode();
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002197 else // Otherwise, no chain.
Chris Lattner8cab0212008-01-05 22:25:12 +00002198 Operator = getDAGPatterns().get_intrinsic_wo_chain_sdnode();
Jim Grosbach65586fe2010-12-21 16:16:00 +00002199
David Greenee32ebf22011-07-29 19:07:07 +00002200 TreePatternNode *IIDNode = new TreePatternNode(IntInit::get(IID), 1);
Chris Lattner8cab0212008-01-05 22:25:12 +00002201 Children.insert(Children.begin(), IIDNode);
2202 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002203
Tim Northoverc807a172014-05-20 11:52:46 +00002204 if (Operator->isSubClassOf("ComplexPattern")) {
2205 for (unsigned i = 0; i < Children.size(); ++i) {
2206 TreePatternNode *Child = Children[i];
2207
2208 if (Child->getName().empty())
2209 error("All arguments to a ComplexPattern must be named");
2210
2211 // Check that the ComplexPattern uses are consistent: "(MY_PAT $a, $b)"
2212 // and "(MY_PAT $b, $a)" should not be allowed in the same pattern;
2213 // neither should "(MY_PAT_1 $a, $b)" and "(MY_PAT_2 $a, $b)".
2214 auto OperandId = std::make_pair(Operator, i);
2215 auto PrevOp = ComplexPatternOperands.find(Child->getName());
2216 if (PrevOp != ComplexPatternOperands.end()) {
2217 if (PrevOp->getValue() != OperandId)
2218 error("All ComplexPattern operands must appear consistently: "
2219 "in the same order in just one ComplexPattern instance.");
2220 } else
2221 ComplexPatternOperands[Child->getName()] = OperandId;
2222 }
2223 }
2224
Chris Lattnerf1447252010-03-19 21:37:09 +00002225 unsigned NumResults = GetNumNodeResults(Operator, CDP);
David Blaikiecf195302014-11-17 22:55:41 +00002226 TreePatternNode *Result = new TreePatternNode(Operator, Children, NumResults);
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002227 Result->setName(OpName);
Jim Grosbach65586fe2010-12-21 16:16:00 +00002228
Matthias Braun7cf3b112016-12-05 06:00:41 +00002229 if (Dag->getName()) {
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002230 assert(Result->getName().empty());
Matthias Braun7cf3b112016-12-05 06:00:41 +00002231 Result->setName(Dag->getNameStr());
Chris Lattneradf7ecf2010-03-28 06:50:34 +00002232 }
Nate Begemandbe3f772009-03-19 05:21:56 +00002233 return Result;
Chris Lattner8cab0212008-01-05 22:25:12 +00002234}
2235
Chris Lattnera787c9e2010-03-28 08:38:32 +00002236/// SimplifyTree - See if we can simplify this tree to eliminate something that
2237/// will never match in favor of something obvious that will. This is here
2238/// strictly as a convenience to target authors because it allows them to write
2239/// more type generic things and have useless type casts fold away.
2240///
2241/// This returns true if any change is made.
David Blaikiecf195302014-11-17 22:55:41 +00002242static bool SimplifyTree(TreePatternNode *&N) {
Chris Lattnera787c9e2010-03-28 08:38:32 +00002243 if (N->isLeaf())
2244 return false;
2245
2246 // If we have a bitconvert with a resolved type and if the source and
2247 // destination types are the same, then the bitconvert is useless, remove it.
2248 if (N->getOperator()->getName() == "bitconvert" &&
Chris Lattnera787c9e2010-03-28 08:38:32 +00002249 N->getExtType(0).isConcrete() &&
2250 N->getExtType(0) == N->getChild(0)->getExtType(0) &&
2251 N->getName().empty()) {
David Blaikiecf195302014-11-17 22:55:41 +00002252 N = N->getChild(0);
Chris Lattnera787c9e2010-03-28 08:38:32 +00002253 SimplifyTree(N);
2254 return true;
2255 }
2256
2257 // Walk all children.
2258 bool MadeChange = false;
2259 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
David Blaikiecf195302014-11-17 22:55:41 +00002260 TreePatternNode *Child = N->getChild(i);
Chris Lattnera787c9e2010-03-28 08:38:32 +00002261 MadeChange |= SimplifyTree(Child);
David Blaikiecf195302014-11-17 22:55:41 +00002262 N->setChild(i, Child);
Chris Lattnera787c9e2010-03-28 08:38:32 +00002263 }
2264 return MadeChange;
2265}
2266
2267
2268
Chris Lattner8cab0212008-01-05 22:25:12 +00002269/// InferAllTypes - Infer/propagate as many types throughout the expression
Jim Grosbach975c1cb2009-03-26 16:17:51 +00002270/// patterns as possible. Return true if all types are inferred, false
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00002271/// otherwise. Flags an error if a type contradiction is found.
Chris Lattnercabe0372010-03-15 06:00:16 +00002272bool TreePattern::
2273InferAllTypes(const StringMap<SmallVector<TreePatternNode*,1> > *InNamedTypes) {
2274 if (NamedNodes.empty())
2275 ComputeNamedNodes();
2276
Chris Lattner8cab0212008-01-05 22:25:12 +00002277 bool MadeChange = true;
2278 while (MadeChange) {
2279 MadeChange = false;
Craig Topper306cb122015-11-22 20:46:24 +00002280 for (TreePatternNode *Tree : Trees) {
2281 MadeChange |= Tree->ApplyTypeConstraints(*this, false);
2282 MadeChange |= SimplifyTree(Tree);
Chris Lattnera787c9e2010-03-28 08:38:32 +00002283 }
Chris Lattnercabe0372010-03-15 06:00:16 +00002284
2285 // If there are constraints on our named nodes, apply them.
Craig Topper306cb122015-11-22 20:46:24 +00002286 for (auto &Entry : NamedNodes) {
2287 SmallVectorImpl<TreePatternNode*> &Nodes = Entry.second;
Jim Grosbach65586fe2010-12-21 16:16:00 +00002288
Chris Lattnercabe0372010-03-15 06:00:16 +00002289 // If we have input named node types, propagate their types to the named
2290 // values here.
2291 if (InNamedTypes) {
Craig Topper306cb122015-11-22 20:46:24 +00002292 if (!InNamedTypes->count(Entry.getKey())) {
2293 error("Node '" + std::string(Entry.getKey()) +
Jim Grosbach37b80932014-07-09 18:55:49 +00002294 "' in output pattern but not input pattern");
2295 return true;
2296 }
Chris Lattnercabe0372010-03-15 06:00:16 +00002297
2298 const SmallVectorImpl<TreePatternNode*> &InNodes =
Craig Topper306cb122015-11-22 20:46:24 +00002299 InNamedTypes->find(Entry.getKey())->second;
Chris Lattnercabe0372010-03-15 06:00:16 +00002300
2301 // The input types should be fully resolved by now.
Craig Topper306cb122015-11-22 20:46:24 +00002302 for (TreePatternNode *Node : Nodes) {
Chris Lattnercabe0372010-03-15 06:00:16 +00002303 // If this node is a register class, and it is the root of the pattern
2304 // then we're mapping something onto an input register. We allow
2305 // changing the type of the input register in this case. This allows
2306 // us to match things like:
2307 // def : Pat<(v1i64 (bitconvert(v2i32 DPR:$src))), (v1i64 DPR:$src)>;
Craig Topper306cb122015-11-22 20:46:24 +00002308 if (Node == Trees[0] && Node->isLeaf()) {
2309 DefInit *DI = dyn_cast<DefInit>(Node->getLeafValue());
Owen Andersona84be6c2011-06-27 21:06:21 +00002310 if (DI && (DI->getDef()->isSubClassOf("RegisterClass") ||
2311 DI->getDef()->isSubClassOf("RegisterOperand")))
Chris Lattnercabe0372010-03-15 06:00:16 +00002312 continue;
2313 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002314
Craig Topper306cb122015-11-22 20:46:24 +00002315 assert(Node->getNumTypes() == 1 &&
Chris Lattnerf1447252010-03-19 21:37:09 +00002316 InNodes[0]->getNumTypes() == 1 &&
2317 "FIXME: cannot name multiple result nodes yet");
Craig Topper306cb122015-11-22 20:46:24 +00002318 MadeChange |= Node->UpdateNodeType(0, InNodes[0]->getExtType(0),
2319 *this);
Chris Lattnercabe0372010-03-15 06:00:16 +00002320 }
2321 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002322
Chris Lattnercabe0372010-03-15 06:00:16 +00002323 // If there are multiple nodes with the same name, they must all have the
2324 // same type.
Craig Topper306cb122015-11-22 20:46:24 +00002325 if (Entry.second.size() > 1) {
Chris Lattnercabe0372010-03-15 06:00:16 +00002326 for (unsigned i = 0, e = Nodes.size()-1; i != e; ++i) {
Chris Lattnerf1447252010-03-19 21:37:09 +00002327 TreePatternNode *N1 = Nodes[i], *N2 = Nodes[i+1];
Daniel Dunbard177edf2010-03-21 01:38:21 +00002328 assert(N1->getNumTypes() == 1 && N2->getNumTypes() == 1 &&
Chris Lattnerf1447252010-03-19 21:37:09 +00002329 "FIXME: cannot name multiple result nodes yet");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002330
Chris Lattnerf1447252010-03-19 21:37:09 +00002331 MadeChange |= N1->UpdateNodeType(0, N2->getExtType(0), *this);
2332 MadeChange |= N2->UpdateNodeType(0, N1->getExtType(0), *this);
Chris Lattnercabe0372010-03-15 06:00:16 +00002333 }
2334 }
2335 }
Chris Lattner8cab0212008-01-05 22:25:12 +00002336 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002337
Chris Lattner8cab0212008-01-05 22:25:12 +00002338 bool HasUnresolvedTypes = false;
Craig Topper306cb122015-11-22 20:46:24 +00002339 for (const TreePatternNode *Tree : Trees)
2340 HasUnresolvedTypes |= Tree->ContainsUnresolvedType();
Chris Lattner8cab0212008-01-05 22:25:12 +00002341 return !HasUnresolvedTypes;
2342}
2343
Daniel Dunbar38a22bf2009-07-03 00:10:29 +00002344void TreePattern::print(raw_ostream &OS) const {
Chris Lattner8cab0212008-01-05 22:25:12 +00002345 OS << getRecord()->getName();
2346 if (!Args.empty()) {
2347 OS << "(" << Args[0];
2348 for (unsigned i = 1, e = Args.size(); i != e; ++i)
2349 OS << ", " << Args[i];
2350 OS << ")";
2351 }
2352 OS << ": ";
Jim Grosbach65586fe2010-12-21 16:16:00 +00002353
Chris Lattner8cab0212008-01-05 22:25:12 +00002354 if (Trees.size() > 1)
2355 OS << "[\n";
Craig Topper306cb122015-11-22 20:46:24 +00002356 for (const TreePatternNode *Tree : Trees) {
Chris Lattner8cab0212008-01-05 22:25:12 +00002357 OS << "\t";
Craig Topper306cb122015-11-22 20:46:24 +00002358 Tree->print(OS);
Chris Lattner8cab0212008-01-05 22:25:12 +00002359 OS << "\n";
2360 }
2361
2362 if (Trees.size() > 1)
2363 OS << "]\n";
2364}
2365
Daniel Dunbar38a22bf2009-07-03 00:10:29 +00002366void TreePattern::dump() const { print(errs()); }
Chris Lattner8cab0212008-01-05 22:25:12 +00002367
2368//===----------------------------------------------------------------------===//
Chris Lattnerab3242f2008-01-06 01:10:31 +00002369// CodeGenDAGPatterns implementation
Chris Lattner8cab0212008-01-05 22:25:12 +00002370//
2371
Jim Grosbach65586fe2010-12-21 16:16:00 +00002372CodeGenDAGPatterns::CodeGenDAGPatterns(RecordKeeper &R) :
Chris Lattner77d369c2010-12-13 00:23:57 +00002373 Records(R), Target(R) {
2374
Justin Bogner92a8c612016-07-15 16:31:37 +00002375 Intrinsics = CodeGenIntrinsicTable(Records, false);
2376 TgtIntrinsics = CodeGenIntrinsicTable(Records, true);
Chris Lattner8cab0212008-01-05 22:25:12 +00002377 ParseNodeInfo();
Chris Lattnercc43e792008-01-05 22:54:53 +00002378 ParseNodeTransforms();
Chris Lattner8cab0212008-01-05 22:25:12 +00002379 ParseComplexPatterns();
Chris Lattnere7170df2008-01-05 22:43:57 +00002380 ParsePatternFragments();
Chris Lattner8cab0212008-01-05 22:25:12 +00002381 ParseDefaultOperands();
2382 ParseInstructions();
Hal Finkel2756dc12014-02-28 00:26:56 +00002383 ParsePatternFragments(/*OutFrags*/true);
Chris Lattner8cab0212008-01-05 22:25:12 +00002384 ParsePatterns();
Jim Grosbach65586fe2010-12-21 16:16:00 +00002385
Chris Lattner8cab0212008-01-05 22:25:12 +00002386 // Generate variants. For example, commutative patterns can match
2387 // multiple ways. Add them to PatternsToMatch as well.
2388 GenerateVariants();
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002389
2390 // Infer instruction flags. For example, we can detect loads,
2391 // stores, and side effects in many cases by examining an
2392 // instruction's pattern.
2393 InferInstructionFlags();
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +00002394
2395 // Verify that instruction flags match the patterns.
2396 VerifyInstructionFlags();
Chris Lattner8cab0212008-01-05 22:25:12 +00002397}
2398
Chris Lattnerab3242f2008-01-06 01:10:31 +00002399Record *CodeGenDAGPatterns::getSDNodeNamed(const std::string &Name) const {
Chris Lattner8cab0212008-01-05 22:25:12 +00002400 Record *N = Records.getDef(Name);
James Y Knighte452e272015-05-11 22:17:13 +00002401 if (!N || !N->isSubClassOf("SDNode"))
2402 PrintFatalError("Error getting SDNode '" + Name + "'!");
2403
Chris Lattner8cab0212008-01-05 22:25:12 +00002404 return N;
2405}
2406
2407// Parse all of the SDNode definitions for the target, populating SDNodes.
Chris Lattnerab3242f2008-01-06 01:10:31 +00002408void CodeGenDAGPatterns::ParseNodeInfo() {
Chris Lattner8cab0212008-01-05 22:25:12 +00002409 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
2410 while (!Nodes.empty()) {
2411 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
2412 Nodes.pop_back();
2413 }
2414
Jim Grosbach975c1cb2009-03-26 16:17:51 +00002415 // Get the builtin intrinsic nodes.
Chris Lattner8cab0212008-01-05 22:25:12 +00002416 intrinsic_void_sdnode = getSDNodeNamed("intrinsic_void");
2417 intrinsic_w_chain_sdnode = getSDNodeNamed("intrinsic_w_chain");
2418 intrinsic_wo_chain_sdnode = getSDNodeNamed("intrinsic_wo_chain");
2419}
2420
2421/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
2422/// map, and emit them to the file as functions.
Chris Lattnerab3242f2008-01-06 01:10:31 +00002423void CodeGenDAGPatterns::ParseNodeTransforms() {
Chris Lattner8cab0212008-01-05 22:25:12 +00002424 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
2425 while (!Xforms.empty()) {
2426 Record *XFormNode = Xforms.back();
2427 Record *SDNode = XFormNode->getValueAsDef("Opcode");
Jakob Stoklund Olesendd8fbf52012-01-13 03:38:34 +00002428 std::string Code = XFormNode->getValueAsString("XFormFunction");
Chris Lattnercc43e792008-01-05 22:54:53 +00002429 SDNodeXForms.insert(std::make_pair(XFormNode, NodeXForm(SDNode, Code)));
Chris Lattner8cab0212008-01-05 22:25:12 +00002430
2431 Xforms.pop_back();
2432 }
2433}
2434
Chris Lattnerab3242f2008-01-06 01:10:31 +00002435void CodeGenDAGPatterns::ParseComplexPatterns() {
Chris Lattner8cab0212008-01-05 22:25:12 +00002436 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
2437 while (!AMs.empty()) {
2438 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
2439 AMs.pop_back();
2440 }
2441}
2442
2443
2444/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
2445/// file, building up the PatternFragments map. After we've collected them all,
2446/// inline fragments together as necessary, so that there are no references left
2447/// inside a pattern fragment to a pattern fragment.
2448///
Hal Finkel2756dc12014-02-28 00:26:56 +00002449void CodeGenDAGPatterns::ParsePatternFragments(bool OutFrags) {
Chris Lattner8cab0212008-01-05 22:25:12 +00002450 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002451
Chris Lattnere7170df2008-01-05 22:43:57 +00002452 // First step, parse all of the fragments.
Craig Topper306cb122015-11-22 20:46:24 +00002453 for (Record *Frag : Fragments) {
2454 if (OutFrags != Frag->isSubClassOf("OutPatFrag"))
Hal Finkel2756dc12014-02-28 00:26:56 +00002455 continue;
2456
Craig Topper306cb122015-11-22 20:46:24 +00002457 DagInit *Tree = Frag->getValueAsDag("Fragment");
Hal Finkel2756dc12014-02-28 00:26:56 +00002458 TreePattern *P =
Craig Topper306cb122015-11-22 20:46:24 +00002459 (PatternFragments[Frag] = llvm::make_unique<TreePattern>(
2460 Frag, Tree, !Frag->isSubClassOf("OutPatFrag"),
David Blaikie3c6ca232014-11-13 21:40:02 +00002461 *this)).get();
Jim Grosbach65586fe2010-12-21 16:16:00 +00002462
Chris Lattnere7170df2008-01-05 22:43:57 +00002463 // Validate the argument list, converting it to set, to discard duplicates.
Chris Lattner8cab0212008-01-05 22:25:12 +00002464 std::vector<std::string> &Args = P->getArgList();
Chris Lattnere7170df2008-01-05 22:43:57 +00002465 std::set<std::string> OperandsSet(Args.begin(), Args.end());
Jim Grosbach65586fe2010-12-21 16:16:00 +00002466
Chris Lattnere7170df2008-01-05 22:43:57 +00002467 if (OperandsSet.count(""))
Chris Lattner8cab0212008-01-05 22:25:12 +00002468 P->error("Cannot have unnamed 'node' values in pattern fragment!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002469
Chris Lattner8cab0212008-01-05 22:25:12 +00002470 // Parse the operands list.
Craig Topper306cb122015-11-22 20:46:24 +00002471 DagInit *OpsList = Frag->getValueAsDag("Operands");
Sean Silvafb509ed2012-10-10 20:24:43 +00002472 DefInit *OpsOp = dyn_cast<DefInit>(OpsList->getOperator());
Chris Lattner8cab0212008-01-05 22:25:12 +00002473 // Special cases: ops == outs == ins. Different names are used to
Jim Grosbach975c1cb2009-03-26 16:17:51 +00002474 // improve readability.
Chris Lattner8cab0212008-01-05 22:25:12 +00002475 if (!OpsOp ||
2476 (OpsOp->getDef()->getName() != "ops" &&
2477 OpsOp->getDef()->getName() != "outs" &&
2478 OpsOp->getDef()->getName() != "ins"))
2479 P->error("Operands list should start with '(ops ... '!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002480
2481 // Copy over the arguments.
Chris Lattner8cab0212008-01-05 22:25:12 +00002482 Args.clear();
2483 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
Sean Silva88eb8dd2012-10-10 20:24:47 +00002484 if (!isa<DefInit>(OpsList->getArg(j)) ||
2485 cast<DefInit>(OpsList->getArg(j))->getDef()->getName() != "node")
Chris Lattner8cab0212008-01-05 22:25:12 +00002486 P->error("Operands list should all be 'node' values.");
2487 if (OpsList->getArgName(j).empty())
2488 P->error("Operands list should have names for each operand!");
Chris Lattnere7170df2008-01-05 22:43:57 +00002489 if (!OperandsSet.count(OpsList->getArgName(j)))
Chris Lattner8cab0212008-01-05 22:25:12 +00002490 P->error("'" + OpsList->getArgName(j) +
2491 "' does not occur in pattern or was multiply specified!");
Chris Lattnere7170df2008-01-05 22:43:57 +00002492 OperandsSet.erase(OpsList->getArgName(j));
Chris Lattner8cab0212008-01-05 22:25:12 +00002493 Args.push_back(OpsList->getArgName(j));
2494 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002495
Chris Lattnere7170df2008-01-05 22:43:57 +00002496 if (!OperandsSet.empty())
Chris Lattner8cab0212008-01-05 22:25:12 +00002497 P->error("Operands list does not contain an entry for operand '" +
Chris Lattnere7170df2008-01-05 22:43:57 +00002498 *OperandsSet.begin() + "'!");
Chris Lattner8cab0212008-01-05 22:25:12 +00002499
Chris Lattnere7170df2008-01-05 22:43:57 +00002500 // If there is a code init for this fragment, keep track of the fact that
2501 // this fragment uses it.
Chris Lattner514e2922011-04-17 21:38:24 +00002502 TreePredicateFn PredFn(P);
2503 if (!PredFn.isAlwaysTrue())
2504 P->getOnlyTree()->addPredicateFn(PredFn);
Jim Grosbach65586fe2010-12-21 16:16:00 +00002505
Chris Lattner8cab0212008-01-05 22:25:12 +00002506 // If there is a node transformation corresponding to this, keep track of
2507 // it.
Craig Topper306cb122015-11-22 20:46:24 +00002508 Record *Transform = Frag->getValueAsDef("OperandTransform");
Chris Lattner8cab0212008-01-05 22:25:12 +00002509 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
2510 P->getOnlyTree()->setTransformFn(Transform);
2511 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002512
Chris Lattner8cab0212008-01-05 22:25:12 +00002513 // Now that we've parsed all of the tree fragments, do a closure on them so
2514 // that there are not references to PatFrags left inside of them.
Craig Topper306cb122015-11-22 20:46:24 +00002515 for (Record *Frag : Fragments) {
2516 if (OutFrags != Frag->isSubClassOf("OutPatFrag"))
Hal Finkel2756dc12014-02-28 00:26:56 +00002517 continue;
2518
Craig Topper306cb122015-11-22 20:46:24 +00002519 TreePattern &ThePat = *PatternFragments[Frag];
David Blaikie3c6ca232014-11-13 21:40:02 +00002520 ThePat.InlinePatternFragments();
Jim Grosbach65586fe2010-12-21 16:16:00 +00002521
Chris Lattner8cab0212008-01-05 22:25:12 +00002522 // Infer as many types as possible. Don't worry about it if we don't infer
2523 // all of them, some may depend on the inputs of the pattern.
David Blaikie3c6ca232014-11-13 21:40:02 +00002524 ThePat.InferAllTypes();
2525 ThePat.resetError();
Jim Grosbach65586fe2010-12-21 16:16:00 +00002526
Chris Lattner8cab0212008-01-05 22:25:12 +00002527 // If debugging, print out the pattern fragment result.
David Blaikie3c6ca232014-11-13 21:40:02 +00002528 DEBUG(ThePat.dump());
Chris Lattner8cab0212008-01-05 22:25:12 +00002529 }
2530}
2531
Chris Lattnerab3242f2008-01-06 01:10:31 +00002532void CodeGenDAGPatterns::ParseDefaultOperands() {
Tom Stellardb7246a72012-09-06 14:15:52 +00002533 std::vector<Record*> DefaultOps;
2534 DefaultOps = Records.getAllDerivedDefinitions("OperandWithDefaultOps");
Chris Lattner8cab0212008-01-05 22:25:12 +00002535
2536 // Find some SDNode.
2537 assert(!SDNodes.empty() && "No SDNodes parsed?");
David Greeneaf8ee2c2011-07-29 22:43:06 +00002538 Init *SomeSDNode = DefInit::get(SDNodes.begin()->first);
Jim Grosbach65586fe2010-12-21 16:16:00 +00002539
Tom Stellardb7246a72012-09-06 14:15:52 +00002540 for (unsigned i = 0, e = DefaultOps.size(); i != e; ++i) {
2541 DagInit *DefaultInfo = DefaultOps[i]->getValueAsDag("DefaultOps");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002542
Tom Stellardb7246a72012-09-06 14:15:52 +00002543 // Clone the DefaultInfo dag node, changing the operator from 'ops' to
2544 // SomeSDnode so that we can parse this.
2545 std::vector<std::pair<Init*, std::string> > Ops;
2546 for (unsigned op = 0, e = DefaultInfo->getNumArgs(); op != e; ++op)
2547 Ops.push_back(std::make_pair(DefaultInfo->getArg(op),
2548 DefaultInfo->getArgName(op)));
Matthias Braun7cf3b112016-12-05 06:00:41 +00002549 DagInit *DI = DagInit::get(SomeSDNode, nullptr, Ops);
Jim Grosbach65586fe2010-12-21 16:16:00 +00002550
Tom Stellardb7246a72012-09-06 14:15:52 +00002551 // Create a TreePattern to parse this.
2552 TreePattern P(DefaultOps[i], DI, false, *this);
2553 assert(P.getNumTrees() == 1 && "This ctor can only produce one tree!");
Chris Lattner8cab0212008-01-05 22:25:12 +00002554
Tom Stellardb7246a72012-09-06 14:15:52 +00002555 // Copy the operands over into a DAGDefaultOperand.
2556 DAGDefaultOperand DefaultOpInfo;
Jim Grosbach65586fe2010-12-21 16:16:00 +00002557
Tom Stellardb7246a72012-09-06 14:15:52 +00002558 TreePatternNode *T = P.getTree(0);
2559 for (unsigned op = 0, e = T->getNumChildren(); op != e; ++op) {
2560 TreePatternNode *TPN = T->getChild(op);
2561 while (TPN->ApplyTypeConstraints(P, false))
2562 /* Resolve all types */;
Jim Grosbach65586fe2010-12-21 16:16:00 +00002563
Tom Stellardb7246a72012-09-06 14:15:52 +00002564 if (TPN->ContainsUnresolvedType()) {
Benjamin Kramer48e7e852014-03-29 17:17:15 +00002565 PrintFatalError("Value #" + Twine(i) + " of OperandWithDefaultOps '" +
2566 DefaultOps[i]->getName() +
2567 "' doesn't have a concrete type!");
Chris Lattner8cab0212008-01-05 22:25:12 +00002568 }
Tom Stellardb7246a72012-09-06 14:15:52 +00002569 DefaultOpInfo.DefaultOps.push_back(TPN);
Chris Lattner8cab0212008-01-05 22:25:12 +00002570 }
Tom Stellardb7246a72012-09-06 14:15:52 +00002571
2572 // Insert it into the DefaultOperands map so we can find it later.
2573 DefaultOperands[DefaultOps[i]] = DefaultOpInfo;
Chris Lattner8cab0212008-01-05 22:25:12 +00002574 }
2575}
2576
2577/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
2578/// instruction input. Return true if this is a real use.
2579static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Chris Lattner5debc332010-04-20 06:30:25 +00002580 std::map<std::string, TreePatternNode*> &InstInputs) {
Chris Lattner8cab0212008-01-05 22:25:12 +00002581 // No name -> not interesting.
2582 if (Pat->getName().empty()) {
2583 if (Pat->isLeaf()) {
Sean Silvafb509ed2012-10-10 20:24:43 +00002584 DefInit *DI = dyn_cast<DefInit>(Pat->getLeafValue());
Owen Andersona84be6c2011-06-27 21:06:21 +00002585 if (DI && (DI->getDef()->isSubClassOf("RegisterClass") ||
2586 DI->getDef()->isSubClassOf("RegisterOperand")))
Chris Lattner8cab0212008-01-05 22:25:12 +00002587 I->error("Input " + DI->getDef()->getName() + " must be named!");
Chris Lattner8cab0212008-01-05 22:25:12 +00002588 }
2589 return false;
2590 }
2591
2592 Record *Rec;
2593 if (Pat->isLeaf()) {
Sean Silvafb509ed2012-10-10 20:24:43 +00002594 DefInit *DI = dyn_cast<DefInit>(Pat->getLeafValue());
Chris Lattner8cab0212008-01-05 22:25:12 +00002595 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
2596 Rec = DI->getDef();
2597 } else {
Chris Lattner8cab0212008-01-05 22:25:12 +00002598 Rec = Pat->getOperator();
2599 }
2600
2601 // SRCVALUE nodes are ignored.
2602 if (Rec->getName() == "srcvalue")
2603 return false;
2604
2605 TreePatternNode *&Slot = InstInputs[Pat->getName()];
2606 if (!Slot) {
2607 Slot = Pat;
Chris Lattnerf66b6aa2010-02-23 05:59:10 +00002608 return true;
Chris Lattner8cab0212008-01-05 22:25:12 +00002609 }
Chris Lattnerf66b6aa2010-02-23 05:59:10 +00002610 Record *SlotRec;
2611 if (Slot->isLeaf()) {
Sean Silva88eb8dd2012-10-10 20:24:47 +00002612 SlotRec = cast<DefInit>(Slot->getLeafValue())->getDef();
Chris Lattnerf66b6aa2010-02-23 05:59:10 +00002613 } else {
2614 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
2615 SlotRec = Slot->getOperator();
2616 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002617
Chris Lattnerf66b6aa2010-02-23 05:59:10 +00002618 // Ensure that the inputs agree if we've already seen this input.
2619 if (Rec != SlotRec)
2620 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattnerf1447252010-03-19 21:37:09 +00002621 if (Slot->getExtTypes() != Pat->getExtTypes())
Chris Lattnerf66b6aa2010-02-23 05:59:10 +00002622 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattner8cab0212008-01-05 22:25:12 +00002623 return true;
2624}
2625
2626/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
2627/// part of "I", the instruction), computing the set of inputs and outputs of
2628/// the pattern. Report errors if we see anything naughty.
Chris Lattnerab3242f2008-01-06 01:10:31 +00002629void CodeGenDAGPatterns::
Chris Lattner8cab0212008-01-05 22:25:12 +00002630FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
2631 std::map<std::string, TreePatternNode*> &InstInputs,
2632 std::map<std::string, TreePatternNode*>&InstResults,
Chris Lattner8cab0212008-01-05 22:25:12 +00002633 std::vector<Record*> &InstImpResults) {
2634 if (Pat->isLeaf()) {
Chris Lattner5debc332010-04-20 06:30:25 +00002635 bool isUse = HandleUse(I, Pat, InstInputs);
Chris Lattner8cab0212008-01-05 22:25:12 +00002636 if (!isUse && Pat->getTransformFn())
2637 I->error("Cannot specify a transform function for a non-input value!");
2638 return;
Chris Lattnerf2d70992010-02-17 06:53:36 +00002639 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002640
Chris Lattnerf2d70992010-02-17 06:53:36 +00002641 if (Pat->getOperator()->getName() == "implicit") {
Chris Lattner8cab0212008-01-05 22:25:12 +00002642 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
2643 TreePatternNode *Dest = Pat->getChild(i);
2644 if (!Dest->isLeaf())
2645 I->error("implicitly defined value should be a register!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002646
Sean Silvafb509ed2012-10-10 20:24:43 +00002647 DefInit *Val = dyn_cast<DefInit>(Dest->getLeafValue());
Chris Lattner8cab0212008-01-05 22:25:12 +00002648 if (!Val || !Val->getDef()->isSubClassOf("Register"))
2649 I->error("implicitly defined value should be a register!");
2650 InstImpResults.push_back(Val->getDef());
2651 }
2652 return;
Chris Lattnerf2d70992010-02-17 06:53:36 +00002653 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002654
Chris Lattnerf2d70992010-02-17 06:53:36 +00002655 if (Pat->getOperator()->getName() != "set") {
Chris Lattner8cab0212008-01-05 22:25:12 +00002656 // If this is not a set, verify that the children nodes are not void typed,
2657 // and recurse.
2658 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Chris Lattnerf1447252010-03-19 21:37:09 +00002659 if (Pat->getChild(i)->getNumTypes() == 0)
Chris Lattner8cab0212008-01-05 22:25:12 +00002660 I->error("Cannot have void nodes inside of patterns!");
2661 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
Chris Lattner5debc332010-04-20 06:30:25 +00002662 InstImpResults);
Chris Lattner8cab0212008-01-05 22:25:12 +00002663 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002664
Chris Lattner8cab0212008-01-05 22:25:12 +00002665 // If this is a non-leaf node with no children, treat it basically as if
2666 // it were a leaf. This handles nodes like (imm).
Chris Lattner5debc332010-04-20 06:30:25 +00002667 bool isUse = HandleUse(I, Pat, InstInputs);
Jim Grosbach65586fe2010-12-21 16:16:00 +00002668
Chris Lattner8cab0212008-01-05 22:25:12 +00002669 if (!isUse && Pat->getTransformFn())
2670 I->error("Cannot specify a transform function for a non-input value!");
2671 return;
Chris Lattnerf2d70992010-02-17 06:53:36 +00002672 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002673
Chris Lattner8cab0212008-01-05 22:25:12 +00002674 // Otherwise, this is a set, validate and collect instruction results.
2675 if (Pat->getNumChildren() == 0)
2676 I->error("set requires operands!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002677
Chris Lattner8cab0212008-01-05 22:25:12 +00002678 if (Pat->getTransformFn())
2679 I->error("Cannot specify a transform function on a set node!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002680
Chris Lattner8cab0212008-01-05 22:25:12 +00002681 // Check the set destinations.
2682 unsigned NumDests = Pat->getNumChildren()-1;
2683 for (unsigned i = 0; i != NumDests; ++i) {
2684 TreePatternNode *Dest = Pat->getChild(i);
2685 if (!Dest->isLeaf())
2686 I->error("set destination should be a register!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002687
Sean Silvafb509ed2012-10-10 20:24:43 +00002688 DefInit *Val = dyn_cast<DefInit>(Dest->getLeafValue());
Michael Ilseman5be22a12014-12-12 21:48:03 +00002689 if (!Val) {
Chris Lattner8cab0212008-01-05 22:25:12 +00002690 I->error("set destination should be a register!");
Michael Ilseman5be22a12014-12-12 21:48:03 +00002691 continue;
2692 }
Chris Lattner8cab0212008-01-05 22:25:12 +00002693
2694 if (Val->getDef()->isSubClassOf("RegisterClass") ||
Jakob Stoklund Olesen04b0f912013-03-24 00:56:16 +00002695 Val->getDef()->isSubClassOf("ValueType") ||
Owen Andersona84be6c2011-06-27 21:06:21 +00002696 Val->getDef()->isSubClassOf("RegisterOperand") ||
Chris Lattner426bc7c2009-07-29 20:43:05 +00002697 Val->getDef()->isSubClassOf("PointerLikeRegClass")) {
Chris Lattner8cab0212008-01-05 22:25:12 +00002698 if (Dest->getName().empty())
2699 I->error("set destination must have a name!");
2700 if (InstResults.count(Dest->getName()))
2701 I->error("cannot set '" + Dest->getName() +"' multiple times");
2702 InstResults[Dest->getName()] = Dest;
2703 } else if (Val->getDef()->isSubClassOf("Register")) {
2704 InstImpResults.push_back(Val->getDef());
2705 } else {
2706 I->error("set destination should be a register!");
2707 }
2708 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00002709
Chris Lattner8cab0212008-01-05 22:25:12 +00002710 // Verify and collect info from the computation.
2711 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests),
Chris Lattner5debc332010-04-20 06:30:25 +00002712 InstInputs, InstResults, InstImpResults);
Chris Lattner8cab0212008-01-05 22:25:12 +00002713}
2714
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002715//===----------------------------------------------------------------------===//
2716// Instruction Analysis
2717//===----------------------------------------------------------------------===//
2718
2719class InstAnalyzer {
2720 const CodeGenDAGPatterns &CDP;
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002721public:
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002722 bool hasSideEffects;
2723 bool mayStore;
2724 bool mayLoad;
2725 bool isBitcast;
2726 bool isVariadic;
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002727
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002728 InstAnalyzer(const CodeGenDAGPatterns &cdp)
2729 : CDP(cdp), hasSideEffects(false), mayStore(false), mayLoad(false),
2730 isBitcast(false), isVariadic(false) {}
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002731
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002732 void Analyze(const TreePattern *Pat) {
2733 // Assume only the first tree is the pattern. The others are clobber nodes.
2734 AnalyzeNode(Pat->getTree(0));
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002735 }
2736
Jakob Stoklund Olesenc2272df2012-08-24 22:46:53 +00002737 void Analyze(const PatternToMatch *Pat) {
2738 AnalyzeNode(Pat->getSrcPattern());
2739 }
2740
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002741private:
Evan Cheng880e299d2011-03-15 05:09:26 +00002742 bool IsNodeBitcast(const TreePatternNode *N) const {
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002743 if (hasSideEffects || mayLoad || mayStore || isVariadic)
Evan Cheng880e299d2011-03-15 05:09:26 +00002744 return false;
2745
2746 if (N->getNumChildren() != 2)
2747 return false;
2748
2749 const TreePatternNode *N0 = N->getChild(0);
Sean Silva88eb8dd2012-10-10 20:24:47 +00002750 if (!N0->isLeaf() || !isa<DefInit>(N0->getLeafValue()))
Evan Cheng880e299d2011-03-15 05:09:26 +00002751 return false;
2752
2753 const TreePatternNode *N1 = N->getChild(1);
2754 if (N1->isLeaf())
2755 return false;
2756 if (N1->getNumChildren() != 1 || !N1->getChild(0)->isLeaf())
2757 return false;
2758
2759 const SDNodeInfo &OpInfo = CDP.getSDNodeInfo(N1->getOperator());
2760 if (OpInfo.getNumResults() != 1 || OpInfo.getNumOperands() != 1)
2761 return false;
2762 return OpInfo.getEnumName() == "ISD::BITCAST";
2763 }
2764
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +00002765public:
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002766 void AnalyzeNode(const TreePatternNode *N) {
2767 if (N->isLeaf()) {
Sean Silvafb509ed2012-10-10 20:24:43 +00002768 if (DefInit *DI = dyn_cast<DefInit>(N->getLeafValue())) {
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002769 Record *LeafRec = DI->getDef();
2770 // Handle ComplexPattern leaves.
2771 if (LeafRec->isSubClassOf("ComplexPattern")) {
2772 const ComplexPattern &CP = CDP.getComplexPattern(LeafRec);
2773 if (CP.hasProperty(SDNPMayStore)) mayStore = true;
2774 if (CP.hasProperty(SDNPMayLoad)) mayLoad = true;
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002775 if (CP.hasProperty(SDNPSideEffect)) hasSideEffects = true;
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002776 }
2777 }
2778 return;
2779 }
2780
2781 // Analyze children.
2782 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
2783 AnalyzeNode(N->getChild(i));
2784
2785 // Ignore set nodes, which are not SDNodes.
Evan Cheng880e299d2011-03-15 05:09:26 +00002786 if (N->getOperator()->getName() == "set") {
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002787 isBitcast = IsNodeBitcast(N);
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002788 return;
Evan Cheng880e299d2011-03-15 05:09:26 +00002789 }
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002790
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002791 // Notice properties of the node.
Tim Northoverc807a172014-05-20 11:52:46 +00002792 if (N->NodeHasProperty(SDNPMayStore, CDP)) mayStore = true;
2793 if (N->NodeHasProperty(SDNPMayLoad, CDP)) mayLoad = true;
2794 if (N->NodeHasProperty(SDNPSideEffect, CDP)) hasSideEffects = true;
2795 if (N->NodeHasProperty(SDNPVariadic, CDP)) isVariadic = true;
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002796
2797 if (const CodeGenIntrinsic *IntInfo = N->getIntrinsicInfo(CDP)) {
2798 // If this is an intrinsic, analyze it.
Nicolai Haehnleb48275f2016-04-19 21:58:33 +00002799 if (IntInfo->ModRef & CodeGenIntrinsic::MR_Ref)
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002800 mayLoad = true;// These may load memory.
2801
Nicolai Haehnleb48275f2016-04-19 21:58:33 +00002802 if (IntInfo->ModRef & CodeGenIntrinsic::MR_Mod)
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002803 mayStore = true;// Intrinsics that can write to memory are 'mayStore'.
2804
Dan Gohmanddb2d652010-08-05 23:36:21 +00002805 if (IntInfo->ModRef >= CodeGenIntrinsic::ReadWriteMem)
Nicolai Haehnleb48275f2016-04-19 21:58:33 +00002806 // ReadWriteMem intrinsics can have other strange effects.
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002807 hasSideEffects = true;
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002808 }
2809 }
2810
2811};
2812
Jakob Stoklund Olesen8a276c22012-08-24 17:08:41 +00002813static bool InferFromPattern(CodeGenInstruction &InstInfo,
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002814 const InstAnalyzer &PatInfo,
2815 Record *PatDef) {
Jakob Stoklund Olesen8a276c22012-08-24 17:08:41 +00002816 bool Error = false;
2817
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002818 // Remember where InstInfo got its flags.
2819 if (InstInfo.hasUndefFlags())
2820 InstInfo.InferredFrom = PatDef;
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002821
Jakob Stoklund Olesen8a276c22012-08-24 17:08:41 +00002822 // Check explicitly set flags for consistency.
2823 if (InstInfo.hasSideEffects != PatInfo.hasSideEffects &&
2824 !InstInfo.hasSideEffects_Unset) {
2825 // Allow explicitly setting hasSideEffects = 1 on instructions, even when
2826 // the pattern has no side effects. That could be useful for div/rem
2827 // instructions that may trap.
2828 if (!InstInfo.hasSideEffects) {
2829 Error = true;
2830 PrintError(PatDef->getLoc(), "Pattern doesn't match hasSideEffects = " +
2831 Twine(InstInfo.hasSideEffects));
2832 }
2833 }
2834
2835 if (InstInfo.mayStore != PatInfo.mayStore && !InstInfo.mayStore_Unset) {
2836 Error = true;
2837 PrintError(PatDef->getLoc(), "Pattern doesn't match mayStore = " +
2838 Twine(InstInfo.mayStore));
2839 }
2840
2841 if (InstInfo.mayLoad != PatInfo.mayLoad && !InstInfo.mayLoad_Unset) {
2842 // Allow explicitly setting mayLoad = 1, even when the pattern has no loads.
Bruce Mitchenere9ffb452015-09-12 01:17:08 +00002843 // Some targets translate immediates to loads.
Jakob Stoklund Olesen8a276c22012-08-24 17:08:41 +00002844 if (!InstInfo.mayLoad) {
2845 Error = true;
2846 PrintError(PatDef->getLoc(), "Pattern doesn't match mayLoad = " +
2847 Twine(InstInfo.mayLoad));
2848 }
2849 }
2850
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002851 // Transfer inferred flags.
2852 InstInfo.hasSideEffects |= PatInfo.hasSideEffects;
2853 InstInfo.mayStore |= PatInfo.mayStore;
2854 InstInfo.mayLoad |= PatInfo.mayLoad;
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002855
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00002856 // These flags are silently added without any verification.
2857 InstInfo.isBitcast |= PatInfo.isBitcast;
Jakob Stoklund Olesenf5dc1bc2012-08-24 21:08:09 +00002858
2859 // Don't infer isVariadic. This flag means something different on SDNodes and
2860 // instructions. For example, a CALL SDNode is variadic because it has the
2861 // call arguments as operands, but a CALL instruction is not variadic - it
2862 // has argument registers as implicit, not explicit uses.
Jakob Stoklund Olesen8a276c22012-08-24 17:08:41 +00002863
2864 return Error;
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00002865}
2866
Jim Grosbach514410b2012-07-17 00:47:06 +00002867/// hasNullFragReference - Return true if the DAG has any reference to the
2868/// null_frag operator.
2869static bool hasNullFragReference(DagInit *DI) {
Sean Silvafb509ed2012-10-10 20:24:43 +00002870 DefInit *OpDef = dyn_cast<DefInit>(DI->getOperator());
Jim Grosbach514410b2012-07-17 00:47:06 +00002871 if (!OpDef) return false;
2872 Record *Operator = OpDef->getDef();
2873
2874 // If this is the null fragment, return true.
2875 if (Operator->getName() == "null_frag") return true;
2876 // If any of the arguments reference the null fragment, return true.
2877 for (unsigned i = 0, e = DI->getNumArgs(); i != e; ++i) {
Sean Silvafb509ed2012-10-10 20:24:43 +00002878 DagInit *Arg = dyn_cast<DagInit>(DI->getArg(i));
Jim Grosbach514410b2012-07-17 00:47:06 +00002879 if (Arg && hasNullFragReference(Arg))
2880 return true;
2881 }
2882
2883 return false;
2884}
2885
2886/// hasNullFragReference - Return true if any DAG in the list references
2887/// the null_frag operator.
2888static bool hasNullFragReference(ListInit *LI) {
Craig Topperef0578a2015-06-02 04:15:51 +00002889 for (Init *I : LI->getValues()) {
2890 DagInit *DI = dyn_cast<DagInit>(I);
Jim Grosbach514410b2012-07-17 00:47:06 +00002891 assert(DI && "non-dag in an instruction Pattern list?!");
2892 if (hasNullFragReference(DI))
2893 return true;
2894 }
2895 return false;
2896}
2897
Jakob Stoklund Olesenc2272df2012-08-24 22:46:53 +00002898/// Get all the instructions in a tree.
2899static void
2900getInstructionsInTree(TreePatternNode *Tree, SmallVectorImpl<Record*> &Instrs) {
2901 if (Tree->isLeaf())
2902 return;
2903 if (Tree->getOperator()->isSubClassOf("Instruction"))
2904 Instrs.push_back(Tree->getOperator());
2905 for (unsigned i = 0, e = Tree->getNumChildren(); i != e; ++i)
2906 getInstructionsInTree(Tree->getChild(i), Instrs);
2907}
2908
Jakob Stoklund Olesen04b0f912013-03-24 00:56:16 +00002909/// Check the class of a pattern leaf node against the instruction operand it
2910/// represents.
2911static bool checkOperandClass(CGIOperandList::OperandInfo &OI,
2912 Record *Leaf) {
2913 if (OI.Rec == Leaf)
2914 return true;
2915
2916 // Allow direct value types to be used in instruction set patterns.
2917 // The type will be checked later.
2918 if (Leaf->isSubClassOf("ValueType"))
2919 return true;
2920
2921 // Patterns can also be ComplexPattern instances.
2922 if (Leaf->isSubClassOf("ComplexPattern"))
2923 return true;
2924
2925 return false;
2926}
2927
Ahmed Bougacha14107512013-10-28 18:07:21 +00002928const DAGInstruction &CodeGenDAGPatterns::parseInstructionPattern(
2929 CodeGenInstruction &CGI, ListInit *Pat, DAGInstMap &DAGInsts) {
Jim Grosbach65586fe2010-12-21 16:16:00 +00002930
Craig Topper0d1fb902015-03-10 03:25:04 +00002931 assert(!DAGInsts.count(CGI.TheDef) && "Instruction already parsed!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002932
Craig Topper0d1fb902015-03-10 03:25:04 +00002933 // Parse the instruction.
2934 TreePattern *I = new TreePattern(CGI.TheDef, Pat, true, *this);
2935 // Inline pattern fragments into it.
2936 I->InlinePatternFragments();
Jim Grosbach65586fe2010-12-21 16:16:00 +00002937
Craig Topper0d1fb902015-03-10 03:25:04 +00002938 // Infer as many types as possible. If we cannot infer all of them, we can
2939 // never do anything with this instruction pattern: report it to the user.
2940 if (!I->InferAllTypes())
2941 I->error("Could not infer all types in pattern!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00002942
Craig Topper0d1fb902015-03-10 03:25:04 +00002943 // InstInputs - Keep track of all of the inputs of the instruction, along
2944 // with the record they are declared as.
2945 std::map<std::string, TreePatternNode*> InstInputs;
Jim Grosbach65586fe2010-12-21 16:16:00 +00002946
Craig Topper0d1fb902015-03-10 03:25:04 +00002947 // InstResults - Keep track of all the virtual registers that are 'set'
2948 // in the instruction, including what reg class they are.
2949 std::map<std::string, TreePatternNode*> InstResults;
Chris Lattner8cab0212008-01-05 22:25:12 +00002950
Craig Topper0d1fb902015-03-10 03:25:04 +00002951 std::vector<Record*> InstImpResults;
Jim Grosbach65586fe2010-12-21 16:16:00 +00002952
Craig Topper0d1fb902015-03-10 03:25:04 +00002953 // Verify that the top-level forms in the instruction are of void type, and
2954 // fill in the InstResults map.
2955 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
2956 TreePatternNode *Pat = I->getTree(j);
Nicolai Haehnle152c18e2016-04-19 21:58:10 +00002957 if (Pat->getNumTypes() != 0) {
2958 std::string Types;
2959 for (unsigned k = 0, ke = Pat->getNumTypes(); k != ke; ++k) {
2960 if (k > 0)
2961 Types += ", ";
2962 Types += Pat->getExtType(k).getName();
2963 }
Craig Topper0d1fb902015-03-10 03:25:04 +00002964 I->error("Top-level forms in instruction pattern should have"
Nicolai Haehnle152c18e2016-04-19 21:58:10 +00002965 " void types, has types " + Types);
2966 }
Chris Lattner8cab0212008-01-05 22:25:12 +00002967
Craig Topper0d1fb902015-03-10 03:25:04 +00002968 // Find inputs and outputs, and verify the structure of the uses/defs.
2969 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
2970 InstImpResults);
Ahmed Bougacha14107512013-10-28 18:07:21 +00002971 }
2972
Craig Topper0d1fb902015-03-10 03:25:04 +00002973 // Now that we have inputs and outputs of the pattern, inspect the operands
2974 // list for the instruction. This determines the order that operands are
2975 // added to the machine instruction the node corresponds to.
2976 unsigned NumResults = InstResults.size();
2977
2978 // Parse the operands list from the (ops) list, validating it.
2979 assert(I->getArgList().empty() && "Args list should still be empty here!");
2980
2981 // Check that all of the results occur first in the list.
2982 std::vector<Record*> Results;
Craig Topper3a8eb892015-03-20 05:09:06 +00002983 SmallVector<TreePatternNode *, 2> ResNodes;
Craig Topper0d1fb902015-03-10 03:25:04 +00002984 for (unsigned i = 0; i != NumResults; ++i) {
2985 if (i == CGI.Operands.size())
2986 I->error("'" + InstResults.begin()->first +
2987 "' set but does not appear in operand list!");
2988 const std::string &OpName = CGI.Operands[i].Name;
2989
2990 // Check that it exists in InstResults.
2991 TreePatternNode *RNode = InstResults[OpName];
2992 if (!RNode)
2993 I->error("Operand $" + OpName + " does not exist in operand list!");
2994
Craig Topper3a8eb892015-03-20 05:09:06 +00002995 ResNodes.push_back(RNode);
2996
Craig Topper0d1fb902015-03-10 03:25:04 +00002997 Record *R = cast<DefInit>(RNode->getLeafValue())->getDef();
2998 if (!R)
2999 I->error("Operand $" + OpName + " should be a set destination: all "
3000 "outputs must occur before inputs in operand list!");
3001
3002 if (!checkOperandClass(CGI.Operands[i], R))
3003 I->error("Operand $" + OpName + " class mismatch!");
3004
3005 // Remember the return type.
3006 Results.push_back(CGI.Operands[i].Rec);
3007
3008 // Okay, this one checks out.
3009 InstResults.erase(OpName);
3010 }
3011
3012 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
3013 // the copy while we're checking the inputs.
3014 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
3015
3016 std::vector<TreePatternNode*> ResultNodeOperands;
3017 std::vector<Record*> Operands;
3018 for (unsigned i = NumResults, e = CGI.Operands.size(); i != e; ++i) {
3019 CGIOperandList::OperandInfo &Op = CGI.Operands[i];
3020 const std::string &OpName = Op.Name;
3021 if (OpName.empty())
3022 I->error("Operand #" + utostr(i) + " in operands list has no name!");
3023
3024 if (!InstInputsCheck.count(OpName)) {
3025 // If this is an operand with a DefaultOps set filled in, we can ignore
3026 // this. When we codegen it, we will do so as always executed.
3027 if (Op.Rec->isSubClassOf("OperandWithDefaultOps")) {
3028 // Does it have a non-empty DefaultOps field? If so, ignore this
3029 // operand.
3030 if (!getDefaultOperand(Op.Rec).DefaultOps.empty())
3031 continue;
3032 }
3033 I->error("Operand $" + OpName +
3034 " does not appear in the instruction pattern");
3035 }
3036 TreePatternNode *InVal = InstInputsCheck[OpName];
3037 InstInputsCheck.erase(OpName); // It occurred, remove from map.
3038
3039 if (InVal->isLeaf() && isa<DefInit>(InVal->getLeafValue())) {
3040 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
3041 if (!checkOperandClass(Op, InRec))
3042 I->error("Operand $" + OpName + "'s register class disagrees"
3043 " between the operand and pattern");
3044 }
3045 Operands.push_back(Op.Rec);
3046
3047 // Construct the result for the dest-pattern operand list.
3048 TreePatternNode *OpNode = InVal->clone();
3049
3050 // No predicate is useful on the result.
3051 OpNode->clearPredicateFns();
3052
3053 // Promote the xform function to be an explicit node if set.
3054 if (Record *Xform = OpNode->getTransformFn()) {
3055 OpNode->setTransformFn(nullptr);
3056 std::vector<TreePatternNode*> Children;
3057 Children.push_back(OpNode);
3058 OpNode = new TreePatternNode(Xform, Children, OpNode->getNumTypes());
3059 }
3060
3061 ResultNodeOperands.push_back(OpNode);
3062 }
3063
3064 if (!InstInputsCheck.empty())
3065 I->error("Input operand $" + InstInputsCheck.begin()->first +
3066 " occurs in pattern but not in operands list!");
3067
3068 TreePatternNode *ResultPattern =
3069 new TreePatternNode(I->getRecord(), ResultNodeOperands,
3070 GetNumNodeResults(I->getRecord(), *this));
Craig Topper3a8eb892015-03-20 05:09:06 +00003071 // Copy fully inferred output node types to instruction result pattern.
3072 for (unsigned i = 0; i != NumResults; ++i) {
3073 assert(ResNodes[i]->getNumTypes() == 1 && "FIXME: Unhandled");
3074 ResultPattern->setType(i, ResNodes[i]->getExtType(0));
3075 }
Craig Topper0d1fb902015-03-10 03:25:04 +00003076
3077 // Create and insert the instruction.
3078 // FIXME: InstImpResults should not be part of DAGInstruction.
3079 DAGInstruction TheInst(I, Results, Operands, InstImpResults);
3080 DAGInsts.insert(std::make_pair(I->getRecord(), TheInst));
3081
3082 // Use a temporary tree pattern to infer all types and make sure that the
3083 // constructed result is correct. This depends on the instruction already
3084 // being inserted into the DAGInsts map.
3085 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
3086 Temp.InferAllTypes(&I->getNamedNodesMap());
3087
3088 DAGInstruction &TheInsertedInst = DAGInsts.find(I->getRecord())->second;
3089 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
3090
3091 return TheInsertedInst;
3092}
3093
Ahmed Bougacha14107512013-10-28 18:07:21 +00003094/// ParseInstructions - Parse all of the instructions, inlining and resolving
3095/// any fragments involved. This populates the Instructions list with fully
3096/// resolved instructions.
3097void CodeGenDAGPatterns::ParseInstructions() {
3098 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
3099
Craig Topper306cb122015-11-22 20:46:24 +00003100 for (Record *Instr : Instrs) {
Craig Topper24064772014-04-15 07:20:03 +00003101 ListInit *LI = nullptr;
Ahmed Bougacha14107512013-10-28 18:07:21 +00003102
Craig Topper306cb122015-11-22 20:46:24 +00003103 if (isa<ListInit>(Instr->getValueInit("Pattern")))
3104 LI = Instr->getValueAsListInit("Pattern");
Ahmed Bougacha14107512013-10-28 18:07:21 +00003105
3106 // If there is no pattern, only collect minimal information about the
3107 // instruction for its operand list. We have to assume that there is one
3108 // result, as we have no detailed info. A pattern which references the
3109 // null_frag operator is as-if no pattern were specified. Normally this
3110 // is from a multiclass expansion w/ a SDPatternOperator passed in as
3111 // null_frag.
Craig Topperec9072d2015-05-14 05:53:53 +00003112 if (!LI || LI->empty() || hasNullFragReference(LI)) {
Ahmed Bougacha14107512013-10-28 18:07:21 +00003113 std::vector<Record*> Results;
3114 std::vector<Record*> Operands;
3115
Craig Topper306cb122015-11-22 20:46:24 +00003116 CodeGenInstruction &InstInfo = Target.getInstruction(Instr);
Ahmed Bougacha14107512013-10-28 18:07:21 +00003117
3118 if (InstInfo.Operands.size() != 0) {
Craig Topper3a8eb892015-03-20 05:09:06 +00003119 for (unsigned j = 0, e = InstInfo.Operands.NumDefs; j < e; ++j)
3120 Results.push_back(InstInfo.Operands[j].Rec);
Ahmed Bougacha14107512013-10-28 18:07:21 +00003121
Craig Topper3a8eb892015-03-20 05:09:06 +00003122 // The rest are inputs.
3123 for (unsigned j = InstInfo.Operands.NumDefs,
3124 e = InstInfo.Operands.size(); j < e; ++j)
3125 Operands.push_back(InstInfo.Operands[j].Rec);
Ahmed Bougacha14107512013-10-28 18:07:21 +00003126 }
3127
3128 // Create and insert the instruction.
3129 std::vector<Record*> ImpResults;
Craig Topper306cb122015-11-22 20:46:24 +00003130 Instructions.insert(std::make_pair(Instr,
Craig Topper24064772014-04-15 07:20:03 +00003131 DAGInstruction(nullptr, Results, Operands, ImpResults)));
Ahmed Bougacha14107512013-10-28 18:07:21 +00003132 continue; // no pattern.
3133 }
3134
Craig Topper306cb122015-11-22 20:46:24 +00003135 CodeGenInstruction &CGI = Target.getInstruction(Instr);
Ahmed Bougacha14107512013-10-28 18:07:21 +00003136 const DAGInstruction &DI = parseInstructionPattern(CGI, LI, Instructions);
3137
Ahmed Bougachaa70ecdc2013-10-28 18:19:04 +00003138 (void)DI;
Ahmed Bougacha14107512013-10-28 18:07:21 +00003139 DEBUG(DI.getPattern()->dump());
Chris Lattner8cab0212008-01-05 22:25:12 +00003140 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00003141
Chris Lattner8cab0212008-01-05 22:25:12 +00003142 // If we can, convert the instructions to be patterns that are matched!
Craig Topper306cb122015-11-22 20:46:24 +00003143 for (auto &Entry : Instructions) {
3144 DAGInstruction &TheInst = Entry.second;
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00003145 TreePattern *I = TheInst.getPattern();
Craig Topper24064772014-04-15 07:20:03 +00003146 if (!I) continue; // No pattern.
Chris Lattner8cab0212008-01-05 22:25:12 +00003147
3148 // FIXME: Assume only the first tree is the pattern. The others are clobber
3149 // nodes.
3150 TreePatternNode *Pattern = I->getTree(0);
3151 TreePatternNode *SrcPattern;
3152 if (Pattern->getOperator()->getName() == "set") {
3153 SrcPattern = Pattern->getChild(Pattern->getNumChildren()-1)->clone();
3154 } else{
3155 // Not a set (store or something?)
3156 SrcPattern = Pattern;
3157 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00003158
Craig Topper306cb122015-11-22 20:46:24 +00003159 Record *Instr = Entry.first;
Chris Lattner0c0baa92010-02-23 06:16:51 +00003160 AddPatternToMatch(I,
Jim Grosbachfb116ae2010-12-07 23:05:49 +00003161 PatternToMatch(Instr,
3162 Instr->getValueAsListInit("Predicates"),
Chris Lattner94d3b0a2010-02-23 06:35:45 +00003163 SrcPattern,
3164 TheInst.getResultPattern(),
Chris Lattner0c0baa92010-02-23 06:16:51 +00003165 TheInst.getImpResults(),
Chris Lattnerd39f75b2010-03-01 22:09:11 +00003166 Instr->getValueAsInt("AddedComplexity"),
3167 Instr->getID()));
Chris Lattner8cab0212008-01-05 22:25:12 +00003168 }
3169}
3170
Chris Lattnera7722b62010-02-23 06:55:24 +00003171
3172typedef std::pair<const TreePatternNode*, unsigned> NameRecord;
3173
Jim Grosbach65586fe2010-12-21 16:16:00 +00003174static void FindNames(const TreePatternNode *P,
Chris Lattner5b0e2492010-02-23 07:22:28 +00003175 std::map<std::string, NameRecord> &Names,
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00003176 TreePattern *PatternTop) {
Chris Lattnera7722b62010-02-23 06:55:24 +00003177 if (!P->getName().empty()) {
3178 NameRecord &Rec = Names[P->getName()];
3179 // If this is the first instance of the name, remember the node.
3180 if (Rec.second++ == 0)
3181 Rec.first = P;
Chris Lattnerf1447252010-03-19 21:37:09 +00003182 else if (Rec.first->getExtTypes() != P->getExtTypes())
Chris Lattner5b0e2492010-02-23 07:22:28 +00003183 PatternTop->error("repetition of value: $" + P->getName() +
3184 " where different uses have different types!");
Chris Lattnera7722b62010-02-23 06:55:24 +00003185 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00003186
Chris Lattner94d3b0a2010-02-23 06:35:45 +00003187 if (!P->isLeaf()) {
3188 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
Chris Lattner5b0e2492010-02-23 07:22:28 +00003189 FindNames(P->getChild(i), Names, PatternTop);
Chris Lattner94d3b0a2010-02-23 06:35:45 +00003190 }
3191}
3192
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00003193void CodeGenDAGPatterns::AddPatternToMatch(TreePattern *Pattern,
Chris Lattner0c0baa92010-02-23 06:16:51 +00003194 const PatternToMatch &PTM) {
Chris Lattner94d3b0a2010-02-23 06:35:45 +00003195 // Do some sanity checking on the pattern we're about to match.
Chris Lattner0c0baa92010-02-23 06:16:51 +00003196 std::string Reason;
Owen Andersondee65832012-09-19 22:15:06 +00003197 if (!PTM.getSrcPattern()->canPatternMatch(Reason, *this)) {
3198 PrintWarning(Pattern->getRecord()->getLoc(),
3199 Twine("Pattern can never match: ") + Reason);
3200 return;
3201 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00003202
Chris Lattner1e634e32010-03-01 22:29:19 +00003203 // If the source pattern's root is a complex pattern, that complex pattern
3204 // must specify the nodes it can potentially match.
3205 if (const ComplexPattern *CP =
3206 PTM.getSrcPattern()->getComplexPatternInfo(*this))
3207 if (CP->getRootNodes().empty())
3208 Pattern->error("ComplexPattern at root must specify list of opcodes it"
3209 " could match");
Jim Grosbach65586fe2010-12-21 16:16:00 +00003210
3211
Chris Lattner94d3b0a2010-02-23 06:35:45 +00003212 // Find all of the named values in the input and output, ensure they have the
3213 // same type.
Chris Lattnera7722b62010-02-23 06:55:24 +00003214 std::map<std::string, NameRecord> SrcNames, DstNames;
Chris Lattner5b0e2492010-02-23 07:22:28 +00003215 FindNames(PTM.getSrcPattern(), SrcNames, Pattern);
3216 FindNames(PTM.getDstPattern(), DstNames, Pattern);
Chris Lattner94d3b0a2010-02-23 06:35:45 +00003217
3218 // Scan all of the named values in the destination pattern, rejecting them if
3219 // they don't exist in the input pattern.
Craig Topper306cb122015-11-22 20:46:24 +00003220 for (const auto &Entry : DstNames) {
3221 if (SrcNames[Entry.first].first == nullptr)
Chris Lattner94d3b0a2010-02-23 06:35:45 +00003222 Pattern->error("Pattern has input without matching name in output: $" +
Craig Topper306cb122015-11-22 20:46:24 +00003223 Entry.first);
Chris Lattner4b9225b2010-02-23 07:50:58 +00003224 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00003225
Chris Lattnera7722b62010-02-23 06:55:24 +00003226 // Scan all of the named values in the source pattern, rejecting them if the
3227 // name isn't used in the dest, and isn't used to tie two values together.
Craig Topper306cb122015-11-22 20:46:24 +00003228 for (const auto &Entry : SrcNames)
3229 if (DstNames[Entry.first].first == nullptr &&
3230 SrcNames[Entry.first].second == 1)
3231 Pattern->error("Pattern has dead named input: $" + Entry.first);
Jim Grosbach65586fe2010-12-21 16:16:00 +00003232
Chris Lattner0c0baa92010-02-23 06:16:51 +00003233 PatternsToMatch.push_back(PTM);
3234}
3235
3236
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00003237
3238void CodeGenDAGPatterns::InferInstructionFlags() {
Craig Topper28851b62016-02-01 01:33:42 +00003239 ArrayRef<const CodeGenInstruction*> Instructions =
Chris Lattner918be522010-03-19 00:34:35 +00003240 Target.getInstructionsByEnumValue();
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003241
3242 // First try to infer flags from the primary instruction pattern, if any.
3243 SmallVector<CodeGenInstruction*, 8> Revisit;
Jakob Stoklund Olesen8a276c22012-08-24 17:08:41 +00003244 unsigned Errors = 0;
Chris Lattner70eb8972010-03-19 00:18:23 +00003245 for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
3246 CodeGenInstruction &InstInfo =
3247 const_cast<CodeGenInstruction &>(*Instructions[i]);
Jakob Stoklund Olesend9444d42011-10-14 01:00:49 +00003248
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003249 // Get the primary instruction pattern.
3250 const TreePattern *Pattern = getInstruction(InstInfo.TheDef).getPattern();
3251 if (!Pattern) {
3252 if (InstInfo.hasUndefFlags())
3253 Revisit.push_back(&InstInfo);
3254 continue;
3255 }
3256 InstAnalyzer PatInfo(*this);
3257 PatInfo.Analyze(Pattern);
Jakob Stoklund Olesen8a276c22012-08-24 17:08:41 +00003258 Errors += InferFromPattern(InstInfo, PatInfo, InstInfo.TheDef);
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003259 }
3260
Jakob Stoklund Olesenc2272df2012-08-24 22:46:53 +00003261 // Second, look for single-instruction patterns defined outside the
3262 // instruction.
3263 for (ptm_iterator I = ptm_begin(), E = ptm_end(); I != E; ++I) {
3264 const PatternToMatch &PTM = *I;
3265
3266 // We can only infer from single-instruction patterns, otherwise we won't
3267 // know which instruction should get the flags.
3268 SmallVector<Record*, 8> PatInstrs;
3269 getInstructionsInTree(PTM.getDstPattern(), PatInstrs);
3270 if (PatInstrs.size() != 1)
3271 continue;
3272
3273 // Get the single instruction.
3274 CodeGenInstruction &InstInfo = Target.getInstruction(PatInstrs.front());
3275
3276 // Only infer properties from the first pattern. We'll verify the others.
3277 if (InstInfo.InferredFrom)
3278 continue;
3279
3280 InstAnalyzer PatInfo(*this);
3281 PatInfo.Analyze(&PTM);
3282 Errors += InferFromPattern(InstInfo, PatInfo, PTM.getSrcRecord());
3283 }
3284
Jakob Stoklund Olesen8a276c22012-08-24 17:08:41 +00003285 if (Errors)
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00003286 PrintFatalError("pattern conflicts");
Jakob Stoklund Olesen8a276c22012-08-24 17:08:41 +00003287
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003288 // Revisit instructions with undefined flags and no pattern.
3289 if (Target.guessInstructionProperties()) {
Craig Topper306cb122015-11-22 20:46:24 +00003290 for (CodeGenInstruction *InstInfo : Revisit) {
3291 if (InstInfo->InferredFrom)
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003292 continue;
3293 // The mayLoad and mayStore flags default to false.
3294 // Conservatively assume hasSideEffects if it wasn't explicit.
Craig Topper306cb122015-11-22 20:46:24 +00003295 if (InstInfo->hasSideEffects_Unset)
3296 InstInfo->hasSideEffects = true;
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003297 }
3298 return;
3299 }
3300
3301 // Complain about any flags that are still undefined.
Craig Topper306cb122015-11-22 20:46:24 +00003302 for (CodeGenInstruction *InstInfo : Revisit) {
3303 if (InstInfo->InferredFrom)
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003304 continue;
Craig Topper306cb122015-11-22 20:46:24 +00003305 if (InstInfo->hasSideEffects_Unset)
3306 PrintError(InstInfo->TheDef->getLoc(),
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003307 "Can't infer hasSideEffects from patterns");
Craig Topper306cb122015-11-22 20:46:24 +00003308 if (InstInfo->mayStore_Unset)
3309 PrintError(InstInfo->TheDef->getLoc(),
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003310 "Can't infer mayStore from patterns");
Craig Topper306cb122015-11-22 20:46:24 +00003311 if (InstInfo->mayLoad_Unset)
3312 PrintError(InstInfo->TheDef->getLoc(),
Jakob Stoklund Olesen94ed4d42012-08-24 00:31:16 +00003313 "Can't infer mayLoad from patterns");
Dan Gohmanfc4ad7de2008-04-03 00:02:49 +00003314 }
3315}
3316
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +00003317
3318/// Verify instruction flags against pattern node properties.
3319void CodeGenDAGPatterns::VerifyInstructionFlags() {
3320 unsigned Errors = 0;
3321 for (ptm_iterator I = ptm_begin(), E = ptm_end(); I != E; ++I) {
3322 const PatternToMatch &PTM = *I;
3323 SmallVector<Record*, 8> Instrs;
3324 getInstructionsInTree(PTM.getDstPattern(), Instrs);
3325 if (Instrs.empty())
3326 continue;
3327
3328 // Count the number of instructions with each flag set.
3329 unsigned NumSideEffects = 0;
3330 unsigned NumStores = 0;
3331 unsigned NumLoads = 0;
Craig Topper306cb122015-11-22 20:46:24 +00003332 for (const Record *Instr : Instrs) {
3333 const CodeGenInstruction &InstInfo = Target.getInstruction(Instr);
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +00003334 NumSideEffects += InstInfo.hasSideEffects;
3335 NumStores += InstInfo.mayStore;
3336 NumLoads += InstInfo.mayLoad;
3337 }
3338
3339 // Analyze the source pattern.
3340 InstAnalyzer PatInfo(*this);
3341 PatInfo.Analyze(&PTM);
3342
3343 // Collect error messages.
3344 SmallVector<std::string, 4> Msgs;
3345
3346 // Check for missing flags in the output.
3347 // Permit extra flags for now at least.
3348 if (PatInfo.hasSideEffects && !NumSideEffects)
3349 Msgs.push_back("pattern has side effects, but hasSideEffects isn't set");
3350
3351 // Don't verify store flags on instructions with side effects. At least for
3352 // intrinsics, side effects implies mayStore.
3353 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores)
3354 Msgs.push_back("pattern may store, but mayStore isn't set");
3355
3356 // Similarly, mayStore implies mayLoad on intrinsics.
3357 if (!PatInfo.mayStore && PatInfo.mayLoad && !NumLoads)
3358 Msgs.push_back("pattern may load, but mayLoad isn't set");
3359
3360 // Print error messages.
3361 if (Msgs.empty())
3362 continue;
3363 ++Errors;
3364
Craig Topper306cb122015-11-22 20:46:24 +00003365 for (const std::string &Msg : Msgs)
3366 PrintError(PTM.getSrcRecord()->getLoc(), Twine(Msg) + " on the " +
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +00003367 (Instrs.size() == 1 ?
3368 "instruction" : "output instructions"));
3369 // Provide the location of the relevant instruction definitions.
Craig Topper306cb122015-11-22 20:46:24 +00003370 for (const Record *Instr : Instrs) {
3371 if (Instr != PTM.getSrcRecord())
3372 PrintError(Instr->getLoc(), "defined here");
3373 const CodeGenInstruction &InstInfo = Target.getInstruction(Instr);
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +00003374 if (InstInfo.InferredFrom &&
3375 InstInfo.InferredFrom != InstInfo.TheDef &&
3376 InstInfo.InferredFrom != PTM.getSrcRecord())
Bruce Mitchenere9ffb452015-09-12 01:17:08 +00003377 PrintError(InstInfo.InferredFrom->getLoc(), "inferred from pattern");
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +00003378 }
3379 }
3380 if (Errors)
Joerg Sonnenberger635debe2012-10-25 20:33:17 +00003381 PrintFatalError("Errors in DAG patterns");
Jakob Stoklund Olesena9d322a2012-08-28 03:26:49 +00003382}
3383
Chris Lattnercabe0372010-03-15 06:00:16 +00003384/// Given a pattern result with an unresolved type, see if we can find one
3385/// instruction with an unresolved result type. Force this result type to an
3386/// arbitrary element if it's possible types to converge results.
3387static bool ForceArbitraryInstResultType(TreePatternNode *N, TreePattern &TP) {
3388 if (N->isLeaf())
3389 return false;
Jim Grosbach65586fe2010-12-21 16:16:00 +00003390
Chris Lattnercabe0372010-03-15 06:00:16 +00003391 // Analyze children.
3392 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
3393 if (ForceArbitraryInstResultType(N->getChild(i), TP))
3394 return true;
3395
3396 if (!N->getOperator()->isSubClassOf("Instruction"))
3397 return false;
3398
3399 // If this type is already concrete or completely unknown we can't do
3400 // anything.
Chris Lattnerf1447252010-03-19 21:37:09 +00003401 for (unsigned i = 0, e = N->getNumTypes(); i != e; ++i) {
3402 if (N->getExtType(i).isCompletelyUnknown() || N->getExtType(i).isConcrete())
3403 continue;
Jim Grosbach65586fe2010-12-21 16:16:00 +00003404
Chris Lattnerf1447252010-03-19 21:37:09 +00003405 // Otherwise, force its type to the first possibility (an arbitrary choice).
3406 if (N->getExtType(i).MergeInTypeInfo(N->getExtType(i).getTypeList()[0], TP))
3407 return true;
3408 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00003409
Chris Lattnerf1447252010-03-19 21:37:09 +00003410 return false;
Chris Lattnercabe0372010-03-15 06:00:16 +00003411}
3412
Chris Lattnerab3242f2008-01-06 01:10:31 +00003413void CodeGenDAGPatterns::ParsePatterns() {
Chris Lattner8cab0212008-01-05 22:25:12 +00003414 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
3415
Craig Topper306cb122015-11-22 20:46:24 +00003416 for (Record *CurPattern : Patterns) {
David Greeneaf8ee2c2011-07-29 22:43:06 +00003417 DagInit *Tree = CurPattern->getValueAsDag("PatternToMatch");
Jim Grosbachab27c5e2012-07-17 18:39:36 +00003418
3419 // If the pattern references the null_frag, there's nothing to do.
3420 if (hasNullFragReference(Tree))
3421 continue;
3422
Chris Lattner5c2182e2010-03-27 02:53:27 +00003423 TreePattern *Pattern = new TreePattern(CurPattern, Tree, true, *this);
Chris Lattner8cab0212008-01-05 22:25:12 +00003424
3425 // Inline pattern fragments into it.
3426 Pattern->InlinePatternFragments();
Jim Grosbach65586fe2010-12-21 16:16:00 +00003427
David Greeneaf8ee2c2011-07-29 22:43:06 +00003428 ListInit *LI = CurPattern->getValueAsListInit("ResultInstrs");
Craig Topperec9072d2015-05-14 05:53:53 +00003429 if (LI->empty()) continue; // no pattern.
Jim Grosbach65586fe2010-12-21 16:16:00 +00003430
Chris Lattner8cab0212008-01-05 22:25:12 +00003431 // Parse the instruction.
David Blaikie4ac0c0c2014-11-14 21:53:50 +00003432 TreePattern Result(CurPattern, LI, false, *this);
Jim Grosbach65586fe2010-12-21 16:16:00 +00003433
Chris Lattner8cab0212008-01-05 22:25:12 +00003434 // Inline pattern fragments into it.
David Blaikie4ac0c0c2014-11-14 21:53:50 +00003435 Result.InlinePatternFragments();
Chris Lattner8cab0212008-01-05 22:25:12 +00003436
David Blaikie4ac0c0c2014-11-14 21:53:50 +00003437 if (Result.getNumTrees() != 1)
3438 Result.error("Cannot handle instructions producing instructions "
3439 "with temporaries yet!");
Jim Grosbach65586fe2010-12-21 16:16:00 +00003440
Chris Lattner8cab0212008-01-05 22:25:12 +00003441 bool IterateInference;
3442 bool InferredAllPatternTypes, InferredAllResultTypes;
3443 do {
3444 // Infer as many types as possible. If we cannot infer all of them, we
3445 // can never do anything with this pattern: report it to the user.
Chris Lattnercabe0372010-03-15 06:00:16 +00003446 InferredAllPatternTypes =
3447 Pattern->InferAllTypes(&Pattern->getNamedNodesMap());
Jim Grosbach65586fe2010-12-21 16:16:00 +00003448
Chris Lattner8cab0212008-01-05 22:25:12 +00003449 // Infer as many types as possible. If we cannot infer all of them, we
3450 // can never do anything with this pattern: report it to the user.
Chris Lattnercabe0372010-03-15 06:00:16 +00003451 InferredAllResultTypes =
David Blaikie4ac0c0c2014-11-14 21:53:50 +00003452 Result.InferAllTypes(&Pattern->getNamedNodesMap());
Chris Lattner8cab0212008-01-05 22:25:12 +00003453
Chris Lattnerfdc20712010-03-18 23:15:10 +00003454 IterateInference = false;
Jim Grosbach65586fe2010-12-21 16:16:00 +00003455
Chris Lattner8cab0212008-01-05 22:25:12 +00003456 // Apply the type of the result to the source pattern. This helps us
3457 // resolve cases where the input type is known to be a pointer type (which
3458 // is considered resolved), but the result knows it needs to be 32- or
3459 // 64-bits. Infer the other way for good measure.
David Blaikie4ac0c0c2014-11-14 21:53:50 +00003460 for (unsigned i = 0, e = std::min(Result.getTree(0)->getNumTypes(),
Chris Lattnerf1447252010-03-19 21:37:09 +00003461 Pattern->getTree(0)->getNumTypes());
3462 i != e; ++i) {
David Blaikie4ac0c0c2014-11-14 21:53:50 +00003463 IterateInference = Pattern->getTree(0)->UpdateNodeType(
3464 i, Result.getTree(0)->getExtType(i), Result);
3465 IterateInference |= Result.getTree(0)->UpdateNodeType(
3466 i, Pattern->getTree(0)->getExtType(i), Result);
Chris Lattnerfdc20712010-03-18 23:15:10 +00003467 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00003468
Chris Lattnercabe0372010-03-15 06:00:16 +00003469 // If our iteration has converged and the input pattern's types are fully
3470 // resolved but the result pattern is not fully resolved, we may have a
3471 // situation where we have two instructions in the result pattern and
3472 // the instructions require a common register class, but don't care about
3473 // what actual MVT is used. This is actually a bug in our modelling:
3474 // output patterns should have register classes, not MVTs.
3475 //
3476 // In any case, to handle this, we just go through and disambiguate some
3477 // arbitrary types to the result pattern's nodes.
3478 if (!IterateInference && InferredAllPatternTypes &&
3479 !InferredAllResultTypes)
David Blaikie4ac0c0c2014-11-14 21:53:50 +00003480 IterateInference =
3481 ForceArbitraryInstResultType(Result.getTree(0), Result);
Chris Lattner8cab0212008-01-05 22:25:12 +00003482 } while (IterateInference);
Jim Grosbach65586fe2010-12-21 16:16:00 +00003483
Chris Lattner8cab0212008-01-05 22:25:12 +00003484 // Verify that we inferred enough types that we can do something with the
3485 // pattern and result. If these fire the user has to add type casts.
3486 if (!InferredAllPatternTypes)
3487 Pattern->error("Could not infer all types in pattern!");
Chris Lattnercabe0372010-03-15 06:00:16 +00003488 if (!InferredAllResultTypes) {
3489 Pattern->dump();
David Blaikie4ac0c0c2014-11-14 21:53:50 +00003490 Result.error("Could not infer all types in pattern result!");
Chris Lattnercabe0372010-03-15 06:00:16 +00003491 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00003492
Chris Lattner8cab0212008-01-05 22:25:12 +00003493 // Validate that the input pattern is correct.
3494 std::map<std::string, TreePatternNode*> InstInputs;
3495 std::map<std::string, TreePatternNode*> InstResults;
Chris Lattner8cab0212008-01-05 22:25:12 +00003496 std::vector<Record*> InstImpResults;
3497 for (unsigned j = 0, ee = Pattern->getNumTrees(); j != ee; ++j)
3498 FindPatternInputsAndOutputs(Pattern, Pattern->getTree(j),
3499 InstInputs, InstResults,
Chris Lattner5debc332010-04-20 06:30:25 +00003500 InstImpResults);
Chris Lattner8cab0212008-01-05 22:25:12 +00003501
3502 // Promote the xform function to be an explicit node if set.
David Blaikiecf195302014-11-17 22:55:41 +00003503 TreePatternNode *DstPattern = Result.getOnlyTree();
Chris Lattner8cab0212008-01-05 22:25:12 +00003504 std::vector<TreePatternNode*> ResultNodeOperands;
3505 for (unsigned ii = 0, ee = DstPattern->getNumChildren(); ii != ee; ++ii) {
3506 TreePatternNode *OpNode = DstPattern->getChild(ii);
3507 if (Record *Xform = OpNode->getTransformFn()) {
Craig Topper24064772014-04-15 07:20:03 +00003508 OpNode->setTransformFn(nullptr);
Chris Lattner8cab0212008-01-05 22:25:12 +00003509 std::vector<TreePatternNode*> Children;
3510 Children.push_back(OpNode);
Chris Lattnerf1447252010-03-19 21:37:09 +00003511 OpNode = new TreePatternNode(Xform, Children, OpNode->getNumTypes());
Chris Lattner8cab0212008-01-05 22:25:12 +00003512 }
3513 ResultNodeOperands.push_back(OpNode);
3514 }
David Blaikiecf195302014-11-17 22:55:41 +00003515 DstPattern = Result.getOnlyTree();
3516 if (!DstPattern->isLeaf())
3517 DstPattern = new TreePatternNode(DstPattern->getOperator(),
3518 ResultNodeOperands,
3519 DstPattern->getNumTypes());
Jim Grosbach65586fe2010-12-21 16:16:00 +00003520
David Blaikiecf195302014-11-17 22:55:41 +00003521 for (unsigned i = 0, e = Result.getOnlyTree()->getNumTypes(); i != e; ++i)
3522 DstPattern->setType(i, Result.getOnlyTree()->getExtType(i));
3523
3524 TreePattern Temp(Result.getRecord(), DstPattern, false, *this);
Chris Lattner8cab0212008-01-05 22:25:12 +00003525 Temp.InferAllTypes();
3526
Jim Grosbach65586fe2010-12-21 16:16:00 +00003527
Chris Lattner0c0baa92010-02-23 06:16:51 +00003528 AddPatternToMatch(Pattern,
Jim Grosbachfb116ae2010-12-07 23:05:49 +00003529 PatternToMatch(CurPattern,
3530 CurPattern->getValueAsListInit("Predicates"),
Chris Lattnerf1447252010-03-19 21:37:09 +00003531 Pattern->getTree(0),
David Blaikiecf195302014-11-17 22:55:41 +00003532 Temp.getOnlyTree(), InstImpResults,
Chris Lattnerf1447252010-03-19 21:37:09 +00003533 CurPattern->getValueAsInt("AddedComplexity"),
3534 CurPattern->getID()));
Chris Lattner8cab0212008-01-05 22:25:12 +00003535 }
3536}
3537
3538/// CombineChildVariants - Given a bunch of permutations of each child of the
3539/// 'operator' node, put them together in all possible ways.
Jim Grosbach65586fe2010-12-21 16:16:00 +00003540static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattner8cab0212008-01-05 22:25:12 +00003541 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
3542 std::vector<TreePatternNode*> &OutVariants,
Scott Michel94420742008-03-05 17:49:05 +00003543 CodeGenDAGPatterns &CDP,
3544 const MultipleUseVarSet &DepVars) {
Chris Lattner8cab0212008-01-05 22:25:12 +00003545 // Make sure that each operand has at least one variant to choose from.
Craig Topper306cb122015-11-22 20:46:24 +00003546 for (const auto &Variants : ChildVariants)
3547 if (Variants.empty())
Chris Lattner8cab0212008-01-05 22:25:12 +00003548 return;
Jim Grosbach65586fe2010-12-21 16:16:00 +00003549
Chris Lattner8cab0212008-01-05 22:25:12 +00003550 // The end result is an all-pairs construction of the resultant pattern.
3551 std::vector<unsigned> Idxs;
3552 Idxs.resize(ChildVariants.size());
Scott Michel94420742008-03-05 17:49:05 +00003553 bool NotDone;
3554 do {
3555#ifndef NDEBUG
Chris Lattner7f28b8e2010-02-27 06:51:44 +00003556 DEBUG(if (!Idxs.empty()) {
3557 errs() << Orig->getOperator()->getName() << ": Idxs = [ ";
Craig Topper306cb122015-11-22 20:46:24 +00003558 for (unsigned Idx : Idxs) {
3559 errs() << Idx << " ";
Chris Lattner7f28b8e2010-02-27 06:51:44 +00003560 }
3561 errs() << "]\n";
3562 });
Scott Michel94420742008-03-05 17:49:05 +00003563#endif
Chris Lattner8cab0212008-01-05 22:25:12 +00003564 // Create the variant and add it to the output list.
3565 std::vector<TreePatternNode*> NewChildren;
3566 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
3567 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
David Blaikiefda69dd2015-11-22 20:11:21 +00003568 auto R = llvm::make_unique<TreePatternNode>(
3569 Orig->getOperator(), NewChildren, Orig->getNumTypes());
Jim Grosbach65586fe2010-12-21 16:16:00 +00003570
Chris Lattner8cab0212008-01-05 22:25:12 +00003571 // Copy over properties.
3572 R->setName(Orig->getName());
Dan Gohman6e979022008-10-15 06:17:21 +00003573 R->setPredicateFns(Orig->getPredicateFns());
Chris Lattner8cab0212008-01-05 22:25:12 +00003574 R->setTransformFn(Orig->getTransformFn());
Chris Lattnerf1447252010-03-19 21:37:09 +00003575 for (unsigned i = 0, e = Orig->getNumTypes(); i != e; ++i)
3576 R->setType(i, Orig->getExtType(i));
Jim Grosbach65586fe2010-12-21 16:16:00 +00003577
Scott Michel94420742008-03-05 17:49:05 +00003578 // If this pattern cannot match, do not include it as a variant.
Chris Lattner8cab0212008-01-05 22:25:12 +00003579 std::string ErrString;
David Blaikiefda69dd2015-11-22 20:11:21 +00003580 // Scan to see if this pattern has already been emitted. We can get
3581 // duplication due to things like commuting:
3582 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
3583 // which are the same pattern. Ignore the dups.
3584 if (R->canPatternMatch(ErrString, CDP) &&
David Majnemer0a16c222016-08-11 21:15:00 +00003585 none_of(OutVariants, [&](TreePatternNode *Variant) {
3586 return R->isIsomorphicTo(Variant, DepVars);
3587 }))
David Blaikiefda69dd2015-11-22 20:11:21 +00003588 OutVariants.push_back(R.release());
Jim Grosbach65586fe2010-12-21 16:16:00 +00003589
Scott Michel94420742008-03-05 17:49:05 +00003590 // Increment indices to the next permutation by incrementing the
Bruce Mitchenere9ffb452015-09-12 01:17:08 +00003591 // indices from last index backward, e.g., generate the sequence
Scott Michel94420742008-03-05 17:49:05 +00003592 // [0, 0], [0, 1], [1, 0], [1, 1].
3593 int IdxsIdx;
3594 for (IdxsIdx = Idxs.size() - 1; IdxsIdx >= 0; --IdxsIdx) {
3595 if (++Idxs[IdxsIdx] == ChildVariants[IdxsIdx].size())
3596 Idxs[IdxsIdx] = 0;
3597 else
Chris Lattner8cab0212008-01-05 22:25:12 +00003598 break;
Chris Lattner8cab0212008-01-05 22:25:12 +00003599 }
Scott Michel94420742008-03-05 17:49:05 +00003600 NotDone = (IdxsIdx >= 0);
3601 } while (NotDone);
Chris Lattner8cab0212008-01-05 22:25:12 +00003602}
3603
3604/// CombineChildVariants - A helper function for binary operators.
3605///
Jim Grosbach65586fe2010-12-21 16:16:00 +00003606static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattner8cab0212008-01-05 22:25:12 +00003607 const std::vector<TreePatternNode*> &LHS,
3608 const std::vector<TreePatternNode*> &RHS,
3609 std::vector<TreePatternNode*> &OutVariants,
Scott Michel94420742008-03-05 17:49:05 +00003610 CodeGenDAGPatterns &CDP,
3611 const MultipleUseVarSet &DepVars) {
Chris Lattner8cab0212008-01-05 22:25:12 +00003612 std::vector<std::vector<TreePatternNode*> > ChildVariants;
3613 ChildVariants.push_back(LHS);
3614 ChildVariants.push_back(RHS);
Scott Michel94420742008-03-05 17:49:05 +00003615 CombineChildVariants(Orig, ChildVariants, OutVariants, CDP, DepVars);
Jim Grosbach65586fe2010-12-21 16:16:00 +00003616}
Chris Lattner8cab0212008-01-05 22:25:12 +00003617
3618
3619static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
3620 std::vector<TreePatternNode *> &Children) {
3621 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
3622 Record *Operator = N->getOperator();
Jim Grosbach65586fe2010-12-21 16:16:00 +00003623
Chris Lattner8cab0212008-01-05 22:25:12 +00003624 // Only permit raw nodes.
Dan Gohman6e979022008-10-15 06:17:21 +00003625 if (!N->getName().empty() || !N->getPredicateFns().empty() ||
Chris Lattner8cab0212008-01-05 22:25:12 +00003626 N->getTransformFn()) {
3627 Children.push_back(N);
3628 return;
3629 }
3630
3631 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
3632 Children.push_back(N->getChild(0));
3633 else
3634 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
3635
3636 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
3637 Children.push_back(N->getChild(1));
3638 else
3639 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
3640}
3641
3642/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
3643/// the (potentially recursive) pattern by using algebraic laws.
3644///
3645static void GenerateVariantsOf(TreePatternNode *N,
3646 std::vector<TreePatternNode*> &OutVariants,
Scott Michel94420742008-03-05 17:49:05 +00003647 CodeGenDAGPatterns &CDP,
3648 const MultipleUseVarSet &DepVars) {
Tim Northoverc807a172014-05-20 11:52:46 +00003649 // We cannot permute leaves or ComplexPattern uses.
3650 if (N->isLeaf() || N->getOperator()->isSubClassOf("ComplexPattern")) {
Chris Lattner8cab0212008-01-05 22:25:12 +00003651 OutVariants.push_back(N);
3652 return;
3653 }
3654
3655 // Look up interesting info about the node.
3656 const SDNodeInfo &NodeInfo = CDP.getSDNodeInfo(N->getOperator());
3657
Jim Grosbach975c1cb2009-03-26 16:17:51 +00003658 // If this node is associative, re-associate.
Chris Lattner8cab0212008-01-05 22:25:12 +00003659 if (NodeInfo.hasProperty(SDNPAssociative)) {
Jim Grosbach65586fe2010-12-21 16:16:00 +00003660 // Re-associate by pulling together all of the linked operators
Chris Lattner8cab0212008-01-05 22:25:12 +00003661 std::vector<TreePatternNode*> MaximalChildren;
3662 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
3663
3664 // Only handle child sizes of 3. Otherwise we'll end up trying too many
3665 // permutations.
3666 if (MaximalChildren.size() == 3) {
3667 // Find the variants of all of our maximal children.
3668 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
Scott Michel94420742008-03-05 17:49:05 +00003669 GenerateVariantsOf(MaximalChildren[0], AVariants, CDP, DepVars);
3670 GenerateVariantsOf(MaximalChildren[1], BVariants, CDP, DepVars);
3671 GenerateVariantsOf(MaximalChildren[2], CVariants, CDP, DepVars);
Jim Grosbach65586fe2010-12-21 16:16:00 +00003672
Chris Lattner8cab0212008-01-05 22:25:12 +00003673 // There are only two ways we can permute the tree:
3674 // (A op B) op C and A op (B op C)
3675 // Within these forms, we can also permute A/B/C.
Jim Grosbach65586fe2010-12-21 16:16:00 +00003676
Chris Lattner8cab0212008-01-05 22:25:12 +00003677 // Generate legal pair permutations of A/B/C.
3678 std::vector<TreePatternNode*> ABVariants;
3679 std::vector<TreePatternNode*> BAVariants;
3680 std::vector<TreePatternNode*> ACVariants;
3681 std::vector<TreePatternNode*> CAVariants;
3682 std::vector<TreePatternNode*> BCVariants;
3683 std::vector<TreePatternNode*> CBVariants;
Scott Michel94420742008-03-05 17:49:05 +00003684 CombineChildVariants(N, AVariants, BVariants, ABVariants, CDP, DepVars);
3685 CombineChildVariants(N, BVariants, AVariants, BAVariants, CDP, DepVars);
3686 CombineChildVariants(N, AVariants, CVariants, ACVariants, CDP, DepVars);
3687 CombineChildVariants(N, CVariants, AVariants, CAVariants, CDP, DepVars);
3688 CombineChildVariants(N, BVariants, CVariants, BCVariants, CDP, DepVars);
3689 CombineChildVariants(N, CVariants, BVariants, CBVariants, CDP, DepVars);
Chris Lattner8cab0212008-01-05 22:25:12 +00003690
3691 // Combine those into the result: (x op x) op x
Scott Michel94420742008-03-05 17:49:05 +00003692 CombineChildVariants(N, ABVariants, CVariants, OutVariants, CDP, DepVars);
3693 CombineChildVariants(N, BAVariants, CVariants, OutVariants, CDP, DepVars);
3694 CombineChildVariants(N, ACVariants, BVariants, OutVariants, CDP, DepVars);
3695 CombineChildVariants(N, CAVariants, BVariants, OutVariants, CDP, DepVars);
3696 CombineChildVariants(N, BCVariants, AVariants, OutVariants, CDP, DepVars);
3697 CombineChildVariants(N, CBVariants, AVariants, OutVariants, CDP, DepVars);
Chris Lattner8cab0212008-01-05 22:25:12 +00003698
3699 // Combine those into the result: x op (x op x)
Scott Michel94420742008-03-05 17:49:05 +00003700 CombineChildVariants(N, CVariants, ABVariants, OutVariants, CDP, DepVars);
3701 CombineChildVariants(N, CVariants, BAVariants, OutVariants, CDP, DepVars);
3702 CombineChildVariants(N, BVariants, ACVariants, OutVariants, CDP, DepVars);
3703 CombineChildVariants(N, BVariants, CAVariants, OutVariants, CDP, DepVars);
3704 CombineChildVariants(N, AVariants, BCVariants, OutVariants, CDP, DepVars);
3705 CombineChildVariants(N, AVariants, CBVariants, OutVariants, CDP, DepVars);
Chris Lattner8cab0212008-01-05 22:25:12 +00003706 return;
3707 }
3708 }
Jim Grosbach65586fe2010-12-21 16:16:00 +00003709
Chris Lattner8cab0212008-01-05 22:25:12 +00003710 // Compute permutations of all children.
3711 std::vector<std::vector<TreePatternNode*> > ChildVariants;
3712 ChildVariants.resize(N->getNumChildren());
3713 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
Scott Michel94420742008-03-05 17:49:05 +00003714 GenerateVariantsOf(N->getChild(i), ChildVariants[i], CDP, DepVars);
Chris Lattner8cab0212008-01-05 22:25:12 +00003715
3716 // Build all permutations based on how the children were formed.
Scott Michel94420742008-03-05 17:49:05 +00003717 CombineChildVariants(N, ChildVariants, OutVariants, CDP, DepVars);
Chris Lattner8cab0212008-01-05 22:25:12 +00003718
3719 // If this node is commutative, consider the commuted order.
Evan Cheng49bad4c2008-06-16 20:29:38 +00003720 bool isCommIntrinsic = N->isCommutativeIntrinsic(CDP);
3721 if (NodeInfo.hasProperty(SDNPCommutative) || isCommIntrinsic) {
3722 assert((N->getNumChildren()==2 || isCommIntrinsic) &&
3723 "Commutative but doesn't have 2 children!");
Chris Lattner8cab0212008-01-05 22:25:12 +00003724 // Don't count children which are actually register references.
3725 unsigned NC = 0;
3726 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
3727 TreePatternNode *Child = N->getChild(i);
3728 if (Child->isLeaf())
Sean Silvafb509ed2012-10-10 20:24:43 +00003729 if (DefInit *DI = dyn_cast<DefInit>(Child->getLeafValue())) {
Chris Lattner8cab0212008-01-05 22:25:12 +00003730 Record *RR = DI->getDef();
3731 if (RR->isSubClassOf("Register"))
3732 continue;
3733 }
3734 NC++;
3735 }
3736 // Consider the commuted order.
Evan Cheng49bad4c2008-06-16 20:29:38 +00003737 if (isCommIntrinsic) {
3738 // Commutative intrinsic. First operand is the intrinsic id, 2nd and 3rd
3739 // operands are the commutative operands, and there might be more operands
3740 // after those.
3741 assert(NC >= 3 &&
Bruce Mitchenere9ffb452015-09-12 01:17:08 +00003742 "Commutative intrinsic should have at least 3 children!");
Evan Cheng49bad4c2008-06-16 20:29:38 +00003743 std::vector<std::vector<TreePatternNode*> > Variants;
3744 Variants.push_back(ChildVariants[0]); // Intrinsic id.
3745 Variants.push_back(ChildVariants[2]);
3746 Variants.push_back(ChildVariants[1]);
3747 for (unsigned i = 3; i != NC; ++i)
3748 Variants.push_back(ChildVariants[i]);
3749 CombineChildVariants(N, Variants, OutVariants, CDP, DepVars);
3750 } else if (NC == 2)
Chris Lattner8cab0212008-01-05 22:25:12 +00003751 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
Scott Michel94420742008-03-05 17:49:05 +00003752 OutVariants, CDP, DepVars);
Chris Lattner8cab0212008-01-05 22:25:12 +00003753 }
3754}
3755
3756
3757// GenerateVariants - Generate variants. For example, commutative patterns can
3758// match multiple ways. Add them to PatternsToMatch as well.
Chris Lattnerab3242f2008-01-06 01:10:31 +00003759void CodeGenDAGPatterns::GenerateVariants() {
Chris Lattner34822f62009-08-23 04:44:11 +00003760 DEBUG(errs() << "Generating instruction variants.\n");
Jim Grosbach65586fe2010-12-21 16:16:00 +00003761
Chris Lattner8cab0212008-01-05 22:25:12 +00003762 // Loop over all of the patterns we've collected, checking to see if we can
3763 // generate variants of the instruction, through the exploitation of
Jim Grosbach975c1cb2009-03-26 16:17:51 +00003764 // identities. This permits the target to provide aggressive matching without
Chris Lattner8cab0212008-01-05 22:25:12 +00003765 // the .td file having to contain tons of variants of instructions.
3766 //
3767 // Note that this loop adds new patterns to the PatternsToMatch list, but we
3768 // intentionally do not reconsider these. Any variants of added patterns have
3769 // already been added.
3770 //
Craig Topper2f70a7e2015-11-22 22:43:40 +00003771 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Scott Michel94420742008-03-05 17:49:05 +00003772 MultipleUseVarSet DepVars;
Chris Lattner8cab0212008-01-05 22:25:12 +00003773 std::vector<TreePatternNode*> Variants;
Craig Topper2f70a7e2015-11-22 22:43:40 +00003774 FindDepVars(PatternsToMatch[i].getSrcPattern(), DepVars);
Chris Lattner34822f62009-08-23 04:44:11 +00003775 DEBUG(errs() << "Dependent/multiply used variables: ");
Scott Michel94420742008-03-05 17:49:05 +00003776 DEBUG(DumpDepVars(DepVars));
Chris Lattner34822f62009-08-23 04:44:11 +00003777 DEBUG(errs() << "\n");
Craig Topper2f70a7e2015-11-22 22:43:40 +00003778 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this,
Jim Grosbachb75d0ca2010-10-08 18:13:57 +00003779 DepVars);
Chris Lattner8cab0212008-01-05 22:25:12 +00003780
3781 assert(!Variants.empty() && "Must create at least original variant!");
3782 Variants.erase(Variants.begin()); // Remove the original pattern.
3783
3784 if (Variants.empty()) // No variants for this pattern.
3785 continue;
3786
Chris Lattner34822f62009-08-23 04:44:11 +00003787 DEBUG(errs() << "FOUND VARIANTS OF: ";
Craig Topper2f70a7e2015-11-22 22:43:40 +00003788 PatternsToMatch[i].getSrcPattern()->dump();
Chris Lattner34822f62009-08-23 04:44:11 +00003789 errs() << "\n");
Chris Lattner8cab0212008-01-05 22:25:12 +00003790
3791 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
3792 TreePatternNode *Variant = Variants[v];
3793
Chris Lattner34822f62009-08-23 04:44:11 +00003794 DEBUG(errs() << " VAR#" << v << ": ";
3795 Variant->dump();
3796 errs() << "\n");
Jim Grosbach65586fe2010-12-21 16:16:00 +00003797
Chris Lattner8cab0212008-01-05 22:25:12 +00003798 // Scan to see if an instruction or explicit pattern already matches this.
3799 bool AlreadyExists = false;
Craig Topper2f70a7e2015-11-22 22:43:40 +00003800 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
Evan Cheng34c8c742009-06-26 05:59:16 +00003801 // Skip if the top level predicates do not match.
Craig Topper2f70a7e2015-11-22 22:43:40 +00003802 if (PatternsToMatch[i].getPredicates() !=
3803 PatternsToMatch[p].getPredicates())
Evan Cheng34c8c742009-06-26 05:59:16 +00003804 continue;
Chris Lattner8cab0212008-01-05 22:25:12 +00003805 // Check to see if this variant already exists.
Craig Topper2f70a7e2015-11-22 22:43:40 +00003806 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern(),
3807 DepVars)) {
Chris Lattner34822f62009-08-23 04:44:11 +00003808 DEBUG(errs() << " *** ALREADY EXISTS, ignoring variant.\n");
Chris Lattner8cab0212008-01-05 22:25:12 +00003809 AlreadyExists = true;
3810 break;
3811 }
3812 }
3813 // If we already have it, ignore the variant.
3814 if (AlreadyExists) continue;
3815
3816 // Otherwise, add it to the list of patterns we have.
Craig Topper2f70a7e2015-11-22 22:43:40 +00003817 PatternsToMatch.emplace_back(
3818 PatternsToMatch[i].getSrcRecord(), PatternsToMatch[i].getPredicates(),
3819 Variant, PatternsToMatch[i].getDstPattern(),
3820 PatternsToMatch[i].getDstRegs(),
3821 PatternsToMatch[i].getAddedComplexity(), Record::getNewUID());
Chris Lattner8cab0212008-01-05 22:25:12 +00003822 }
3823
Chris Lattner34822f62009-08-23 04:44:11 +00003824 DEBUG(errs() << "\n");
Chris Lattner8cab0212008-01-05 22:25:12 +00003825 }
3826}