blob: 1948c904adc2500c608580c41b0dfe474f43249c [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 Lattner6cefb772008-01-05 22:25:12 +000016#include "Record.h"
17#include "llvm/ADT/StringExtras.h"
18#include "llvm/Support/Debug.h"
Chris Lattner6cefb772008-01-05 22:25:12 +000019#include "llvm/Support/Streams.h"
Chris Lattner6cefb772008-01-05 22:25:12 +000020#include <set>
Chuck Rose III9a79de32008-01-15 21:43:17 +000021#include <algorithm>
Chris Lattner6cefb772008-01-05 22:25:12 +000022using namespace llvm;
23
24//===----------------------------------------------------------------------===//
25// Helpers for working with extended types.
26
27/// FilterVTs - Filter a list of VT's according to a predicate.
28///
29template<typename T>
Duncan Sands83ec4b62008-06-06 12:08:01 +000030static std::vector<MVT::SimpleValueType>
31FilterVTs(const std::vector<MVT::SimpleValueType> &InVTs, T Filter) {
32 std::vector<MVT::SimpleValueType> Result;
Chris Lattner6cefb772008-01-05 22:25:12 +000033 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
34 if (Filter(InVTs[i]))
35 Result.push_back(InVTs[i]);
36 return Result;
37}
38
39template<typename T>
40static std::vector<unsigned char>
41FilterEVTs(const std::vector<unsigned char> &InVTs, T Filter) {
42 std::vector<unsigned char> Result;
43 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +000044 if (Filter((MVT::SimpleValueType)InVTs[i]))
Chris Lattner6cefb772008-01-05 22:25:12 +000045 Result.push_back(InVTs[i]);
46 return Result;
47}
48
49static std::vector<unsigned char>
Duncan Sands83ec4b62008-06-06 12:08:01 +000050ConvertVTs(const std::vector<MVT::SimpleValueType> &InVTs) {
Chris Lattner6cefb772008-01-05 22:25:12 +000051 std::vector<unsigned char> Result;
52 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
53 Result.push_back(InVTs[i]);
54 return Result;
55}
56
Duncan Sands83ec4b62008-06-06 12:08:01 +000057static inline bool isInteger(MVT::SimpleValueType VT) {
58 return MVT(VT).isInteger();
59}
60
61static inline bool isFloatingPoint(MVT::SimpleValueType VT) {
62 return MVT(VT).isFloatingPoint();
63}
64
65static inline bool isVector(MVT::SimpleValueType VT) {
66 return MVT(VT).isVector();
67}
68
Chris Lattner6cefb772008-01-05 22:25:12 +000069static bool LHSIsSubsetOfRHS(const std::vector<unsigned char> &LHS,
70 const std::vector<unsigned char> &RHS) {
71 if (LHS.size() > RHS.size()) return false;
72 for (unsigned i = 0, e = LHS.size(); i != e; ++i)
73 if (std::find(RHS.begin(), RHS.end(), LHS[i]) == RHS.end())
74 return false;
75 return true;
76}
77
78/// isExtIntegerVT - Return true if the specified extended value type vector
79/// contains isInt or an integer value type.
80namespace llvm {
Duncan Sands83ec4b62008-06-06 12:08:01 +000081namespace EMVT {
Chris Lattner6cefb772008-01-05 22:25:12 +000082bool isExtIntegerInVTs(const std::vector<unsigned char> &EVTs) {
83 assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");
84 return EVTs[0] == isInt || !(FilterEVTs(EVTs, isInteger).empty());
85}
86
87/// isExtFloatingPointVT - Return true if the specified extended value type
88/// vector contains isFP or a FP value type.
89bool isExtFloatingPointInVTs(const std::vector<unsigned char> &EVTs) {
90 assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");
91 return EVTs[0] == isFP || !(FilterEVTs(EVTs, isFloatingPoint).empty());
92}
Duncan Sands83ec4b62008-06-06 12:08:01 +000093} // end namespace EMVT.
Chris Lattner6cefb772008-01-05 22:25:12 +000094} // end namespace llvm.
95
Scott Michel327d0652008-03-05 17:49:05 +000096
97/// Dependent variable map for CodeGenDAGPattern variant generation
98typedef std::map<std::string, int> DepVarMap;
99
100/// Const iterator shorthand for DepVarMap
101typedef DepVarMap::const_iterator DepVarMap_citer;
102
103namespace {
104void FindDepVarsOf(TreePatternNode *N, DepVarMap &DepMap) {
105 if (N->isLeaf()) {
106 if (dynamic_cast<DefInit*>(N->getLeafValue()) != NULL) {
107 DepMap[N->getName()]++;
108 }
109 } else {
110 for (size_t i = 0, e = N->getNumChildren(); i != e; ++i)
111 FindDepVarsOf(N->getChild(i), DepMap);
112 }
113}
114
115//! Find dependent variables within child patterns
116/*!
117 */
118void FindDepVars(TreePatternNode *N, MultipleUseVarSet &DepVars) {
119 DepVarMap depcounts;
120 FindDepVarsOf(N, depcounts);
121 for (DepVarMap_citer i = depcounts.begin(); i != depcounts.end(); ++i) {
122 if (i->second > 1) { // std::pair<std::string, int>
123 DepVars.insert(i->first);
124 }
125 }
126}
127
128//! Dump the dependent variable set:
129void DumpDepVars(MultipleUseVarSet &DepVars) {
130 if (DepVars.empty()) {
131 DOUT << "<empty set>";
132 } else {
133 DOUT << "[ ";
134 for (MultipleUseVarSet::const_iterator i = DepVars.begin(), e = DepVars.end();
135 i != e; ++i) {
136 DOUT << (*i) << " ";
137 }
138 DOUT << "]";
139 }
140}
141}
142
Chris Lattner6cefb772008-01-05 22:25:12 +0000143//===----------------------------------------------------------------------===//
144// SDTypeConstraint implementation
145//
146
147SDTypeConstraint::SDTypeConstraint(Record *R) {
148 OperandNo = R->getValueAsInt("OperandNum");
149
150 if (R->isSubClassOf("SDTCisVT")) {
151 ConstraintType = SDTCisVT;
152 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
153 } else if (R->isSubClassOf("SDTCisPtrTy")) {
154 ConstraintType = SDTCisPtrTy;
155 } else if (R->isSubClassOf("SDTCisInt")) {
156 ConstraintType = SDTCisInt;
157 } else if (R->isSubClassOf("SDTCisFP")) {
158 ConstraintType = SDTCisFP;
159 } else if (R->isSubClassOf("SDTCisSameAs")) {
160 ConstraintType = SDTCisSameAs;
161 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
162 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
163 ConstraintType = SDTCisVTSmallerThanOp;
164 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum =
165 R->getValueAsInt("OtherOperandNum");
166 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
167 ConstraintType = SDTCisOpSmallerThanOp;
168 x.SDTCisOpSmallerThanOp_Info.BigOperandNum =
169 R->getValueAsInt("BigOperandNum");
170 } else if (R->isSubClassOf("SDTCisIntVectorOfSameSize")) {
171 ConstraintType = SDTCisIntVectorOfSameSize;
172 x.SDTCisIntVectorOfSameSize_Info.OtherOperandNum =
173 R->getValueAsInt("OtherOpNum");
Nate Begemanb5af3342008-02-09 01:37:05 +0000174 } else if (R->isSubClassOf("SDTCisEltOfVec")) {
175 ConstraintType = SDTCisEltOfVec;
176 x.SDTCisEltOfVec_Info.OtherOperandNum =
177 R->getValueAsInt("OtherOpNum");
Chris Lattner6cefb772008-01-05 22:25:12 +0000178 } else {
179 cerr << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n";
180 exit(1);
181 }
182}
183
184/// getOperandNum - Return the node corresponding to operand #OpNo in tree
185/// N, which has NumResults results.
186TreePatternNode *SDTypeConstraint::getOperandNum(unsigned OpNo,
187 TreePatternNode *N,
188 unsigned NumResults) const {
189 assert(NumResults <= 1 &&
190 "We only work with nodes with zero or one result so far!");
191
192 if (OpNo >= (NumResults + N->getNumChildren())) {
193 cerr << "Invalid operand number " << OpNo << " ";
194 N->dump();
195 cerr << '\n';
196 exit(1);
197 }
198
199 if (OpNo < NumResults)
200 return N; // FIXME: need value #
201 else
202 return N->getChild(OpNo-NumResults);
203}
204
205/// ApplyTypeConstraint - Given a node in a pattern, apply this type
206/// constraint to the nodes operands. This returns true if it makes a
207/// change, false otherwise. If a type contradiction is found, throw an
208/// exception.
209bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
210 const SDNodeInfo &NodeInfo,
211 TreePattern &TP) const {
212 unsigned NumResults = NodeInfo.getNumResults();
213 assert(NumResults <= 1 &&
214 "We only work with nodes with zero or one result so far!");
215
216 // Check that the number of operands is sane. Negative operands -> varargs.
217 if (NodeInfo.getNumOperands() >= 0) {
218 if (N->getNumChildren() != (unsigned)NodeInfo.getNumOperands())
219 TP.error(N->getOperator()->getName() + " node requires exactly " +
220 itostr(NodeInfo.getNumOperands()) + " operands!");
221 }
222
223 const CodeGenTarget &CGT = TP.getDAGPatterns().getTargetInfo();
224
225 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NumResults);
226
227 switch (ConstraintType) {
228 default: assert(0 && "Unknown constraint type!");
229 case SDTCisVT:
230 // Operand must be a particular type.
231 return NodeToApply->UpdateNodeType(x.SDTCisVT_Info.VT, TP);
232 case SDTCisPtrTy: {
233 // Operand must be same as target pointer type.
234 return NodeToApply->UpdateNodeType(MVT::iPTR, TP);
235 }
236 case SDTCisInt: {
237 // If there is only one integer type supported, this must be it.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000238 std::vector<MVT::SimpleValueType> IntVTs =
239 FilterVTs(CGT.getLegalValueTypes(), isInteger);
Chris Lattner6cefb772008-01-05 22:25:12 +0000240
241 // If we found exactly one supported integer type, apply it.
242 if (IntVTs.size() == 1)
243 return NodeToApply->UpdateNodeType(IntVTs[0], TP);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000244 return NodeToApply->UpdateNodeType(EMVT::isInt, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000245 }
246 case SDTCisFP: {
247 // If there is only one FP type supported, this must be it.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000248 std::vector<MVT::SimpleValueType> FPVTs =
249 FilterVTs(CGT.getLegalValueTypes(), isFloatingPoint);
Chris Lattner6cefb772008-01-05 22:25:12 +0000250
251 // If we found exactly one supported FP type, apply it.
252 if (FPVTs.size() == 1)
253 return NodeToApply->UpdateNodeType(FPVTs[0], TP);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000254 return NodeToApply->UpdateNodeType(EMVT::isFP, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000255 }
256 case SDTCisSameAs: {
257 TreePatternNode *OtherNode =
258 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NumResults);
259 return NodeToApply->UpdateNodeType(OtherNode->getExtTypes(), TP) |
260 OtherNode->UpdateNodeType(NodeToApply->getExtTypes(), TP);
261 }
262 case SDTCisVTSmallerThanOp: {
263 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must
264 // have an integer type that is smaller than the VT.
265 if (!NodeToApply->isLeaf() ||
266 !dynamic_cast<DefInit*>(NodeToApply->getLeafValue()) ||
267 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
268 ->isSubClassOf("ValueType"))
269 TP.error(N->getOperator()->getName() + " expects a VT operand!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000270 MVT::SimpleValueType VT =
Chris Lattner6cefb772008-01-05 22:25:12 +0000271 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000272 if (!isInteger(VT))
Chris Lattner6cefb772008-01-05 22:25:12 +0000273 TP.error(N->getOperator()->getName() + " VT operand must be integer!");
274
275 TreePatternNode *OtherNode =
276 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N,NumResults);
277
278 // It must be integer.
279 bool MadeChange = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000280 MadeChange |= OtherNode->UpdateNodeType(EMVT::isInt, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000281
282 // This code only handles nodes that have one type set. Assert here so
283 // that we can change this if we ever need to deal with multiple value
284 // types at this point.
285 assert(OtherNode->getExtTypes().size() == 1 && "Node has too many types!");
286 if (OtherNode->hasTypeSet() && OtherNode->getTypeNum(0) <= VT)
287 OtherNode->UpdateNodeType(MVT::Other, TP); // Throw an error.
288 return false;
289 }
290 case SDTCisOpSmallerThanOp: {
291 TreePatternNode *BigOperand =
292 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NumResults);
293
294 // Both operands must be integer or FP, but we don't care which.
295 bool MadeChange = false;
296
297 // This code does not currently handle nodes which have multiple types,
298 // where some types are integer, and some are fp. Assert that this is not
299 // the case.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000300 assert(!(EMVT::isExtIntegerInVTs(NodeToApply->getExtTypes()) &&
301 EMVT::isExtFloatingPointInVTs(NodeToApply->getExtTypes())) &&
302 !(EMVT::isExtIntegerInVTs(BigOperand->getExtTypes()) &&
303 EMVT::isExtFloatingPointInVTs(BigOperand->getExtTypes())) &&
Chris Lattner6cefb772008-01-05 22:25:12 +0000304 "SDTCisOpSmallerThanOp does not handle mixed int/fp types!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000305 if (EMVT::isExtIntegerInVTs(NodeToApply->getExtTypes()))
306 MadeChange |= BigOperand->UpdateNodeType(EMVT::isInt, TP);
307 else if (EMVT::isExtFloatingPointInVTs(NodeToApply->getExtTypes()))
308 MadeChange |= BigOperand->UpdateNodeType(EMVT::isFP, TP);
309 if (EMVT::isExtIntegerInVTs(BigOperand->getExtTypes()))
310 MadeChange |= NodeToApply->UpdateNodeType(EMVT::isInt, TP);
311 else if (EMVT::isExtFloatingPointInVTs(BigOperand->getExtTypes()))
312 MadeChange |= NodeToApply->UpdateNodeType(EMVT::isFP, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000313
Duncan Sands83ec4b62008-06-06 12:08:01 +0000314 std::vector<MVT::SimpleValueType> VTs = CGT.getLegalValueTypes();
315
316 if (EMVT::isExtIntegerInVTs(NodeToApply->getExtTypes())) {
317 VTs = FilterVTs(VTs, isInteger);
318 } else if (EMVT::isExtFloatingPointInVTs(NodeToApply->getExtTypes())) {
319 VTs = FilterVTs(VTs, isFloatingPoint);
Chris Lattner6cefb772008-01-05 22:25:12 +0000320 } else {
321 VTs.clear();
322 }
323
324 switch (VTs.size()) {
325 default: // Too many VT's to pick from.
326 case 0: break; // No info yet.
327 case 1:
328 // Only one VT of this flavor. Cannot ever satisify the constraints.
329 return NodeToApply->UpdateNodeType(MVT::Other, TP); // throw
330 case 2:
331 // If we have exactly two possible types, the little operand must be the
332 // small one, the big operand should be the big one. Common with
333 // float/double for example.
334 assert(VTs[0] < VTs[1] && "Should be sorted!");
335 MadeChange |= NodeToApply->UpdateNodeType(VTs[0], TP);
336 MadeChange |= BigOperand->UpdateNodeType(VTs[1], TP);
337 break;
338 }
339 return MadeChange;
340 }
341 case SDTCisIntVectorOfSameSize: {
342 TreePatternNode *OtherOperand =
343 getOperandNum(x.SDTCisIntVectorOfSameSize_Info.OtherOperandNum,
344 N, NumResults);
345 if (OtherOperand->hasTypeSet()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000346 if (!isVector(OtherOperand->getTypeNum(0)))
Chris Lattner6cefb772008-01-05 22:25:12 +0000347 TP.error(N->getOperator()->getName() + " VT operand must be a vector!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000348 MVT IVT = OtherOperand->getTypeNum(0);
349 unsigned NumElements = IVT.getVectorNumElements();
350 IVT = MVT::getIntVectorWithNumElements(NumElements);
351 return NodeToApply->UpdateNodeType(IVT.getSimpleVT(), TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000352 }
353 return false;
354 }
Nate Begemanb5af3342008-02-09 01:37:05 +0000355 case SDTCisEltOfVec: {
356 TreePatternNode *OtherOperand =
357 getOperandNum(x.SDTCisIntVectorOfSameSize_Info.OtherOperandNum,
358 N, NumResults);
359 if (OtherOperand->hasTypeSet()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000360 if (!isVector(OtherOperand->getTypeNum(0)))
Nate Begemanb5af3342008-02-09 01:37:05 +0000361 TP.error(N->getOperator()->getName() + " VT operand must be a vector!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000362 MVT IVT = OtherOperand->getTypeNum(0);
363 IVT = IVT.getVectorElementType();
364 return NodeToApply->UpdateNodeType(IVT.getSimpleVT(), TP);
Nate Begemanb5af3342008-02-09 01:37:05 +0000365 }
366 return false;
367 }
Chris Lattner6cefb772008-01-05 22:25:12 +0000368 }
369 return false;
370}
371
372//===----------------------------------------------------------------------===//
373// SDNodeInfo implementation
374//
375SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
376 EnumName = R->getValueAsString("Opcode");
377 SDClassName = R->getValueAsString("SDClass");
378 Record *TypeProfile = R->getValueAsDef("TypeProfile");
379 NumResults = TypeProfile->getValueAsInt("NumResults");
380 NumOperands = TypeProfile->getValueAsInt("NumOperands");
381
382 // Parse the properties.
383 Properties = 0;
384 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
385 for (unsigned i = 0, e = PropList.size(); i != e; ++i) {
386 if (PropList[i]->getName() == "SDNPCommutative") {
387 Properties |= 1 << SDNPCommutative;
388 } else if (PropList[i]->getName() == "SDNPAssociative") {
389 Properties |= 1 << SDNPAssociative;
390 } else if (PropList[i]->getName() == "SDNPHasChain") {
391 Properties |= 1 << SDNPHasChain;
392 } else if (PropList[i]->getName() == "SDNPOutFlag") {
393 Properties |= 1 << SDNPOutFlag;
394 } else if (PropList[i]->getName() == "SDNPInFlag") {
395 Properties |= 1 << SDNPInFlag;
396 } else if (PropList[i]->getName() == "SDNPOptInFlag") {
397 Properties |= 1 << SDNPOptInFlag;
Chris Lattnerc8478d82008-01-06 06:44:58 +0000398 } else if (PropList[i]->getName() == "SDNPMayStore") {
399 Properties |= 1 << SDNPMayStore;
Chris Lattner710e9952008-01-10 04:38:57 +0000400 } else if (PropList[i]->getName() == "SDNPMayLoad") {
401 Properties |= 1 << SDNPMayLoad;
Chris Lattnerbc0b9f72008-01-10 05:39:30 +0000402 } else if (PropList[i]->getName() == "SDNPSideEffect") {
403 Properties |= 1 << SDNPSideEffect;
Mon P Wang28873102008-06-25 08:15:39 +0000404 } else if (PropList[i]->getName() == "SDNPMemOperand") {
405 Properties |= 1 << SDNPMemOperand;
Chris Lattner6cefb772008-01-05 22:25:12 +0000406 } else {
407 cerr << "Unknown SD Node property '" << PropList[i]->getName()
408 << "' on node '" << R->getName() << "'!\n";
409 exit(1);
410 }
411 }
412
413
414 // Parse the type constraints.
415 std::vector<Record*> ConstraintList =
416 TypeProfile->getValueAsListOfDefs("Constraints");
417 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
418}
419
420//===----------------------------------------------------------------------===//
421// TreePatternNode implementation
422//
423
424TreePatternNode::~TreePatternNode() {
425#if 0 // FIXME: implement refcounted tree nodes!
426 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
427 delete getChild(i);
428#endif
429}
430
431/// UpdateNodeType - Set the node type of N to VT if VT contains
432/// information. If N already contains a conflicting type, then throw an
433/// exception. This returns true if any information was updated.
434///
435bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
436 TreePattern &TP) {
437 assert(!ExtVTs.empty() && "Cannot update node type with empty type vector!");
438
Duncan Sands83ec4b62008-06-06 12:08:01 +0000439 if (ExtVTs[0] == EMVT::isUnknown || LHSIsSubsetOfRHS(getExtTypes(), ExtVTs))
Chris Lattner6cefb772008-01-05 22:25:12 +0000440 return false;
441 if (isTypeCompletelyUnknown() || LHSIsSubsetOfRHS(ExtVTs, getExtTypes())) {
442 setTypes(ExtVTs);
443 return true;
444 }
445
446 if (getExtTypeNum(0) == MVT::iPTR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000447 if (ExtVTs[0] == MVT::iPTR || ExtVTs[0] == EMVT::isInt)
Chris Lattner6cefb772008-01-05 22:25:12 +0000448 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000449 if (EMVT::isExtIntegerInVTs(ExtVTs)) {
450 std::vector<unsigned char> FVTs = FilterEVTs(ExtVTs, isInteger);
Chris Lattner6cefb772008-01-05 22:25:12 +0000451 if (FVTs.size()) {
452 setTypes(ExtVTs);
453 return true;
454 }
455 }
456 }
457
Duncan Sands83ec4b62008-06-06 12:08:01 +0000458 if (ExtVTs[0] == EMVT::isInt && EMVT::isExtIntegerInVTs(getExtTypes())) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000459 assert(hasTypeSet() && "should be handled above!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000460 std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), isInteger);
Chris Lattner6cefb772008-01-05 22:25:12 +0000461 if (getExtTypes() == FVTs)
462 return false;
463 setTypes(FVTs);
464 return true;
465 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000466 if (ExtVTs[0] == MVT::iPTR && EMVT::isExtIntegerInVTs(getExtTypes())) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000467 //assert(hasTypeSet() && "should be handled above!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000468 std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), isInteger);
Chris Lattner6cefb772008-01-05 22:25:12 +0000469 if (getExtTypes() == FVTs)
470 return false;
471 if (FVTs.size()) {
472 setTypes(FVTs);
473 return true;
474 }
475 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000476 if (ExtVTs[0] == EMVT::isFP && EMVT::isExtFloatingPointInVTs(getExtTypes())) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000477 assert(hasTypeSet() && "should be handled above!");
478 std::vector<unsigned char> FVTs =
Duncan Sands83ec4b62008-06-06 12:08:01 +0000479 FilterEVTs(getExtTypes(), isFloatingPoint);
Chris Lattner6cefb772008-01-05 22:25:12 +0000480 if (getExtTypes() == FVTs)
481 return false;
482 setTypes(FVTs);
483 return true;
484 }
485
486 // If we know this is an int or fp type, and we are told it is a specific one,
487 // take the advice.
488 //
489 // Similarly, we should probably set the type here to the intersection of
490 // {isInt|isFP} and ExtVTs
Duncan Sands83ec4b62008-06-06 12:08:01 +0000491 if ((getExtTypeNum(0) == EMVT::isInt &&
492 EMVT::isExtIntegerInVTs(ExtVTs)) ||
493 (getExtTypeNum(0) == EMVT::isFP &&
494 EMVT::isExtFloatingPointInVTs(ExtVTs))) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000495 setTypes(ExtVTs);
496 return true;
497 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000498 if (getExtTypeNum(0) == EMVT::isInt && ExtVTs[0] == MVT::iPTR) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000499 setTypes(ExtVTs);
500 return true;
501 }
502
503 if (isLeaf()) {
504 dump();
505 cerr << " ";
506 TP.error("Type inference contradiction found in node!");
507 } else {
508 TP.error("Type inference contradiction found in node " +
509 getOperator()->getName() + "!");
510 }
511 return true; // unreachable
512}
513
514
515void TreePatternNode::print(std::ostream &OS) const {
516 if (isLeaf()) {
517 OS << *getLeafValue();
518 } else {
519 OS << "(" << getOperator()->getName();
520 }
521
522 // FIXME: At some point we should handle printing all the value types for
523 // nodes that are multiply typed.
524 switch (getExtTypeNum(0)) {
525 case MVT::Other: OS << ":Other"; break;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000526 case EMVT::isInt: OS << ":isInt"; break;
527 case EMVT::isFP : OS << ":isFP"; break;
528 case EMVT::isUnknown: ; /*OS << ":?";*/ break;
Chris Lattner6cefb772008-01-05 22:25:12 +0000529 case MVT::iPTR: OS << ":iPTR"; break;
530 default: {
531 std::string VTName = llvm::getName(getTypeNum(0));
532 // Strip off MVT:: prefix if present.
533 if (VTName.substr(0,5) == "MVT::")
534 VTName = VTName.substr(5);
535 OS << ":" << VTName;
536 break;
537 }
538 }
539
540 if (!isLeaf()) {
541 if (getNumChildren() != 0) {
542 OS << " ";
543 getChild(0)->print(OS);
544 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
545 OS << ", ";
546 getChild(i)->print(OS);
547 }
548 }
549 OS << ")";
550 }
551
552 if (!PredicateFn.empty())
553 OS << "<<P:" << PredicateFn << ">>";
554 if (TransformFn)
555 OS << "<<X:" << TransformFn->getName() << ">>";
556 if (!getName().empty())
557 OS << ":$" << getName();
558
559}
560void TreePatternNode::dump() const {
561 print(*cerr.stream());
562}
563
Scott Michel327d0652008-03-05 17:49:05 +0000564/// isIsomorphicTo - Return true if this node is recursively
565/// isomorphic to the specified node. For this comparison, the node's
566/// entire state is considered. The assigned name is ignored, since
567/// nodes with differing names are considered isomorphic. However, if
568/// the assigned name is present in the dependent variable set, then
569/// the assigned name is considered significant and the node is
570/// isomorphic if the names match.
571bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N,
572 const MultipleUseVarSet &DepVars) const {
Chris Lattner6cefb772008-01-05 22:25:12 +0000573 if (N == this) return true;
574 if (N->isLeaf() != isLeaf() || getExtTypes() != N->getExtTypes() ||
575 getPredicateFn() != N->getPredicateFn() ||
576 getTransformFn() != N->getTransformFn())
577 return false;
578
579 if (isLeaf()) {
Scott Michel327d0652008-03-05 17:49:05 +0000580 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
581 if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue())) {
Chris Lattner71a2cb22008-03-20 01:22:40 +0000582 return ((DI->getDef() == NDI->getDef())
583 && (DepVars.find(getName()) == DepVars.end()
584 || getName() == N->getName()));
Scott Michel327d0652008-03-05 17:49:05 +0000585 }
586 }
Chris Lattner6cefb772008-01-05 22:25:12 +0000587 return getLeafValue() == N->getLeafValue();
588 }
589
590 if (N->getOperator() != getOperator() ||
591 N->getNumChildren() != getNumChildren()) return false;
592 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Scott Michel327d0652008-03-05 17:49:05 +0000593 if (!getChild(i)->isIsomorphicTo(N->getChild(i), DepVars))
Chris Lattner6cefb772008-01-05 22:25:12 +0000594 return false;
595 return true;
596}
597
598/// clone - Make a copy of this tree and all of its children.
599///
600TreePatternNode *TreePatternNode::clone() const {
601 TreePatternNode *New;
602 if (isLeaf()) {
603 New = new TreePatternNode(getLeafValue());
604 } else {
605 std::vector<TreePatternNode*> CChildren;
606 CChildren.reserve(Children.size());
607 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
608 CChildren.push_back(getChild(i)->clone());
609 New = new TreePatternNode(getOperator(), CChildren);
610 }
611 New->setName(getName());
612 New->setTypes(getExtTypes());
613 New->setPredicateFn(getPredicateFn());
614 New->setTransformFn(getTransformFn());
615 return New;
616}
617
618/// SubstituteFormalArguments - Replace the formal arguments in this tree
619/// with actual values specified by ArgMap.
620void TreePatternNode::
621SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
622 if (isLeaf()) return;
623
624 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
625 TreePatternNode *Child = getChild(i);
626 if (Child->isLeaf()) {
627 Init *Val = Child->getLeafValue();
628 if (dynamic_cast<DefInit*>(Val) &&
629 static_cast<DefInit*>(Val)->getDef()->getName() == "node") {
630 // We found a use of a formal argument, replace it with its value.
631 Child = ArgMap[Child->getName()];
632 assert(Child && "Couldn't find formal argument!");
633 setChild(i, Child);
634 }
635 } else {
636 getChild(i)->SubstituteFormalArguments(ArgMap);
637 }
638 }
639}
640
641
642/// InlinePatternFragments - If this pattern refers to any pattern
643/// fragments, inline them into place, giving us a pattern without any
644/// PatFrag references.
645TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
646 if (isLeaf()) return this; // nothing to do.
647 Record *Op = getOperator();
648
649 if (!Op->isSubClassOf("PatFrag")) {
650 // Just recursively inline children nodes.
651 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
652 setChild(i, getChild(i)->InlinePatternFragments(TP));
653 return this;
654 }
655
656 // Otherwise, we found a reference to a fragment. First, look up its
657 // TreePattern record.
658 TreePattern *Frag = TP.getDAGPatterns().getPatternFragment(Op);
659
660 // Verify that we are passing the right number of operands.
661 if (Frag->getNumArgs() != Children.size())
662 TP.error("'" + Op->getName() + "' fragment requires " +
663 utostr(Frag->getNumArgs()) + " operands!");
664
665 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
666
667 // Resolve formal arguments to their actual value.
668 if (Frag->getNumArgs()) {
669 // Compute the map of formal to actual arguments.
670 std::map<std::string, TreePatternNode*> ArgMap;
671 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
672 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
673
674 FragTree->SubstituteFormalArguments(ArgMap);
675 }
676
677 FragTree->setName(getName());
678 FragTree->UpdateNodeType(getExtTypes(), TP);
679
680 // Get a new copy of this fragment to stitch into here.
681 //delete this; // FIXME: implement refcounting!
Chris Lattner2ca698d2008-06-30 03:02:03 +0000682
683 // The fragment we inlined could have recursive inlining that is needed. See
684 // if there are any pattern fragments in it and inline them as needed.
685 return FragTree->InlinePatternFragments(TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000686}
687
688/// getImplicitType - Check to see if the specified record has an implicit
689/// type which should be applied to it. This infer the type of register
690/// references from the register file information, for example.
691///
692static std::vector<unsigned char> getImplicitType(Record *R, bool NotRegisters,
693 TreePattern &TP) {
694 // Some common return values
Duncan Sands83ec4b62008-06-06 12:08:01 +0000695 std::vector<unsigned char> Unknown(1, EMVT::isUnknown);
Chris Lattner6cefb772008-01-05 22:25:12 +0000696 std::vector<unsigned char> Other(1, MVT::Other);
697
698 // Check to see if this is a register or a register class...
699 if (R->isSubClassOf("RegisterClass")) {
700 if (NotRegisters)
701 return Unknown;
702 const CodeGenRegisterClass &RC =
703 TP.getDAGPatterns().getTargetInfo().getRegisterClass(R);
704 return ConvertVTs(RC.getValueTypes());
705 } else if (R->isSubClassOf("PatFrag")) {
706 // Pattern fragment types will be resolved when they are inlined.
707 return Unknown;
708 } else if (R->isSubClassOf("Register")) {
709 if (NotRegisters)
710 return Unknown;
711 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo();
712 return T.getRegisterVTs(R);
713 } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
714 // Using a VTSDNode or CondCodeSDNode.
715 return Other;
716 } else if (R->isSubClassOf("ComplexPattern")) {
717 if (NotRegisters)
718 return Unknown;
719 std::vector<unsigned char>
720 ComplexPat(1, TP.getDAGPatterns().getComplexPattern(R).getValueType());
721 return ComplexPat;
722 } else if (R->getName() == "ptr_rc") {
723 Other[0] = MVT::iPTR;
724 return Other;
725 } else if (R->getName() == "node" || R->getName() == "srcvalue" ||
726 R->getName() == "zero_reg") {
727 // Placeholder.
728 return Unknown;
729 }
730
731 TP.error("Unknown node flavor used in pattern: " + R->getName());
732 return Other;
733}
734
Chris Lattnere67bde52008-01-06 05:36:50 +0000735
736/// getIntrinsicInfo - If this node corresponds to an intrinsic, return the
737/// CodeGenIntrinsic information for it, otherwise return a null pointer.
738const CodeGenIntrinsic *TreePatternNode::
739getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const {
740 if (getOperator() != CDP.get_intrinsic_void_sdnode() &&
741 getOperator() != CDP.get_intrinsic_w_chain_sdnode() &&
742 getOperator() != CDP.get_intrinsic_wo_chain_sdnode())
743 return 0;
744
745 unsigned IID =
746 dynamic_cast<IntInit*>(getChild(0)->getLeafValue())->getValue();
747 return &CDP.getIntrinsicInfo(IID);
748}
749
Evan Cheng6bd95672008-06-16 20:29:38 +0000750/// isCommutativeIntrinsic - Return true if the node corresponds to a
751/// commutative intrinsic.
752bool
753TreePatternNode::isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const {
754 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CDP))
755 return Int->isCommutative;
756 return false;
757}
758
Chris Lattnere67bde52008-01-06 05:36:50 +0000759
Chris Lattner6cefb772008-01-05 22:25:12 +0000760/// ApplyTypeConstraints - Apply all of the type constraints relevent to
761/// this node and its children in the tree. This returns true if it makes a
762/// change, false otherwise. If a type contradiction is found, throw an
763/// exception.
764bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
Chris Lattnerfe718932008-01-06 01:10:31 +0000765 CodeGenDAGPatterns &CDP = TP.getDAGPatterns();
Chris Lattner6cefb772008-01-05 22:25:12 +0000766 if (isLeaf()) {
767 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
768 // If it's a regclass or something else known, include the type.
769 return UpdateNodeType(getImplicitType(DI->getDef(), NotRegisters, TP),TP);
770 } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
771 // Int inits are always integers. :)
Duncan Sands83ec4b62008-06-06 12:08:01 +0000772 bool MadeChange = UpdateNodeType(EMVT::isInt, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000773
774 if (hasTypeSet()) {
775 // At some point, it may make sense for this tree pattern to have
776 // multiple types. Assert here that it does not, so we revisit this
777 // code when appropriate.
778 assert(getExtTypes().size() >= 1 && "TreePattern doesn't have a type!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000779 MVT::SimpleValueType VT = getTypeNum(0);
Chris Lattner6cefb772008-01-05 22:25:12 +0000780 for (unsigned i = 1, e = getExtTypes().size(); i != e; ++i)
781 assert(getTypeNum(i) == VT && "TreePattern has too many types!");
782
783 VT = getTypeNum(0);
784 if (VT != MVT::iPTR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000785 unsigned Size = MVT(VT).getSizeInBits();
Chris Lattner6cefb772008-01-05 22:25:12 +0000786 // Make sure that the value is representable for this type.
787 if (Size < 32) {
788 int Val = (II->getValue() << (32-Size)) >> (32-Size);
Scott Michel0123b7d2008-02-15 23:05:48 +0000789 if (Val != II->getValue()) {
Bill Wendling27926af2008-02-26 10:45:29 +0000790 // If sign-extended doesn't fit, does it fit as unsigned?
Duncan Sands83ec4b62008-06-06 12:08:01 +0000791 unsigned ValueMask;
792 unsigned UnsignedVal;
793 ValueMask = unsigned(MVT(VT).getIntegerVTBitMask());
794 UnsignedVal = unsigned(II->getValue());
Scott Michel0123b7d2008-02-15 23:05:48 +0000795
Bill Wendling27926af2008-02-26 10:45:29 +0000796 if ((ValueMask & UnsignedVal) != UnsignedVal) {
797 TP.error("Integer value '" + itostr(II->getValue())+
798 "' is out of range for type '" +
799 getEnumName(getTypeNum(0)) + "'!");
800 }
801 }
802 }
803 }
Chris Lattner6cefb772008-01-05 22:25:12 +0000804 }
805
806 return MadeChange;
807 }
808 return false;
809 }
810
811 // special handling for set, which isn't really an SDNode.
812 if (getOperator()->getName() == "set") {
813 assert (getNumChildren() >= 2 && "Missing RHS of a set?");
814 unsigned NC = getNumChildren();
815 bool MadeChange = false;
816 for (unsigned i = 0; i < NC-1; ++i) {
817 MadeChange = getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
818 MadeChange |= getChild(NC-1)->ApplyTypeConstraints(TP, NotRegisters);
819
820 // Types of operands must match.
821 MadeChange |= getChild(i)->UpdateNodeType(getChild(NC-1)->getExtTypes(),
822 TP);
823 MadeChange |= getChild(NC-1)->UpdateNodeType(getChild(i)->getExtTypes(),
824 TP);
825 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
826 }
827 return MadeChange;
828 } else if (getOperator()->getName() == "implicit" ||
829 getOperator()->getName() == "parallel") {
830 bool MadeChange = false;
831 for (unsigned i = 0; i < getNumChildren(); ++i)
832 MadeChange = getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
833 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
834 return MadeChange;
Chris Lattnere67bde52008-01-06 05:36:50 +0000835 } else if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CDP)) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000836 bool MadeChange = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000837
Chris Lattner6cefb772008-01-05 22:25:12 +0000838 // Apply the result type to the node.
Chris Lattnere67bde52008-01-06 05:36:50 +0000839 MadeChange = UpdateNodeType(Int->ArgVTs[0], TP);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000840
Chris Lattnere67bde52008-01-06 05:36:50 +0000841 if (getNumChildren() != Int->ArgVTs.size())
842 TP.error("Intrinsic '" + Int->Name + "' expects " +
843 utostr(Int->ArgVTs.size()-1) + " operands, not " +
Chris Lattner6cefb772008-01-05 22:25:12 +0000844 utostr(getNumChildren()-1) + " operands!");
845
846 // Apply type info to the intrinsic ID.
847 MadeChange |= getChild(0)->UpdateNodeType(MVT::iPTR, TP);
848
849 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000850 MVT::SimpleValueType OpVT = Int->ArgVTs[i];
Chris Lattner6cefb772008-01-05 22:25:12 +0000851 MadeChange |= getChild(i)->UpdateNodeType(OpVT, TP);
852 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
853 }
854 return MadeChange;
855 } else if (getOperator()->isSubClassOf("SDNode")) {
856 const SDNodeInfo &NI = CDP.getSDNodeInfo(getOperator());
857
858 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
859 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
860 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
861 // Branch, etc. do not produce results and top-level forms in instr pattern
862 // must have void types.
863 if (NI.getNumResults() == 0)
864 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
865
866 // If this is a vector_shuffle operation, apply types to the build_vector
867 // operation. The types of the integers don't matter, but this ensures they
868 // won't get checked.
869 if (getOperator()->getName() == "vector_shuffle" &&
870 getChild(2)->getOperator()->getName() == "build_vector") {
871 TreePatternNode *BV = getChild(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000872 const std::vector<MVT::SimpleValueType> &LegalVTs
Chris Lattner6cefb772008-01-05 22:25:12 +0000873 = CDP.getTargetInfo().getLegalValueTypes();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000874 MVT::SimpleValueType LegalIntVT = MVT::Other;
Chris Lattner6cefb772008-01-05 22:25:12 +0000875 for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
Duncan Sands83ec4b62008-06-06 12:08:01 +0000876 if (isInteger(LegalVTs[i]) && !isVector(LegalVTs[i])) {
Chris Lattner6cefb772008-01-05 22:25:12 +0000877 LegalIntVT = LegalVTs[i];
878 break;
879 }
880 assert(LegalIntVT != MVT::Other && "No legal integer VT?");
881
882 for (unsigned i = 0, e = BV->getNumChildren(); i != e; ++i)
883 MadeChange |= BV->getChild(i)->UpdateNodeType(LegalIntVT, TP);
884 }
885 return MadeChange;
886 } else if (getOperator()->isSubClassOf("Instruction")) {
887 const DAGInstruction &Inst = CDP.getInstruction(getOperator());
888 bool MadeChange = false;
889 unsigned NumResults = Inst.getNumResults();
890
891 assert(NumResults <= 1 &&
892 "Only supports zero or one result instrs!");
893
894 CodeGenInstruction &InstInfo =
895 CDP.getTargetInfo().getInstruction(getOperator()->getName());
896 // Apply the result type to the node
897 if (NumResults == 0 || InstInfo.NumDefs == 0) {
Christopher Lamb02f69372008-03-10 04:16:09 +0000898 MadeChange = UpdateNodeType(MVT::isVoid, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000899 } else {
900 Record *ResultNode = Inst.getResult(0);
901
902 if (ResultNode->getName() == "ptr_rc") {
903 std::vector<unsigned char> VT;
904 VT.push_back(MVT::iPTR);
905 MadeChange = UpdateNodeType(VT, TP);
Christopher Lamb5b415372008-03-11 09:33:47 +0000906 } else if (ResultNode->getName() == "unknown") {
907 std::vector<unsigned char> VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000908 VT.push_back(EMVT::isUnknown);
Christopher Lamb5b415372008-03-11 09:33:47 +0000909 MadeChange = UpdateNodeType(VT, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000910 } else {
911 assert(ResultNode->isSubClassOf("RegisterClass") &&
912 "Operands should be register classes!");
913
914 const CodeGenRegisterClass &RC =
915 CDP.getTargetInfo().getRegisterClass(ResultNode);
916 MadeChange = UpdateNodeType(ConvertVTs(RC.getValueTypes()), TP);
917 }
918 }
919
920 unsigned ChildNo = 0;
921 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i) {
922 Record *OperandNode = Inst.getOperand(i);
923
924 // If the instruction expects a predicate or optional def operand, we
925 // codegen this by setting the operand to it's default value if it has a
926 // non-empty DefaultOps field.
927 if ((OperandNode->isSubClassOf("PredicateOperand") ||
928 OperandNode->isSubClassOf("OptionalDefOperand")) &&
929 !CDP.getDefaultOperand(OperandNode).DefaultOps.empty())
930 continue;
931
932 // Verify that we didn't run out of provided operands.
933 if (ChildNo >= getNumChildren())
934 TP.error("Instruction '" + getOperator()->getName() +
935 "' expects more operands than were provided.");
936
Duncan Sands83ec4b62008-06-06 12:08:01 +0000937 MVT::SimpleValueType VT;
Chris Lattner6cefb772008-01-05 22:25:12 +0000938 TreePatternNode *Child = getChild(ChildNo++);
939 if (OperandNode->isSubClassOf("RegisterClass")) {
940 const CodeGenRegisterClass &RC =
941 CDP.getTargetInfo().getRegisterClass(OperandNode);
942 MadeChange |= Child->UpdateNodeType(ConvertVTs(RC.getValueTypes()), TP);
943 } else if (OperandNode->isSubClassOf("Operand")) {
944 VT = getValueType(OperandNode->getValueAsDef("Type"));
945 MadeChange |= Child->UpdateNodeType(VT, TP);
946 } else if (OperandNode->getName() == "ptr_rc") {
947 MadeChange |= Child->UpdateNodeType(MVT::iPTR, TP);
Christopher Lamb5b415372008-03-11 09:33:47 +0000948 } else if (OperandNode->getName() == "unknown") {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000949 MadeChange |= Child->UpdateNodeType(EMVT::isUnknown, TP);
Chris Lattner6cefb772008-01-05 22:25:12 +0000950 } else {
951 assert(0 && "Unknown operand type!");
952 abort();
953 }
954 MadeChange |= Child->ApplyTypeConstraints(TP, NotRegisters);
955 }
Christopher Lamb5b415372008-03-11 09:33:47 +0000956
Christopher Lamb02f69372008-03-10 04:16:09 +0000957 if (ChildNo != getNumChildren())
Chris Lattner6cefb772008-01-05 22:25:12 +0000958 TP.error("Instruction '" + getOperator()->getName() +
959 "' was provided too many operands!");
960
961 return MadeChange;
962 } else {
963 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
964
965 // Node transforms always take one operand.
966 if (getNumChildren() != 1)
967 TP.error("Node transform '" + getOperator()->getName() +
968 "' requires one operand!");
969
970 // If either the output or input of the xform does not have exact
971 // type info. We assume they must be the same. Otherwise, it is perfectly
972 // legal to transform from one type to a completely different type.
973 if (!hasTypeSet() || !getChild(0)->hasTypeSet()) {
974 bool MadeChange = UpdateNodeType(getChild(0)->getExtTypes(), TP);
975 MadeChange |= getChild(0)->UpdateNodeType(getExtTypes(), TP);
976 return MadeChange;
977 }
978 return false;
979 }
980}
981
982/// OnlyOnRHSOfCommutative - Return true if this value is only allowed on the
983/// RHS of a commutative operation, not the on LHS.
984static bool OnlyOnRHSOfCommutative(TreePatternNode *N) {
985 if (!N->isLeaf() && N->getOperator()->getName() == "imm")
986 return true;
987 if (N->isLeaf() && dynamic_cast<IntInit*>(N->getLeafValue()))
988 return true;
989 return false;
990}
991
992
993/// canPatternMatch - If it is impossible for this pattern to match on this
994/// target, fill in Reason and return false. Otherwise, return true. This is
995/// used as a santity check for .td files (to prevent people from writing stuff
996/// that can never possibly work), and to prevent the pattern permuter from
997/// generating stuff that is useless.
998bool TreePatternNode::canPatternMatch(std::string &Reason,
Dan Gohmanee4fa192008-04-03 00:02:49 +0000999 const CodeGenDAGPatterns &CDP) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001000 if (isLeaf()) return true;
1001
1002 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
1003 if (!getChild(i)->canPatternMatch(Reason, CDP))
1004 return false;
1005
1006 // If this is an intrinsic, handle cases that would make it not match. For
1007 // example, if an operand is required to be an immediate.
1008 if (getOperator()->isSubClassOf("Intrinsic")) {
1009 // TODO:
1010 return true;
1011 }
1012
1013 // If this node is a commutative operator, check that the LHS isn't an
1014 // immediate.
1015 const SDNodeInfo &NodeInfo = CDP.getSDNodeInfo(getOperator());
Evan Cheng6bd95672008-06-16 20:29:38 +00001016 bool isCommIntrinsic = isCommutativeIntrinsic(CDP);
1017 if (NodeInfo.hasProperty(SDNPCommutative) || isCommIntrinsic) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001018 // Scan all of the operands of the node and make sure that only the last one
1019 // is a constant node, unless the RHS also is.
1020 if (!OnlyOnRHSOfCommutative(getChild(getNumChildren()-1))) {
Evan Cheng6bd95672008-06-16 20:29:38 +00001021 bool Skip = isCommIntrinsic ? 1 : 0; // First operand is intrinsic id.
1022 for (unsigned i = Skip, e = getNumChildren()-1; i != e; ++i)
Chris Lattner6cefb772008-01-05 22:25:12 +00001023 if (OnlyOnRHSOfCommutative(getChild(i))) {
1024 Reason="Immediate value must be on the RHS of commutative operators!";
1025 return false;
1026 }
1027 }
1028 }
1029
1030 return true;
1031}
1032
1033//===----------------------------------------------------------------------===//
1034// TreePattern implementation
1035//
1036
1037TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattnerfe718932008-01-06 01:10:31 +00001038 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp){
Chris Lattner6cefb772008-01-05 22:25:12 +00001039 isInputPattern = isInput;
1040 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
1041 Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
1042}
1043
1044TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnerfe718932008-01-06 01:10:31 +00001045 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp){
Chris Lattner6cefb772008-01-05 22:25:12 +00001046 isInputPattern = isInput;
1047 Trees.push_back(ParseTreePattern(Pat));
1048}
1049
1050TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnerfe718932008-01-06 01:10:31 +00001051 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp){
Chris Lattner6cefb772008-01-05 22:25:12 +00001052 isInputPattern = isInput;
1053 Trees.push_back(Pat);
1054}
1055
1056
1057
1058void TreePattern::error(const std::string &Msg) const {
1059 dump();
1060 throw "In " + TheRecord->getName() + ": " + Msg;
1061}
1062
1063TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
1064 DefInit *OpDef = dynamic_cast<DefInit*>(Dag->getOperator());
1065 if (!OpDef) error("Pattern has unexpected operator type!");
1066 Record *Operator = OpDef->getDef();
1067
1068 if (Operator->isSubClassOf("ValueType")) {
1069 // If the operator is a ValueType, then this must be "type cast" of a leaf
1070 // node.
1071 if (Dag->getNumArgs() != 1)
1072 error("Type cast only takes one operand!");
1073
1074 Init *Arg = Dag->getArg(0);
1075 TreePatternNode *New;
1076 if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
1077 Record *R = DI->getDef();
1078 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
1079 Dag->setArg(0, new DagInit(DI,
1080 std::vector<std::pair<Init*, std::string> >()));
1081 return ParseTreePattern(Dag);
1082 }
1083 New = new TreePatternNode(DI);
1084 } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
1085 New = ParseTreePattern(DI);
1086 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
1087 New = new TreePatternNode(II);
1088 if (!Dag->getArgName(0).empty())
1089 error("Constant int argument should not have a name!");
1090 } else if (BitsInit *BI = dynamic_cast<BitsInit*>(Arg)) {
1091 // Turn this into an IntInit.
1092 Init *II = BI->convertInitializerTo(new IntRecTy());
1093 if (II == 0 || !dynamic_cast<IntInit*>(II))
1094 error("Bits value must be constants!");
1095
1096 New = new TreePatternNode(dynamic_cast<IntInit*>(II));
1097 if (!Dag->getArgName(0).empty())
1098 error("Constant int argument should not have a name!");
1099 } else {
1100 Arg->dump();
1101 error("Unknown leaf value for tree pattern!");
1102 return 0;
1103 }
1104
1105 // Apply the type cast.
1106 New->UpdateNodeType(getValueType(Operator), *this);
1107 New->setName(Dag->getArgName(0));
1108 return New;
1109 }
1110
1111 // Verify that this is something that makes sense for an operator.
1112 if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
1113 !Operator->isSubClassOf("Instruction") &&
1114 !Operator->isSubClassOf("SDNodeXForm") &&
1115 !Operator->isSubClassOf("Intrinsic") &&
1116 Operator->getName() != "set" &&
1117 Operator->getName() != "implicit" &&
1118 Operator->getName() != "parallel")
1119 error("Unrecognized node '" + Operator->getName() + "'!");
1120
1121 // Check to see if this is something that is illegal in an input pattern.
1122 if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
1123 Operator->isSubClassOf("SDNodeXForm")))
1124 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
1125
1126 std::vector<TreePatternNode*> Children;
1127
1128 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
1129 Init *Arg = Dag->getArg(i);
1130 if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
1131 Children.push_back(ParseTreePattern(DI));
1132 if (Children.back()->getName().empty())
1133 Children.back()->setName(Dag->getArgName(i));
1134 } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
1135 Record *R = DefI->getDef();
1136 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
1137 // TreePatternNode if its own.
1138 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
1139 Dag->setArg(i, new DagInit(DefI,
1140 std::vector<std::pair<Init*, std::string> >()));
1141 --i; // Revisit this node...
1142 } else {
1143 TreePatternNode *Node = new TreePatternNode(DefI);
1144 Node->setName(Dag->getArgName(i));
1145 Children.push_back(Node);
1146
1147 // Input argument?
1148 if (R->getName() == "node") {
1149 if (Dag->getArgName(i).empty())
1150 error("'node' argument requires a name to match with operand list");
1151 Args.push_back(Dag->getArgName(i));
1152 }
1153 }
1154 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
1155 TreePatternNode *Node = new TreePatternNode(II);
1156 if (!Dag->getArgName(i).empty())
1157 error("Constant int argument should not have a name!");
1158 Children.push_back(Node);
1159 } else if (BitsInit *BI = dynamic_cast<BitsInit*>(Arg)) {
1160 // Turn this into an IntInit.
1161 Init *II = BI->convertInitializerTo(new IntRecTy());
1162 if (II == 0 || !dynamic_cast<IntInit*>(II))
1163 error("Bits value must be constants!");
1164
1165 TreePatternNode *Node = new TreePatternNode(dynamic_cast<IntInit*>(II));
1166 if (!Dag->getArgName(i).empty())
1167 error("Constant int argument should not have a name!");
1168 Children.push_back(Node);
1169 } else {
1170 cerr << '"';
1171 Arg->dump();
1172 cerr << "\": ";
1173 error("Unknown leaf value for tree pattern!");
1174 }
1175 }
1176
1177 // If the operator is an intrinsic, then this is just syntactic sugar for for
1178 // (intrinsic_* <number>, ..children..). Pick the right intrinsic node, and
1179 // convert the intrinsic name to a number.
1180 if (Operator->isSubClassOf("Intrinsic")) {
1181 const CodeGenIntrinsic &Int = getDAGPatterns().getIntrinsic(Operator);
1182 unsigned IID = getDAGPatterns().getIntrinsicID(Operator)+1;
1183
1184 // If this intrinsic returns void, it must have side-effects and thus a
1185 // chain.
1186 if (Int.ArgVTs[0] == MVT::isVoid) {
1187 Operator = getDAGPatterns().get_intrinsic_void_sdnode();
1188 } else if (Int.ModRef != CodeGenIntrinsic::NoMem) {
1189 // Has side-effects, requires chain.
1190 Operator = getDAGPatterns().get_intrinsic_w_chain_sdnode();
1191 } else {
1192 // Otherwise, no chain.
1193 Operator = getDAGPatterns().get_intrinsic_wo_chain_sdnode();
1194 }
1195
1196 TreePatternNode *IIDNode = new TreePatternNode(new IntInit(IID));
1197 Children.insert(Children.begin(), IIDNode);
1198 }
1199
1200 return new TreePatternNode(Operator, Children);
1201}
1202
1203/// InferAllTypes - Infer/propagate as many types throughout the expression
1204/// patterns as possible. Return true if all types are infered, false
1205/// otherwise. Throw an exception if a type contradiction is found.
1206bool TreePattern::InferAllTypes() {
1207 bool MadeChange = true;
1208 while (MadeChange) {
1209 MadeChange = false;
1210 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
1211 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
1212 }
1213
1214 bool HasUnresolvedTypes = false;
1215 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
1216 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
1217 return !HasUnresolvedTypes;
1218}
1219
1220void TreePattern::print(std::ostream &OS) const {
1221 OS << getRecord()->getName();
1222 if (!Args.empty()) {
1223 OS << "(" << Args[0];
1224 for (unsigned i = 1, e = Args.size(); i != e; ++i)
1225 OS << ", " << Args[i];
1226 OS << ")";
1227 }
1228 OS << ": ";
1229
1230 if (Trees.size() > 1)
1231 OS << "[\n";
1232 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
1233 OS << "\t";
1234 Trees[i]->print(OS);
1235 OS << "\n";
1236 }
1237
1238 if (Trees.size() > 1)
1239 OS << "]\n";
1240}
1241
1242void TreePattern::dump() const { print(*cerr.stream()); }
1243
1244//===----------------------------------------------------------------------===//
Chris Lattnerfe718932008-01-06 01:10:31 +00001245// CodeGenDAGPatterns implementation
Chris Lattner6cefb772008-01-05 22:25:12 +00001246//
1247
1248// FIXME: REMOVE OSTREAM ARGUMENT
Chris Lattnerfe718932008-01-06 01:10:31 +00001249CodeGenDAGPatterns::CodeGenDAGPatterns(RecordKeeper &R) : Records(R) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001250 Intrinsics = LoadIntrinsics(Records);
1251 ParseNodeInfo();
Chris Lattner443e3f92008-01-05 22:54:53 +00001252 ParseNodeTransforms();
Chris Lattner6cefb772008-01-05 22:25:12 +00001253 ParseComplexPatterns();
Chris Lattnerdc32f982008-01-05 22:43:57 +00001254 ParsePatternFragments();
Chris Lattner6cefb772008-01-05 22:25:12 +00001255 ParseDefaultOperands();
1256 ParseInstructions();
1257 ParsePatterns();
1258
1259 // Generate variants. For example, commutative patterns can match
1260 // multiple ways. Add them to PatternsToMatch as well.
1261 GenerateVariants();
Dan Gohmanee4fa192008-04-03 00:02:49 +00001262
1263 // Infer instruction flags. For example, we can detect loads,
1264 // stores, and side effects in many cases by examining an
1265 // instruction's pattern.
1266 InferInstructionFlags();
Chris Lattner6cefb772008-01-05 22:25:12 +00001267}
1268
Chris Lattnerfe718932008-01-06 01:10:31 +00001269CodeGenDAGPatterns::~CodeGenDAGPatterns() {
Chris Lattner6cefb772008-01-05 22:25:12 +00001270 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
1271 E = PatternFragments.end(); I != E; ++I)
1272 delete I->second;
1273}
1274
1275
Chris Lattnerfe718932008-01-06 01:10:31 +00001276Record *CodeGenDAGPatterns::getSDNodeNamed(const std::string &Name) const {
Chris Lattner6cefb772008-01-05 22:25:12 +00001277 Record *N = Records.getDef(Name);
1278 if (!N || !N->isSubClassOf("SDNode")) {
1279 cerr << "Error getting SDNode '" << Name << "'!\n";
1280 exit(1);
1281 }
1282 return N;
1283}
1284
1285// Parse all of the SDNode definitions for the target, populating SDNodes.
Chris Lattnerfe718932008-01-06 01:10:31 +00001286void CodeGenDAGPatterns::ParseNodeInfo() {
Chris Lattner6cefb772008-01-05 22:25:12 +00001287 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
1288 while (!Nodes.empty()) {
1289 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
1290 Nodes.pop_back();
1291 }
1292
1293 // Get the buildin intrinsic nodes.
1294 intrinsic_void_sdnode = getSDNodeNamed("intrinsic_void");
1295 intrinsic_w_chain_sdnode = getSDNodeNamed("intrinsic_w_chain");
1296 intrinsic_wo_chain_sdnode = getSDNodeNamed("intrinsic_wo_chain");
1297}
1298
1299/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
1300/// map, and emit them to the file as functions.
Chris Lattnerfe718932008-01-06 01:10:31 +00001301void CodeGenDAGPatterns::ParseNodeTransforms() {
Chris Lattner6cefb772008-01-05 22:25:12 +00001302 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
1303 while (!Xforms.empty()) {
1304 Record *XFormNode = Xforms.back();
1305 Record *SDNode = XFormNode->getValueAsDef("Opcode");
1306 std::string Code = XFormNode->getValueAsCode("XFormFunction");
Chris Lattner443e3f92008-01-05 22:54:53 +00001307 SDNodeXForms.insert(std::make_pair(XFormNode, NodeXForm(SDNode, Code)));
Chris Lattner6cefb772008-01-05 22:25:12 +00001308
1309 Xforms.pop_back();
1310 }
1311}
1312
Chris Lattnerfe718932008-01-06 01:10:31 +00001313void CodeGenDAGPatterns::ParseComplexPatterns() {
Chris Lattner6cefb772008-01-05 22:25:12 +00001314 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
1315 while (!AMs.empty()) {
1316 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
1317 AMs.pop_back();
1318 }
1319}
1320
1321
1322/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
1323/// file, building up the PatternFragments map. After we've collected them all,
1324/// inline fragments together as necessary, so that there are no references left
1325/// inside a pattern fragment to a pattern fragment.
1326///
Chris Lattnerfe718932008-01-06 01:10:31 +00001327void CodeGenDAGPatterns::ParsePatternFragments() {
Chris Lattner6cefb772008-01-05 22:25:12 +00001328 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
1329
Chris Lattnerdc32f982008-01-05 22:43:57 +00001330 // First step, parse all of the fragments.
Chris Lattner6cefb772008-01-05 22:25:12 +00001331 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
1332 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
1333 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
1334 PatternFragments[Fragments[i]] = P;
1335
Chris Lattnerdc32f982008-01-05 22:43:57 +00001336 // Validate the argument list, converting it to set, to discard duplicates.
Chris Lattner6cefb772008-01-05 22:25:12 +00001337 std::vector<std::string> &Args = P->getArgList();
Chris Lattnerdc32f982008-01-05 22:43:57 +00001338 std::set<std::string> OperandsSet(Args.begin(), Args.end());
Chris Lattner6cefb772008-01-05 22:25:12 +00001339
Chris Lattnerdc32f982008-01-05 22:43:57 +00001340 if (OperandsSet.count(""))
Chris Lattner6cefb772008-01-05 22:25:12 +00001341 P->error("Cannot have unnamed 'node' values in pattern fragment!");
1342
1343 // Parse the operands list.
1344 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
1345 DefInit *OpsOp = dynamic_cast<DefInit*>(OpsList->getOperator());
1346 // Special cases: ops == outs == ins. Different names are used to
1347 // improve readibility.
1348 if (!OpsOp ||
1349 (OpsOp->getDef()->getName() != "ops" &&
1350 OpsOp->getDef()->getName() != "outs" &&
1351 OpsOp->getDef()->getName() != "ins"))
1352 P->error("Operands list should start with '(ops ... '!");
1353
1354 // Copy over the arguments.
1355 Args.clear();
1356 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
1357 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
1358 static_cast<DefInit*>(OpsList->getArg(j))->
1359 getDef()->getName() != "node")
1360 P->error("Operands list should all be 'node' values.");
1361 if (OpsList->getArgName(j).empty())
1362 P->error("Operands list should have names for each operand!");
Chris Lattnerdc32f982008-01-05 22:43:57 +00001363 if (!OperandsSet.count(OpsList->getArgName(j)))
Chris Lattner6cefb772008-01-05 22:25:12 +00001364 P->error("'" + OpsList->getArgName(j) +
1365 "' does not occur in pattern or was multiply specified!");
Chris Lattnerdc32f982008-01-05 22:43:57 +00001366 OperandsSet.erase(OpsList->getArgName(j));
Chris Lattner6cefb772008-01-05 22:25:12 +00001367 Args.push_back(OpsList->getArgName(j));
1368 }
1369
Chris Lattnerdc32f982008-01-05 22:43:57 +00001370 if (!OperandsSet.empty())
Chris Lattner6cefb772008-01-05 22:25:12 +00001371 P->error("Operands list does not contain an entry for operand '" +
Chris Lattnerdc32f982008-01-05 22:43:57 +00001372 *OperandsSet.begin() + "'!");
Chris Lattner6cefb772008-01-05 22:25:12 +00001373
Chris Lattnerdc32f982008-01-05 22:43:57 +00001374 // If there is a code init for this fragment, keep track of the fact that
1375 // this fragment uses it.
Chris Lattner6cefb772008-01-05 22:25:12 +00001376 std::string Code = Fragments[i]->getValueAsCode("Predicate");
Chris Lattnerdc32f982008-01-05 22:43:57 +00001377 if (!Code.empty())
Chris Lattner6cefb772008-01-05 22:25:12 +00001378 P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
Chris Lattner6cefb772008-01-05 22:25:12 +00001379
1380 // If there is a node transformation corresponding to this, keep track of
1381 // it.
1382 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
1383 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
1384 P->getOnlyTree()->setTransformFn(Transform);
1385 }
1386
Chris Lattner6cefb772008-01-05 22:25:12 +00001387 // Now that we've parsed all of the tree fragments, do a closure on them so
1388 // that there are not references to PatFrags left inside of them.
Chris Lattner2ca698d2008-06-30 03:02:03 +00001389 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
1390 TreePattern *ThePat = PatternFragments[Fragments[i]];
Chris Lattner6cefb772008-01-05 22:25:12 +00001391 ThePat->InlinePatternFragments();
1392
1393 // Infer as many types as possible. Don't worry about it if we don't infer
1394 // all of them, some may depend on the inputs of the pattern.
1395 try {
1396 ThePat->InferAllTypes();
1397 } catch (...) {
1398 // If this pattern fragment is not supported by this target (no types can
1399 // satisfy its constraints), just ignore it. If the bogus pattern is
1400 // actually used by instructions, the type consistency error will be
1401 // reported there.
1402 }
1403
1404 // If debugging, print out the pattern fragment result.
1405 DEBUG(ThePat->dump());
1406 }
1407}
1408
Chris Lattnerfe718932008-01-06 01:10:31 +00001409void CodeGenDAGPatterns::ParseDefaultOperands() {
Chris Lattner6cefb772008-01-05 22:25:12 +00001410 std::vector<Record*> DefaultOps[2];
1411 DefaultOps[0] = Records.getAllDerivedDefinitions("PredicateOperand");
1412 DefaultOps[1] = Records.getAllDerivedDefinitions("OptionalDefOperand");
1413
1414 // Find some SDNode.
1415 assert(!SDNodes.empty() && "No SDNodes parsed?");
1416 Init *SomeSDNode = new DefInit(SDNodes.begin()->first);
1417
1418 for (unsigned iter = 0; iter != 2; ++iter) {
1419 for (unsigned i = 0, e = DefaultOps[iter].size(); i != e; ++i) {
1420 DagInit *DefaultInfo = DefaultOps[iter][i]->getValueAsDag("DefaultOps");
1421
1422 // Clone the DefaultInfo dag node, changing the operator from 'ops' to
1423 // SomeSDnode so that we can parse this.
1424 std::vector<std::pair<Init*, std::string> > Ops;
1425 for (unsigned op = 0, e = DefaultInfo->getNumArgs(); op != e; ++op)
1426 Ops.push_back(std::make_pair(DefaultInfo->getArg(op),
1427 DefaultInfo->getArgName(op)));
1428 DagInit *DI = new DagInit(SomeSDNode, Ops);
1429
1430 // Create a TreePattern to parse this.
1431 TreePattern P(DefaultOps[iter][i], DI, false, *this);
1432 assert(P.getNumTrees() == 1 && "This ctor can only produce one tree!");
1433
1434 // Copy the operands over into a DAGDefaultOperand.
1435 DAGDefaultOperand DefaultOpInfo;
1436
1437 TreePatternNode *T = P.getTree(0);
1438 for (unsigned op = 0, e = T->getNumChildren(); op != e; ++op) {
1439 TreePatternNode *TPN = T->getChild(op);
1440 while (TPN->ApplyTypeConstraints(P, false))
1441 /* Resolve all types */;
1442
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +00001443 if (TPN->ContainsUnresolvedType()) {
Chris Lattner6cefb772008-01-05 22:25:12 +00001444 if (iter == 0)
1445 throw "Value #" + utostr(i) + " of PredicateOperand '" +
1446 DefaultOps[iter][i]->getName() + "' doesn't have a concrete type!";
1447 else
1448 throw "Value #" + utostr(i) + " of OptionalDefOperand '" +
1449 DefaultOps[iter][i]->getName() + "' doesn't have a concrete type!";
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +00001450 }
Chris Lattner6cefb772008-01-05 22:25:12 +00001451 DefaultOpInfo.DefaultOps.push_back(TPN);
1452 }
1453
1454 // Insert it into the DefaultOperands map so we can find it later.
1455 DefaultOperands[DefaultOps[iter][i]] = DefaultOpInfo;
1456 }
1457 }
1458}
1459
1460/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
1461/// instruction input. Return true if this is a real use.
1462static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
1463 std::map<std::string, TreePatternNode*> &InstInputs,
1464 std::vector<Record*> &InstImpInputs) {
1465 // No name -> not interesting.
1466 if (Pat->getName().empty()) {
1467 if (Pat->isLeaf()) {
1468 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1469 if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
1470 I->error("Input " + DI->getDef()->getName() + " must be named!");
1471 else if (DI && DI->getDef()->isSubClassOf("Register"))
1472 InstImpInputs.push_back(DI->getDef());
1473 ;
1474 }
1475 return false;
1476 }
1477
1478 Record *Rec;
1479 if (Pat->isLeaf()) {
1480 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1481 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
1482 Rec = DI->getDef();
1483 } else {
1484 assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
1485 Rec = Pat->getOperator();
1486 }
1487
1488 // SRCVALUE nodes are ignored.
1489 if (Rec->getName() == "srcvalue")
1490 return false;
1491
1492 TreePatternNode *&Slot = InstInputs[Pat->getName()];
1493 if (!Slot) {
1494 Slot = Pat;
1495 } else {
1496 Record *SlotRec;
1497 if (Slot->isLeaf()) {
1498 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
1499 } else {
1500 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
1501 SlotRec = Slot->getOperator();
1502 }
1503
1504 // Ensure that the inputs agree if we've already seen this input.
1505 if (Rec != SlotRec)
1506 I->error("All $" + Pat->getName() + " inputs must agree with each other");
1507 if (Slot->getExtTypes() != Pat->getExtTypes())
1508 I->error("All $" + Pat->getName() + " inputs must agree with each other");
1509 }
1510 return true;
1511}
1512
1513/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1514/// part of "I", the instruction), computing the set of inputs and outputs of
1515/// the pattern. Report errors if we see anything naughty.
Chris Lattnerfe718932008-01-06 01:10:31 +00001516void CodeGenDAGPatterns::
Chris Lattner6cefb772008-01-05 22:25:12 +00001517FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1518 std::map<std::string, TreePatternNode*> &InstInputs,
1519 std::map<std::string, TreePatternNode*>&InstResults,
1520 std::vector<Record*> &InstImpInputs,
1521 std::vector<Record*> &InstImpResults) {
1522 if (Pat->isLeaf()) {
1523 bool isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
1524 if (!isUse && Pat->getTransformFn())
1525 I->error("Cannot specify a transform function for a non-input value!");
1526 return;
1527 } else if (Pat->getOperator()->getName() == "implicit") {
1528 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
1529 TreePatternNode *Dest = Pat->getChild(i);
1530 if (!Dest->isLeaf())
1531 I->error("implicitly defined value should be a register!");
1532
1533 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1534 if (!Val || !Val->getDef()->isSubClassOf("Register"))
1535 I->error("implicitly defined value should be a register!");
1536 InstImpResults.push_back(Val->getDef());
1537 }
1538 return;
1539 } else if (Pat->getOperator()->getName() != "set") {
1540 // If this is not a set, verify that the children nodes are not void typed,
1541 // and recurse.
1542 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
1543 if (Pat->getChild(i)->getExtTypeNum(0) == MVT::isVoid)
1544 I->error("Cannot have void nodes inside of patterns!");
1545 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
1546 InstImpInputs, InstImpResults);
1547 }
1548
1549 // If this is a non-leaf node with no children, treat it basically as if
1550 // it were a leaf. This handles nodes like (imm).
1551 bool isUse = false;
1552 if (Pat->getNumChildren() == 0)
1553 isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
1554
1555 if (!isUse && Pat->getTransformFn())
1556 I->error("Cannot specify a transform function for a non-input value!");
1557 return;
1558 }
1559
1560 // Otherwise, this is a set, validate and collect instruction results.
1561 if (Pat->getNumChildren() == 0)
1562 I->error("set requires operands!");
1563
1564 if (Pat->getTransformFn())
1565 I->error("Cannot specify a transform function on a set node!");
1566
1567 // Check the set destinations.
1568 unsigned NumDests = Pat->getNumChildren()-1;
1569 for (unsigned i = 0; i != NumDests; ++i) {
1570 TreePatternNode *Dest = Pat->getChild(i);
1571 if (!Dest->isLeaf())
1572 I->error("set destination should be a register!");
1573
1574 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1575 if (!Val)
1576 I->error("set destination should be a register!");
1577
1578 if (Val->getDef()->isSubClassOf("RegisterClass") ||
1579 Val->getDef()->getName() == "ptr_rc") {
1580 if (Dest->getName().empty())
1581 I->error("set destination must have a name!");
1582 if (InstResults.count(Dest->getName()))
1583 I->error("cannot set '" + Dest->getName() +"' multiple times");
1584 InstResults[Dest->getName()] = Dest;
1585 } else if (Val->getDef()->isSubClassOf("Register")) {
1586 InstImpResults.push_back(Val->getDef());
1587 } else {
1588 I->error("set destination should be a register!");
1589 }
1590 }
1591
1592 // Verify and collect info from the computation.
1593 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests),
1594 InstInputs, InstResults,
1595 InstImpInputs, InstImpResults);
1596}
1597
Dan Gohmanee4fa192008-04-03 00:02:49 +00001598//===----------------------------------------------------------------------===//
1599// Instruction Analysis
1600//===----------------------------------------------------------------------===//
1601
1602class InstAnalyzer {
1603 const CodeGenDAGPatterns &CDP;
1604 bool &mayStore;
1605 bool &mayLoad;
1606 bool &HasSideEffects;
1607public:
1608 InstAnalyzer(const CodeGenDAGPatterns &cdp,
1609 bool &maystore, bool &mayload, bool &hse)
1610 : CDP(cdp), mayStore(maystore), mayLoad(mayload), HasSideEffects(hse){
1611 }
1612
1613 /// Analyze - Analyze the specified instruction, returning true if the
1614 /// instruction had a pattern.
1615 bool Analyze(Record *InstRecord) {
1616 const TreePattern *Pattern = CDP.getInstruction(InstRecord).getPattern();
1617 if (Pattern == 0) {
1618 HasSideEffects = 1;
1619 return false; // No pattern.
1620 }
1621
1622 // FIXME: Assume only the first tree is the pattern. The others are clobber
1623 // nodes.
1624 AnalyzeNode(Pattern->getTree(0));
1625 return true;
1626 }
1627
1628private:
1629 void AnalyzeNode(const TreePatternNode *N) {
1630 if (N->isLeaf()) {
1631 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
1632 Record *LeafRec = DI->getDef();
1633 // Handle ComplexPattern leaves.
1634 if (LeafRec->isSubClassOf("ComplexPattern")) {
1635 const ComplexPattern &CP = CDP.getComplexPattern(LeafRec);
1636 if (CP.hasProperty(SDNPMayStore)) mayStore = true;
1637 if (CP.hasProperty(SDNPMayLoad)) mayLoad = true;
1638 if (CP.hasProperty(SDNPSideEffect)) HasSideEffects = true;
1639 }
1640 }
1641 return;
1642 }
1643
1644 // Analyze children.
1645 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1646 AnalyzeNode(N->getChild(i));
1647
1648 // Ignore set nodes, which are not SDNodes.
1649 if (N->getOperator()->getName() == "set")
1650 return;
1651
1652 // Get information about the SDNode for the operator.
1653 const SDNodeInfo &OpInfo = CDP.getSDNodeInfo(N->getOperator());
1654
1655 // Notice properties of the node.
1656 if (OpInfo.hasProperty(SDNPMayStore)) mayStore = true;
1657 if (OpInfo.hasProperty(SDNPMayLoad)) mayLoad = true;
1658 if (OpInfo.hasProperty(SDNPSideEffect)) HasSideEffects = true;
1659
1660 if (const CodeGenIntrinsic *IntInfo = N->getIntrinsicInfo(CDP)) {
1661 // If this is an intrinsic, analyze it.
1662 if (IntInfo->ModRef >= CodeGenIntrinsic::ReadArgMem)
1663 mayLoad = true;// These may load memory.
1664
1665 if (IntInfo->ModRef >= CodeGenIntrinsic::WriteArgMem)
1666 mayStore = true;// Intrinsics that can write to memory are 'mayStore'.
1667
1668 if (IntInfo->ModRef >= CodeGenIntrinsic::WriteMem)
1669 // WriteMem intrinsics can have other strange effects.
1670 HasSideEffects = true;
1671 }
1672 }
1673
1674};
1675
1676static void InferFromPattern(const CodeGenInstruction &Inst,
1677 bool &MayStore, bool &MayLoad,
1678 bool &HasSideEffects,
1679 const CodeGenDAGPatterns &CDP) {
1680 MayStore = MayLoad = HasSideEffects = false;
1681
1682 bool HadPattern =
1683 InstAnalyzer(CDP, MayStore, MayLoad, HasSideEffects).Analyze(Inst.TheDef);
1684
1685 // InstAnalyzer only correctly analyzes mayStore/mayLoad so far.
1686 if (Inst.mayStore) { // If the .td file explicitly sets mayStore, use it.
1687 // If we decided that this is a store from the pattern, then the .td file
1688 // entry is redundant.
1689 if (MayStore)
1690 fprintf(stderr,
1691 "Warning: mayStore flag explicitly set on instruction '%s'"
1692 " but flag already inferred from pattern.\n",
1693 Inst.TheDef->getName().c_str());
1694 MayStore = true;
1695 }
1696
1697 if (Inst.mayLoad) { // If the .td file explicitly sets mayLoad, use it.
1698 // If we decided that this is a load from the pattern, then the .td file
1699 // entry is redundant.
1700 if (MayLoad)
1701 fprintf(stderr,
1702 "Warning: mayLoad flag explicitly set on instruction '%s'"
1703 " but flag already inferred from pattern.\n",
1704 Inst.TheDef->getName().c_str());
1705 MayLoad = true;
1706 }
1707
1708 if (Inst.neverHasSideEffects) {
1709 if (HadPattern)
1710 fprintf(stderr, "Warning: neverHasSideEffects set on instruction '%s' "
1711 "which already has a pattern\n", Inst.TheDef->getName().c_str());
1712 HasSideEffects = false;
1713 }
1714
1715 if (Inst.hasSideEffects) {
1716 if (HasSideEffects)
1717 fprintf(stderr, "Warning: hasSideEffects set on instruction '%s' "
1718 "which already inferred this.\n", Inst.TheDef->getName().c_str());
1719 HasSideEffects = true;
1720 }
1721}
1722
Chris Lattner6cefb772008-01-05 22:25:12 +00001723/// ParseInstructions - Parse all of the instructions, inlining and resolving
1724/// any fragments involved. This populates the Instructions list with fully
1725/// resolved instructions.
Chris Lattnerfe718932008-01-06 01:10:31 +00001726void CodeGenDAGPatterns::ParseInstructions() {
Chris Lattner6cefb772008-01-05 22:25:12 +00001727 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1728
1729 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
1730 ListInit *LI = 0;
1731
1732 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1733 LI = Instrs[i]->getValueAsListInit("Pattern");
1734
1735 // If there is no pattern, only collect minimal information about the
1736 // instruction for its operand list. We have to assume that there is one
1737 // result, as we have no detailed info.
1738 if (!LI || LI->getSize() == 0) {
1739 std::vector<Record*> Results;
1740 std::vector<Record*> Operands;
1741
1742 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
1743
1744 if (InstInfo.OperandList.size() != 0) {
1745 if (InstInfo.NumDefs == 0) {
1746 // These produce no results
1747 for (unsigned j = 0, e = InstInfo.OperandList.size(); j < e; ++j)
1748 Operands.push_back(InstInfo.OperandList[j].Rec);
1749 } else {
1750 // Assume the first operand is the result.
1751 Results.push_back(InstInfo.OperandList[0].Rec);
1752
1753 // The rest are inputs.
1754 for (unsigned j = 1, e = InstInfo.OperandList.size(); j < e; ++j)
1755 Operands.push_back(InstInfo.OperandList[j].Rec);
1756 }
1757 }
1758
1759 // Create and insert the instruction.
1760 std::vector<Record*> ImpResults;
1761 std::vector<Record*> ImpOperands;
1762 Instructions.insert(std::make_pair(Instrs[i],
1763 DAGInstruction(0, Results, Operands, ImpResults,
1764 ImpOperands)));
1765 continue; // no pattern.
1766 }
1767
1768 // Parse the instruction.
1769 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
1770 // Inline pattern fragments into it.
1771 I->InlinePatternFragments();
1772
1773 // Infer as many types as possible. If we cannot infer all of them, we can
1774 // never do anything with this instruction pattern: report it to the user.
1775 if (!I->InferAllTypes())
1776 I->error("Could not infer all types in pattern!");
1777
1778 // InstInputs - Keep track of all of the inputs of the instruction, along
1779 // with the record they are declared as.
1780 std::map<std::string, TreePatternNode*> InstInputs;
1781
1782 // InstResults - Keep track of all the virtual registers that are 'set'
1783 // in the instruction, including what reg class they are.
1784 std::map<std::string, TreePatternNode*> InstResults;
1785
1786 std::vector<Record*> InstImpInputs;
1787 std::vector<Record*> InstImpResults;
1788
1789 // Verify that the top-level forms in the instruction are of void type, and
1790 // fill in the InstResults map.
1791 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1792 TreePatternNode *Pat = I->getTree(j);
1793 if (Pat->getExtTypeNum(0) != MVT::isVoid)
1794 I->error("Top-level forms in instruction pattern should have"
1795 " void types");
1796
1797 // Find inputs and outputs, and verify the structure of the uses/defs.
1798 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
1799 InstImpInputs, InstImpResults);
1800 }
1801
1802 // Now that we have inputs and outputs of the pattern, inspect the operands
1803 // list for the instruction. This determines the order that operands are
1804 // added to the machine instruction the node corresponds to.
1805 unsigned NumResults = InstResults.size();
1806
1807 // Parse the operands list from the (ops) list, validating it.
1808 assert(I->getArgList().empty() && "Args list should still be empty here!");
1809 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1810
1811 // Check that all of the results occur first in the list.
1812 std::vector<Record*> Results;
1813 TreePatternNode *Res0Node = NULL;
1814 for (unsigned i = 0; i != NumResults; ++i) {
1815 if (i == CGI.OperandList.size())
1816 I->error("'" + InstResults.begin()->first +
1817 "' set but does not appear in operand list!");
1818 const std::string &OpName = CGI.OperandList[i].Name;
1819
1820 // Check that it exists in InstResults.
1821 TreePatternNode *RNode = InstResults[OpName];
1822 if (RNode == 0)
1823 I->error("Operand $" + OpName + " does not exist in operand list!");
1824
1825 if (i == 0)
1826 Res0Node = RNode;
1827 Record *R = dynamic_cast<DefInit*>(RNode->getLeafValue())->getDef();
1828 if (R == 0)
1829 I->error("Operand $" + OpName + " should be a set destination: all "
1830 "outputs must occur before inputs in operand list!");
1831
1832 if (CGI.OperandList[i].Rec != R)
1833 I->error("Operand $" + OpName + " class mismatch!");
1834
1835 // Remember the return type.
1836 Results.push_back(CGI.OperandList[i].Rec);
1837
1838 // Okay, this one checks out.
1839 InstResults.erase(OpName);
1840 }
1841
1842 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1843 // the copy while we're checking the inputs.
1844 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
1845
1846 std::vector<TreePatternNode*> ResultNodeOperands;
1847 std::vector<Record*> Operands;
1848 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1849 CodeGenInstruction::OperandInfo &Op = CGI.OperandList[i];
1850 const std::string &OpName = Op.Name;
1851 if (OpName.empty())
1852 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1853
1854 if (!InstInputsCheck.count(OpName)) {
1855 // If this is an predicate operand or optional def operand with an
1856 // DefaultOps set filled in, we can ignore this. When we codegen it,
1857 // we will do so as always executed.
1858 if (Op.Rec->isSubClassOf("PredicateOperand") ||
1859 Op.Rec->isSubClassOf("OptionalDefOperand")) {
1860 // Does it have a non-empty DefaultOps field? If so, ignore this
1861 // operand.
1862 if (!getDefaultOperand(Op.Rec).DefaultOps.empty())
1863 continue;
1864 }
1865 I->error("Operand $" + OpName +
1866 " does not appear in the instruction pattern");
1867 }
1868 TreePatternNode *InVal = InstInputsCheck[OpName];
1869 InstInputsCheck.erase(OpName); // It occurred, remove from map.
1870
1871 if (InVal->isLeaf() &&
1872 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1873 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
1874 if (Op.Rec != InRec && !InRec->isSubClassOf("ComplexPattern"))
1875 I->error("Operand $" + OpName + "'s register class disagrees"
1876 " between the operand and pattern");
1877 }
1878 Operands.push_back(Op.Rec);
1879
1880 // Construct the result for the dest-pattern operand list.
1881 TreePatternNode *OpNode = InVal->clone();
1882
1883 // No predicate is useful on the result.
1884 OpNode->setPredicateFn("");
1885
1886 // Promote the xform function to be an explicit node if set.
1887 if (Record *Xform = OpNode->getTransformFn()) {
1888 OpNode->setTransformFn(0);
1889 std::vector<TreePatternNode*> Children;
1890 Children.push_back(OpNode);
1891 OpNode = new TreePatternNode(Xform, Children);
1892 }
1893
1894 ResultNodeOperands.push_back(OpNode);
1895 }
1896
1897 if (!InstInputsCheck.empty())
1898 I->error("Input operand $" + InstInputsCheck.begin()->first +
1899 " occurs in pattern but not in operands list!");
1900
1901 TreePatternNode *ResultPattern =
1902 new TreePatternNode(I->getRecord(), ResultNodeOperands);
1903 // Copy fully inferred output node type to instruction result pattern.
1904 if (NumResults > 0)
1905 ResultPattern->setTypes(Res0Node->getExtTypes());
1906
1907 // Create and insert the instruction.
1908 // FIXME: InstImpResults and InstImpInputs should not be part of
1909 // DAGInstruction.
1910 DAGInstruction TheInst(I, Results, Operands, InstImpResults, InstImpInputs);
1911 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1912
1913 // Use a temporary tree pattern to infer all types and make sure that the
1914 // constructed result is correct. This depends on the instruction already
1915 // being inserted into the Instructions map.
1916 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
1917 Temp.InferAllTypes();
1918
1919 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1920 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
1921
1922 DEBUG(I->dump());
1923 }
1924
1925 // If we can, convert the instructions to be patterns that are matched!
1926 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1927 E = Instructions.end(); II != E; ++II) {
1928 DAGInstruction &TheInst = II->second;
Chris Lattnerf1ab4f12008-01-06 01:52:22 +00001929 const TreePattern *I = TheInst.getPattern();
Chris Lattner6cefb772008-01-05 22:25:12 +00001930 if (I == 0) continue; // No pattern.
1931
1932 // FIXME: Assume only the first tree is the pattern. The others are clobber
1933 // nodes.
1934 TreePatternNode *Pattern = I->getTree(0);
1935 TreePatternNode *SrcPattern;
1936 if (Pattern->getOperator()->getName() == "set") {
1937 SrcPattern = Pattern->getChild(Pattern->getNumChildren()-1)->clone();
1938 } else{
1939 // Not a set (store or something?)
1940 SrcPattern = Pattern;
1941 }
1942
1943 std::string Reason;
1944 if (!SrcPattern->canPatternMatch(Reason, *this))
1945 I->error("Instruction can never match: " + Reason);
1946
1947 Record *Instr = II->first;
1948 TreePatternNode *DstPattern = TheInst.getResultPattern();
1949 PatternsToMatch.
1950 push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
1951 SrcPattern, DstPattern, TheInst.getImpResults(),
1952 Instr->getValueAsInt("AddedComplexity")));
1953 }
1954}
1955
Dan Gohmanee4fa192008-04-03 00:02:49 +00001956
1957void CodeGenDAGPatterns::InferInstructionFlags() {
1958 std::map<std::string, CodeGenInstruction> &InstrDescs =
1959 Target.getInstructions();
1960 for (std::map<std::string, CodeGenInstruction>::iterator
1961 II = InstrDescs.begin(), E = InstrDescs.end(); II != E; ++II) {
1962 CodeGenInstruction &InstInfo = II->second;
1963 // Determine properties of the instruction from its pattern.
1964 bool MayStore, MayLoad, HasSideEffects;
1965 InferFromPattern(InstInfo, MayStore, MayLoad, HasSideEffects, *this);
1966 InstInfo.mayStore = MayStore;
1967 InstInfo.mayLoad = MayLoad;
1968 InstInfo.hasSideEffects = HasSideEffects;
1969 }
1970}
1971
Chris Lattnerfe718932008-01-06 01:10:31 +00001972void CodeGenDAGPatterns::ParsePatterns() {
Chris Lattner6cefb772008-01-05 22:25:12 +00001973 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
1974
1975 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
1976 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
1977 DefInit *OpDef = dynamic_cast<DefInit*>(Tree->getOperator());
1978 Record *Operator = OpDef->getDef();
1979 TreePattern *Pattern;
1980 if (Operator->getName() != "parallel")
1981 Pattern = new TreePattern(Patterns[i], Tree, true, *this);
1982 else {
1983 std::vector<Init*> Values;
1984 for (unsigned j = 0, ee = Tree->getNumArgs(); j != ee; ++j)
1985 Values.push_back(Tree->getArg(j));
1986 ListInit *LI = new ListInit(Values);
1987 Pattern = new TreePattern(Patterns[i], LI, true, *this);
1988 }
1989
1990 // Inline pattern fragments into it.
1991 Pattern->InlinePatternFragments();
1992
1993 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1994 if (LI->getSize() == 0) continue; // no pattern.
1995
1996 // Parse the instruction.
1997 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
1998
1999 // Inline pattern fragments into it.
2000 Result->InlinePatternFragments();
2001
2002 if (Result->getNumTrees() != 1)
2003 Result->error("Cannot handle instructions producing instructions "
2004 "with temporaries yet!");
2005
2006 bool IterateInference;
2007 bool InferredAllPatternTypes, InferredAllResultTypes;
2008 do {
2009 // Infer as many types as possible. If we cannot infer all of them, we
2010 // can never do anything with this pattern: report it to the user.
2011 InferredAllPatternTypes = Pattern->InferAllTypes();
2012
2013 // Infer as many types as possible. If we cannot infer all of them, we
2014 // can never do anything with this pattern: report it to the user.
2015 InferredAllResultTypes = Result->InferAllTypes();
2016
2017 // Apply the type of the result to the source pattern. This helps us
2018 // resolve cases where the input type is known to be a pointer type (which
2019 // is considered resolved), but the result knows it needs to be 32- or
2020 // 64-bits. Infer the other way for good measure.
2021 IterateInference = Pattern->getTree(0)->
2022 UpdateNodeType(Result->getTree(0)->getExtTypes(), *Result);
2023 IterateInference |= Result->getTree(0)->
2024 UpdateNodeType(Pattern->getTree(0)->getExtTypes(), *Result);
2025 } while (IterateInference);
2026
2027 // Verify that we inferred enough types that we can do something with the
2028 // pattern and result. If these fire the user has to add type casts.
2029 if (!InferredAllPatternTypes)
2030 Pattern->error("Could not infer all types in pattern!");
2031 if (!InferredAllResultTypes)
2032 Result->error("Could not infer all types in pattern result!");
2033
2034 // Validate that the input pattern is correct.
2035 std::map<std::string, TreePatternNode*> InstInputs;
2036 std::map<std::string, TreePatternNode*> InstResults;
2037 std::vector<Record*> InstImpInputs;
2038 std::vector<Record*> InstImpResults;
2039 for (unsigned j = 0, ee = Pattern->getNumTrees(); j != ee; ++j)
2040 FindPatternInputsAndOutputs(Pattern, Pattern->getTree(j),
2041 InstInputs, InstResults,
2042 InstImpInputs, InstImpResults);
2043
2044 // Promote the xform function to be an explicit node if set.
2045 TreePatternNode *DstPattern = Result->getOnlyTree();
2046 std::vector<TreePatternNode*> ResultNodeOperands;
2047 for (unsigned ii = 0, ee = DstPattern->getNumChildren(); ii != ee; ++ii) {
2048 TreePatternNode *OpNode = DstPattern->getChild(ii);
2049 if (Record *Xform = OpNode->getTransformFn()) {
2050 OpNode->setTransformFn(0);
2051 std::vector<TreePatternNode*> Children;
2052 Children.push_back(OpNode);
2053 OpNode = new TreePatternNode(Xform, Children);
2054 }
2055 ResultNodeOperands.push_back(OpNode);
2056 }
2057 DstPattern = Result->getOnlyTree();
2058 if (!DstPattern->isLeaf())
2059 DstPattern = new TreePatternNode(DstPattern->getOperator(),
2060 ResultNodeOperands);
2061 DstPattern->setTypes(Result->getOnlyTree()->getExtTypes());
2062 TreePattern Temp(Result->getRecord(), DstPattern, false, *this);
2063 Temp.InferAllTypes();
2064
2065 std::string Reason;
2066 if (!Pattern->getTree(0)->canPatternMatch(Reason, *this))
2067 Pattern->error("Pattern can never match: " + Reason);
2068
2069 PatternsToMatch.
2070 push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
2071 Pattern->getTree(0),
2072 Temp.getOnlyTree(), InstImpResults,
2073 Patterns[i]->getValueAsInt("AddedComplexity")));
2074 }
2075}
2076
2077/// CombineChildVariants - Given a bunch of permutations of each child of the
2078/// 'operator' node, put them together in all possible ways.
2079static void CombineChildVariants(TreePatternNode *Orig,
2080 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
2081 std::vector<TreePatternNode*> &OutVariants,
Scott Michel327d0652008-03-05 17:49:05 +00002082 CodeGenDAGPatterns &CDP,
2083 const MultipleUseVarSet &DepVars) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002084 // Make sure that each operand has at least one variant to choose from.
2085 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
2086 if (ChildVariants[i].empty())
2087 return;
2088
2089 // The end result is an all-pairs construction of the resultant pattern.
2090 std::vector<unsigned> Idxs;
2091 Idxs.resize(ChildVariants.size());
Scott Michel327d0652008-03-05 17:49:05 +00002092 bool NotDone;
2093 do {
2094#ifndef NDEBUG
2095 if (DebugFlag && !Idxs.empty()) {
2096 cerr << Orig->getOperator()->getName() << ": Idxs = [ ";
2097 for (unsigned i = 0; i < Idxs.size(); ++i) {
2098 cerr << Idxs[i] << " ";
2099 }
2100 cerr << "]\n";
2101 }
2102#endif
Chris Lattner6cefb772008-01-05 22:25:12 +00002103 // Create the variant and add it to the output list.
2104 std::vector<TreePatternNode*> NewChildren;
2105 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
2106 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
2107 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
2108
2109 // Copy over properties.
2110 R->setName(Orig->getName());
2111 R->setPredicateFn(Orig->getPredicateFn());
2112 R->setTransformFn(Orig->getTransformFn());
2113 R->setTypes(Orig->getExtTypes());
2114
Scott Michel327d0652008-03-05 17:49:05 +00002115 // If this pattern cannot match, do not include it as a variant.
Chris Lattner6cefb772008-01-05 22:25:12 +00002116 std::string ErrString;
2117 if (!R->canPatternMatch(ErrString, CDP)) {
2118 delete R;
2119 } else {
2120 bool AlreadyExists = false;
2121
2122 // Scan to see if this pattern has already been emitted. We can get
2123 // duplication due to things like commuting:
2124 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
2125 // which are the same pattern. Ignore the dups.
2126 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
Scott Michel327d0652008-03-05 17:49:05 +00002127 if (R->isIsomorphicTo(OutVariants[i], DepVars)) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002128 AlreadyExists = true;
2129 break;
2130 }
2131
2132 if (AlreadyExists)
2133 delete R;
2134 else
2135 OutVariants.push_back(R);
2136 }
2137
Scott Michel327d0652008-03-05 17:49:05 +00002138 // Increment indices to the next permutation by incrementing the
2139 // indicies from last index backward, e.g., generate the sequence
2140 // [0, 0], [0, 1], [1, 0], [1, 1].
2141 int IdxsIdx;
2142 for (IdxsIdx = Idxs.size() - 1; IdxsIdx >= 0; --IdxsIdx) {
2143 if (++Idxs[IdxsIdx] == ChildVariants[IdxsIdx].size())
2144 Idxs[IdxsIdx] = 0;
2145 else
Chris Lattner6cefb772008-01-05 22:25:12 +00002146 break;
Chris Lattner6cefb772008-01-05 22:25:12 +00002147 }
Scott Michel327d0652008-03-05 17:49:05 +00002148 NotDone = (IdxsIdx >= 0);
2149 } while (NotDone);
Chris Lattner6cefb772008-01-05 22:25:12 +00002150}
2151
2152/// CombineChildVariants - A helper function for binary operators.
2153///
2154static void CombineChildVariants(TreePatternNode *Orig,
2155 const std::vector<TreePatternNode*> &LHS,
2156 const std::vector<TreePatternNode*> &RHS,
2157 std::vector<TreePatternNode*> &OutVariants,
Scott Michel327d0652008-03-05 17:49:05 +00002158 CodeGenDAGPatterns &CDP,
2159 const MultipleUseVarSet &DepVars) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002160 std::vector<std::vector<TreePatternNode*> > ChildVariants;
2161 ChildVariants.push_back(LHS);
2162 ChildVariants.push_back(RHS);
Scott Michel327d0652008-03-05 17:49:05 +00002163 CombineChildVariants(Orig, ChildVariants, OutVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00002164}
2165
2166
2167static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
2168 std::vector<TreePatternNode *> &Children) {
2169 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
2170 Record *Operator = N->getOperator();
2171
2172 // Only permit raw nodes.
2173 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
2174 N->getTransformFn()) {
2175 Children.push_back(N);
2176 return;
2177 }
2178
2179 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
2180 Children.push_back(N->getChild(0));
2181 else
2182 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
2183
2184 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
2185 Children.push_back(N->getChild(1));
2186 else
2187 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
2188}
2189
2190/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
2191/// the (potentially recursive) pattern by using algebraic laws.
2192///
2193static void GenerateVariantsOf(TreePatternNode *N,
2194 std::vector<TreePatternNode*> &OutVariants,
Scott Michel327d0652008-03-05 17:49:05 +00002195 CodeGenDAGPatterns &CDP,
2196 const MultipleUseVarSet &DepVars) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002197 // We cannot permute leaves.
2198 if (N->isLeaf()) {
2199 OutVariants.push_back(N);
2200 return;
2201 }
2202
2203 // Look up interesting info about the node.
2204 const SDNodeInfo &NodeInfo = CDP.getSDNodeInfo(N->getOperator());
2205
2206 // If this node is associative, reassociate.
2207 if (NodeInfo.hasProperty(SDNPAssociative)) {
2208 // Reassociate by pulling together all of the linked operators
2209 std::vector<TreePatternNode*> MaximalChildren;
2210 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
2211
2212 // Only handle child sizes of 3. Otherwise we'll end up trying too many
2213 // permutations.
2214 if (MaximalChildren.size() == 3) {
2215 // Find the variants of all of our maximal children.
2216 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
Scott Michel327d0652008-03-05 17:49:05 +00002217 GenerateVariantsOf(MaximalChildren[0], AVariants, CDP, DepVars);
2218 GenerateVariantsOf(MaximalChildren[1], BVariants, CDP, DepVars);
2219 GenerateVariantsOf(MaximalChildren[2], CVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00002220
2221 // There are only two ways we can permute the tree:
2222 // (A op B) op C and A op (B op C)
2223 // Within these forms, we can also permute A/B/C.
2224
2225 // Generate legal pair permutations of A/B/C.
2226 std::vector<TreePatternNode*> ABVariants;
2227 std::vector<TreePatternNode*> BAVariants;
2228 std::vector<TreePatternNode*> ACVariants;
2229 std::vector<TreePatternNode*> CAVariants;
2230 std::vector<TreePatternNode*> BCVariants;
2231 std::vector<TreePatternNode*> CBVariants;
Scott Michel327d0652008-03-05 17:49:05 +00002232 CombineChildVariants(N, AVariants, BVariants, ABVariants, CDP, DepVars);
2233 CombineChildVariants(N, BVariants, AVariants, BAVariants, CDP, DepVars);
2234 CombineChildVariants(N, AVariants, CVariants, ACVariants, CDP, DepVars);
2235 CombineChildVariants(N, CVariants, AVariants, CAVariants, CDP, DepVars);
2236 CombineChildVariants(N, BVariants, CVariants, BCVariants, CDP, DepVars);
2237 CombineChildVariants(N, CVariants, BVariants, CBVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00002238
2239 // Combine those into the result: (x op x) op x
Scott Michel327d0652008-03-05 17:49:05 +00002240 CombineChildVariants(N, ABVariants, CVariants, OutVariants, CDP, DepVars);
2241 CombineChildVariants(N, BAVariants, CVariants, OutVariants, CDP, DepVars);
2242 CombineChildVariants(N, ACVariants, BVariants, OutVariants, CDP, DepVars);
2243 CombineChildVariants(N, CAVariants, BVariants, OutVariants, CDP, DepVars);
2244 CombineChildVariants(N, BCVariants, AVariants, OutVariants, CDP, DepVars);
2245 CombineChildVariants(N, CBVariants, AVariants, OutVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00002246
2247 // Combine those into the result: x op (x op x)
Scott Michel327d0652008-03-05 17:49:05 +00002248 CombineChildVariants(N, CVariants, ABVariants, OutVariants, CDP, DepVars);
2249 CombineChildVariants(N, CVariants, BAVariants, OutVariants, CDP, DepVars);
2250 CombineChildVariants(N, BVariants, ACVariants, OutVariants, CDP, DepVars);
2251 CombineChildVariants(N, BVariants, CAVariants, OutVariants, CDP, DepVars);
2252 CombineChildVariants(N, AVariants, BCVariants, OutVariants, CDP, DepVars);
2253 CombineChildVariants(N, AVariants, CBVariants, OutVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00002254 return;
2255 }
2256 }
2257
2258 // Compute permutations of all children.
2259 std::vector<std::vector<TreePatternNode*> > ChildVariants;
2260 ChildVariants.resize(N->getNumChildren());
2261 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
Scott Michel327d0652008-03-05 17:49:05 +00002262 GenerateVariantsOf(N->getChild(i), ChildVariants[i], CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00002263
2264 // Build all permutations based on how the children were formed.
Scott Michel327d0652008-03-05 17:49:05 +00002265 CombineChildVariants(N, ChildVariants, OutVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00002266
2267 // If this node is commutative, consider the commuted order.
Evan Cheng6bd95672008-06-16 20:29:38 +00002268 bool isCommIntrinsic = N->isCommutativeIntrinsic(CDP);
2269 if (NodeInfo.hasProperty(SDNPCommutative) || isCommIntrinsic) {
2270 assert((N->getNumChildren()==2 || isCommIntrinsic) &&
2271 "Commutative but doesn't have 2 children!");
Chris Lattner6cefb772008-01-05 22:25:12 +00002272 // Don't count children which are actually register references.
2273 unsigned NC = 0;
2274 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
2275 TreePatternNode *Child = N->getChild(i);
2276 if (Child->isLeaf())
2277 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2278 Record *RR = DI->getDef();
2279 if (RR->isSubClassOf("Register"))
2280 continue;
2281 }
2282 NC++;
2283 }
2284 // Consider the commuted order.
Evan Cheng6bd95672008-06-16 20:29:38 +00002285 if (isCommIntrinsic) {
2286 // Commutative intrinsic. First operand is the intrinsic id, 2nd and 3rd
2287 // operands are the commutative operands, and there might be more operands
2288 // after those.
2289 assert(NC >= 3 &&
2290 "Commutative intrinsic should have at least 3 childrean!");
2291 std::vector<std::vector<TreePatternNode*> > Variants;
2292 Variants.push_back(ChildVariants[0]); // Intrinsic id.
2293 Variants.push_back(ChildVariants[2]);
2294 Variants.push_back(ChildVariants[1]);
2295 for (unsigned i = 3; i != NC; ++i)
2296 Variants.push_back(ChildVariants[i]);
2297 CombineChildVariants(N, Variants, OutVariants, CDP, DepVars);
2298 } else if (NC == 2)
Chris Lattner6cefb772008-01-05 22:25:12 +00002299 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
Scott Michel327d0652008-03-05 17:49:05 +00002300 OutVariants, CDP, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00002301 }
2302}
2303
2304
2305// GenerateVariants - Generate variants. For example, commutative patterns can
2306// match multiple ways. Add them to PatternsToMatch as well.
Chris Lattnerfe718932008-01-06 01:10:31 +00002307void CodeGenDAGPatterns::GenerateVariants() {
Chris Lattner6cefb772008-01-05 22:25:12 +00002308 DOUT << "Generating instruction variants.\n";
2309
2310 // Loop over all of the patterns we've collected, checking to see if we can
2311 // generate variants of the instruction, through the exploitation of
2312 // identities. This permits the target to provide agressive matching without
2313 // the .td file having to contain tons of variants of instructions.
2314 //
2315 // Note that this loop adds new patterns to the PatternsToMatch list, but we
2316 // intentionally do not reconsider these. Any variants of added patterns have
2317 // already been added.
2318 //
2319 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Scott Michel327d0652008-03-05 17:49:05 +00002320 MultipleUseVarSet DepVars;
Chris Lattner6cefb772008-01-05 22:25:12 +00002321 std::vector<TreePatternNode*> Variants;
Scott Michel327d0652008-03-05 17:49:05 +00002322 FindDepVars(PatternsToMatch[i].getSrcPattern(), DepVars);
2323 DOUT << "Dependent/multiply used variables: ";
2324 DEBUG(DumpDepVars(DepVars));
2325 DOUT << "\n";
2326 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this, DepVars);
Chris Lattner6cefb772008-01-05 22:25:12 +00002327
2328 assert(!Variants.empty() && "Must create at least original variant!");
2329 Variants.erase(Variants.begin()); // Remove the original pattern.
2330
2331 if (Variants.empty()) // No variants for this pattern.
2332 continue;
2333
2334 DOUT << "FOUND VARIANTS OF: ";
2335 DEBUG(PatternsToMatch[i].getSrcPattern()->dump());
2336 DOUT << "\n";
2337
2338 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
2339 TreePatternNode *Variant = Variants[v];
2340
2341 DOUT << " VAR#" << v << ": ";
2342 DEBUG(Variant->dump());
2343 DOUT << "\n";
2344
2345 // Scan to see if an instruction or explicit pattern already matches this.
2346 bool AlreadyExists = false;
2347 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
2348 // Check to see if this variant already exists.
Scott Michel327d0652008-03-05 17:49:05 +00002349 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern(), DepVars)) {
Chris Lattner6cefb772008-01-05 22:25:12 +00002350 DOUT << " *** ALREADY EXISTS, ignoring variant.\n";
2351 AlreadyExists = true;
2352 break;
2353 }
2354 }
2355 // If we already have it, ignore the variant.
2356 if (AlreadyExists) continue;
2357
2358 // Otherwise, add it to the list of patterns we have.
2359 PatternsToMatch.
2360 push_back(PatternToMatch(PatternsToMatch[i].getPredicates(),
2361 Variant, PatternsToMatch[i].getDstPattern(),
2362 PatternsToMatch[i].getDstRegs(),
2363 PatternsToMatch[i].getAddedComplexity()));
2364 }
2365
2366 DOUT << "\n";
2367 }
2368}
2369