blob: 8f54d7c0ef3ac8226880767a5b3117137068fe91 [file] [log] [blame]
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001//===- DAGISelEmitter.cpp - Generate an instruction selector --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This tablegen backend emits a DAG instruction selector.
11//
12//===----------------------------------------------------------------------===//
13
14#include "DAGISelEmitter.h"
15#include "Record.h"
16#include "llvm/ADT/StringExtras.h"
17#include "llvm/Support/Debug.h"
Chris Lattnerbe8e7212006-10-11 03:35:34 +000018#include "llvm/Support/MathExtras.h"
Jeff Cohena48283b2005-09-25 19:04:43 +000019#include <algorithm>
Chris Lattner54cb8fd2005-09-07 23:44:43 +000020#include <set>
21using namespace llvm;
22
Chris Lattnerca559d02005-09-08 21:03:01 +000023//===----------------------------------------------------------------------===//
Chris Lattner3c7e18d2005-10-14 06:12:03 +000024// Helpers for working with extended types.
25
26/// FilterVTs - Filter a list of VT's according to a predicate.
27///
28template<typename T>
29static std::vector<MVT::ValueType>
30FilterVTs(const std::vector<MVT::ValueType> &InVTs, T Filter) {
31 std::vector<MVT::ValueType> Result;
32 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
33 if (Filter(InVTs[i]))
34 Result.push_back(InVTs[i]);
35 return Result;
36}
37
Nate Begemanb73628b2005-12-30 00:12:56 +000038template<typename T>
39static std::vector<unsigned char>
40FilterEVTs(const std::vector<unsigned char> &InVTs, T Filter) {
41 std::vector<unsigned char> Result;
42 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
43 if (Filter((MVT::ValueType)InVTs[i]))
44 Result.push_back(InVTs[i]);
45 return Result;
Chris Lattner3c7e18d2005-10-14 06:12:03 +000046}
47
Nate Begemanb73628b2005-12-30 00:12:56 +000048static std::vector<unsigned char>
49ConvertVTs(const std::vector<MVT::ValueType> &InVTs) {
50 std::vector<unsigned char> Result;
51 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
52 Result.push_back(InVTs[i]);
53 return Result;
54}
55
56static bool LHSIsSubsetOfRHS(const std::vector<unsigned char> &LHS,
57 const std::vector<unsigned char> &RHS) {
58 if (LHS.size() > RHS.size()) return false;
59 for (unsigned i = 0, e = LHS.size(); i != e; ++i)
Duraid Madinad47ae092005-12-30 16:41:48 +000060 if (std::find(RHS.begin(), RHS.end(), LHS[i]) == RHS.end())
Nate Begemanb73628b2005-12-30 00:12:56 +000061 return false;
62 return true;
63}
64
65/// isExtIntegerVT - Return true if the specified extended value type vector
66/// contains isInt or an integer value type.
Chris Lattner697f8842006-03-20 05:39:48 +000067static bool isExtIntegerInVTs(const std::vector<unsigned char> &EVTs) {
Nate Begemanb73628b2005-12-30 00:12:56 +000068 assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");
69 return EVTs[0] == MVT::isInt || !(FilterEVTs(EVTs, MVT::isInteger).empty());
70}
71
72/// isExtFloatingPointVT - Return true if the specified extended value type
73/// vector contains isFP or a FP value type.
Chris Lattner697f8842006-03-20 05:39:48 +000074static bool isExtFloatingPointInVTs(const std::vector<unsigned char> &EVTs) {
Nate Begemanb73628b2005-12-30 00:12:56 +000075 assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");
Chris Lattner488580c2006-01-28 19:06:51 +000076 return EVTs[0] == MVT::isFP ||
77 !(FilterEVTs(EVTs, MVT::isFloatingPoint).empty());
Chris Lattner3c7e18d2005-10-14 06:12:03 +000078}
79
80//===----------------------------------------------------------------------===//
Chris Lattner33c92e92005-09-08 21:27:15 +000081// SDTypeConstraint implementation
82//
83
84SDTypeConstraint::SDTypeConstraint(Record *R) {
85 OperandNo = R->getValueAsInt("OperandNum");
86
87 if (R->isSubClassOf("SDTCisVT")) {
88 ConstraintType = SDTCisVT;
89 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
Chris Lattner5b21be72005-12-09 22:57:42 +000090 } else if (R->isSubClassOf("SDTCisPtrTy")) {
91 ConstraintType = SDTCisPtrTy;
Chris Lattner33c92e92005-09-08 21:27:15 +000092 } else if (R->isSubClassOf("SDTCisInt")) {
93 ConstraintType = SDTCisInt;
94 } else if (R->isSubClassOf("SDTCisFP")) {
95 ConstraintType = SDTCisFP;
96 } else if (R->isSubClassOf("SDTCisSameAs")) {
97 ConstraintType = SDTCisSameAs;
98 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
99 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
100 ConstraintType = SDTCisVTSmallerThanOp;
101 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum =
102 R->getValueAsInt("OtherOperandNum");
Chris Lattner03ebd802005-10-14 04:53:53 +0000103 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
104 ConstraintType = SDTCisOpSmallerThanOp;
105 x.SDTCisOpSmallerThanOp_Info.BigOperandNum =
106 R->getValueAsInt("BigOperandNum");
Chris Lattner697f8842006-03-20 05:39:48 +0000107 } else if (R->isSubClassOf("SDTCisIntVectorOfSameSize")) {
108 ConstraintType = SDTCisIntVectorOfSameSize;
109 x.SDTCisIntVectorOfSameSize_Info.OtherOperandNum =
110 R->getValueAsInt("OtherOpNum");
Chris Lattner33c92e92005-09-08 21:27:15 +0000111 } else {
112 std::cerr << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n";
113 exit(1);
114 }
115}
116
Chris Lattner32707602005-09-08 23:22:48 +0000117/// getOperandNum - Return the node corresponding to operand #OpNo in tree
118/// N, which has NumResults results.
119TreePatternNode *SDTypeConstraint::getOperandNum(unsigned OpNo,
120 TreePatternNode *N,
121 unsigned NumResults) const {
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000122 assert(NumResults <= 1 &&
123 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +0000124
Evan Cheng50c997e2006-06-13 21:47:27 +0000125 if (OpNo >= (NumResults + N->getNumChildren())) {
126 std::cerr << "Invalid operand number " << OpNo << " ";
127 N->dump();
128 std::cerr << '\n';
129 exit(1);
130 }
131
Chris Lattner32707602005-09-08 23:22:48 +0000132 if (OpNo < NumResults)
133 return N; // FIXME: need value #
134 else
135 return N->getChild(OpNo-NumResults);
136}
137
138/// ApplyTypeConstraint - Given a node in a pattern, apply this type
139/// constraint to the nodes operands. This returns true if it makes a
140/// change, false otherwise. If a type contradiction is found, throw an
141/// exception.
142bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
143 const SDNodeInfo &NodeInfo,
144 TreePattern &TP) const {
145 unsigned NumResults = NodeInfo.getNumResults();
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000146 assert(NumResults <= 1 &&
147 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +0000148
Chris Lattner8f60d542006-06-16 18:25:06 +0000149 // Check that the number of operands is sane. Negative operands -> varargs.
Chris Lattner32707602005-09-08 23:22:48 +0000150 if (NodeInfo.getNumOperands() >= 0) {
151 if (N->getNumChildren() != (unsigned)NodeInfo.getNumOperands())
152 TP.error(N->getOperator()->getName() + " node requires exactly " +
153 itostr(NodeInfo.getNumOperands()) + " operands!");
154 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000155
156 const CodeGenTarget &CGT = TP.getDAGISelEmitter().getTargetInfo();
Chris Lattner32707602005-09-08 23:22:48 +0000157
158 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NumResults);
159
160 switch (ConstraintType) {
161 default: assert(0 && "Unknown constraint type!");
162 case SDTCisVT:
163 // Operand must be a particular type.
164 return NodeToApply->UpdateNodeType(x.SDTCisVT_Info.VT, TP);
Chris Lattner5b21be72005-12-09 22:57:42 +0000165 case SDTCisPtrTy: {
166 // Operand must be same as target pointer type.
Evan Cheng2618d072006-05-17 20:37:59 +0000167 return NodeToApply->UpdateNodeType(MVT::iPTR, TP);
Chris Lattner5b21be72005-12-09 22:57:42 +0000168 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000169 case SDTCisInt: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000170 // If there is only one integer type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000171 std::vector<MVT::ValueType> IntVTs =
172 FilterVTs(CGT.getLegalValueTypes(), MVT::isInteger);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000173
174 // If we found exactly one supported integer type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000175 if (IntVTs.size() == 1)
176 return NodeToApply->UpdateNodeType(IntVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000177 return NodeToApply->UpdateNodeType(MVT::isInt, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000178 }
179 case SDTCisFP: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000180 // If there is only one FP type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000181 std::vector<MVT::ValueType> FPVTs =
182 FilterVTs(CGT.getLegalValueTypes(), MVT::isFloatingPoint);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000183
184 // If we found exactly one supported FP type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000185 if (FPVTs.size() == 1)
186 return NodeToApply->UpdateNodeType(FPVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000187 return NodeToApply->UpdateNodeType(MVT::isFP, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000188 }
Chris Lattner32707602005-09-08 23:22:48 +0000189 case SDTCisSameAs: {
190 TreePatternNode *OtherNode =
191 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NumResults);
Nate Begemanb73628b2005-12-30 00:12:56 +0000192 return NodeToApply->UpdateNodeType(OtherNode->getExtTypes(), TP) |
193 OtherNode->UpdateNodeType(NodeToApply->getExtTypes(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000194 }
195 case SDTCisVTSmallerThanOp: {
196 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must
197 // have an integer type that is smaller than the VT.
198 if (!NodeToApply->isLeaf() ||
199 !dynamic_cast<DefInit*>(NodeToApply->getLeafValue()) ||
200 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
201 ->isSubClassOf("ValueType"))
202 TP.error(N->getOperator()->getName() + " expects a VT operand!");
203 MVT::ValueType VT =
204 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
205 if (!MVT::isInteger(VT))
206 TP.error(N->getOperator()->getName() + " VT operand must be integer!");
207
208 TreePatternNode *OtherNode =
209 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N,NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000210
211 // It must be integer.
212 bool MadeChange = false;
213 MadeChange |= OtherNode->UpdateNodeType(MVT::isInt, TP);
214
Nate Begemanb73628b2005-12-30 00:12:56 +0000215 // This code only handles nodes that have one type set. Assert here so
216 // that we can change this if we ever need to deal with multiple value
217 // types at this point.
218 assert(OtherNode->getExtTypes().size() == 1 && "Node has too many types!");
219 if (OtherNode->hasTypeSet() && OtherNode->getTypeNum(0) <= VT)
Chris Lattner32707602005-09-08 23:22:48 +0000220 OtherNode->UpdateNodeType(MVT::Other, TP); // Throw an error.
221 return false;
222 }
Chris Lattner03ebd802005-10-14 04:53:53 +0000223 case SDTCisOpSmallerThanOp: {
Chris Lattner603d78c2005-10-14 06:25:00 +0000224 TreePatternNode *BigOperand =
225 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NumResults);
226
227 // Both operands must be integer or FP, but we don't care which.
228 bool MadeChange = false;
229
Nate Begemanb73628b2005-12-30 00:12:56 +0000230 // This code does not currently handle nodes which have multiple types,
231 // where some types are integer, and some are fp. Assert that this is not
232 // the case.
233 assert(!(isExtIntegerInVTs(NodeToApply->getExtTypes()) &&
234 isExtFloatingPointInVTs(NodeToApply->getExtTypes())) &&
235 !(isExtIntegerInVTs(BigOperand->getExtTypes()) &&
236 isExtFloatingPointInVTs(BigOperand->getExtTypes())) &&
237 "SDTCisOpSmallerThanOp does not handle mixed int/fp types!");
238 if (isExtIntegerInVTs(NodeToApply->getExtTypes()))
Chris Lattner603d78c2005-10-14 06:25:00 +0000239 MadeChange |= BigOperand->UpdateNodeType(MVT::isInt, TP);
Nate Begemanb73628b2005-12-30 00:12:56 +0000240 else if (isExtFloatingPointInVTs(NodeToApply->getExtTypes()))
Chris Lattner603d78c2005-10-14 06:25:00 +0000241 MadeChange |= BigOperand->UpdateNodeType(MVT::isFP, TP);
Nate Begemanb73628b2005-12-30 00:12:56 +0000242 if (isExtIntegerInVTs(BigOperand->getExtTypes()))
Chris Lattner603d78c2005-10-14 06:25:00 +0000243 MadeChange |= NodeToApply->UpdateNodeType(MVT::isInt, TP);
Nate Begemanb73628b2005-12-30 00:12:56 +0000244 else if (isExtFloatingPointInVTs(BigOperand->getExtTypes()))
Chris Lattner603d78c2005-10-14 06:25:00 +0000245 MadeChange |= NodeToApply->UpdateNodeType(MVT::isFP, TP);
246
247 std::vector<MVT::ValueType> VTs = CGT.getLegalValueTypes();
248
Nate Begemanb73628b2005-12-30 00:12:56 +0000249 if (isExtIntegerInVTs(NodeToApply->getExtTypes())) {
Chris Lattner603d78c2005-10-14 06:25:00 +0000250 VTs = FilterVTs(VTs, MVT::isInteger);
Nate Begemanb73628b2005-12-30 00:12:56 +0000251 } else if (isExtFloatingPointInVTs(NodeToApply->getExtTypes())) {
Chris Lattner603d78c2005-10-14 06:25:00 +0000252 VTs = FilterVTs(VTs, MVT::isFloatingPoint);
253 } else {
254 VTs.clear();
255 }
256
257 switch (VTs.size()) {
258 default: // Too many VT's to pick from.
259 case 0: break; // No info yet.
260 case 1:
261 // Only one VT of this flavor. Cannot ever satisify the constraints.
262 return NodeToApply->UpdateNodeType(MVT::Other, TP); // throw
263 case 2:
264 // If we have exactly two possible types, the little operand must be the
265 // small one, the big operand should be the big one. Common with
266 // float/double for example.
267 assert(VTs[0] < VTs[1] && "Should be sorted!");
268 MadeChange |= NodeToApply->UpdateNodeType(VTs[0], TP);
269 MadeChange |= BigOperand->UpdateNodeType(VTs[1], TP);
270 break;
271 }
272 return MadeChange;
Chris Lattner03ebd802005-10-14 04:53:53 +0000273 }
Chris Lattner697f8842006-03-20 05:39:48 +0000274 case SDTCisIntVectorOfSameSize: {
275 TreePatternNode *OtherOperand =
276 getOperandNum(x.SDTCisIntVectorOfSameSize_Info.OtherOperandNum,
277 N, NumResults);
278 if (OtherOperand->hasTypeSet()) {
279 if (!MVT::isVector(OtherOperand->getTypeNum(0)))
280 TP.error(N->getOperator()->getName() + " VT operand must be a vector!");
281 MVT::ValueType IVT = OtherOperand->getTypeNum(0);
282 IVT = MVT::getIntVectorWithNumElements(MVT::getVectorNumElements(IVT));
283 return NodeToApply->UpdateNodeType(IVT, TP);
284 }
285 return false;
286 }
Chris Lattner32707602005-09-08 23:22:48 +0000287 }
288 return false;
289}
290
291
Chris Lattner33c92e92005-09-08 21:27:15 +0000292//===----------------------------------------------------------------------===//
Chris Lattnerca559d02005-09-08 21:03:01 +0000293// SDNodeInfo implementation
294//
295SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
296 EnumName = R->getValueAsString("Opcode");
297 SDClassName = R->getValueAsString("SDClass");
Chris Lattner33c92e92005-09-08 21:27:15 +0000298 Record *TypeProfile = R->getValueAsDef("TypeProfile");
299 NumResults = TypeProfile->getValueAsInt("NumResults");
300 NumOperands = TypeProfile->getValueAsInt("NumOperands");
301
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000302 // Parse the properties.
303 Properties = 0;
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000304 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
Chris Lattner6bc0d742005-10-28 22:43:25 +0000305 for (unsigned i = 0, e = PropList.size(); i != e; ++i) {
306 if (PropList[i]->getName() == "SDNPCommutative") {
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000307 Properties |= 1 << SDNPCommutative;
Chris Lattner6bc0d742005-10-28 22:43:25 +0000308 } else if (PropList[i]->getName() == "SDNPAssociative") {
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000309 Properties |= 1 << SDNPAssociative;
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000310 } else if (PropList[i]->getName() == "SDNPHasChain") {
311 Properties |= 1 << SDNPHasChain;
Evan Cheng51fecc82006-01-09 18:27:06 +0000312 } else if (PropList[i]->getName() == "SDNPOutFlag") {
313 Properties |= 1 << SDNPOutFlag;
314 } else if (PropList[i]->getName() == "SDNPInFlag") {
315 Properties |= 1 << SDNPInFlag;
316 } else if (PropList[i]->getName() == "SDNPOptInFlag") {
317 Properties |= 1 << SDNPOptInFlag;
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000318 } else {
Chris Lattner6bc0d742005-10-28 22:43:25 +0000319 std::cerr << "Unknown SD Node property '" << PropList[i]->getName()
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000320 << "' on node '" << R->getName() << "'!\n";
321 exit(1);
322 }
323 }
324
325
Chris Lattner33c92e92005-09-08 21:27:15 +0000326 // Parse the type constraints.
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000327 std::vector<Record*> ConstraintList =
328 TypeProfile->getValueAsListOfDefs("Constraints");
329 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
Chris Lattnerca559d02005-09-08 21:03:01 +0000330}
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000331
332//===----------------------------------------------------------------------===//
333// TreePatternNode implementation
334//
335
336TreePatternNode::~TreePatternNode() {
337#if 0 // FIXME: implement refcounted tree nodes!
338 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
339 delete getChild(i);
340#endif
341}
342
Chris Lattner32707602005-09-08 23:22:48 +0000343/// UpdateNodeType - Set the node type of N to VT if VT contains
344/// information. If N already contains a conflicting type, then throw an
345/// exception. This returns true if any information was updated.
346///
Nate Begemanb73628b2005-12-30 00:12:56 +0000347bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
348 TreePattern &TP) {
349 assert(!ExtVTs.empty() && "Cannot update node type with empty type vector!");
350
351 if (ExtVTs[0] == MVT::isUnknown || LHSIsSubsetOfRHS(getExtTypes(), ExtVTs))
352 return false;
353 if (isTypeCompletelyUnknown() || LHSIsSubsetOfRHS(ExtVTs, getExtTypes())) {
354 setTypes(ExtVTs);
Chris Lattner32707602005-09-08 23:22:48 +0000355 return true;
356 }
Evan Cheng2618d072006-05-17 20:37:59 +0000357
358 if (getExtTypeNum(0) == MVT::iPTR) {
359 if (ExtVTs[0] == MVT::iPTR || ExtVTs[0] == MVT::isInt)
360 return false;
361 if (isExtIntegerInVTs(ExtVTs)) {
362 std::vector<unsigned char> FVTs = FilterEVTs(ExtVTs, MVT::isInteger);
363 if (FVTs.size()) {
364 setTypes(ExtVTs);
365 return true;
366 }
367 }
368 }
Chris Lattner32707602005-09-08 23:22:48 +0000369
Nate Begemanb73628b2005-12-30 00:12:56 +0000370 if (ExtVTs[0] == MVT::isInt && isExtIntegerInVTs(getExtTypes())) {
371 assert(hasTypeSet() && "should be handled above!");
372 std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), MVT::isInteger);
373 if (getExtTypes() == FVTs)
374 return false;
375 setTypes(FVTs);
376 return true;
377 }
Evan Cheng2618d072006-05-17 20:37:59 +0000378 if (ExtVTs[0] == MVT::iPTR && isExtIntegerInVTs(getExtTypes())) {
379 //assert(hasTypeSet() && "should be handled above!");
380 std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), MVT::isInteger);
381 if (getExtTypes() == FVTs)
382 return false;
383 if (FVTs.size()) {
384 setTypes(FVTs);
385 return true;
386 }
387 }
Nate Begemanb73628b2005-12-30 00:12:56 +0000388 if (ExtVTs[0] == MVT::isFP && isExtFloatingPointInVTs(getExtTypes())) {
389 assert(hasTypeSet() && "should be handled above!");
Chris Lattner488580c2006-01-28 19:06:51 +0000390 std::vector<unsigned char> FVTs =
391 FilterEVTs(getExtTypes(), MVT::isFloatingPoint);
Nate Begemanb73628b2005-12-30 00:12:56 +0000392 if (getExtTypes() == FVTs)
393 return false;
394 setTypes(FVTs);
395 return true;
396 }
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000397
398 // If we know this is an int or fp type, and we are told it is a specific one,
399 // take the advice.
Nate Begemanb73628b2005-12-30 00:12:56 +0000400 //
401 // Similarly, we should probably set the type here to the intersection of
402 // {isInt|isFP} and ExtVTs
403 if ((getExtTypeNum(0) == MVT::isInt && isExtIntegerInVTs(ExtVTs)) ||
404 (getExtTypeNum(0) == MVT::isFP && isExtFloatingPointInVTs(ExtVTs))) {
405 setTypes(ExtVTs);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000406 return true;
Evan Cheng2618d072006-05-17 20:37:59 +0000407 }
408 if (getExtTypeNum(0) == MVT::isInt && ExtVTs[0] == MVT::iPTR) {
409 setTypes(ExtVTs);
410 return true;
411 }
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000412
Chris Lattner1531f202005-10-26 16:59:37 +0000413 if (isLeaf()) {
414 dump();
Evan Chengbcecf332005-12-17 01:19:28 +0000415 std::cerr << " ";
Chris Lattner1531f202005-10-26 16:59:37 +0000416 TP.error("Type inference contradiction found in node!");
417 } else {
418 TP.error("Type inference contradiction found in node " +
419 getOperator()->getName() + "!");
420 }
Chris Lattner32707602005-09-08 23:22:48 +0000421 return true; // unreachable
422}
423
424
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000425void TreePatternNode::print(std::ostream &OS) const {
426 if (isLeaf()) {
427 OS << *getLeafValue();
428 } else {
429 OS << "(" << getOperator()->getName();
430 }
431
Nate Begemanb73628b2005-12-30 00:12:56 +0000432 // FIXME: At some point we should handle printing all the value types for
433 // nodes that are multiply typed.
434 switch (getExtTypeNum(0)) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000435 case MVT::Other: OS << ":Other"; break;
436 case MVT::isInt: OS << ":isInt"; break;
437 case MVT::isFP : OS << ":isFP"; break;
438 case MVT::isUnknown: ; /*OS << ":?";*/ break;
Evan Cheng2618d072006-05-17 20:37:59 +0000439 case MVT::iPTR: OS << ":iPTR"; break;
Chris Lattner02cdb372006-06-20 00:56:37 +0000440 default: {
441 std::string VTName = llvm::getName(getTypeNum(0));
442 // Strip off MVT:: prefix if present.
443 if (VTName.substr(0,5) == "MVT::")
444 VTName = VTName.substr(5);
445 OS << ":" << VTName;
446 break;
447 }
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000448 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000449
450 if (!isLeaf()) {
451 if (getNumChildren() != 0) {
452 OS << " ";
453 getChild(0)->print(OS);
454 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
455 OS << ", ";
456 getChild(i)->print(OS);
457 }
458 }
459 OS << ")";
460 }
461
462 if (!PredicateFn.empty())
Chris Lattner24eeeb82005-09-13 21:51:00 +0000463 OS << "<<P:" << PredicateFn << ">>";
Chris Lattnerb0276202005-09-14 22:55:26 +0000464 if (TransformFn)
465 OS << "<<X:" << TransformFn->getName() << ">>";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000466 if (!getName().empty())
467 OS << ":$" << getName();
468
469}
470void TreePatternNode::dump() const {
471 print(std::cerr);
472}
473
Chris Lattnere46e17b2005-09-29 19:28:10 +0000474/// isIsomorphicTo - Return true if this node is recursively isomorphic to
475/// the specified node. For this comparison, all of the state of the node
476/// is considered, except for the assigned name. Nodes with differing names
477/// that are otherwise identical are considered isomorphic.
478bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N) const {
479 if (N == this) return true;
Nate Begemanb73628b2005-12-30 00:12:56 +0000480 if (N->isLeaf() != isLeaf() || getExtTypes() != N->getExtTypes() ||
Chris Lattnere46e17b2005-09-29 19:28:10 +0000481 getPredicateFn() != N->getPredicateFn() ||
482 getTransformFn() != N->getTransformFn())
483 return false;
484
485 if (isLeaf()) {
486 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue()))
487 if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue()))
488 return DI->getDef() == NDI->getDef();
489 return getLeafValue() == N->getLeafValue();
490 }
491
492 if (N->getOperator() != getOperator() ||
493 N->getNumChildren() != getNumChildren()) return false;
494 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
495 if (!getChild(i)->isIsomorphicTo(N->getChild(i)))
496 return false;
497 return true;
498}
499
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000500/// clone - Make a copy of this tree and all of its children.
501///
502TreePatternNode *TreePatternNode::clone() const {
503 TreePatternNode *New;
504 if (isLeaf()) {
505 New = new TreePatternNode(getLeafValue());
506 } else {
507 std::vector<TreePatternNode*> CChildren;
508 CChildren.reserve(Children.size());
509 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
510 CChildren.push_back(getChild(i)->clone());
511 New = new TreePatternNode(getOperator(), CChildren);
512 }
513 New->setName(getName());
Nate Begemanb73628b2005-12-30 00:12:56 +0000514 New->setTypes(getExtTypes());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000515 New->setPredicateFn(getPredicateFn());
Chris Lattner24eeeb82005-09-13 21:51:00 +0000516 New->setTransformFn(getTransformFn());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000517 return New;
518}
519
Chris Lattner32707602005-09-08 23:22:48 +0000520/// SubstituteFormalArguments - Replace the formal arguments in this tree
521/// with actual values specified by ArgMap.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000522void TreePatternNode::
523SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
524 if (isLeaf()) return;
525
526 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
527 TreePatternNode *Child = getChild(i);
528 if (Child->isLeaf()) {
529 Init *Val = Child->getLeafValue();
530 if (dynamic_cast<DefInit*>(Val) &&
531 static_cast<DefInit*>(Val)->getDef()->getName() == "node") {
532 // We found a use of a formal argument, replace it with its value.
533 Child = ArgMap[Child->getName()];
534 assert(Child && "Couldn't find formal argument!");
535 setChild(i, Child);
536 }
537 } else {
538 getChild(i)->SubstituteFormalArguments(ArgMap);
539 }
540 }
541}
542
543
544/// InlinePatternFragments - If this pattern refers to any pattern
545/// fragments, inline them into place, giving us a pattern without any
546/// PatFrag references.
547TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
548 if (isLeaf()) return this; // nothing to do.
549 Record *Op = getOperator();
550
551 if (!Op->isSubClassOf("PatFrag")) {
552 // Just recursively inline children nodes.
553 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
554 setChild(i, getChild(i)->InlinePatternFragments(TP));
555 return this;
556 }
557
558 // Otherwise, we found a reference to a fragment. First, look up its
559 // TreePattern record.
560 TreePattern *Frag = TP.getDAGISelEmitter().getPatternFragment(Op);
561
562 // Verify that we are passing the right number of operands.
563 if (Frag->getNumArgs() != Children.size())
564 TP.error("'" + Op->getName() + "' fragment requires " +
565 utostr(Frag->getNumArgs()) + " operands!");
566
Chris Lattner37937092005-09-09 01:15:01 +0000567 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000568
569 // Resolve formal arguments to their actual value.
570 if (Frag->getNumArgs()) {
571 // Compute the map of formal to actual arguments.
572 std::map<std::string, TreePatternNode*> ArgMap;
573 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
574 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
575
576 FragTree->SubstituteFormalArguments(ArgMap);
577 }
578
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000579 FragTree->setName(getName());
Nate Begemanb73628b2005-12-30 00:12:56 +0000580 FragTree->UpdateNodeType(getExtTypes(), TP);
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000581
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000582 // Get a new copy of this fragment to stitch into here.
583 //delete this; // FIXME: implement refcounting!
584 return FragTree;
585}
586
Chris Lattner52793e22006-04-06 20:19:52 +0000587/// getImplicitType - Check to see if the specified record has an implicit
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000588/// type which should be applied to it. This infer the type of register
589/// references from the register file information, for example.
590///
Chris Lattner52793e22006-04-06 20:19:52 +0000591static std::vector<unsigned char> getImplicitType(Record *R, bool NotRegisters,
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000592 TreePattern &TP) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000593 // Some common return values
594 std::vector<unsigned char> Unknown(1, MVT::isUnknown);
595 std::vector<unsigned char> Other(1, MVT::Other);
596
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000597 // Check to see if this is a register or a register class...
598 if (R->isSubClassOf("RegisterClass")) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000599 if (NotRegisters)
600 return Unknown;
Nate Begeman6510b222005-12-01 04:51:06 +0000601 const CodeGenRegisterClass &RC =
602 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(R);
Nate Begemanb73628b2005-12-30 00:12:56 +0000603 return ConvertVTs(RC.getValueTypes());
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000604 } else if (R->isSubClassOf("PatFrag")) {
605 // Pattern fragment types will be resolved when they are inlined.
Nate Begemanb73628b2005-12-30 00:12:56 +0000606 return Unknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000607 } else if (R->isSubClassOf("Register")) {
Evan Cheng37e90052006-01-15 10:04:45 +0000608 if (NotRegisters)
609 return Unknown;
Chris Lattner22faeab2005-12-05 02:36:37 +0000610 const CodeGenTarget &T = TP.getDAGISelEmitter().getTargetInfo();
Evan Cheng44a65fa2006-05-16 07:05:30 +0000611 return T.getRegisterVTs(R);
Chris Lattner1531f202005-10-26 16:59:37 +0000612 } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
613 // Using a VTSDNode or CondCodeSDNode.
Nate Begemanb73628b2005-12-30 00:12:56 +0000614 return Other;
Evan Cheng0fc71982005-12-08 02:00:36 +0000615 } else if (R->isSubClassOf("ComplexPattern")) {
Evan Cheng57c517d2006-01-17 07:36:41 +0000616 if (NotRegisters)
617 return Unknown;
Nate Begemanb73628b2005-12-30 00:12:56 +0000618 std::vector<unsigned char>
619 ComplexPat(1, TP.getDAGISelEmitter().getComplexPattern(R).getValueType());
620 return ComplexPat;
Chris Lattner646085d2006-11-14 21:18:40 +0000621 } else if (R->getName() == "ptr_rc") {
622 Other[0] = MVT::iPTR;
623 return Other;
Evan Cheng01f318b2005-12-14 02:21:57 +0000624 } else if (R->getName() == "node" || R->getName() == "srcvalue") {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000625 // Placeholder.
Nate Begemanb73628b2005-12-30 00:12:56 +0000626 return Unknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000627 }
628
629 TP.error("Unknown node flavor used in pattern: " + R->getName());
Nate Begemanb73628b2005-12-30 00:12:56 +0000630 return Other;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000631}
632
Chris Lattner32707602005-09-08 23:22:48 +0000633/// ApplyTypeConstraints - Apply all of the type constraints relevent to
634/// this node and its children in the tree. This returns true if it makes a
635/// change, false otherwise. If a type contradiction is found, throw an
636/// exception.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000637bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
Chris Lattner5a1df382006-03-24 23:10:39 +0000638 DAGISelEmitter &ISE = TP.getDAGISelEmitter();
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000639 if (isLeaf()) {
Chris Lattner465c7372005-11-03 05:46:11 +0000640 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000641 // If it's a regclass or something else known, include the type.
Chris Lattner52793e22006-04-06 20:19:52 +0000642 return UpdateNodeType(getImplicitType(DI->getDef(), NotRegisters, TP),TP);
Chris Lattner465c7372005-11-03 05:46:11 +0000643 } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
644 // Int inits are always integers. :)
645 bool MadeChange = UpdateNodeType(MVT::isInt, TP);
646
647 if (hasTypeSet()) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000648 // At some point, it may make sense for this tree pattern to have
649 // multiple types. Assert here that it does not, so we revisit this
650 // code when appropriate.
Evan Cheng2618d072006-05-17 20:37:59 +0000651 assert(getExtTypes().size() >= 1 && "TreePattern doesn't have a type!");
Evan Cheng44a65fa2006-05-16 07:05:30 +0000652 MVT::ValueType VT = getTypeNum(0);
653 for (unsigned i = 1, e = getExtTypes().size(); i != e; ++i)
654 assert(getTypeNum(i) == VT && "TreePattern has too many types!");
Nate Begemanb73628b2005-12-30 00:12:56 +0000655
Evan Cheng2618d072006-05-17 20:37:59 +0000656 VT = getTypeNum(0);
657 if (VT != MVT::iPTR) {
658 unsigned Size = MVT::getSizeInBits(VT);
659 // Make sure that the value is representable for this type.
660 if (Size < 32) {
661 int Val = (II->getValue() << (32-Size)) >> (32-Size);
662 if (Val != II->getValue())
663 TP.error("Sign-extended integer value '" + itostr(II->getValue())+
664 "' is out of range for type '" +
665 getEnumName(getTypeNum(0)) + "'!");
666 }
Chris Lattner465c7372005-11-03 05:46:11 +0000667 }
668 }
669
670 return MadeChange;
671 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000672 return false;
673 }
Chris Lattner32707602005-09-08 23:22:48 +0000674
675 // special handling for set, which isn't really an SDNode.
676 if (getOperator()->getName() == "set") {
677 assert (getNumChildren() == 2 && "Only handle 2 operand set's for now!");
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000678 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
679 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner32707602005-09-08 23:22:48 +0000680
681 // Types of operands must match.
Nate Begemanb73628b2005-12-30 00:12:56 +0000682 MadeChange |= getChild(0)->UpdateNodeType(getChild(1)->getExtTypes(), TP);
683 MadeChange |= getChild(1)->UpdateNodeType(getChild(0)->getExtTypes(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000684 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
685 return MadeChange;
Chris Lattner5a1df382006-03-24 23:10:39 +0000686 } else if (getOperator() == ISE.get_intrinsic_void_sdnode() ||
687 getOperator() == ISE.get_intrinsic_w_chain_sdnode() ||
688 getOperator() == ISE.get_intrinsic_wo_chain_sdnode()) {
689 unsigned IID =
690 dynamic_cast<IntInit*>(getChild(0)->getLeafValue())->getValue();
691 const CodeGenIntrinsic &Int = ISE.getIntrinsicInfo(IID);
692 bool MadeChange = false;
693
694 // Apply the result type to the node.
695 MadeChange = UpdateNodeType(Int.ArgVTs[0], TP);
696
697 if (getNumChildren() != Int.ArgVTs.size())
Chris Lattner2c4e65d2006-03-27 22:21:18 +0000698 TP.error("Intrinsic '" + Int.Name + "' expects " +
Chris Lattner5a1df382006-03-24 23:10:39 +0000699 utostr(Int.ArgVTs.size()-1) + " operands, not " +
700 utostr(getNumChildren()-1) + " operands!");
701
702 // Apply type info to the intrinsic ID.
Evan Cheng2618d072006-05-17 20:37:59 +0000703 MadeChange |= getChild(0)->UpdateNodeType(MVT::iPTR, TP);
Chris Lattner5a1df382006-03-24 23:10:39 +0000704
705 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
706 MVT::ValueType OpVT = Int.ArgVTs[i];
707 MadeChange |= getChild(i)->UpdateNodeType(OpVT, TP);
708 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
709 }
710 return MadeChange;
Chris Lattnerabbb6052005-09-15 21:42:00 +0000711 } else if (getOperator()->isSubClassOf("SDNode")) {
Chris Lattner5a1df382006-03-24 23:10:39 +0000712 const SDNodeInfo &NI = ISE.getSDNodeInfo(getOperator());
Chris Lattnerabbb6052005-09-15 21:42:00 +0000713
714 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
715 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000716 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000717 // Branch, etc. do not produce results and top-level forms in instr pattern
718 // must have void types.
719 if (NI.getNumResults() == 0)
720 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
Chris Lattner91ded082006-04-06 20:36:51 +0000721
722 // If this is a vector_shuffle operation, apply types to the build_vector
723 // operation. The types of the integers don't matter, but this ensures they
724 // won't get checked.
725 if (getOperator()->getName() == "vector_shuffle" &&
726 getChild(2)->getOperator()->getName() == "build_vector") {
727 TreePatternNode *BV = getChild(2);
728 const std::vector<MVT::ValueType> &LegalVTs
729 = ISE.getTargetInfo().getLegalValueTypes();
730 MVT::ValueType LegalIntVT = MVT::Other;
731 for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
732 if (MVT::isInteger(LegalVTs[i]) && !MVT::isVector(LegalVTs[i])) {
733 LegalIntVT = LegalVTs[i];
734 break;
735 }
736 assert(LegalIntVT != MVT::Other && "No legal integer VT?");
737
738 for (unsigned i = 0, e = BV->getNumChildren(); i != e; ++i)
739 MadeChange |= BV->getChild(i)->UpdateNodeType(LegalIntVT, TP);
740 }
Chris Lattnerabbb6052005-09-15 21:42:00 +0000741 return MadeChange;
Chris Lattnera28aec12005-09-15 22:23:50 +0000742 } else if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattner5a1df382006-03-24 23:10:39 +0000743 const DAGInstruction &Inst = ISE.getInstruction(getOperator());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000744 bool MadeChange = false;
745 unsigned NumResults = Inst.getNumResults();
Chris Lattnerae5b3502005-09-15 21:57:35 +0000746
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000747 assert(NumResults <= 1 &&
748 "Only supports zero or one result instrs!");
Evan Chengeb1f40d2006-07-20 23:36:20 +0000749
750 CodeGenInstruction &InstInfo =
751 ISE.getTargetInfo().getInstruction(getOperator()->getName());
Chris Lattnera28aec12005-09-15 22:23:50 +0000752 // Apply the result type to the node
Chris Lattner646085d2006-11-14 21:18:40 +0000753 if (NumResults == 0 || InstInfo.noResults) { // FIXME: temporary hack.
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000754 MadeChange = UpdateNodeType(MVT::isVoid, TP);
755 } else {
756 Record *ResultNode = Inst.getResult(0);
Chris Lattner646085d2006-11-14 21:18:40 +0000757
758 if (ResultNode->getName() == "ptr_rc") {
759 std::vector<unsigned char> VT;
760 VT.push_back(MVT::iPTR);
761 MadeChange = UpdateNodeType(VT, TP);
762 } else {
763 assert(ResultNode->isSubClassOf("RegisterClass") &&
764 "Operands should be register classes!");
Nate Begemanddb39542005-12-01 00:06:14 +0000765
Chris Lattner646085d2006-11-14 21:18:40 +0000766 const CodeGenRegisterClass &RC =
767 ISE.getTargetInfo().getRegisterClass(ResultNode);
768 MadeChange = UpdateNodeType(ConvertVTs(RC.getValueTypes()), TP);
769 }
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000770 }
Chris Lattnera28aec12005-09-15 22:23:50 +0000771
Chris Lattnerdfdaeb22006-11-04 01:35:50 +0000772 unsigned ChildNo = 0;
773 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i) {
Nate Begemanddb39542005-12-01 00:06:14 +0000774 Record *OperandNode = Inst.getOperand(i);
Chris Lattnerdfdaeb22006-11-04 01:35:50 +0000775
776 // If the instruction expects a predicate operand, we codegen this by
777 // setting the predicate to it's "execute always" value.
778 if (OperandNode->isSubClassOf("PredicateOperand"))
779 continue;
780
781 // Verify that we didn't run out of provided operands.
782 if (ChildNo >= getNumChildren())
783 TP.error("Instruction '" + getOperator()->getName() +
784 "' expects more operands than were provided.");
785
Nate Begemanddb39542005-12-01 00:06:14 +0000786 MVT::ValueType VT;
Chris Lattnerdfdaeb22006-11-04 01:35:50 +0000787 TreePatternNode *Child = getChild(ChildNo++);
Nate Begemanddb39542005-12-01 00:06:14 +0000788 if (OperandNode->isSubClassOf("RegisterClass")) {
789 const CodeGenRegisterClass &RC =
Chris Lattner5a1df382006-03-24 23:10:39 +0000790 ISE.getTargetInfo().getRegisterClass(OperandNode);
Chris Lattnerdfdaeb22006-11-04 01:35:50 +0000791 MadeChange |= Child->UpdateNodeType(ConvertVTs(RC.getValueTypes()), TP);
Nate Begemanddb39542005-12-01 00:06:14 +0000792 } else if (OperandNode->isSubClassOf("Operand")) {
793 VT = getValueType(OperandNode->getValueAsDef("Type"));
Chris Lattnerdfdaeb22006-11-04 01:35:50 +0000794 MadeChange |= Child->UpdateNodeType(VT, TP);
Chris Lattner646085d2006-11-14 21:18:40 +0000795 } else if (OperandNode->getName() == "ptr_rc") {
796 MadeChange |= Child->UpdateNodeType(MVT::iPTR, TP);
Nate Begemanddb39542005-12-01 00:06:14 +0000797 } else {
798 assert(0 && "Unknown operand type!");
799 abort();
800 }
Chris Lattnerdfdaeb22006-11-04 01:35:50 +0000801 MadeChange |= Child->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnera28aec12005-09-15 22:23:50 +0000802 }
Chris Lattnerdfdaeb22006-11-04 01:35:50 +0000803
804 if (ChildNo != getNumChildren())
805 TP.error("Instruction '" + getOperator()->getName() +
806 "' was provided too many operands!");
807
Chris Lattnera28aec12005-09-15 22:23:50 +0000808 return MadeChange;
809 } else {
810 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
811
Evan Chengf26ba692006-03-20 08:09:17 +0000812 // Node transforms always take one operand.
Chris Lattnera28aec12005-09-15 22:23:50 +0000813 if (getNumChildren() != 1)
814 TP.error("Node transform '" + getOperator()->getName() +
815 "' requires one operand!");
Chris Lattner4e2f54d2006-03-21 06:42:58 +0000816
817 // If either the output or input of the xform does not have exact
818 // type info. We assume they must be the same. Otherwise, it is perfectly
819 // legal to transform from one type to a completely different type.
820 if (!hasTypeSet() || !getChild(0)->hasTypeSet()) {
Evan Chengf26ba692006-03-20 08:09:17 +0000821 bool MadeChange = UpdateNodeType(getChild(0)->getExtTypes(), TP);
822 MadeChange |= getChild(0)->UpdateNodeType(getExtTypes(), TP);
823 return MadeChange;
824 }
825 return false;
Chris Lattner32707602005-09-08 23:22:48 +0000826 }
Chris Lattner32707602005-09-08 23:22:48 +0000827}
828
Chris Lattnerce6e84c2006-09-21 20:46:13 +0000829/// OnlyOnRHSOfCommutative - Return true if this value is only allowed on the
830/// RHS of a commutative operation, not the on LHS.
831static bool OnlyOnRHSOfCommutative(TreePatternNode *N) {
832 if (!N->isLeaf() && N->getOperator()->getName() == "imm")
833 return true;
834 if (N->isLeaf() && dynamic_cast<IntInit*>(N->getLeafValue()))
835 return true;
836 return false;
837}
838
839
Chris Lattnere97603f2005-09-28 19:27:25 +0000840/// canPatternMatch - If it is impossible for this pattern to match on this
841/// target, fill in Reason and return false. Otherwise, return true. This is
842/// used as a santity check for .td files (to prevent people from writing stuff
843/// that can never possibly work), and to prevent the pattern permuter from
844/// generating stuff that is useless.
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000845bool TreePatternNode::canPatternMatch(std::string &Reason, DAGISelEmitter &ISE){
Chris Lattnere97603f2005-09-28 19:27:25 +0000846 if (isLeaf()) return true;
847
848 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
849 if (!getChild(i)->canPatternMatch(Reason, ISE))
850 return false;
Evan Cheng0fc71982005-12-08 02:00:36 +0000851
Chris Lattner550525e2006-03-24 21:48:51 +0000852 // If this is an intrinsic, handle cases that would make it not match. For
853 // example, if an operand is required to be an immediate.
854 if (getOperator()->isSubClassOf("Intrinsic")) {
855 // TODO:
856 return true;
857 }
858
Chris Lattnere97603f2005-09-28 19:27:25 +0000859 // If this node is a commutative operator, check that the LHS isn't an
860 // immediate.
861 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(getOperator());
Evan Cheng94b30402006-10-11 21:02:01 +0000862 if (NodeInfo.hasProperty(SDNPCommutative)) {
Chris Lattnere97603f2005-09-28 19:27:25 +0000863 // Scan all of the operands of the node and make sure that only the last one
Chris Lattner7905c552006-09-14 23:54:24 +0000864 // is a constant node, unless the RHS also is.
Chris Lattnerce6e84c2006-09-21 20:46:13 +0000865 if (!OnlyOnRHSOfCommutative(getChild(getNumChildren()-1))) {
Chris Lattner7905c552006-09-14 23:54:24 +0000866 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i)
Chris Lattnerce6e84c2006-09-21 20:46:13 +0000867 if (OnlyOnRHSOfCommutative(getChild(i))) {
Chris Lattner64906972006-09-21 18:28:27 +0000868 Reason="Immediate value must be on the RHS of commutative operators!";
Chris Lattner7905c552006-09-14 23:54:24 +0000869 return false;
870 }
871 }
Chris Lattnere97603f2005-09-28 19:27:25 +0000872 }
873
874 return true;
875}
Chris Lattner32707602005-09-08 23:22:48 +0000876
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000877//===----------------------------------------------------------------------===//
878// TreePattern implementation
879//
880
Chris Lattneredbd8712005-10-21 01:19:59 +0000881TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattneree9f0c32005-09-13 21:20:49 +0000882 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000883 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000884 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
885 Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000886}
887
Chris Lattneredbd8712005-10-21 01:19:59 +0000888TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000889 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000890 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000891 Trees.push_back(ParseTreePattern(Pat));
892}
893
Chris Lattneredbd8712005-10-21 01:19:59 +0000894TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000895 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000896 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000897 Trees.push_back(Pat);
898}
899
900
901
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000902void TreePattern::error(const std::string &Msg) const {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000903 dump();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000904 throw "In " + TheRecord->getName() + ": " + Msg;
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000905}
906
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000907TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
Chris Lattner8c063182006-03-30 22:50:40 +0000908 DefInit *OpDef = dynamic_cast<DefInit*>(Dag->getOperator());
909 if (!OpDef) error("Pattern has unexpected operator type!");
910 Record *Operator = OpDef->getDef();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000911
912 if (Operator->isSubClassOf("ValueType")) {
913 // If the operator is a ValueType, then this must be "type cast" of a leaf
914 // node.
915 if (Dag->getNumArgs() != 1)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000916 error("Type cast only takes one operand!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000917
918 Init *Arg = Dag->getArg(0);
919 TreePatternNode *New;
920 if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
Chris Lattner72fe91c2005-09-24 00:40:24 +0000921 Record *R = DI->getDef();
922 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
Chris Lattner8c063182006-03-30 22:50:40 +0000923 Dag->setArg(0, new DagInit(DI,
Chris Lattner72fe91c2005-09-24 00:40:24 +0000924 std::vector<std::pair<Init*, std::string> >()));
Chris Lattner12cf9092005-11-16 23:14:54 +0000925 return ParseTreePattern(Dag);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000926 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000927 New = new TreePatternNode(DI);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000928 } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
929 New = ParseTreePattern(DI);
Chris Lattner0614b622005-11-02 06:49:14 +0000930 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
931 New = new TreePatternNode(II);
932 if (!Dag->getArgName(0).empty())
933 error("Constant int argument should not have a name!");
Chris Lattnerffa4fdc2006-03-31 05:25:56 +0000934 } else if (BitsInit *BI = dynamic_cast<BitsInit*>(Arg)) {
935 // Turn this into an IntInit.
936 Init *II = BI->convertInitializerTo(new IntRecTy());
937 if (II == 0 || !dynamic_cast<IntInit*>(II))
938 error("Bits value must be constants!");
939
940 New = new TreePatternNode(dynamic_cast<IntInit*>(II));
941 if (!Dag->getArgName(0).empty())
942 error("Constant int argument should not have a name!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000943 } else {
944 Arg->dump();
945 error("Unknown leaf value for tree pattern!");
946 return 0;
947 }
948
Chris Lattner32707602005-09-08 23:22:48 +0000949 // Apply the type cast.
950 New->UpdateNodeType(getValueType(Operator), *this);
Chris Lattner12cf9092005-11-16 23:14:54 +0000951 New->setName(Dag->getArgName(0));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000952 return New;
953 }
954
955 // Verify that this is something that makes sense for an operator.
956 if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
Chris Lattnerabbb6052005-09-15 21:42:00 +0000957 !Operator->isSubClassOf("Instruction") &&
958 !Operator->isSubClassOf("SDNodeXForm") &&
Chris Lattner550525e2006-03-24 21:48:51 +0000959 !Operator->isSubClassOf("Intrinsic") &&
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000960 Operator->getName() != "set")
961 error("Unrecognized node '" + Operator->getName() + "'!");
962
Chris Lattneredbd8712005-10-21 01:19:59 +0000963 // Check to see if this is something that is illegal in an input pattern.
964 if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
Chris Lattner5a1df382006-03-24 23:10:39 +0000965 Operator->isSubClassOf("SDNodeXForm")))
Chris Lattneredbd8712005-10-21 01:19:59 +0000966 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
967
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000968 std::vector<TreePatternNode*> Children;
969
970 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
971 Init *Arg = Dag->getArg(i);
972 if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
973 Children.push_back(ParseTreePattern(DI));
Chris Lattner12cf9092005-11-16 23:14:54 +0000974 if (Children.back()->getName().empty())
975 Children.back()->setName(Dag->getArgName(i));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000976 } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
977 Record *R = DefI->getDef();
978 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
979 // TreePatternNode if its own.
980 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
Chris Lattner8c063182006-03-30 22:50:40 +0000981 Dag->setArg(i, new DagInit(DefI,
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000982 std::vector<std::pair<Init*, std::string> >()));
983 --i; // Revisit this node...
984 } else {
985 TreePatternNode *Node = new TreePatternNode(DefI);
986 Node->setName(Dag->getArgName(i));
987 Children.push_back(Node);
988
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000989 // Input argument?
990 if (R->getName() == "node") {
991 if (Dag->getArgName(i).empty())
992 error("'node' argument requires a name to match with operand list");
993 Args.push_back(Dag->getArgName(i));
994 }
995 }
Chris Lattner5d5a0562005-10-19 04:30:56 +0000996 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
997 TreePatternNode *Node = new TreePatternNode(II);
998 if (!Dag->getArgName(i).empty())
999 error("Constant int argument should not have a name!");
1000 Children.push_back(Node);
Chris Lattnerffa4fdc2006-03-31 05:25:56 +00001001 } else if (BitsInit *BI = dynamic_cast<BitsInit*>(Arg)) {
1002 // Turn this into an IntInit.
1003 Init *II = BI->convertInitializerTo(new IntRecTy());
1004 if (II == 0 || !dynamic_cast<IntInit*>(II))
1005 error("Bits value must be constants!");
1006
1007 TreePatternNode *Node = new TreePatternNode(dynamic_cast<IntInit*>(II));
1008 if (!Dag->getArgName(i).empty())
1009 error("Constant int argument should not have a name!");
1010 Children.push_back(Node);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001011 } else {
Chris Lattner5d5a0562005-10-19 04:30:56 +00001012 std::cerr << '"';
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001013 Arg->dump();
Chris Lattner5d5a0562005-10-19 04:30:56 +00001014 std::cerr << "\": ";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001015 error("Unknown leaf value for tree pattern!");
1016 }
1017 }
1018
Chris Lattner5a1df382006-03-24 23:10:39 +00001019 // If the operator is an intrinsic, then this is just syntactic sugar for for
1020 // (intrinsic_* <number>, ..children..). Pick the right intrinsic node, and
1021 // convert the intrinsic name to a number.
1022 if (Operator->isSubClassOf("Intrinsic")) {
1023 const CodeGenIntrinsic &Int = getDAGISelEmitter().getIntrinsic(Operator);
1024 unsigned IID = getDAGISelEmitter().getIntrinsicID(Operator)+1;
1025
1026 // If this intrinsic returns void, it must have side-effects and thus a
1027 // chain.
1028 if (Int.ArgVTs[0] == MVT::isVoid) {
1029 Operator = getDAGISelEmitter().get_intrinsic_void_sdnode();
1030 } else if (Int.ModRef != CodeGenIntrinsic::NoMem) {
1031 // Has side-effects, requires chain.
1032 Operator = getDAGISelEmitter().get_intrinsic_w_chain_sdnode();
1033 } else {
1034 // Otherwise, no chain.
1035 Operator = getDAGISelEmitter().get_intrinsic_wo_chain_sdnode();
1036 }
1037
1038 TreePatternNode *IIDNode = new TreePatternNode(new IntInit(IID));
1039 Children.insert(Children.begin(), IIDNode);
1040 }
1041
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001042 return new TreePatternNode(Operator, Children);
1043}
1044
Chris Lattner32707602005-09-08 23:22:48 +00001045/// InferAllTypes - Infer/propagate as many types throughout the expression
1046/// patterns as possible. Return true if all types are infered, false
1047/// otherwise. Throw an exception if a type contradiction is found.
1048bool TreePattern::InferAllTypes() {
1049 bool MadeChange = true;
1050 while (MadeChange) {
1051 MadeChange = false;
1052 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001053 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
Chris Lattner32707602005-09-08 23:22:48 +00001054 }
1055
1056 bool HasUnresolvedTypes = false;
1057 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
1058 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
1059 return !HasUnresolvedTypes;
1060}
1061
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001062void TreePattern::print(std::ostream &OS) const {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001063 OS << getRecord()->getName();
1064 if (!Args.empty()) {
1065 OS << "(" << Args[0];
1066 for (unsigned i = 1, e = Args.size(); i != e; ++i)
1067 OS << ", " << Args[i];
1068 OS << ")";
1069 }
1070 OS << ": ";
1071
1072 if (Trees.size() > 1)
1073 OS << "[\n";
1074 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
1075 OS << "\t";
1076 Trees[i]->print(OS);
1077 OS << "\n";
1078 }
1079
1080 if (Trees.size() > 1)
1081 OS << "]\n";
1082}
1083
1084void TreePattern::dump() const { print(std::cerr); }
1085
1086
1087
1088//===----------------------------------------------------------------------===//
1089// DAGISelEmitter implementation
1090//
1091
Chris Lattnerca559d02005-09-08 21:03:01 +00001092// Parse all of the SDNode definitions for the target, populating SDNodes.
1093void DAGISelEmitter::ParseNodeInfo() {
1094 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
1095 while (!Nodes.empty()) {
1096 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
1097 Nodes.pop_back();
1098 }
Chris Lattner5a1df382006-03-24 23:10:39 +00001099
1100 // Get the buildin intrinsic nodes.
1101 intrinsic_void_sdnode = getSDNodeNamed("intrinsic_void");
1102 intrinsic_w_chain_sdnode = getSDNodeNamed("intrinsic_w_chain");
1103 intrinsic_wo_chain_sdnode = getSDNodeNamed("intrinsic_wo_chain");
Chris Lattnerca559d02005-09-08 21:03:01 +00001104}
1105
Chris Lattner24eeeb82005-09-13 21:51:00 +00001106/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
1107/// map, and emit them to the file as functions.
1108void DAGISelEmitter::ParseNodeTransforms(std::ostream &OS) {
1109 OS << "\n// Node transformations.\n";
1110 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
1111 while (!Xforms.empty()) {
1112 Record *XFormNode = Xforms.back();
1113 Record *SDNode = XFormNode->getValueAsDef("Opcode");
1114 std::string Code = XFormNode->getValueAsCode("XFormFunction");
1115 SDNodeXForms.insert(std::make_pair(XFormNode,
1116 std::make_pair(SDNode, Code)));
1117
Chris Lattner1048b7a2005-09-13 22:03:37 +00001118 if (!Code.empty()) {
Chris Lattner24eeeb82005-09-13 21:51:00 +00001119 std::string ClassName = getSDNodeInfo(SDNode).getSDClassName();
1120 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
1121
Chris Lattner1048b7a2005-09-13 22:03:37 +00001122 OS << "inline SDOperand Transform_" << XFormNode->getName()
Chris Lattner24eeeb82005-09-13 21:51:00 +00001123 << "(SDNode *" << C2 << ") {\n";
1124 if (ClassName != "SDNode")
1125 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
1126 OS << Code << "\n}\n";
1127 }
1128
1129 Xforms.pop_back();
1130 }
1131}
1132
Evan Cheng0fc71982005-12-08 02:00:36 +00001133void DAGISelEmitter::ParseComplexPatterns() {
1134 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
1135 while (!AMs.empty()) {
1136 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
1137 AMs.pop_back();
1138 }
1139}
Chris Lattner24eeeb82005-09-13 21:51:00 +00001140
1141
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001142/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
1143/// file, building up the PatternFragments map. After we've collected them all,
1144/// inline fragments together as necessary, so that there are no references left
1145/// inside a pattern fragment to a pattern fragment.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001146///
1147/// This also emits all of the predicate functions to the output file.
1148///
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001149void DAGISelEmitter::ParsePatternFragments(std::ostream &OS) {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001150 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
1151
1152 // First step, parse all of the fragments and emit predicate functions.
1153 OS << "\n// Predicate functions.\n";
1154 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001155 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
Chris Lattneredbd8712005-10-21 01:19:59 +00001156 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001157 PatternFragments[Fragments[i]] = P;
Chris Lattneree9f0c32005-09-13 21:20:49 +00001158
1159 // Validate the argument list, converting it to map, to discard duplicates.
1160 std::vector<std::string> &Args = P->getArgList();
1161 std::set<std::string> OperandsMap(Args.begin(), Args.end());
1162
1163 if (OperandsMap.count(""))
1164 P->error("Cannot have unnamed 'node' values in pattern fragment!");
1165
1166 // Parse the operands list.
1167 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
Chris Lattner8c063182006-03-30 22:50:40 +00001168 DefInit *OpsOp = dynamic_cast<DefInit*>(OpsList->getOperator());
1169 if (!OpsOp || OpsOp->getDef()->getName() != "ops")
Chris Lattneree9f0c32005-09-13 21:20:49 +00001170 P->error("Operands list should start with '(ops ... '!");
1171
1172 // Copy over the arguments.
1173 Args.clear();
1174 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
1175 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
1176 static_cast<DefInit*>(OpsList->getArg(j))->
1177 getDef()->getName() != "node")
1178 P->error("Operands list should all be 'node' values.");
1179 if (OpsList->getArgName(j).empty())
1180 P->error("Operands list should have names for each operand!");
1181 if (!OperandsMap.count(OpsList->getArgName(j)))
1182 P->error("'" + OpsList->getArgName(j) +
1183 "' does not occur in pattern or was multiply specified!");
1184 OperandsMap.erase(OpsList->getArgName(j));
1185 Args.push_back(OpsList->getArgName(j));
1186 }
1187
1188 if (!OperandsMap.empty())
1189 P->error("Operands list does not contain an entry for operand '" +
1190 *OperandsMap.begin() + "'!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001191
1192 // If there is a code init for this fragment, emit the predicate code and
1193 // keep track of the fact that this fragment uses it.
Chris Lattner24eeeb82005-09-13 21:51:00 +00001194 std::string Code = Fragments[i]->getValueAsCode("Predicate");
1195 if (!Code.empty()) {
Evan Chengd46bd602006-09-19 19:08:04 +00001196 if (P->getOnlyTree()->isLeaf())
1197 OS << "inline bool Predicate_" << Fragments[i]->getName()
1198 << "(SDNode *N) {\n";
1199 else {
1200 std::string ClassName =
1201 getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
1202 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001203
Evan Chengd46bd602006-09-19 19:08:04 +00001204 OS << "inline bool Predicate_" << Fragments[i]->getName()
1205 << "(SDNode *" << C2 << ") {\n";
1206 if (ClassName != "SDNode")
1207 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
1208 }
Chris Lattner24eeeb82005-09-13 21:51:00 +00001209 OS << Code << "\n}\n";
Chris Lattner37937092005-09-09 01:15:01 +00001210 P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001211 }
Chris Lattner6de8b532005-09-13 21:59:15 +00001212
1213 // If there is a node transformation corresponding to this, keep track of
1214 // it.
1215 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
1216 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
Chris Lattnerb0276202005-09-14 22:55:26 +00001217 P->getOnlyTree()->setTransformFn(Transform);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001218 }
1219
1220 OS << "\n\n";
1221
1222 // Now that we've parsed all of the tree fragments, do a closure on them so
1223 // that there are not references to PatFrags left inside of them.
1224 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
1225 E = PatternFragments.end(); I != E; ++I) {
Chris Lattner32707602005-09-08 23:22:48 +00001226 TreePattern *ThePat = I->second;
1227 ThePat->InlinePatternFragments();
Chris Lattneree9f0c32005-09-13 21:20:49 +00001228
Chris Lattner32707602005-09-08 23:22:48 +00001229 // Infer as many types as possible. Don't worry about it if we don't infer
1230 // all of them, some may depend on the inputs of the pattern.
1231 try {
1232 ThePat->InferAllTypes();
1233 } catch (...) {
1234 // If this pattern fragment is not supported by this target (no types can
1235 // satisfy its constraints), just ignore it. If the bogus pattern is
1236 // actually used by instructions, the type consistency error will be
1237 // reported there.
1238 }
1239
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001240 // If debugging, print out the pattern fragment result.
Chris Lattner32707602005-09-08 23:22:48 +00001241 DEBUG(ThePat->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001242 }
1243}
1244
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00001245void DAGISelEmitter::ParsePredicateOperands() {
1246 std::vector<Record*> PredOps =
1247 Records.getAllDerivedDefinitions("PredicateOperand");
1248
1249 // Find some SDNode.
1250 assert(!SDNodes.empty() && "No SDNodes parsed?");
1251 Init *SomeSDNode = new DefInit(SDNodes.begin()->first);
1252
1253 for (unsigned i = 0, e = PredOps.size(); i != e; ++i) {
1254 DagInit *AlwaysInfo = PredOps[i]->getValueAsDag("ExecuteAlways");
1255
1256 // Clone the AlwaysInfo dag node, changing the operator from 'ops' to
1257 // SomeSDnode so that we can parse this.
1258 std::vector<std::pair<Init*, std::string> > Ops;
1259 for (unsigned op = 0, e = AlwaysInfo->getNumArgs(); op != e; ++op)
1260 Ops.push_back(std::make_pair(AlwaysInfo->getArg(op),
1261 AlwaysInfo->getArgName(op)));
1262 DagInit *DI = new DagInit(SomeSDNode, Ops);
1263
1264 // Create a TreePattern to parse this.
1265 TreePattern P(PredOps[i], DI, false, *this);
1266 assert(P.getNumTrees() == 1 && "This ctor can only produce one tree!");
1267
1268 // Copy the operands over into a DAGPredicateOperand.
1269 DAGPredicateOperand PredOpInfo;
1270
1271 TreePatternNode *T = P.getTree(0);
1272 for (unsigned op = 0, e = T->getNumChildren(); op != e; ++op) {
1273 TreePatternNode *TPN = T->getChild(op);
1274 while (TPN->ApplyTypeConstraints(P, false))
1275 /* Resolve all types */;
1276
1277 if (TPN->ContainsUnresolvedType())
1278 throw "Value #" + utostr(i) + " of PredicateOperand '" +
1279 PredOps[i]->getName() + "' doesn't have a concrete type!";
1280
1281 PredOpInfo.AlwaysOps.push_back(TPN);
1282 }
1283
1284 // Insert it into the PredicateOperands map so we can find it later.
1285 PredicateOperands[PredOps[i]] = PredOpInfo;
1286 }
1287}
1288
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001289/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
Chris Lattnerf1311842005-09-14 23:05:13 +00001290/// instruction input. Return true if this is a real use.
1291static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001292 std::map<std::string, TreePatternNode*> &InstInputs,
1293 std::vector<Record*> &InstImpInputs) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001294 // No name -> not interesting.
Chris Lattner7da852f2005-09-14 22:06:36 +00001295 if (Pat->getName().empty()) {
1296 if (Pat->isLeaf()) {
1297 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1298 if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
1299 I->error("Input " + DI->getDef()->getName() + " must be named!");
Evan Cheng7b05bd52005-12-23 22:11:47 +00001300 else if (DI && DI->getDef()->isSubClassOf("Register"))
1301 InstImpInputs.push_back(DI->getDef());
Chris Lattner7da852f2005-09-14 22:06:36 +00001302 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001303 return false;
Chris Lattner7da852f2005-09-14 22:06:36 +00001304 }
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001305
1306 Record *Rec;
1307 if (Pat->isLeaf()) {
1308 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1309 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
1310 Rec = DI->getDef();
1311 } else {
1312 assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
1313 Rec = Pat->getOperator();
1314 }
1315
Evan Cheng01f318b2005-12-14 02:21:57 +00001316 // SRCVALUE nodes are ignored.
1317 if (Rec->getName() == "srcvalue")
1318 return false;
1319
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001320 TreePatternNode *&Slot = InstInputs[Pat->getName()];
1321 if (!Slot) {
1322 Slot = Pat;
1323 } else {
1324 Record *SlotRec;
1325 if (Slot->isLeaf()) {
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00001326 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001327 } else {
1328 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
1329 SlotRec = Slot->getOperator();
1330 }
1331
1332 // Ensure that the inputs agree if we've already seen this input.
1333 if (Rec != SlotRec)
1334 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Nate Begemanb73628b2005-12-30 00:12:56 +00001335 if (Slot->getExtTypes() != Pat->getExtTypes())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001336 I->error("All $" + Pat->getName() + " inputs must agree with each other");
1337 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001338 return true;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001339}
1340
1341/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1342/// part of "I", the instruction), computing the set of inputs and outputs of
1343/// the pattern. Report errors if we see anything naughty.
1344void DAGISelEmitter::
1345FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1346 std::map<std::string, TreePatternNode*> &InstInputs,
Chris Lattner947604b2006-03-24 21:52:20 +00001347 std::map<std::string, TreePatternNode*>&InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001348 std::vector<Record*> &InstImpInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001349 std::vector<Record*> &InstImpResults) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001350 if (Pat->isLeaf()) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00001351 bool isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerf1311842005-09-14 23:05:13 +00001352 if (!isUse && Pat->getTransformFn())
1353 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001354 return;
1355 } else if (Pat->getOperator()->getName() != "set") {
1356 // If this is not a set, verify that the children nodes are not void typed,
1357 // and recurse.
1358 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Nate Begemanb73628b2005-12-30 00:12:56 +00001359 if (Pat->getChild(i)->getExtTypeNum(0) == MVT::isVoid)
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001360 I->error("Cannot have void nodes inside of patterns!");
Evan Chengbcecf332005-12-17 01:19:28 +00001361 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001362 InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001363 }
1364
1365 // If this is a non-leaf node with no children, treat it basically as if
1366 // it were a leaf. This handles nodes like (imm).
Chris Lattnerf1311842005-09-14 23:05:13 +00001367 bool isUse = false;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001368 if (Pat->getNumChildren() == 0)
Evan Cheng7b05bd52005-12-23 22:11:47 +00001369 isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001370
Chris Lattnerf1311842005-09-14 23:05:13 +00001371 if (!isUse && Pat->getTransformFn())
1372 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001373 return;
1374 }
1375
1376 // Otherwise, this is a set, validate and collect instruction results.
1377 if (Pat->getNumChildren() == 0)
1378 I->error("set requires operands!");
1379 else if (Pat->getNumChildren() & 1)
1380 I->error("set requires an even number of operands");
1381
Chris Lattnerf1311842005-09-14 23:05:13 +00001382 if (Pat->getTransformFn())
1383 I->error("Cannot specify a transform function on a set node!");
1384
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001385 // Check the set destinations.
1386 unsigned NumValues = Pat->getNumChildren()/2;
1387 for (unsigned i = 0; i != NumValues; ++i) {
1388 TreePatternNode *Dest = Pat->getChild(i);
1389 if (!Dest->isLeaf())
Evan Cheng86217892005-12-12 19:37:43 +00001390 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001391
1392 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1393 if (!Val)
Evan Cheng86217892005-12-12 19:37:43 +00001394 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001395
Chris Lattner646085d2006-11-14 21:18:40 +00001396 if (Val->getDef()->isSubClassOf("RegisterClass") ||
1397 Val->getDef()->getName() == "ptr_rc") {
Evan Chengbcecf332005-12-17 01:19:28 +00001398 if (Dest->getName().empty())
1399 I->error("set destination must have a name!");
1400 if (InstResults.count(Dest->getName()))
1401 I->error("cannot set '" + Dest->getName() +"' multiple times");
Evan Cheng420132e2006-03-20 06:04:09 +00001402 InstResults[Dest->getName()] = Dest;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001403 } else if (Val->getDef()->isSubClassOf("Register")) {
Evan Chengbcecf332005-12-17 01:19:28 +00001404 InstImpResults.push_back(Val->getDef());
1405 } else {
1406 I->error("set destination should be a register!");
1407 }
1408
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001409 // Verify and collect info from the computation.
1410 FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
Evan Cheng7b05bd52005-12-23 22:11:47 +00001411 InstInputs, InstResults,
1412 InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001413 }
1414}
1415
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001416/// ParseInstructions - Parse all of the instructions, inlining and resolving
1417/// any fragments involved. This populates the Instructions list with fully
1418/// resolved instructions.
1419void DAGISelEmitter::ParseInstructions() {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001420 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1421
1422 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001423 ListInit *LI = 0;
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001424
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001425 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1426 LI = Instrs[i]->getValueAsListInit("Pattern");
1427
1428 // If there is no pattern, only collect minimal information about the
1429 // instruction for its operand list. We have to assume that there is one
1430 // result, as we have no detailed info.
1431 if (!LI || LI->getSize() == 0) {
Nate Begemanddb39542005-12-01 00:06:14 +00001432 std::vector<Record*> Results;
1433 std::vector<Record*> Operands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001434
1435 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001436
Evan Cheng3a217f32005-12-22 02:35:21 +00001437 if (InstInfo.OperandList.size() != 0) {
Evan Cheng3a217f32005-12-22 02:35:21 +00001438 // FIXME: temporary hack...
Evan Cheng2b4ea792005-12-26 09:11:45 +00001439 if (InstInfo.noResults) {
Evan Cheng3a217f32005-12-22 02:35:21 +00001440 // These produce no results
1441 for (unsigned j = 0, e = InstInfo.OperandList.size(); j < e; ++j)
1442 Operands.push_back(InstInfo.OperandList[j].Rec);
1443 } else {
1444 // Assume the first operand is the result.
1445 Results.push_back(InstInfo.OperandList[0].Rec);
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001446
Evan Cheng3a217f32005-12-22 02:35:21 +00001447 // The rest are inputs.
1448 for (unsigned j = 1, e = InstInfo.OperandList.size(); j < e; ++j)
1449 Operands.push_back(InstInfo.OperandList[j].Rec);
1450 }
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001451 }
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001452
1453 // Create and insert the instruction.
Evan Chengbcecf332005-12-17 01:19:28 +00001454 std::vector<Record*> ImpResults;
1455 std::vector<Record*> ImpOperands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001456 Instructions.insert(std::make_pair(Instrs[i],
Evan Cheng7b05bd52005-12-23 22:11:47 +00001457 DAGInstruction(0, Results, Operands, ImpResults,
1458 ImpOperands)));
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001459 continue; // no pattern.
1460 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001461
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001462 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001463 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001464 // Inline pattern fragments into it.
Chris Lattner32707602005-09-08 23:22:48 +00001465 I->InlinePatternFragments();
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001466
Chris Lattner95f6b762005-09-08 23:26:30 +00001467 // Infer as many types as possible. If we cannot infer all of them, we can
1468 // never do anything with this instruction pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001469 if (!I->InferAllTypes())
Chris Lattner32707602005-09-08 23:22:48 +00001470 I->error("Could not infer all types in pattern!");
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001471
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001472 // InstInputs - Keep track of all of the inputs of the instruction, along
1473 // with the record they are declared as.
1474 std::map<std::string, TreePatternNode*> InstInputs;
1475
1476 // InstResults - Keep track of all the virtual registers that are 'set'
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001477 // in the instruction, including what reg class they are.
Evan Cheng420132e2006-03-20 06:04:09 +00001478 std::map<std::string, TreePatternNode*> InstResults;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001479
1480 std::vector<Record*> InstImpInputs;
Evan Chengbcecf332005-12-17 01:19:28 +00001481 std::vector<Record*> InstImpResults;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001482
Chris Lattner1f39e292005-09-14 00:09:24 +00001483 // Verify that the top-level forms in the instruction are of void type, and
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001484 // fill in the InstResults map.
Chris Lattner1f39e292005-09-14 00:09:24 +00001485 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1486 TreePatternNode *Pat = I->getTree(j);
Nate Begemanb73628b2005-12-30 00:12:56 +00001487 if (Pat->getExtTypeNum(0) != MVT::isVoid)
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001488 I->error("Top-level forms in instruction pattern should have"
1489 " void types");
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001490
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001491 // Find inputs and outputs, and verify the structure of the uses/defs.
Evan Chengbcecf332005-12-17 01:19:28 +00001492 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001493 InstImpInputs, InstImpResults);
Chris Lattner1f39e292005-09-14 00:09:24 +00001494 }
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001495
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001496 // Now that we have inputs and outputs of the pattern, inspect the operands
1497 // list for the instruction. This determines the order that operands are
1498 // added to the machine instruction the node corresponds to.
1499 unsigned NumResults = InstResults.size();
Chris Lattner39e8af92005-09-14 18:19:25 +00001500
1501 // Parse the operands list from the (ops) list, validating it.
1502 std::vector<std::string> &Args = I->getArgList();
1503 assert(Args.empty() && "Args list should still be empty here!");
1504 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1505
1506 // Check that all of the results occur first in the list.
Nate Begemanddb39542005-12-01 00:06:14 +00001507 std::vector<Record*> Results;
Evan Cheng420132e2006-03-20 06:04:09 +00001508 TreePatternNode *Res0Node = NULL;
Chris Lattner39e8af92005-09-14 18:19:25 +00001509 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattner3a7319d2005-09-14 21:04:12 +00001510 if (i == CGI.OperandList.size())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001511 I->error("'" + InstResults.begin()->first +
1512 "' set but does not appear in operand list!");
Chris Lattner39e8af92005-09-14 18:19:25 +00001513 const std::string &OpName = CGI.OperandList[i].Name;
Chris Lattner39e8af92005-09-14 18:19:25 +00001514
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001515 // Check that it exists in InstResults.
Evan Cheng420132e2006-03-20 06:04:09 +00001516 TreePatternNode *RNode = InstResults[OpName];
Chris Lattner5c4c7742006-03-25 22:12:44 +00001517 if (RNode == 0)
1518 I->error("Operand $" + OpName + " does not exist in operand list!");
1519
Evan Cheng420132e2006-03-20 06:04:09 +00001520 if (i == 0)
1521 Res0Node = RNode;
1522 Record *R = dynamic_cast<DefInit*>(RNode->getLeafValue())->getDef();
Chris Lattner39e8af92005-09-14 18:19:25 +00001523 if (R == 0)
1524 I->error("Operand $" + OpName + " should be a set destination: all "
1525 "outputs must occur before inputs in operand list!");
1526
1527 if (CGI.OperandList[i].Rec != R)
1528 I->error("Operand $" + OpName + " class mismatch!");
1529
Chris Lattnerae6d8282005-09-15 21:51:12 +00001530 // Remember the return type.
Nate Begemanddb39542005-12-01 00:06:14 +00001531 Results.push_back(CGI.OperandList[i].Rec);
Chris Lattnerae6d8282005-09-15 21:51:12 +00001532
Chris Lattner39e8af92005-09-14 18:19:25 +00001533 // Okay, this one checks out.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001534 InstResults.erase(OpName);
1535 }
1536
Chris Lattner0b592252005-09-14 21:59:34 +00001537 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1538 // the copy while we're checking the inputs.
1539 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
Chris Lattnerb0276202005-09-14 22:55:26 +00001540
1541 std::vector<TreePatternNode*> ResultNodeOperands;
Nate Begemanddb39542005-12-01 00:06:14 +00001542 std::vector<Record*> Operands;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001543 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
Chris Lattnerdfdaeb22006-11-04 01:35:50 +00001544 CodeGenInstruction::OperandInfo &Op = CGI.OperandList[i];
1545 const std::string &OpName = Op.Name;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001546 if (OpName.empty())
1547 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1548
Chris Lattnerdfdaeb22006-11-04 01:35:50 +00001549 if (!InstInputsCheck.count(OpName)) {
1550 // If this is an predicate operand with an ExecuteAlways set filled in,
1551 // we can ignore this. When we codegen it, we will do so as always
1552 // executed.
1553 if (Op.Rec->isSubClassOf("PredicateOperand")) {
1554 // Does it have a non-empty ExecuteAlways field? If so, ignore this
1555 // operand.
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00001556 if (!getPredicateOperand(Op.Rec).AlwaysOps.empty())
Chris Lattnerdfdaeb22006-11-04 01:35:50 +00001557 continue;
1558 }
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001559 I->error("Operand $" + OpName +
1560 " does not appear in the instruction pattern");
Chris Lattnerdfdaeb22006-11-04 01:35:50 +00001561 }
Chris Lattner0b592252005-09-14 21:59:34 +00001562 TreePatternNode *InVal = InstInputsCheck[OpName];
Chris Lattnerb0276202005-09-14 22:55:26 +00001563 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Nate Begemanddb39542005-12-01 00:06:14 +00001564
1565 if (InVal->isLeaf() &&
1566 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1567 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Chris Lattnerdfdaeb22006-11-04 01:35:50 +00001568 if (Op.Rec != InRec && !InRec->isSubClassOf("ComplexPattern"))
Chris Lattner488580c2006-01-28 19:06:51 +00001569 I->error("Operand $" + OpName + "'s register class disagrees"
1570 " between the operand and pattern");
Nate Begemanddb39542005-12-01 00:06:14 +00001571 }
Chris Lattnerdfdaeb22006-11-04 01:35:50 +00001572 Operands.push_back(Op.Rec);
Chris Lattnerb0276202005-09-14 22:55:26 +00001573
Chris Lattner2175c182005-09-14 23:01:59 +00001574 // Construct the result for the dest-pattern operand list.
1575 TreePatternNode *OpNode = InVal->clone();
1576
1577 // No predicate is useful on the result.
1578 OpNode->setPredicateFn("");
1579
1580 // Promote the xform function to be an explicit node if set.
1581 if (Record *Xform = OpNode->getTransformFn()) {
1582 OpNode->setTransformFn(0);
1583 std::vector<TreePatternNode*> Children;
1584 Children.push_back(OpNode);
1585 OpNode = new TreePatternNode(Xform, Children);
1586 }
1587
1588 ResultNodeOperands.push_back(OpNode);
Chris Lattner39e8af92005-09-14 18:19:25 +00001589 }
1590
Chris Lattner0b592252005-09-14 21:59:34 +00001591 if (!InstInputsCheck.empty())
1592 I->error("Input operand $" + InstInputsCheck.begin()->first +
1593 " occurs in pattern but not in operands list!");
Chris Lattnerb0276202005-09-14 22:55:26 +00001594
1595 TreePatternNode *ResultPattern =
1596 new TreePatternNode(I->getRecord(), ResultNodeOperands);
Evan Cheng420132e2006-03-20 06:04:09 +00001597 // Copy fully inferred output node type to instruction result pattern.
1598 if (NumResults > 0)
1599 ResultPattern->setTypes(Res0Node->getExtTypes());
Chris Lattnera28aec12005-09-15 22:23:50 +00001600
1601 // Create and insert the instruction.
Evan Cheng7b05bd52005-12-23 22:11:47 +00001602 DAGInstruction TheInst(I, Results, Operands, InstImpResults, InstImpInputs);
Chris Lattnera28aec12005-09-15 22:23:50 +00001603 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1604
1605 // Use a temporary tree pattern to infer all types and make sure that the
1606 // constructed result is correct. This depends on the instruction already
1607 // being inserted into the Instructions map.
Chris Lattneredbd8712005-10-21 01:19:59 +00001608 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattnera28aec12005-09-15 22:23:50 +00001609 Temp.InferAllTypes();
1610
1611 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1612 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Chris Lattnerb0276202005-09-14 22:55:26 +00001613
Chris Lattner32707602005-09-08 23:22:48 +00001614 DEBUG(I->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001615 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001616
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001617 // If we can, convert the instructions to be patterns that are matched!
Chris Lattnerae5b3502005-09-15 21:57:35 +00001618 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1619 E = Instructions.end(); II != E; ++II) {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001620 DAGInstruction &TheInst = II->second;
1621 TreePattern *I = TheInst.getPattern();
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001622 if (I == 0) continue; // No pattern.
Evan Chengdd304dd2005-12-05 23:08:55 +00001623
Chris Lattner1f39e292005-09-14 00:09:24 +00001624 if (I->getNumTrees() != 1) {
1625 std::cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1626 continue;
1627 }
1628 TreePatternNode *Pattern = I->getTree(0);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001629 TreePatternNode *SrcPattern;
Evan Chengbcecf332005-12-17 01:19:28 +00001630 if (Pattern->getOperator()->getName() == "set") {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001631 if (Pattern->getNumChildren() != 2)
1632 continue; // Not a set of a single value (not handled so far)
1633
1634 SrcPattern = Pattern->getChild(1)->clone();
Evan Chengbcecf332005-12-17 01:19:28 +00001635 } else{
1636 // Not a set (store or something?)
1637 SrcPattern = Pattern;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001638 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001639
1640 std::string Reason;
1641 if (!SrcPattern->canPatternMatch(Reason, *this))
1642 I->error("Instruction can never match: " + Reason);
1643
Evan Cheng58e84a62005-12-14 22:02:59 +00001644 Record *Instr = II->first;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001645 TreePatternNode *DstPattern = TheInst.getResultPattern();
Evan Cheng58e84a62005-12-14 22:02:59 +00001646 PatternsToMatch.
1647 push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
Evan Cheng59413202006-04-19 18:07:24 +00001648 SrcPattern, DstPattern,
Evan Chengc81d2a02006-04-19 20:36:09 +00001649 Instr->getValueAsInt("AddedComplexity")));
Chris Lattner1f39e292005-09-14 00:09:24 +00001650 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001651}
1652
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001653void DAGISelEmitter::ParsePatterns() {
Chris Lattnerabbb6052005-09-15 21:42:00 +00001654 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001655
Chris Lattnerabbb6052005-09-15 21:42:00 +00001656 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001657 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
Chris Lattneredbd8712005-10-21 01:19:59 +00001658 TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001659
Chris Lattnerabbb6052005-09-15 21:42:00 +00001660 // Inline pattern fragments into it.
1661 Pattern->InlinePatternFragments();
1662
Chris Lattnera3548492006-06-20 00:18:02 +00001663 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1664 if (LI->getSize() == 0) continue; // no pattern.
1665
1666 // Parse the instruction.
1667 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
1668
1669 // Inline pattern fragments into it.
1670 Result->InlinePatternFragments();
Chris Lattner09c03392005-11-17 17:43:52 +00001671
Chris Lattnera3548492006-06-20 00:18:02 +00001672 if (Result->getNumTrees() != 1)
1673 Result->error("Cannot handle instructions producing instructions "
1674 "with temporaries yet!");
1675
1676 bool IterateInference;
Chris Lattner186fb7d2006-06-20 00:31:27 +00001677 bool InferredAllPatternTypes, InferredAllResultTypes;
Chris Lattnera3548492006-06-20 00:18:02 +00001678 do {
1679 // Infer as many types as possible. If we cannot infer all of them, we
1680 // can never do anything with this pattern: report it to the user.
Chris Lattner186fb7d2006-06-20 00:31:27 +00001681 InferredAllPatternTypes = Pattern->InferAllTypes();
Chris Lattnera3548492006-06-20 00:18:02 +00001682
Chris Lattner64906972006-09-21 18:28:27 +00001683 // Infer as many types as possible. If we cannot infer all of them, we
1684 // can never do anything with this pattern: report it to the user.
Chris Lattner186fb7d2006-06-20 00:31:27 +00001685 InferredAllResultTypes = Result->InferAllTypes();
1686
Chris Lattnera3548492006-06-20 00:18:02 +00001687 // Apply the type of the result to the source pattern. This helps us
1688 // resolve cases where the input type is known to be a pointer type (which
1689 // is considered resolved), but the result knows it needs to be 32- or
1690 // 64-bits. Infer the other way for good measure.
1691 IterateInference = Pattern->getOnlyTree()->
1692 UpdateNodeType(Result->getOnlyTree()->getExtTypes(), *Result);
1693 IterateInference |= Result->getOnlyTree()->
1694 UpdateNodeType(Pattern->getOnlyTree()->getExtTypes(), *Result);
1695 } while (IterateInference);
Chris Lattner186fb7d2006-06-20 00:31:27 +00001696
1697 // Verify that we inferred enough types that we can do something with the
1698 // pattern and result. If these fire the user has to add type casts.
1699 if (!InferredAllPatternTypes)
1700 Pattern->error("Could not infer all types in pattern!");
1701 if (!InferredAllResultTypes)
1702 Result->error("Could not infer all types in pattern result!");
Chris Lattnera3548492006-06-20 00:18:02 +00001703
Chris Lattner09c03392005-11-17 17:43:52 +00001704 // Validate that the input pattern is correct.
1705 {
1706 std::map<std::string, TreePatternNode*> InstInputs;
Evan Cheng420132e2006-03-20 06:04:09 +00001707 std::map<std::string, TreePatternNode*> InstResults;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001708 std::vector<Record*> InstImpInputs;
Evan Chengbcecf332005-12-17 01:19:28 +00001709 std::vector<Record*> InstImpResults;
Chris Lattner09c03392005-11-17 17:43:52 +00001710 FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
Evan Chengbcecf332005-12-17 01:19:28 +00001711 InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001712 InstImpInputs, InstImpResults);
Chris Lattner09c03392005-11-17 17:43:52 +00001713 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001714
Evan Cheng3a7a14b2006-03-21 20:44:17 +00001715 // Promote the xform function to be an explicit node if set.
1716 std::vector<TreePatternNode*> ResultNodeOperands;
1717 TreePatternNode *DstPattern = Result->getOnlyTree();
1718 for (unsigned ii = 0, ee = DstPattern->getNumChildren(); ii != ee; ++ii) {
1719 TreePatternNode *OpNode = DstPattern->getChild(ii);
1720 if (Record *Xform = OpNode->getTransformFn()) {
1721 OpNode->setTransformFn(0);
1722 std::vector<TreePatternNode*> Children;
1723 Children.push_back(OpNode);
1724 OpNode = new TreePatternNode(Xform, Children);
1725 }
1726 ResultNodeOperands.push_back(OpNode);
1727 }
Evan Cheng83e1a6a2006-03-23 02:35:32 +00001728 DstPattern = Result->getOnlyTree();
1729 if (!DstPattern->isLeaf())
1730 DstPattern = new TreePatternNode(DstPattern->getOperator(),
1731 ResultNodeOperands);
Evan Cheng3a7a14b2006-03-21 20:44:17 +00001732 DstPattern->setTypes(Result->getOnlyTree()->getExtTypes());
1733 TreePattern Temp(Result->getRecord(), DstPattern, false, *this);
1734 Temp.InferAllTypes();
1735
Chris Lattnere97603f2005-09-28 19:27:25 +00001736 std::string Reason;
1737 if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1738 Pattern->error("Pattern can never match: " + Reason);
1739
Evan Cheng58e84a62005-12-14 22:02:59 +00001740 PatternsToMatch.
1741 push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
1742 Pattern->getOnlyTree(),
Evan Cheng59413202006-04-19 18:07:24 +00001743 Temp.getOnlyTree(),
Evan Chengc81d2a02006-04-19 20:36:09 +00001744 Patterns[i]->getValueAsInt("AddedComplexity")));
Chris Lattnerabbb6052005-09-15 21:42:00 +00001745 }
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001746}
1747
Chris Lattnere46e17b2005-09-29 19:28:10 +00001748/// CombineChildVariants - Given a bunch of permutations of each child of the
1749/// 'operator' node, put them together in all possible ways.
1750static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattneraf302912005-09-29 22:36:54 +00001751 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
Chris Lattnere46e17b2005-09-29 19:28:10 +00001752 std::vector<TreePatternNode*> &OutVariants,
1753 DAGISelEmitter &ISE) {
Chris Lattneraf302912005-09-29 22:36:54 +00001754 // Make sure that each operand has at least one variant to choose from.
1755 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1756 if (ChildVariants[i].empty())
1757 return;
1758
Chris Lattnere46e17b2005-09-29 19:28:10 +00001759 // The end result is an all-pairs construction of the resultant pattern.
1760 std::vector<unsigned> Idxs;
1761 Idxs.resize(ChildVariants.size());
1762 bool NotDone = true;
1763 while (NotDone) {
1764 // Create the variant and add it to the output list.
1765 std::vector<TreePatternNode*> NewChildren;
1766 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1767 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1768 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1769
1770 // Copy over properties.
1771 R->setName(Orig->getName());
1772 R->setPredicateFn(Orig->getPredicateFn());
1773 R->setTransformFn(Orig->getTransformFn());
Nate Begemanb73628b2005-12-30 00:12:56 +00001774 R->setTypes(Orig->getExtTypes());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001775
1776 // If this pattern cannot every match, do not include it as a variant.
1777 std::string ErrString;
1778 if (!R->canPatternMatch(ErrString, ISE)) {
1779 delete R;
1780 } else {
1781 bool AlreadyExists = false;
1782
1783 // Scan to see if this pattern has already been emitted. We can get
1784 // duplication due to things like commuting:
1785 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1786 // which are the same pattern. Ignore the dups.
1787 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1788 if (R->isIsomorphicTo(OutVariants[i])) {
1789 AlreadyExists = true;
1790 break;
1791 }
1792
1793 if (AlreadyExists)
1794 delete R;
1795 else
1796 OutVariants.push_back(R);
1797 }
1798
1799 // Increment indices to the next permutation.
1800 NotDone = false;
1801 // Look for something we can increment without causing a wrap-around.
1802 for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1803 if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1804 NotDone = true; // Found something to increment.
1805 break;
1806 }
1807 Idxs[IdxsIdx] = 0;
1808 }
1809 }
1810}
1811
Chris Lattneraf302912005-09-29 22:36:54 +00001812/// CombineChildVariants - A helper function for binary operators.
1813///
1814static void CombineChildVariants(TreePatternNode *Orig,
1815 const std::vector<TreePatternNode*> &LHS,
1816 const std::vector<TreePatternNode*> &RHS,
1817 std::vector<TreePatternNode*> &OutVariants,
1818 DAGISelEmitter &ISE) {
1819 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1820 ChildVariants.push_back(LHS);
1821 ChildVariants.push_back(RHS);
1822 CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1823}
1824
1825
1826static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1827 std::vector<TreePatternNode *> &Children) {
1828 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1829 Record *Operator = N->getOperator();
1830
1831 // Only permit raw nodes.
1832 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1833 N->getTransformFn()) {
1834 Children.push_back(N);
1835 return;
1836 }
1837
1838 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1839 Children.push_back(N->getChild(0));
1840 else
1841 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1842
1843 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1844 Children.push_back(N->getChild(1));
1845 else
1846 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1847}
1848
Chris Lattnere46e17b2005-09-29 19:28:10 +00001849/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1850/// the (potentially recursive) pattern by using algebraic laws.
1851///
1852static void GenerateVariantsOf(TreePatternNode *N,
1853 std::vector<TreePatternNode*> &OutVariants,
1854 DAGISelEmitter &ISE) {
1855 // We cannot permute leaves.
1856 if (N->isLeaf()) {
1857 OutVariants.push_back(N);
1858 return;
1859 }
1860
1861 // Look up interesting info about the node.
Chris Lattner5a1df382006-03-24 23:10:39 +00001862 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001863
1864 // If this node is associative, reassociate.
Evan Cheng94b30402006-10-11 21:02:01 +00001865 if (NodeInfo.hasProperty(SDNPAssociative)) {
Chris Lattneraf302912005-09-29 22:36:54 +00001866 // Reassociate by pulling together all of the linked operators
1867 std::vector<TreePatternNode*> MaximalChildren;
1868 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1869
1870 // Only handle child sizes of 3. Otherwise we'll end up trying too many
1871 // permutations.
1872 if (MaximalChildren.size() == 3) {
1873 // Find the variants of all of our maximal children.
1874 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1875 GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1876 GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1877 GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1878
1879 // There are only two ways we can permute the tree:
1880 // (A op B) op C and A op (B op C)
1881 // Within these forms, we can also permute A/B/C.
1882
1883 // Generate legal pair permutations of A/B/C.
1884 std::vector<TreePatternNode*> ABVariants;
1885 std::vector<TreePatternNode*> BAVariants;
1886 std::vector<TreePatternNode*> ACVariants;
1887 std::vector<TreePatternNode*> CAVariants;
1888 std::vector<TreePatternNode*> BCVariants;
1889 std::vector<TreePatternNode*> CBVariants;
1890 CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1891 CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1892 CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1893 CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1894 CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1895 CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1896
1897 // Combine those into the result: (x op x) op x
1898 CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1899 CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1900 CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1901 CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1902 CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1903 CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1904
1905 // Combine those into the result: x op (x op x)
1906 CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1907 CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1908 CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1909 CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1910 CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1911 CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1912 return;
1913 }
1914 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00001915
1916 // Compute permutations of all children.
1917 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1918 ChildVariants.resize(N->getNumChildren());
1919 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1920 GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1921
1922 // Build all permutations based on how the children were formed.
1923 CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1924
1925 // If this node is commutative, consider the commuted order.
Evan Cheng94b30402006-10-11 21:02:01 +00001926 if (NodeInfo.hasProperty(SDNPCommutative)) {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001927 assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
Chris Lattner706d2d32006-08-09 16:44:44 +00001928 // Don't count children which are actually register references.
1929 unsigned NC = 0;
1930 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1931 TreePatternNode *Child = N->getChild(i);
1932 if (Child->isLeaf())
1933 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
1934 Record *RR = DI->getDef();
1935 if (RR->isSubClassOf("Register"))
1936 continue;
1937 }
1938 NC++;
1939 }
Chris Lattneraf302912005-09-29 22:36:54 +00001940 // Consider the commuted order.
Chris Lattner706d2d32006-08-09 16:44:44 +00001941 if (NC == 2)
1942 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1943 OutVariants, ISE);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001944 }
1945}
1946
1947
Chris Lattnere97603f2005-09-28 19:27:25 +00001948// GenerateVariants - Generate variants. For example, commutative patterns can
1949// match multiple ways. Add them to PatternsToMatch as well.
1950void DAGISelEmitter::GenerateVariants() {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001951
1952 DEBUG(std::cerr << "Generating instruction variants.\n");
1953
1954 // Loop over all of the patterns we've collected, checking to see if we can
1955 // generate variants of the instruction, through the exploitation of
1956 // identities. This permits the target to provide agressive matching without
1957 // the .td file having to contain tons of variants of instructions.
1958 //
1959 // Note that this loop adds new patterns to the PatternsToMatch list, but we
1960 // intentionally do not reconsider these. Any variants of added patterns have
1961 // already been added.
1962 //
1963 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1964 std::vector<TreePatternNode*> Variants;
Evan Cheng58e84a62005-12-14 22:02:59 +00001965 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001966
1967 assert(!Variants.empty() && "Must create at least original variant!");
Chris Lattnere46e17b2005-09-29 19:28:10 +00001968 Variants.erase(Variants.begin()); // Remove the original pattern.
1969
1970 if (Variants.empty()) // No variants for this pattern.
1971 continue;
1972
1973 DEBUG(std::cerr << "FOUND VARIANTS OF: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00001974 PatternsToMatch[i].getSrcPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00001975 std::cerr << "\n");
1976
1977 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1978 TreePatternNode *Variant = Variants[v];
1979
1980 DEBUG(std::cerr << " VAR#" << v << ": ";
1981 Variant->dump();
1982 std::cerr << "\n");
1983
1984 // Scan to see if an instruction or explicit pattern already matches this.
1985 bool AlreadyExists = false;
1986 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1987 // Check to see if this variant already exists.
Evan Cheng58e84a62005-12-14 22:02:59 +00001988 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern())) {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001989 DEBUG(std::cerr << " *** ALREADY EXISTS, ignoring variant.\n");
1990 AlreadyExists = true;
1991 break;
1992 }
1993 }
1994 // If we already have it, ignore the variant.
1995 if (AlreadyExists) continue;
1996
1997 // Otherwise, add it to the list of patterns we have.
Evan Cheng58e84a62005-12-14 22:02:59 +00001998 PatternsToMatch.
1999 push_back(PatternToMatch(PatternsToMatch[i].getPredicates(),
Evan Cheng59413202006-04-19 18:07:24 +00002000 Variant, PatternsToMatch[i].getDstPattern(),
Evan Chengc81d2a02006-04-19 20:36:09 +00002001 PatternsToMatch[i].getAddedComplexity()));
Chris Lattnere46e17b2005-09-29 19:28:10 +00002002 }
2003
2004 DEBUG(std::cerr << "\n");
2005 }
Chris Lattnere97603f2005-09-28 19:27:25 +00002006}
2007
Evan Cheng0fc71982005-12-08 02:00:36 +00002008// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
2009// ComplexPattern.
2010static bool NodeIsComplexPattern(TreePatternNode *N)
2011{
2012 return (N->isLeaf() &&
2013 dynamic_cast<DefInit*>(N->getLeafValue()) &&
2014 static_cast<DefInit*>(N->getLeafValue())->getDef()->
2015 isSubClassOf("ComplexPattern"));
2016}
2017
2018// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
2019// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
2020static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
2021 DAGISelEmitter &ISE)
2022{
2023 if (N->isLeaf() &&
2024 dynamic_cast<DefInit*>(N->getLeafValue()) &&
2025 static_cast<DefInit*>(N->getLeafValue())->getDef()->
2026 isSubClassOf("ComplexPattern")) {
2027 return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
2028 ->getDef());
2029 }
2030 return NULL;
2031}
2032
Chris Lattner05814af2005-09-28 17:57:56 +00002033/// getPatternSize - Return the 'size' of this pattern. We want to match large
2034/// patterns before small ones. This is used to determine the size of a
2035/// pattern.
Evan Cheng0fc71982005-12-08 02:00:36 +00002036static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
Evan Cheng2618d072006-05-17 20:37:59 +00002037 assert((isExtIntegerInVTs(P->getExtTypes()) ||
2038 isExtFloatingPointInVTs(P->getExtTypes()) ||
2039 P->getExtTypeNum(0) == MVT::isVoid ||
2040 P->getExtTypeNum(0) == MVT::Flag ||
2041 P->getExtTypeNum(0) == MVT::iPTR) &&
Evan Cheng4a7c2842006-01-06 22:19:44 +00002042 "Not a valid pattern node to size!");
Evan Cheng6cec34e2006-09-08 07:26:39 +00002043 unsigned Size = 3; // The node itself.
Evan Cheng657416c2006-02-01 06:06:31 +00002044 // If the root node is a ConstantSDNode, increases its size.
2045 // e.g. (set R32:$dst, 0).
2046 if (P->isLeaf() && dynamic_cast<IntInit*>(P->getLeafValue()))
Evan Cheng6cec34e2006-09-08 07:26:39 +00002047 Size += 2;
Evan Cheng0fc71982005-12-08 02:00:36 +00002048
2049 // FIXME: This is a hack to statically increase the priority of patterns
2050 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
2051 // Later we can allow complexity / cost for each pattern to be (optionally)
2052 // specified. To get best possible pattern match we'll need to dynamically
2053 // calculate the complexity of all patterns a dag can potentially map to.
2054 const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
2055 if (AM)
Evan Cheng6cec34e2006-09-08 07:26:39 +00002056 Size += AM->getNumOperands() * 3;
Chris Lattner3e179802006-02-03 18:06:02 +00002057
2058 // If this node has some predicate function that must match, it adds to the
2059 // complexity of this node.
2060 if (!P->getPredicateFn().empty())
2061 ++Size;
2062
Chris Lattner05814af2005-09-28 17:57:56 +00002063 // Count children in the count if they are also nodes.
2064 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
2065 TreePatternNode *Child = P->getChild(i);
Nate Begemanb73628b2005-12-30 00:12:56 +00002066 if (!Child->isLeaf() && Child->getExtTypeNum(0) != MVT::Other)
Evan Cheng0fc71982005-12-08 02:00:36 +00002067 Size += getPatternSize(Child, ISE);
2068 else if (Child->isLeaf()) {
2069 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
Evan Cheng6cec34e2006-09-08 07:26:39 +00002070 Size += 5; // Matches a ConstantSDNode (+3) and a specific value (+2).
Evan Cheng4a7c2842006-01-06 22:19:44 +00002071 else if (NodeIsComplexPattern(Child))
2072 Size += getPatternSize(Child, ISE);
Chris Lattner3e179802006-02-03 18:06:02 +00002073 else if (!Child->getPredicateFn().empty())
2074 ++Size;
Chris Lattner2f041d42005-10-19 04:41:05 +00002075 }
Chris Lattner05814af2005-09-28 17:57:56 +00002076 }
2077
2078 return Size;
2079}
2080
2081/// getResultPatternCost - Compute the number of instructions for this pattern.
2082/// This is a temporary hack. We should really include the instruction
2083/// latencies in this calculation.
Evan Chengfbad7082006-02-18 02:33:09 +00002084static unsigned getResultPatternCost(TreePatternNode *P, DAGISelEmitter &ISE) {
Chris Lattner05814af2005-09-28 17:57:56 +00002085 if (P->isLeaf()) return 0;
2086
Evan Chengfbad7082006-02-18 02:33:09 +00002087 unsigned Cost = 0;
2088 Record *Op = P->getOperator();
2089 if (Op->isSubClassOf("Instruction")) {
2090 Cost++;
2091 CodeGenInstruction &II = ISE.getTargetInfo().getInstruction(Op->getName());
2092 if (II.usesCustomDAGSchedInserter)
2093 Cost += 10;
2094 }
Chris Lattner05814af2005-09-28 17:57:56 +00002095 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
Evan Chengfbad7082006-02-18 02:33:09 +00002096 Cost += getResultPatternCost(P->getChild(i), ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00002097 return Cost;
2098}
2099
Evan Chenge6f32032006-07-19 00:24:41 +00002100/// getResultPatternCodeSize - Compute the code size of instructions for this
2101/// pattern.
2102static unsigned getResultPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
2103 if (P->isLeaf()) return 0;
2104
2105 unsigned Cost = 0;
2106 Record *Op = P->getOperator();
2107 if (Op->isSubClassOf("Instruction")) {
2108 Cost += Op->getValueAsInt("CodeSize");
2109 }
2110 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
2111 Cost += getResultPatternSize(P->getChild(i), ISE);
2112 return Cost;
2113}
2114
Chris Lattner05814af2005-09-28 17:57:56 +00002115// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
2116// In particular, we want to match maximal patterns first and lowest cost within
2117// a particular complexity first.
2118struct PatternSortingPredicate {
Evan Cheng0fc71982005-12-08 02:00:36 +00002119 PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
2120 DAGISelEmitter &ISE;
2121
Evan Cheng58e84a62005-12-14 22:02:59 +00002122 bool operator()(PatternToMatch *LHS,
2123 PatternToMatch *RHS) {
2124 unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), ISE);
2125 unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), ISE);
Evan Chengc81d2a02006-04-19 20:36:09 +00002126 LHSSize += LHS->getAddedComplexity();
2127 RHSSize += RHS->getAddedComplexity();
Chris Lattner05814af2005-09-28 17:57:56 +00002128 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
2129 if (LHSSize < RHSSize) return false;
2130
2131 // If the patterns have equal complexity, compare generated instruction cost
Evan Chenge6f32032006-07-19 00:24:41 +00002132 unsigned LHSCost = getResultPatternCost(LHS->getDstPattern(), ISE);
2133 unsigned RHSCost = getResultPatternCost(RHS->getDstPattern(), ISE);
2134 if (LHSCost < RHSCost) return true;
2135 if (LHSCost > RHSCost) return false;
2136
2137 return getResultPatternSize(LHS->getDstPattern(), ISE) <
2138 getResultPatternSize(RHS->getDstPattern(), ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00002139 }
2140};
2141
Nate Begeman6510b222005-12-01 04:51:06 +00002142/// getRegisterValueType - Look up and return the first ValueType of specified
2143/// RegisterClass record
Evan Cheng66a48bb2005-12-01 00:18:45 +00002144static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +00002145 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
2146 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +00002147 return MVT::Other;
2148}
2149
Chris Lattner72fe91c2005-09-24 00:40:24 +00002150
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002151/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
2152/// type information from it.
2153static void RemoveAllTypes(TreePatternNode *N) {
Nate Begemanb73628b2005-12-30 00:12:56 +00002154 N->removeTypes();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002155 if (!N->isLeaf())
2156 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
2157 RemoveAllTypes(N->getChild(i));
2158}
Chris Lattner72fe91c2005-09-24 00:40:24 +00002159
Chris Lattner0614b622005-11-02 06:49:14 +00002160Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
2161 Record *N = Records.getDef(Name);
Chris Lattner5a1df382006-03-24 23:10:39 +00002162 if (!N || !N->isSubClassOf("SDNode")) {
2163 std::cerr << "Error getting SDNode '" << Name << "'!\n";
2164 exit(1);
2165 }
Chris Lattner0614b622005-11-02 06:49:14 +00002166 return N;
2167}
2168
Evan Cheng51fecc82006-01-09 18:27:06 +00002169/// NodeHasProperty - return true if TreePatternNode has the specified
2170/// property.
Evan Cheng94b30402006-10-11 21:02:01 +00002171static bool NodeHasProperty(TreePatternNode *N, SDNP Property,
Evan Cheng51fecc82006-01-09 18:27:06 +00002172 DAGISelEmitter &ISE)
Evan Cheng7b05bd52005-12-23 22:11:47 +00002173{
Evan Cheng94b30402006-10-11 21:02:01 +00002174 if (N->isLeaf()) {
2175 const ComplexPattern *CP = NodeGetComplexPattern(N, ISE);
2176 if (CP)
2177 return CP->hasProperty(Property);
2178 return false;
2179 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002180 Record *Operator = N->getOperator();
2181 if (!Operator->isSubClassOf("SDNode")) return false;
2182
2183 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
Evan Cheng51fecc82006-01-09 18:27:06 +00002184 return NodeInfo.hasProperty(Property);
Evan Cheng7b05bd52005-12-23 22:11:47 +00002185}
2186
Evan Cheng94b30402006-10-11 21:02:01 +00002187static bool PatternHasProperty(TreePatternNode *N, SDNP Property,
Evan Cheng51fecc82006-01-09 18:27:06 +00002188 DAGISelEmitter &ISE)
Evan Cheng7b05bd52005-12-23 22:11:47 +00002189{
Evan Cheng51fecc82006-01-09 18:27:06 +00002190 if (NodeHasProperty(N, Property, ISE))
Evan Cheng7b05bd52005-12-23 22:11:47 +00002191 return true;
Evan Cheng51fecc82006-01-09 18:27:06 +00002192
2193 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
2194 TreePatternNode *Child = N->getChild(i);
2195 if (PatternHasProperty(Child, Property, ISE))
2196 return true;
Evan Cheng7b05bd52005-12-23 22:11:47 +00002197 }
2198
2199 return false;
2200}
2201
Evan Chengb915f312005-12-09 22:45:35 +00002202class PatternCodeEmitter {
2203private:
2204 DAGISelEmitter &ISE;
2205
Evan Cheng58e84a62005-12-14 22:02:59 +00002206 // Predicates.
2207 ListInit *Predicates;
Evan Cheng59413202006-04-19 18:07:24 +00002208 // Pattern cost.
2209 unsigned Cost;
Evan Cheng58e84a62005-12-14 22:02:59 +00002210 // Instruction selector pattern.
2211 TreePatternNode *Pattern;
2212 // Matched instruction.
2213 TreePatternNode *Instruction;
Chris Lattner8a0604b2006-01-28 20:31:24 +00002214
Evan Chengb915f312005-12-09 22:45:35 +00002215 // Node to name mapping
Evan Chengf805c2e2006-01-12 19:35:54 +00002216 std::map<std::string, std::string> VariableMap;
2217 // Node to operator mapping
2218 std::map<std::string, Record*> OperatorMap;
Evan Chengb915f312005-12-09 22:45:35 +00002219 // Names of all the folded nodes which produce chains.
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002220 std::vector<std::pair<std::string, unsigned> > FoldedChains;
Evan Cheng4326ef52006-10-12 02:08:53 +00002221 // Original input chain(s).
2222 std::vector<std::pair<std::string, std::string> > OrigChains;
Evan Chengb4ad33c2006-01-19 01:55:45 +00002223 std::set<std::string> Duplicates;
Evan Chengb915f312005-12-09 22:45:35 +00002224
Evan Cheng676d7312006-08-26 00:59:04 +00002225 /// GeneratedCode - This is the buffer that we emit code to. The first int
Chris Lattner8a0604b2006-01-28 20:31:24 +00002226 /// indicates whether this is an exit predicate (something that should be
Evan Cheng676d7312006-08-26 00:59:04 +00002227 /// tested, and if true, the match fails) [when 1], or normal code to emit
2228 /// [when 0], or initialization code to emit [when 2].
2229 std::vector<std::pair<unsigned, std::string> > &GeneratedCode;
Evan Cheng21ad3922006-02-07 00:37:41 +00002230 /// GeneratedDecl - This is the set of all SDOperand declarations needed for
2231 /// the set of patterns for each top-level opcode.
Evan Chengf5493192006-08-26 01:02:19 +00002232 std::set<std::string> &GeneratedDecl;
Evan Chengfceb57a2006-07-15 08:45:20 +00002233 /// TargetOpcodes - The target specific opcodes used by the resulting
2234 /// instructions.
2235 std::vector<std::string> &TargetOpcodes;
Evan Chengf8729402006-07-16 06:12:52 +00002236 std::vector<std::string> &TargetVTs;
Chris Lattner8a0604b2006-01-28 20:31:24 +00002237
Evan Chenge4a8a6e2006-02-03 06:22:41 +00002238 std::string ChainName;
Chris Lattner8a0604b2006-01-28 20:31:24 +00002239 unsigned TmpNo;
Evan Chengfceb57a2006-07-15 08:45:20 +00002240 unsigned OpcNo;
Evan Chengf8729402006-07-16 06:12:52 +00002241 unsigned VTNo;
Chris Lattner8a0604b2006-01-28 20:31:24 +00002242
2243 void emitCheck(const std::string &S) {
2244 if (!S.empty())
Evan Cheng676d7312006-08-26 00:59:04 +00002245 GeneratedCode.push_back(std::make_pair(1, S));
Chris Lattner8a0604b2006-01-28 20:31:24 +00002246 }
2247 void emitCode(const std::string &S) {
2248 if (!S.empty())
Evan Cheng676d7312006-08-26 00:59:04 +00002249 GeneratedCode.push_back(std::make_pair(0, S));
2250 }
2251 void emitInit(const std::string &S) {
2252 if (!S.empty())
2253 GeneratedCode.push_back(std::make_pair(2, S));
Chris Lattner8a0604b2006-01-28 20:31:24 +00002254 }
Evan Chengf5493192006-08-26 01:02:19 +00002255 void emitDecl(const std::string &S) {
Evan Cheng21ad3922006-02-07 00:37:41 +00002256 assert(!S.empty() && "Invalid declaration");
Evan Chengf5493192006-08-26 01:02:19 +00002257 GeneratedDecl.insert(S);
Evan Cheng21ad3922006-02-07 00:37:41 +00002258 }
Evan Chengfceb57a2006-07-15 08:45:20 +00002259 void emitOpcode(const std::string &Opc) {
2260 TargetOpcodes.push_back(Opc);
2261 OpcNo++;
2262 }
Evan Chengf8729402006-07-16 06:12:52 +00002263 void emitVT(const std::string &VT) {
2264 TargetVTs.push_back(VT);
2265 VTNo++;
2266 }
Evan Chengb915f312005-12-09 22:45:35 +00002267public:
Evan Cheng58e84a62005-12-14 22:02:59 +00002268 PatternCodeEmitter(DAGISelEmitter &ise, ListInit *preds,
2269 TreePatternNode *pattern, TreePatternNode *instr,
Evan Cheng676d7312006-08-26 00:59:04 +00002270 std::vector<std::pair<unsigned, std::string> > &gc,
Evan Chengf5493192006-08-26 01:02:19 +00002271 std::set<std::string> &gd,
Evan Chengfceb57a2006-07-15 08:45:20 +00002272 std::vector<std::string> &to,
Chris Lattner706d2d32006-08-09 16:44:44 +00002273 std::vector<std::string> &tv)
Chris Lattner8a0604b2006-01-28 20:31:24 +00002274 : ISE(ise), Predicates(preds), Pattern(pattern), Instruction(instr),
Evan Cheng676d7312006-08-26 00:59:04 +00002275 GeneratedCode(gc), GeneratedDecl(gd),
2276 TargetOpcodes(to), TargetVTs(tv),
Chris Lattner706d2d32006-08-09 16:44:44 +00002277 TmpNo(0), OpcNo(0), VTNo(0) {}
Evan Chengb915f312005-12-09 22:45:35 +00002278
2279 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
2280 /// if the match fails. At this point, we already know that the opcode for N
2281 /// matches, and the SDNode for the result has the RootName specified name.
Evan Cheng13e9e9c2006-10-16 06:33:44 +00002282 void EmitMatchCode(TreePatternNode *N, TreePatternNode *P,
2283 const std::string &RootName, const std::string &ChainSuffix,
2284 bool &FoundChain) {
Evan Chenge41bf822006-02-05 06:43:12 +00002285 bool isRoot = (P == NULL);
Evan Cheng58e84a62005-12-14 22:02:59 +00002286 // Emit instruction predicates. Each predicate is just a string for now.
2287 if (isRoot) {
Chris Lattner8a0604b2006-01-28 20:31:24 +00002288 std::string PredicateCheck;
Evan Cheng58e84a62005-12-14 22:02:59 +00002289 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
2290 if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
2291 Record *Def = Pred->getDef();
Chris Lattner8a0604b2006-01-28 20:31:24 +00002292 if (!Def->isSubClassOf("Predicate")) {
Jim Laskey16d42c62006-07-11 18:25:13 +00002293#ifndef NDEBUG
2294 Def->dump();
2295#endif
Evan Cheng58e84a62005-12-14 22:02:59 +00002296 assert(0 && "Unknown predicate type!");
2297 }
Chris Lattner8a0604b2006-01-28 20:31:24 +00002298 if (!PredicateCheck.empty())
Chris Lattnerbc7fa522006-09-19 00:41:36 +00002299 PredicateCheck += " && ";
Chris Lattner67a202b2006-01-28 20:43:52 +00002300 PredicateCheck += "(" + Def->getValueAsString("CondString") + ")";
Evan Cheng58e84a62005-12-14 22:02:59 +00002301 }
2302 }
Chris Lattner8a0604b2006-01-28 20:31:24 +00002303
2304 emitCheck(PredicateCheck);
Evan Cheng58e84a62005-12-14 22:02:59 +00002305 }
2306
Evan Chengb915f312005-12-09 22:45:35 +00002307 if (N->isLeaf()) {
2308 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
Chris Lattner8a0604b2006-01-28 20:31:24 +00002309 emitCheck("cast<ConstantSDNode>(" + RootName +
Chris Lattner67a202b2006-01-28 20:43:52 +00002310 ")->getSignExtended() == " + itostr(II->getValue()));
Evan Chengb915f312005-12-09 22:45:35 +00002311 return;
2312 } else if (!NodeIsComplexPattern(N)) {
2313 assert(0 && "Cannot match this as a leaf value!");
2314 abort();
2315 }
2316 }
2317
Chris Lattner488580c2006-01-28 19:06:51 +00002318 // If this node has a name associated with it, capture it in VariableMap. If
Evan Chengb915f312005-12-09 22:45:35 +00002319 // we already saw this in the pattern, emit code to verify dagness.
2320 if (!N->getName().empty()) {
2321 std::string &VarMapEntry = VariableMap[N->getName()];
2322 if (VarMapEntry.empty()) {
2323 VarMapEntry = RootName;
2324 } else {
2325 // If we get here, this is a second reference to a specific name. Since
2326 // we already have checked that the first reference is valid, we don't
2327 // have to recursively match it, just check that it's the same as the
2328 // previously named thing.
Chris Lattner67a202b2006-01-28 20:43:52 +00002329 emitCheck(VarMapEntry + " == " + RootName);
Evan Chengb915f312005-12-09 22:45:35 +00002330 return;
2331 }
Evan Chengf805c2e2006-01-12 19:35:54 +00002332
2333 if (!N->isLeaf())
2334 OperatorMap[N->getName()] = N->getOperator();
Evan Chengb915f312005-12-09 22:45:35 +00002335 }
2336
2337
2338 // Emit code to load the child nodes and match their contents recursively.
2339 unsigned OpNo = 0;
Evan Cheng94b30402006-10-11 21:02:01 +00002340 bool NodeHasChain = NodeHasProperty (N, SDNPHasChain, ISE);
2341 bool HasChain = PatternHasProperty(N, SDNPHasChain, ISE);
Evan Cheng1feeeec2006-01-26 19:13:45 +00002342 bool EmittedUseCheck = false;
Evan Cheng86217892005-12-12 19:37:43 +00002343 if (HasChain) {
Evan Cheng76356d92006-01-20 01:11:03 +00002344 if (NodeHasChain)
2345 OpNo = 1;
Evan Chengb915f312005-12-09 22:45:35 +00002346 if (!isRoot) {
Chris Lattner8a0604b2006-01-28 20:31:24 +00002347 // Multiple uses of actual result?
Chris Lattner67a202b2006-01-28 20:43:52 +00002348 emitCheck(RootName + ".hasOneUse()");
Evan Cheng1feeeec2006-01-26 19:13:45 +00002349 EmittedUseCheck = true;
Evan Chenge41bf822006-02-05 06:43:12 +00002350 if (NodeHasChain) {
Evan Chenge41bf822006-02-05 06:43:12 +00002351 // If the immediate use can somehow reach this node through another
2352 // path, then can't fold it either or it will create a cycle.
2353 // e.g. In the following diagram, XX can reach ld through YY. If
2354 // ld is folded into XX, then YY is both a predecessor and a successor
2355 // of XX.
2356 //
2357 // [ld]
2358 // ^ ^
2359 // | |
2360 // / \---
2361 // / [YY]
2362 // | ^
2363 // [XX]-------|
Evan Cheng13e9e9c2006-10-16 06:33:44 +00002364 bool NeedCheck = false;
2365 if (P != Pattern)
2366 NeedCheck = true;
2367 else {
2368 const SDNodeInfo &PInfo = ISE.getSDNodeInfo(P->getOperator());
2369 NeedCheck =
2370 P->getOperator() == ISE.get_intrinsic_void_sdnode() ||
2371 P->getOperator() == ISE.get_intrinsic_w_chain_sdnode() ||
2372 P->getOperator() == ISE.get_intrinsic_wo_chain_sdnode() ||
Evan Chengce1381a2006-10-14 08:30:15 +00002373 PInfo.getNumOperands() > 1 ||
Evan Cheng94b30402006-10-11 21:02:01 +00002374 PInfo.hasProperty(SDNPHasChain) ||
2375 PInfo.hasProperty(SDNPInFlag) ||
Evan Cheng13e9e9c2006-10-16 06:33:44 +00002376 PInfo.hasProperty(SDNPOptInFlag);
2377 }
2378
2379 if (NeedCheck) {
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002380 std::string ParentName(RootName.begin(), RootName.end()-1);
Chris Lattner706d2d32006-08-09 16:44:44 +00002381 emitCheck("CanBeFoldedBy(" + RootName + ".Val, " + ParentName +
Evan Chengce1381a2006-10-14 08:30:15 +00002382 ".Val, N.Val)");
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002383 }
Evan Chenge41bf822006-02-05 06:43:12 +00002384 }
Evan Chengb915f312005-12-09 22:45:35 +00002385 }
Evan Chenge41bf822006-02-05 06:43:12 +00002386
Evan Chengc15d18c2006-01-27 22:13:45 +00002387 if (NodeHasChain) {
Evan Cheng4326ef52006-10-12 02:08:53 +00002388 if (FoundChain) {
2389 emitCheck("(" + ChainName + ".Val == " + RootName + ".Val || "
2390 "IsChainCompatible(" + ChainName + ".Val, " +
2391 RootName + ".Val))");
2392 OrigChains.push_back(std::make_pair(ChainName, RootName));
2393 } else
Evan Chenge6389932006-07-21 22:19:51 +00002394 FoundChain = true;
Evan Chenge4a8a6e2006-02-03 06:22:41 +00002395 ChainName = "Chain" + ChainSuffix;
Evan Cheng676d7312006-08-26 00:59:04 +00002396 emitInit("SDOperand " + ChainName + " = " + RootName +
Evan Chenge6389932006-07-21 22:19:51 +00002397 ".getOperand(0);");
Evan Cheng1cf6db22006-01-06 00:41:12 +00002398 }
Evan Chengb915f312005-12-09 22:45:35 +00002399 }
2400
Evan Cheng54597732006-01-26 00:22:25 +00002401 // Don't fold any node which reads or writes a flag and has multiple uses.
Evan Chenge41bf822006-02-05 06:43:12 +00002402 // FIXME: We really need to separate the concepts of flag and "glue". Those
Evan Cheng54597732006-01-26 00:22:25 +00002403 // real flag results, e.g. X86CMP output, can have multiple uses.
Evan Chenge41bf822006-02-05 06:43:12 +00002404 // FIXME: If the optional incoming flag does not exist. Then it is ok to
2405 // fold it.
Evan Cheng1feeeec2006-01-26 19:13:45 +00002406 if (!isRoot &&
Evan Cheng94b30402006-10-11 21:02:01 +00002407 (PatternHasProperty(N, SDNPInFlag, ISE) ||
2408 PatternHasProperty(N, SDNPOptInFlag, ISE) ||
2409 PatternHasProperty(N, SDNPOutFlag, ISE))) {
Evan Cheng1feeeec2006-01-26 19:13:45 +00002410 if (!EmittedUseCheck) {
Chris Lattner8a0604b2006-01-28 20:31:24 +00002411 // Multiple uses of actual result?
Chris Lattner67a202b2006-01-28 20:43:52 +00002412 emitCheck(RootName + ".hasOneUse()");
Evan Cheng54597732006-01-26 00:22:25 +00002413 }
2414 }
2415
Evan Chengd3eea902006-10-09 21:02:17 +00002416 // If there is a node predicate for this, emit the call.
2417 if (!N->getPredicateFn().empty())
2418 emitCheck(N->getPredicateFn() + "(" + RootName + ".Val)");
2419
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002420
Chris Lattner39e73f72006-10-11 04:05:55 +00002421 // If this is an 'and R, 1234' where the operation is AND/OR and the RHS is
2422 // a constant without a predicate fn that has more that one bit set, handle
2423 // this as a special case. This is usually for targets that have special
2424 // handling of certain large constants (e.g. alpha with it's 8/16/32-bit
2425 // handling stuff). Using these instructions is often far more efficient
2426 // than materializing the constant. Unfortunately, both the instcombiner
2427 // and the dag combiner can often infer that bits are dead, and thus drop
2428 // them from the mask in the dag. For example, it might turn 'AND X, 255'
2429 // into 'AND X, 254' if it knows the low bit is set. Emit code that checks
2430 // to handle this.
2431 if (!N->isLeaf() &&
2432 (N->getOperator()->getName() == "and" ||
2433 N->getOperator()->getName() == "or") &&
2434 N->getChild(1)->isLeaf() &&
2435 N->getChild(1)->getPredicateFn().empty()) {
2436 if (IntInit *II = dynamic_cast<IntInit*>(N->getChild(1)->getLeafValue())) {
2437 if (!isPowerOf2_32(II->getValue())) { // Don't bother with single bits.
2438 emitInit("SDOperand " + RootName + "0" + " = " +
2439 RootName + ".getOperand(" + utostr(0) + ");");
2440 emitInit("SDOperand " + RootName + "1" + " = " +
2441 RootName + ".getOperand(" + utostr(1) + ");");
2442
2443 emitCheck("isa<ConstantSDNode>(" + RootName + "1)");
2444 const char *MaskPredicate = N->getOperator()->getName() == "or"
2445 ? "CheckOrMask(" : "CheckAndMask(";
2446 emitCheck(MaskPredicate + RootName + "0, cast<ConstantSDNode>(" +
2447 RootName + "1), " + itostr(II->getValue()) + ")");
2448
Evan Cheng13e9e9c2006-10-16 06:33:44 +00002449 EmitChildMatchCode(N->getChild(0), N, RootName + utostr(0),
Chris Lattner39e73f72006-10-11 04:05:55 +00002450 ChainSuffix + utostr(0), FoundChain);
2451 return;
2452 }
2453 }
2454 }
2455
Evan Chengb915f312005-12-09 22:45:35 +00002456 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
Evan Cheng676d7312006-08-26 00:59:04 +00002457 emitInit("SDOperand " + RootName + utostr(OpNo) + " = " +
Chris Lattner8a0604b2006-01-28 20:31:24 +00002458 RootName + ".getOperand(" +utostr(OpNo) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00002459
Evan Cheng13e9e9c2006-10-16 06:33:44 +00002460 EmitChildMatchCode(N->getChild(i), N, RootName + utostr(OpNo),
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002461 ChainSuffix + utostr(OpNo), FoundChain);
Evan Chengb915f312005-12-09 22:45:35 +00002462 }
2463
Evan Cheng676d7312006-08-26 00:59:04 +00002464 // Handle cases when root is a complex pattern.
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002465 const ComplexPattern *CP;
Evan Cheng676d7312006-08-26 00:59:04 +00002466 if (isRoot && N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
2467 std::string Fn = CP->getSelectFunc();
2468 unsigned NumOps = CP->getNumOperands();
2469 for (unsigned i = 0; i < NumOps; ++i) {
2470 emitDecl("CPTmp" + utostr(i));
2471 emitCode("SDOperand CPTmp" + utostr(i) + ";");
2472 }
Evan Cheng94b30402006-10-11 21:02:01 +00002473 if (CP->hasProperty(SDNPHasChain)) {
2474 emitDecl("CPInChain");
2475 emitDecl("Chain" + ChainSuffix);
2476 emitCode("SDOperand CPInChain;");
2477 emitCode("SDOperand Chain" + ChainSuffix + ";");
2478 }
Evan Cheng676d7312006-08-26 00:59:04 +00002479
Evan Cheng811731e2006-11-08 20:31:10 +00002480 std::string Code = Fn + "(" + RootName + ", " + RootName;
Evan Cheng676d7312006-08-26 00:59:04 +00002481 for (unsigned i = 0; i < NumOps; i++)
2482 Code += ", CPTmp" + utostr(i);
Evan Cheng94b30402006-10-11 21:02:01 +00002483 if (CP->hasProperty(SDNPHasChain)) {
2484 ChainName = "Chain" + ChainSuffix;
2485 Code += ", CPInChain, Chain" + ChainSuffix;
2486 }
Evan Cheng676d7312006-08-26 00:59:04 +00002487 emitCheck(Code + ")");
2488 }
Evan Chengb915f312005-12-09 22:45:35 +00002489 }
Chris Lattner39e73f72006-10-11 04:05:55 +00002490
Evan Cheng13e9e9c2006-10-16 06:33:44 +00002491 void EmitChildMatchCode(TreePatternNode *Child, TreePatternNode *Parent,
2492 const std::string &RootName,
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002493 const std::string &ChainSuffix, bool &FoundChain) {
2494 if (!Child->isLeaf()) {
2495 // If it's not a leaf, recursively match.
2496 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(Child->getOperator());
2497 emitCheck(RootName + ".getOpcode() == " +
2498 CInfo.getEnumName());
Evan Cheng13e9e9c2006-10-16 06:33:44 +00002499 EmitMatchCode(Child, Parent, RootName, ChainSuffix, FoundChain);
Evan Cheng94b30402006-10-11 21:02:01 +00002500 if (NodeHasProperty(Child, SDNPHasChain, ISE))
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002501 FoldedChains.push_back(std::make_pair(RootName, CInfo.getNumResults()));
2502 } else {
2503 // If this child has a name associated with it, capture it in VarMap. If
2504 // we already saw this in the pattern, emit code to verify dagness.
2505 if (!Child->getName().empty()) {
2506 std::string &VarMapEntry = VariableMap[Child->getName()];
2507 if (VarMapEntry.empty()) {
2508 VarMapEntry = RootName;
2509 } else {
2510 // If we get here, this is a second reference to a specific name.
2511 // Since we already have checked that the first reference is valid,
2512 // we don't have to recursively match it, just check that it's the
2513 // same as the previously named thing.
2514 emitCheck(VarMapEntry + " == " + RootName);
2515 Duplicates.insert(RootName);
2516 return;
2517 }
2518 }
2519
2520 // Handle leaves of various types.
2521 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2522 Record *LeafRec = DI->getDef();
Chris Lattner646085d2006-11-14 21:18:40 +00002523 if (LeafRec->isSubClassOf("RegisterClass") ||
2524 LeafRec->getName() == "ptr_rc") {
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002525 // Handle register references. Nothing to do here.
2526 } else if (LeafRec->isSubClassOf("Register")) {
2527 // Handle register references.
2528 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
2529 // Handle complex pattern.
2530 const ComplexPattern *CP = NodeGetComplexPattern(Child, ISE);
2531 std::string Fn = CP->getSelectFunc();
2532 unsigned NumOps = CP->getNumOperands();
2533 for (unsigned i = 0; i < NumOps; ++i) {
2534 emitDecl("CPTmp" + utostr(i));
2535 emitCode("SDOperand CPTmp" + utostr(i) + ";");
2536 }
Evan Cheng94b30402006-10-11 21:02:01 +00002537 if (CP->hasProperty(SDNPHasChain)) {
2538 const SDNodeInfo &PInfo = ISE.getSDNodeInfo(Parent->getOperator());
2539 FoldedChains.push_back(std::make_pair("CPInChain",
2540 PInfo.getNumResults()));
2541 ChainName = "Chain" + ChainSuffix;
2542 emitDecl("CPInChain");
2543 emitDecl(ChainName);
2544 emitCode("SDOperand CPInChain;");
2545 emitCode("SDOperand " + ChainName + ";");
2546 }
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002547
Evan Cheng811731e2006-11-08 20:31:10 +00002548 std::string Code = Fn + "(N, ";
Evan Cheng13e9e9c2006-10-16 06:33:44 +00002549 if (CP->hasProperty(SDNPHasChain)) {
2550 std::string ParentName(RootName.begin(), RootName.end()-1);
Evan Cheng811731e2006-11-08 20:31:10 +00002551 Code += ParentName + ", ";
Evan Cheng13e9e9c2006-10-16 06:33:44 +00002552 }
2553 Code += RootName;
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002554 for (unsigned i = 0; i < NumOps; i++)
2555 Code += ", CPTmp" + utostr(i);
Evan Cheng94b30402006-10-11 21:02:01 +00002556 if (CP->hasProperty(SDNPHasChain))
2557 Code += ", CPInChain, Chain" + ChainSuffix;
Chris Lattnerbe8e7212006-10-11 03:35:34 +00002558 emitCheck(Code + ")");
2559 } else if (LeafRec->getName() == "srcvalue") {
2560 // Place holder for SRCVALUE nodes. Nothing to do here.
2561 } else if (LeafRec->isSubClassOf("ValueType")) {
2562 // Make sure this is the specified value type.
2563 emitCheck("cast<VTSDNode>(" + RootName +
2564 ")->getVT() == MVT::" + LeafRec->getName());
2565 } else if (LeafRec->isSubClassOf("CondCode")) {
2566 // Make sure this is the specified cond code.
2567 emitCheck("cast<CondCodeSDNode>(" + RootName +
2568 ")->get() == ISD::" + LeafRec->getName());
2569 } else {
2570#ifndef NDEBUG
2571 Child->dump();
2572 std::cerr << " ";
2573#endif
2574 assert(0 && "Unknown leaf type!");
2575 }
2576
2577 // If there is a node predicate for this, emit the call.
2578 if (!Child->getPredicateFn().empty())
2579 emitCheck(Child->getPredicateFn() + "(" + RootName +
2580 ".Val)");
2581 } else if (IntInit *II =
2582 dynamic_cast<IntInit*>(Child->getLeafValue())) {
2583 emitCheck("isa<ConstantSDNode>(" + RootName + ")");
2584 unsigned CTmp = TmpNo++;
2585 emitCode("int64_t CN"+utostr(CTmp)+" = cast<ConstantSDNode>("+
2586 RootName + ")->getSignExtended();");
2587
2588 emitCheck("CN" + utostr(CTmp) + " == " +itostr(II->getValue()));
2589 } else {
2590#ifndef NDEBUG
2591 Child->dump();
2592#endif
2593 assert(0 && "Unknown leaf type!");
2594 }
2595 }
2596 }
Evan Chengb915f312005-12-09 22:45:35 +00002597
2598 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
2599 /// we actually have to build a DAG!
Evan Cheng676d7312006-08-26 00:59:04 +00002600 std::vector<std::string>
2601 EmitResultCode(TreePatternNode *N, bool RetSelected,
2602 bool InFlagDecled, bool ResNodeDecled,
2603 bool LikeLeaf = false, bool isRoot = false) {
2604 // List of arguments of getTargetNode() or SelectNodeTo().
2605 std::vector<std::string> NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00002606 // This is something selected from the pattern we matched.
2607 if (!N->getName().empty()) {
Evan Chengb915f312005-12-09 22:45:35 +00002608 std::string &Val = VariableMap[N->getName()];
2609 assert(!Val.empty() &&
2610 "Variable referenced but not defined and not caught earlier!");
2611 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
2612 // Already selected this operand, just return the tmpval.
Evan Cheng676d7312006-08-26 00:59:04 +00002613 NodeOps.push_back(Val);
2614 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00002615 }
2616
2617 const ComplexPattern *CP;
2618 unsigned ResNo = TmpNo++;
Evan Chengb915f312005-12-09 22:45:35 +00002619 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
Nate Begemanb73628b2005-12-30 00:12:56 +00002620 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
Chris Lattner78593132006-01-29 20:01:35 +00002621 std::string CastType;
Nate Begemanb73628b2005-12-30 00:12:56 +00002622 switch (N->getTypeNum(0)) {
Chris Lattner8a0604b2006-01-28 20:31:24 +00002623 default: assert(0 && "Unknown type for constant node!");
Chris Lattner78593132006-01-29 20:01:35 +00002624 case MVT::i1: CastType = "bool"; break;
2625 case MVT::i8: CastType = "unsigned char"; break;
2626 case MVT::i16: CastType = "unsigned short"; break;
2627 case MVT::i32: CastType = "unsigned"; break;
2628 case MVT::i64: CastType = "uint64_t"; break;
Evan Chengb915f312005-12-09 22:45:35 +00002629 }
Evan Cheng676d7312006-08-26 00:59:04 +00002630 emitCode("SDOperand Tmp" + utostr(ResNo) +
Evan Chengfceb57a2006-07-15 08:45:20 +00002631 " = CurDAG->getTargetConstant(((" + CastType +
2632 ") cast<ConstantSDNode>(" + Val + ")->getValue()), " +
2633 getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00002634 NodeOps.push_back("Tmp" + utostr(ResNo));
2635 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2636 // value if used multiple times by this pattern result.
2637 Val = "Tmp"+utostr(ResNo);
Evan Chengbb48e332006-01-12 07:54:57 +00002638 } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
Evan Chengf805c2e2006-01-12 19:35:54 +00002639 Record *Op = OperatorMap[N->getName()];
2640 // Transform ExternalSymbol to TargetExternalSymbol
2641 if (Op && Op->getName() == "externalsym") {
Evan Cheng676d7312006-08-26 00:59:04 +00002642 emitCode("SDOperand Tmp" + utostr(ResNo) + " = CurDAG->getTarget"
Chris Lattner8a0604b2006-01-28 20:31:24 +00002643 "ExternalSymbol(cast<ExternalSymbolSDNode>(" +
Evan Cheng2618d072006-05-17 20:37:59 +00002644 Val + ")->getSymbol(), " +
Chris Lattner8a0604b2006-01-28 20:31:24 +00002645 getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00002646 NodeOps.push_back("Tmp" + utostr(ResNo));
Chris Lattner64906972006-09-21 18:28:27 +00002647 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
2648 // this value if used multiple times by this pattern result.
Evan Cheng676d7312006-08-26 00:59:04 +00002649 Val = "Tmp"+utostr(ResNo);
Chris Lattner8a0604b2006-01-28 20:31:24 +00002650 } else {
Evan Cheng676d7312006-08-26 00:59:04 +00002651 NodeOps.push_back(Val);
Chris Lattner8a0604b2006-01-28 20:31:24 +00002652 }
Evan Chengb915f312005-12-09 22:45:35 +00002653 } else if (!N->isLeaf() && N->getOperator()->getName() == "tglobaladdr") {
Evan Chengf805c2e2006-01-12 19:35:54 +00002654 Record *Op = OperatorMap[N->getName()];
2655 // Transform GlobalAddress to TargetGlobalAddress
2656 if (Op && Op->getName() == "globaladdr") {
Evan Cheng676d7312006-08-26 00:59:04 +00002657 emitCode("SDOperand Tmp" + utostr(ResNo) + " = CurDAG->getTarget"
Chris Lattner8a0604b2006-01-28 20:31:24 +00002658 "GlobalAddress(cast<GlobalAddressSDNode>(" + Val +
Evan Cheng2618d072006-05-17 20:37:59 +00002659 ")->getGlobal(), " + getEnumName(N->getTypeNum(0)) +
Chris Lattner8a0604b2006-01-28 20:31:24 +00002660 ");");
Evan Cheng676d7312006-08-26 00:59:04 +00002661 NodeOps.push_back("Tmp" + utostr(ResNo));
Chris Lattner64906972006-09-21 18:28:27 +00002662 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
2663 // this value if used multiple times by this pattern result.
Evan Cheng676d7312006-08-26 00:59:04 +00002664 Val = "Tmp"+utostr(ResNo);
Chris Lattner8a0604b2006-01-28 20:31:24 +00002665 } else {
Evan Cheng676d7312006-08-26 00:59:04 +00002666 NodeOps.push_back(Val);
Chris Lattner8a0604b2006-01-28 20:31:24 +00002667 }
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002668 } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
Evan Cheng676d7312006-08-26 00:59:04 +00002669 NodeOps.push_back(Val);
2670 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2671 // value if used multiple times by this pattern result.
2672 Val = "Tmp"+utostr(ResNo);
Evan Chengbb48e332006-01-12 07:54:57 +00002673 } else if (!N->isLeaf() && N->getOperator()->getName() == "tconstpool") {
Evan Cheng676d7312006-08-26 00:59:04 +00002674 NodeOps.push_back(Val);
2675 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2676 // value if used multiple times by this pattern result.
2677 Val = "Tmp"+utostr(ResNo);
Evan Chengb915f312005-12-09 22:45:35 +00002678 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
Evan Cheng676d7312006-08-26 00:59:04 +00002679 for (unsigned i = 0; i < CP->getNumOperands(); ++i) {
2680 emitCode("AddToISelQueue(CPTmp" + utostr(i) + ");");
2681 NodeOps.push_back("CPTmp" + utostr(i));
Evan Chengb0793f92006-05-25 00:21:44 +00002682 }
Evan Chengb915f312005-12-09 22:45:35 +00002683 } else {
Evan Cheng676d7312006-08-26 00:59:04 +00002684 // This node, probably wrapped in a SDNodeXForm, behaves like a leaf
Evan Cheng863bf5a2006-03-20 22:53:06 +00002685 // node even if it isn't one. Don't select it.
Evan Cheng676d7312006-08-26 00:59:04 +00002686 if (!LikeLeaf) {
2687 emitCode("AddToISelQueue(" + Val + ");");
Chris Lattner706d2d32006-08-09 16:44:44 +00002688 if (isRoot && N->isLeaf()) {
Evan Cheng676d7312006-08-26 00:59:04 +00002689 emitCode("ReplaceUses(N, " + Val + ");");
Evan Cheng06d64702006-08-11 08:59:35 +00002690 emitCode("return NULL;");
Chris Lattner706d2d32006-08-09 16:44:44 +00002691 }
Evan Cheng83e1a6a2006-03-23 02:35:32 +00002692 }
Evan Cheng676d7312006-08-26 00:59:04 +00002693 NodeOps.push_back(Val);
Evan Chengb915f312005-12-09 22:45:35 +00002694 }
Evan Cheng676d7312006-08-26 00:59:04 +00002695 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00002696 }
Evan Chengb915f312005-12-09 22:45:35 +00002697 if (N->isLeaf()) {
2698 // If this is an explicit register reference, handle it.
2699 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
2700 unsigned ResNo = TmpNo++;
2701 if (DI->getDef()->isSubClassOf("Register")) {
Evan Cheng676d7312006-08-26 00:59:04 +00002702 emitCode("SDOperand Tmp" + utostr(ResNo) + " = CurDAG->getRegister(" +
Evan Cheng2618d072006-05-17 20:37:59 +00002703 ISE.getQualifiedName(DI->getDef()) + ", " +
Chris Lattner8a0604b2006-01-28 20:31:24 +00002704 getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00002705 NodeOps.push_back("Tmp" + utostr(ResNo));
2706 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00002707 }
2708 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
2709 unsigned ResNo = TmpNo++;
Nate Begemanb73628b2005-12-30 00:12:56 +00002710 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
Evan Cheng676d7312006-08-26 00:59:04 +00002711 emitCode("SDOperand Tmp" + utostr(ResNo) +
Chris Lattner8a0604b2006-01-28 20:31:24 +00002712 " = CurDAG->getTargetConstant(" + itostr(II->getValue()) +
Evan Cheng2618d072006-05-17 20:37:59 +00002713 ", " + getEnumName(N->getTypeNum(0)) + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00002714 NodeOps.push_back("Tmp" + utostr(ResNo));
2715 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00002716 }
2717
Jim Laskey16d42c62006-07-11 18:25:13 +00002718#ifndef NDEBUG
2719 N->dump();
2720#endif
Evan Chengb915f312005-12-09 22:45:35 +00002721 assert(0 && "Unknown leaf type!");
Evan Cheng676d7312006-08-26 00:59:04 +00002722 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00002723 }
2724
2725 Record *Op = N->getOperator();
2726 if (Op->isSubClassOf("Instruction")) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00002727 const CodeGenTarget &CGT = ISE.getTargetInfo();
2728 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
Evan Cheng4fba2812005-12-20 07:37:41 +00002729 const DAGInstruction &Inst = ISE.getInstruction(Op);
Evan Cheng045953c2006-05-10 00:05:46 +00002730 TreePattern *InstPat = Inst.getPattern();
2731 TreePatternNode *InstPatNode =
2732 isRoot ? (InstPat ? InstPat->getOnlyTree() : Pattern)
2733 : (InstPat ? InstPat->getOnlyTree() : NULL);
2734 if (InstPatNode && InstPatNode->getOperator()->getName() == "set") {
2735 InstPatNode = InstPatNode->getChild(1);
2736 }
Evan Chenge945f4d2006-06-14 22:22:20 +00002737 bool HasVarOps = isRoot && II.hasVariableNumberOfOperands;
Evan Cheng045953c2006-05-10 00:05:46 +00002738 bool HasImpInputs = isRoot && Inst.getNumImpOperands() > 0;
2739 bool HasImpResults = isRoot && Inst.getNumImpResults() > 0;
2740 bool NodeHasOptInFlag = isRoot &&
Evan Cheng94b30402006-10-11 21:02:01 +00002741 PatternHasProperty(Pattern, SDNPOptInFlag, ISE);
Evan Cheng045953c2006-05-10 00:05:46 +00002742 bool NodeHasInFlag = isRoot &&
Evan Cheng94b30402006-10-11 21:02:01 +00002743 PatternHasProperty(Pattern, SDNPInFlag, ISE);
Evan Cheng045953c2006-05-10 00:05:46 +00002744 bool NodeHasOutFlag = HasImpResults || (isRoot &&
Evan Cheng94b30402006-10-11 21:02:01 +00002745 PatternHasProperty(Pattern, SDNPOutFlag, ISE));
Evan Cheng045953c2006-05-10 00:05:46 +00002746 bool NodeHasChain = InstPatNode &&
Evan Cheng94b30402006-10-11 21:02:01 +00002747 PatternHasProperty(InstPatNode, SDNPHasChain, ISE);
Evan Cheng3eff89b2006-05-10 02:47:57 +00002748 bool InputHasChain = isRoot &&
Evan Cheng94b30402006-10-11 21:02:01 +00002749 NodeHasProperty(Pattern, SDNPHasChain, ISE);
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00002750 unsigned NumResults = Inst.getNumResults();
Evan Cheng4fba2812005-12-20 07:37:41 +00002751
Evan Chengfceb57a2006-07-15 08:45:20 +00002752 if (NodeHasOptInFlag) {
Evan Cheng676d7312006-08-26 00:59:04 +00002753 emitCode("bool HasInFlag = "
Evan Chengf8729402006-07-16 06:12:52 +00002754 "(N.getOperand(N.getNumOperands()-1).getValueType() == MVT::Flag);");
Evan Chengfceb57a2006-07-15 08:45:20 +00002755 }
Evan Chenge945f4d2006-06-14 22:22:20 +00002756 if (HasVarOps)
Evan Chengf037ca62006-08-27 08:11:28 +00002757 emitCode("SmallVector<SDOperand, 8> Ops" + utostr(OpcNo) + ";");
Evan Cheng4fba2812005-12-20 07:37:41 +00002758
Evan Cheng823b7522006-01-19 21:57:10 +00002759 // How many results is this pattern expected to produce?
Evan Chenged66e852006-03-09 08:19:11 +00002760 unsigned PatResults = 0;
Evan Cheng823b7522006-01-19 21:57:10 +00002761 for (unsigned i = 0, e = Pattern->getExtTypes().size(); i != e; i++) {
2762 MVT::ValueType VT = Pattern->getTypeNum(i);
2763 if (VT != MVT::isVoid && VT != MVT::Flag)
Evan Chenged66e852006-03-09 08:19:11 +00002764 PatResults++;
Evan Cheng823b7522006-01-19 21:57:10 +00002765 }
2766
Evan Cheng4326ef52006-10-12 02:08:53 +00002767 if (OrigChains.size() > 0) {
2768 // The original input chain is being ignored. If it is not just
2769 // pointing to the op that's being folded, we should create a
2770 // TokenFactor with it and the chain of the folded op as the new chain.
2771 // We could potentially be doing multiple levels of folding, in that
2772 // case, the TokenFactor can have more operands.
2773 emitCode("SmallVector<SDOperand, 8> InChains;");
2774 for (unsigned i = 0, e = OrigChains.size(); i < e; ++i) {
2775 emitCode("if (" + OrigChains[i].first + ".Val != " +
2776 OrigChains[i].second + ".Val) {");
2777 emitCode(" AddToISelQueue(" + OrigChains[i].first + ");");
2778 emitCode(" InChains.push_back(" + OrigChains[i].first + ");");
2779 emitCode("}");
2780 }
2781 emitCode("AddToISelQueue(" + ChainName + ");");
2782 emitCode("InChains.push_back(" + ChainName + ");");
2783 emitCode(ChainName + " = CurDAG->getNode(ISD::TokenFactor, MVT::Other, "
2784 "&InChains[0], InChains.size());");
2785 }
2786
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00002787 // Loop over all of the operands of the instruction pattern, emitting code
2788 // to fill them all in. The node 'N' usually has number children equal to
2789 // the number of input operands of the instruction. However, in cases
2790 // where there are predicate operands for an instruction, we need to fill
2791 // in the 'execute always' values. Match up the node operands to the
2792 // instruction operands to do this.
Evan Cheng676d7312006-08-26 00:59:04 +00002793 std::vector<std::string> AllOps;
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00002794 for (unsigned ChildNo = 0, InstOpNo = NumResults;
2795 InstOpNo != II.OperandList.size(); ++InstOpNo) {
2796 std::vector<std::string> Ops;
2797
2798 // If this is a normal operand, emit it.
2799 if (!II.OperandList[InstOpNo].Rec->isSubClassOf("PredicateOperand")) {
2800 Ops = EmitResultCode(N->getChild(ChildNo), RetSelected,
2801 InFlagDecled, ResNodeDecled);
2802 AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
2803 ++ChildNo;
2804 } else {
2805 // Otherwise, this is a predicate operand, emit the 'execute always'
2806 // operands.
2807 const DAGPredicateOperand &Pred =
2808 ISE.getPredicateOperand(II.OperandList[InstOpNo].Rec);
2809 for (unsigned i = 0, e = Pred.AlwaysOps.size(); i != e; ++i) {
2810 Ops = EmitResultCode(Pred.AlwaysOps[i], RetSelected,
2811 InFlagDecled, ResNodeDecled);
2812 AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
2813 }
2814 }
Evan Chengb915f312005-12-09 22:45:35 +00002815 }
2816
Evan Chengb915f312005-12-09 22:45:35 +00002817 // Emit all the chain and CopyToReg stuff.
Evan Cheng045953c2006-05-10 00:05:46 +00002818 bool ChainEmitted = NodeHasChain;
2819 if (NodeHasChain)
Evan Cheng676d7312006-08-26 00:59:04 +00002820 emitCode("AddToISelQueue(" + ChainName + ");");
Evan Chengbc6b86a2006-06-14 19:27:50 +00002821 if (NodeHasInFlag || HasImpInputs)
Evan Cheng676d7312006-08-26 00:59:04 +00002822 EmitInFlagSelectCode(Pattern, "N", ChainEmitted,
2823 InFlagDecled, ResNodeDecled, true);
Evan Chengf037ca62006-08-27 08:11:28 +00002824 if (NodeHasOptInFlag || NodeHasInFlag || HasImpInputs) {
Evan Cheng676d7312006-08-26 00:59:04 +00002825 if (!InFlagDecled) {
2826 emitCode("SDOperand InFlag(0, 0);");
2827 InFlagDecled = true;
2828 }
Evan Chengf037ca62006-08-27 08:11:28 +00002829 if (NodeHasOptInFlag) {
2830 emitCode("if (HasInFlag) {");
2831 emitCode(" InFlag = N.getOperand(N.getNumOperands()-1);");
2832 emitCode(" AddToISelQueue(InFlag);");
2833 emitCode("}");
2834 }
Evan Chengbc6b86a2006-06-14 19:27:50 +00002835 }
Evan Chengb915f312005-12-09 22:45:35 +00002836
Evan Chengb915f312005-12-09 22:45:35 +00002837 unsigned ResNo = TmpNo++;
Evan Cheng3eff89b2006-05-10 02:47:57 +00002838 if (!isRoot || InputHasChain || NodeHasChain || NodeHasOutFlag ||
2839 NodeHasOptInFlag) {
Evan Chenge945f4d2006-06-14 22:22:20 +00002840 std::string Code;
2841 std::string Code2;
2842 std::string NodeName;
2843 if (!isRoot) {
2844 NodeName = "Tmp" + utostr(ResNo);
Evan Cheng676d7312006-08-26 00:59:04 +00002845 Code2 = "SDOperand " + NodeName + " = SDOperand(";
Evan Cheng9789aaa2006-01-24 20:46:50 +00002846 } else {
Evan Chenge945f4d2006-06-14 22:22:20 +00002847 NodeName = "ResNode";
Evan Cheng676d7312006-08-26 00:59:04 +00002848 if (!ResNodeDecled)
2849 Code2 = "SDNode *" + NodeName + " = ";
2850 else
2851 Code2 = NodeName + " = ";
Evan Chengbcecf332005-12-17 01:19:28 +00002852 }
Evan Chengf037ca62006-08-27 08:11:28 +00002853
Evan Chengfceb57a2006-07-15 08:45:20 +00002854 Code = "CurDAG->getTargetNode(Opc" + utostr(OpcNo);
Evan Chengf037ca62006-08-27 08:11:28 +00002855 unsigned OpsNo = OpcNo;
Evan Chengfceb57a2006-07-15 08:45:20 +00002856 emitOpcode(II.Namespace + "::" + II.TheDef->getName());
Evan Chenge945f4d2006-06-14 22:22:20 +00002857
2858 // Output order: results, chain, flags
2859 // Result types.
Evan Chengf8729402006-07-16 06:12:52 +00002860 if (NumResults > 0 && N->getTypeNum(0) != MVT::isVoid) {
2861 Code += ", VT" + utostr(VTNo);
2862 emitVT(getEnumName(N->getTypeNum(0)));
2863 }
Evan Chenge945f4d2006-06-14 22:22:20 +00002864 if (NodeHasChain)
2865 Code += ", MVT::Other";
2866 if (NodeHasOutFlag)
2867 Code += ", MVT::Flag";
2868
Chris Lattner7c3a96b2006-11-14 18:41:38 +00002869 // Figure out how many fixed inputs the node has. This is important to
2870 // know which inputs are the variable ones if present.
2871 unsigned NumInputs = AllOps.size();
2872 NumInputs += NodeHasChain;
2873
Evan Chenge945f4d2006-06-14 22:22:20 +00002874 // Inputs.
Evan Chengf037ca62006-08-27 08:11:28 +00002875 if (HasVarOps) {
2876 for (unsigned i = 0, e = AllOps.size(); i != e; ++i)
2877 emitCode("Ops" + utostr(OpsNo) + ".push_back(" + AllOps[i] + ");");
2878 AllOps.clear();
Evan Chenge945f4d2006-06-14 22:22:20 +00002879 }
2880
2881 if (HasVarOps) {
Chris Lattner7c3a96b2006-11-14 18:41:38 +00002882 // Figure out whether any operands at the end of the op list are not
2883 // part of the variable section.
2884 std::string EndAdjust;
Evan Chenge945f4d2006-06-14 22:22:20 +00002885 if (NodeHasInFlag || HasImpInputs)
Chris Lattner7c3a96b2006-11-14 18:41:38 +00002886 EndAdjust = "-1"; // Always has one flag.
2887 else if (NodeHasOptInFlag)
2888 EndAdjust = "-(HasInFlag?1:0)"; // May have a flag.
2889
2890 emitCode("for (unsigned i = " + utostr(NumInputs) +
2891 ", e = N.getNumOperands()" + EndAdjust + "; i != e; ++i) {");
2892
Evan Cheng676d7312006-08-26 00:59:04 +00002893 emitCode(" AddToISelQueue(N.getOperand(i));");
Evan Chengf037ca62006-08-27 08:11:28 +00002894 emitCode(" Ops" + utostr(OpsNo) + ".push_back(N.getOperand(i));");
Evan Chenge945f4d2006-06-14 22:22:20 +00002895 emitCode("}");
2896 }
2897
2898 if (NodeHasChain) {
2899 if (HasVarOps)
Evan Chengf037ca62006-08-27 08:11:28 +00002900 emitCode("Ops" + utostr(OpsNo) + ".push_back(" + ChainName + ");");
Evan Chenge945f4d2006-06-14 22:22:20 +00002901 else
Evan Chengf037ca62006-08-27 08:11:28 +00002902 AllOps.push_back(ChainName);
Evan Chenge945f4d2006-06-14 22:22:20 +00002903 }
2904
Evan Chengf037ca62006-08-27 08:11:28 +00002905 if (HasVarOps) {
2906 if (NodeHasInFlag || HasImpInputs)
2907 emitCode("Ops" + utostr(OpsNo) + ".push_back(InFlag);");
2908 else if (NodeHasOptInFlag) {
2909 emitCode("if (HasInFlag)");
2910 emitCode(" Ops" + utostr(OpsNo) + ".push_back(InFlag);");
2911 }
2912 Code += ", &Ops" + utostr(OpsNo) + "[0], Ops" + utostr(OpsNo) +
2913 ".size()";
2914 } else if (NodeHasInFlag || NodeHasOptInFlag || HasImpInputs)
2915 AllOps.push_back("InFlag");
Evan Chenge945f4d2006-06-14 22:22:20 +00002916
Evan Chengf037ca62006-08-27 08:11:28 +00002917 unsigned NumOps = AllOps.size();
2918 if (NumOps) {
2919 if (!NodeHasOptInFlag && NumOps < 4) {
2920 for (unsigned i = 0; i != NumOps; ++i)
2921 Code += ", " + AllOps[i];
2922 } else {
2923 std::string OpsCode = "SDOperand Ops" + utostr(OpsNo) + "[] = { ";
2924 for (unsigned i = 0; i != NumOps; ++i) {
2925 OpsCode += AllOps[i];
2926 if (i != NumOps-1)
2927 OpsCode += ", ";
2928 }
2929 emitCode(OpsCode + " };");
2930 Code += ", Ops" + utostr(OpsNo) + ", ";
2931 if (NodeHasOptInFlag) {
2932 Code += "HasInFlag ? ";
2933 Code += utostr(NumOps) + " : " + utostr(NumOps-1);
2934 } else
2935 Code += utostr(NumOps);
2936 }
2937 }
2938
Evan Chenge945f4d2006-06-14 22:22:20 +00002939 if (!isRoot)
2940 Code += "), 0";
2941 emitCode(Code2 + Code + ");");
2942
2943 if (NodeHasChain)
2944 // Remember which op produces the chain.
2945 if (!isRoot)
2946 emitCode(ChainName + " = SDOperand(" + NodeName +
2947 ".Val, " + utostr(PatResults) + ");");
2948 else
2949 emitCode(ChainName + " = SDOperand(" + NodeName +
2950 ", " + utostr(PatResults) + ");");
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002951
Evan Cheng676d7312006-08-26 00:59:04 +00002952 if (!isRoot) {
2953 NodeOps.push_back("Tmp" + utostr(ResNo));
2954 return NodeOps;
2955 }
Evan Cheng045953c2006-05-10 00:05:46 +00002956
Evan Cheng06d64702006-08-11 08:59:35 +00002957 bool NeedReplace = false;
Evan Cheng676d7312006-08-26 00:59:04 +00002958 if (NodeHasOutFlag) {
2959 if (!InFlagDecled) {
2960 emitCode("SDOperand InFlag = SDOperand(ResNode, " +
2961 utostr(NumResults + (unsigned)NodeHasChain) + ");");
2962 InFlagDecled = true;
2963 } else
2964 emitCode("InFlag = SDOperand(ResNode, " +
2965 utostr(NumResults + (unsigned)NodeHasChain) + ");");
2966 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002967
Evan Cheng676d7312006-08-26 00:59:04 +00002968 if (HasImpResults && EmitCopyFromRegs(N, ResNodeDecled, ChainEmitted)) {
Chris Lattner706d2d32006-08-09 16:44:44 +00002969 emitCode("ReplaceUses(SDOperand(N.Val, 0), SDOperand(ResNode, 0));");
Evan Chenged66e852006-03-09 08:19:11 +00002970 NumResults = 1;
Evan Cheng97938882005-12-22 02:24:50 +00002971 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002972
Evan Cheng97938882005-12-22 02:24:50 +00002973 if (FoldedChains.size() > 0) {
Chris Lattner8a0604b2006-01-28 20:31:24 +00002974 std::string Code;
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002975 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Chris Lattner706d2d32006-08-09 16:44:44 +00002976 emitCode("ReplaceUses(SDOperand(" +
Evan Cheng67212a02006-02-09 22:12:27 +00002977 FoldedChains[j].first + ".Val, " +
Chris Lattner706d2d32006-08-09 16:44:44 +00002978 utostr(FoldedChains[j].second) + "), SDOperand(ResNode, " +
2979 utostr(NumResults) + "));");
Evan Cheng06d64702006-08-11 08:59:35 +00002980 NeedReplace = true;
Evan Chengb915f312005-12-09 22:45:35 +00002981 }
Evan Chengf9fc25d2005-12-19 22:40:04 +00002982
Evan Cheng06d64702006-08-11 08:59:35 +00002983 if (NodeHasOutFlag) {
Chris Lattner706d2d32006-08-09 16:44:44 +00002984 emitCode("ReplaceUses(SDOperand(N.Val, " +
2985 utostr(PatResults + (unsigned)InputHasChain) +"), InFlag);");
Evan Cheng06d64702006-08-11 08:59:35 +00002986 NeedReplace = true;
2987 }
2988
2989 if (NeedReplace) {
2990 for (unsigned i = 0; i < NumResults; i++)
2991 emitCode("ReplaceUses(SDOperand(N.Val, " +
2992 utostr(i) + "), SDOperand(ResNode, " + utostr(i) + "));");
2993 if (InputHasChain)
2994 emitCode("ReplaceUses(SDOperand(N.Val, " +
Chris Lattner64906972006-09-21 18:28:27 +00002995 utostr(PatResults) + "), SDOperand(" + ChainName + ".Val, "
2996 + ChainName + ".ResNo" + "));");
Evan Chengf037ca62006-08-27 08:11:28 +00002997 } else
Evan Cheng06d64702006-08-11 08:59:35 +00002998 RetSelected = true;
Evan Cheng97938882005-12-22 02:24:50 +00002999
Evan Chenged66e852006-03-09 08:19:11 +00003000 // User does not expect the instruction would produce a chain!
Evan Cheng06d64702006-08-11 08:59:35 +00003001 if ((!InputHasChain && NodeHasChain) && NodeHasOutFlag) {
Evan Cheng9ade2182006-08-26 05:34:46 +00003002 ;
Evan Cheng3eff89b2006-05-10 02:47:57 +00003003 } else if (InputHasChain && !NodeHasChain) {
3004 // One of the inner node produces a chain.
Evan Cheng9ade2182006-08-26 05:34:46 +00003005 if (NodeHasOutFlag)
Evan Cheng06d64702006-08-11 08:59:35 +00003006 emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(PatResults+1) +
3007 "), SDOperand(ResNode, N.ResNo-1));");
Evan Cheng06d64702006-08-11 08:59:35 +00003008 for (unsigned i = 0; i < PatResults; ++i)
3009 emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(i) +
3010 "), SDOperand(ResNode, " + utostr(i) + "));");
3011 emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(PatResults) +
3012 "), " + ChainName + ");");
3013 RetSelected = false;
Evan Cheng4fba2812005-12-20 07:37:41 +00003014 }
Evan Cheng06d64702006-08-11 08:59:35 +00003015
3016 if (RetSelected)
Evan Cheng9ade2182006-08-26 05:34:46 +00003017 emitCode("return ResNode;");
Evan Cheng06d64702006-08-11 08:59:35 +00003018 else
3019 emitCode("return NULL;");
Evan Chengb915f312005-12-09 22:45:35 +00003020 } else {
Evan Cheng9ade2182006-08-26 05:34:46 +00003021 std::string Code = "return CurDAG->SelectNodeTo(N.Val, Opc" +
Evan Chengfceb57a2006-07-15 08:45:20 +00003022 utostr(OpcNo);
Nate Begemanb73628b2005-12-30 00:12:56 +00003023 if (N->getTypeNum(0) != MVT::isVoid)
Evan Chengf8729402006-07-16 06:12:52 +00003024 Code += ", VT" + utostr(VTNo);
Evan Cheng54597732006-01-26 00:22:25 +00003025 if (NodeHasOutFlag)
Chris Lattner8a0604b2006-01-28 20:31:24 +00003026 Code += ", MVT::Flag";
Evan Chengf037ca62006-08-27 08:11:28 +00003027
3028 if (NodeHasInFlag || NodeHasOptInFlag || HasImpInputs)
3029 AllOps.push_back("InFlag");
3030
3031 unsigned NumOps = AllOps.size();
3032 if (NumOps) {
3033 if (!NodeHasOptInFlag && NumOps < 4) {
3034 for (unsigned i = 0; i != NumOps; ++i)
3035 Code += ", " + AllOps[i];
3036 } else {
3037 std::string OpsCode = "SDOperand Ops" + utostr(OpcNo) + "[] = { ";
3038 for (unsigned i = 0; i != NumOps; ++i) {
3039 OpsCode += AllOps[i];
3040 if (i != NumOps-1)
3041 OpsCode += ", ";
3042 }
3043 emitCode(OpsCode + " };");
3044 Code += ", Ops" + utostr(OpcNo) + ", ";
3045 Code += utostr(NumOps);
3046 }
3047 }
Evan Cheng95514ba2006-08-26 08:00:10 +00003048 emitCode(Code + ");");
Evan Cheng676d7312006-08-26 00:59:04 +00003049 emitOpcode(II.Namespace + "::" + II.TheDef->getName());
3050 if (N->getTypeNum(0) != MVT::isVoid)
3051 emitVT(getEnumName(N->getTypeNum(0)));
Evan Chengb915f312005-12-09 22:45:35 +00003052 }
Evan Cheng4fba2812005-12-20 07:37:41 +00003053
Evan Cheng676d7312006-08-26 00:59:04 +00003054 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00003055 } else if (Op->isSubClassOf("SDNodeXForm")) {
3056 assert(N->getNumChildren() == 1 && "node xform should have one child!");
Evan Cheng863bf5a2006-03-20 22:53:06 +00003057 // PatLeaf node - the operand may or may not be a leaf node. But it should
3058 // behave like one.
Evan Cheng676d7312006-08-26 00:59:04 +00003059 std::vector<std::string> Ops =
3060 EmitResultCode(N->getChild(0), RetSelected, InFlagDecled,
3061 ResNodeDecled, true);
Evan Chengb915f312005-12-09 22:45:35 +00003062 unsigned ResNo = TmpNo++;
Evan Cheng676d7312006-08-26 00:59:04 +00003063 emitCode("SDOperand Tmp" + utostr(ResNo) + " = Transform_" + Op->getName()
3064 + "(" + Ops.back() + ".Val);");
3065 NodeOps.push_back("Tmp" + utostr(ResNo));
Evan Cheng9ade2182006-08-26 05:34:46 +00003066 if (isRoot)
3067 emitCode("return Tmp" + utostr(ResNo) + ".Val;");
Evan Cheng676d7312006-08-26 00:59:04 +00003068 return NodeOps;
Evan Chengb915f312005-12-09 22:45:35 +00003069 } else {
3070 N->dump();
Chris Lattner7893f132006-01-11 01:33:49 +00003071 std::cerr << "\n";
3072 throw std::string("Unknown node in result pattern!");
Evan Chengb915f312005-12-09 22:45:35 +00003073 }
3074 }
3075
Chris Lattner488580c2006-01-28 19:06:51 +00003076 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat'
3077 /// and add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
Evan Chengb915f312005-12-09 22:45:35 +00003078 /// 'Pat' may be missing types. If we find an unresolved type to add a check
3079 /// for, this returns true otherwise false if Pat has all types.
3080 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
Chris Lattner706d2d32006-08-09 16:44:44 +00003081 const std::string &Prefix, bool isRoot = false) {
Evan Chengb915f312005-12-09 22:45:35 +00003082 // Did we find one?
Evan Chengd15531b2006-05-19 07:24:32 +00003083 if (Pat->getExtTypes() != Other->getExtTypes()) {
Evan Chengb915f312005-12-09 22:45:35 +00003084 // Move a type over from 'other' to 'pat'.
Nate Begemanb73628b2005-12-30 00:12:56 +00003085 Pat->setTypes(Other->getExtTypes());
Chris Lattner706d2d32006-08-09 16:44:44 +00003086 // The top level node type is checked outside of the select function.
3087 if (!isRoot)
3088 emitCheck(Prefix + ".Val->getValueType(0) == " +
3089 getName(Pat->getTypeNum(0)));
Evan Chengb915f312005-12-09 22:45:35 +00003090 return true;
Evan Chengb915f312005-12-09 22:45:35 +00003091 }
3092
Evan Cheng51fecc82006-01-09 18:27:06 +00003093 unsigned OpNo =
Evan Cheng94b30402006-10-11 21:02:01 +00003094 (unsigned) NodeHasProperty(Pat, SDNPHasChain, ISE);
Evan Chengb915f312005-12-09 22:45:35 +00003095 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
3096 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
3097 Prefix + utostr(OpNo)))
3098 return true;
3099 return false;
3100 }
3101
3102private:
Evan Cheng54597732006-01-26 00:22:25 +00003103 /// EmitInFlagSelectCode - Emit the flag operands for the DAG that is
Evan Chengb915f312005-12-09 22:45:35 +00003104 /// being built.
Evan Cheng54597732006-01-26 00:22:25 +00003105 void EmitInFlagSelectCode(TreePatternNode *N, const std::string &RootName,
Evan Cheng676d7312006-08-26 00:59:04 +00003106 bool &ChainEmitted, bool &InFlagDecled,
3107 bool &ResNodeDecled, bool isRoot = false) {
Evan Chengb915f312005-12-09 22:45:35 +00003108 const CodeGenTarget &T = ISE.getTargetInfo();
Evan Cheng51fecc82006-01-09 18:27:06 +00003109 unsigned OpNo =
Evan Cheng94b30402006-10-11 21:02:01 +00003110 (unsigned) NodeHasProperty(N, SDNPHasChain, ISE);
3111 bool HasInFlag = NodeHasProperty(N, SDNPInFlag, ISE);
Evan Chengb915f312005-12-09 22:45:35 +00003112 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
3113 TreePatternNode *Child = N->getChild(i);
3114 if (!Child->isLeaf()) {
Evan Cheng676d7312006-08-26 00:59:04 +00003115 EmitInFlagSelectCode(Child, RootName + utostr(OpNo), ChainEmitted,
3116 InFlagDecled, ResNodeDecled);
Evan Chengb915f312005-12-09 22:45:35 +00003117 } else {
3118 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
Evan Chengb4ad33c2006-01-19 01:55:45 +00003119 if (!Child->getName().empty()) {
3120 std::string Name = RootName + utostr(OpNo);
3121 if (Duplicates.find(Name) != Duplicates.end())
3122 // A duplicate! Do not emit a copy for this node.
3123 continue;
3124 }
3125
Evan Chengb915f312005-12-09 22:45:35 +00003126 Record *RR = DI->getDef();
3127 if (RR->isSubClassOf("Register")) {
3128 MVT::ValueType RVT = getRegisterValueType(RR, T);
Evan Chengbcecf332005-12-17 01:19:28 +00003129 if (RVT == MVT::Flag) {
Evan Cheng676d7312006-08-26 00:59:04 +00003130 if (!InFlagDecled) {
3131 emitCode("SDOperand InFlag = " + RootName + utostr(OpNo) + ";");
3132 InFlagDecled = true;
3133 } else
3134 emitCode("InFlag = " + RootName + utostr(OpNo) + ";");
3135 emitCode("AddToISelQueue(InFlag);");
Evan Chengb2c6d492006-01-11 22:16:13 +00003136 } else {
3137 if (!ChainEmitted) {
Evan Cheng676d7312006-08-26 00:59:04 +00003138 emitCode("SDOperand Chain = CurDAG->getEntryNode();");
Evan Chenge4a8a6e2006-02-03 06:22:41 +00003139 ChainName = "Chain";
Evan Chengb2c6d492006-01-11 22:16:13 +00003140 ChainEmitted = true;
3141 }
Evan Cheng676d7312006-08-26 00:59:04 +00003142 emitCode("AddToISelQueue(" + RootName + utostr(OpNo) + ");");
3143 if (!InFlagDecled) {
3144 emitCode("SDOperand InFlag(0, 0);");
3145 InFlagDecled = true;
3146 }
3147 std::string Decl = (!ResNodeDecled) ? "SDNode *" : "";
3148 emitCode(Decl + "ResNode = CurDAG->getCopyToReg(" + ChainName +
Evan Cheng7a33db02006-08-26 07:39:28 +00003149 ", " + ISE.getQualifiedName(RR) +
3150 ", " + RootName + utostr(OpNo) + ", InFlag).Val;");
Evan Cheng676d7312006-08-26 00:59:04 +00003151 ResNodeDecled = true;
Evan Cheng67212a02006-02-09 22:12:27 +00003152 emitCode(ChainName + " = SDOperand(ResNode, 0);");
3153 emitCode("InFlag = SDOperand(ResNode, 1);");
Evan Chengb915f312005-12-09 22:45:35 +00003154 }
3155 }
3156 }
3157 }
3158 }
Evan Cheng54597732006-01-26 00:22:25 +00003159
Evan Cheng676d7312006-08-26 00:59:04 +00003160 if (HasInFlag) {
3161 if (!InFlagDecled) {
3162 emitCode("SDOperand InFlag = " + RootName +
3163 ".getOperand(" + utostr(OpNo) + ");");
3164 InFlagDecled = true;
3165 } else
3166 emitCode("InFlag = " + RootName +
3167 ".getOperand(" + utostr(OpNo) + ");");
3168 emitCode("AddToISelQueue(InFlag);");
3169 }
Evan Chengb915f312005-12-09 22:45:35 +00003170 }
Evan Cheng4fba2812005-12-20 07:37:41 +00003171
3172 /// EmitCopyFromRegs - Emit code to copy result to physical registers
Evan Cheng7b05bd52005-12-23 22:11:47 +00003173 /// as specified by the instruction. It returns true if any copy is
3174 /// emitted.
Evan Cheng676d7312006-08-26 00:59:04 +00003175 bool EmitCopyFromRegs(TreePatternNode *N, bool &ResNodeDecled,
3176 bool &ChainEmitted) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00003177 bool RetVal = false;
Evan Cheng4fba2812005-12-20 07:37:41 +00003178 Record *Op = N->getOperator();
3179 if (Op->isSubClassOf("Instruction")) {
3180 const DAGInstruction &Inst = ISE.getInstruction(Op);
3181 const CodeGenTarget &CGT = ISE.getTargetInfo();
Evan Cheng4fba2812005-12-20 07:37:41 +00003182 unsigned NumImpResults = Inst.getNumImpResults();
3183 for (unsigned i = 0; i < NumImpResults; i++) {
3184 Record *RR = Inst.getImpResult(i);
3185 if (RR->isSubClassOf("Register")) {
3186 MVT::ValueType RVT = getRegisterValueType(RR, CGT);
3187 if (RVT != MVT::Flag) {
Evan Chengb2c6d492006-01-11 22:16:13 +00003188 if (!ChainEmitted) {
Evan Cheng676d7312006-08-26 00:59:04 +00003189 emitCode("SDOperand Chain = CurDAG->getEntryNode();");
Evan Chengb2c6d492006-01-11 22:16:13 +00003190 ChainEmitted = true;
Evan Chenge4a8a6e2006-02-03 06:22:41 +00003191 ChainName = "Chain";
Evan Cheng4fba2812005-12-20 07:37:41 +00003192 }
Evan Cheng676d7312006-08-26 00:59:04 +00003193 std::string Decl = (!ResNodeDecled) ? "SDNode *" : "";
3194 emitCode(Decl + "ResNode = CurDAG->getCopyFromReg(" + ChainName +
Evan Chengfceb57a2006-07-15 08:45:20 +00003195 ", " + ISE.getQualifiedName(RR) + ", " + getEnumName(RVT) +
Evan Chengd7805a72006-02-09 07:16:09 +00003196 ", InFlag).Val;");
Evan Cheng676d7312006-08-26 00:59:04 +00003197 ResNodeDecled = true;
Evan Chengd7805a72006-02-09 07:16:09 +00003198 emitCode(ChainName + " = SDOperand(ResNode, 1);");
3199 emitCode("InFlag = SDOperand(ResNode, 2);");
Evan Cheng7b05bd52005-12-23 22:11:47 +00003200 RetVal = true;
Evan Cheng4fba2812005-12-20 07:37:41 +00003201 }
3202 }
3203 }
3204 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00003205 return RetVal;
Evan Cheng4fba2812005-12-20 07:37:41 +00003206 }
Evan Chengb915f312005-12-09 22:45:35 +00003207};
3208
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00003209/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
3210/// stream to match the pattern, and generate the code for the match if it
Chris Lattner355408b2006-01-29 02:43:35 +00003211/// succeeds. Returns true if the pattern is not guaranteed to match.
Chris Lattner8bc74722006-01-29 04:25:26 +00003212void DAGISelEmitter::GenerateCodeForPattern(PatternToMatch &Pattern,
Evan Cheng676d7312006-08-26 00:59:04 +00003213 std::vector<std::pair<unsigned, std::string> > &GeneratedCode,
Evan Chengf5493192006-08-26 01:02:19 +00003214 std::set<std::string> &GeneratedDecl,
Evan Chengfceb57a2006-07-15 08:45:20 +00003215 std::vector<std::string> &TargetOpcodes,
Evan Chengf5493192006-08-26 01:02:19 +00003216 std::vector<std::string> &TargetVTs) {
Evan Cheng58e84a62005-12-14 22:02:59 +00003217 PatternCodeEmitter Emitter(*this, Pattern.getPredicates(),
3218 Pattern.getSrcPattern(), Pattern.getDstPattern(),
Evan Chengf8729402006-07-16 06:12:52 +00003219 GeneratedCode, GeneratedDecl,
Chris Lattner706d2d32006-08-09 16:44:44 +00003220 TargetOpcodes, TargetVTs);
Evan Chengb915f312005-12-09 22:45:35 +00003221
Chris Lattner8fc35682005-09-23 23:16:51 +00003222 // Emit the matcher, capturing named arguments in VariableMap.
Evan Cheng7b05bd52005-12-23 22:11:47 +00003223 bool FoundChain = false;
Evan Cheng13e9e9c2006-10-16 06:33:44 +00003224 Emitter.EmitMatchCode(Pattern.getSrcPattern(), NULL, "N", "", FoundChain);
Evan Chengb915f312005-12-09 22:45:35 +00003225
Chris Lattner0ee7cff2005-10-14 04:11:13 +00003226 // TP - Get *SOME* tree pattern, we don't care which.
3227 TreePattern &TP = *PatternFragments.begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00003228
Chris Lattner0ee7cff2005-10-14 04:11:13 +00003229 // At this point, we know that we structurally match the pattern, but the
3230 // types of the nodes may not match. Figure out the fewest number of type
3231 // comparisons we need to emit. For example, if there is only one integer
3232 // type supported by a target, there should be no type comparisons at all for
3233 // integer patterns!
3234 //
3235 // To figure out the fewest number of type checks needed, clone the pattern,
3236 // remove the types, then perform type inference on the pattern as a whole.
3237 // If there are unresolved types, emit an explicit check for those types,
3238 // apply the type to the tree, then rerun type inference. Iterate until all
3239 // types are resolved.
3240 //
Evan Cheng58e84a62005-12-14 22:02:59 +00003241 TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00003242 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00003243
3244 do {
3245 // Resolve/propagate as many types as possible.
3246 try {
3247 bool MadeChange = true;
3248 while (MadeChange)
Chris Lattner488580c2006-01-28 19:06:51 +00003249 MadeChange = Pat->ApplyTypeConstraints(TP,
3250 true/*Ignore reg constraints*/);
Chris Lattner7e82f132005-10-15 21:34:21 +00003251 } catch (...) {
3252 assert(0 && "Error: could not find consistent types for something we"
3253 " already decided was ok!");
3254 abort();
3255 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00003256
Chris Lattner7e82f132005-10-15 21:34:21 +00003257 // Insert a check for an unresolved type and add it to the tree. If we find
3258 // an unresolved type to add a check for, this returns true and we iterate,
3259 // otherwise we are done.
Chris Lattner706d2d32006-08-09 16:44:44 +00003260 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N", true));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00003261
Evan Cheng676d7312006-08-26 00:59:04 +00003262 Emitter.EmitResultCode(Pattern.getDstPattern(),
3263 false, false, false, false, true);
Chris Lattner0ee7cff2005-10-14 04:11:13 +00003264 delete Pat;
Chris Lattner3f7e9142005-09-23 20:52:47 +00003265}
3266
Chris Lattner24e00a42006-01-29 04:41:05 +00003267/// EraseCodeLine - Erase one code line from all of the patterns. If removing
3268/// a line causes any of them to be empty, remove them and return true when
3269/// done.
3270static bool EraseCodeLine(std::vector<std::pair<PatternToMatch*,
Evan Cheng676d7312006-08-26 00:59:04 +00003271 std::vector<std::pair<unsigned, std::string> > > >
Chris Lattner24e00a42006-01-29 04:41:05 +00003272 &Patterns) {
3273 bool ErasedPatterns = false;
3274 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
3275 Patterns[i].second.pop_back();
3276 if (Patterns[i].second.empty()) {
3277 Patterns.erase(Patterns.begin()+i);
3278 --i; --e;
3279 ErasedPatterns = true;
3280 }
3281 }
3282 return ErasedPatterns;
3283}
3284
Chris Lattner8bc74722006-01-29 04:25:26 +00003285/// EmitPatterns - Emit code for at least one pattern, but try to group common
3286/// code together between the patterns.
3287void DAGISelEmitter::EmitPatterns(std::vector<std::pair<PatternToMatch*,
Evan Cheng676d7312006-08-26 00:59:04 +00003288 std::vector<std::pair<unsigned, std::string> > > >
Chris Lattner8bc74722006-01-29 04:25:26 +00003289 &Patterns, unsigned Indent,
3290 std::ostream &OS) {
Evan Cheng676d7312006-08-26 00:59:04 +00003291 typedef std::pair<unsigned, std::string> CodeLine;
Chris Lattner8bc74722006-01-29 04:25:26 +00003292 typedef std::vector<CodeLine> CodeList;
3293 typedef std::vector<std::pair<PatternToMatch*, CodeList> > PatternList;
3294
3295 if (Patterns.empty()) return;
3296
Chris Lattner24e00a42006-01-29 04:41:05 +00003297 // Figure out how many patterns share the next code line. Explicitly copy
3298 // FirstCodeLine so that we don't invalidate a reference when changing
3299 // Patterns.
3300 const CodeLine FirstCodeLine = Patterns.back().second.back();
Chris Lattner8bc74722006-01-29 04:25:26 +00003301 unsigned LastMatch = Patterns.size()-1;
3302 while (LastMatch != 0 && Patterns[LastMatch-1].second.back() == FirstCodeLine)
3303 --LastMatch;
3304
3305 // If not all patterns share this line, split the list into two pieces. The
3306 // first chunk will use this line, the second chunk won't.
3307 if (LastMatch != 0) {
3308 PatternList Shared(Patterns.begin()+LastMatch, Patterns.end());
3309 PatternList Other(Patterns.begin(), Patterns.begin()+LastMatch);
3310
3311 // FIXME: Emit braces?
3312 if (Shared.size() == 1) {
3313 PatternToMatch &Pattern = *Shared.back().first;
3314 OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
3315 Pattern.getSrcPattern()->print(OS);
3316 OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
3317 Pattern.getDstPattern()->print(OS);
3318 OS << "\n";
Evan Chengc81d2a02006-04-19 20:36:09 +00003319 unsigned AddedComplexity = Pattern.getAddedComplexity();
Chris Lattner8bc74722006-01-29 04:25:26 +00003320 OS << std::string(Indent, ' ') << "// Pattern complexity = "
Evan Chengc81d2a02006-04-19 20:36:09 +00003321 << getPatternSize(Pattern.getSrcPattern(), *this) + AddedComplexity
Evan Cheng59413202006-04-19 18:07:24 +00003322 << " cost = "
Evan Chenge6f32032006-07-19 00:24:41 +00003323 << getResultPatternCost(Pattern.getDstPattern(), *this)
3324 << " size = "
3325 << getResultPatternSize(Pattern.getDstPattern(), *this) << "\n";
Chris Lattner8bc74722006-01-29 04:25:26 +00003326 }
Evan Cheng676d7312006-08-26 00:59:04 +00003327 if (FirstCodeLine.first != 1) {
Chris Lattner8bc74722006-01-29 04:25:26 +00003328 OS << std::string(Indent, ' ') << "{\n";
3329 Indent += 2;
3330 }
3331 EmitPatterns(Shared, Indent, OS);
Evan Cheng676d7312006-08-26 00:59:04 +00003332 if (FirstCodeLine.first != 1) {
Chris Lattner8bc74722006-01-29 04:25:26 +00003333 Indent -= 2;
3334 OS << std::string(Indent, ' ') << "}\n";
3335 }
3336
3337 if (Other.size() == 1) {
3338 PatternToMatch &Pattern = *Other.back().first;
3339 OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
3340 Pattern.getSrcPattern()->print(OS);
3341 OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
3342 Pattern.getDstPattern()->print(OS);
3343 OS << "\n";
Evan Chengc81d2a02006-04-19 20:36:09 +00003344 unsigned AddedComplexity = Pattern.getAddedComplexity();
Chris Lattner8bc74722006-01-29 04:25:26 +00003345 OS << std::string(Indent, ' ') << "// Pattern complexity = "
Evan Chengc81d2a02006-04-19 20:36:09 +00003346 << getPatternSize(Pattern.getSrcPattern(), *this) + AddedComplexity
Evan Cheng59413202006-04-19 18:07:24 +00003347 << " cost = "
Chris Lattner706d2d32006-08-09 16:44:44 +00003348 << getResultPatternCost(Pattern.getDstPattern(), *this)
3349 << " size = "
3350 << getResultPatternSize(Pattern.getDstPattern(), *this) << "\n";
Chris Lattner8bc74722006-01-29 04:25:26 +00003351 }
3352 EmitPatterns(Other, Indent, OS);
3353 return;
3354 }
3355
Chris Lattner24e00a42006-01-29 04:41:05 +00003356 // Remove this code from all of the patterns that share it.
3357 bool ErasedPatterns = EraseCodeLine(Patterns);
3358
Evan Cheng676d7312006-08-26 00:59:04 +00003359 bool isPredicate = FirstCodeLine.first == 1;
Chris Lattner8bc74722006-01-29 04:25:26 +00003360
3361 // Otherwise, every pattern in the list has this line. Emit it.
3362 if (!isPredicate) {
3363 // Normal code.
3364 OS << std::string(Indent, ' ') << FirstCodeLine.second << "\n";
3365 } else {
Chris Lattner24e00a42006-01-29 04:41:05 +00003366 OS << std::string(Indent, ' ') << "if (" << FirstCodeLine.second;
3367
3368 // If the next code line is another predicate, and if all of the pattern
3369 // in this group share the same next line, emit it inline now. Do this
3370 // until we run out of common predicates.
Evan Cheng676d7312006-08-26 00:59:04 +00003371 while (!ErasedPatterns && Patterns.back().second.back().first == 1) {
Chris Lattner24e00a42006-01-29 04:41:05 +00003372 // Check that all of fhe patterns in Patterns end with the same predicate.
3373 bool AllEndWithSamePredicate = true;
3374 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
3375 if (Patterns[i].second.back() != Patterns.back().second.back()) {
3376 AllEndWithSamePredicate = false;
3377 break;
3378 }
3379 // If all of the predicates aren't the same, we can't share them.
3380 if (!AllEndWithSamePredicate) break;
3381
3382 // Otherwise we can. Emit it shared now.
3383 OS << " &&\n" << std::string(Indent+4, ' ')
3384 << Patterns.back().second.back().second;
3385 ErasedPatterns = EraseCodeLine(Patterns);
Chris Lattner8bc74722006-01-29 04:25:26 +00003386 }
Chris Lattner24e00a42006-01-29 04:41:05 +00003387
3388 OS << ") {\n";
3389 Indent += 2;
Chris Lattner8bc74722006-01-29 04:25:26 +00003390 }
3391
3392 EmitPatterns(Patterns, Indent, OS);
3393
3394 if (isPredicate)
3395 OS << std::string(Indent-2, ' ') << "}\n";
3396}
3397
Evan Cheng892aaf82006-11-08 23:01:03 +00003398static std::string getOpcodeName(Record *Op, DAGISelEmitter &ISE) {
3399 const SDNodeInfo &OpcodeInfo = ISE.getSDNodeInfo(Op);
3400 return OpcodeInfo.getEnumName();
3401}
Chris Lattner8bc74722006-01-29 04:25:26 +00003402
Evan Cheng892aaf82006-11-08 23:01:03 +00003403static std::string getLegalCName(std::string OpName) {
3404 std::string::size_type pos = OpName.find("::");
3405 if (pos != std::string::npos)
3406 OpName.replace(pos, 2, "_");
3407 return OpName;
Chris Lattner37481472005-09-26 21:59:35 +00003408}
3409
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003410void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattnerb277cbc2005-10-18 04:41:01 +00003411 std::string InstNS = Target.inst_begin()->second.Namespace;
3412 if (!InstNS.empty()) InstNS += "::";
3413
Chris Lattner602f6922006-01-04 00:25:00 +00003414 // Group the patterns by their top-level opcodes.
Evan Cheng892aaf82006-11-08 23:01:03 +00003415 std::map<std::string, std::vector<PatternToMatch*> > PatternsByOpcode;
Evan Chengfceb57a2006-07-15 08:45:20 +00003416 // All unique target node emission functions.
3417 std::map<std::string, unsigned> EmitFunctions;
Chris Lattner602f6922006-01-04 00:25:00 +00003418 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
3419 TreePatternNode *Node = PatternsToMatch[i].getSrcPattern();
3420 if (!Node->isLeaf()) {
Evan Cheng892aaf82006-11-08 23:01:03 +00003421 PatternsByOpcode[getOpcodeName(Node->getOperator(), *this)].
3422 push_back(&PatternsToMatch[i]);
Chris Lattner602f6922006-01-04 00:25:00 +00003423 } else {
3424 const ComplexPattern *CP;
Chris Lattner9c5d4de2006-11-03 01:11:05 +00003425 if (dynamic_cast<IntInit*>(Node->getLeafValue())) {
Evan Cheng892aaf82006-11-08 23:01:03 +00003426 PatternsByOpcode[getOpcodeName(getSDNodeNamed("imm"), *this)].
3427 push_back(&PatternsToMatch[i]);
Reid Spencer63fd6ad2006-11-02 21:07:40 +00003428 } else if ((CP = NodeGetComplexPattern(Node, *this))) {
Chris Lattner602f6922006-01-04 00:25:00 +00003429 std::vector<Record*> OpNodes = CP->getRootNodes();
3430 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
Evan Cheng892aaf82006-11-08 23:01:03 +00003431 PatternsByOpcode[getOpcodeName(OpNodes[j], *this)]
3432 .insert(PatternsByOpcode[getOpcodeName(OpNodes[j], *this)].begin(),
3433 &PatternsToMatch[i]);
Chris Lattner602f6922006-01-04 00:25:00 +00003434 }
3435 } else {
3436 std::cerr << "Unrecognized opcode '";
3437 Node->dump();
3438 std::cerr << "' on tree pattern '";
Chris Lattner488580c2006-01-28 19:06:51 +00003439 std::cerr <<
3440 PatternsToMatch[i].getDstPattern()->getOperator()->getName();
Chris Lattner602f6922006-01-04 00:25:00 +00003441 std::cerr << "'!\n";
3442 exit(1);
3443 }
3444 }
3445 }
Chris Lattner706d2d32006-08-09 16:44:44 +00003446
3447 // For each opcode, there might be multiple select functions, one per
3448 // ValueType of the node (or its first operand if it doesn't produce a
3449 // non-chain result.
3450 std::map<std::string, std::vector<std::string> > OpcodeVTMap;
3451
Chris Lattner602f6922006-01-04 00:25:00 +00003452 // Emit one Select_* method for each top-level opcode. We do this instead of
3453 // emitting one giant switch statement to support compilers where this will
3454 // result in the recursive functions taking less stack space.
Evan Cheng892aaf82006-11-08 23:01:03 +00003455 for (std::map<std::string, std::vector<PatternToMatch*> >::iterator
3456 PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
3457 PBOI != E; ++PBOI) {
3458 const std::string &OpName = PBOI->first;
Chris Lattner706d2d32006-08-09 16:44:44 +00003459 std::vector<PatternToMatch*> &PatternsOfOp = PBOI->second;
3460 assert(!PatternsOfOp.empty() && "No patterns but map has entry?");
3461
Chris Lattner602f6922006-01-04 00:25:00 +00003462 // We want to emit all of the matching code now. However, we want to emit
3463 // the matches in order of minimal cost. Sort the patterns so the least
3464 // cost one is at the start.
Chris Lattner706d2d32006-08-09 16:44:44 +00003465 std::stable_sort(PatternsOfOp.begin(), PatternsOfOp.end(),
Chris Lattner602f6922006-01-04 00:25:00 +00003466 PatternSortingPredicate(*this));
Evan Cheng21ad3922006-02-07 00:37:41 +00003467
Chris Lattner706d2d32006-08-09 16:44:44 +00003468 // Split them into groups by type.
3469 std::map<MVT::ValueType, std::vector<PatternToMatch*> > PatternsByType;
3470 for (unsigned i = 0, e = PatternsOfOp.size(); i != e; ++i) {
3471 PatternToMatch *Pat = PatternsOfOp[i];
3472 TreePatternNode *SrcPat = Pat->getSrcPattern();
Chris Lattner706d2d32006-08-09 16:44:44 +00003473 MVT::ValueType VT = SrcPat->getTypeNum(0);
3474 std::map<MVT::ValueType, std::vector<PatternToMatch*> >::iterator TI =
3475 PatternsByType.find(VT);
3476 if (TI != PatternsByType.end())
3477 TI->second.push_back(Pat);
3478 else {
3479 std::vector<PatternToMatch*> PVec;
3480 PVec.push_back(Pat);
3481 PatternsByType.insert(std::make_pair(VT, PVec));
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003482 }
Chris Lattner706d2d32006-08-09 16:44:44 +00003483 }
3484
3485 for (std::map<MVT::ValueType, std::vector<PatternToMatch*> >::iterator
3486 II = PatternsByType.begin(), EE = PatternsByType.end(); II != EE;
3487 ++II) {
3488 MVT::ValueType OpVT = II->first;
3489 std::vector<PatternToMatch*> &Patterns = II->second;
Chris Lattner64906972006-09-21 18:28:27 +00003490 typedef std::vector<std::pair<unsigned,std::string> > CodeList;
3491 typedef std::vector<std::pair<unsigned,std::string> >::iterator CodeListI;
Chris Lattner706d2d32006-08-09 16:44:44 +00003492
3493 std::vector<std::pair<PatternToMatch*, CodeList> > CodeForPatterns;
3494 std::vector<std::vector<std::string> > PatternOpcodes;
3495 std::vector<std::vector<std::string> > PatternVTs;
Evan Chengf5493192006-08-26 01:02:19 +00003496 std::vector<std::set<std::string> > PatternDecls;
Chris Lattner706d2d32006-08-09 16:44:44 +00003497 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
3498 CodeList GeneratedCode;
Evan Chengf5493192006-08-26 01:02:19 +00003499 std::set<std::string> GeneratedDecl;
Chris Lattner706d2d32006-08-09 16:44:44 +00003500 std::vector<std::string> TargetOpcodes;
3501 std::vector<std::string> TargetVTs;
3502 GenerateCodeForPattern(*Patterns[i], GeneratedCode, GeneratedDecl,
3503 TargetOpcodes, TargetVTs);
Chris Lattner706d2d32006-08-09 16:44:44 +00003504 CodeForPatterns.push_back(std::make_pair(Patterns[i], GeneratedCode));
3505 PatternDecls.push_back(GeneratedDecl);
3506 PatternOpcodes.push_back(TargetOpcodes);
3507 PatternVTs.push_back(TargetVTs);
3508 }
3509
3510 // Scan the code to see if all of the patterns are reachable and if it is
3511 // possible that the last one might not match.
3512 bool mightNotMatch = true;
3513 for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
3514 CodeList &GeneratedCode = CodeForPatterns[i].second;
3515 mightNotMatch = false;
3516
3517 for (unsigned j = 0, e = GeneratedCode.size(); j != e; ++j) {
Evan Cheng676d7312006-08-26 00:59:04 +00003518 if (GeneratedCode[j].first == 1) { // predicate.
Chris Lattner706d2d32006-08-09 16:44:44 +00003519 mightNotMatch = true;
3520 break;
3521 }
3522 }
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003523
Chris Lattner706d2d32006-08-09 16:44:44 +00003524 // If this pattern definitely matches, and if it isn't the last one, the
3525 // patterns after it CANNOT ever match. Error out.
3526 if (mightNotMatch == false && i != CodeForPatterns.size()-1) {
3527 std::cerr << "Pattern '";
Evan Cheng676d7312006-08-26 00:59:04 +00003528 CodeForPatterns[i].first->getSrcPattern()->print(std::cerr);
Chris Lattner706d2d32006-08-09 16:44:44 +00003529 std::cerr << "' is impossible to select!\n";
3530 exit(1);
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003531 }
3532 }
3533
Chris Lattner706d2d32006-08-09 16:44:44 +00003534 // Factor target node emission code (emitted by EmitResultCode) into
3535 // separate functions. Uniquing and share them among all instruction
3536 // selection routines.
3537 for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
3538 CodeList &GeneratedCode = CodeForPatterns[i].second;
3539 std::vector<std::string> &TargetOpcodes = PatternOpcodes[i];
3540 std::vector<std::string> &TargetVTs = PatternVTs[i];
Evan Chengf5493192006-08-26 01:02:19 +00003541 std::set<std::string> Decls = PatternDecls[i];
Evan Cheng676d7312006-08-26 00:59:04 +00003542 std::vector<std::string> AddedInits;
Chris Lattner706d2d32006-08-09 16:44:44 +00003543 int CodeSize = (int)GeneratedCode.size();
3544 int LastPred = -1;
3545 for (int j = CodeSize-1; j >= 0; --j) {
Evan Cheng676d7312006-08-26 00:59:04 +00003546 if (LastPred == -1 && GeneratedCode[j].first == 1)
Chris Lattner706d2d32006-08-09 16:44:44 +00003547 LastPred = j;
Evan Cheng676d7312006-08-26 00:59:04 +00003548 else if (LastPred != -1 && GeneratedCode[j].first == 2)
3549 AddedInits.push_back(GeneratedCode[j].second);
Chris Lattner706d2d32006-08-09 16:44:44 +00003550 }
3551
Evan Cheng9ade2182006-08-26 05:34:46 +00003552 std::string CalleeCode = "(const SDOperand &N";
3553 std::string CallerCode = "(N";
Chris Lattner706d2d32006-08-09 16:44:44 +00003554 for (unsigned j = 0, e = TargetOpcodes.size(); j != e; ++j) {
3555 CalleeCode += ", unsigned Opc" + utostr(j);
3556 CallerCode += ", " + TargetOpcodes[j];
3557 }
3558 for (unsigned j = 0, e = TargetVTs.size(); j != e; ++j) {
3559 CalleeCode += ", MVT::ValueType VT" + utostr(j);
3560 CallerCode += ", " + TargetVTs[j];
3561 }
Evan Chengf5493192006-08-26 01:02:19 +00003562 for (std::set<std::string>::iterator
Chris Lattner706d2d32006-08-09 16:44:44 +00003563 I = Decls.begin(), E = Decls.end(); I != E; ++I) {
Evan Chengf5493192006-08-26 01:02:19 +00003564 std::string Name = *I;
Evan Cheng676d7312006-08-26 00:59:04 +00003565 CalleeCode += ", SDOperand &" + Name;
3566 CallerCode += ", " + Name;
Chris Lattner706d2d32006-08-09 16:44:44 +00003567 }
3568 CallerCode += ");";
3569 CalleeCode += ") ";
3570 // Prevent emission routines from being inlined to reduce selection
3571 // routines stack frame sizes.
Chris Lattner8dc728e2006-08-27 13:16:24 +00003572 CalleeCode += "DISABLE_INLINE ";
Evan Cheng676d7312006-08-26 00:59:04 +00003573 CalleeCode += "{\n";
3574
3575 for (std::vector<std::string>::const_reverse_iterator
3576 I = AddedInits.rbegin(), E = AddedInits.rend(); I != E; ++I)
3577 CalleeCode += " " + *I + "\n";
3578
Evan Chengf5493192006-08-26 01:02:19 +00003579 for (int j = LastPred+1; j < CodeSize; ++j)
3580 CalleeCode += " " + GeneratedCode[j].second + "\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003581 for (int j = LastPred+1; j < CodeSize; ++j)
3582 GeneratedCode.pop_back();
3583 CalleeCode += "}\n";
3584
3585 // Uniquing the emission routines.
3586 unsigned EmitFuncNum;
3587 std::map<std::string, unsigned>::iterator EFI =
3588 EmitFunctions.find(CalleeCode);
3589 if (EFI != EmitFunctions.end()) {
3590 EmitFuncNum = EFI->second;
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003591 } else {
Chris Lattner706d2d32006-08-09 16:44:44 +00003592 EmitFuncNum = EmitFunctions.size();
3593 EmitFunctions.insert(std::make_pair(CalleeCode, EmitFuncNum));
Evan Cheng06d64702006-08-11 08:59:35 +00003594 OS << "SDNode *Emit_" << utostr(EmitFuncNum) << CalleeCode;
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003595 }
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003596
Chris Lattner706d2d32006-08-09 16:44:44 +00003597 // Replace the emission code within selection routines with calls to the
3598 // emission functions.
Evan Cheng06d64702006-08-11 08:59:35 +00003599 CallerCode = "return Emit_" + utostr(EmitFuncNum) + CallerCode;
Chris Lattner706d2d32006-08-09 16:44:44 +00003600 GeneratedCode.push_back(std::make_pair(false, CallerCode));
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003601 }
3602
Chris Lattner706d2d32006-08-09 16:44:44 +00003603 // Print function.
Chris Lattnerab51ddd2006-11-14 21:32:01 +00003604 std::string OpVTStr;
3605 if (OpVT == MVT::iPTR)
3606 OpVTStr = "iPTR";
3607 else
3608 OpVTStr = getEnumName(OpVT).substr(5); // Skip 'MVT::'
Chris Lattner706d2d32006-08-09 16:44:44 +00003609 std::map<std::string, std::vector<std::string> >::iterator OpVTI =
3610 OpcodeVTMap.find(OpName);
3611 if (OpVTI == OpcodeVTMap.end()) {
3612 std::vector<std::string> VTSet;
3613 VTSet.push_back(OpVTStr);
3614 OpcodeVTMap.insert(std::make_pair(OpName, VTSet));
3615 } else
3616 OpVTI->second.push_back(OpVTStr);
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003617
Evan Cheng892aaf82006-11-08 23:01:03 +00003618 OS << "SDNode *Select_" << getLegalCName(OpName)
Chris Lattnerab51ddd2006-11-14 21:32:01 +00003619 << "_" << OpVTStr << "(const SDOperand &N) {\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003620
Chris Lattner706d2d32006-08-09 16:44:44 +00003621 // Loop through and reverse all of the CodeList vectors, as we will be
3622 // accessing them from their logical front, but accessing the end of a
3623 // vector is more efficient.
3624 for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
3625 CodeList &GeneratedCode = CodeForPatterns[i].second;
3626 std::reverse(GeneratedCode.begin(), GeneratedCode.end());
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003627 }
Chris Lattner706d2d32006-08-09 16:44:44 +00003628
3629 // Next, reverse the list of patterns itself for the same reason.
3630 std::reverse(CodeForPatterns.begin(), CodeForPatterns.end());
3631
3632 // Emit all of the patterns now, grouped together to share code.
3633 EmitPatterns(CodeForPatterns, 2, OS);
3634
Chris Lattner64906972006-09-21 18:28:27 +00003635 // If the last pattern has predicates (which could fail) emit code to
3636 // catch the case where nothing handles a pattern.
Chris Lattner706d2d32006-08-09 16:44:44 +00003637 if (mightNotMatch) {
3638 OS << " std::cerr << \"Cannot yet select: \";\n";
Evan Cheng892aaf82006-11-08 23:01:03 +00003639 if (OpName != "ISD::INTRINSIC_W_CHAIN" &&
3640 OpName != "ISD::INTRINSIC_WO_CHAIN" &&
3641 OpName != "ISD::INTRINSIC_VOID") {
Chris Lattner706d2d32006-08-09 16:44:44 +00003642 OS << " N.Val->dump(CurDAG);\n";
3643 } else {
3644 OS << " unsigned iid = cast<ConstantSDNode>(N.getOperand("
3645 "N.getOperand(0).getValueType() == MVT::Other))->getValue();\n"
3646 << " std::cerr << \"intrinsic %\"<< "
3647 "Intrinsic::getName((Intrinsic::ID)iid);\n";
3648 }
3649 OS << " std::cerr << '\\n';\n"
Evan Cheng06d64702006-08-11 08:59:35 +00003650 << " abort();\n"
3651 << " return NULL;\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003652 }
3653 OS << "}\n\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003654 }
Chris Lattner602f6922006-01-04 00:25:00 +00003655 }
3656
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003657 // Emit boilerplate.
Evan Cheng9ade2182006-08-26 05:34:46 +00003658 OS << "SDNode *Select_INLINEASM(SDOperand N) {\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00003659 << " std::vector<SDOperand> Ops(N.Val->op_begin(), N.Val->op_end());\n"
Evan Cheng0db427b2006-11-01 00:27:59 +00003660 << " AddToISelQueue(N.getOperand(0)); // Select the chain.\n\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00003661 << " // Select the flag operand.\n"
3662 << " if (Ops.back().getValueType() == MVT::Flag)\n"
Evan Cheng676d7312006-08-26 00:59:04 +00003663 << " AddToISelQueue(Ops.back());\n"
Chris Lattnerfd105d42006-02-24 02:13:31 +00003664 << " SelectInlineAsmMemoryOperands(Ops, *CurDAG);\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00003665 << " std::vector<MVT::ValueType> VTs;\n"
3666 << " VTs.push_back(MVT::Other);\n"
3667 << " VTs.push_back(MVT::Flag);\n"
Chris Lattner706d2d32006-08-09 16:44:44 +00003668 << " SDOperand New = CurDAG->getNode(ISD::INLINEASM, VTs, &Ops[0], "
3669 "Ops.size());\n"
Evan Cheng9ade2182006-08-26 05:34:46 +00003670 << " return New.Val;\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00003671 << "}\n\n";
3672
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003673 OS << "// The main instruction selector code.\n"
Evan Cheng9ade2182006-08-26 05:34:46 +00003674 << "SDNode *SelectCode(SDOperand N) {\n"
Chris Lattner547394c2005-09-23 21:53:45 +00003675 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00003676 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
Evan Cheng34167212006-02-09 00:37:58 +00003677 << "INSTRUCTION_LIST_END)) {\n"
Evan Cheng06d64702006-08-11 08:59:35 +00003678 << " return NULL; // Already selected.\n"
Evan Cheng34167212006-02-09 00:37:58 +00003679 << " }\n\n"
Evan Cheng892aaf82006-11-08 23:01:03 +00003680 << " MVT::ValueType NVT = N.Val->getValueType(0);\n"
Chris Lattner547394c2005-09-23 21:53:45 +00003681 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003682 << " default: break;\n"
3683 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner5216c692005-12-18 21:05:44 +00003684 << " case ISD::BasicBlock:\n"
Chris Lattner8020a522006-01-11 19:52:27 +00003685 << " case ISD::Register:\n"
Evan Cheng0a83ed52006-02-05 08:46:14 +00003686 << " case ISD::HANDLENODE:\n"
Evan Cheng2216d8a2006-02-05 05:22:18 +00003687 << " case ISD::TargetConstant:\n"
3688 << " case ISD::TargetConstantPool:\n"
3689 << " case ISD::TargetFrameIndex:\n"
Nate Begeman37efe672006-04-22 18:53:45 +00003690 << " case ISD::TargetJumpTable:\n"
Evan Cheng34167212006-02-09 00:37:58 +00003691 << " case ISD::TargetGlobalAddress: {\n"
Evan Cheng06d64702006-08-11 08:59:35 +00003692 << " return NULL;\n"
Evan Cheng34167212006-02-09 00:37:58 +00003693 << " }\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003694 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00003695 << " case ISD::AssertZext: {\n"
Evan Cheng676d7312006-08-26 00:59:04 +00003696 << " AddToISelQueue(N.getOperand(0));\n"
3697 << " ReplaceUses(N, N.getOperand(0));\n"
Evan Cheng06d64702006-08-11 08:59:35 +00003698 << " return NULL;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00003699 << " }\n"
3700 << " case ISD::TokenFactor:\n"
Chris Lattner706d2d32006-08-09 16:44:44 +00003701 << " case ISD::CopyFromReg:\n"
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003702 << " case ISD::CopyToReg: {\n"
Evan Cheng676d7312006-08-26 00:59:04 +00003703 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
3704 << " AddToISelQueue(N.getOperand(i));\n"
Evan Cheng06d64702006-08-11 08:59:35 +00003705 << " return NULL;\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00003706 << " }\n"
Evan Cheng9ade2182006-08-26 05:34:46 +00003707 << " case ISD::INLINEASM: return Select_INLINEASM(N);\n";
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00003708
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003709
Chris Lattner602f6922006-01-04 00:25:00 +00003710 // Loop over all of the case statements, emiting a call to each method we
3711 // emitted above.
Evan Cheng892aaf82006-11-08 23:01:03 +00003712 for (std::map<std::string, std::vector<PatternToMatch*> >::iterator
3713 PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
3714 PBOI != E; ++PBOI) {
3715 const std::string &OpName = PBOI->first;
Chris Lattner706d2d32006-08-09 16:44:44 +00003716 // Potentially multiple versions of select for this opcode. One for each
3717 // ValueType of the node (or its first true operand if it doesn't produce a
3718 // result.
3719 std::map<std::string, std::vector<std::string> >::iterator OpVTI =
3720 OpcodeVTMap.find(OpName);
3721 std::vector<std::string> &OpVTs = OpVTI->second;
Evan Cheng892aaf82006-11-08 23:01:03 +00003722 OS << " case " << OpName << ": {\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003723 if (OpVTs.size() == 1) {
3724 std::string &VTStr = OpVTs[0];
Evan Cheng892aaf82006-11-08 23:01:03 +00003725 OS << " return Select_" << getLegalCName(OpName)
Evan Cheng9ade2182006-08-26 05:34:46 +00003726 << (VTStr != "" ? "_" : "") << VTStr << "(N);\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003727 } else {
Evan Cheng06d64702006-08-11 08:59:35 +00003728 int Default = -1;
3729 OS << " switch (NVT) {\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003730 for (unsigned i = 0, e = OpVTs.size(); i < e; ++i) {
3731 std::string &VTStr = OpVTs[i];
3732 if (VTStr == "") {
Evan Cheng06d64702006-08-11 08:59:35 +00003733 Default = i;
Chris Lattner706d2d32006-08-09 16:44:44 +00003734 continue;
3735 }
Evan Cheng06d64702006-08-11 08:59:35 +00003736 OS << " case MVT::" << VTStr << ":\n"
Evan Cheng892aaf82006-11-08 23:01:03 +00003737 << " return Select_" << getLegalCName(OpName)
Evan Cheng9ade2182006-08-26 05:34:46 +00003738 << "_" << VTStr << "(N);\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003739 }
Evan Cheng06d64702006-08-11 08:59:35 +00003740 OS << " default:\n";
3741 if (Default != -1)
Evan Cheng892aaf82006-11-08 23:01:03 +00003742 OS << " return Select_" << getLegalCName(OpName) << "(N);\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003743 else
Evan Cheng06d64702006-08-11 08:59:35 +00003744 OS << " break;\n";
3745 OS << " }\n";
3746 OS << " break;\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003747 }
Chris Lattner706d2d32006-08-09 16:44:44 +00003748 OS << " }\n";
Chris Lattner81303322005-09-23 19:36:15 +00003749 }
Chris Lattner81303322005-09-23 19:36:15 +00003750
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003751 OS << " } // end of big switch.\n\n"
3752 << " std::cerr << \"Cannot yet select: \";\n"
Chris Lattnerb026e702006-03-28 00:41:33 +00003753 << " if (N.getOpcode() != ISD::INTRINSIC_W_CHAIN &&\n"
3754 << " N.getOpcode() != ISD::INTRINSIC_WO_CHAIN &&\n"
3755 << " N.getOpcode() != ISD::INTRINSIC_VOID) {\n"
Chris Lattner9bf2d3e2006-03-25 06:47:53 +00003756 << " N.Val->dump(CurDAG);\n"
3757 << " } else {\n"
3758 << " unsigned iid = cast<ConstantSDNode>(N.getOperand("
3759 "N.getOperand(0).getValueType() == MVT::Other))->getValue();\n"
3760 << " std::cerr << \"intrinsic %\"<< "
3761 "Intrinsic::getName((Intrinsic::ID)iid);\n"
3762 << " }\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003763 << " std::cerr << '\\n';\n"
3764 << " abort();\n"
Evan Cheng06d64702006-08-11 08:59:35 +00003765 << " return NULL;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003766 << "}\n";
3767}
3768
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003769void DAGISelEmitter::run(std::ostream &OS) {
3770 EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
3771 " target", OS);
3772
Chris Lattner1f39e292005-09-14 00:09:24 +00003773 OS << "// *** NOTE: This file is #included into the middle of the target\n"
3774 << "// *** instruction selector class. These functions are really "
3775 << "methods.\n\n";
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00003776
Chris Lattner8dc728e2006-08-27 13:16:24 +00003777 OS << "#include \"llvm/Support/Compiler.h\"\n";
Evan Cheng233baf12006-07-26 23:06:27 +00003778
Chris Lattner706d2d32006-08-09 16:44:44 +00003779 OS << "// Instruction selector priority queue:\n"
3780 << "std::vector<SDNode*> ISelQueue;\n";
3781 OS << "/// Keep track of nodes which have already been added to queue.\n"
3782 << "unsigned char *ISelQueued;\n";
3783 OS << "/// Keep track of nodes which have already been selected.\n"
3784 << "unsigned char *ISelSelected;\n";
3785 OS << "/// Dummy parameter to ReplaceAllUsesOfValueWith().\n"
3786 << "std::vector<SDNode*> ISelKilled;\n\n";
Evan Chenge41bf822006-02-05 06:43:12 +00003787
Evan Cheng4326ef52006-10-12 02:08:53 +00003788 OS << "/// IsChainCompatible - Returns true if Chain is Op or Chain does\n";
3789 OS << "/// not reach Op.\n";
3790 OS << "static bool IsChainCompatible(SDNode *Chain, SDNode *Op) {\n";
3791 OS << " if (Chain->getOpcode() == ISD::EntryToken)\n";
3792 OS << " return true;\n";
3793 OS << " else if (Chain->getOpcode() == ISD::TokenFactor)\n";
3794 OS << " return false;\n";
3795 OS << " else if (Chain->getNumOperands() > 0) {\n";
3796 OS << " SDOperand C0 = Chain->getOperand(0);\n";
3797 OS << " if (C0.getValueType() == MVT::Other)\n";
3798 OS << " return C0.Val != Op && IsChainCompatible(C0.Val, Op);\n";
3799 OS << " }\n";
3800 OS << " return true;\n";
3801 OS << "}\n";
3802
Chris Lattner706d2d32006-08-09 16:44:44 +00003803 OS << "/// Sorting functions for the selection queue.\n"
3804 << "struct isel_sort : public std::binary_function"
3805 << "<SDNode*, SDNode*, bool> {\n"
3806 << " bool operator()(const SDNode* left, const SDNode* right) "
3807 << "const {\n"
3808 << " return (left->getNodeId() > right->getNodeId());\n"
3809 << " }\n"
3810 << "};\n\n";
Evan Chenge41bf822006-02-05 06:43:12 +00003811
Chris Lattner706d2d32006-08-09 16:44:44 +00003812 OS << "inline void setQueued(int Id) {\n";
3813 OS << " ISelQueued[Id / 8] |= 1 << (Id % 8);\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003814 OS << "}\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003815 OS << "inline bool isQueued(int Id) {\n";
3816 OS << " return ISelQueued[Id / 8] & (1 << (Id % 8));\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003817 OS << "}\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003818 OS << "inline void setSelected(int Id) {\n";
3819 OS << " ISelSelected[Id / 8] |= 1 << (Id % 8);\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003820 OS << "}\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003821 OS << "inline bool isSelected(int Id) {\n";
3822 OS << " return ISelSelected[Id / 8] & (1 << (Id % 8));\n";
3823 OS << "}\n\n";
Evan Cheng9bdca032006-08-07 22:17:58 +00003824
Chris Lattner8dc728e2006-08-27 13:16:24 +00003825 OS << "void AddToISelQueue(SDOperand N) DISABLE_INLINE {\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003826 OS << " int Id = N.Val->getNodeId();\n";
3827 OS << " if (Id != -1 && !isQueued(Id)) {\n";
3828 OS << " ISelQueue.push_back(N.Val);\n";
3829 OS << " std::push_heap(ISelQueue.begin(), ISelQueue.end(), isel_sort());\n";
3830 OS << " setQueued(Id);\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003831 OS << " }\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003832 OS << "}\n\n";
Tanya Lattner8d4ccf02006-08-09 16:41:21 +00003833
Chris Lattner706d2d32006-08-09 16:44:44 +00003834 OS << "inline void RemoveKilled() {\n";
3835OS << " unsigned NumKilled = ISelKilled.size();\n";
3836 OS << " if (NumKilled) {\n";
3837 OS << " for (unsigned i = 0; i != NumKilled; ++i) {\n";
3838 OS << " SDNode *Temp = ISelKilled[i];\n";
Evan Cheng4f776162006-10-12 23:18:52 +00003839 OS << " ISelQueue.erase(std::remove(ISelQueue.begin(), ISelQueue.end(), "
3840 << "Temp), ISelQueue.end());\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003841 OS << " };\n";
3842 OS << " std::make_heap(ISelQueue.begin(), ISelQueue.end(), isel_sort());\n";
3843 OS << " ISelKilled.clear();\n";
3844 OS << " }\n";
3845 OS << "}\n\n";
3846
Chris Lattner8dc728e2006-08-27 13:16:24 +00003847 OS << "void ReplaceUses(SDOperand F, SDOperand T) DISABLE_INLINE {\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003848 OS << " CurDAG->ReplaceAllUsesOfValueWith(F, T, ISelKilled);\n";
3849 OS << " setSelected(F.Val->getNodeId());\n";
3850 OS << " RemoveKilled();\n";
Evan Cheng06d64702006-08-11 08:59:35 +00003851 OS << "}\n";
3852 OS << "inline void ReplaceUses(SDNode *F, SDNode *T) {\n";
3853 OS << " CurDAG->ReplaceAllUsesWith(F, T, &ISelKilled);\n";
3854 OS << " setSelected(F->getNodeId());\n";
3855 OS << " RemoveKilled();\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003856 OS << "}\n\n";
3857
Evan Chenge41bf822006-02-05 06:43:12 +00003858 OS << "// SelectRoot - Top level entry to DAG isel.\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003859 OS << "SDOperand SelectRoot(SDOperand Root) {\n";
3860 OS << " SelectRootInit();\n";
3861 OS << " unsigned NumBytes = (DAGSize + 7) / 8;\n";
3862 OS << " ISelQueued = new unsigned char[NumBytes];\n";
3863 OS << " ISelSelected = new unsigned char[NumBytes];\n";
3864 OS << " memset(ISelQueued, 0, NumBytes);\n";
3865 OS << " memset(ISelSelected, 0, NumBytes);\n";
3866 OS << "\n";
Chris Lattnerdfb86072006-08-15 23:42:26 +00003867 OS << " // Create a dummy node (which is not added to allnodes), that adds\n"
3868 << " // a reference to the root node, preventing it from being deleted,\n"
3869 << " // and tracking any changes of the root.\n"
3870 << " HandleSDNode Dummy(CurDAG->getRoot());\n"
3871 << " ISelQueue.push_back(CurDAG->getRoot().Val);\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003872 OS << " while (!ISelQueue.empty()) {\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003873 OS << " SDNode *Node = ISelQueue.front();\n";
3874 OS << " std::pop_heap(ISelQueue.begin(), ISelQueue.end(), isel_sort());\n";
3875 OS << " ISelQueue.pop_back();\n";
Evan Cheng06d64702006-08-11 08:59:35 +00003876 OS << " if (!isSelected(Node->getNodeId())) {\n";
Evan Cheng9ade2182006-08-26 05:34:46 +00003877 OS << " SDNode *ResNode = Select(SDOperand(Node, 0));\n";
Evan Cheng966fd372006-09-11 02:24:43 +00003878 OS << " if (ResNode != Node) {\n";
3879 OS << " if (ResNode)\n";
3880 OS << " ReplaceUses(Node, ResNode);\n";
Evan Cheng1fae00f2006-10-12 20:35:19 +00003881 OS << " if (Node->use_empty()) { // Don't delete EntryToken, etc.\n";
3882 OS << " CurDAG->RemoveDeadNode(Node, ISelKilled);\n";
3883 OS << " RemoveKilled();\n";
3884 OS << " }\n";
Evan Cheng966fd372006-09-11 02:24:43 +00003885 OS << " }\n";
Evan Cheng06d64702006-08-11 08:59:35 +00003886 OS << " }\n";
Chris Lattner706d2d32006-08-09 16:44:44 +00003887 OS << " }\n";
3888 OS << "\n";
3889 OS << " delete[] ISelQueued;\n";
3890 OS << " ISelQueued = NULL;\n";
3891 OS << " delete[] ISelSelected;\n";
3892 OS << " ISelSelected = NULL;\n";
Chris Lattnerdfb86072006-08-15 23:42:26 +00003893 OS << " return Dummy.getValue();\n";
Evan Chenge41bf822006-02-05 06:43:12 +00003894 OS << "}\n";
Chris Lattner296dfe32005-09-24 00:50:51 +00003895
Chris Lattner550525e2006-03-24 21:48:51 +00003896 Intrinsics = LoadIntrinsics(Records);
Chris Lattnerca559d02005-09-08 21:03:01 +00003897 ParseNodeInfo();
Chris Lattner24eeeb82005-09-13 21:51:00 +00003898 ParseNodeTransforms(OS);
Evan Cheng0fc71982005-12-08 02:00:36 +00003899 ParseComplexPatterns();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00003900 ParsePatternFragments(OS);
Chris Lattnerefe9f4a2006-11-04 05:12:02 +00003901 ParsePredicateOperands();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00003902 ParseInstructions();
3903 ParsePatterns();
Chris Lattner3f7e9142005-09-23 20:52:47 +00003904
Chris Lattnere97603f2005-09-28 19:27:25 +00003905 // Generate variants. For example, commutative patterns can match
Chris Lattner3f7e9142005-09-23 20:52:47 +00003906 // multiple ways. Add them to PatternsToMatch as well.
Chris Lattnere97603f2005-09-28 19:27:25 +00003907 GenerateVariants();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00003908
Chris Lattnere46e17b2005-09-29 19:28:10 +00003909
3910 DEBUG(std::cerr << "\n\nALL PATTERNS TO MATCH:\n\n";
3911 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00003912 std::cerr << "PATTERN: "; PatternsToMatch[i].getSrcPattern()->dump();
3913 std::cerr << "\nRESULT: ";PatternsToMatch[i].getDstPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00003914 std::cerr << "\n";
3915 });
3916
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00003917 // At this point, we have full information about the 'Patterns' we need to
3918 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00003919 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003920 EmitInstructionSelector(OS);
3921
3922 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
3923 E = PatternFragments.end(); I != E; ++I)
3924 delete I->second;
3925 PatternFragments.clear();
3926
Chris Lattner54cb8fd2005-09-07 23:44:43 +00003927 Instructions.clear();
3928}