blob: 2c3161bc82a5d926cdac8b6f32f8fba22de076b8 [file] [log] [blame]
Chris Lattnerfe718932008-01-06 01:10:31 +00001//===- CodeGenDAGPatterns.cpp - Read DAG patterns from .td file -----------===//
Chris Lattner6cefb772008-01-05 22:25:12 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattnerfe718932008-01-06 01:10:31 +000010// This file implements the CodeGenDAGPatterns class, which is used to read and
Chris Lattner6cefb772008-01-05 22:25:12 +000011// represent the patterns present in a .td file for instructions.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner93c7e412008-01-05 23:37:52 +000015#include "CodeGenDAGPatterns.h"
Chris Lattner2cacec52010-03-15 06:00:16 +000016#include "llvm/ADT/STLExtras.h"
Chandler Carruth4ffd89f2012-12-04 10:37:14 +000017#include "llvm/ADT/StringExtras.h"
Jim Grosbach9b29ea42012-04-18 17:46:41 +000018#include "llvm/ADT/Twine.h"
Chris Lattner6cefb772008-01-05 22:25:12 +000019#include "llvm/Support/Debug.h"
David Blaikiefdebc382012-01-17 04:43:56 +000020#include "llvm/Support/ErrorHandling.h"
Chandler Carruth4ffd89f2012-12-04 10:37:14 +000021#include "llvm/TableGen/Error.h"
22#include "llvm/TableGen/Record.h"
Chuck Rose III9a79de32008-01-15 21:43:17 +000023#include <algorithm>
Benjamin Kramer901b8582012-03-23 11:35:30 +000024#include <cstdio>
25#include <set>
Chris Lattner6cefb772008-01-05 22:25:12 +000026using namespace llvm;
27
28//===----------------------------------------------------------------------===//
Chris Lattner2cacec52010-03-15 06:00:16 +000029// EEVT::TypeSet Implementation
30//===----------------------------------------------------------------------===//
Chris Lattner6cefb772008-01-05 22:25:12 +000031
Owen Anderson825b72b2009-08-11 20:47:22 +000032static inline bool isInteger(MVT::SimpleValueType VT) {
Owen Andersone50ed302009-08-10 22:56:29 +000033 return EVT(VT).isInteger();
Duncan Sands83ec4b62008-06-06 12:08:01 +000034}
Owen Anderson825b72b2009-08-11 20:47:22 +000035static inline bool isFloatingPoint(MVT::SimpleValueType VT) {
Owen Andersone50ed302009-08-10 22:56:29 +000036 return EVT(VT).isFloatingPoint();
Duncan Sands83ec4b62008-06-06 12:08:01 +000037}
Owen Anderson825b72b2009-08-11 20:47:22 +000038static inline bool isVector(MVT::SimpleValueType VT) {
Owen Andersone50ed302009-08-10 22:56:29 +000039 return EVT(VT).isVector();
Duncan Sands83ec4b62008-06-06 12:08:01 +000040}
Chris Lattner774ce292010-03-19 17:41:26 +000041static inline bool isScalar(MVT::SimpleValueType VT) {
42 return !EVT(VT).isVector();
43}
Duncan Sands83ec4b62008-06-06 12:08:01 +000044
Chris Lattner2cacec52010-03-15 06:00:16 +000045EEVT::TypeSet::TypeSet(MVT::SimpleValueType VT, TreePattern &TP) {
46 if (VT == MVT::iAny)
47 EnforceInteger(TP);
48 else if (VT == MVT::fAny)
49 EnforceFloatingPoint(TP);
50 else if (VT == MVT::vAny)
51 EnforceVector(TP);
52 else {
53 assert((VT < MVT::LAST_VALUETYPE || VT == MVT::iPTR ||
54 VT == MVT::iPTRAny) && "Not a concrete type!");
55 TypeVec.push_back(VT);
56 }
Chris Lattner6cefb772008-01-05 22:25:12 +000057}
58
Chris Lattner2cacec52010-03-15 06:00:16 +000059
Jakob Stoklund Olesen26369a92013-03-17 17:26:09 +000060EEVT::TypeSet::TypeSet(ArrayRef<MVT::SimpleValueType> VTList) {
Chris Lattner2cacec52010-03-15 06:00:16 +000061 assert(!VTList.empty() && "empty list?");
62 TypeVec.append(VTList.begin(), VTList.end());
Jim Grosbachfbadcd02010-12-21 16:16:00 +000063
Chris Lattner2cacec52010-03-15 06:00:16 +000064 if (!VTList.empty())
65 assert(VTList[0] != MVT::iAny && VTList[0] != MVT::vAny &&
66 VTList[0] != MVT::fAny);
Jim Grosbachfbadcd02010-12-21 16:16:00 +000067
Chris Lattner0d7952e2010-03-27 20:32:26 +000068 // Verify no duplicates.
Chris Lattner2cacec52010-03-15 06:00:16 +000069 array_pod_sort(TypeVec.begin(), TypeVec.end());
Chris Lattner0d7952e2010-03-27 20:32:26 +000070 assert(std::unique(TypeVec.begin(), TypeVec.end()) == TypeVec.end());
Chris Lattner6cefb772008-01-05 22:25:12 +000071}
72
Chris Lattner5a9b8fb2010-03-19 04:54:36 +000073/// FillWithPossibleTypes - Set to all legal types and return true, only valid
74/// on completely unknown type sets.
Chris Lattner774ce292010-03-19 17:41:26 +000075bool EEVT::TypeSet::FillWithPossibleTypes(TreePattern &TP,
76 bool (*Pred)(MVT::SimpleValueType),
77 const char *PredicateName) {
Chris Lattner5a9b8fb2010-03-19 04:54:36 +000078 assert(isCompletelyUnknown());
Jakob Stoklund Olesen26369a92013-03-17 17:26:09 +000079 ArrayRef<MVT::SimpleValueType> LegalTypes =
Chris Lattner774ce292010-03-19 17:41:26 +000080 TP.getDAGPatterns().getTargetInfo().getLegalValueTypes();
Jim Grosbachfbadcd02010-12-21 16:16:00 +000081
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +000082 if (TP.hasError())
83 return false;
84
Chris Lattner774ce292010-03-19 17:41:26 +000085 for (unsigned i = 0, e = LegalTypes.size(); i != e; ++i)
86 if (Pred == 0 || Pred(LegalTypes[i]))
87 TypeVec.push_back(LegalTypes[i]);
88
89 // If we have nothing that matches the predicate, bail out.
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +000090 if (TypeVec.empty()) {
Chris Lattner774ce292010-03-19 17:41:26 +000091 TP.error("Type inference contradiction found, no " +
Jim Grosbachfbadcd02010-12-21 16:16:00 +000092 std::string(PredicateName) + " types found");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +000093 return false;
94 }
Chris Lattner774ce292010-03-19 17:41:26 +000095 // No need to sort with one element.
96 if (TypeVec.size() == 1) return true;
97
98 // Remove duplicates.
99 array_pod_sort(TypeVec.begin(), TypeVec.end());
100 TypeVec.erase(std::unique(TypeVec.begin(), TypeVec.end()), TypeVec.end());
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000101
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000102 return true;
103}
Chris Lattner2cacec52010-03-15 06:00:16 +0000104
105/// hasIntegerTypes - Return true if this TypeSet contains iAny or an
106/// integer value type.
107bool EEVT::TypeSet::hasIntegerTypes() const {
108 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i)
109 if (isInteger(TypeVec[i]))
110 return true;
111 return false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000112}
Chris Lattner2cacec52010-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 {
117 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i)
118 if (isFloatingPoint(TypeVec[i]))
119 return true;
120 return false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000121}
Chris Lattner2cacec52010-03-15 06:00:16 +0000122
123/// hasVectorTypes - Return true if this TypeSet contains a vAny or a vector
124/// value type.
125bool EEVT::TypeSet::hasVectorTypes() const {
126 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i)
127 if (isVector(TypeVec[i]))
128 return true;
129 return false;
Chris Lattner6cefb772008-01-05 22:25:12 +0000130}
Bob Wilson61fc4cf2009-08-11 01:14:02 +0000131
Chris Lattner2cacec52010-03-15 06:00:16 +0000132
133std::string EEVT::TypeSet::getName() const {
Chris Lattneraac5b5b2010-03-19 01:14:27 +0000134 if (TypeVec.empty()) return "<empty>";
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000135
Chris Lattner2cacec52010-03-15 06:00:16 +0000136 std::string Result;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000137
Chris Lattner2cacec52010-03-15 06:00:16 +0000138 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i) {
139 std::string VTName = llvm::getEnumName(TypeVec[i]);
140 // Strip off MVT:: prefix if present.
141 if (VTName.substr(0,5) == "MVT::")
142 VTName = VTName.substr(5);
143 if (i) Result += ':';
144 Result += VTName;
145 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000146
Chris Lattner2cacec52010-03-15 06:00:16 +0000147 if (TypeVec.size() == 1)
148 return Result;
149 return "{" + Result + "}";
Bob Wilson61fc4cf2009-08-11 01:14:02 +0000150}
Chris Lattner2cacec52010-03-15 06:00:16 +0000151
152/// MergeInTypeInfo - This merges in type information from the specified
153/// argument. If 'this' changes, it returns true. If the two types are
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000154/// contradictory (e.g. merge f32 into i32) then this flags an error.
Chris Lattner2cacec52010-03-15 06:00:16 +0000155bool EEVT::TypeSet::MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP){
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000156 if (InVT.isCompletelyUnknown() || *this == InVT || TP.hasError())
Chris Lattner2cacec52010-03-15 06:00:16 +0000157 return false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000158
Chris Lattner2cacec52010-03-15 06:00:16 +0000159 if (isCompletelyUnknown()) {
160 *this = InVT;
161 return true;
162 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000163
Chris Lattner2cacec52010-03-15 06:00:16 +0000164 assert(TypeVec.size() >= 1 && InVT.TypeVec.size() >= 1 && "No unknowns");
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000165
Chris Lattner2cacec52010-03-15 06:00:16 +0000166 // Handle the abstract cases, seeing if we can resolve them better.
167 switch (TypeVec[0]) {
168 default: break;
169 case MVT::iPTR:
170 case MVT::iPTRAny:
171 if (InVT.hasIntegerTypes()) {
172 EEVT::TypeSet InCopy(InVT);
173 InCopy.EnforceInteger(TP);
174 InCopy.EnforceScalar(TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000175
Chris Lattner2cacec52010-03-15 06:00:16 +0000176 if (InCopy.isConcrete()) {
177 // If the RHS has one integer type, upgrade iPTR to i32.
178 TypeVec[0] = InVT.TypeVec[0];
179 return true;
180 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000181
Chris Lattner2cacec52010-03-15 06:00:16 +0000182 // If the input has multiple scalar integers, this doesn't add any info.
183 if (!InCopy.isCompletelyUnknown())
184 return false;
185 }
186 break;
187 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000188
Chris Lattner2cacec52010-03-15 06:00:16 +0000189 // If the input constraint is iAny/iPTR and this is an integer type list,
190 // remove non-integer types from the list.
191 if ((InVT.TypeVec[0] == MVT::iPTR || InVT.TypeVec[0] == MVT::iPTRAny) &&
192 hasIntegerTypes()) {
193 bool MadeChange = EnforceInteger(TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000194
Chris Lattner2cacec52010-03-15 06:00:16 +0000195 // If we're merging in iPTR/iPTRAny and the node currently has a list of
196 // multiple different integer types, replace them with a single iPTR.
197 if ((InVT.TypeVec[0] == MVT::iPTR || InVT.TypeVec[0] == MVT::iPTRAny) &&
198 TypeVec.size() != 1) {
199 TypeVec.resize(1);
200 TypeVec[0] = InVT.TypeVec[0];
201 MadeChange = true;
202 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000203
Chris Lattner2cacec52010-03-15 06:00:16 +0000204 return MadeChange;
205 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000206
Chris Lattner2cacec52010-03-15 06:00:16 +0000207 // If this is a type list and the RHS is a typelist as well, eliminate entries
208 // from this list that aren't in the other one.
209 bool MadeChange = false;
210 TypeSet InputSet(*this);
211
212 for (unsigned i = 0; i != TypeVec.size(); ++i) {
213 bool InInVT = false;
214 for (unsigned j = 0, e = InVT.TypeVec.size(); j != e; ++j)
215 if (TypeVec[i] == InVT.TypeVec[j]) {
216 InInVT = true;
217 break;
218 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000219
Chris Lattner2cacec52010-03-15 06:00:16 +0000220 if (InInVT) continue;
221 TypeVec.erase(TypeVec.begin()+i--);
222 MadeChange = true;
223 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000224
Chris Lattner2cacec52010-03-15 06:00:16 +0000225 // If we removed all of our types, we have a type contradiction.
226 if (!TypeVec.empty())
227 return MadeChange;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000228
Chris Lattner2cacec52010-03-15 06:00:16 +0000229 // FIXME: Really want an SMLoc here!
230 TP.error("Type inference contradiction found, merging '" +
231 InVT.getName() + "' into '" + InputSet.getName() + "'");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000232 return false;
Chris Lattner2cacec52010-03-15 06:00:16 +0000233}
234
235/// EnforceInteger - Remove all non-integer types from this set.
236bool EEVT::TypeSet::EnforceInteger(TreePattern &TP) {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000237 if (TP.hasError())
238 return false;
Chris Lattner2cacec52010-03-15 06:00:16 +0000239 // If we know nothing, then get the full set.
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000240 if (TypeVec.empty())
Chris Lattner774ce292010-03-19 17:41:26 +0000241 return FillWithPossibleTypes(TP, isInteger, "integer");
Chris Lattner2cacec52010-03-15 06:00:16 +0000242 if (!hasFloatingPointTypes())
Chris Lattner774ce292010-03-19 17:41:26 +0000243 return false;
244
245 TypeSet InputSet(*this);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000246
Chris Lattner2cacec52010-03-15 06:00:16 +0000247 // Filter out all the fp types.
248 for (unsigned i = 0; i != TypeVec.size(); ++i)
Chris Lattner774ce292010-03-19 17:41:26 +0000249 if (!isInteger(TypeVec[i]))
Chris Lattner2cacec52010-03-15 06:00:16 +0000250 TypeVec.erase(TypeVec.begin()+i--);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000251
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000252 if (TypeVec.empty()) {
Chris Lattner2cacec52010-03-15 06:00:16 +0000253 TP.error("Type inference contradiction found, '" +
254 InputSet.getName() + "' needs to be integer");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000255 return false;
256 }
Chris Lattner774ce292010-03-19 17:41:26 +0000257 return true;
Chris Lattner2cacec52010-03-15 06:00:16 +0000258}
259
260/// EnforceFloatingPoint - Remove all integer types from this set.
261bool EEVT::TypeSet::EnforceFloatingPoint(TreePattern &TP) {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000262 if (TP.hasError())
263 return false;
Chris Lattner2cacec52010-03-15 06:00:16 +0000264 // If we know nothing, then get the full set.
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000265 if (TypeVec.empty())
Chris Lattner774ce292010-03-19 17:41:26 +0000266 return FillWithPossibleTypes(TP, isFloatingPoint, "floating point");
267
Chris Lattner2cacec52010-03-15 06:00:16 +0000268 if (!hasIntegerTypes())
Chris Lattner774ce292010-03-19 17:41:26 +0000269 return false;
270
271 TypeSet InputSet(*this);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000272
Chris Lattner2cacec52010-03-15 06:00:16 +0000273 // Filter out all the fp types.
274 for (unsigned i = 0; i != TypeVec.size(); ++i)
Chris Lattner774ce292010-03-19 17:41:26 +0000275 if (!isFloatingPoint(TypeVec[i]))
Chris Lattner2cacec52010-03-15 06:00:16 +0000276 TypeVec.erase(TypeVec.begin()+i--);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000277
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000278 if (TypeVec.empty()) {
Chris Lattner2cacec52010-03-15 06:00:16 +0000279 TP.error("Type inference contradiction found, '" +
280 InputSet.getName() + "' needs to be floating point");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000281 return false;
282 }
Chris Lattner774ce292010-03-19 17:41:26 +0000283 return true;
Chris Lattner2cacec52010-03-15 06:00:16 +0000284}
285
286/// EnforceScalar - Remove all vector types from this.
287bool EEVT::TypeSet::EnforceScalar(TreePattern &TP) {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000288 if (TP.hasError())
289 return false;
290
Chris Lattner2cacec52010-03-15 06:00:16 +0000291 // If we know nothing, then get the full set.
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000292 if (TypeVec.empty())
Chris Lattner774ce292010-03-19 17:41:26 +0000293 return FillWithPossibleTypes(TP, isScalar, "scalar");
294
Chris Lattner2cacec52010-03-15 06:00:16 +0000295 if (!hasVectorTypes())
Chris Lattner774ce292010-03-19 17:41:26 +0000296 return false;
297
298 TypeSet InputSet(*this);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000299
Chris Lattner2cacec52010-03-15 06:00:16 +0000300 // Filter out all the vector types.
301 for (unsigned i = 0; i != TypeVec.size(); ++i)
Chris Lattner774ce292010-03-19 17:41:26 +0000302 if (!isScalar(TypeVec[i]))
Chris Lattner2cacec52010-03-15 06:00:16 +0000303 TypeVec.erase(TypeVec.begin()+i--);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000304
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000305 if (TypeVec.empty()) {
Chris Lattner2cacec52010-03-15 06:00:16 +0000306 TP.error("Type inference contradiction found, '" +
307 InputSet.getName() + "' needs to be scalar");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000308 return false;
309 }
Chris Lattner774ce292010-03-19 17:41:26 +0000310 return true;
Chris Lattner2cacec52010-03-15 06:00:16 +0000311}
312
313/// EnforceVector - Remove all vector types from this.
314bool EEVT::TypeSet::EnforceVector(TreePattern &TP) {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000315 if (TP.hasError())
316 return false;
317
Chris Lattner774ce292010-03-19 17:41:26 +0000318 // If we know nothing, then get the full set.
319 if (TypeVec.empty())
320 return FillWithPossibleTypes(TP, isVector, "vector");
321
Chris Lattner2cacec52010-03-15 06:00:16 +0000322 TypeSet InputSet(*this);
323 bool MadeChange = false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000324
Chris Lattner2cacec52010-03-15 06:00:16 +0000325 // Filter out all the scalar types.
326 for (unsigned i = 0; i != TypeVec.size(); ++i)
Chris Lattner774ce292010-03-19 17:41:26 +0000327 if (!isVector(TypeVec[i])) {
Chris Lattner2cacec52010-03-15 06:00:16 +0000328 TypeVec.erase(TypeVec.begin()+i--);
Chris Lattner774ce292010-03-19 17:41:26 +0000329 MadeChange = true;
330 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000331
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000332 if (TypeVec.empty()) {
Chris Lattner2cacec52010-03-15 06:00:16 +0000333 TP.error("Type inference contradiction found, '" +
334 InputSet.getName() + "' needs to be a vector");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000335 return false;
336 }
Chris Lattner2cacec52010-03-15 06:00:16 +0000337 return MadeChange;
338}
339
340
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000341
Chris Lattner2cacec52010-03-15 06:00:16 +0000342/// EnforceSmallerThan - 'this' must be a smaller VT than Other. Update
343/// this an other based on this information.
344bool EEVT::TypeSet::EnforceSmallerThan(EEVT::TypeSet &Other, TreePattern &TP) {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000345 if (TP.hasError())
346 return false;
347
Chris Lattner2cacec52010-03-15 06:00:16 +0000348 // Both operands must be integer or FP, but we don't care which.
349 bool MadeChange = false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000350
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000351 if (isCompletelyUnknown())
352 MadeChange = FillWithPossibleTypes(TP);
353
354 if (Other.isCompletelyUnknown())
355 MadeChange = Other.FillWithPossibleTypes(TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000356
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000357 // If one side is known to be integer or known to be FP but the other side has
358 // no information, get at least the type integrality info in there.
359 if (!hasFloatingPointTypes())
360 MadeChange |= Other.EnforceInteger(TP);
361 else if (!hasIntegerTypes())
362 MadeChange |= Other.EnforceFloatingPoint(TP);
363 if (!Other.hasFloatingPointTypes())
364 MadeChange |= EnforceInteger(TP);
365 else if (!Other.hasIntegerTypes())
366 MadeChange |= EnforceFloatingPoint(TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000367
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000368 assert(!isCompletelyUnknown() && !Other.isCompletelyUnknown() &&
369 "Should have a type list now");
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000370
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000371 // If one contains vectors but the other doesn't pull vectors out.
372 if (!hasVectorTypes())
373 MadeChange |= Other.EnforceScalar(TP);
374 if (!hasVectorTypes())
375 MadeChange |= EnforceScalar(TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000376
David Greene9d7f0112011-02-01 19:12:32 +0000377 if (TypeVec.size() == 1 && Other.TypeVec.size() == 1) {
378 // If we are down to concrete types, this code does not currently
379 // handle nodes which have multiple types, where some types are
380 // integer, and some are fp. Assert that this is not the case.
381 assert(!(hasIntegerTypes() && hasFloatingPointTypes()) &&
382 !(Other.hasIntegerTypes() && Other.hasFloatingPointTypes()) &&
383 "SDTCisOpSmallerThanOp does not handle mixed int/fp types!");
384
385 // Otherwise, if these are both vector types, either this vector
386 // must have a larger bitsize than the other, or this element type
387 // must be larger than the other.
388 EVT Type(TypeVec[0]);
389 EVT OtherType(Other.TypeVec[0]);
390
391 if (hasVectorTypes() && Other.hasVectorTypes()) {
392 if (Type.getSizeInBits() >= OtherType.getSizeInBits())
393 if (Type.getVectorElementType().getSizeInBits()
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000394 >= OtherType.getVectorElementType().getSizeInBits()) {
David Greene9d7f0112011-02-01 19:12:32 +0000395 TP.error("Type inference contradiction found, '" +
396 getName() + "' element type not smaller than '" +
397 Other.getName() +"'!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000398 return false;
399 }
David Greene9d7f0112011-02-01 19:12:32 +0000400 }
401 else
402 // For scalar types, the bitsize of this type must be larger
403 // than that of the other.
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000404 if (Type.getSizeInBits() >= OtherType.getSizeInBits()) {
David Greene9d7f0112011-02-01 19:12:32 +0000405 TP.error("Type inference contradiction found, '" +
406 getName() + "' is not smaller than '" +
407 Other.getName() +"'!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000408 return false;
409 }
David Greene9d7f0112011-02-01 19:12:32 +0000410 }
411
412
413 // Handle int and fp as disjoint sets. This won't work for patterns
414 // that have mixed fp/int types but those are likely rare and would
415 // not have been accepted by this code previously.
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000416
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000417 // Okay, find the smallest type from the current set and remove it from the
418 // largest set.
David Greenec83e2032011-02-04 17:01:53 +0000419 MVT::SimpleValueType SmallestInt = MVT::LAST_VALUETYPE;
David Greene9d7f0112011-02-01 19:12:32 +0000420 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i)
421 if (isInteger(TypeVec[i])) {
422 SmallestInt = TypeVec[i];
423 break;
424 }
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000425 for (unsigned i = 1, e = TypeVec.size(); i != e; ++i)
David Greene9d7f0112011-02-01 19:12:32 +0000426 if (isInteger(TypeVec[i]) && TypeVec[i] < SmallestInt)
427 SmallestInt = TypeVec[i];
428
David Greenec83e2032011-02-04 17:01:53 +0000429 MVT::SimpleValueType SmallestFP = MVT::LAST_VALUETYPE;
David Greene9d7f0112011-02-01 19:12:32 +0000430 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i)
431 if (isFloatingPoint(TypeVec[i])) {
432 SmallestFP = TypeVec[i];
433 break;
434 }
435 for (unsigned i = 1, e = TypeVec.size(); i != e; ++i)
436 if (isFloatingPoint(TypeVec[i]) && TypeVec[i] < SmallestFP)
437 SmallestFP = TypeVec[i];
438
439 int OtherIntSize = 0;
440 int OtherFPSize = 0;
441 for (SmallVector<MVT::SimpleValueType, 2>::iterator TVI =
442 Other.TypeVec.begin();
443 TVI != Other.TypeVec.end();
444 /* NULL */) {
445 if (isInteger(*TVI)) {
446 ++OtherIntSize;
447 if (*TVI == SmallestInt) {
448 TVI = Other.TypeVec.erase(TVI);
449 --OtherIntSize;
450 MadeChange = true;
451 continue;
452 }
453 }
454 else if (isFloatingPoint(*TVI)) {
455 ++OtherFPSize;
456 if (*TVI == SmallestFP) {
457 TVI = Other.TypeVec.erase(TVI);
458 --OtherFPSize;
459 MadeChange = true;
460 continue;
461 }
462 }
463 ++TVI;
464 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000465
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000466 // If this is the only type in the large set, the constraint can never be
467 // satisfied.
David Greene9d7f0112011-02-01 19:12:32 +0000468 if ((Other.hasIntegerTypes() && OtherIntSize == 0)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000469 || (Other.hasFloatingPointTypes() && OtherFPSize == 0)) {
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000470 TP.error("Type inference contradiction found, '" +
471 Other.getName() + "' has nothing larger than '" + getName() +"'!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000472 return false;
473 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000474
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000475 // Okay, find the largest type in the Other set and remove it from the
476 // current set.
David Greenec83e2032011-02-04 17:01:53 +0000477 MVT::SimpleValueType LargestInt = MVT::Other;
David Greene9d7f0112011-02-01 19:12:32 +0000478 for (unsigned i = 0, e = Other.TypeVec.size(); i != e; ++i)
479 if (isInteger(Other.TypeVec[i])) {
480 LargestInt = Other.TypeVec[i];
481 break;
482 }
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000483 for (unsigned i = 1, e = Other.TypeVec.size(); i != e; ++i)
David Greene9d7f0112011-02-01 19:12:32 +0000484 if (isInteger(Other.TypeVec[i]) && Other.TypeVec[i] > LargestInt)
485 LargestInt = Other.TypeVec[i];
486
David Greenec83e2032011-02-04 17:01:53 +0000487 MVT::SimpleValueType LargestFP = MVT::Other;
David Greene9d7f0112011-02-01 19:12:32 +0000488 for (unsigned i = 0, e = Other.TypeVec.size(); i != e; ++i)
489 if (isFloatingPoint(Other.TypeVec[i])) {
490 LargestFP = Other.TypeVec[i];
491 break;
492 }
493 for (unsigned i = 1, e = Other.TypeVec.size(); i != e; ++i)
494 if (isFloatingPoint(Other.TypeVec[i]) && Other.TypeVec[i] > LargestFP)
495 LargestFP = Other.TypeVec[i];
496
497 int IntSize = 0;
498 int FPSize = 0;
499 for (SmallVector<MVT::SimpleValueType, 2>::iterator TVI =
500 TypeVec.begin();
501 TVI != TypeVec.end();
502 /* NULL */) {
503 if (isInteger(*TVI)) {
504 ++IntSize;
505 if (*TVI == LargestInt) {
506 TVI = TypeVec.erase(TVI);
507 --IntSize;
508 MadeChange = true;
509 continue;
510 }
511 }
512 else if (isFloatingPoint(*TVI)) {
513 ++FPSize;
514 if (*TVI == LargestFP) {
515 TVI = TypeVec.erase(TVI);
516 --FPSize;
517 MadeChange = true;
518 continue;
519 }
520 }
521 ++TVI;
522 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000523
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000524 // If this is the only type in the small set, the constraint can never be
525 // satisfied.
David Greene9d7f0112011-02-01 19:12:32 +0000526 if ((hasIntegerTypes() && IntSize == 0)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000527 || (hasFloatingPointTypes() && FPSize == 0)) {
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000528 TP.error("Type inference contradiction found, '" +
529 getName() + "' has nothing smaller than '" + Other.getName()+"'!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000530 return false;
531 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000532
Chris Lattner5a9b8fb2010-03-19 04:54:36 +0000533 return MadeChange;
Chris Lattner2cacec52010-03-15 06:00:16 +0000534}
535
536/// EnforceVectorEltTypeIs - 'this' is now constrainted to be a vector type
Chris Lattner66fb9d22010-03-24 00:01:16 +0000537/// whose element is specified by VTOperand.
538bool EEVT::TypeSet::EnforceVectorEltTypeIs(EEVT::TypeSet &VTOperand,
Chris Lattner2cacec52010-03-15 06:00:16 +0000539 TreePattern &TP) {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000540 if (TP.hasError())
541 return false;
542
Chris Lattner66fb9d22010-03-24 00:01:16 +0000543 // "This" must be a vector and "VTOperand" must be a scalar.
Chris Lattner2cacec52010-03-15 06:00:16 +0000544 bool MadeChange = false;
Chris Lattner66fb9d22010-03-24 00:01:16 +0000545 MadeChange |= EnforceVector(TP);
546 MadeChange |= VTOperand.EnforceScalar(TP);
547
548 // If we know the vector type, it forces the scalar to agree.
549 if (isConcrete()) {
550 EVT IVT = getConcrete();
551 IVT = IVT.getVectorElementType();
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000552 return MadeChange |
Chris Lattner66fb9d22010-03-24 00:01:16 +0000553 VTOperand.MergeInTypeInfo(IVT.getSimpleVT().SimpleTy, TP);
554 }
555
556 // If the scalar type is known, filter out vector types whose element types
557 // disagree.
558 if (!VTOperand.isConcrete())
559 return MadeChange;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000560
Chris Lattner66fb9d22010-03-24 00:01:16 +0000561 MVT::SimpleValueType VT = VTOperand.getConcrete();
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000562
Chris Lattner66fb9d22010-03-24 00:01:16 +0000563 TypeSet InputSet(*this);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000564
Chris Lattner66fb9d22010-03-24 00:01:16 +0000565 // Filter out all the types which don't have the right element type.
566 for (unsigned i = 0; i != TypeVec.size(); ++i) {
567 assert(isVector(TypeVec[i]) && "EnforceVector didn't work");
568 if (EVT(TypeVec[i]).getVectorElementType().getSimpleVT().SimpleTy != VT) {
Chris Lattner2cacec52010-03-15 06:00:16 +0000569 TypeVec.erase(TypeVec.begin()+i--);
570 MadeChange = true;
571 }
Chris Lattner66fb9d22010-03-24 00:01:16 +0000572 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000573
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000574 if (TypeVec.empty()) { // FIXME: Really want an SMLoc here!
Chris Lattner2cacec52010-03-15 06:00:16 +0000575 TP.error("Type inference contradiction found, forcing '" +
576 InputSet.getName() + "' to have a vector element");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000577 return false;
578 }
Chris Lattner2cacec52010-03-15 06:00:16 +0000579 return MadeChange;
580}
581
David Greene60322692011-01-24 20:53:18 +0000582/// EnforceVectorSubVectorTypeIs - 'this' is now constrainted to be a
583/// vector type specified by VTOperand.
584bool EEVT::TypeSet::EnforceVectorSubVectorTypeIs(EEVT::TypeSet &VTOperand,
585 TreePattern &TP) {
586 // "This" must be a vector and "VTOperand" must be a vector.
587 bool MadeChange = false;
588 MadeChange |= EnforceVector(TP);
589 MadeChange |= VTOperand.EnforceVector(TP);
590
591 // "This" must be larger than "VTOperand."
592 MadeChange |= VTOperand.EnforceSmallerThan(*this, TP);
593
594 // If we know the vector type, it forces the scalar types to agree.
595 if (isConcrete()) {
596 EVT IVT = getConcrete();
597 IVT = IVT.getVectorElementType();
598
599 EEVT::TypeSet EltTypeSet(IVT.getSimpleVT().SimpleTy, TP);
600 MadeChange |= VTOperand.EnforceVectorEltTypeIs(EltTypeSet, TP);
601 } else if (VTOperand.isConcrete()) {
602 EVT IVT = VTOperand.getConcrete();
603 IVT = IVT.getVectorElementType();
604
605 EEVT::TypeSet EltTypeSet(IVT.getSimpleVT().SimpleTy, TP);
606 MadeChange |= EnforceVectorEltTypeIs(EltTypeSet, TP);
607 }
608
609 return MadeChange;
610}
611
Chris Lattner2cacec52010-03-15 06:00:16 +0000612//===----------------------------------------------------------------------===//
613// Helpers for working with extended types.
Chris Lattner6cefb772008-01-05 22:25:12 +0000614
Scott Michel327d0652008-03-05 17:49:05 +0000615/// Dependent variable map for CodeGenDAGPattern variant generation
616typedef std::map<std::string, int> DepVarMap;
617
618/// Const iterator shorthand for DepVarMap
619typedef DepVarMap::const_iterator DepVarMap_citer;
620
Chris Lattner54379062011-04-17 21:38:24 +0000621static void FindDepVarsOf(TreePatternNode *N, DepVarMap &DepMap) {
Scott Michel327d0652008-03-05 17:49:05 +0000622 if (N->isLeaf()) {
Sean Silva3f7b7f82012-10-10 20:24:47 +0000623 if (isa<DefInit>(N->getLeafValue()))
Scott Michel327d0652008-03-05 17:49:05 +0000624 DepMap[N->getName()]++;
Scott Michel327d0652008-03-05 17:49:05 +0000625 } else {
626 for (size_t i = 0, e = N->getNumChildren(); i != e; ++i)
627 FindDepVarsOf(N->getChild(i), DepMap);
628 }
629}
Chris Lattner54379062011-04-17 21:38:24 +0000630
631/// Find dependent variables within child patterns
632static void FindDepVars(TreePatternNode *N, MultipleUseVarSet &DepVars) {
Scott Michel327d0652008-03-05 17:49:05 +0000633 DepVarMap depcounts;
634 FindDepVarsOf(N, depcounts);
635 for (DepVarMap_citer i = depcounts.begin(); i != depcounts.end(); ++i) {
Chris Lattner54379062011-04-17 21:38:24 +0000636 if (i->second > 1) // std::pair<std::string, int>
Scott Michel327d0652008-03-05 17:49:05 +0000637 DepVars.insert(i->first);
Scott Michel327d0652008-03-05 17:49:05 +0000638 }
639}
640
Daniel Dunbar6aa526b2010-10-08 02:07:22 +0000641#ifndef NDEBUG
Chris Lattner54379062011-04-17 21:38:24 +0000642/// Dump the dependent variable set:
643static void DumpDepVars(MultipleUseVarSet &DepVars) {
Scott Michel327d0652008-03-05 17:49:05 +0000644 if (DepVars.empty()) {
Chris Lattner569f1212009-08-23 04:44:11 +0000645 DEBUG(errs() << "<empty set>");
Scott Michel327d0652008-03-05 17:49:05 +0000646 } else {
Chris Lattner569f1212009-08-23 04:44:11 +0000647 DEBUG(errs() << "[ ");
Jim Grosbachbb168242010-10-08 18:13:57 +0000648 for (MultipleUseVarSet::const_iterator i = DepVars.begin(),
649 e = DepVars.end(); i != e; ++i) {
Chris Lattner569f1212009-08-23 04:44:11 +0000650 DEBUG(errs() << (*i) << " ");
Scott Michel327d0652008-03-05 17:49:05 +0000651 }
Chris Lattner569f1212009-08-23 04:44:11 +0000652 DEBUG(errs() << "]");
Scott Michel327d0652008-03-05 17:49:05 +0000653 }
654}
Daniel Dunbar6aa526b2010-10-08 02:07:22 +0000655#endif
656
Chris Lattner54379062011-04-17 21:38:24 +0000657
658//===----------------------------------------------------------------------===//
659// TreePredicateFn Implementation
660//===----------------------------------------------------------------------===//
661
Chris Lattner7ed13912011-04-17 22:05:17 +0000662/// TreePredicateFn constructor. Here 'N' is a subclass of PatFrag.
663TreePredicateFn::TreePredicateFn(TreePattern *N) : PatFragRec(N) {
664 assert((getPredCode().empty() || getImmCode().empty()) &&
665 ".td file corrupt: can't have a node predicate *and* an imm predicate");
666}
667
Chris Lattner54379062011-04-17 21:38:24 +0000668std::string TreePredicateFn::getPredCode() const {
Jakob Stoklund Olesen8dd6f0c2012-01-13 03:38:34 +0000669 return PatFragRec->getRecord()->getValueAsString("PredicateCode");
Chris Lattner54379062011-04-17 21:38:24 +0000670}
671
Chris Lattner7ed13912011-04-17 22:05:17 +0000672std::string TreePredicateFn::getImmCode() const {
Jakob Stoklund Olesen8dd6f0c2012-01-13 03:38:34 +0000673 return PatFragRec->getRecord()->getValueAsString("ImmediateCode");
Chris Lattner7ed13912011-04-17 22:05:17 +0000674}
675
Chris Lattner54379062011-04-17 21:38:24 +0000676
677/// isAlwaysTrue - Return true if this is a noop predicate.
678bool TreePredicateFn::isAlwaysTrue() const {
Chris Lattner7ed13912011-04-17 22:05:17 +0000679 return getPredCode().empty() && getImmCode().empty();
Chris Lattner54379062011-04-17 21:38:24 +0000680}
681
682/// Return the name to use in the generated code to reference this, this is
683/// "Predicate_foo" if from a pattern fragment "foo".
684std::string TreePredicateFn::getFnName() const {
685 return "Predicate_" + PatFragRec->getRecord()->getName();
686}
687
688/// getCodeToRunOnSDNode - Return the code for the function body that
689/// evaluates this predicate. The argument is expected to be in "Node",
690/// not N. This handles casting and conversion to a concrete node type as
691/// appropriate.
692std::string TreePredicateFn::getCodeToRunOnSDNode() const {
Chris Lattner7ed13912011-04-17 22:05:17 +0000693 // Handle immediate predicates first.
694 std::string ImmCode = getImmCode();
695 if (!ImmCode.empty()) {
696 std::string Result =
697 " int64_t Imm = cast<ConstantSDNode>(Node)->getSExtValue();\n";
Chris Lattner7ed13912011-04-17 22:05:17 +0000698 return Result + ImmCode;
699 }
700
701 // Handle arbitrary node predicates.
702 assert(!getPredCode().empty() && "Don't have any predicate code!");
Chris Lattner54379062011-04-17 21:38:24 +0000703 std::string ClassName;
704 if (PatFragRec->getOnlyTree()->isLeaf())
705 ClassName = "SDNode";
706 else {
707 Record *Op = PatFragRec->getOnlyTree()->getOperator();
708 ClassName = PatFragRec->getDAGPatterns().getSDNodeInfo(Op).getSDClassName();
709 }
710 std::string Result;
711 if (ClassName == "SDNode")
712 Result = " SDNode *N = Node;\n";
713 else
714 Result = " " + ClassName + "*N = cast<" + ClassName + ">(Node);\n";
715
716 return Result + getPredCode();
Scott Michel327d0652008-03-05 17:49:05 +0000717}
718
Chris Lattner6cefb772008-01-05 22:25:12 +0000719//===----------------------------------------------------------------------===//
Dan Gohman22bb3112008-08-22 00:20:26 +0000720// PatternToMatch implementation
721//
722
Chris Lattner48e86db2010-03-29 01:40:38 +0000723
724/// getPatternSize - Return the 'size' of this pattern. We want to match large
725/// patterns before small ones. This is used to determine the size of a
726/// pattern.
727static unsigned getPatternSize(const TreePatternNode *P,
728 const CodeGenDAGPatterns &CGP) {
729 unsigned Size = 3; // The node itself.
730 // If the root node is a ConstantSDNode, increases its size.
731 // e.g. (set R32:$dst, 0).
Sean Silva3f7b7f82012-10-10 20:24:47 +0000732 if (P->isLeaf() && isa<IntInit>(P->getLeafValue()))
Chris Lattner48e86db2010-03-29 01:40:38 +0000733 Size += 2;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000734
Chris Lattner48e86db2010-03-29 01:40:38 +0000735 // FIXME: This is a hack to statically increase the priority of patterns
736 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
737 // Later we can allow complexity / cost for each pattern to be (optionally)
738 // specified. To get best possible pattern match we'll need to dynamically
739 // calculate the complexity of all patterns a dag can potentially map to.
740 const ComplexPattern *AM = P->getComplexPatternInfo(CGP);
741 if (AM)
742 Size += AM->getNumOperands() * 3;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000743
Chris Lattner48e86db2010-03-29 01:40:38 +0000744 // If this node has some predicate function that must match, it adds to the
745 // complexity of this node.
746 if (!P->getPredicateFns().empty())
747 ++Size;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000748
Chris Lattner48e86db2010-03-29 01:40:38 +0000749 // Count children in the count if they are also nodes.
750 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
751 TreePatternNode *Child = P->getChild(i);
752 if (!Child->isLeaf() && Child->getNumTypes() &&
753 Child->getType(0) != MVT::Other)
754 Size += getPatternSize(Child, CGP);
755 else if (Child->isLeaf()) {
Sean Silva3f7b7f82012-10-10 20:24:47 +0000756 if (isa<IntInit>(Child->getLeafValue()))
Chris Lattner48e86db2010-03-29 01:40:38 +0000757 Size += 5; // Matches a ConstantSDNode (+3) and a specific value (+2).
758 else if (Child->getComplexPatternInfo(CGP))
759 Size += getPatternSize(Child, CGP);
760 else if (!Child->getPredicateFns().empty())
761 ++Size;
762 }
763 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000764
Chris Lattner48e86db2010-03-29 01:40:38 +0000765 return Size;
766}
767
768/// Compute the complexity metric for the input pattern. This roughly
769/// corresponds to the number of nodes that are covered.
770unsigned PatternToMatch::
771getPatternComplexity(const CodeGenDAGPatterns &CGP) const {
772 return getPatternSize(getSrcPattern(), CGP) + getAddedComplexity();
773}
774
775
Dan Gohman22bb3112008-08-22 00:20:26 +0000776/// getPredicateCheck - Return a single string containing all of this
777/// pattern's predicates concatenated with "&&" operators.
778///
779std::string PatternToMatch::getPredicateCheck() const {
780 std::string PredicateCheck;
781 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
Sean Silva6cfc8062012-10-10 20:24:43 +0000782 if (DefInit *Pred = dyn_cast<DefInit>(Predicates->getElement(i))) {
Dan Gohman22bb3112008-08-22 00:20:26 +0000783 Record *Def = Pred->getDef();
784 if (!Def->isSubClassOf("Predicate")) {
785#ifndef NDEBUG
786 Def->dump();
787#endif
Craig Topper655b8de2012-02-05 07:21:30 +0000788 llvm_unreachable("Unknown predicate type!");
Dan Gohman22bb3112008-08-22 00:20:26 +0000789 }
790 if (!PredicateCheck.empty())
791 PredicateCheck += " && ";
792 PredicateCheck += "(" + Def->getValueAsString("CondString") + ")";
793 }
794 }
795
796 return PredicateCheck;
797}
798
799//===----------------------------------------------------------------------===//
Chris Lattner6cefb772008-01-05 22:25:12 +0000800// SDTypeConstraint implementation
801//
802
803SDTypeConstraint::SDTypeConstraint(Record *R) {
804 OperandNo = R->getValueAsInt("OperandNum");
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000805
Chris Lattner6cefb772008-01-05 22:25:12 +0000806 if (R->isSubClassOf("SDTCisVT")) {
807 ConstraintType = SDTCisVT;
808 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
Chris Lattnerc8122612010-03-28 06:04:39 +0000809 if (x.SDTCisVT_Info.VT == MVT::isVoid)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000810 PrintFatalError(R->getLoc(), "Cannot use 'Void' as type to SDTCisVT");
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000811
Chris Lattner6cefb772008-01-05 22:25:12 +0000812 } else if (R->isSubClassOf("SDTCisPtrTy")) {
813 ConstraintType = SDTCisPtrTy;
814 } else if (R->isSubClassOf("SDTCisInt")) {
815 ConstraintType = SDTCisInt;
816 } else if (R->isSubClassOf("SDTCisFP")) {
817 ConstraintType = SDTCisFP;
Bob Wilson36e3e662009-08-12 22:30:59 +0000818 } else if (R->isSubClassOf("SDTCisVec")) {
819 ConstraintType = SDTCisVec;
Chris Lattner6cefb772008-01-05 22:25:12 +0000820 } else if (R->isSubClassOf("SDTCisSameAs")) {
821 ConstraintType = SDTCisSameAs;
822 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
823 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
824 ConstraintType = SDTCisVTSmallerThanOp;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000825 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum =
Chris Lattner6cefb772008-01-05 22:25:12 +0000826 R->getValueAsInt("OtherOperandNum");
827 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
828 ConstraintType = SDTCisOpSmallerThanOp;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000829 x.SDTCisOpSmallerThanOp_Info.BigOperandNum =
Chris Lattner6cefb772008-01-05 22:25:12 +0000830 R->getValueAsInt("BigOperandNum");
Nate Begemanb5af3342008-02-09 01:37:05 +0000831 } else if (R->isSubClassOf("SDTCisEltOfVec")) {
832 ConstraintType = SDTCisEltOfVec;
Chris Lattner2cacec52010-03-15 06:00:16 +0000833 x.SDTCisEltOfVec_Info.OtherOperandNum = R->getValueAsInt("OtherOpNum");
David Greene60322692011-01-24 20:53:18 +0000834 } else if (R->isSubClassOf("SDTCisSubVecOfVec")) {
835 ConstraintType = SDTCisSubVecOfVec;
836 x.SDTCisSubVecOfVec_Info.OtherOperandNum =
837 R->getValueAsInt("OtherOpNum");
Chris Lattner6cefb772008-01-05 22:25:12 +0000838 } else {
Daniel Dunbar1a551802009-07-03 00:10:29 +0000839 errs() << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n";
Chris Lattner6cefb772008-01-05 22:25:12 +0000840 exit(1);
841 }
842}
843
844/// getOperandNum - Return the node corresponding to operand #OpNo in tree
Chris Lattner2e68a022010-03-19 21:56:21 +0000845/// N, and the result number in ResNo.
846static TreePatternNode *getOperandNum(unsigned OpNo, TreePatternNode *N,
847 const SDNodeInfo &NodeInfo,
848 unsigned &ResNo) {
849 unsigned NumResults = NodeInfo.getNumResults();
850 if (OpNo < NumResults) {
851 ResNo = OpNo;
852 return N;
853 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000854
Chris Lattner2e68a022010-03-19 21:56:21 +0000855 OpNo -= NumResults;
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000856
Chris Lattner2e68a022010-03-19 21:56:21 +0000857 if (OpNo >= N->getNumChildren()) {
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000858 errs() << "Invalid operand number in type constraint "
Chris Lattner2e68a022010-03-19 21:56:21 +0000859 << (OpNo+NumResults) << " ";
Chris Lattner6cefb772008-01-05 22:25:12 +0000860 N->dump();
Daniel Dunbar1a551802009-07-03 00:10:29 +0000861 errs() << '\n';
Chris Lattner6cefb772008-01-05 22:25:12 +0000862 exit(1);
863 }
864
Chris Lattner2e68a022010-03-19 21:56:21 +0000865 return N->getChild(OpNo);
Chris Lattner6cefb772008-01-05 22:25:12 +0000866}
867
868/// ApplyTypeConstraint - Given a node in a pattern, apply this type
869/// constraint to the nodes operands. This returns true if it makes a
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000870/// change, false otherwise. If a type contradiction is found, flag an error.
Chris Lattner6cefb772008-01-05 22:25:12 +0000871bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
872 const SDNodeInfo &NodeInfo,
873 TreePattern &TP) const {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000874 if (TP.hasError())
875 return false;
876
Chris Lattner2e68a022010-03-19 21:56:21 +0000877 unsigned ResNo = 0; // The result number being referenced.
878 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000879
Chris Lattner6cefb772008-01-05 22:25:12 +0000880 switch (ConstraintType) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000881 case SDTCisVT:
882 // Operand must be a particular type.
Chris Lattnerd7349192010-03-19 21:37:09 +0000883 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP);
Chris Lattner2cacec52010-03-15 06:00:16 +0000884 case SDTCisPtrTy:
Chris Lattner6cefb772008-01-05 22:25:12 +0000885 // Operand must be same as target pointer type.
Chris Lattnerd7349192010-03-19 21:37:09 +0000886 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP);
Chris Lattner2cacec52010-03-15 06:00:16 +0000887 case SDTCisInt:
888 // Require it to be one of the legal integer VTs.
Chris Lattnerd7349192010-03-19 21:37:09 +0000889 return NodeToApply->getExtType(ResNo).EnforceInteger(TP);
Chris Lattner2cacec52010-03-15 06:00:16 +0000890 case SDTCisFP:
891 // Require it to be one of the legal fp VTs.
Chris Lattnerd7349192010-03-19 21:37:09 +0000892 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP);
Chris Lattner2cacec52010-03-15 06:00:16 +0000893 case SDTCisVec:
894 // Require it to be one of the legal vector VTs.
Chris Lattnerd7349192010-03-19 21:37:09 +0000895 return NodeToApply->getExtType(ResNo).EnforceVector(TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000896 case SDTCisSameAs: {
Chris Lattner2e68a022010-03-19 21:56:21 +0000897 unsigned OResNo = 0;
Chris Lattner6cefb772008-01-05 22:25:12 +0000898 TreePatternNode *OtherNode =
Chris Lattner2e68a022010-03-19 21:56:21 +0000899 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NodeInfo, OResNo);
Chris Lattnerd7349192010-03-19 21:37:09 +0000900 return NodeToApply->UpdateNodeType(OResNo, OtherNode->getExtType(ResNo),TP)|
901 OtherNode->UpdateNodeType(ResNo,NodeToApply->getExtType(OResNo),TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000902 }
903 case SDTCisVTSmallerThanOp: {
904 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must
905 // have an integer type that is smaller than the VT.
906 if (!NodeToApply->isLeaf() ||
Sean Silva3f7b7f82012-10-10 20:24:47 +0000907 !isa<DefInit>(NodeToApply->getLeafValue()) ||
David Greene05bce0b2011-07-29 22:43:06 +0000908 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000909 ->isSubClassOf("ValueType")) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000910 TP.error(N->getOperator()->getName() + " expects a VT operand!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +0000911 return false;
912 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000913 MVT::SimpleValueType VT =
David Greene05bce0b2011-07-29 22:43:06 +0000914 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000915
Chris Lattnercc878302010-03-24 00:06:46 +0000916 EEVT::TypeSet TypeListTmp(VT, TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000917
Chris Lattner2e68a022010-03-19 21:56:21 +0000918 unsigned OResNo = 0;
Chris Lattner6cefb772008-01-05 22:25:12 +0000919 TreePatternNode *OtherNode =
Chris Lattner2e68a022010-03-19 21:56:21 +0000920 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N, NodeInfo,
921 OResNo);
Chris Lattner2cacec52010-03-15 06:00:16 +0000922
Chris Lattnercc878302010-03-24 00:06:46 +0000923 return TypeListTmp.EnforceSmallerThan(OtherNode->getExtType(OResNo), TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000924 }
925 case SDTCisOpSmallerThanOp: {
Chris Lattner2e68a022010-03-19 21:56:21 +0000926 unsigned BResNo = 0;
Chris Lattner6cefb772008-01-05 22:25:12 +0000927 TreePatternNode *BigOperand =
Chris Lattner2e68a022010-03-19 21:56:21 +0000928 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NodeInfo,
929 BResNo);
Chris Lattnerd7349192010-03-19 21:37:09 +0000930 return NodeToApply->getExtType(ResNo).
931 EnforceSmallerThan(BigOperand->getExtType(BResNo), TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000932 }
Nate Begemanb5af3342008-02-09 01:37:05 +0000933 case SDTCisEltOfVec: {
Chris Lattner2e68a022010-03-19 21:56:21 +0000934 unsigned VResNo = 0;
Chris Lattner2cacec52010-03-15 06:00:16 +0000935 TreePatternNode *VecOperand =
Chris Lattner2e68a022010-03-19 21:56:21 +0000936 getOperandNum(x.SDTCisEltOfVec_Info.OtherOperandNum, N, NodeInfo,
937 VResNo);
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000938
Chris Lattner66fb9d22010-03-24 00:01:16 +0000939 // Filter vector types out of VecOperand that don't have the right element
940 // type.
941 return VecOperand->getExtType(VResNo).
942 EnforceVectorEltTypeIs(NodeToApply->getExtType(ResNo), TP);
Nate Begemanb5af3342008-02-09 01:37:05 +0000943 }
David Greene60322692011-01-24 20:53:18 +0000944 case SDTCisSubVecOfVec: {
945 unsigned VResNo = 0;
946 TreePatternNode *BigVecOperand =
947 getOperandNum(x.SDTCisSubVecOfVec_Info.OtherOperandNum, N, NodeInfo,
948 VResNo);
949
950 // Filter vector types out of BigVecOperand that don't have the
951 // right subvector type.
952 return BigVecOperand->getExtType(VResNo).
953 EnforceVectorSubVectorTypeIs(NodeToApply->getExtType(ResNo), TP);
954 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +0000955 }
David Blaikie58bd1512012-01-17 07:00:13 +0000956 llvm_unreachable("Invalid ConstraintType!");
Chris Lattner6cefb772008-01-05 22:25:12 +0000957}
958
Jakob Stoklund Olesen4c169162013-03-18 04:08:07 +0000959// Update the node type to match an instruction operand or result as specified
960// in the ins or outs lists on the instruction definition. Return true if the
961// type was actually changed.
962bool TreePatternNode::UpdateNodeTypeFromInst(unsigned ResNo,
963 Record *Operand,
964 TreePattern &TP) {
965 // The 'unknown' operand indicates that types should be inferred from the
966 // context.
967 if (Operand->isSubClassOf("unknown_class"))
968 return false;
969
970 // The Operand class specifies a type directly.
971 if (Operand->isSubClassOf("Operand"))
972 return UpdateNodeType(ResNo, getValueType(Operand->getValueAsDef("Type")),
973 TP);
974
975 // PointerLikeRegClass has a type that is determined at runtime.
976 if (Operand->isSubClassOf("PointerLikeRegClass"))
977 return UpdateNodeType(ResNo, MVT::iPTR, TP);
978
979 // Both RegisterClass and RegisterOperand operands derive their types from a
980 // register class def.
981 Record *RC = 0;
982 if (Operand->isSubClassOf("RegisterClass"))
983 RC = Operand;
984 else if (Operand->isSubClassOf("RegisterOperand"))
985 RC = Operand->getValueAsDef("RegClass");
986
987 assert(RC && "Unknown operand type");
988 CodeGenTarget &Tgt = TP.getDAGPatterns().getTargetInfo();
989 return UpdateNodeType(ResNo, Tgt.getRegisterClass(RC).getValueTypes(), TP);
990}
991
992
Chris Lattner6cefb772008-01-05 22:25:12 +0000993//===----------------------------------------------------------------------===//
994// SDNodeInfo implementation
995//
996SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
997 EnumName = R->getValueAsString("Opcode");
998 SDClassName = R->getValueAsString("SDClass");
999 Record *TypeProfile = R->getValueAsDef("TypeProfile");
1000 NumResults = TypeProfile->getValueAsInt("NumResults");
1001 NumOperands = TypeProfile->getValueAsInt("NumOperands");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001002
Chris Lattner6cefb772008-01-05 22:25:12 +00001003 // Parse the properties.
1004 Properties = 0;
1005 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
1006 for (unsigned i = 0, e = PropList.size(); i != e; ++i) {
1007 if (PropList[i]->getName() == "SDNPCommutative") {
1008 Properties |= 1 << SDNPCommutative;
1009 } else if (PropList[i]->getName() == "SDNPAssociative") {
1010 Properties |= 1 << SDNPAssociative;
1011 } else if (PropList[i]->getName() == "SDNPHasChain") {
1012 Properties |= 1 << SDNPHasChain;
Chris Lattner036609b2010-12-23 18:28:41 +00001013 } else if (PropList[i]->getName() == "SDNPOutGlue") {
1014 Properties |= 1 << SDNPOutGlue;
1015 } else if (PropList[i]->getName() == "SDNPInGlue") {
1016 Properties |= 1 << SDNPInGlue;
1017 } else if (PropList[i]->getName() == "SDNPOptInGlue") {
1018 Properties |= 1 << SDNPOptInGlue;
Chris Lattnerc8478d82008-01-06 06:44:58 +00001019 } else if (PropList[i]->getName() == "SDNPMayStore") {
1020 Properties |= 1 << SDNPMayStore;
Chris Lattner710e9952008-01-10 04:38:57 +00001021 } else if (PropList[i]->getName() == "SDNPMayLoad") {
1022 Properties |= 1 << SDNPMayLoad;
Chris Lattnerbc0b9f72008-01-10 05:39:30 +00001023 } else if (PropList[i]->getName() == "SDNPSideEffect") {
1024 Properties |= 1 << SDNPSideEffect;
Mon P Wang28873102008-06-25 08:15:39 +00001025 } else if (PropList[i]->getName() == "SDNPMemOperand") {
1026 Properties |= 1 << SDNPMemOperand;
Chris Lattnere8cabf32010-03-19 05:07:09 +00001027 } else if (PropList[i]->getName() == "SDNPVariadic") {
1028 Properties |= 1 << SDNPVariadic;
Chris Lattner6cefb772008-01-05 22:25:12 +00001029 } else {
Daniel Dunbar1a551802009-07-03 00:10:29 +00001030 errs() << "Unknown SD Node property '" << PropList[i]->getName()
1031 << "' on node '" << R->getName() << "'!\n";
Chris Lattner6cefb772008-01-05 22:25:12 +00001032 exit(1);
1033 }
1034 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001035
1036
Chris Lattner6cefb772008-01-05 22:25:12 +00001037 // Parse the type constraints.
1038 std::vector<Record*> ConstraintList =
1039 TypeProfile->getValueAsListOfDefs("Constraints");
1040 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
1041}
1042
Chris Lattner22579812010-02-28 00:22:30 +00001043/// getKnownType - If the type constraints on this node imply a fixed type
1044/// (e.g. all stores return void, etc), then return it as an
Chris Lattneraac5b5b2010-03-19 01:14:27 +00001045/// MVT::SimpleValueType. Otherwise, return EEVT::Other.
Chris Lattner084df622010-03-24 00:41:19 +00001046MVT::SimpleValueType SDNodeInfo::getKnownType(unsigned ResNo) const {
Chris Lattner22579812010-02-28 00:22:30 +00001047 unsigned NumResults = getNumResults();
1048 assert(NumResults <= 1 &&
1049 "We only work with nodes with zero or one result so far!");
Chris Lattner084df622010-03-24 00:41:19 +00001050 assert(ResNo == 0 && "Only handles single result nodes so far");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001051
Chris Lattner22579812010-02-28 00:22:30 +00001052 for (unsigned i = 0, e = TypeConstraints.size(); i != e; ++i) {
1053 // Make sure that this applies to the correct node result.
1054 if (TypeConstraints[i].OperandNo >= NumResults) // FIXME: need value #
1055 continue;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001056
Chris Lattner22579812010-02-28 00:22:30 +00001057 switch (TypeConstraints[i].ConstraintType) {
1058 default: break;
1059 case SDTypeConstraint::SDTCisVT:
1060 return TypeConstraints[i].x.SDTCisVT_Info.VT;
1061 case SDTypeConstraint::SDTCisPtrTy:
1062 return MVT::iPTR;
1063 }
1064 }
Chris Lattneraac5b5b2010-03-19 01:14:27 +00001065 return MVT::Other;
Chris Lattner22579812010-02-28 00:22:30 +00001066}
1067
Chris Lattner6cefb772008-01-05 22:25:12 +00001068//===----------------------------------------------------------------------===//
1069// TreePatternNode implementation
1070//
1071
1072TreePatternNode::~TreePatternNode() {
1073#if 0 // FIXME: implement refcounted tree nodes!
1074 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1075 delete getChild(i);
1076#endif
1077}
1078
Chris Lattnerd7349192010-03-19 21:37:09 +00001079static unsigned GetNumNodeResults(Record *Operator, CodeGenDAGPatterns &CDP) {
1080 if (Operator->getName() == "set" ||
Chris Lattner310adf12010-03-27 02:53:27 +00001081 Operator->getName() == "implicit")
Chris Lattnerd7349192010-03-19 21:37:09 +00001082 return 0; // All return nothing.
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001083
Chris Lattner93dc92e2010-03-22 20:56:36 +00001084 if (Operator->isSubClassOf("Intrinsic"))
1085 return CDP.getIntrinsic(Operator).IS.RetVTs.size();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001086
Chris Lattnerd7349192010-03-19 21:37:09 +00001087 if (Operator->isSubClassOf("SDNode"))
1088 return CDP.getSDNodeInfo(Operator).getNumResults();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001089
Chris Lattnerd7349192010-03-19 21:37:09 +00001090 if (Operator->isSubClassOf("PatFrag")) {
1091 // If we've already parsed this pattern fragment, get it. Otherwise, handle
1092 // the forward reference case where one pattern fragment references another
1093 // before it is processed.
1094 if (TreePattern *PFRec = CDP.getPatternFragmentIfRead(Operator))
1095 return PFRec->getOnlyTree()->getNumTypes();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001096
Chris Lattnerd7349192010-03-19 21:37:09 +00001097 // Get the result tree.
David Greene05bce0b2011-07-29 22:43:06 +00001098 DagInit *Tree = Operator->getValueAsDag("Fragment");
Chris Lattnerd7349192010-03-19 21:37:09 +00001099 Record *Op = 0;
Sean Silva3f7b7f82012-10-10 20:24:47 +00001100 if (Tree)
1101 if (DefInit *DI = dyn_cast<DefInit>(Tree->getOperator()))
1102 Op = DI->getDef();
Chris Lattnerd7349192010-03-19 21:37:09 +00001103 assert(Op && "Invalid Fragment");
1104 return GetNumNodeResults(Op, CDP);
1105 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001106
Chris Lattnerd7349192010-03-19 21:37:09 +00001107 if (Operator->isSubClassOf("Instruction")) {
1108 CodeGenInstruction &InstInfo = CDP.getTargetInfo().getInstruction(Operator);
Chris Lattner0be6fe72010-03-27 19:15:02 +00001109
1110 // FIXME: Should allow access to all the results here.
Chris Lattnerc240bb02010-11-01 04:03:32 +00001111 unsigned NumDefsToAdd = InstInfo.Operands.NumDefs ? 1 : 0;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001112
Chris Lattner9414ae52010-03-27 20:09:24 +00001113 // Add on one implicit def if it has a resolvable type.
1114 if (InstInfo.HasOneImplicitDefWithKnownVT(CDP.getTargetInfo()) !=MVT::Other)
1115 ++NumDefsToAdd;
Chris Lattner0be6fe72010-03-27 19:15:02 +00001116 return NumDefsToAdd;
Chris Lattnerd7349192010-03-19 21:37:09 +00001117 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001118
Chris Lattnerd7349192010-03-19 21:37:09 +00001119 if (Operator->isSubClassOf("SDNodeXForm"))
1120 return 1; // FIXME: Generalize SDNodeXForm
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001121
Chris Lattnerd7349192010-03-19 21:37:09 +00001122 Operator->dump();
1123 errs() << "Unhandled node in GetNumNodeResults\n";
1124 exit(1);
1125}
1126
1127void TreePatternNode::print(raw_ostream &OS) const {
1128 if (isLeaf())
1129 OS << *getLeafValue();
1130 else
1131 OS << '(' << getOperator()->getName();
1132
1133 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1134 OS << ':' << getExtType(i).getName();
Chris Lattner6cefb772008-01-05 22:25:12 +00001135
1136 if (!isLeaf()) {
1137 if (getNumChildren() != 0) {
1138 OS << " ";
1139 getChild(0)->print(OS);
1140 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
1141 OS << ", ";
1142 getChild(i)->print(OS);
1143 }
1144 }
1145 OS << ")";
1146 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001147
Dan Gohman0540e172008-10-15 06:17:21 +00001148 for (unsigned i = 0, e = PredicateFns.size(); i != e; ++i)
Chris Lattner54379062011-04-17 21:38:24 +00001149 OS << "<<P:" << PredicateFns[i].getFnName() << ">>";
Chris Lattner6cefb772008-01-05 22:25:12 +00001150 if (TransformFn)
1151 OS << "<<X:" << TransformFn->getName() << ">>";
1152 if (!getName().empty())
1153 OS << ":$" << getName();
1154
1155}
1156void TreePatternNode::dump() const {
Daniel Dunbar1a551802009-07-03 00:10:29 +00001157 print(errs());
Chris Lattner6cefb772008-01-05 22:25:12 +00001158}
1159
Scott Michel327d0652008-03-05 17:49:05 +00001160/// isIsomorphicTo - Return true if this node is recursively
1161/// isomorphic to the specified node. For this comparison, the node's
1162/// entire state is considered. The assigned name is ignored, since
1163/// nodes with differing names are considered isomorphic. However, if
1164/// the assigned name is present in the dependent variable set, then
1165/// the assigned name is considered significant and the node is
1166/// isomorphic if the names match.
1167bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N,
1168 const MultipleUseVarSet &DepVars) const {
Chris Lattner6cefb772008-01-05 22:25:12 +00001169 if (N == this) return true;
Chris Lattnerd7349192010-03-19 21:37:09 +00001170 if (N->isLeaf() != isLeaf() || getExtTypes() != N->getExtTypes() ||
Dan Gohman0540e172008-10-15 06:17:21 +00001171 getPredicateFns() != N->getPredicateFns() ||
Chris Lattner6cefb772008-01-05 22:25:12 +00001172 getTransformFn() != N->getTransformFn())
1173 return false;
1174
1175 if (isLeaf()) {
Sean Silva6cfc8062012-10-10 20:24:43 +00001176 if (DefInit *DI = dyn_cast<DefInit>(getLeafValue())) {
1177 if (DefInit *NDI = dyn_cast<DefInit>(N->getLeafValue())) {
Chris Lattner71a2cb22008-03-20 01:22:40 +00001178 return ((DI->getDef() == NDI->getDef())
1179 && (DepVars.find(getName()) == DepVars.end()
1180 || getName() == N->getName()));
Scott Michel327d0652008-03-05 17:49:05 +00001181 }
1182 }
Chris Lattner6cefb772008-01-05 22:25:12 +00001183 return getLeafValue() == N->getLeafValue();
1184 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001185
Chris Lattner6cefb772008-01-05 22:25:12 +00001186 if (N->getOperator() != getOperator() ||
1187 N->getNumChildren() != getNumChildren()) return false;
1188 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Scott Michel327d0652008-03-05 17:49:05 +00001189 if (!getChild(i)->isIsomorphicTo(N->getChild(i), DepVars))
Chris Lattner6cefb772008-01-05 22:25:12 +00001190 return false;
1191 return true;
1192}
1193
1194/// clone - Make a copy of this tree and all of its children.
1195///
1196TreePatternNode *TreePatternNode::clone() const {
1197 TreePatternNode *New;
1198 if (isLeaf()) {
Chris Lattnerd7349192010-03-19 21:37:09 +00001199 New = new TreePatternNode(getLeafValue(), getNumTypes());
Chris Lattner6cefb772008-01-05 22:25:12 +00001200 } else {
1201 std::vector<TreePatternNode*> CChildren;
1202 CChildren.reserve(Children.size());
1203 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1204 CChildren.push_back(getChild(i)->clone());
Chris Lattnerd7349192010-03-19 21:37:09 +00001205 New = new TreePatternNode(getOperator(), CChildren, getNumTypes());
Chris Lattner6cefb772008-01-05 22:25:12 +00001206 }
1207 New->setName(getName());
Chris Lattnerd7349192010-03-19 21:37:09 +00001208 New->Types = Types;
Dan Gohman0540e172008-10-15 06:17:21 +00001209 New->setPredicateFns(getPredicateFns());
Chris Lattner6cefb772008-01-05 22:25:12 +00001210 New->setTransformFn(getTransformFn());
1211 return New;
1212}
1213
Chris Lattner47661322010-02-14 22:22:58 +00001214/// RemoveAllTypes - Recursively strip all the types of this tree.
1215void TreePatternNode::RemoveAllTypes() {
Chris Lattnerd7349192010-03-19 21:37:09 +00001216 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1217 Types[i] = EEVT::TypeSet(); // Reset to unknown type.
Chris Lattner47661322010-02-14 22:22:58 +00001218 if (isLeaf()) return;
1219 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1220 getChild(i)->RemoveAllTypes();
1221}
1222
1223
Chris Lattner6cefb772008-01-05 22:25:12 +00001224/// SubstituteFormalArguments - Replace the formal arguments in this tree
1225/// with actual values specified by ArgMap.
1226void TreePatternNode::
1227SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
1228 if (isLeaf()) return;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001229
Chris Lattner6cefb772008-01-05 22:25:12 +00001230 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
1231 TreePatternNode *Child = getChild(i);
1232 if (Child->isLeaf()) {
David Greene05bce0b2011-07-29 22:43:06 +00001233 Init *Val = Child->getLeafValue();
Sean Silva3f7b7f82012-10-10 20:24:47 +00001234 if (isa<DefInit>(Val) &&
1235 cast<DefInit>(Val)->getDef()->getName() == "node") {
Chris Lattner6cefb772008-01-05 22:25:12 +00001236 // We found a use of a formal argument, replace it with its value.
Dan Gohman0540e172008-10-15 06:17:21 +00001237 TreePatternNode *NewChild = ArgMap[Child->getName()];
1238 assert(NewChild && "Couldn't find formal argument!");
1239 assert((Child->getPredicateFns().empty() ||
1240 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1241 "Non-empty child predicate clobbered!");
1242 setChild(i, NewChild);
Chris Lattner6cefb772008-01-05 22:25:12 +00001243 }
1244 } else {
1245 getChild(i)->SubstituteFormalArguments(ArgMap);
1246 }
1247 }
1248}
1249
1250
1251/// InlinePatternFragments - If this pattern refers to any pattern
1252/// fragments, inline them into place, giving us a pattern without any
1253/// PatFrag references.
1254TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001255 if (TP.hasError())
Kaelyn Uhrain50a61022012-10-25 21:25:08 +00001256 return 0;
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001257
1258 if (isLeaf())
1259 return this; // nothing to do.
Chris Lattner6cefb772008-01-05 22:25:12 +00001260 Record *Op = getOperator();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001261
Chris Lattner6cefb772008-01-05 22:25:12 +00001262 if (!Op->isSubClassOf("PatFrag")) {
1263 // Just recursively inline children nodes.
Dan Gohman0540e172008-10-15 06:17:21 +00001264 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
1265 TreePatternNode *Child = getChild(i);
1266 TreePatternNode *NewChild = Child->InlinePatternFragments(TP);
1267
1268 assert((Child->getPredicateFns().empty() ||
1269 NewChild->getPredicateFns() == Child->getPredicateFns()) &&
1270 "Non-empty child predicate clobbered!");
1271
1272 setChild(i, NewChild);
1273 }
Chris Lattner6cefb772008-01-05 22:25:12 +00001274 return this;
1275 }
1276
1277 // Otherwise, we found a reference to a fragment. First, look up its
1278 // TreePattern record.
1279 TreePattern *Frag = TP.getDAGPatterns().getPatternFragment(Op);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001280
Chris Lattner6cefb772008-01-05 22:25:12 +00001281 // Verify that we are passing the right number of operands.
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001282 if (Frag->getNumArgs() != Children.size()) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001283 TP.error("'" + Op->getName() + "' fragment requires " +
1284 utostr(Frag->getNumArgs()) + " operands!");
Kaelyn Uhrain50a61022012-10-25 21:25:08 +00001285 return 0;
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001286 }
Chris Lattner6cefb772008-01-05 22:25:12 +00001287
1288 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
1289
Chris Lattner54379062011-04-17 21:38:24 +00001290 TreePredicateFn PredFn(Frag);
1291 if (!PredFn.isAlwaysTrue())
1292 FragTree->addPredicateFn(PredFn);
Dan Gohman0540e172008-10-15 06:17:21 +00001293
Chris Lattner6cefb772008-01-05 22:25:12 +00001294 // Resolve formal arguments to their actual value.
1295 if (Frag->getNumArgs()) {
1296 // Compute the map of formal to actual arguments.
1297 std::map<std::string, TreePatternNode*> ArgMap;
1298 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
1299 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001300
Chris Lattner6cefb772008-01-05 22:25:12 +00001301 FragTree->SubstituteFormalArguments(ArgMap);
1302 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001303
Chris Lattner6cefb772008-01-05 22:25:12 +00001304 FragTree->setName(getName());
Chris Lattnerd7349192010-03-19 21:37:09 +00001305 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1306 FragTree->UpdateNodeType(i, getExtType(i), TP);
Dan Gohman0540e172008-10-15 06:17:21 +00001307
1308 // Transfer in the old predicates.
1309 for (unsigned i = 0, e = getPredicateFns().size(); i != e; ++i)
1310 FragTree->addPredicateFn(getPredicateFns()[i]);
1311
Chris Lattner6cefb772008-01-05 22:25:12 +00001312 // Get a new copy of this fragment to stitch into here.
1313 //delete this; // FIXME: implement refcounting!
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001314
Chris Lattner2ca698d2008-06-30 03:02:03 +00001315 // The fragment we inlined could have recursive inlining that is needed. See
1316 // if there are any pattern fragments in it and inline them as needed.
1317 return FragTree->InlinePatternFragments(TP);
Chris Lattner6cefb772008-01-05 22:25:12 +00001318}
1319
1320/// getImplicitType - Check to see if the specified record has an implicit
Nick Lewyckyfc4c2552009-06-17 04:23:52 +00001321/// type which should be applied to it. This will infer the type of register
Chris Lattner6cefb772008-01-05 22:25:12 +00001322/// references from the register file information, for example.
1323///
Chris Lattnerd7349192010-03-19 21:37:09 +00001324static EEVT::TypeSet getImplicitType(Record *R, unsigned ResNo,
1325 bool NotRegisters, TreePattern &TP) {
Owen Andersonbea6f612011-06-27 21:06:21 +00001326 // Check to see if this is a register operand.
1327 if (R->isSubClassOf("RegisterOperand")) {
1328 assert(ResNo == 0 && "Regoperand ref only has one result!");
1329 if (NotRegisters)
1330 return EEVT::TypeSet(); // Unknown.
1331 Record *RegClass = R->getValueAsDef("RegClass");
1332 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo();
1333 return EEVT::TypeSet(T.getRegisterClass(RegClass).getValueTypes());
1334 }
1335
Chris Lattner2cacec52010-03-15 06:00:16 +00001336 // Check to see if this is a register or a register class.
Chris Lattner6cefb772008-01-05 22:25:12 +00001337 if (R->isSubClassOf("RegisterClass")) {
Chris Lattner640a3f52010-03-23 23:50:31 +00001338 assert(ResNo == 0 && "Regclass ref only has one result!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001339 if (NotRegisters)
Chris Lattner2cacec52010-03-15 06:00:16 +00001340 return EEVT::TypeSet(); // Unknown.
1341 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo();
1342 return EEVT::TypeSet(T.getRegisterClass(R).getValueTypes());
Chris Lattner640a3f52010-03-23 23:50:31 +00001343 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001344
Chris Lattner640a3f52010-03-23 23:50:31 +00001345 if (R->isSubClassOf("PatFrag")) {
1346 assert(ResNo == 0 && "FIXME: PatFrag with multiple results?");
Chris Lattner6cefb772008-01-05 22:25:12 +00001347 // Pattern fragment types will be resolved when they are inlined.
Chris Lattner2cacec52010-03-15 06:00:16 +00001348 return EEVT::TypeSet(); // Unknown.
Chris Lattner640a3f52010-03-23 23:50:31 +00001349 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001350
Chris Lattner640a3f52010-03-23 23:50:31 +00001351 if (R->isSubClassOf("Register")) {
1352 assert(ResNo == 0 && "Registers only produce one result!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001353 if (NotRegisters)
Chris Lattner2cacec52010-03-15 06:00:16 +00001354 return EEVT::TypeSet(); // Unknown.
Chris Lattner6cefb772008-01-05 22:25:12 +00001355 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo();
Chris Lattner2cacec52010-03-15 06:00:16 +00001356 return EEVT::TypeSet(T.getRegisterVTs(R));
Chris Lattner640a3f52010-03-23 23:50:31 +00001357 }
Jakob Stoklund Olesen73ea7bf2010-05-24 14:48:12 +00001358
1359 if (R->isSubClassOf("SubRegIndex")) {
1360 assert(ResNo == 0 && "SubRegisterIndices only produce one result!");
1361 return EEVT::TypeSet();
1362 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001363
Chris Lattner640a3f52010-03-23 23:50:31 +00001364 if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
1365 assert(ResNo == 0 && "This node only has one result!");
Chris Lattner6cefb772008-01-05 22:25:12 +00001366 // Using a VTSDNode or CondCodeSDNode.
Chris Lattner2cacec52010-03-15 06:00:16 +00001367 return EEVT::TypeSet(MVT::Other, TP);
Chris Lattner640a3f52010-03-23 23:50:31 +00001368 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001369
Chris Lattner640a3f52010-03-23 23:50:31 +00001370 if (R->isSubClassOf("ComplexPattern")) {
1371 assert(ResNo == 0 && "FIXME: ComplexPattern with multiple results?");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001372 if (NotRegisters)
Chris Lattner2cacec52010-03-15 06:00:16 +00001373 return EEVT::TypeSet(); // Unknown.
1374 return EEVT::TypeSet(TP.getDAGPatterns().getComplexPattern(R).getValueType(),
1375 TP);
Chris Lattner640a3f52010-03-23 23:50:31 +00001376 }
1377 if (R->isSubClassOf("PointerLikeRegClass")) {
1378 assert(ResNo == 0 && "Regclass can only have one result!");
Chris Lattner2cacec52010-03-15 06:00:16 +00001379 return EEVT::TypeSet(MVT::iPTR, TP);
Chris Lattner640a3f52010-03-23 23:50:31 +00001380 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001381
Chris Lattner640a3f52010-03-23 23:50:31 +00001382 if (R->getName() == "node" || R->getName() == "srcvalue" ||
1383 R->getName() == "zero_reg") {
Chris Lattner6cefb772008-01-05 22:25:12 +00001384 // Placeholder.
Chris Lattner2cacec52010-03-15 06:00:16 +00001385 return EEVT::TypeSet(); // Unknown.
Chris Lattner6cefb772008-01-05 22:25:12 +00001386 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001387
Chris Lattner6cefb772008-01-05 22:25:12 +00001388 TP.error("Unknown node flavor used in pattern: " + R->getName());
Chris Lattner2cacec52010-03-15 06:00:16 +00001389 return EEVT::TypeSet(MVT::Other, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +00001390}
1391
Chris Lattnere67bde52008-01-06 05:36:50 +00001392
1393/// getIntrinsicInfo - If this node corresponds to an intrinsic, return the
1394/// CodeGenIntrinsic information for it, otherwise return a null pointer.
1395const CodeGenIntrinsic *TreePatternNode::
1396getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const {
1397 if (getOperator() != CDP.get_intrinsic_void_sdnode() &&
1398 getOperator() != CDP.get_intrinsic_w_chain_sdnode() &&
1399 getOperator() != CDP.get_intrinsic_wo_chain_sdnode())
1400 return 0;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001401
Sean Silva3f7b7f82012-10-10 20:24:47 +00001402 unsigned IID = cast<IntInit>(getChild(0)->getLeafValue())->getValue();
Chris Lattnere67bde52008-01-06 05:36:50 +00001403 return &CDP.getIntrinsicInfo(IID);
1404}
1405
Chris Lattner47661322010-02-14 22:22:58 +00001406/// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
1407/// return the ComplexPattern information, otherwise return null.
1408const ComplexPattern *
1409TreePatternNode::getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const {
1410 if (!isLeaf()) return 0;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001411
Sean Silva6cfc8062012-10-10 20:24:43 +00001412 DefInit *DI = dyn_cast<DefInit>(getLeafValue());
Chris Lattner47661322010-02-14 22:22:58 +00001413 if (DI && DI->getDef()->isSubClassOf("ComplexPattern"))
1414 return &CGP.getComplexPattern(DI->getDef());
1415 return 0;
1416}
1417
1418/// NodeHasProperty - Return true if this node has the specified property.
1419bool TreePatternNode::NodeHasProperty(SDNP Property,
Chris Lattner751d5aa2010-02-14 22:33:49 +00001420 const CodeGenDAGPatterns &CGP) const {
Chris Lattner47661322010-02-14 22:22:58 +00001421 if (isLeaf()) {
1422 if (const ComplexPattern *CP = getComplexPatternInfo(CGP))
1423 return CP->hasProperty(Property);
1424 return false;
1425 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001426
Chris Lattner47661322010-02-14 22:22:58 +00001427 Record *Operator = getOperator();
1428 if (!Operator->isSubClassOf("SDNode")) return false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001429
Chris Lattner47661322010-02-14 22:22:58 +00001430 return CGP.getSDNodeInfo(Operator).hasProperty(Property);
1431}
1432
1433
1434
1435
1436/// TreeHasProperty - Return true if any node in this tree has the specified
1437/// property.
1438bool TreePatternNode::TreeHasProperty(SDNP Property,
Chris Lattner751d5aa2010-02-14 22:33:49 +00001439 const CodeGenDAGPatterns &CGP) const {
Chris Lattner47661322010-02-14 22:22:58 +00001440 if (NodeHasProperty(Property, CGP))
1441 return true;
1442 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1443 if (getChild(i)->TreeHasProperty(Property, CGP))
1444 return true;
1445 return false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001446}
Chris Lattner47661322010-02-14 22:22:58 +00001447
Evan Cheng6bd95672008-06-16 20:29:38 +00001448/// isCommutativeIntrinsic - Return true if the node corresponds to a
1449/// commutative intrinsic.
1450bool
1451TreePatternNode::isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const {
1452 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CDP))
1453 return Int->isCommutative;
1454 return false;
1455}
1456
Chris Lattnere67bde52008-01-06 05:36:50 +00001457
Bob Wilson6c01ca92009-01-05 17:23:09 +00001458/// ApplyTypeConstraints - Apply all of the type constraints relevant to
Chris Lattner6cefb772008-01-05 22:25:12 +00001459/// this node and its children in the tree. This returns true if it makes a
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001460/// change, false otherwise. If a type contradiction is found, flag an error.
Chris Lattner6cefb772008-01-05 22:25:12 +00001461bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001462 if (TP.hasError())
1463 return false;
1464
Chris Lattnerfe718932008-01-06 01:10:31 +00001465 CodeGenDAGPatterns &CDP = TP.getDAGPatterns();
Chris Lattner6cefb772008-01-05 22:25:12 +00001466 if (isLeaf()) {
Sean Silva6cfc8062012-10-10 20:24:43 +00001467 if (DefInit *DI = dyn_cast<DefInit>(getLeafValue())) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001468 // If it's a regclass or something else known, include the type.
Chris Lattnerd7349192010-03-19 21:37:09 +00001469 bool MadeChange = false;
1470 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1471 MadeChange |= UpdateNodeType(i, getImplicitType(DI->getDef(), i,
1472 NotRegisters, TP), TP);
1473 return MadeChange;
Chris Lattner523f6a52010-02-14 21:10:15 +00001474 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001475
Sean Silva6cfc8062012-10-10 20:24:43 +00001476 if (IntInit *II = dyn_cast<IntInit>(getLeafValue())) {
Chris Lattnerd7349192010-03-19 21:37:09 +00001477 assert(Types.size() == 1 && "Invalid IntInit");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001478
Chris Lattnerd7349192010-03-19 21:37:09 +00001479 // Int inits are always integers. :)
1480 bool MadeChange = Types[0].EnforceInteger(TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001481
Chris Lattnerd7349192010-03-19 21:37:09 +00001482 if (!Types[0].isConcrete())
Chris Lattner2cacec52010-03-15 06:00:16 +00001483 return MadeChange;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001484
Chris Lattnerd7349192010-03-19 21:37:09 +00001485 MVT::SimpleValueType VT = getType(0);
Chris Lattner2cacec52010-03-15 06:00:16 +00001486 if (VT == MVT::iPTR || VT == MVT::iPTRAny)
1487 return MadeChange;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001488
Chris Lattner2cacec52010-03-15 06:00:16 +00001489 unsigned Size = EVT(VT).getSizeInBits();
1490 // Make sure that the value is representable for this type.
1491 if (Size >= 32) return MadeChange;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001492
Richard Smith1144af32012-08-24 23:29:28 +00001493 // Check that the value doesn't use more bits than we have. It must either
1494 // be a sign- or zero-extended equivalent of the original.
1495 int64_t SignBitAndAbove = II->getValue() >> (Size - 1);
1496 if (SignBitAndAbove == -1 || SignBitAndAbove == 0 || SignBitAndAbove == 1)
Chris Lattner2cacec52010-03-15 06:00:16 +00001497 return MadeChange;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001498
Richard Smith1144af32012-08-24 23:29:28 +00001499 TP.error("Integer value '" + itostr(II->getValue()) +
Chris Lattnerd7349192010-03-19 21:37:09 +00001500 "' is out of range for type '" + getEnumName(getType(0)) + "'!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001501 return false;
Chris Lattner6cefb772008-01-05 22:25:12 +00001502 }
1503 return false;
1504 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001505
Chris Lattner6cefb772008-01-05 22:25:12 +00001506 // special handling for set, which isn't really an SDNode.
1507 if (getOperator()->getName() == "set") {
Chris Lattnerd7349192010-03-19 21:37:09 +00001508 assert(getNumTypes() == 0 && "Set doesn't produce a value");
1509 assert(getNumChildren() >= 2 && "Missing RHS of a set?");
Chris Lattner6cefb772008-01-05 22:25:12 +00001510 unsigned NC = getNumChildren();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001511
Chris Lattnerd7349192010-03-19 21:37:09 +00001512 TreePatternNode *SetVal = getChild(NC-1);
1513 bool MadeChange = SetVal->ApplyTypeConstraints(TP, NotRegisters);
1514
Chris Lattner6cefb772008-01-05 22:25:12 +00001515 for (unsigned i = 0; i < NC-1; ++i) {
Chris Lattnerd7349192010-03-19 21:37:09 +00001516 TreePatternNode *Child = getChild(i);
1517 MadeChange |= Child->ApplyTypeConstraints(TP, NotRegisters);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001518
Chris Lattner6cefb772008-01-05 22:25:12 +00001519 // Types of operands must match.
Chris Lattnerd7349192010-03-19 21:37:09 +00001520 MadeChange |= Child->UpdateNodeType(0, SetVal->getExtType(i), TP);
1521 MadeChange |= SetVal->UpdateNodeType(i, Child->getExtType(0), TP);
Chris Lattner6cefb772008-01-05 22:25:12 +00001522 }
1523 return MadeChange;
Chris Lattner6eb30122010-02-23 05:51:07 +00001524 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001525
Chris Lattner310adf12010-03-27 02:53:27 +00001526 if (getOperator()->getName() == "implicit") {
Chris Lattnerd7349192010-03-19 21:37:09 +00001527 assert(getNumTypes() == 0 && "Node doesn't produce a value");
1528
Chris Lattner6cefb772008-01-05 22:25:12 +00001529 bool MadeChange = false;
1530 for (unsigned i = 0; i < getNumChildren(); ++i)
1531 MadeChange = getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner6cefb772008-01-05 22:25:12 +00001532 return MadeChange;
Chris Lattner6eb30122010-02-23 05:51:07 +00001533 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001534
Chris Lattner6eb30122010-02-23 05:51:07 +00001535 if (getOperator()->getName() == "COPY_TO_REGCLASS") {
Dan Gohmanf8c73942009-04-13 15:38:05 +00001536 bool MadeChange = false;
1537 MadeChange |= getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
1538 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001539
Chris Lattnerd7349192010-03-19 21:37:09 +00001540 assert(getChild(0)->getNumTypes() == 1 &&
1541 getChild(1)->getNumTypes() == 1 && "Unhandled case");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001542
Chris Lattner2cacec52010-03-15 06:00:16 +00001543 // child #1 of COPY_TO_REGCLASS should be a register class. We don't care
1544 // what type it gets, so if it didn't get a concrete type just give it the
1545 // first viable type from the reg class.
Chris Lattnerd7349192010-03-19 21:37:09 +00001546 if (!getChild(1)->hasTypeSet(0) &&
1547 !getChild(1)->getExtType(0).isCompletelyUnknown()) {
1548 MVT::SimpleValueType RCVT = getChild(1)->getExtType(0).getTypeList()[0];
1549 MadeChange |= getChild(1)->UpdateNodeType(0, RCVT, TP);
Chris Lattner2cacec52010-03-15 06:00:16 +00001550 }
Dan Gohmanf8c73942009-04-13 15:38:05 +00001551 return MadeChange;
Chris Lattner6eb30122010-02-23 05:51:07 +00001552 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001553
Chris Lattner6eb30122010-02-23 05:51:07 +00001554 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CDP)) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001555 bool MadeChange = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001556
Chris Lattner6cefb772008-01-05 22:25:12 +00001557 // Apply the result type to the node.
Bill Wendlingcdcc3e62008-11-13 09:08:33 +00001558 unsigned NumRetVTs = Int->IS.RetVTs.size();
1559 unsigned NumParamVTs = Int->IS.ParamVTs.size();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001560
Bill Wendlingcdcc3e62008-11-13 09:08:33 +00001561 for (unsigned i = 0, e = NumRetVTs; i != e; ++i)
Chris Lattnerd7349192010-03-19 21:37:09 +00001562 MadeChange |= UpdateNodeType(i, Int->IS.RetVTs[i], TP);
Bill Wendlingcdcc3e62008-11-13 09:08:33 +00001563
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001564 if (getNumChildren() != NumParamVTs + 1) {
Chris Lattnere67bde52008-01-06 05:36:50 +00001565 TP.error("Intrinsic '" + Int->Name + "' expects " +
Chris Lattnerd7349192010-03-19 21:37:09 +00001566 utostr(NumParamVTs) + " operands, not " +
Bill Wendlingcdcc3e62008-11-13 09:08:33 +00001567 utostr(getNumChildren() - 1) + " operands!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001568 return false;
1569 }
Chris Lattner6cefb772008-01-05 22:25:12 +00001570
1571 // Apply type info to the intrinsic ID.
Chris Lattnerd7349192010-03-19 21:37:09 +00001572 MadeChange |= getChild(0)->UpdateNodeType(0, MVT::iPTR, TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001573
Chris Lattnerd7349192010-03-19 21:37:09 +00001574 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i) {
1575 MadeChange |= getChild(i+1)->ApplyTypeConstraints(TP, NotRegisters);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001576
Chris Lattnerd7349192010-03-19 21:37:09 +00001577 MVT::SimpleValueType OpVT = Int->IS.ParamVTs[i];
1578 assert(getChild(i+1)->getNumTypes() == 1 && "Unhandled case");
1579 MadeChange |= getChild(i+1)->UpdateNodeType(0, OpVT, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +00001580 }
1581 return MadeChange;
Chris Lattner6eb30122010-02-23 05:51:07 +00001582 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001583
Chris Lattner6eb30122010-02-23 05:51:07 +00001584 if (getOperator()->isSubClassOf("SDNode")) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001585 const SDNodeInfo &NI = CDP.getSDNodeInfo(getOperator());
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001586
Chris Lattner2a22cdc2010-03-28 08:48:47 +00001587 // Check that the number of operands is sane. Negative operands -> varargs.
1588 if (NI.getNumOperands() >= 0 &&
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001589 getNumChildren() != (unsigned)NI.getNumOperands()) {
Chris Lattner2a22cdc2010-03-28 08:48:47 +00001590 TP.error(getOperator()->getName() + " node requires exactly " +
1591 itostr(NI.getNumOperands()) + " operands!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001592 return false;
1593 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001594
Chris Lattner6cefb772008-01-05 22:25:12 +00001595 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
1596 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1597 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnerd7349192010-03-19 21:37:09 +00001598 return MadeChange;
Chris Lattner6eb30122010-02-23 05:51:07 +00001599 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001600
Chris Lattner6eb30122010-02-23 05:51:07 +00001601 if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001602 const DAGInstruction &Inst = CDP.getInstruction(getOperator());
Chris Lattner6cefb772008-01-05 22:25:12 +00001603 CodeGenInstruction &InstInfo =
Chris Lattnerf30187a2010-03-19 00:07:20 +00001604 CDP.getTargetInfo().getInstruction(getOperator());
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001605
Chris Lattner0be6fe72010-03-27 19:15:02 +00001606 bool MadeChange = false;
1607
1608 // Apply the result types to the node, these come from the things in the
1609 // (outs) list of the instruction.
1610 // FIXME: Cap at one result so far.
Chris Lattnerc240bb02010-11-01 04:03:32 +00001611 unsigned NumResultsToAdd = InstInfo.Operands.NumDefs ? 1 : 0;
Jakob Stoklund Olesen4c169162013-03-18 04:08:07 +00001612 for (unsigned ResNo = 0; ResNo != NumResultsToAdd; ++ResNo)
1613 MadeChange |= UpdateNodeTypeFromInst(ResNo, Inst.getResult(ResNo), TP);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001614
Chris Lattner0be6fe72010-03-27 19:15:02 +00001615 // If the instruction has implicit defs, we apply the first one as a result.
1616 // FIXME: This sucks, it should apply all implicit defs.
1617 if (!InstInfo.ImplicitDefs.empty()) {
1618 unsigned ResNo = NumResultsToAdd;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001619
Chris Lattner9414ae52010-03-27 20:09:24 +00001620 // FIXME: Generalize to multiple possible types and multiple possible
1621 // ImplicitDefs.
1622 MVT::SimpleValueType VT =
1623 InstInfo.HasOneImplicitDefWithKnownVT(CDP.getTargetInfo());
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001624
Chris Lattner9414ae52010-03-27 20:09:24 +00001625 if (VT != MVT::Other)
1626 MadeChange |= UpdateNodeType(ResNo, VT, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +00001627 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001628
Chris Lattner2cacec52010-03-15 06:00:16 +00001629 // If this is an INSERT_SUBREG, constrain the source and destination VTs to
1630 // be the same.
1631 if (getOperator()->getName() == "INSERT_SUBREG") {
Chris Lattnerd7349192010-03-19 21:37:09 +00001632 assert(getChild(0)->getNumTypes() == 1 && "FIXME: Unhandled");
1633 MadeChange |= UpdateNodeType(0, getChild(0)->getExtType(0), TP);
1634 MadeChange |= getChild(0)->UpdateNodeType(0, getExtType(0), TP);
Chris Lattner2cacec52010-03-15 06:00:16 +00001635 }
Chris Lattner6cefb772008-01-05 22:25:12 +00001636
1637 unsigned ChildNo = 0;
1638 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i) {
1639 Record *OperandNode = Inst.getOperand(i);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001640
Chris Lattner6cefb772008-01-05 22:25:12 +00001641 // If the instruction expects a predicate or optional def operand, we
1642 // codegen this by setting the operand to it's default value if it has a
1643 // non-empty DefaultOps field.
Tom Stellard6d3d7652012-09-06 14:15:52 +00001644 if (OperandNode->isSubClassOf("OperandWithDefaultOps") &&
Chris Lattner6cefb772008-01-05 22:25:12 +00001645 !CDP.getDefaultOperand(OperandNode).DefaultOps.empty())
1646 continue;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001647
Chris Lattner6cefb772008-01-05 22:25:12 +00001648 // Verify that we didn't run out of provided operands.
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001649 if (ChildNo >= getNumChildren()) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001650 TP.error("Instruction '" + getOperator()->getName() +
1651 "' expects more operands than were provided.");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001652 return false;
1653 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001654
Chris Lattner6cefb772008-01-05 22:25:12 +00001655 TreePatternNode *Child = getChild(ChildNo++);
Chris Lattner0be6fe72010-03-27 19:15:02 +00001656 unsigned ChildResNo = 0; // Instructions always use res #0 of their op.
Ulrich Weigandec8d1a52013-03-19 19:51:09 +00001657
1658 // If the operand has sub-operands, they may be provided by distinct
1659 // child patterns, so attempt to match each sub-operand separately.
1660 if (OperandNode->isSubClassOf("Operand")) {
1661 DagInit *MIOpInfo = OperandNode->getValueAsDag("MIOperandInfo");
1662 if (unsigned NumArgs = MIOpInfo->getNumArgs()) {
1663 // But don't do that if the whole operand is being provided by
1664 // a single ComplexPattern.
1665 const ComplexPattern *AM = Child->getComplexPatternInfo(CDP);
1666 if (!AM || AM->getNumOperands() < NumArgs) {
1667 // Match first sub-operand against the child we already have.
1668 Record *SubRec = cast<DefInit>(MIOpInfo->getArg(0))->getDef();
1669 MadeChange |=
1670 Child->UpdateNodeTypeFromInst(ChildResNo, SubRec, TP);
1671
1672 // And the remaining sub-operands against subsequent children.
1673 for (unsigned Arg = 1; Arg < NumArgs; ++Arg) {
1674 if (ChildNo >= getNumChildren()) {
1675 TP.error("Instruction '" + getOperator()->getName() +
1676 "' expects more operands than were provided.");
1677 return false;
1678 }
1679 Child = getChild(ChildNo++);
1680
1681 SubRec = cast<DefInit>(MIOpInfo->getArg(Arg))->getDef();
1682 MadeChange |=
1683 Child->UpdateNodeTypeFromInst(ChildResNo, SubRec, TP);
1684 }
1685 continue;
1686 }
1687 }
1688 }
1689
1690 // If we didn't match by pieces above, attempt to match the whole
1691 // operand now.
Jakob Stoklund Olesen4c169162013-03-18 04:08:07 +00001692 MadeChange |= Child->UpdateNodeTypeFromInst(ChildResNo, OperandNode, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +00001693 }
Christopher Lamb5b415372008-03-11 09:33:47 +00001694
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001695 if (ChildNo != getNumChildren()) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001696 TP.error("Instruction '" + getOperator()->getName() +
1697 "' was provided too many operands!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001698 return false;
1699 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001700
Ulrich Weigandec8d1a52013-03-19 19:51:09 +00001701 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1702 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner6cefb772008-01-05 22:25:12 +00001703 return MadeChange;
Chris Lattner6cefb772008-01-05 22:25:12 +00001704 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001705
Chris Lattner6eb30122010-02-23 05:51:07 +00001706 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001707
Chris Lattner6eb30122010-02-23 05:51:07 +00001708 // Node transforms always take one operand.
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001709 if (getNumChildren() != 1) {
Chris Lattner6eb30122010-02-23 05:51:07 +00001710 TP.error("Node transform '" + getOperator()->getName() +
1711 "' requires one operand!");
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001712 return false;
1713 }
Chris Lattner6eb30122010-02-23 05:51:07 +00001714
Chris Lattner2cacec52010-03-15 06:00:16 +00001715 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
1716
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001717
Chris Lattner6eb30122010-02-23 05:51:07 +00001718 // If either the output or input of the xform does not have exact
1719 // type info. We assume they must be the same. Otherwise, it is perfectly
1720 // legal to transform from one type to a completely different type.
Chris Lattner2cacec52010-03-15 06:00:16 +00001721#if 0
Chris Lattner6eb30122010-02-23 05:51:07 +00001722 if (!hasTypeSet() || !getChild(0)->hasTypeSet()) {
Chris Lattner2cacec52010-03-15 06:00:16 +00001723 bool MadeChange = UpdateNodeType(getChild(0)->getExtType(), TP);
1724 MadeChange |= getChild(0)->UpdateNodeType(getExtType(), TP);
Chris Lattner6eb30122010-02-23 05:51:07 +00001725 return MadeChange;
1726 }
Chris Lattner2cacec52010-03-15 06:00:16 +00001727#endif
1728 return MadeChange;
Chris Lattner6cefb772008-01-05 22:25:12 +00001729}
1730
1731/// OnlyOnRHSOfCommutative - Return true if this value is only allowed on the
1732/// RHS of a commutative operation, not the on LHS.
1733static bool OnlyOnRHSOfCommutative(TreePatternNode *N) {
1734 if (!N->isLeaf() && N->getOperator()->getName() == "imm")
1735 return true;
Sean Silva3f7b7f82012-10-10 20:24:47 +00001736 if (N->isLeaf() && isa<IntInit>(N->getLeafValue()))
Chris Lattner6cefb772008-01-05 22:25:12 +00001737 return true;
1738 return false;
1739}
1740
1741
1742/// canPatternMatch - If it is impossible for this pattern to match on this
1743/// target, fill in Reason and return false. Otherwise, return true. This is
Jim Grosbachda4231f2009-03-26 16:17:51 +00001744/// used as a sanity check for .td files (to prevent people from writing stuff
Chris Lattner6cefb772008-01-05 22:25:12 +00001745/// that can never possibly work), and to prevent the pattern permuter from
1746/// generating stuff that is useless.
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001747bool TreePatternNode::canPatternMatch(std::string &Reason,
Dan Gohmanee4fa192008-04-03 00:02:49 +00001748 const CodeGenDAGPatterns &CDP) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001749 if (isLeaf()) return true;
1750
1751 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1752 if (!getChild(i)->canPatternMatch(Reason, CDP))
1753 return false;
1754
1755 // If this is an intrinsic, handle cases that would make it not match. For
1756 // example, if an operand is required to be an immediate.
1757 if (getOperator()->isSubClassOf("Intrinsic")) {
1758 // TODO:
1759 return true;
1760 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001761
Chris Lattner6cefb772008-01-05 22:25:12 +00001762 // If this node is a commutative operator, check that the LHS isn't an
1763 // immediate.
1764 const SDNodeInfo &NodeInfo = CDP.getSDNodeInfo(getOperator());
Evan Cheng6bd95672008-06-16 20:29:38 +00001765 bool isCommIntrinsic = isCommutativeIntrinsic(CDP);
1766 if (NodeInfo.hasProperty(SDNPCommutative) || isCommIntrinsic) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001767 // Scan all of the operands of the node and make sure that only the last one
1768 // is a constant node, unless the RHS also is.
1769 if (!OnlyOnRHSOfCommutative(getChild(getNumChildren()-1))) {
Evan Cheng6bd95672008-06-16 20:29:38 +00001770 bool Skip = isCommIntrinsic ? 1 : 0; // First operand is intrinsic id.
1771 for (unsigned i = Skip, e = getNumChildren()-1; i != e; ++i)
Chris Lattner6cefb772008-01-05 22:25:12 +00001772 if (OnlyOnRHSOfCommutative(getChild(i))) {
1773 Reason="Immediate value must be on the RHS of commutative operators!";
1774 return false;
1775 }
1776 }
1777 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001778
Chris Lattner6cefb772008-01-05 22:25:12 +00001779 return true;
1780}
1781
1782//===----------------------------------------------------------------------===//
1783// TreePattern implementation
1784//
1785
David Greene05bce0b2011-07-29 22:43:06 +00001786TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001787 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp),
1788 isInputPattern(isInput), HasError(false) {
Chris Lattner2cacec52010-03-15 06:00:16 +00001789 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
Chris Lattnerc2173052010-03-28 06:50:34 +00001790 Trees.push_back(ParseTreePattern(RawPat->getElement(i), ""));
Chris Lattner6cefb772008-01-05 22:25:12 +00001791}
1792
David Greene05bce0b2011-07-29 22:43:06 +00001793TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001794 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp),
1795 isInputPattern(isInput), HasError(false) {
Chris Lattnerc2173052010-03-28 06:50:34 +00001796 Trees.push_back(ParseTreePattern(Pat, ""));
Chris Lattner6cefb772008-01-05 22:25:12 +00001797}
1798
1799TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001800 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp),
1801 isInputPattern(isInput), HasError(false) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001802 Trees.push_back(Pat);
1803}
1804
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001805void TreePattern::error(const std::string &Msg) {
1806 if (HasError)
1807 return;
Chris Lattner6cefb772008-01-05 22:25:12 +00001808 dump();
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001809 PrintError(TheRecord->getLoc(), "In " + TheRecord->getName() + ": " + Msg);
1810 HasError = true;
Chris Lattner6cefb772008-01-05 22:25:12 +00001811}
1812
Chris Lattner2cacec52010-03-15 06:00:16 +00001813void TreePattern::ComputeNamedNodes() {
1814 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
1815 ComputeNamedNodes(Trees[i]);
1816}
1817
1818void TreePattern::ComputeNamedNodes(TreePatternNode *N) {
1819 if (!N->getName().empty())
1820 NamedNodes[N->getName()].push_back(N);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001821
Chris Lattner2cacec52010-03-15 06:00:16 +00001822 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1823 ComputeNamedNodes(N->getChild(i));
1824}
1825
Chris Lattnerd7349192010-03-19 21:37:09 +00001826
David Greene05bce0b2011-07-29 22:43:06 +00001827TreePatternNode *TreePattern::ParseTreePattern(Init *TheInit, StringRef OpName){
Sean Silva6cfc8062012-10-10 20:24:43 +00001828 if (DefInit *DI = dyn_cast<DefInit>(TheInit)) {
Chris Lattnerc2173052010-03-28 06:50:34 +00001829 Record *R = DI->getDef();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001830
Chris Lattnerc2173052010-03-28 06:50:34 +00001831 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
Jim Grosbach66c9ee72011-07-06 23:38:13 +00001832 // TreePatternNode of its own. For example:
Chris Lattnerc2173052010-03-28 06:50:34 +00001833 /// (foo GPR, imm) -> (foo GPR, (imm))
1834 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag"))
David Greenedcd35c72011-07-29 19:07:07 +00001835 return ParseTreePattern(
1836 DagInit::get(DI, "",
David Greene05bce0b2011-07-29 22:43:06 +00001837 std::vector<std::pair<Init*, std::string> >()),
David Greenedcd35c72011-07-29 19:07:07 +00001838 OpName);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001839
Chris Lattnerc2173052010-03-28 06:50:34 +00001840 // Input argument?
1841 TreePatternNode *Res = new TreePatternNode(DI, 1);
Chris Lattner2a22cdc2010-03-28 08:48:47 +00001842 if (R->getName() == "node" && !OpName.empty()) {
Chris Lattnerc2173052010-03-28 06:50:34 +00001843 if (OpName.empty())
1844 error("'node' argument requires a name to match with operand list");
1845 Args.push_back(OpName);
1846 }
1847
1848 Res->setName(OpName);
1849 return Res;
1850 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001851
Sean Silva6cfc8062012-10-10 20:24:43 +00001852 if (IntInit *II = dyn_cast<IntInit>(TheInit)) {
Chris Lattnerc2173052010-03-28 06:50:34 +00001853 if (!OpName.empty())
1854 error("Constant int argument should not have a name!");
1855 return new TreePatternNode(II, 1);
1856 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001857
Sean Silva6cfc8062012-10-10 20:24:43 +00001858 if (BitsInit *BI = dyn_cast<BitsInit>(TheInit)) {
Chris Lattnerc2173052010-03-28 06:50:34 +00001859 // Turn this into an IntInit.
David Greene05bce0b2011-07-29 22:43:06 +00001860 Init *II = BI->convertInitializerTo(IntRecTy::get());
Sean Silva3f7b7f82012-10-10 20:24:47 +00001861 if (II == 0 || !isa<IntInit>(II))
Chris Lattnerc2173052010-03-28 06:50:34 +00001862 error("Bits value must be constants!");
Chris Lattnerb775b1e2010-03-28 06:57:56 +00001863 return ParseTreePattern(II, OpName);
Chris Lattnerc2173052010-03-28 06:50:34 +00001864 }
1865
Sean Silva6cfc8062012-10-10 20:24:43 +00001866 DagInit *Dag = dyn_cast<DagInit>(TheInit);
Chris Lattnerc2173052010-03-28 06:50:34 +00001867 if (!Dag) {
1868 TheInit->dump();
1869 error("Pattern has unexpected init kind!");
1870 }
Sean Silva6cfc8062012-10-10 20:24:43 +00001871 DefInit *OpDef = dyn_cast<DefInit>(Dag->getOperator());
Chris Lattner6cefb772008-01-05 22:25:12 +00001872 if (!OpDef) error("Pattern has unexpected operator type!");
1873 Record *Operator = OpDef->getDef();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001874
Chris Lattner6cefb772008-01-05 22:25:12 +00001875 if (Operator->isSubClassOf("ValueType")) {
1876 // If the operator is a ValueType, then this must be "type cast" of a leaf
1877 // node.
1878 if (Dag->getNumArgs() != 1)
1879 error("Type cast only takes one operand!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001880
Chris Lattnerc2173052010-03-28 06:50:34 +00001881 TreePatternNode *New = ParseTreePattern(Dag->getArg(0), Dag->getArgName(0));
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001882
Chris Lattner6cefb772008-01-05 22:25:12 +00001883 // Apply the type cast.
Chris Lattnerd7349192010-03-19 21:37:09 +00001884 assert(New->getNumTypes() == 1 && "FIXME: Unhandled");
1885 New->UpdateNodeType(0, getValueType(Operator), *this);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001886
Chris Lattnerc2173052010-03-28 06:50:34 +00001887 if (!OpName.empty())
1888 error("ValueType cast should not have a name!");
Chris Lattner6cefb772008-01-05 22:25:12 +00001889 return New;
1890 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001891
Chris Lattner6cefb772008-01-05 22:25:12 +00001892 // Verify that this is something that makes sense for an operator.
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001893 if (!Operator->isSubClassOf("PatFrag") &&
Nate Begeman7cee8172009-03-19 05:21:56 +00001894 !Operator->isSubClassOf("SDNode") &&
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001895 !Operator->isSubClassOf("Instruction") &&
Chris Lattner6cefb772008-01-05 22:25:12 +00001896 !Operator->isSubClassOf("SDNodeXForm") &&
1897 !Operator->isSubClassOf("Intrinsic") &&
1898 Operator->getName() != "set" &&
Chris Lattner310adf12010-03-27 02:53:27 +00001899 Operator->getName() != "implicit")
Chris Lattner6cefb772008-01-05 22:25:12 +00001900 error("Unrecognized node '" + Operator->getName() + "'!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001901
Chris Lattner6cefb772008-01-05 22:25:12 +00001902 // Check to see if this is something that is illegal in an input pattern.
Chris Lattnerb775b1e2010-03-28 06:57:56 +00001903 if (isInputPattern) {
1904 if (Operator->isSubClassOf("Instruction") ||
1905 Operator->isSubClassOf("SDNodeXForm"))
1906 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
1907 } else {
1908 if (Operator->isSubClassOf("Intrinsic"))
1909 error("Cannot use '" + Operator->getName() + "' in an output pattern!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001910
Chris Lattnerb775b1e2010-03-28 06:57:56 +00001911 if (Operator->isSubClassOf("SDNode") &&
1912 Operator->getName() != "imm" &&
1913 Operator->getName() != "fpimm" &&
1914 Operator->getName() != "tglobaltlsaddr" &&
1915 Operator->getName() != "tconstpool" &&
1916 Operator->getName() != "tjumptable" &&
1917 Operator->getName() != "tframeindex" &&
1918 Operator->getName() != "texternalsym" &&
1919 Operator->getName() != "tblockaddress" &&
1920 Operator->getName() != "tglobaladdr" &&
1921 Operator->getName() != "bb" &&
1922 Operator->getName() != "vt")
1923 error("Cannot use '" + Operator->getName() + "' in an output pattern!");
1924 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001925
Chris Lattner6cefb772008-01-05 22:25:12 +00001926 std::vector<TreePatternNode*> Children;
Chris Lattnerc2173052010-03-28 06:50:34 +00001927
1928 // Parse all the operands.
1929 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i)
1930 Children.push_back(ParseTreePattern(Dag->getArg(i), Dag->getArgName(i)));
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001931
Chris Lattner6cefb772008-01-05 22:25:12 +00001932 // If the operator is an intrinsic, then this is just syntactic sugar for for
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001933 // (intrinsic_* <number>, ..children..). Pick the right intrinsic node, and
Chris Lattner6cefb772008-01-05 22:25:12 +00001934 // convert the intrinsic name to a number.
1935 if (Operator->isSubClassOf("Intrinsic")) {
1936 const CodeGenIntrinsic &Int = getDAGPatterns().getIntrinsic(Operator);
1937 unsigned IID = getDAGPatterns().getIntrinsicID(Operator)+1;
1938
1939 // If this intrinsic returns void, it must have side-effects and thus a
1940 // chain.
Chris Lattnerc2173052010-03-28 06:50:34 +00001941 if (Int.IS.RetVTs.empty())
Chris Lattner6cefb772008-01-05 22:25:12 +00001942 Operator = getDAGPatterns().get_intrinsic_void_sdnode();
Chris Lattnerc2173052010-03-28 06:50:34 +00001943 else if (Int.ModRef != CodeGenIntrinsic::NoMem)
Chris Lattner6cefb772008-01-05 22:25:12 +00001944 // Has side-effects, requires chain.
1945 Operator = getDAGPatterns().get_intrinsic_w_chain_sdnode();
Chris Lattnerc2173052010-03-28 06:50:34 +00001946 else // Otherwise, no chain.
Chris Lattner6cefb772008-01-05 22:25:12 +00001947 Operator = getDAGPatterns().get_intrinsic_wo_chain_sdnode();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001948
David Greenedcd35c72011-07-29 19:07:07 +00001949 TreePatternNode *IIDNode = new TreePatternNode(IntInit::get(IID), 1);
Chris Lattner6cefb772008-01-05 22:25:12 +00001950 Children.insert(Children.begin(), IIDNode);
1951 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001952
Chris Lattnerd7349192010-03-19 21:37:09 +00001953 unsigned NumResults = GetNumNodeResults(Operator, CDP);
1954 TreePatternNode *Result = new TreePatternNode(Operator, Children, NumResults);
Chris Lattnerc2173052010-03-28 06:50:34 +00001955 Result->setName(OpName);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00001956
Chris Lattnerc2173052010-03-28 06:50:34 +00001957 if (!Dag->getName().empty()) {
1958 assert(Result->getName().empty());
1959 Result->setName(Dag->getName());
1960 }
Nate Begeman7cee8172009-03-19 05:21:56 +00001961 return Result;
Chris Lattner6cefb772008-01-05 22:25:12 +00001962}
1963
Chris Lattner7a0eb912010-03-28 08:38:32 +00001964/// SimplifyTree - See if we can simplify this tree to eliminate something that
1965/// will never match in favor of something obvious that will. This is here
1966/// strictly as a convenience to target authors because it allows them to write
1967/// more type generic things and have useless type casts fold away.
1968///
1969/// This returns true if any change is made.
1970static bool SimplifyTree(TreePatternNode *&N) {
1971 if (N->isLeaf())
1972 return false;
1973
1974 // If we have a bitconvert with a resolved type and if the source and
1975 // destination types are the same, then the bitconvert is useless, remove it.
1976 if (N->getOperator()->getName() == "bitconvert" &&
Chris Lattner7a0eb912010-03-28 08:38:32 +00001977 N->getExtType(0).isConcrete() &&
1978 N->getExtType(0) == N->getChild(0)->getExtType(0) &&
1979 N->getName().empty()) {
1980 N = N->getChild(0);
1981 SimplifyTree(N);
1982 return true;
1983 }
1984
1985 // Walk all children.
1986 bool MadeChange = false;
1987 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1988 TreePatternNode *Child = N->getChild(i);
1989 MadeChange |= SimplifyTree(Child);
1990 N->setChild(i, Child);
1991 }
1992 return MadeChange;
1993}
1994
1995
1996
Chris Lattner6cefb772008-01-05 22:25:12 +00001997/// InferAllTypes - Infer/propagate as many types throughout the expression
Jim Grosbachda4231f2009-03-26 16:17:51 +00001998/// patterns as possible. Return true if all types are inferred, false
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00001999/// otherwise. Flags an error if a type contradiction is found.
Chris Lattner2cacec52010-03-15 06:00:16 +00002000bool TreePattern::
2001InferAllTypes(const StringMap<SmallVector<TreePatternNode*,1> > *InNamedTypes) {
2002 if (NamedNodes.empty())
2003 ComputeNamedNodes();
2004
Chris Lattner6cefb772008-01-05 22:25:12 +00002005 bool MadeChange = true;
2006 while (MadeChange) {
2007 MadeChange = false;
Chris Lattner7a0eb912010-03-28 08:38:32 +00002008 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002009 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
Chris Lattner7a0eb912010-03-28 08:38:32 +00002010 MadeChange |= SimplifyTree(Trees[i]);
2011 }
Chris Lattner2cacec52010-03-15 06:00:16 +00002012
2013 // If there are constraints on our named nodes, apply them.
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002014 for (StringMap<SmallVector<TreePatternNode*,1> >::iterator
Chris Lattner2cacec52010-03-15 06:00:16 +00002015 I = NamedNodes.begin(), E = NamedNodes.end(); I != E; ++I) {
2016 SmallVectorImpl<TreePatternNode*> &Nodes = I->second;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002017
Chris Lattner2cacec52010-03-15 06:00:16 +00002018 // If we have input named node types, propagate their types to the named
2019 // values here.
2020 if (InNamedTypes) {
2021 // FIXME: Should be error?
2022 assert(InNamedTypes->count(I->getKey()) &&
2023 "Named node in output pattern but not input pattern?");
2024
2025 const SmallVectorImpl<TreePatternNode*> &InNodes =
2026 InNamedTypes->find(I->getKey())->second;
2027
2028 // The input types should be fully resolved by now.
2029 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
2030 // If this node is a register class, and it is the root of the pattern
2031 // then we're mapping something onto an input register. We allow
2032 // changing the type of the input register in this case. This allows
2033 // us to match things like:
2034 // def : Pat<(v1i64 (bitconvert(v2i32 DPR:$src))), (v1i64 DPR:$src)>;
2035 if (Nodes[i] == Trees[0] && Nodes[i]->isLeaf()) {
Sean Silva6cfc8062012-10-10 20:24:43 +00002036 DefInit *DI = dyn_cast<DefInit>(Nodes[i]->getLeafValue());
Owen Andersonbea6f612011-06-27 21:06:21 +00002037 if (DI && (DI->getDef()->isSubClassOf("RegisterClass") ||
2038 DI->getDef()->isSubClassOf("RegisterOperand")))
Chris Lattner2cacec52010-03-15 06:00:16 +00002039 continue;
2040 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002041
Daniel Dunbar32f6a8b2010-03-21 01:38:21 +00002042 assert(Nodes[i]->getNumTypes() == 1 &&
Chris Lattnerd7349192010-03-19 21:37:09 +00002043 InNodes[0]->getNumTypes() == 1 &&
2044 "FIXME: cannot name multiple result nodes yet");
2045 MadeChange |= Nodes[i]->UpdateNodeType(0, InNodes[0]->getExtType(0),
2046 *this);
Chris Lattner2cacec52010-03-15 06:00:16 +00002047 }
2048 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002049
Chris Lattner2cacec52010-03-15 06:00:16 +00002050 // If there are multiple nodes with the same name, they must all have the
2051 // same type.
2052 if (I->second.size() > 1) {
2053 for (unsigned i = 0, e = Nodes.size()-1; i != e; ++i) {
Chris Lattnerd7349192010-03-19 21:37:09 +00002054 TreePatternNode *N1 = Nodes[i], *N2 = Nodes[i+1];
Daniel Dunbar32f6a8b2010-03-21 01:38:21 +00002055 assert(N1->getNumTypes() == 1 && N2->getNumTypes() == 1 &&
Chris Lattnerd7349192010-03-19 21:37:09 +00002056 "FIXME: cannot name multiple result nodes yet");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002057
Chris Lattnerd7349192010-03-19 21:37:09 +00002058 MadeChange |= N1->UpdateNodeType(0, N2->getExtType(0), *this);
2059 MadeChange |= N2->UpdateNodeType(0, N1->getExtType(0), *this);
Chris Lattner2cacec52010-03-15 06:00:16 +00002060 }
2061 }
2062 }
Chris Lattner6cefb772008-01-05 22:25:12 +00002063 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002064
Chris Lattner6cefb772008-01-05 22:25:12 +00002065 bool HasUnresolvedTypes = false;
2066 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
2067 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
2068 return !HasUnresolvedTypes;
2069}
2070
Daniel Dunbar1a551802009-07-03 00:10:29 +00002071void TreePattern::print(raw_ostream &OS) const {
Chris Lattner6cefb772008-01-05 22:25:12 +00002072 OS << getRecord()->getName();
2073 if (!Args.empty()) {
2074 OS << "(" << Args[0];
2075 for (unsigned i = 1, e = Args.size(); i != e; ++i)
2076 OS << ", " << Args[i];
2077 OS << ")";
2078 }
2079 OS << ": ";
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002080
Chris Lattner6cefb772008-01-05 22:25:12 +00002081 if (Trees.size() > 1)
2082 OS << "[\n";
2083 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
2084 OS << "\t";
2085 Trees[i]->print(OS);
2086 OS << "\n";
2087 }
2088
2089 if (Trees.size() > 1)
2090 OS << "]\n";
2091}
2092
Daniel Dunbar1a551802009-07-03 00:10:29 +00002093void TreePattern::dump() const { print(errs()); }
Chris Lattner6cefb772008-01-05 22:25:12 +00002094
2095//===----------------------------------------------------------------------===//
Chris Lattnerfe718932008-01-06 01:10:31 +00002096// CodeGenDAGPatterns implementation
Chris Lattner6cefb772008-01-05 22:25:12 +00002097//
2098
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002099CodeGenDAGPatterns::CodeGenDAGPatterns(RecordKeeper &R) :
Chris Lattner67db8832010-12-13 00:23:57 +00002100 Records(R), Target(R) {
2101
Dale Johannesen49de9822009-02-05 01:49:45 +00002102 Intrinsics = LoadIntrinsics(Records, false);
2103 TgtIntrinsics = LoadIntrinsics(Records, true);
Chris Lattner6cefb772008-01-05 22:25:12 +00002104 ParseNodeInfo();
Chris Lattner443e3f92008-01-05 22:54:53 +00002105 ParseNodeTransforms();
Chris Lattner6cefb772008-01-05 22:25:12 +00002106 ParseComplexPatterns();
Chris Lattnerdc32f982008-01-05 22:43:57 +00002107 ParsePatternFragments();
Chris Lattner6cefb772008-01-05 22:25:12 +00002108 ParseDefaultOperands();
2109 ParseInstructions();
2110 ParsePatterns();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002111
Chris Lattner6cefb772008-01-05 22:25:12 +00002112 // Generate variants. For example, commutative patterns can match
2113 // multiple ways. Add them to PatternsToMatch as well.
2114 GenerateVariants();
Dan Gohmanee4fa192008-04-03 00:02:49 +00002115
2116 // Infer instruction flags. For example, we can detect loads,
2117 // stores, and side effects in many cases by examining an
2118 // instruction's pattern.
2119 InferInstructionFlags();
Jakob Stoklund Olesen325907d2012-08-28 03:26:49 +00002120
2121 // Verify that instruction flags match the patterns.
2122 VerifyInstructionFlags();
Chris Lattner6cefb772008-01-05 22:25:12 +00002123}
2124
Chris Lattnerfe718932008-01-06 01:10:31 +00002125CodeGenDAGPatterns::~CodeGenDAGPatterns() {
Benjamin Kramer5b9e7ef2009-08-23 10:39:21 +00002126 for (pf_iterator I = PatternFragments.begin(),
Chris Lattner6cefb772008-01-05 22:25:12 +00002127 E = PatternFragments.end(); I != E; ++I)
2128 delete I->second;
2129}
2130
2131
Chris Lattnerfe718932008-01-06 01:10:31 +00002132Record *CodeGenDAGPatterns::getSDNodeNamed(const std::string &Name) const {
Chris Lattner6cefb772008-01-05 22:25:12 +00002133 Record *N = Records.getDef(Name);
2134 if (!N || !N->isSubClassOf("SDNode")) {
Daniel Dunbar1a551802009-07-03 00:10:29 +00002135 errs() << "Error getting SDNode '" << Name << "'!\n";
Chris Lattner6cefb772008-01-05 22:25:12 +00002136 exit(1);
2137 }
2138 return N;
2139}
2140
2141// Parse all of the SDNode definitions for the target, populating SDNodes.
Chris Lattnerfe718932008-01-06 01:10:31 +00002142void CodeGenDAGPatterns::ParseNodeInfo() {
Chris Lattner6cefb772008-01-05 22:25:12 +00002143 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
2144 while (!Nodes.empty()) {
2145 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
2146 Nodes.pop_back();
2147 }
2148
Jim Grosbachda4231f2009-03-26 16:17:51 +00002149 // Get the builtin intrinsic nodes.
Chris Lattner6cefb772008-01-05 22:25:12 +00002150 intrinsic_void_sdnode = getSDNodeNamed("intrinsic_void");
2151 intrinsic_w_chain_sdnode = getSDNodeNamed("intrinsic_w_chain");
2152 intrinsic_wo_chain_sdnode = getSDNodeNamed("intrinsic_wo_chain");
2153}
2154
2155/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
2156/// map, and emit them to the file as functions.
Chris Lattnerfe718932008-01-06 01:10:31 +00002157void CodeGenDAGPatterns::ParseNodeTransforms() {
Chris Lattner6cefb772008-01-05 22:25:12 +00002158 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
2159 while (!Xforms.empty()) {
2160 Record *XFormNode = Xforms.back();
2161 Record *SDNode = XFormNode->getValueAsDef("Opcode");
Jakob Stoklund Olesen8dd6f0c2012-01-13 03:38:34 +00002162 std::string Code = XFormNode->getValueAsString("XFormFunction");
Chris Lattner443e3f92008-01-05 22:54:53 +00002163 SDNodeXForms.insert(std::make_pair(XFormNode, NodeXForm(SDNode, Code)));
Chris Lattner6cefb772008-01-05 22:25:12 +00002164
2165 Xforms.pop_back();
2166 }
2167}
2168
Chris Lattnerfe718932008-01-06 01:10:31 +00002169void CodeGenDAGPatterns::ParseComplexPatterns() {
Chris Lattner6cefb772008-01-05 22:25:12 +00002170 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
2171 while (!AMs.empty()) {
2172 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
2173 AMs.pop_back();
2174 }
2175}
2176
2177
2178/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
2179/// file, building up the PatternFragments map. After we've collected them all,
2180/// inline fragments together as necessary, so that there are no references left
2181/// inside a pattern fragment to a pattern fragment.
2182///
Chris Lattnerfe718932008-01-06 01:10:31 +00002183void CodeGenDAGPatterns::ParsePatternFragments() {
Chris Lattner6cefb772008-01-05 22:25:12 +00002184 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002185
Chris Lattnerdc32f982008-01-05 22:43:57 +00002186 // First step, parse all of the fragments.
Chris Lattner6cefb772008-01-05 22:25:12 +00002187 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
David Greene05bce0b2011-07-29 22:43:06 +00002188 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
Chris Lattner6cefb772008-01-05 22:25:12 +00002189 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
2190 PatternFragments[Fragments[i]] = P;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002191
Chris Lattnerdc32f982008-01-05 22:43:57 +00002192 // Validate the argument list, converting it to set, to discard duplicates.
Chris Lattner6cefb772008-01-05 22:25:12 +00002193 std::vector<std::string> &Args = P->getArgList();
Chris Lattnerdc32f982008-01-05 22:43:57 +00002194 std::set<std::string> OperandsSet(Args.begin(), Args.end());
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002195
Chris Lattnerdc32f982008-01-05 22:43:57 +00002196 if (OperandsSet.count(""))
Chris Lattner6cefb772008-01-05 22:25:12 +00002197 P->error("Cannot have unnamed 'node' values in pattern fragment!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002198
Chris Lattner6cefb772008-01-05 22:25:12 +00002199 // Parse the operands list.
David Greene05bce0b2011-07-29 22:43:06 +00002200 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
Sean Silva6cfc8062012-10-10 20:24:43 +00002201 DefInit *OpsOp = dyn_cast<DefInit>(OpsList->getOperator());
Chris Lattner6cefb772008-01-05 22:25:12 +00002202 // Special cases: ops == outs == ins. Different names are used to
Jim Grosbachda4231f2009-03-26 16:17:51 +00002203 // improve readability.
Chris Lattner6cefb772008-01-05 22:25:12 +00002204 if (!OpsOp ||
2205 (OpsOp->getDef()->getName() != "ops" &&
2206 OpsOp->getDef()->getName() != "outs" &&
2207 OpsOp->getDef()->getName() != "ins"))
2208 P->error("Operands list should start with '(ops ... '!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002209
2210 // Copy over the arguments.
Chris Lattner6cefb772008-01-05 22:25:12 +00002211 Args.clear();
2212 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
Sean Silva3f7b7f82012-10-10 20:24:47 +00002213 if (!isa<DefInit>(OpsList->getArg(j)) ||
2214 cast<DefInit>(OpsList->getArg(j))->getDef()->getName() != "node")
Chris Lattner6cefb772008-01-05 22:25:12 +00002215 P->error("Operands list should all be 'node' values.");
2216 if (OpsList->getArgName(j).empty())
2217 P->error("Operands list should have names for each operand!");
Chris Lattnerdc32f982008-01-05 22:43:57 +00002218 if (!OperandsSet.count(OpsList->getArgName(j)))
Chris Lattner6cefb772008-01-05 22:25:12 +00002219 P->error("'" + OpsList->getArgName(j) +
2220 "' does not occur in pattern or was multiply specified!");
Chris Lattnerdc32f982008-01-05 22:43:57 +00002221 OperandsSet.erase(OpsList->getArgName(j));
Chris Lattner6cefb772008-01-05 22:25:12 +00002222 Args.push_back(OpsList->getArgName(j));
2223 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002224
Chris Lattnerdc32f982008-01-05 22:43:57 +00002225 if (!OperandsSet.empty())
Chris Lattner6cefb772008-01-05 22:25:12 +00002226 P->error("Operands list does not contain an entry for operand '" +
Chris Lattnerdc32f982008-01-05 22:43:57 +00002227 *OperandsSet.begin() + "'!");
Chris Lattner6cefb772008-01-05 22:25:12 +00002228
Chris Lattnerdc32f982008-01-05 22:43:57 +00002229 // If there is a code init for this fragment, keep track of the fact that
2230 // this fragment uses it.
Chris Lattner54379062011-04-17 21:38:24 +00002231 TreePredicateFn PredFn(P);
2232 if (!PredFn.isAlwaysTrue())
2233 P->getOnlyTree()->addPredicateFn(PredFn);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002234
Chris Lattner6cefb772008-01-05 22:25:12 +00002235 // If there is a node transformation corresponding to this, keep track of
2236 // it.
2237 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
2238 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
2239 P->getOnlyTree()->setTransformFn(Transform);
2240 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002241
Chris Lattner6cefb772008-01-05 22:25:12 +00002242 // Now that we've parsed all of the tree fragments, do a closure on them so
2243 // that there are not references to PatFrags left inside of them.
Chris Lattner2ca698d2008-06-30 03:02:03 +00002244 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
2245 TreePattern *ThePat = PatternFragments[Fragments[i]];
Chris Lattner6cefb772008-01-05 22:25:12 +00002246 ThePat->InlinePatternFragments();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002247
Chris Lattner6cefb772008-01-05 22:25:12 +00002248 // Infer as many types as possible. Don't worry about it if we don't infer
2249 // all of them, some may depend on the inputs of the pattern.
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002250 ThePat->InferAllTypes();
2251 ThePat->resetError();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002252
Chris Lattner6cefb772008-01-05 22:25:12 +00002253 // If debugging, print out the pattern fragment result.
2254 DEBUG(ThePat->dump());
2255 }
2256}
2257
Chris Lattnerfe718932008-01-06 01:10:31 +00002258void CodeGenDAGPatterns::ParseDefaultOperands() {
Tom Stellard6d3d7652012-09-06 14:15:52 +00002259 std::vector<Record*> DefaultOps;
2260 DefaultOps = Records.getAllDerivedDefinitions("OperandWithDefaultOps");
Chris Lattner6cefb772008-01-05 22:25:12 +00002261
2262 // Find some SDNode.
2263 assert(!SDNodes.empty() && "No SDNodes parsed?");
David Greene05bce0b2011-07-29 22:43:06 +00002264 Init *SomeSDNode = DefInit::get(SDNodes.begin()->first);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002265
Tom Stellard6d3d7652012-09-06 14:15:52 +00002266 for (unsigned i = 0, e = DefaultOps.size(); i != e; ++i) {
2267 DagInit *DefaultInfo = DefaultOps[i]->getValueAsDag("DefaultOps");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002268
Tom Stellard6d3d7652012-09-06 14:15:52 +00002269 // Clone the DefaultInfo dag node, changing the operator from 'ops' to
2270 // SomeSDnode so that we can parse this.
2271 std::vector<std::pair<Init*, std::string> > Ops;
2272 for (unsigned op = 0, e = DefaultInfo->getNumArgs(); op != e; ++op)
2273 Ops.push_back(std::make_pair(DefaultInfo->getArg(op),
2274 DefaultInfo->getArgName(op)));
2275 DagInit *DI = DagInit::get(SomeSDNode, "", Ops);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002276
Tom Stellard6d3d7652012-09-06 14:15:52 +00002277 // Create a TreePattern to parse this.
2278 TreePattern P(DefaultOps[i], DI, false, *this);
2279 assert(P.getNumTrees() == 1 && "This ctor can only produce one tree!");
Chris Lattner6cefb772008-01-05 22:25:12 +00002280
Tom Stellard6d3d7652012-09-06 14:15:52 +00002281 // Copy the operands over into a DAGDefaultOperand.
2282 DAGDefaultOperand DefaultOpInfo;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002283
Tom Stellard6d3d7652012-09-06 14:15:52 +00002284 TreePatternNode *T = P.getTree(0);
2285 for (unsigned op = 0, e = T->getNumChildren(); op != e; ++op) {
2286 TreePatternNode *TPN = T->getChild(op);
2287 while (TPN->ApplyTypeConstraints(P, false))
2288 /* Resolve all types */;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002289
Tom Stellard6d3d7652012-09-06 14:15:52 +00002290 if (TPN->ContainsUnresolvedType()) {
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002291 PrintFatalError("Value #" + utostr(i) + " of OperandWithDefaultOps '" +
2292 DefaultOps[i]->getName() +"' doesn't have a concrete type!");
Chris Lattner6cefb772008-01-05 22:25:12 +00002293 }
Tom Stellard6d3d7652012-09-06 14:15:52 +00002294 DefaultOpInfo.DefaultOps.push_back(TPN);
Chris Lattner6cefb772008-01-05 22:25:12 +00002295 }
Tom Stellard6d3d7652012-09-06 14:15:52 +00002296
2297 // Insert it into the DefaultOperands map so we can find it later.
2298 DefaultOperands[DefaultOps[i]] = DefaultOpInfo;
Chris Lattner6cefb772008-01-05 22:25:12 +00002299 }
2300}
2301
2302/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
2303/// instruction input. Return true if this is a real use.
2304static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Chris Lattneracfb70f2010-04-20 06:30:25 +00002305 std::map<std::string, TreePatternNode*> &InstInputs) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002306 // No name -> not interesting.
2307 if (Pat->getName().empty()) {
2308 if (Pat->isLeaf()) {
Sean Silva6cfc8062012-10-10 20:24:43 +00002309 DefInit *DI = dyn_cast<DefInit>(Pat->getLeafValue());
Owen Andersonbea6f612011-06-27 21:06:21 +00002310 if (DI && (DI->getDef()->isSubClassOf("RegisterClass") ||
2311 DI->getDef()->isSubClassOf("RegisterOperand")))
Chris Lattner6cefb772008-01-05 22:25:12 +00002312 I->error("Input " + DI->getDef()->getName() + " must be named!");
Chris Lattner6cefb772008-01-05 22:25:12 +00002313 }
2314 return false;
2315 }
2316
2317 Record *Rec;
2318 if (Pat->isLeaf()) {
Sean Silva6cfc8062012-10-10 20:24:43 +00002319 DefInit *DI = dyn_cast<DefInit>(Pat->getLeafValue());
Chris Lattner6cefb772008-01-05 22:25:12 +00002320 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
2321 Rec = DI->getDef();
2322 } else {
Chris Lattner6cefb772008-01-05 22:25:12 +00002323 Rec = Pat->getOperator();
2324 }
2325
2326 // SRCVALUE nodes are ignored.
2327 if (Rec->getName() == "srcvalue")
2328 return false;
2329
2330 TreePatternNode *&Slot = InstInputs[Pat->getName()];
2331 if (!Slot) {
2332 Slot = Pat;
Chris Lattner53d09bd2010-02-23 05:59:10 +00002333 return true;
Chris Lattner6cefb772008-01-05 22:25:12 +00002334 }
Chris Lattner53d09bd2010-02-23 05:59:10 +00002335 Record *SlotRec;
2336 if (Slot->isLeaf()) {
Sean Silva3f7b7f82012-10-10 20:24:47 +00002337 SlotRec = cast<DefInit>(Slot->getLeafValue())->getDef();
Chris Lattner53d09bd2010-02-23 05:59:10 +00002338 } else {
2339 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
2340 SlotRec = Slot->getOperator();
2341 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002342
Chris Lattner53d09bd2010-02-23 05:59:10 +00002343 // Ensure that the inputs agree if we've already seen this input.
2344 if (Rec != SlotRec)
2345 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattnerd7349192010-03-19 21:37:09 +00002346 if (Slot->getExtTypes() != Pat->getExtTypes())
Chris Lattner53d09bd2010-02-23 05:59:10 +00002347 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattner6cefb772008-01-05 22:25:12 +00002348 return true;
2349}
2350
2351/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
2352/// part of "I", the instruction), computing the set of inputs and outputs of
2353/// the pattern. Report errors if we see anything naughty.
Chris Lattnerfe718932008-01-06 01:10:31 +00002354void CodeGenDAGPatterns::
Chris Lattner6cefb772008-01-05 22:25:12 +00002355FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
2356 std::map<std::string, TreePatternNode*> &InstInputs,
2357 std::map<std::string, TreePatternNode*>&InstResults,
Chris Lattner6cefb772008-01-05 22:25:12 +00002358 std::vector<Record*> &InstImpResults) {
2359 if (Pat->isLeaf()) {
Chris Lattneracfb70f2010-04-20 06:30:25 +00002360 bool isUse = HandleUse(I, Pat, InstInputs);
Chris Lattner6cefb772008-01-05 22:25:12 +00002361 if (!isUse && Pat->getTransformFn())
2362 I->error("Cannot specify a transform function for a non-input value!");
2363 return;
Chris Lattner84aa60b2010-02-17 06:53:36 +00002364 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002365
Chris Lattner84aa60b2010-02-17 06:53:36 +00002366 if (Pat->getOperator()->getName() == "implicit") {
Chris Lattner6cefb772008-01-05 22:25:12 +00002367 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
2368 TreePatternNode *Dest = Pat->getChild(i);
2369 if (!Dest->isLeaf())
2370 I->error("implicitly defined value should be a register!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002371
Sean Silva6cfc8062012-10-10 20:24:43 +00002372 DefInit *Val = dyn_cast<DefInit>(Dest->getLeafValue());
Chris Lattner6cefb772008-01-05 22:25:12 +00002373 if (!Val || !Val->getDef()->isSubClassOf("Register"))
2374 I->error("implicitly defined value should be a register!");
2375 InstImpResults.push_back(Val->getDef());
2376 }
2377 return;
Chris Lattner84aa60b2010-02-17 06:53:36 +00002378 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002379
Chris Lattner84aa60b2010-02-17 06:53:36 +00002380 if (Pat->getOperator()->getName() != "set") {
Chris Lattner6cefb772008-01-05 22:25:12 +00002381 // If this is not a set, verify that the children nodes are not void typed,
2382 // and recurse.
2383 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Chris Lattnerd7349192010-03-19 21:37:09 +00002384 if (Pat->getChild(i)->getNumTypes() == 0)
Chris Lattner6cefb772008-01-05 22:25:12 +00002385 I->error("Cannot have void nodes inside of patterns!");
2386 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
Chris Lattneracfb70f2010-04-20 06:30:25 +00002387 InstImpResults);
Chris Lattner6cefb772008-01-05 22:25:12 +00002388 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002389
Chris Lattner6cefb772008-01-05 22:25:12 +00002390 // If this is a non-leaf node with no children, treat it basically as if
2391 // it were a leaf. This handles nodes like (imm).
Chris Lattneracfb70f2010-04-20 06:30:25 +00002392 bool isUse = HandleUse(I, Pat, InstInputs);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002393
Chris Lattner6cefb772008-01-05 22:25:12 +00002394 if (!isUse && Pat->getTransformFn())
2395 I->error("Cannot specify a transform function for a non-input value!");
2396 return;
Chris Lattner84aa60b2010-02-17 06:53:36 +00002397 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002398
Chris Lattner6cefb772008-01-05 22:25:12 +00002399 // Otherwise, this is a set, validate and collect instruction results.
2400 if (Pat->getNumChildren() == 0)
2401 I->error("set requires operands!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002402
Chris Lattner6cefb772008-01-05 22:25:12 +00002403 if (Pat->getTransformFn())
2404 I->error("Cannot specify a transform function on a set node!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002405
Chris Lattner6cefb772008-01-05 22:25:12 +00002406 // Check the set destinations.
2407 unsigned NumDests = Pat->getNumChildren()-1;
2408 for (unsigned i = 0; i != NumDests; ++i) {
2409 TreePatternNode *Dest = Pat->getChild(i);
2410 if (!Dest->isLeaf())
2411 I->error("set destination should be a register!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002412
Sean Silva6cfc8062012-10-10 20:24:43 +00002413 DefInit *Val = dyn_cast<DefInit>(Dest->getLeafValue());
Chris Lattner6cefb772008-01-05 22:25:12 +00002414 if (!Val)
2415 I->error("set destination should be a register!");
2416
2417 if (Val->getDef()->isSubClassOf("RegisterClass") ||
Owen Andersonbea6f612011-06-27 21:06:21 +00002418 Val->getDef()->isSubClassOf("RegisterOperand") ||
Chris Lattnera938ac62009-07-29 20:43:05 +00002419 Val->getDef()->isSubClassOf("PointerLikeRegClass")) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002420 if (Dest->getName().empty())
2421 I->error("set destination must have a name!");
2422 if (InstResults.count(Dest->getName()))
2423 I->error("cannot set '" + Dest->getName() +"' multiple times");
2424 InstResults[Dest->getName()] = Dest;
2425 } else if (Val->getDef()->isSubClassOf("Register")) {
2426 InstImpResults.push_back(Val->getDef());
2427 } else {
2428 I->error("set destination should be a register!");
2429 }
2430 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002431
Chris Lattner6cefb772008-01-05 22:25:12 +00002432 // Verify and collect info from the computation.
2433 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests),
Chris Lattneracfb70f2010-04-20 06:30:25 +00002434 InstInputs, InstResults, InstImpResults);
Chris Lattner6cefb772008-01-05 22:25:12 +00002435}
2436
Dan Gohmanee4fa192008-04-03 00:02:49 +00002437//===----------------------------------------------------------------------===//
2438// Instruction Analysis
2439//===----------------------------------------------------------------------===//
2440
2441class InstAnalyzer {
2442 const CodeGenDAGPatterns &CDP;
Dan Gohmanee4fa192008-04-03 00:02:49 +00002443public:
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002444 bool hasSideEffects;
2445 bool mayStore;
2446 bool mayLoad;
2447 bool isBitcast;
2448 bool isVariadic;
Dan Gohmanee4fa192008-04-03 00:02:49 +00002449
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002450 InstAnalyzer(const CodeGenDAGPatterns &cdp)
2451 : CDP(cdp), hasSideEffects(false), mayStore(false), mayLoad(false),
2452 isBitcast(false), isVariadic(false) {}
Dan Gohmanee4fa192008-04-03 00:02:49 +00002453
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002454 void Analyze(const TreePattern *Pat) {
2455 // Assume only the first tree is the pattern. The others are clobber nodes.
2456 AnalyzeNode(Pat->getTree(0));
Dan Gohmanee4fa192008-04-03 00:02:49 +00002457 }
2458
Jakob Stoklund Olesen4ad27ed2012-08-24 22:46:53 +00002459 void Analyze(const PatternToMatch *Pat) {
2460 AnalyzeNode(Pat->getSrcPattern());
2461 }
2462
Dan Gohmanee4fa192008-04-03 00:02:49 +00002463private:
Evan Cheng0f040a22011-03-15 05:09:26 +00002464 bool IsNodeBitcast(const TreePatternNode *N) const {
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002465 if (hasSideEffects || mayLoad || mayStore || isVariadic)
Evan Cheng0f040a22011-03-15 05:09:26 +00002466 return false;
2467
2468 if (N->getNumChildren() != 2)
2469 return false;
2470
2471 const TreePatternNode *N0 = N->getChild(0);
Sean Silva3f7b7f82012-10-10 20:24:47 +00002472 if (!N0->isLeaf() || !isa<DefInit>(N0->getLeafValue()))
Evan Cheng0f040a22011-03-15 05:09:26 +00002473 return false;
2474
2475 const TreePatternNode *N1 = N->getChild(1);
2476 if (N1->isLeaf())
2477 return false;
2478 if (N1->getNumChildren() != 1 || !N1->getChild(0)->isLeaf())
2479 return false;
2480
2481 const SDNodeInfo &OpInfo = CDP.getSDNodeInfo(N1->getOperator());
2482 if (OpInfo.getNumResults() != 1 || OpInfo.getNumOperands() != 1)
2483 return false;
2484 return OpInfo.getEnumName() == "ISD::BITCAST";
2485 }
2486
Jakob Stoklund Olesen325907d2012-08-28 03:26:49 +00002487public:
Dan Gohmanee4fa192008-04-03 00:02:49 +00002488 void AnalyzeNode(const TreePatternNode *N) {
2489 if (N->isLeaf()) {
Sean Silva6cfc8062012-10-10 20:24:43 +00002490 if (DefInit *DI = dyn_cast<DefInit>(N->getLeafValue())) {
Dan Gohmanee4fa192008-04-03 00:02:49 +00002491 Record *LeafRec = DI->getDef();
2492 // Handle ComplexPattern leaves.
2493 if (LeafRec->isSubClassOf("ComplexPattern")) {
2494 const ComplexPattern &CP = CDP.getComplexPattern(LeafRec);
2495 if (CP.hasProperty(SDNPMayStore)) mayStore = true;
2496 if (CP.hasProperty(SDNPMayLoad)) mayLoad = true;
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002497 if (CP.hasProperty(SDNPSideEffect)) hasSideEffects = true;
Dan Gohmanee4fa192008-04-03 00:02:49 +00002498 }
2499 }
2500 return;
2501 }
2502
2503 // Analyze children.
2504 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
2505 AnalyzeNode(N->getChild(i));
2506
2507 // Ignore set nodes, which are not SDNodes.
Evan Cheng0f040a22011-03-15 05:09:26 +00002508 if (N->getOperator()->getName() == "set") {
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002509 isBitcast = IsNodeBitcast(N);
Dan Gohmanee4fa192008-04-03 00:02:49 +00002510 return;
Evan Cheng0f040a22011-03-15 05:09:26 +00002511 }
Dan Gohmanee4fa192008-04-03 00:02:49 +00002512
2513 // Get information about the SDNode for the operator.
2514 const SDNodeInfo &OpInfo = CDP.getSDNodeInfo(N->getOperator());
2515
2516 // Notice properties of the node.
2517 if (OpInfo.hasProperty(SDNPMayStore)) mayStore = true;
2518 if (OpInfo.hasProperty(SDNPMayLoad)) mayLoad = true;
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002519 if (OpInfo.hasProperty(SDNPSideEffect)) hasSideEffects = true;
2520 if (OpInfo.hasProperty(SDNPVariadic)) isVariadic = true;
Dan Gohmanee4fa192008-04-03 00:02:49 +00002521
2522 if (const CodeGenIntrinsic *IntInfo = N->getIntrinsicInfo(CDP)) {
2523 // If this is an intrinsic, analyze it.
2524 if (IntInfo->ModRef >= CodeGenIntrinsic::ReadArgMem)
2525 mayLoad = true;// These may load memory.
2526
Dan Gohman7365c092010-08-05 23:36:21 +00002527 if (IntInfo->ModRef >= CodeGenIntrinsic::ReadWriteArgMem)
Dan Gohmanee4fa192008-04-03 00:02:49 +00002528 mayStore = true;// Intrinsics that can write to memory are 'mayStore'.
2529
Dan Gohman7365c092010-08-05 23:36:21 +00002530 if (IntInfo->ModRef >= CodeGenIntrinsic::ReadWriteMem)
Dan Gohmanee4fa192008-04-03 00:02:49 +00002531 // WriteMem intrinsics can have other strange effects.
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002532 hasSideEffects = true;
Dan Gohmanee4fa192008-04-03 00:02:49 +00002533 }
2534 }
2535
2536};
2537
Jakob Stoklund Olesen91f8dc92012-08-24 17:08:41 +00002538static bool InferFromPattern(CodeGenInstruction &InstInfo,
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002539 const InstAnalyzer &PatInfo,
2540 Record *PatDef) {
Jakob Stoklund Olesen91f8dc92012-08-24 17:08:41 +00002541 bool Error = false;
2542
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002543 // Remember where InstInfo got its flags.
2544 if (InstInfo.hasUndefFlags())
2545 InstInfo.InferredFrom = PatDef;
Dan Gohmanee4fa192008-04-03 00:02:49 +00002546
Jakob Stoklund Olesen91f8dc92012-08-24 17:08:41 +00002547 // Check explicitly set flags for consistency.
2548 if (InstInfo.hasSideEffects != PatInfo.hasSideEffects &&
2549 !InstInfo.hasSideEffects_Unset) {
2550 // Allow explicitly setting hasSideEffects = 1 on instructions, even when
2551 // the pattern has no side effects. That could be useful for div/rem
2552 // instructions that may trap.
2553 if (!InstInfo.hasSideEffects) {
2554 Error = true;
2555 PrintError(PatDef->getLoc(), "Pattern doesn't match hasSideEffects = " +
2556 Twine(InstInfo.hasSideEffects));
2557 }
2558 }
2559
2560 if (InstInfo.mayStore != PatInfo.mayStore && !InstInfo.mayStore_Unset) {
2561 Error = true;
2562 PrintError(PatDef->getLoc(), "Pattern doesn't match mayStore = " +
2563 Twine(InstInfo.mayStore));
2564 }
2565
2566 if (InstInfo.mayLoad != PatInfo.mayLoad && !InstInfo.mayLoad_Unset) {
2567 // Allow explicitly setting mayLoad = 1, even when the pattern has no loads.
2568 // Some targets translate imediates to loads.
2569 if (!InstInfo.mayLoad) {
2570 Error = true;
2571 PrintError(PatDef->getLoc(), "Pattern doesn't match mayLoad = " +
2572 Twine(InstInfo.mayLoad));
2573 }
2574 }
2575
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002576 // Transfer inferred flags.
2577 InstInfo.hasSideEffects |= PatInfo.hasSideEffects;
2578 InstInfo.mayStore |= PatInfo.mayStore;
2579 InstInfo.mayLoad |= PatInfo.mayLoad;
Dan Gohmanee4fa192008-04-03 00:02:49 +00002580
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002581 // These flags are silently added without any verification.
2582 InstInfo.isBitcast |= PatInfo.isBitcast;
Jakob Stoklund Olesenaaaecfc2012-08-24 21:08:09 +00002583
2584 // Don't infer isVariadic. This flag means something different on SDNodes and
2585 // instructions. For example, a CALL SDNode is variadic because it has the
2586 // call arguments as operands, but a CALL instruction is not variadic - it
2587 // has argument registers as implicit, not explicit uses.
Jakob Stoklund Olesen91f8dc92012-08-24 17:08:41 +00002588
2589 return Error;
Dan Gohmanee4fa192008-04-03 00:02:49 +00002590}
2591
Jim Grosbachac915b42012-07-17 00:47:06 +00002592/// hasNullFragReference - Return true if the DAG has any reference to the
2593/// null_frag operator.
2594static bool hasNullFragReference(DagInit *DI) {
Sean Silva6cfc8062012-10-10 20:24:43 +00002595 DefInit *OpDef = dyn_cast<DefInit>(DI->getOperator());
Jim Grosbachac915b42012-07-17 00:47:06 +00002596 if (!OpDef) return false;
2597 Record *Operator = OpDef->getDef();
2598
2599 // If this is the null fragment, return true.
2600 if (Operator->getName() == "null_frag") return true;
2601 // If any of the arguments reference the null fragment, return true.
2602 for (unsigned i = 0, e = DI->getNumArgs(); i != e; ++i) {
Sean Silva6cfc8062012-10-10 20:24:43 +00002603 DagInit *Arg = dyn_cast<DagInit>(DI->getArg(i));
Jim Grosbachac915b42012-07-17 00:47:06 +00002604 if (Arg && hasNullFragReference(Arg))
2605 return true;
2606 }
2607
2608 return false;
2609}
2610
2611/// hasNullFragReference - Return true if any DAG in the list references
2612/// the null_frag operator.
2613static bool hasNullFragReference(ListInit *LI) {
2614 for (unsigned i = 0, e = LI->getSize(); i != e; ++i) {
Sean Silva6cfc8062012-10-10 20:24:43 +00002615 DagInit *DI = dyn_cast<DagInit>(LI->getElement(i));
Jim Grosbachac915b42012-07-17 00:47:06 +00002616 assert(DI && "non-dag in an instruction Pattern list?!");
2617 if (hasNullFragReference(DI))
2618 return true;
2619 }
2620 return false;
2621}
2622
Jakob Stoklund Olesen4ad27ed2012-08-24 22:46:53 +00002623/// Get all the instructions in a tree.
2624static void
2625getInstructionsInTree(TreePatternNode *Tree, SmallVectorImpl<Record*> &Instrs) {
2626 if (Tree->isLeaf())
2627 return;
2628 if (Tree->getOperator()->isSubClassOf("Instruction"))
2629 Instrs.push_back(Tree->getOperator());
2630 for (unsigned i = 0, e = Tree->getNumChildren(); i != e; ++i)
2631 getInstructionsInTree(Tree->getChild(i), Instrs);
2632}
2633
Chris Lattner6cefb772008-01-05 22:25:12 +00002634/// ParseInstructions - Parse all of the instructions, inlining and resolving
2635/// any fragments involved. This populates the Instructions list with fully
2636/// resolved instructions.
Chris Lattnerfe718932008-01-06 01:10:31 +00002637void CodeGenDAGPatterns::ParseInstructions() {
Chris Lattner6cefb772008-01-05 22:25:12 +00002638 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002639
Chris Lattner6cefb772008-01-05 22:25:12 +00002640 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
David Greene05bce0b2011-07-29 22:43:06 +00002641 ListInit *LI = 0;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002642
Sean Silva3f7b7f82012-10-10 20:24:47 +00002643 if (isa<ListInit>(Instrs[i]->getValueInit("Pattern")))
Chris Lattner6cefb772008-01-05 22:25:12 +00002644 LI = Instrs[i]->getValueAsListInit("Pattern");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002645
Chris Lattner6cefb772008-01-05 22:25:12 +00002646 // If there is no pattern, only collect minimal information about the
2647 // instruction for its operand list. We have to assume that there is one
Jim Grosbachac915b42012-07-17 00:47:06 +00002648 // result, as we have no detailed info. A pattern which references the
2649 // null_frag operator is as-if no pattern were specified. Normally this
2650 // is from a multiclass expansion w/ a SDPatternOperator passed in as
2651 // null_frag.
2652 if (!LI || LI->getSize() == 0 || hasNullFragReference(LI)) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002653 std::vector<Record*> Results;
2654 std::vector<Record*> Operands;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002655
Chris Lattnerf30187a2010-03-19 00:07:20 +00002656 CodeGenInstruction &InstInfo = Target.getInstruction(Instrs[i]);
Chris Lattner6cefb772008-01-05 22:25:12 +00002657
Chris Lattnerc240bb02010-11-01 04:03:32 +00002658 if (InstInfo.Operands.size() != 0) {
2659 if (InstInfo.Operands.NumDefs == 0) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002660 // These produce no results
Chris Lattnerc240bb02010-11-01 04:03:32 +00002661 for (unsigned j = 0, e = InstInfo.Operands.size(); j < e; ++j)
2662 Operands.push_back(InstInfo.Operands[j].Rec);
Chris Lattner6cefb772008-01-05 22:25:12 +00002663 } else {
2664 // Assume the first operand is the result.
Chris Lattnerc240bb02010-11-01 04:03:32 +00002665 Results.push_back(InstInfo.Operands[0].Rec);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002666
Chris Lattner6cefb772008-01-05 22:25:12 +00002667 // The rest are inputs.
Chris Lattnerc240bb02010-11-01 04:03:32 +00002668 for (unsigned j = 1, e = InstInfo.Operands.size(); j < e; ++j)
2669 Operands.push_back(InstInfo.Operands[j].Rec);
Chris Lattner6cefb772008-01-05 22:25:12 +00002670 }
2671 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002672
Chris Lattner6cefb772008-01-05 22:25:12 +00002673 // Create and insert the instruction.
2674 std::vector<Record*> ImpResults;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002675 Instructions.insert(std::make_pair(Instrs[i],
Chris Lattner62bcec82010-04-20 06:28:43 +00002676 DAGInstruction(0, Results, Operands, ImpResults)));
Chris Lattner6cefb772008-01-05 22:25:12 +00002677 continue; // no pattern.
2678 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002679
Chris Lattner6cefb772008-01-05 22:25:12 +00002680 // Parse the instruction.
2681 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
2682 // Inline pattern fragments into it.
2683 I->InlinePatternFragments();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002684
Chris Lattner6cefb772008-01-05 22:25:12 +00002685 // Infer as many types as possible. If we cannot infer all of them, we can
2686 // never do anything with this instruction pattern: report it to the user.
2687 if (!I->InferAllTypes())
2688 I->error("Could not infer all types in pattern!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002689
2690 // InstInputs - Keep track of all of the inputs of the instruction, along
Chris Lattner6cefb772008-01-05 22:25:12 +00002691 // with the record they are declared as.
2692 std::map<std::string, TreePatternNode*> InstInputs;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002693
Chris Lattner6cefb772008-01-05 22:25:12 +00002694 // InstResults - Keep track of all the virtual registers that are 'set'
2695 // in the instruction, including what reg class they are.
2696 std::map<std::string, TreePatternNode*> InstResults;
2697
Chris Lattner6cefb772008-01-05 22:25:12 +00002698 std::vector<Record*> InstImpResults;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002699
Chris Lattner6cefb772008-01-05 22:25:12 +00002700 // Verify that the top-level forms in the instruction are of void type, and
2701 // fill in the InstResults map.
2702 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
2703 TreePatternNode *Pat = I->getTree(j);
Chris Lattnerd7349192010-03-19 21:37:09 +00002704 if (Pat->getNumTypes() != 0)
Chris Lattner6cefb772008-01-05 22:25:12 +00002705 I->error("Top-level forms in instruction pattern should have"
2706 " void types");
2707
2708 // Find inputs and outputs, and verify the structure of the uses/defs.
2709 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
Chris Lattneracfb70f2010-04-20 06:30:25 +00002710 InstImpResults);
Chris Lattner6cefb772008-01-05 22:25:12 +00002711 }
2712
2713 // Now that we have inputs and outputs of the pattern, inspect the operands
2714 // list for the instruction. This determines the order that operands are
2715 // added to the machine instruction the node corresponds to.
2716 unsigned NumResults = InstResults.size();
2717
2718 // Parse the operands list from the (ops) list, validating it.
2719 assert(I->getArgList().empty() && "Args list should still be empty here!");
Chris Lattnerf30187a2010-03-19 00:07:20 +00002720 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]);
Chris Lattner6cefb772008-01-05 22:25:12 +00002721
2722 // Check that all of the results occur first in the list.
2723 std::vector<Record*> Results;
Chris Lattnerd7349192010-03-19 21:37:09 +00002724 TreePatternNode *Res0Node = 0;
Chris Lattner6cefb772008-01-05 22:25:12 +00002725 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattnerc240bb02010-11-01 04:03:32 +00002726 if (i == CGI.Operands.size())
Chris Lattner6cefb772008-01-05 22:25:12 +00002727 I->error("'" + InstResults.begin()->first +
2728 "' set but does not appear in operand list!");
Chris Lattnerc240bb02010-11-01 04:03:32 +00002729 const std::string &OpName = CGI.Operands[i].Name;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002730
Chris Lattner6cefb772008-01-05 22:25:12 +00002731 // Check that it exists in InstResults.
2732 TreePatternNode *RNode = InstResults[OpName];
2733 if (RNode == 0)
2734 I->error("Operand $" + OpName + " does not exist in operand list!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002735
Chris Lattner6cefb772008-01-05 22:25:12 +00002736 if (i == 0)
2737 Res0Node = RNode;
Sean Silva3f7b7f82012-10-10 20:24:47 +00002738 Record *R = cast<DefInit>(RNode->getLeafValue())->getDef();
Chris Lattner6cefb772008-01-05 22:25:12 +00002739 if (R == 0)
2740 I->error("Operand $" + OpName + " should be a set destination: all "
2741 "outputs must occur before inputs in operand list!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002742
Chris Lattnerc240bb02010-11-01 04:03:32 +00002743 if (CGI.Operands[i].Rec != R)
Chris Lattner6cefb772008-01-05 22:25:12 +00002744 I->error("Operand $" + OpName + " class mismatch!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002745
Chris Lattner6cefb772008-01-05 22:25:12 +00002746 // Remember the return type.
Chris Lattnerc240bb02010-11-01 04:03:32 +00002747 Results.push_back(CGI.Operands[i].Rec);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002748
Chris Lattner6cefb772008-01-05 22:25:12 +00002749 // Okay, this one checks out.
2750 InstResults.erase(OpName);
2751 }
2752
2753 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
2754 // the copy while we're checking the inputs.
2755 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
2756
2757 std::vector<TreePatternNode*> ResultNodeOperands;
2758 std::vector<Record*> Operands;
Chris Lattnerc240bb02010-11-01 04:03:32 +00002759 for (unsigned i = NumResults, e = CGI.Operands.size(); i != e; ++i) {
2760 CGIOperandList::OperandInfo &Op = CGI.Operands[i];
Chris Lattner6cefb772008-01-05 22:25:12 +00002761 const std::string &OpName = Op.Name;
2762 if (OpName.empty())
2763 I->error("Operand #" + utostr(i) + " in operands list has no name!");
2764
2765 if (!InstInputsCheck.count(OpName)) {
Tom Stellard6d3d7652012-09-06 14:15:52 +00002766 // If this is an operand with a DefaultOps set filled in, we can ignore
2767 // this. When we codegen it, we will do so as always executed.
2768 if (Op.Rec->isSubClassOf("OperandWithDefaultOps")) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002769 // Does it have a non-empty DefaultOps field? If so, ignore this
2770 // operand.
2771 if (!getDefaultOperand(Op.Rec).DefaultOps.empty())
2772 continue;
2773 }
2774 I->error("Operand $" + OpName +
2775 " does not appear in the instruction pattern");
2776 }
2777 TreePatternNode *InVal = InstInputsCheck[OpName];
2778 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002779
Sean Silva3f7b7f82012-10-10 20:24:47 +00002780 if (InVal->isLeaf() && isa<DefInit>(InVal->getLeafValue())) {
David Greene05bce0b2011-07-29 22:43:06 +00002781 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Chris Lattner6cefb772008-01-05 22:25:12 +00002782 if (Op.Rec != InRec && !InRec->isSubClassOf("ComplexPattern"))
2783 I->error("Operand $" + OpName + "'s register class disagrees"
2784 " between the operand and pattern");
2785 }
2786 Operands.push_back(Op.Rec);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002787
Chris Lattner6cefb772008-01-05 22:25:12 +00002788 // Construct the result for the dest-pattern operand list.
2789 TreePatternNode *OpNode = InVal->clone();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002790
Chris Lattner6cefb772008-01-05 22:25:12 +00002791 // No predicate is useful on the result.
Dan Gohman0540e172008-10-15 06:17:21 +00002792 OpNode->clearPredicateFns();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002793
Chris Lattner6cefb772008-01-05 22:25:12 +00002794 // Promote the xform function to be an explicit node if set.
2795 if (Record *Xform = OpNode->getTransformFn()) {
2796 OpNode->setTransformFn(0);
2797 std::vector<TreePatternNode*> Children;
2798 Children.push_back(OpNode);
Chris Lattnerd7349192010-03-19 21:37:09 +00002799 OpNode = new TreePatternNode(Xform, Children, OpNode->getNumTypes());
Chris Lattner6cefb772008-01-05 22:25:12 +00002800 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002801
Chris Lattner6cefb772008-01-05 22:25:12 +00002802 ResultNodeOperands.push_back(OpNode);
2803 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002804
Chris Lattner6cefb772008-01-05 22:25:12 +00002805 if (!InstInputsCheck.empty())
2806 I->error("Input operand $" + InstInputsCheck.begin()->first +
2807 " occurs in pattern but not in operands list!");
2808
2809 TreePatternNode *ResultPattern =
Chris Lattnerd7349192010-03-19 21:37:09 +00002810 new TreePatternNode(I->getRecord(), ResultNodeOperands,
2811 GetNumNodeResults(I->getRecord(), *this));
Chris Lattner6cefb772008-01-05 22:25:12 +00002812 // Copy fully inferred output node type to instruction result pattern.
Chris Lattnerd7349192010-03-19 21:37:09 +00002813 for (unsigned i = 0; i != NumResults; ++i)
2814 ResultPattern->setType(i, Res0Node->getExtType(i));
Chris Lattner6cefb772008-01-05 22:25:12 +00002815
2816 // Create and insert the instruction.
Chris Lattneracfb70f2010-04-20 06:30:25 +00002817 // FIXME: InstImpResults should not be part of DAGInstruction.
Chris Lattner62bcec82010-04-20 06:28:43 +00002818 DAGInstruction TheInst(I, Results, Operands, InstImpResults);
Chris Lattner6cefb772008-01-05 22:25:12 +00002819 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
2820
2821 // Use a temporary tree pattern to infer all types and make sure that the
2822 // constructed result is correct. This depends on the instruction already
2823 // being inserted into the Instructions map.
2824 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattner2cacec52010-03-15 06:00:16 +00002825 Temp.InferAllTypes(&I->getNamedNodesMap());
Chris Lattner6cefb772008-01-05 22:25:12 +00002826
2827 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
2828 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002829
Chris Lattner6cefb772008-01-05 22:25:12 +00002830 DEBUG(I->dump());
2831 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002832
Chris Lattner6cefb772008-01-05 22:25:12 +00002833 // If we can, convert the instructions to be patterns that are matched!
Sean Silva90fee072012-09-19 01:47:00 +00002834 for (std::map<Record*, DAGInstruction, LessRecordByID>::iterator II =
Benjamin Kramer5b9e7ef2009-08-23 10:39:21 +00002835 Instructions.begin(),
Chris Lattner6cefb772008-01-05 22:25:12 +00002836 E = Instructions.end(); II != E; ++II) {
2837 DAGInstruction &TheInst = II->second;
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002838 TreePattern *I = TheInst.getPattern();
Chris Lattner6cefb772008-01-05 22:25:12 +00002839 if (I == 0) continue; // No pattern.
2840
2841 // FIXME: Assume only the first tree is the pattern. The others are clobber
2842 // nodes.
2843 TreePatternNode *Pattern = I->getTree(0);
2844 TreePatternNode *SrcPattern;
2845 if (Pattern->getOperator()->getName() == "set") {
2846 SrcPattern = Pattern->getChild(Pattern->getNumChildren()-1)->clone();
2847 } else{
2848 // Not a set (store or something?)
2849 SrcPattern = Pattern;
2850 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002851
Chris Lattner6cefb772008-01-05 22:25:12 +00002852 Record *Instr = II->first;
Chris Lattner25b6f912010-02-23 06:16:51 +00002853 AddPatternToMatch(I,
Jim Grosbach997759a2010-12-07 23:05:49 +00002854 PatternToMatch(Instr,
2855 Instr->getValueAsListInit("Predicates"),
Chris Lattner967d54a2010-02-23 06:35:45 +00002856 SrcPattern,
2857 TheInst.getResultPattern(),
Chris Lattner25b6f912010-02-23 06:16:51 +00002858 TheInst.getImpResults(),
Chris Lattner117ccb72010-03-01 22:09:11 +00002859 Instr->getValueAsInt("AddedComplexity"),
2860 Instr->getID()));
Chris Lattner6cefb772008-01-05 22:25:12 +00002861 }
2862}
2863
Chris Lattner4ac7a0c2010-02-23 06:55:24 +00002864
2865typedef std::pair<const TreePatternNode*, unsigned> NameRecord;
2866
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002867static void FindNames(const TreePatternNode *P,
Chris Lattnera27234e2010-02-23 07:22:28 +00002868 std::map<std::string, NameRecord> &Names,
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002869 TreePattern *PatternTop) {
Chris Lattner4ac7a0c2010-02-23 06:55:24 +00002870 if (!P->getName().empty()) {
2871 NameRecord &Rec = Names[P->getName()];
2872 // If this is the first instance of the name, remember the node.
2873 if (Rec.second++ == 0)
2874 Rec.first = P;
Chris Lattnerd7349192010-03-19 21:37:09 +00002875 else if (Rec.first->getExtTypes() != P->getExtTypes())
Chris Lattnera27234e2010-02-23 07:22:28 +00002876 PatternTop->error("repetition of value: $" + P->getName() +
2877 " where different uses have different types!");
Chris Lattner4ac7a0c2010-02-23 06:55:24 +00002878 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002879
Chris Lattner967d54a2010-02-23 06:35:45 +00002880 if (!P->isLeaf()) {
2881 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
Chris Lattnera27234e2010-02-23 07:22:28 +00002882 FindNames(P->getChild(i), Names, PatternTop);
Chris Lattner967d54a2010-02-23 06:35:45 +00002883 }
2884}
2885
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002886void CodeGenDAGPatterns::AddPatternToMatch(TreePattern *Pattern,
Chris Lattner25b6f912010-02-23 06:16:51 +00002887 const PatternToMatch &PTM) {
Chris Lattner967d54a2010-02-23 06:35:45 +00002888 // Do some sanity checking on the pattern we're about to match.
Chris Lattner25b6f912010-02-23 06:16:51 +00002889 std::string Reason;
Owen Andersoneb79b542012-09-19 22:15:06 +00002890 if (!PTM.getSrcPattern()->canPatternMatch(Reason, *this)) {
2891 PrintWarning(Pattern->getRecord()->getLoc(),
2892 Twine("Pattern can never match: ") + Reason);
2893 return;
2894 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002895
Chris Lattner405f1252010-03-01 22:29:19 +00002896 // If the source pattern's root is a complex pattern, that complex pattern
2897 // must specify the nodes it can potentially match.
2898 if (const ComplexPattern *CP =
2899 PTM.getSrcPattern()->getComplexPatternInfo(*this))
2900 if (CP->getRootNodes().empty())
2901 Pattern->error("ComplexPattern at root must specify list of opcodes it"
2902 " could match");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002903
2904
Chris Lattner967d54a2010-02-23 06:35:45 +00002905 // Find all of the named values in the input and output, ensure they have the
2906 // same type.
Chris Lattner4ac7a0c2010-02-23 06:55:24 +00002907 std::map<std::string, NameRecord> SrcNames, DstNames;
Chris Lattnera27234e2010-02-23 07:22:28 +00002908 FindNames(PTM.getSrcPattern(), SrcNames, Pattern);
2909 FindNames(PTM.getDstPattern(), DstNames, Pattern);
Chris Lattner967d54a2010-02-23 06:35:45 +00002910
2911 // Scan all of the named values in the destination pattern, rejecting them if
2912 // they don't exist in the input pattern.
Chris Lattner4ac7a0c2010-02-23 06:55:24 +00002913 for (std::map<std::string, NameRecord>::iterator
Chris Lattnerba1cff42010-02-23 07:50:58 +00002914 I = DstNames.begin(), E = DstNames.end(); I != E; ++I) {
Chris Lattner4ac7a0c2010-02-23 06:55:24 +00002915 if (SrcNames[I->first].first == 0)
Chris Lattner967d54a2010-02-23 06:35:45 +00002916 Pattern->error("Pattern has input without matching name in output: $" +
2917 I->first);
Chris Lattnerba1cff42010-02-23 07:50:58 +00002918 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002919
Chris Lattner4ac7a0c2010-02-23 06:55:24 +00002920 // Scan all of the named values in the source pattern, rejecting them if the
2921 // name isn't used in the dest, and isn't used to tie two values together.
2922 for (std::map<std::string, NameRecord>::iterator
2923 I = SrcNames.begin(), E = SrcNames.end(); I != E; ++I)
2924 if (DstNames[I->first].first == 0 && SrcNames[I->first].second == 1)
2925 Pattern->error("Pattern has dead named input: $" + I->first);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00002926
Chris Lattner25b6f912010-02-23 06:16:51 +00002927 PatternsToMatch.push_back(PTM);
2928}
2929
2930
Dan Gohmanee4fa192008-04-03 00:02:49 +00002931
2932void CodeGenDAGPatterns::InferInstructionFlags() {
Chris Lattnerf6502782010-03-19 00:34:35 +00002933 const std::vector<const CodeGenInstruction*> &Instructions =
2934 Target.getInstructionsByEnumValue();
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002935
2936 // First try to infer flags from the primary instruction pattern, if any.
2937 SmallVector<CodeGenInstruction*, 8> Revisit;
Jakob Stoklund Olesen91f8dc92012-08-24 17:08:41 +00002938 unsigned Errors = 0;
Chris Lattnerb61e09d2010-03-19 00:18:23 +00002939 for (unsigned i = 0, e = Instructions.size(); i != e; ++i) {
2940 CodeGenInstruction &InstInfo =
2941 const_cast<CodeGenInstruction &>(*Instructions[i]);
Jakob Stoklund Olesenccbe6032011-10-14 01:00:49 +00002942
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002943 // Treat neverHasSideEffects = 1 as the equivalent of hasSideEffects = 0.
2944 // This flag is obsolete and will be removed.
2945 if (InstInfo.neverHasSideEffects) {
2946 assert(!InstInfo.hasSideEffects);
2947 InstInfo.hasSideEffects_Unset = false;
2948 }
2949
2950 // Get the primary instruction pattern.
2951 const TreePattern *Pattern = getInstruction(InstInfo.TheDef).getPattern();
2952 if (!Pattern) {
2953 if (InstInfo.hasUndefFlags())
2954 Revisit.push_back(&InstInfo);
2955 continue;
2956 }
2957 InstAnalyzer PatInfo(*this);
2958 PatInfo.Analyze(Pattern);
Jakob Stoklund Olesen91f8dc92012-08-24 17:08:41 +00002959 Errors += InferFromPattern(InstInfo, PatInfo, InstInfo.TheDef);
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002960 }
2961
Jakob Stoklund Olesen4ad27ed2012-08-24 22:46:53 +00002962 // Second, look for single-instruction patterns defined outside the
2963 // instruction.
2964 for (ptm_iterator I = ptm_begin(), E = ptm_end(); I != E; ++I) {
2965 const PatternToMatch &PTM = *I;
2966
2967 // We can only infer from single-instruction patterns, otherwise we won't
2968 // know which instruction should get the flags.
2969 SmallVector<Record*, 8> PatInstrs;
2970 getInstructionsInTree(PTM.getDstPattern(), PatInstrs);
2971 if (PatInstrs.size() != 1)
2972 continue;
2973
2974 // Get the single instruction.
2975 CodeGenInstruction &InstInfo = Target.getInstruction(PatInstrs.front());
2976
2977 // Only infer properties from the first pattern. We'll verify the others.
2978 if (InstInfo.InferredFrom)
2979 continue;
2980
2981 InstAnalyzer PatInfo(*this);
2982 PatInfo.Analyze(&PTM);
2983 Errors += InferFromPattern(InstInfo, PatInfo, PTM.getSrcRecord());
2984 }
2985
Jakob Stoklund Olesen91f8dc92012-08-24 17:08:41 +00002986 if (Errors)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00002987 PrintFatalError("pattern conflicts");
Jakob Stoklund Olesen91f8dc92012-08-24 17:08:41 +00002988
Jakob Stoklund Olesen912519a2012-08-24 00:31:16 +00002989 // Revisit instructions with undefined flags and no pattern.
2990 if (Target.guessInstructionProperties()) {
2991 for (unsigned i = 0, e = Revisit.size(); i != e; ++i) {
2992 CodeGenInstruction &InstInfo = *Revisit[i];
2993 if (InstInfo.InferredFrom)
2994 continue;
2995 // The mayLoad and mayStore flags default to false.
2996 // Conservatively assume hasSideEffects if it wasn't explicit.
2997 if (InstInfo.hasSideEffects_Unset)
2998 InstInfo.hasSideEffects = true;
2999 }
3000 return;
3001 }
3002
3003 // Complain about any flags that are still undefined.
3004 for (unsigned i = 0, e = Revisit.size(); i != e; ++i) {
3005 CodeGenInstruction &InstInfo = *Revisit[i];
3006 if (InstInfo.InferredFrom)
3007 continue;
3008 if (InstInfo.hasSideEffects_Unset)
3009 PrintError(InstInfo.TheDef->getLoc(),
3010 "Can't infer hasSideEffects from patterns");
3011 if (InstInfo.mayStore_Unset)
3012 PrintError(InstInfo.TheDef->getLoc(),
3013 "Can't infer mayStore from patterns");
3014 if (InstInfo.mayLoad_Unset)
3015 PrintError(InstInfo.TheDef->getLoc(),
3016 "Can't infer mayLoad from patterns");
Dan Gohmanee4fa192008-04-03 00:02:49 +00003017 }
3018}
3019
Jakob Stoklund Olesen325907d2012-08-28 03:26:49 +00003020
3021/// Verify instruction flags against pattern node properties.
3022void CodeGenDAGPatterns::VerifyInstructionFlags() {
3023 unsigned Errors = 0;
3024 for (ptm_iterator I = ptm_begin(), E = ptm_end(); I != E; ++I) {
3025 const PatternToMatch &PTM = *I;
3026 SmallVector<Record*, 8> Instrs;
3027 getInstructionsInTree(PTM.getDstPattern(), Instrs);
3028 if (Instrs.empty())
3029 continue;
3030
3031 // Count the number of instructions with each flag set.
3032 unsigned NumSideEffects = 0;
3033 unsigned NumStores = 0;
3034 unsigned NumLoads = 0;
3035 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
3036 const CodeGenInstruction &InstInfo = Target.getInstruction(Instrs[i]);
3037 NumSideEffects += InstInfo.hasSideEffects;
3038 NumStores += InstInfo.mayStore;
3039 NumLoads += InstInfo.mayLoad;
3040 }
3041
3042 // Analyze the source pattern.
3043 InstAnalyzer PatInfo(*this);
3044 PatInfo.Analyze(&PTM);
3045
3046 // Collect error messages.
3047 SmallVector<std::string, 4> Msgs;
3048
3049 // Check for missing flags in the output.
3050 // Permit extra flags for now at least.
3051 if (PatInfo.hasSideEffects && !NumSideEffects)
3052 Msgs.push_back("pattern has side effects, but hasSideEffects isn't set");
3053
3054 // Don't verify store flags on instructions with side effects. At least for
3055 // intrinsics, side effects implies mayStore.
3056 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores)
3057 Msgs.push_back("pattern may store, but mayStore isn't set");
3058
3059 // Similarly, mayStore implies mayLoad on intrinsics.
3060 if (!PatInfo.mayStore && PatInfo.mayLoad && !NumLoads)
3061 Msgs.push_back("pattern may load, but mayLoad isn't set");
3062
3063 // Print error messages.
3064 if (Msgs.empty())
3065 continue;
3066 ++Errors;
3067
3068 for (unsigned i = 0, e = Msgs.size(); i != e; ++i)
3069 PrintError(PTM.getSrcRecord()->getLoc(), Twine(Msgs[i]) + " on the " +
3070 (Instrs.size() == 1 ?
3071 "instruction" : "output instructions"));
3072 // Provide the location of the relevant instruction definitions.
3073 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
3074 if (Instrs[i] != PTM.getSrcRecord())
3075 PrintError(Instrs[i]->getLoc(), "defined here");
3076 const CodeGenInstruction &InstInfo = Target.getInstruction(Instrs[i]);
3077 if (InstInfo.InferredFrom &&
3078 InstInfo.InferredFrom != InstInfo.TheDef &&
3079 InstInfo.InferredFrom != PTM.getSrcRecord())
3080 PrintError(InstInfo.InferredFrom->getLoc(), "inferred from patttern");
3081 }
3082 }
3083 if (Errors)
Joerg Sonnenberger61131ab2012-10-25 20:33:17 +00003084 PrintFatalError("Errors in DAG patterns");
Jakob Stoklund Olesen325907d2012-08-28 03:26:49 +00003085}
3086
Chris Lattner2cacec52010-03-15 06:00:16 +00003087/// Given a pattern result with an unresolved type, see if we can find one
3088/// instruction with an unresolved result type. Force this result type to an
3089/// arbitrary element if it's possible types to converge results.
3090static bool ForceArbitraryInstResultType(TreePatternNode *N, TreePattern &TP) {
3091 if (N->isLeaf())
3092 return false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003093
Chris Lattner2cacec52010-03-15 06:00:16 +00003094 // Analyze children.
3095 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
3096 if (ForceArbitraryInstResultType(N->getChild(i), TP))
3097 return true;
3098
3099 if (!N->getOperator()->isSubClassOf("Instruction"))
3100 return false;
3101
3102 // If this type is already concrete or completely unknown we can't do
3103 // anything.
Chris Lattnerd7349192010-03-19 21:37:09 +00003104 for (unsigned i = 0, e = N->getNumTypes(); i != e; ++i) {
3105 if (N->getExtType(i).isCompletelyUnknown() || N->getExtType(i).isConcrete())
3106 continue;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003107
Chris Lattnerd7349192010-03-19 21:37:09 +00003108 // Otherwise, force its type to the first possibility (an arbitrary choice).
3109 if (N->getExtType(i).MergeInTypeInfo(N->getExtType(i).getTypeList()[0], TP))
3110 return true;
3111 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003112
Chris Lattnerd7349192010-03-19 21:37:09 +00003113 return false;
Chris Lattner2cacec52010-03-15 06:00:16 +00003114}
3115
Chris Lattnerfe718932008-01-06 01:10:31 +00003116void CodeGenDAGPatterns::ParsePatterns() {
Chris Lattner6cefb772008-01-05 22:25:12 +00003117 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
3118
3119 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnerd7349192010-03-19 21:37:09 +00003120 Record *CurPattern = Patterns[i];
David Greene05bce0b2011-07-29 22:43:06 +00003121 DagInit *Tree = CurPattern->getValueAsDag("PatternToMatch");
Jim Grosbachd3e31212012-07-17 18:39:36 +00003122
3123 // If the pattern references the null_frag, there's nothing to do.
3124 if (hasNullFragReference(Tree))
3125 continue;
3126
Chris Lattner310adf12010-03-27 02:53:27 +00003127 TreePattern *Pattern = new TreePattern(CurPattern, Tree, true, *this);
Chris Lattner6cefb772008-01-05 22:25:12 +00003128
3129 // Inline pattern fragments into it.
3130 Pattern->InlinePatternFragments();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003131
David Greene05bce0b2011-07-29 22:43:06 +00003132 ListInit *LI = CurPattern->getValueAsListInit("ResultInstrs");
Chris Lattner6cefb772008-01-05 22:25:12 +00003133 if (LI->getSize() == 0) continue; // no pattern.
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003134
Chris Lattner6cefb772008-01-05 22:25:12 +00003135 // Parse the instruction.
Chris Lattnerd7349192010-03-19 21:37:09 +00003136 TreePattern *Result = new TreePattern(CurPattern, LI, false, *this);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003137
Chris Lattner6cefb772008-01-05 22:25:12 +00003138 // Inline pattern fragments into it.
3139 Result->InlinePatternFragments();
3140
3141 if (Result->getNumTrees() != 1)
3142 Result->error("Cannot handle instructions producing instructions "
3143 "with temporaries yet!");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003144
Chris Lattner6cefb772008-01-05 22:25:12 +00003145 bool IterateInference;
3146 bool InferredAllPatternTypes, InferredAllResultTypes;
3147 do {
3148 // Infer as many types as possible. If we cannot infer all of them, we
3149 // can never do anything with this pattern: report it to the user.
Chris Lattner2cacec52010-03-15 06:00:16 +00003150 InferredAllPatternTypes =
3151 Pattern->InferAllTypes(&Pattern->getNamedNodesMap());
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003152
Chris Lattner6cefb772008-01-05 22:25:12 +00003153 // Infer as many types as possible. If we cannot infer all of them, we
3154 // can never do anything with this pattern: report it to the user.
Chris Lattner2cacec52010-03-15 06:00:16 +00003155 InferredAllResultTypes =
3156 Result->InferAllTypes(&Pattern->getNamedNodesMap());
Chris Lattner6cefb772008-01-05 22:25:12 +00003157
Chris Lattner6c6ba362010-03-18 23:15:10 +00003158 IterateInference = false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003159
Chris Lattner6cefb772008-01-05 22:25:12 +00003160 // Apply the type of the result to the source pattern. This helps us
3161 // resolve cases where the input type is known to be a pointer type (which
3162 // is considered resolved), but the result knows it needs to be 32- or
3163 // 64-bits. Infer the other way for good measure.
Chris Lattnerd7349192010-03-19 21:37:09 +00003164 for (unsigned i = 0, e = std::min(Result->getTree(0)->getNumTypes(),
3165 Pattern->getTree(0)->getNumTypes());
3166 i != e; ++i) {
Chris Lattner6c6ba362010-03-18 23:15:10 +00003167 IterateInference = Pattern->getTree(0)->
Chris Lattnerd7349192010-03-19 21:37:09 +00003168 UpdateNodeType(i, Result->getTree(0)->getExtType(i), *Result);
Chris Lattner6c6ba362010-03-18 23:15:10 +00003169 IterateInference |= Result->getTree(0)->
Chris Lattnerd7349192010-03-19 21:37:09 +00003170 UpdateNodeType(i, Pattern->getTree(0)->getExtType(i), *Result);
Chris Lattner6c6ba362010-03-18 23:15:10 +00003171 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003172
Chris Lattner2cacec52010-03-15 06:00:16 +00003173 // If our iteration has converged and the input pattern's types are fully
3174 // resolved but the result pattern is not fully resolved, we may have a
3175 // situation where we have two instructions in the result pattern and
3176 // the instructions require a common register class, but don't care about
3177 // what actual MVT is used. This is actually a bug in our modelling:
3178 // output patterns should have register classes, not MVTs.
3179 //
3180 // In any case, to handle this, we just go through and disambiguate some
3181 // arbitrary types to the result pattern's nodes.
3182 if (!IterateInference && InferredAllPatternTypes &&
3183 !InferredAllResultTypes)
3184 IterateInference = ForceArbitraryInstResultType(Result->getTree(0),
3185 *Result);
Chris Lattner6cefb772008-01-05 22:25:12 +00003186 } while (IterateInference);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003187
Chris Lattner6cefb772008-01-05 22:25:12 +00003188 // Verify that we inferred enough types that we can do something with the
3189 // pattern and result. If these fire the user has to add type casts.
3190 if (!InferredAllPatternTypes)
3191 Pattern->error("Could not infer all types in pattern!");
Chris Lattner2cacec52010-03-15 06:00:16 +00003192 if (!InferredAllResultTypes) {
3193 Pattern->dump();
Chris Lattner6cefb772008-01-05 22:25:12 +00003194 Result->error("Could not infer all types in pattern result!");
Chris Lattner2cacec52010-03-15 06:00:16 +00003195 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003196
Chris Lattner6cefb772008-01-05 22:25:12 +00003197 // Validate that the input pattern is correct.
3198 std::map<std::string, TreePatternNode*> InstInputs;
3199 std::map<std::string, TreePatternNode*> InstResults;
Chris Lattner6cefb772008-01-05 22:25:12 +00003200 std::vector<Record*> InstImpResults;
3201 for (unsigned j = 0, ee = Pattern->getNumTrees(); j != ee; ++j)
3202 FindPatternInputsAndOutputs(Pattern, Pattern->getTree(j),
3203 InstInputs, InstResults,
Chris Lattneracfb70f2010-04-20 06:30:25 +00003204 InstImpResults);
Chris Lattner6cefb772008-01-05 22:25:12 +00003205
3206 // Promote the xform function to be an explicit node if set.
3207 TreePatternNode *DstPattern = Result->getOnlyTree();
3208 std::vector<TreePatternNode*> ResultNodeOperands;
3209 for (unsigned ii = 0, ee = DstPattern->getNumChildren(); ii != ee; ++ii) {
3210 TreePatternNode *OpNode = DstPattern->getChild(ii);
3211 if (Record *Xform = OpNode->getTransformFn()) {
3212 OpNode->setTransformFn(0);
3213 std::vector<TreePatternNode*> Children;
3214 Children.push_back(OpNode);
Chris Lattnerd7349192010-03-19 21:37:09 +00003215 OpNode = new TreePatternNode(Xform, Children, OpNode->getNumTypes());
Chris Lattner6cefb772008-01-05 22:25:12 +00003216 }
3217 ResultNodeOperands.push_back(OpNode);
3218 }
3219 DstPattern = Result->getOnlyTree();
3220 if (!DstPattern->isLeaf())
3221 DstPattern = new TreePatternNode(DstPattern->getOperator(),
Chris Lattnerd7349192010-03-19 21:37:09 +00003222 ResultNodeOperands,
3223 DstPattern->getNumTypes());
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003224
Chris Lattnerd7349192010-03-19 21:37:09 +00003225 for (unsigned i = 0, e = Result->getOnlyTree()->getNumTypes(); i != e; ++i)
3226 DstPattern->setType(i, Result->getOnlyTree()->getExtType(i));
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003227
Chris Lattner6cefb772008-01-05 22:25:12 +00003228 TreePattern Temp(Result->getRecord(), DstPattern, false, *this);
3229 Temp.InferAllTypes();
3230
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003231
Chris Lattner25b6f912010-02-23 06:16:51 +00003232 AddPatternToMatch(Pattern,
Jim Grosbach997759a2010-12-07 23:05:49 +00003233 PatternToMatch(CurPattern,
3234 CurPattern->getValueAsListInit("Predicates"),
Chris Lattnerd7349192010-03-19 21:37:09 +00003235 Pattern->getTree(0),
3236 Temp.getOnlyTree(), InstImpResults,
3237 CurPattern->getValueAsInt("AddedComplexity"),
3238 CurPattern->getID()));
Chris Lattner6cefb772008-01-05 22:25:12 +00003239 }
3240}
3241
3242/// CombineChildVariants - Given a bunch of permutations of each child of the
3243/// 'operator' node, put them together in all possible ways.
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003244static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattner6cefb772008-01-05 22:25:12 +00003245 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
3246 std::vector<TreePatternNode*> &OutVariants,
Scott Michel327d0652008-03-05 17:49:05 +00003247 CodeGenDAGPatterns &CDP,
3248 const MultipleUseVarSet &DepVars) {
Chris Lattner6cefb772008-01-05 22:25:12 +00003249 // Make sure that each operand has at least one variant to choose from.
3250 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
3251 if (ChildVariants[i].empty())
3252 return;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003253
Chris Lattner6cefb772008-01-05 22:25:12 +00003254 // The end result is an all-pairs construction of the resultant pattern.
3255 std::vector<unsigned> Idxs;
3256 Idxs.resize(ChildVariants.size());
Scott Michel327d0652008-03-05 17:49:05 +00003257 bool NotDone;
3258 do {
3259#ifndef NDEBUG
Chris Lattneraaf54862010-02-27 06:51:44 +00003260 DEBUG(if (!Idxs.empty()) {
3261 errs() << Orig->getOperator()->getName() << ": Idxs = [ ";
3262 for (unsigned i = 0; i < Idxs.size(); ++i) {
3263 errs() << Idxs[i] << " ";
3264 }
3265 errs() << "]\n";
3266 });
Scott Michel327d0652008-03-05 17:49:05 +00003267#endif
Chris Lattner6cefb772008-01-05 22:25:12 +00003268 // Create the variant and add it to the output list.
3269 std::vector<TreePatternNode*> NewChildren;
3270 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
3271 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
Chris Lattnerd7349192010-03-19 21:37:09 +00003272 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren,
3273 Orig->getNumTypes());
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003274
Chris Lattner6cefb772008-01-05 22:25:12 +00003275 // Copy over properties.
3276 R->setName(Orig->getName());
Dan Gohman0540e172008-10-15 06:17:21 +00003277 R->setPredicateFns(Orig->getPredicateFns());
Chris Lattner6cefb772008-01-05 22:25:12 +00003278 R->setTransformFn(Orig->getTransformFn());
Chris Lattnerd7349192010-03-19 21:37:09 +00003279 for (unsigned i = 0, e = Orig->getNumTypes(); i != e; ++i)
3280 R->setType(i, Orig->getExtType(i));
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003281
Scott Michel327d0652008-03-05 17:49:05 +00003282 // If this pattern cannot match, do not include it as a variant.
Chris Lattner6cefb772008-01-05 22:25:12 +00003283 std::string ErrString;
3284 if (!R->canPatternMatch(ErrString, CDP)) {
3285 delete R;
3286 } else {
3287 bool AlreadyExists = false;
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003288
Chris Lattner6cefb772008-01-05 22:25:12 +00003289 // Scan to see if this pattern has already been emitted. We can get
3290 // duplication due to things like commuting:
3291 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
3292 // which are the same pattern. Ignore the dups.
3293 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
Scott Michel327d0652008-03-05 17:49:05 +00003294 if (R->isIsomorphicTo(OutVariants[i], DepVars)) {
Chris Lattner6cefb772008-01-05 22:25:12 +00003295 AlreadyExists = true;
3296 break;
3297 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003298
Chris Lattner6cefb772008-01-05 22:25:12 +00003299 if (AlreadyExists)
3300 delete R;
3301 else
3302 OutVariants.push_back(R);
3303 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003304
Scott Michel327d0652008-03-05 17:49:05 +00003305 // Increment indices to the next permutation by incrementing the
3306 // indicies from last index backward, e.g., generate the sequence
3307 // [0, 0], [0, 1], [1, 0], [1, 1].
3308 int IdxsIdx;
3309 for (IdxsIdx = Idxs.size() - 1; IdxsIdx >= 0; --IdxsIdx) {
3310 if (++Idxs[IdxsIdx] == ChildVariants[IdxsIdx].size())
3311 Idxs[IdxsIdx] = 0;
3312 else
Chris Lattner6cefb772008-01-05 22:25:12 +00003313 break;
Chris Lattner6cefb772008-01-05 22:25:12 +00003314 }
Scott Michel327d0652008-03-05 17:49:05 +00003315 NotDone = (IdxsIdx >= 0);
3316 } while (NotDone);
Chris Lattner6cefb772008-01-05 22:25:12 +00003317}
3318
3319/// CombineChildVariants - A helper function for binary operators.
3320///
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003321static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattner6cefb772008-01-05 22:25:12 +00003322 const std::vector<TreePatternNode*> &LHS,
3323 const std::vector<TreePatternNode*> &RHS,
3324 std::vector<TreePatternNode*> &OutVariants,
Scott Michel327d0652008-03-05 17:49:05 +00003325 CodeGenDAGPatterns &CDP,
3326 const MultipleUseVarSet &DepVars) {
Chris Lattner6cefb772008-01-05 22:25:12 +00003327 std::vector<std::vector<TreePatternNode*> > ChildVariants;
3328 ChildVariants.push_back(LHS);
3329 ChildVariants.push_back(RHS);
Scott Michel327d0652008-03-05 17:49:05 +00003330 CombineChildVariants(Orig, ChildVariants, OutVariants, CDP, DepVars);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003331}
Chris Lattner6cefb772008-01-05 22:25:12 +00003332
3333
3334static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
3335 std::vector<TreePatternNode *> &Children) {
3336 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
3337 Record *Operator = N->getOperator();
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003338
Chris Lattner6cefb772008-01-05 22:25:12 +00003339 // Only permit raw nodes.
Dan Gohman0540e172008-10-15 06:17:21 +00003340 if (!N->getName().empty() || !N->getPredicateFns().empty() ||
Chris Lattner6cefb772008-01-05 22:25:12 +00003341 N->getTransformFn()) {
3342 Children.push_back(N);
3343 return;
3344 }
3345
3346 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
3347 Children.push_back(N->getChild(0));
3348 else
3349 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
3350
3351 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
3352 Children.push_back(N->getChild(1));
3353 else
3354 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
3355}
3356
3357/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
3358/// the (potentially recursive) pattern by using algebraic laws.
3359///
3360static void GenerateVariantsOf(TreePatternNode *N,
3361 std::vector<TreePatternNode*> &OutVariants,
Scott Michel327d0652008-03-05 17:49:05 +00003362 CodeGenDAGPatterns &CDP,
3363 const MultipleUseVarSet &DepVars) {
Chris Lattner6cefb772008-01-05 22:25:12 +00003364 // We cannot permute leaves.
3365 if (N->isLeaf()) {
3366 OutVariants.push_back(N);
3367 return;
3368 }
3369
3370 // Look up interesting info about the node.
3371 const SDNodeInfo &NodeInfo = CDP.getSDNodeInfo(N->getOperator());
3372
Jim Grosbachda4231f2009-03-26 16:17:51 +00003373 // If this node is associative, re-associate.
Chris Lattner6cefb772008-01-05 22:25:12 +00003374 if (NodeInfo.hasProperty(SDNPAssociative)) {
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003375 // Re-associate by pulling together all of the linked operators
Chris Lattner6cefb772008-01-05 22:25:12 +00003376 std::vector<TreePatternNode*> MaximalChildren;
3377 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
3378
3379 // Only handle child sizes of 3. Otherwise we'll end up trying too many
3380 // permutations.
3381 if (MaximalChildren.size() == 3) {
3382 // Find the variants of all of our maximal children.
3383 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
Scott Michel327d0652008-03-05 17:49:05 +00003384 GenerateVariantsOf(MaximalChildren[0], AVariants, CDP, DepVars);
3385 GenerateVariantsOf(MaximalChildren[1], BVariants, CDP, DepVars);
3386 GenerateVariantsOf(MaximalChildren[2], CVariants, CDP, DepVars);
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003387
Chris Lattner6cefb772008-01-05 22:25:12 +00003388 // There are only two ways we can permute the tree:
3389 // (A op B) op C and A op (B op C)
3390 // Within these forms, we can also permute A/B/C.
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003391
Chris Lattner6cefb772008-01-05 22:25:12 +00003392 // Generate legal pair permutations of A/B/C.
3393 std::vector<TreePatternNode*> ABVariants;
3394 std::vector<TreePatternNode*> BAVariants;
3395 std::vector<TreePatternNode*> ACVariants;
3396 std::vector<TreePatternNode*> CAVariants;
3397 std::vector<TreePatternNode*> BCVariants;
3398 std::vector<TreePatternNode*> CBVariants;
Scott Michel327d0652008-03-05 17:49:05 +00003399 CombineChildVariants(N, AVariants, BVariants, ABVariants, CDP, DepVars);
3400 CombineChildVariants(N, BVariants, AVariants, BAVariants, CDP, DepVars);
3401 CombineChildVariants(N, AVariants, CVariants, ACVariants, CDP, DepVars);
3402 CombineChildVariants(N, CVariants, AVariants, CAVariants, CDP, DepVars);
3403 CombineChildVariants(N, BVariants, CVariants, BCVariants, CDP, DepVars);
3404 CombineChildVariants(N, CVariants, BVariants, CBVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00003405
3406 // Combine those into the result: (x op x) op x
Scott Michel327d0652008-03-05 17:49:05 +00003407 CombineChildVariants(N, ABVariants, CVariants, OutVariants, CDP, DepVars);
3408 CombineChildVariants(N, BAVariants, CVariants, OutVariants, CDP, DepVars);
3409 CombineChildVariants(N, ACVariants, BVariants, OutVariants, CDP, DepVars);
3410 CombineChildVariants(N, CAVariants, BVariants, OutVariants, CDP, DepVars);
3411 CombineChildVariants(N, BCVariants, AVariants, OutVariants, CDP, DepVars);
3412 CombineChildVariants(N, CBVariants, AVariants, OutVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00003413
3414 // Combine those into the result: x op (x op x)
Scott Michel327d0652008-03-05 17:49:05 +00003415 CombineChildVariants(N, CVariants, ABVariants, OutVariants, CDP, DepVars);
3416 CombineChildVariants(N, CVariants, BAVariants, OutVariants, CDP, DepVars);
3417 CombineChildVariants(N, BVariants, ACVariants, OutVariants, CDP, DepVars);
3418 CombineChildVariants(N, BVariants, CAVariants, OutVariants, CDP, DepVars);
3419 CombineChildVariants(N, AVariants, BCVariants, OutVariants, CDP, DepVars);
3420 CombineChildVariants(N, AVariants, CBVariants, OutVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00003421 return;
3422 }
3423 }
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003424
Chris Lattner6cefb772008-01-05 22:25:12 +00003425 // Compute permutations of all children.
3426 std::vector<std::vector<TreePatternNode*> > ChildVariants;
3427 ChildVariants.resize(N->getNumChildren());
3428 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
Scott Michel327d0652008-03-05 17:49:05 +00003429 GenerateVariantsOf(N->getChild(i), ChildVariants[i], CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00003430
3431 // Build all permutations based on how the children were formed.
Scott Michel327d0652008-03-05 17:49:05 +00003432 CombineChildVariants(N, ChildVariants, OutVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00003433
3434 // If this node is commutative, consider the commuted order.
Evan Cheng6bd95672008-06-16 20:29:38 +00003435 bool isCommIntrinsic = N->isCommutativeIntrinsic(CDP);
3436 if (NodeInfo.hasProperty(SDNPCommutative) || isCommIntrinsic) {
3437 assert((N->getNumChildren()==2 || isCommIntrinsic) &&
3438 "Commutative but doesn't have 2 children!");
Chris Lattner6cefb772008-01-05 22:25:12 +00003439 // Don't count children which are actually register references.
3440 unsigned NC = 0;
3441 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
3442 TreePatternNode *Child = N->getChild(i);
3443 if (Child->isLeaf())
Sean Silva6cfc8062012-10-10 20:24:43 +00003444 if (DefInit *DI = dyn_cast<DefInit>(Child->getLeafValue())) {
Chris Lattner6cefb772008-01-05 22:25:12 +00003445 Record *RR = DI->getDef();
3446 if (RR->isSubClassOf("Register"))
3447 continue;
3448 }
3449 NC++;
3450 }
3451 // Consider the commuted order.
Evan Cheng6bd95672008-06-16 20:29:38 +00003452 if (isCommIntrinsic) {
3453 // Commutative intrinsic. First operand is the intrinsic id, 2nd and 3rd
3454 // operands are the commutative operands, and there might be more operands
3455 // after those.
3456 assert(NC >= 3 &&
3457 "Commutative intrinsic should have at least 3 childrean!");
3458 std::vector<std::vector<TreePatternNode*> > Variants;
3459 Variants.push_back(ChildVariants[0]); // Intrinsic id.
3460 Variants.push_back(ChildVariants[2]);
3461 Variants.push_back(ChildVariants[1]);
3462 for (unsigned i = 3; i != NC; ++i)
3463 Variants.push_back(ChildVariants[i]);
3464 CombineChildVariants(N, Variants, OutVariants, CDP, DepVars);
3465 } else if (NC == 2)
Chris Lattner6cefb772008-01-05 22:25:12 +00003466 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
Scott Michel327d0652008-03-05 17:49:05 +00003467 OutVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00003468 }
3469}
3470
3471
3472// GenerateVariants - Generate variants. For example, commutative patterns can
3473// match multiple ways. Add them to PatternsToMatch as well.
Chris Lattnerfe718932008-01-06 01:10:31 +00003474void CodeGenDAGPatterns::GenerateVariants() {
Chris Lattner569f1212009-08-23 04:44:11 +00003475 DEBUG(errs() << "Generating instruction variants.\n");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003476
Chris Lattner6cefb772008-01-05 22:25:12 +00003477 // Loop over all of the patterns we've collected, checking to see if we can
3478 // generate variants of the instruction, through the exploitation of
Jim Grosbachda4231f2009-03-26 16:17:51 +00003479 // identities. This permits the target to provide aggressive matching without
Chris Lattner6cefb772008-01-05 22:25:12 +00003480 // the .td file having to contain tons of variants of instructions.
3481 //
3482 // Note that this loop adds new patterns to the PatternsToMatch list, but we
3483 // intentionally do not reconsider these. Any variants of added patterns have
3484 // already been added.
3485 //
3486 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Scott Michel327d0652008-03-05 17:49:05 +00003487 MultipleUseVarSet DepVars;
Chris Lattner6cefb772008-01-05 22:25:12 +00003488 std::vector<TreePatternNode*> Variants;
Scott Michel327d0652008-03-05 17:49:05 +00003489 FindDepVars(PatternsToMatch[i].getSrcPattern(), DepVars);
Chris Lattner569f1212009-08-23 04:44:11 +00003490 DEBUG(errs() << "Dependent/multiply used variables: ");
Scott Michel327d0652008-03-05 17:49:05 +00003491 DEBUG(DumpDepVars(DepVars));
Chris Lattner569f1212009-08-23 04:44:11 +00003492 DEBUG(errs() << "\n");
Jim Grosbachbb168242010-10-08 18:13:57 +00003493 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this,
3494 DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00003495
3496 assert(!Variants.empty() && "Must create at least original variant!");
3497 Variants.erase(Variants.begin()); // Remove the original pattern.
3498
3499 if (Variants.empty()) // No variants for this pattern.
3500 continue;
3501
Chris Lattner569f1212009-08-23 04:44:11 +00003502 DEBUG(errs() << "FOUND VARIANTS OF: ";
3503 PatternsToMatch[i].getSrcPattern()->dump();
3504 errs() << "\n");
Chris Lattner6cefb772008-01-05 22:25:12 +00003505
3506 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
3507 TreePatternNode *Variant = Variants[v];
3508
Chris Lattner569f1212009-08-23 04:44:11 +00003509 DEBUG(errs() << " VAR#" << v << ": ";
3510 Variant->dump();
3511 errs() << "\n");
Jim Grosbachfbadcd02010-12-21 16:16:00 +00003512
Chris Lattner6cefb772008-01-05 22:25:12 +00003513 // Scan to see if an instruction or explicit pattern already matches this.
3514 bool AlreadyExists = false;
3515 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
Evan Chengc0ad80f2009-06-26 05:59:16 +00003516 // Skip if the top level predicates do not match.
3517 if (PatternsToMatch[i].getPredicates() !=
3518 PatternsToMatch[p].getPredicates())
3519 continue;
Chris Lattner6cefb772008-01-05 22:25:12 +00003520 // Check to see if this variant already exists.
Jim Grosbachbb168242010-10-08 18:13:57 +00003521 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern(),
3522 DepVars)) {
Chris Lattner569f1212009-08-23 04:44:11 +00003523 DEBUG(errs() << " *** ALREADY EXISTS, ignoring variant.\n");
Chris Lattner6cefb772008-01-05 22:25:12 +00003524 AlreadyExists = true;
3525 break;
3526 }
3527 }
3528 // If we already have it, ignore the variant.
3529 if (AlreadyExists) continue;
3530
3531 // Otherwise, add it to the list of patterns we have.
3532 PatternsToMatch.
Jim Grosbach997759a2010-12-07 23:05:49 +00003533 push_back(PatternToMatch(PatternsToMatch[i].getSrcRecord(),
3534 PatternsToMatch[i].getPredicates(),
Chris Lattner6cefb772008-01-05 22:25:12 +00003535 Variant, PatternsToMatch[i].getDstPattern(),
3536 PatternsToMatch[i].getDstRegs(),
Chris Lattner117ccb72010-03-01 22:09:11 +00003537 PatternsToMatch[i].getAddedComplexity(),
3538 Record::getNewUID()));
Chris Lattner6cefb772008-01-05 22:25:12 +00003539 }
3540
Chris Lattner569f1212009-08-23 04:44:11 +00003541 DEBUG(errs() << "\n");
Chris Lattner6cefb772008-01-05 22:25:12 +00003542 }
3543}