blob: 97f7c15525382664307c6bcf623993f94bf3fa99 [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"
Jeff Cohena48283b2005-09-25 19:04:43 +000018#include <algorithm>
Chris Lattner54cb8fd2005-09-07 23:44:43 +000019#include <set>
20using namespace llvm;
21
Chris Lattnerca559d02005-09-08 21:03:01 +000022//===----------------------------------------------------------------------===//
Chris Lattner3c7e18d2005-10-14 06:12:03 +000023// Helpers for working with extended types.
24
25/// FilterVTs - Filter a list of VT's according to a predicate.
26///
27template<typename T>
28static std::vector<MVT::ValueType>
29FilterVTs(const std::vector<MVT::ValueType> &InVTs, T Filter) {
30 std::vector<MVT::ValueType> Result;
31 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
32 if (Filter(InVTs[i]))
33 Result.push_back(InVTs[i]);
34 return Result;
35}
36
Nate Begemanb73628b2005-12-30 00:12:56 +000037template<typename T>
38static std::vector<unsigned char>
39FilterEVTs(const std::vector<unsigned char> &InVTs, T Filter) {
40 std::vector<unsigned char> Result;
41 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
42 if (Filter((MVT::ValueType)InVTs[i]))
43 Result.push_back(InVTs[i]);
44 return Result;
Chris Lattner3c7e18d2005-10-14 06:12:03 +000045}
46
Nate Begemanb73628b2005-12-30 00:12:56 +000047static std::vector<unsigned char>
48ConvertVTs(const std::vector<MVT::ValueType> &InVTs) {
49 std::vector<unsigned char> Result;
50 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
51 Result.push_back(InVTs[i]);
52 return Result;
53}
54
55static bool LHSIsSubsetOfRHS(const std::vector<unsigned char> &LHS,
56 const std::vector<unsigned char> &RHS) {
57 if (LHS.size() > RHS.size()) return false;
58 for (unsigned i = 0, e = LHS.size(); i != e; ++i)
Duraid Madinad47ae092005-12-30 16:41:48 +000059 if (std::find(RHS.begin(), RHS.end(), LHS[i]) == RHS.end())
Nate Begemanb73628b2005-12-30 00:12:56 +000060 return false;
61 return true;
62}
63
64/// isExtIntegerVT - Return true if the specified extended value type vector
65/// contains isInt or an integer value type.
66static bool isExtIntegerInVTs(std::vector<unsigned char> EVTs) {
67 assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");
68 return EVTs[0] == MVT::isInt || !(FilterEVTs(EVTs, MVT::isInteger).empty());
69}
70
71/// isExtFloatingPointVT - Return true if the specified extended value type
72/// vector contains isFP or a FP value type.
73static bool isExtFloatingPointInVTs(std::vector<unsigned char> EVTs) {
74 assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");
75 return EVTs[0] == MVT::isFP || !(FilterEVTs(EVTs, MVT::isFloatingPoint).empty());
Chris Lattner3c7e18d2005-10-14 06:12:03 +000076}
77
78//===----------------------------------------------------------------------===//
Chris Lattner33c92e92005-09-08 21:27:15 +000079// SDTypeConstraint implementation
80//
81
82SDTypeConstraint::SDTypeConstraint(Record *R) {
83 OperandNo = R->getValueAsInt("OperandNum");
84
85 if (R->isSubClassOf("SDTCisVT")) {
86 ConstraintType = SDTCisVT;
87 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
Chris Lattner5b21be72005-12-09 22:57:42 +000088 } else if (R->isSubClassOf("SDTCisPtrTy")) {
89 ConstraintType = SDTCisPtrTy;
Chris Lattner33c92e92005-09-08 21:27:15 +000090 } else if (R->isSubClassOf("SDTCisInt")) {
91 ConstraintType = SDTCisInt;
92 } else if (R->isSubClassOf("SDTCisFP")) {
93 ConstraintType = SDTCisFP;
94 } else if (R->isSubClassOf("SDTCisSameAs")) {
95 ConstraintType = SDTCisSameAs;
96 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
97 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
98 ConstraintType = SDTCisVTSmallerThanOp;
99 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum =
100 R->getValueAsInt("OtherOperandNum");
Chris Lattner03ebd802005-10-14 04:53:53 +0000101 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
102 ConstraintType = SDTCisOpSmallerThanOp;
103 x.SDTCisOpSmallerThanOp_Info.BigOperandNum =
104 R->getValueAsInt("BigOperandNum");
Chris Lattner33c92e92005-09-08 21:27:15 +0000105 } else {
106 std::cerr << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n";
107 exit(1);
108 }
109}
110
Chris Lattner32707602005-09-08 23:22:48 +0000111/// getOperandNum - Return the node corresponding to operand #OpNo in tree
112/// N, which has NumResults results.
113TreePatternNode *SDTypeConstraint::getOperandNum(unsigned OpNo,
114 TreePatternNode *N,
115 unsigned NumResults) const {
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000116 assert(NumResults <= 1 &&
117 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +0000118
119 if (OpNo < NumResults)
120 return N; // FIXME: need value #
121 else
122 return N->getChild(OpNo-NumResults);
123}
124
125/// ApplyTypeConstraint - Given a node in a pattern, apply this type
126/// constraint to the nodes operands. This returns true if it makes a
127/// change, false otherwise. If a type contradiction is found, throw an
128/// exception.
129bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
130 const SDNodeInfo &NodeInfo,
131 TreePattern &TP) const {
132 unsigned NumResults = NodeInfo.getNumResults();
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000133 assert(NumResults <= 1 &&
134 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +0000135
136 // Check that the number of operands is sane.
137 if (NodeInfo.getNumOperands() >= 0) {
138 if (N->getNumChildren() != (unsigned)NodeInfo.getNumOperands())
139 TP.error(N->getOperator()->getName() + " node requires exactly " +
140 itostr(NodeInfo.getNumOperands()) + " operands!");
141 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000142
143 const CodeGenTarget &CGT = TP.getDAGISelEmitter().getTargetInfo();
Chris Lattner32707602005-09-08 23:22:48 +0000144
145 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NumResults);
146
147 switch (ConstraintType) {
148 default: assert(0 && "Unknown constraint type!");
149 case SDTCisVT:
150 // Operand must be a particular type.
151 return NodeToApply->UpdateNodeType(x.SDTCisVT_Info.VT, TP);
Chris Lattner5b21be72005-12-09 22:57:42 +0000152 case SDTCisPtrTy: {
153 // Operand must be same as target pointer type.
154 return NodeToApply->UpdateNodeType(CGT.getPointerType(), TP);
155 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000156 case SDTCisInt: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000157 // If there is only one integer type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000158 std::vector<MVT::ValueType> IntVTs =
159 FilterVTs(CGT.getLegalValueTypes(), MVT::isInteger);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000160
161 // If we found exactly one supported integer type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000162 if (IntVTs.size() == 1)
163 return NodeToApply->UpdateNodeType(IntVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000164 return NodeToApply->UpdateNodeType(MVT::isInt, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000165 }
166 case SDTCisFP: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000167 // If there is only one FP type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000168 std::vector<MVT::ValueType> FPVTs =
169 FilterVTs(CGT.getLegalValueTypes(), MVT::isFloatingPoint);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000170
171 // If we found exactly one supported FP type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000172 if (FPVTs.size() == 1)
173 return NodeToApply->UpdateNodeType(FPVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000174 return NodeToApply->UpdateNodeType(MVT::isFP, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000175 }
Chris Lattner32707602005-09-08 23:22:48 +0000176 case SDTCisSameAs: {
177 TreePatternNode *OtherNode =
178 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NumResults);
Nate Begemanb73628b2005-12-30 00:12:56 +0000179 return NodeToApply->UpdateNodeType(OtherNode->getExtTypes(), TP) |
180 OtherNode->UpdateNodeType(NodeToApply->getExtTypes(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000181 }
182 case SDTCisVTSmallerThanOp: {
183 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must
184 // have an integer type that is smaller than the VT.
185 if (!NodeToApply->isLeaf() ||
186 !dynamic_cast<DefInit*>(NodeToApply->getLeafValue()) ||
187 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
188 ->isSubClassOf("ValueType"))
189 TP.error(N->getOperator()->getName() + " expects a VT operand!");
190 MVT::ValueType VT =
191 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
192 if (!MVT::isInteger(VT))
193 TP.error(N->getOperator()->getName() + " VT operand must be integer!");
194
195 TreePatternNode *OtherNode =
196 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N,NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000197
198 // It must be integer.
199 bool MadeChange = false;
200 MadeChange |= OtherNode->UpdateNodeType(MVT::isInt, TP);
201
Nate Begemanb73628b2005-12-30 00:12:56 +0000202 // This code only handles nodes that have one type set. Assert here so
203 // that we can change this if we ever need to deal with multiple value
204 // types at this point.
205 assert(OtherNode->getExtTypes().size() == 1 && "Node has too many types!");
206 if (OtherNode->hasTypeSet() && OtherNode->getTypeNum(0) <= VT)
Chris Lattner32707602005-09-08 23:22:48 +0000207 OtherNode->UpdateNodeType(MVT::Other, TP); // Throw an error.
208 return false;
209 }
Chris Lattner03ebd802005-10-14 04:53:53 +0000210 case SDTCisOpSmallerThanOp: {
Chris Lattner603d78c2005-10-14 06:25:00 +0000211 TreePatternNode *BigOperand =
212 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NumResults);
213
214 // Both operands must be integer or FP, but we don't care which.
215 bool MadeChange = false;
216
Nate Begemanb73628b2005-12-30 00:12:56 +0000217 // This code does not currently handle nodes which have multiple types,
218 // where some types are integer, and some are fp. Assert that this is not
219 // the case.
220 assert(!(isExtIntegerInVTs(NodeToApply->getExtTypes()) &&
221 isExtFloatingPointInVTs(NodeToApply->getExtTypes())) &&
222 !(isExtIntegerInVTs(BigOperand->getExtTypes()) &&
223 isExtFloatingPointInVTs(BigOperand->getExtTypes())) &&
224 "SDTCisOpSmallerThanOp does not handle mixed int/fp types!");
225 if (isExtIntegerInVTs(NodeToApply->getExtTypes()))
Chris Lattner603d78c2005-10-14 06:25:00 +0000226 MadeChange |= BigOperand->UpdateNodeType(MVT::isInt, TP);
Nate Begemanb73628b2005-12-30 00:12:56 +0000227 else if (isExtFloatingPointInVTs(NodeToApply->getExtTypes()))
Chris Lattner603d78c2005-10-14 06:25:00 +0000228 MadeChange |= BigOperand->UpdateNodeType(MVT::isFP, TP);
Nate Begemanb73628b2005-12-30 00:12:56 +0000229 if (isExtIntegerInVTs(BigOperand->getExtTypes()))
Chris Lattner603d78c2005-10-14 06:25:00 +0000230 MadeChange |= NodeToApply->UpdateNodeType(MVT::isInt, TP);
Nate Begemanb73628b2005-12-30 00:12:56 +0000231 else if (isExtFloatingPointInVTs(BigOperand->getExtTypes()))
Chris Lattner603d78c2005-10-14 06:25:00 +0000232 MadeChange |= NodeToApply->UpdateNodeType(MVT::isFP, TP);
233
234 std::vector<MVT::ValueType> VTs = CGT.getLegalValueTypes();
235
Nate Begemanb73628b2005-12-30 00:12:56 +0000236 if (isExtIntegerInVTs(NodeToApply->getExtTypes())) {
Chris Lattner603d78c2005-10-14 06:25:00 +0000237 VTs = FilterVTs(VTs, MVT::isInteger);
Nate Begemanb73628b2005-12-30 00:12:56 +0000238 } else if (isExtFloatingPointInVTs(NodeToApply->getExtTypes())) {
Chris Lattner603d78c2005-10-14 06:25:00 +0000239 VTs = FilterVTs(VTs, MVT::isFloatingPoint);
240 } else {
241 VTs.clear();
242 }
243
244 switch (VTs.size()) {
245 default: // Too many VT's to pick from.
246 case 0: break; // No info yet.
247 case 1:
248 // Only one VT of this flavor. Cannot ever satisify the constraints.
249 return NodeToApply->UpdateNodeType(MVT::Other, TP); // throw
250 case 2:
251 // If we have exactly two possible types, the little operand must be the
252 // small one, the big operand should be the big one. Common with
253 // float/double for example.
254 assert(VTs[0] < VTs[1] && "Should be sorted!");
255 MadeChange |= NodeToApply->UpdateNodeType(VTs[0], TP);
256 MadeChange |= BigOperand->UpdateNodeType(VTs[1], TP);
257 break;
258 }
259 return MadeChange;
Chris Lattner03ebd802005-10-14 04:53:53 +0000260 }
Chris Lattner32707602005-09-08 23:22:48 +0000261 }
262 return false;
263}
264
265
Chris Lattner33c92e92005-09-08 21:27:15 +0000266//===----------------------------------------------------------------------===//
Chris Lattnerca559d02005-09-08 21:03:01 +0000267// SDNodeInfo implementation
268//
269SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
270 EnumName = R->getValueAsString("Opcode");
271 SDClassName = R->getValueAsString("SDClass");
Chris Lattner33c92e92005-09-08 21:27:15 +0000272 Record *TypeProfile = R->getValueAsDef("TypeProfile");
273 NumResults = TypeProfile->getValueAsInt("NumResults");
274 NumOperands = TypeProfile->getValueAsInt("NumOperands");
275
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000276 // Parse the properties.
277 Properties = 0;
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000278 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
Chris Lattner6bc0d742005-10-28 22:43:25 +0000279 for (unsigned i = 0, e = PropList.size(); i != e; ++i) {
280 if (PropList[i]->getName() == "SDNPCommutative") {
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000281 Properties |= 1 << SDNPCommutative;
Chris Lattner6bc0d742005-10-28 22:43:25 +0000282 } else if (PropList[i]->getName() == "SDNPAssociative") {
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000283 Properties |= 1 << SDNPAssociative;
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000284 } else if (PropList[i]->getName() == "SDNPHasChain") {
285 Properties |= 1 << SDNPHasChain;
Evan Cheng51fecc82006-01-09 18:27:06 +0000286 } else if (PropList[i]->getName() == "SDNPOutFlag") {
287 Properties |= 1 << SDNPOutFlag;
288 } else if (PropList[i]->getName() == "SDNPInFlag") {
289 Properties |= 1 << SDNPInFlag;
290 } else if (PropList[i]->getName() == "SDNPOptInFlag") {
291 Properties |= 1 << SDNPOptInFlag;
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000292 } else {
Chris Lattner6bc0d742005-10-28 22:43:25 +0000293 std::cerr << "Unknown SD Node property '" << PropList[i]->getName()
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000294 << "' on node '" << R->getName() << "'!\n";
295 exit(1);
296 }
297 }
298
299
Chris Lattner33c92e92005-09-08 21:27:15 +0000300 // Parse the type constraints.
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000301 std::vector<Record*> ConstraintList =
302 TypeProfile->getValueAsListOfDefs("Constraints");
303 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
Chris Lattnerca559d02005-09-08 21:03:01 +0000304}
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000305
306//===----------------------------------------------------------------------===//
307// TreePatternNode implementation
308//
309
310TreePatternNode::~TreePatternNode() {
311#if 0 // FIXME: implement refcounted tree nodes!
312 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
313 delete getChild(i);
314#endif
315}
316
Chris Lattner32707602005-09-08 23:22:48 +0000317/// UpdateNodeType - Set the node type of N to VT if VT contains
318/// information. If N already contains a conflicting type, then throw an
319/// exception. This returns true if any information was updated.
320///
Nate Begemanb73628b2005-12-30 00:12:56 +0000321bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
322 TreePattern &TP) {
323 assert(!ExtVTs.empty() && "Cannot update node type with empty type vector!");
324
325 if (ExtVTs[0] == MVT::isUnknown || LHSIsSubsetOfRHS(getExtTypes(), ExtVTs))
326 return false;
327 if (isTypeCompletelyUnknown() || LHSIsSubsetOfRHS(ExtVTs, getExtTypes())) {
328 setTypes(ExtVTs);
Chris Lattner32707602005-09-08 23:22:48 +0000329 return true;
330 }
331
Nate Begemanb73628b2005-12-30 00:12:56 +0000332 if (ExtVTs[0] == MVT::isInt && isExtIntegerInVTs(getExtTypes())) {
333 assert(hasTypeSet() && "should be handled above!");
334 std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), MVT::isInteger);
335 if (getExtTypes() == FVTs)
336 return false;
337 setTypes(FVTs);
338 return true;
339 }
340 if (ExtVTs[0] == MVT::isFP && isExtFloatingPointInVTs(getExtTypes())) {
341 assert(hasTypeSet() && "should be handled above!");
342 std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), MVT::isFloatingPoint);
343 if (getExtTypes() == FVTs)
344 return false;
345 setTypes(FVTs);
346 return true;
347 }
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000348
349 // If we know this is an int or fp type, and we are told it is a specific one,
350 // take the advice.
Nate Begemanb73628b2005-12-30 00:12:56 +0000351 //
352 // Similarly, we should probably set the type here to the intersection of
353 // {isInt|isFP} and ExtVTs
354 if ((getExtTypeNum(0) == MVT::isInt && isExtIntegerInVTs(ExtVTs)) ||
355 (getExtTypeNum(0) == MVT::isFP && isExtFloatingPointInVTs(ExtVTs))) {
356 setTypes(ExtVTs);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000357 return true;
358 }
359
Chris Lattner1531f202005-10-26 16:59:37 +0000360 if (isLeaf()) {
361 dump();
Evan Chengbcecf332005-12-17 01:19:28 +0000362 std::cerr << " ";
Chris Lattner1531f202005-10-26 16:59:37 +0000363 TP.error("Type inference contradiction found in node!");
364 } else {
365 TP.error("Type inference contradiction found in node " +
366 getOperator()->getName() + "!");
367 }
Chris Lattner32707602005-09-08 23:22:48 +0000368 return true; // unreachable
369}
370
371
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000372void TreePatternNode::print(std::ostream &OS) const {
373 if (isLeaf()) {
374 OS << *getLeafValue();
375 } else {
376 OS << "(" << getOperator()->getName();
377 }
378
Nate Begemanb73628b2005-12-30 00:12:56 +0000379 // FIXME: At some point we should handle printing all the value types for
380 // nodes that are multiply typed.
381 switch (getExtTypeNum(0)) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000382 case MVT::Other: OS << ":Other"; break;
383 case MVT::isInt: OS << ":isInt"; break;
384 case MVT::isFP : OS << ":isFP"; break;
385 case MVT::isUnknown: ; /*OS << ":?";*/ break;
Nate Begemanb73628b2005-12-30 00:12:56 +0000386 default: OS << ":" << getTypeNum(0); break;
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000387 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000388
389 if (!isLeaf()) {
390 if (getNumChildren() != 0) {
391 OS << " ";
392 getChild(0)->print(OS);
393 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
394 OS << ", ";
395 getChild(i)->print(OS);
396 }
397 }
398 OS << ")";
399 }
400
401 if (!PredicateFn.empty())
Chris Lattner24eeeb82005-09-13 21:51:00 +0000402 OS << "<<P:" << PredicateFn << ">>";
Chris Lattnerb0276202005-09-14 22:55:26 +0000403 if (TransformFn)
404 OS << "<<X:" << TransformFn->getName() << ">>";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000405 if (!getName().empty())
406 OS << ":$" << getName();
407
408}
409void TreePatternNode::dump() const {
410 print(std::cerr);
411}
412
Chris Lattnere46e17b2005-09-29 19:28:10 +0000413/// isIsomorphicTo - Return true if this node is recursively isomorphic to
414/// the specified node. For this comparison, all of the state of the node
415/// is considered, except for the assigned name. Nodes with differing names
416/// that are otherwise identical are considered isomorphic.
417bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N) const {
418 if (N == this) return true;
Nate Begemanb73628b2005-12-30 00:12:56 +0000419 if (N->isLeaf() != isLeaf() || getExtTypes() != N->getExtTypes() ||
Chris Lattnere46e17b2005-09-29 19:28:10 +0000420 getPredicateFn() != N->getPredicateFn() ||
421 getTransformFn() != N->getTransformFn())
422 return false;
423
424 if (isLeaf()) {
425 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue()))
426 if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue()))
427 return DI->getDef() == NDI->getDef();
428 return getLeafValue() == N->getLeafValue();
429 }
430
431 if (N->getOperator() != getOperator() ||
432 N->getNumChildren() != getNumChildren()) return false;
433 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
434 if (!getChild(i)->isIsomorphicTo(N->getChild(i)))
435 return false;
436 return true;
437}
438
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000439/// clone - Make a copy of this tree and all of its children.
440///
441TreePatternNode *TreePatternNode::clone() const {
442 TreePatternNode *New;
443 if (isLeaf()) {
444 New = new TreePatternNode(getLeafValue());
445 } else {
446 std::vector<TreePatternNode*> CChildren;
447 CChildren.reserve(Children.size());
448 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
449 CChildren.push_back(getChild(i)->clone());
450 New = new TreePatternNode(getOperator(), CChildren);
451 }
452 New->setName(getName());
Nate Begemanb73628b2005-12-30 00:12:56 +0000453 New->setTypes(getExtTypes());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000454 New->setPredicateFn(getPredicateFn());
Chris Lattner24eeeb82005-09-13 21:51:00 +0000455 New->setTransformFn(getTransformFn());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000456 return New;
457}
458
Chris Lattner32707602005-09-08 23:22:48 +0000459/// SubstituteFormalArguments - Replace the formal arguments in this tree
460/// with actual values specified by ArgMap.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000461void TreePatternNode::
462SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
463 if (isLeaf()) return;
464
465 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
466 TreePatternNode *Child = getChild(i);
467 if (Child->isLeaf()) {
468 Init *Val = Child->getLeafValue();
469 if (dynamic_cast<DefInit*>(Val) &&
470 static_cast<DefInit*>(Val)->getDef()->getName() == "node") {
471 // We found a use of a formal argument, replace it with its value.
472 Child = ArgMap[Child->getName()];
473 assert(Child && "Couldn't find formal argument!");
474 setChild(i, Child);
475 }
476 } else {
477 getChild(i)->SubstituteFormalArguments(ArgMap);
478 }
479 }
480}
481
482
483/// InlinePatternFragments - If this pattern refers to any pattern
484/// fragments, inline them into place, giving us a pattern without any
485/// PatFrag references.
486TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
487 if (isLeaf()) return this; // nothing to do.
488 Record *Op = getOperator();
489
490 if (!Op->isSubClassOf("PatFrag")) {
491 // Just recursively inline children nodes.
492 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
493 setChild(i, getChild(i)->InlinePatternFragments(TP));
494 return this;
495 }
496
497 // Otherwise, we found a reference to a fragment. First, look up its
498 // TreePattern record.
499 TreePattern *Frag = TP.getDAGISelEmitter().getPatternFragment(Op);
500
501 // Verify that we are passing the right number of operands.
502 if (Frag->getNumArgs() != Children.size())
503 TP.error("'" + Op->getName() + "' fragment requires " +
504 utostr(Frag->getNumArgs()) + " operands!");
505
Chris Lattner37937092005-09-09 01:15:01 +0000506 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000507
508 // Resolve formal arguments to their actual value.
509 if (Frag->getNumArgs()) {
510 // Compute the map of formal to actual arguments.
511 std::map<std::string, TreePatternNode*> ArgMap;
512 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
513 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
514
515 FragTree->SubstituteFormalArguments(ArgMap);
516 }
517
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000518 FragTree->setName(getName());
Nate Begemanb73628b2005-12-30 00:12:56 +0000519 FragTree->UpdateNodeType(getExtTypes(), TP);
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000520
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000521 // Get a new copy of this fragment to stitch into here.
522 //delete this; // FIXME: implement refcounting!
523 return FragTree;
524}
525
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000526/// getIntrinsicType - Check to see if the specified record has an intrinsic
527/// type which should be applied to it. This infer the type of register
528/// references from the register file information, for example.
529///
Nate Begemanb73628b2005-12-30 00:12:56 +0000530static std::vector<unsigned char> getIntrinsicType(Record *R, bool NotRegisters,
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000531 TreePattern &TP) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000532 // Some common return values
533 std::vector<unsigned char> Unknown(1, MVT::isUnknown);
534 std::vector<unsigned char> Other(1, MVT::Other);
535
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000536 // Check to see if this is a register or a register class...
537 if (R->isSubClassOf("RegisterClass")) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000538 if (NotRegisters)
539 return Unknown;
Nate Begeman6510b222005-12-01 04:51:06 +0000540 const CodeGenRegisterClass &RC =
541 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(R);
Nate Begemanb73628b2005-12-30 00:12:56 +0000542 return ConvertVTs(RC.getValueTypes());
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000543 } else if (R->isSubClassOf("PatFrag")) {
544 // Pattern fragment types will be resolved when they are inlined.
Nate Begemanb73628b2005-12-30 00:12:56 +0000545 return Unknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000546 } else if (R->isSubClassOf("Register")) {
Chris Lattner22faeab2005-12-05 02:36:37 +0000547 // If the register appears in exactly one regclass, and the regclass has one
548 // value type, use it as the known type.
549 const CodeGenTarget &T = TP.getDAGISelEmitter().getTargetInfo();
550 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
Nate Begemanb73628b2005-12-30 00:12:56 +0000551 return ConvertVTs(RC->getValueTypes());
552 return Unknown;
Chris Lattner1531f202005-10-26 16:59:37 +0000553 } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
554 // Using a VTSDNode or CondCodeSDNode.
Nate Begemanb73628b2005-12-30 00:12:56 +0000555 return Other;
Evan Cheng0fc71982005-12-08 02:00:36 +0000556 } else if (R->isSubClassOf("ComplexPattern")) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000557 std::vector<unsigned char>
558 ComplexPat(1, TP.getDAGISelEmitter().getComplexPattern(R).getValueType());
559 return ComplexPat;
Evan Cheng01f318b2005-12-14 02:21:57 +0000560 } else if (R->getName() == "node" || R->getName() == "srcvalue") {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000561 // Placeholder.
Nate Begemanb73628b2005-12-30 00:12:56 +0000562 return Unknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000563 }
564
565 TP.error("Unknown node flavor used in pattern: " + R->getName());
Nate Begemanb73628b2005-12-30 00:12:56 +0000566 return Other;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000567}
568
Chris Lattner32707602005-09-08 23:22:48 +0000569/// ApplyTypeConstraints - Apply all of the type constraints relevent to
570/// this node and its children in the tree. This returns true if it makes a
571/// change, false otherwise. If a type contradiction is found, throw an
572/// exception.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000573bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
574 if (isLeaf()) {
Chris Lattner465c7372005-11-03 05:46:11 +0000575 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000576 // If it's a regclass or something else known, include the type.
577 return UpdateNodeType(getIntrinsicType(DI->getDef(), NotRegisters, TP),
578 TP);
Chris Lattner465c7372005-11-03 05:46:11 +0000579 } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
580 // Int inits are always integers. :)
581 bool MadeChange = UpdateNodeType(MVT::isInt, TP);
582
583 if (hasTypeSet()) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000584 // At some point, it may make sense for this tree pattern to have
585 // multiple types. Assert here that it does not, so we revisit this
586 // code when appropriate.
587 assert(getExtTypes().size() == 1 && "TreePattern has too many types!");
588
589 unsigned Size = MVT::getSizeInBits(getTypeNum(0));
Chris Lattner465c7372005-11-03 05:46:11 +0000590 // Make sure that the value is representable for this type.
591 if (Size < 32) {
592 int Val = (II->getValue() << (32-Size)) >> (32-Size);
593 if (Val != II->getValue())
594 TP.error("Sign-extended integer value '" + itostr(II->getValue()) +
595 "' is out of range for type 'MVT::" +
Nate Begemanb73628b2005-12-30 00:12:56 +0000596 getEnumName(getTypeNum(0)) + "'!");
Chris Lattner465c7372005-11-03 05:46:11 +0000597 }
598 }
599
600 return MadeChange;
601 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000602 return false;
603 }
Chris Lattner32707602005-09-08 23:22:48 +0000604
605 // special handling for set, which isn't really an SDNode.
606 if (getOperator()->getName() == "set") {
607 assert (getNumChildren() == 2 && "Only handle 2 operand set's for now!");
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000608 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
609 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner32707602005-09-08 23:22:48 +0000610
611 // Types of operands must match.
Nate Begemanb73628b2005-12-30 00:12:56 +0000612 MadeChange |= getChild(0)->UpdateNodeType(getChild(1)->getExtTypes(), TP);
613 MadeChange |= getChild(1)->UpdateNodeType(getChild(0)->getExtTypes(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000614 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
615 return MadeChange;
Chris Lattnerabbb6052005-09-15 21:42:00 +0000616 } else if (getOperator()->isSubClassOf("SDNode")) {
617 const SDNodeInfo &NI = TP.getDAGISelEmitter().getSDNodeInfo(getOperator());
618
619 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
620 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000621 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000622 // Branch, etc. do not produce results and top-level forms in instr pattern
623 // must have void types.
624 if (NI.getNumResults() == 0)
625 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
Chris Lattnerabbb6052005-09-15 21:42:00 +0000626 return MadeChange;
Chris Lattnera28aec12005-09-15 22:23:50 +0000627 } else if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattnerae5b3502005-09-15 21:57:35 +0000628 const DAGInstruction &Inst =
629 TP.getDAGISelEmitter().getInstruction(getOperator());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000630 bool MadeChange = false;
631 unsigned NumResults = Inst.getNumResults();
Chris Lattnerae5b3502005-09-15 21:57:35 +0000632
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000633 assert(NumResults <= 1 &&
634 "Only supports zero or one result instrs!");
Chris Lattnera28aec12005-09-15 22:23:50 +0000635 // Apply the result type to the node
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000636 if (NumResults == 0) {
637 MadeChange = UpdateNodeType(MVT::isVoid, TP);
638 } else {
639 Record *ResultNode = Inst.getResult(0);
640 assert(ResultNode->isSubClassOf("RegisterClass") &&
641 "Operands should be register classes!");
Nate Begemanddb39542005-12-01 00:06:14 +0000642
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000643 const CodeGenRegisterClass &RC =
644 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(ResultNode);
Nate Begemanb73628b2005-12-30 00:12:56 +0000645 MadeChange = UpdateNodeType(ConvertVTs(RC.getValueTypes()), TP);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000646 }
Chris Lattnera28aec12005-09-15 22:23:50 +0000647
648 if (getNumChildren() != Inst.getNumOperands())
649 TP.error("Instruction '" + getOperator()->getName() + " expects " +
650 utostr(Inst.getNumOperands()) + " operands, not " +
651 utostr(getNumChildren()) + " operands!");
652 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
Nate Begemanddb39542005-12-01 00:06:14 +0000653 Record *OperandNode = Inst.getOperand(i);
654 MVT::ValueType VT;
655 if (OperandNode->isSubClassOf("RegisterClass")) {
656 const CodeGenRegisterClass &RC =
657 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(OperandNode);
Nate Begemanb73628b2005-12-30 00:12:56 +0000658 //VT = RC.getValueTypeNum(0);
659 MadeChange |=getChild(i)->UpdateNodeType(ConvertVTs(RC.getValueTypes()),
660 TP);
Nate Begemanddb39542005-12-01 00:06:14 +0000661 } else if (OperandNode->isSubClassOf("Operand")) {
662 VT = getValueType(OperandNode->getValueAsDef("Type"));
Nate Begemanb73628b2005-12-30 00:12:56 +0000663 MadeChange |= getChild(i)->UpdateNodeType(VT, TP);
Nate Begemanddb39542005-12-01 00:06:14 +0000664 } else {
665 assert(0 && "Unknown operand type!");
666 abort();
667 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000668 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnera28aec12005-09-15 22:23:50 +0000669 }
670 return MadeChange;
671 } else {
672 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
673
674 // Node transforms always take one operand, and take and return the same
675 // type.
676 if (getNumChildren() != 1)
677 TP.error("Node transform '" + getOperator()->getName() +
678 "' requires one operand!");
Nate Begemanb73628b2005-12-30 00:12:56 +0000679 bool MadeChange = UpdateNodeType(getChild(0)->getExtTypes(), TP);
680 MadeChange |= getChild(0)->UpdateNodeType(getExtTypes(), TP);
Chris Lattnera28aec12005-09-15 22:23:50 +0000681 return MadeChange;
Chris Lattner32707602005-09-08 23:22:48 +0000682 }
Chris Lattner32707602005-09-08 23:22:48 +0000683}
684
Chris Lattnere97603f2005-09-28 19:27:25 +0000685/// canPatternMatch - If it is impossible for this pattern to match on this
686/// target, fill in Reason and return false. Otherwise, return true. This is
687/// used as a santity check for .td files (to prevent people from writing stuff
688/// that can never possibly work), and to prevent the pattern permuter from
689/// generating stuff that is useless.
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000690bool TreePatternNode::canPatternMatch(std::string &Reason, DAGISelEmitter &ISE){
Chris Lattnere97603f2005-09-28 19:27:25 +0000691 if (isLeaf()) return true;
692
693 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
694 if (!getChild(i)->canPatternMatch(Reason, ISE))
695 return false;
Evan Cheng0fc71982005-12-08 02:00:36 +0000696
Chris Lattnere97603f2005-09-28 19:27:25 +0000697 // If this node is a commutative operator, check that the LHS isn't an
698 // immediate.
699 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(getOperator());
700 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
701 // Scan all of the operands of the node and make sure that only the last one
702 // is a constant node.
703 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i)
704 if (!getChild(i)->isLeaf() &&
705 getChild(i)->getOperator()->getName() == "imm") {
706 Reason = "Immediate value must be on the RHS of commutative operators!";
707 return false;
708 }
709 }
710
711 return true;
712}
Chris Lattner32707602005-09-08 23:22:48 +0000713
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000714//===----------------------------------------------------------------------===//
715// TreePattern implementation
716//
717
Chris Lattneredbd8712005-10-21 01:19:59 +0000718TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattneree9f0c32005-09-13 21:20:49 +0000719 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000720 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000721 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
722 Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000723}
724
Chris Lattneredbd8712005-10-21 01:19:59 +0000725TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000726 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000727 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000728 Trees.push_back(ParseTreePattern(Pat));
729}
730
Chris Lattneredbd8712005-10-21 01:19:59 +0000731TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000732 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000733 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000734 Trees.push_back(Pat);
735}
736
737
738
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000739void TreePattern::error(const std::string &Msg) const {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000740 dump();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000741 throw "In " + TheRecord->getName() + ": " + Msg;
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000742}
743
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000744TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
745 Record *Operator = Dag->getNodeType();
746
747 if (Operator->isSubClassOf("ValueType")) {
748 // If the operator is a ValueType, then this must be "type cast" of a leaf
749 // node.
750 if (Dag->getNumArgs() != 1)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000751 error("Type cast only takes one operand!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000752
753 Init *Arg = Dag->getArg(0);
754 TreePatternNode *New;
755 if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
Chris Lattner72fe91c2005-09-24 00:40:24 +0000756 Record *R = DI->getDef();
757 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
758 Dag->setArg(0, new DagInit(R,
759 std::vector<std::pair<Init*, std::string> >()));
Chris Lattner12cf9092005-11-16 23:14:54 +0000760 return ParseTreePattern(Dag);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000761 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000762 New = new TreePatternNode(DI);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000763 } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
764 New = ParseTreePattern(DI);
Chris Lattner0614b622005-11-02 06:49:14 +0000765 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
766 New = new TreePatternNode(II);
767 if (!Dag->getArgName(0).empty())
768 error("Constant int argument should not have a name!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000769 } else {
770 Arg->dump();
771 error("Unknown leaf value for tree pattern!");
772 return 0;
773 }
774
Chris Lattner32707602005-09-08 23:22:48 +0000775 // Apply the type cast.
776 New->UpdateNodeType(getValueType(Operator), *this);
Chris Lattner12cf9092005-11-16 23:14:54 +0000777 New->setName(Dag->getArgName(0));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000778 return New;
779 }
780
781 // Verify that this is something that makes sense for an operator.
782 if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
Chris Lattnerabbb6052005-09-15 21:42:00 +0000783 !Operator->isSubClassOf("Instruction") &&
784 !Operator->isSubClassOf("SDNodeXForm") &&
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000785 Operator->getName() != "set")
786 error("Unrecognized node '" + Operator->getName() + "'!");
787
Chris Lattneredbd8712005-10-21 01:19:59 +0000788 // Check to see if this is something that is illegal in an input pattern.
789 if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
790 Operator->isSubClassOf("SDNodeXForm")))
791 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
792
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000793 std::vector<TreePatternNode*> Children;
794
795 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
796 Init *Arg = Dag->getArg(i);
797 if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
798 Children.push_back(ParseTreePattern(DI));
Chris Lattner12cf9092005-11-16 23:14:54 +0000799 if (Children.back()->getName().empty())
800 Children.back()->setName(Dag->getArgName(i));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000801 } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
802 Record *R = DefI->getDef();
803 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
804 // TreePatternNode if its own.
805 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
806 Dag->setArg(i, new DagInit(R,
807 std::vector<std::pair<Init*, std::string> >()));
808 --i; // Revisit this node...
809 } else {
810 TreePatternNode *Node = new TreePatternNode(DefI);
811 Node->setName(Dag->getArgName(i));
812 Children.push_back(Node);
813
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000814 // Input argument?
815 if (R->getName() == "node") {
816 if (Dag->getArgName(i).empty())
817 error("'node' argument requires a name to match with operand list");
818 Args.push_back(Dag->getArgName(i));
819 }
820 }
Chris Lattner5d5a0562005-10-19 04:30:56 +0000821 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
822 TreePatternNode *Node = new TreePatternNode(II);
823 if (!Dag->getArgName(i).empty())
824 error("Constant int argument should not have a name!");
825 Children.push_back(Node);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000826 } else {
Chris Lattner5d5a0562005-10-19 04:30:56 +0000827 std::cerr << '"';
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000828 Arg->dump();
Chris Lattner5d5a0562005-10-19 04:30:56 +0000829 std::cerr << "\": ";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000830 error("Unknown leaf value for tree pattern!");
831 }
832 }
833
834 return new TreePatternNode(Operator, Children);
835}
836
Chris Lattner32707602005-09-08 23:22:48 +0000837/// InferAllTypes - Infer/propagate as many types throughout the expression
838/// patterns as possible. Return true if all types are infered, false
839/// otherwise. Throw an exception if a type contradiction is found.
840bool TreePattern::InferAllTypes() {
841 bool MadeChange = true;
842 while (MadeChange) {
843 MadeChange = false;
844 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000845 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
Chris Lattner32707602005-09-08 23:22:48 +0000846 }
847
848 bool HasUnresolvedTypes = false;
849 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
850 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
851 return !HasUnresolvedTypes;
852}
853
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000854void TreePattern::print(std::ostream &OS) const {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000855 OS << getRecord()->getName();
856 if (!Args.empty()) {
857 OS << "(" << Args[0];
858 for (unsigned i = 1, e = Args.size(); i != e; ++i)
859 OS << ", " << Args[i];
860 OS << ")";
861 }
862 OS << ": ";
863
864 if (Trees.size() > 1)
865 OS << "[\n";
866 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
867 OS << "\t";
868 Trees[i]->print(OS);
869 OS << "\n";
870 }
871
872 if (Trees.size() > 1)
873 OS << "]\n";
874}
875
876void TreePattern::dump() const { print(std::cerr); }
877
878
879
880//===----------------------------------------------------------------------===//
881// DAGISelEmitter implementation
882//
883
Chris Lattnerca559d02005-09-08 21:03:01 +0000884// Parse all of the SDNode definitions for the target, populating SDNodes.
885void DAGISelEmitter::ParseNodeInfo() {
886 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
887 while (!Nodes.empty()) {
888 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
889 Nodes.pop_back();
890 }
891}
892
Chris Lattner24eeeb82005-09-13 21:51:00 +0000893/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
894/// map, and emit them to the file as functions.
895void DAGISelEmitter::ParseNodeTransforms(std::ostream &OS) {
896 OS << "\n// Node transformations.\n";
897 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
898 while (!Xforms.empty()) {
899 Record *XFormNode = Xforms.back();
900 Record *SDNode = XFormNode->getValueAsDef("Opcode");
901 std::string Code = XFormNode->getValueAsCode("XFormFunction");
902 SDNodeXForms.insert(std::make_pair(XFormNode,
903 std::make_pair(SDNode, Code)));
904
Chris Lattner1048b7a2005-09-13 22:03:37 +0000905 if (!Code.empty()) {
Chris Lattner24eeeb82005-09-13 21:51:00 +0000906 std::string ClassName = getSDNodeInfo(SDNode).getSDClassName();
907 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
908
Chris Lattner1048b7a2005-09-13 22:03:37 +0000909 OS << "inline SDOperand Transform_" << XFormNode->getName()
Chris Lattner24eeeb82005-09-13 21:51:00 +0000910 << "(SDNode *" << C2 << ") {\n";
911 if (ClassName != "SDNode")
912 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
913 OS << Code << "\n}\n";
914 }
915
916 Xforms.pop_back();
917 }
918}
919
Evan Cheng0fc71982005-12-08 02:00:36 +0000920void DAGISelEmitter::ParseComplexPatterns() {
921 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
922 while (!AMs.empty()) {
923 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
924 AMs.pop_back();
925 }
926}
Chris Lattner24eeeb82005-09-13 21:51:00 +0000927
928
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000929/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
930/// file, building up the PatternFragments map. After we've collected them all,
931/// inline fragments together as necessary, so that there are no references left
932/// inside a pattern fragment to a pattern fragment.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000933///
934/// This also emits all of the predicate functions to the output file.
935///
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000936void DAGISelEmitter::ParsePatternFragments(std::ostream &OS) {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000937 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
938
939 // First step, parse all of the fragments and emit predicate functions.
940 OS << "\n// Predicate functions.\n";
941 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +0000942 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
Chris Lattneredbd8712005-10-21 01:19:59 +0000943 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000944 PatternFragments[Fragments[i]] = P;
Chris Lattneree9f0c32005-09-13 21:20:49 +0000945
946 // Validate the argument list, converting it to map, to discard duplicates.
947 std::vector<std::string> &Args = P->getArgList();
948 std::set<std::string> OperandsMap(Args.begin(), Args.end());
949
950 if (OperandsMap.count(""))
951 P->error("Cannot have unnamed 'node' values in pattern fragment!");
952
953 // Parse the operands list.
954 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
955 if (OpsList->getNodeType()->getName() != "ops")
956 P->error("Operands list should start with '(ops ... '!");
957
958 // Copy over the arguments.
959 Args.clear();
960 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
961 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
962 static_cast<DefInit*>(OpsList->getArg(j))->
963 getDef()->getName() != "node")
964 P->error("Operands list should all be 'node' values.");
965 if (OpsList->getArgName(j).empty())
966 P->error("Operands list should have names for each operand!");
967 if (!OperandsMap.count(OpsList->getArgName(j)))
968 P->error("'" + OpsList->getArgName(j) +
969 "' does not occur in pattern or was multiply specified!");
970 OperandsMap.erase(OpsList->getArgName(j));
971 Args.push_back(OpsList->getArgName(j));
972 }
973
974 if (!OperandsMap.empty())
975 P->error("Operands list does not contain an entry for operand '" +
976 *OperandsMap.begin() + "'!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000977
978 // If there is a code init for this fragment, emit the predicate code and
979 // keep track of the fact that this fragment uses it.
Chris Lattner24eeeb82005-09-13 21:51:00 +0000980 std::string Code = Fragments[i]->getValueAsCode("Predicate");
981 if (!Code.empty()) {
Chris Lattner37937092005-09-09 01:15:01 +0000982 assert(!P->getOnlyTree()->isLeaf() && "Can't be a leaf!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000983 std::string ClassName =
Chris Lattner37937092005-09-09 01:15:01 +0000984 getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000985 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
986
Chris Lattner1048b7a2005-09-13 22:03:37 +0000987 OS << "inline bool Predicate_" << Fragments[i]->getName()
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000988 << "(SDNode *" << C2 << ") {\n";
989 if (ClassName != "SDNode")
990 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
Chris Lattner24eeeb82005-09-13 21:51:00 +0000991 OS << Code << "\n}\n";
Chris Lattner37937092005-09-09 01:15:01 +0000992 P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000993 }
Chris Lattner6de8b532005-09-13 21:59:15 +0000994
995 // If there is a node transformation corresponding to this, keep track of
996 // it.
997 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
998 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
Chris Lattnerb0276202005-09-14 22:55:26 +0000999 P->getOnlyTree()->setTransformFn(Transform);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001000 }
1001
1002 OS << "\n\n";
1003
1004 // Now that we've parsed all of the tree fragments, do a closure on them so
1005 // that there are not references to PatFrags left inside of them.
1006 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
1007 E = PatternFragments.end(); I != E; ++I) {
Chris Lattner32707602005-09-08 23:22:48 +00001008 TreePattern *ThePat = I->second;
1009 ThePat->InlinePatternFragments();
Chris Lattneree9f0c32005-09-13 21:20:49 +00001010
Chris Lattner32707602005-09-08 23:22:48 +00001011 // Infer as many types as possible. Don't worry about it if we don't infer
1012 // all of them, some may depend on the inputs of the pattern.
1013 try {
1014 ThePat->InferAllTypes();
1015 } catch (...) {
1016 // If this pattern fragment is not supported by this target (no types can
1017 // satisfy its constraints), just ignore it. If the bogus pattern is
1018 // actually used by instructions, the type consistency error will be
1019 // reported there.
1020 }
1021
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001022 // If debugging, print out the pattern fragment result.
Chris Lattner32707602005-09-08 23:22:48 +00001023 DEBUG(ThePat->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001024 }
1025}
1026
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001027/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
Chris Lattnerf1311842005-09-14 23:05:13 +00001028/// instruction input. Return true if this is a real use.
1029static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001030 std::map<std::string, TreePatternNode*> &InstInputs,
1031 std::vector<Record*> &InstImpInputs) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001032 // No name -> not interesting.
Chris Lattner7da852f2005-09-14 22:06:36 +00001033 if (Pat->getName().empty()) {
1034 if (Pat->isLeaf()) {
1035 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1036 if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
1037 I->error("Input " + DI->getDef()->getName() + " must be named!");
Evan Cheng7b05bd52005-12-23 22:11:47 +00001038 else if (DI && DI->getDef()->isSubClassOf("Register"))
1039 InstImpInputs.push_back(DI->getDef());
Chris Lattner7da852f2005-09-14 22:06:36 +00001040 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001041 return false;
Chris Lattner7da852f2005-09-14 22:06:36 +00001042 }
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001043
1044 Record *Rec;
1045 if (Pat->isLeaf()) {
1046 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1047 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
1048 Rec = DI->getDef();
1049 } else {
1050 assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
1051 Rec = Pat->getOperator();
1052 }
1053
Evan Cheng01f318b2005-12-14 02:21:57 +00001054 // SRCVALUE nodes are ignored.
1055 if (Rec->getName() == "srcvalue")
1056 return false;
1057
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001058 TreePatternNode *&Slot = InstInputs[Pat->getName()];
1059 if (!Slot) {
1060 Slot = Pat;
1061 } else {
1062 Record *SlotRec;
1063 if (Slot->isLeaf()) {
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00001064 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001065 } else {
1066 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
1067 SlotRec = Slot->getOperator();
1068 }
1069
1070 // Ensure that the inputs agree if we've already seen this input.
1071 if (Rec != SlotRec)
1072 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Nate Begemanb73628b2005-12-30 00:12:56 +00001073 if (Slot->getExtTypes() != Pat->getExtTypes())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001074 I->error("All $" + Pat->getName() + " inputs must agree with each other");
1075 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001076 return true;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001077}
1078
1079/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1080/// part of "I", the instruction), computing the set of inputs and outputs of
1081/// the pattern. Report errors if we see anything naughty.
1082void DAGISelEmitter::
1083FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1084 std::map<std::string, TreePatternNode*> &InstInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001085 std::map<std::string, Record*> &InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001086 std::vector<Record*> &InstImpInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001087 std::vector<Record*> &InstImpResults) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001088 if (Pat->isLeaf()) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00001089 bool isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerf1311842005-09-14 23:05:13 +00001090 if (!isUse && Pat->getTransformFn())
1091 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001092 return;
1093 } else if (Pat->getOperator()->getName() != "set") {
1094 // If this is not a set, verify that the children nodes are not void typed,
1095 // and recurse.
1096 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Nate Begemanb73628b2005-12-30 00:12:56 +00001097 if (Pat->getChild(i)->getExtTypeNum(0) == MVT::isVoid)
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001098 I->error("Cannot have void nodes inside of patterns!");
Evan Chengbcecf332005-12-17 01:19:28 +00001099 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001100 InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001101 }
1102
1103 // If this is a non-leaf node with no children, treat it basically as if
1104 // it were a leaf. This handles nodes like (imm).
Chris Lattnerf1311842005-09-14 23:05:13 +00001105 bool isUse = false;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001106 if (Pat->getNumChildren() == 0)
Evan Cheng7b05bd52005-12-23 22:11:47 +00001107 isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001108
Chris Lattnerf1311842005-09-14 23:05:13 +00001109 if (!isUse && Pat->getTransformFn())
1110 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001111 return;
1112 }
1113
1114 // Otherwise, this is a set, validate and collect instruction results.
1115 if (Pat->getNumChildren() == 0)
1116 I->error("set requires operands!");
1117 else if (Pat->getNumChildren() & 1)
1118 I->error("set requires an even number of operands");
1119
Chris Lattnerf1311842005-09-14 23:05:13 +00001120 if (Pat->getTransformFn())
1121 I->error("Cannot specify a transform function on a set node!");
1122
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001123 // Check the set destinations.
1124 unsigned NumValues = Pat->getNumChildren()/2;
1125 for (unsigned i = 0; i != NumValues; ++i) {
1126 TreePatternNode *Dest = Pat->getChild(i);
1127 if (!Dest->isLeaf())
Evan Cheng86217892005-12-12 19:37:43 +00001128 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001129
1130 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1131 if (!Val)
Evan Cheng86217892005-12-12 19:37:43 +00001132 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001133
Evan Chengbcecf332005-12-17 01:19:28 +00001134 if (Val->getDef()->isSubClassOf("RegisterClass")) {
1135 if (Dest->getName().empty())
1136 I->error("set destination must have a name!");
1137 if (InstResults.count(Dest->getName()))
1138 I->error("cannot set '" + Dest->getName() +"' multiple times");
1139 InstResults[Dest->getName()] = Val->getDef();
Evan Cheng7b05bd52005-12-23 22:11:47 +00001140 } else if (Val->getDef()->isSubClassOf("Register")) {
Evan Chengbcecf332005-12-17 01:19:28 +00001141 InstImpResults.push_back(Val->getDef());
1142 } else {
1143 I->error("set destination should be a register!");
1144 }
1145
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001146 // Verify and collect info from the computation.
1147 FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
Evan Cheng7b05bd52005-12-23 22:11:47 +00001148 InstInputs, InstResults,
1149 InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001150 }
1151}
1152
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001153/// ParseInstructions - Parse all of the instructions, inlining and resolving
1154/// any fragments involved. This populates the Instructions list with fully
1155/// resolved instructions.
1156void DAGISelEmitter::ParseInstructions() {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001157 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1158
1159 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001160 ListInit *LI = 0;
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001161
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001162 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1163 LI = Instrs[i]->getValueAsListInit("Pattern");
1164
1165 // If there is no pattern, only collect minimal information about the
1166 // instruction for its operand list. We have to assume that there is one
1167 // result, as we have no detailed info.
1168 if (!LI || LI->getSize() == 0) {
Nate Begemanddb39542005-12-01 00:06:14 +00001169 std::vector<Record*> Results;
1170 std::vector<Record*> Operands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001171
1172 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001173
Evan Cheng3a217f32005-12-22 02:35:21 +00001174 if (InstInfo.OperandList.size() != 0) {
Evan Cheng3a217f32005-12-22 02:35:21 +00001175 // FIXME: temporary hack...
Evan Cheng2b4ea792005-12-26 09:11:45 +00001176 if (InstInfo.noResults) {
Evan Cheng3a217f32005-12-22 02:35:21 +00001177 // These produce no results
1178 for (unsigned j = 0, e = InstInfo.OperandList.size(); j < e; ++j)
1179 Operands.push_back(InstInfo.OperandList[j].Rec);
1180 } else {
1181 // Assume the first operand is the result.
1182 Results.push_back(InstInfo.OperandList[0].Rec);
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001183
Evan Cheng3a217f32005-12-22 02:35:21 +00001184 // The rest are inputs.
1185 for (unsigned j = 1, e = InstInfo.OperandList.size(); j < e; ++j)
1186 Operands.push_back(InstInfo.OperandList[j].Rec);
1187 }
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001188 }
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001189
1190 // Create and insert the instruction.
Evan Chengbcecf332005-12-17 01:19:28 +00001191 std::vector<Record*> ImpResults;
1192 std::vector<Record*> ImpOperands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001193 Instructions.insert(std::make_pair(Instrs[i],
Evan Cheng7b05bd52005-12-23 22:11:47 +00001194 DAGInstruction(0, Results, Operands, ImpResults,
1195 ImpOperands)));
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001196 continue; // no pattern.
1197 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001198
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001199 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001200 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001201 // Inline pattern fragments into it.
Chris Lattner32707602005-09-08 23:22:48 +00001202 I->InlinePatternFragments();
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001203
Chris Lattner95f6b762005-09-08 23:26:30 +00001204 // Infer as many types as possible. If we cannot infer all of them, we can
1205 // never do anything with this instruction pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001206 if (!I->InferAllTypes())
Chris Lattner32707602005-09-08 23:22:48 +00001207 I->error("Could not infer all types in pattern!");
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001208
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001209 // InstInputs - Keep track of all of the inputs of the instruction, along
1210 // with the record they are declared as.
1211 std::map<std::string, TreePatternNode*> InstInputs;
1212
1213 // InstResults - Keep track of all the virtual registers that are 'set'
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001214 // in the instruction, including what reg class they are.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001215 std::map<std::string, Record*> InstResults;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001216
1217 std::vector<Record*> InstImpInputs;
Evan Chengbcecf332005-12-17 01:19:28 +00001218 std::vector<Record*> InstImpResults;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001219
Chris Lattner1f39e292005-09-14 00:09:24 +00001220 // Verify that the top-level forms in the instruction are of void type, and
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001221 // fill in the InstResults map.
Chris Lattner1f39e292005-09-14 00:09:24 +00001222 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1223 TreePatternNode *Pat = I->getTree(j);
Nate Begemanb73628b2005-12-30 00:12:56 +00001224 if (Pat->getExtTypeNum(0) != MVT::isVoid)
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001225 I->error("Top-level forms in instruction pattern should have"
1226 " void types");
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001227
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001228 // Find inputs and outputs, and verify the structure of the uses/defs.
Evan Chengbcecf332005-12-17 01:19:28 +00001229 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001230 InstImpInputs, InstImpResults);
Chris Lattner1f39e292005-09-14 00:09:24 +00001231 }
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001232
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001233 // Now that we have inputs and outputs of the pattern, inspect the operands
1234 // list for the instruction. This determines the order that operands are
1235 // added to the machine instruction the node corresponds to.
1236 unsigned NumResults = InstResults.size();
Chris Lattner39e8af92005-09-14 18:19:25 +00001237
1238 // Parse the operands list from the (ops) list, validating it.
1239 std::vector<std::string> &Args = I->getArgList();
1240 assert(Args.empty() && "Args list should still be empty here!");
1241 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1242
1243 // Check that all of the results occur first in the list.
Nate Begemanddb39542005-12-01 00:06:14 +00001244 std::vector<Record*> Results;
Chris Lattner39e8af92005-09-14 18:19:25 +00001245 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattner3a7319d2005-09-14 21:04:12 +00001246 if (i == CGI.OperandList.size())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001247 I->error("'" + InstResults.begin()->first +
1248 "' set but does not appear in operand list!");
Chris Lattner39e8af92005-09-14 18:19:25 +00001249 const std::string &OpName = CGI.OperandList[i].Name;
Chris Lattner39e8af92005-09-14 18:19:25 +00001250
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001251 // Check that it exists in InstResults.
1252 Record *R = InstResults[OpName];
Chris Lattner39e8af92005-09-14 18:19:25 +00001253 if (R == 0)
1254 I->error("Operand $" + OpName + " should be a set destination: all "
1255 "outputs must occur before inputs in operand list!");
1256
1257 if (CGI.OperandList[i].Rec != R)
1258 I->error("Operand $" + OpName + " class mismatch!");
1259
Chris Lattnerae6d8282005-09-15 21:51:12 +00001260 // Remember the return type.
Nate Begemanddb39542005-12-01 00:06:14 +00001261 Results.push_back(CGI.OperandList[i].Rec);
Chris Lattnerae6d8282005-09-15 21:51:12 +00001262
Chris Lattner39e8af92005-09-14 18:19:25 +00001263 // Okay, this one checks out.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001264 InstResults.erase(OpName);
1265 }
1266
Chris Lattner0b592252005-09-14 21:59:34 +00001267 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1268 // the copy while we're checking the inputs.
1269 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
Chris Lattnerb0276202005-09-14 22:55:26 +00001270
1271 std::vector<TreePatternNode*> ResultNodeOperands;
Nate Begemanddb39542005-12-01 00:06:14 +00001272 std::vector<Record*> Operands;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001273 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1274 const std::string &OpName = CGI.OperandList[i].Name;
1275 if (OpName.empty())
1276 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1277
Chris Lattner0b592252005-09-14 21:59:34 +00001278 if (!InstInputsCheck.count(OpName))
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001279 I->error("Operand $" + OpName +
1280 " does not appear in the instruction pattern");
Chris Lattner0b592252005-09-14 21:59:34 +00001281 TreePatternNode *InVal = InstInputsCheck[OpName];
Chris Lattnerb0276202005-09-14 22:55:26 +00001282 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Nate Begemanddb39542005-12-01 00:06:14 +00001283
1284 if (InVal->isLeaf() &&
1285 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1286 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Evan Cheng0fc71982005-12-08 02:00:36 +00001287 if (CGI.OperandList[i].Rec != InRec &&
1288 !InRec->isSubClassOf("ComplexPattern"))
Nate Begemanddb39542005-12-01 00:06:14 +00001289 I->error("Operand $" + OpName +
Evan Cheng0fc71982005-12-08 02:00:36 +00001290 "'s register class disagrees between the operand and pattern");
Nate Begemanddb39542005-12-01 00:06:14 +00001291 }
1292 Operands.push_back(CGI.OperandList[i].Rec);
Chris Lattnerb0276202005-09-14 22:55:26 +00001293
Chris Lattner2175c182005-09-14 23:01:59 +00001294 // Construct the result for the dest-pattern operand list.
1295 TreePatternNode *OpNode = InVal->clone();
1296
1297 // No predicate is useful on the result.
1298 OpNode->setPredicateFn("");
1299
1300 // Promote the xform function to be an explicit node if set.
1301 if (Record *Xform = OpNode->getTransformFn()) {
1302 OpNode->setTransformFn(0);
1303 std::vector<TreePatternNode*> Children;
1304 Children.push_back(OpNode);
1305 OpNode = new TreePatternNode(Xform, Children);
1306 }
1307
1308 ResultNodeOperands.push_back(OpNode);
Chris Lattner39e8af92005-09-14 18:19:25 +00001309 }
1310
Chris Lattner0b592252005-09-14 21:59:34 +00001311 if (!InstInputsCheck.empty())
1312 I->error("Input operand $" + InstInputsCheck.begin()->first +
1313 " occurs in pattern but not in operands list!");
Chris Lattnerb0276202005-09-14 22:55:26 +00001314
1315 TreePatternNode *ResultPattern =
1316 new TreePatternNode(I->getRecord(), ResultNodeOperands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001317
1318 // Create and insert the instruction.
Evan Cheng7b05bd52005-12-23 22:11:47 +00001319 DAGInstruction TheInst(I, Results, Operands, InstImpResults, InstImpInputs);
Chris Lattnera28aec12005-09-15 22:23:50 +00001320 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1321
1322 // Use a temporary tree pattern to infer all types and make sure that the
1323 // constructed result is correct. This depends on the instruction already
1324 // being inserted into the Instructions map.
Chris Lattneredbd8712005-10-21 01:19:59 +00001325 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattnera28aec12005-09-15 22:23:50 +00001326 Temp.InferAllTypes();
1327
1328 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1329 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Chris Lattnerb0276202005-09-14 22:55:26 +00001330
Chris Lattner32707602005-09-08 23:22:48 +00001331 DEBUG(I->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001332 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001333
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001334 // If we can, convert the instructions to be patterns that are matched!
Chris Lattnerae5b3502005-09-15 21:57:35 +00001335 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1336 E = Instructions.end(); II != E; ++II) {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001337 DAGInstruction &TheInst = II->second;
1338 TreePattern *I = TheInst.getPattern();
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001339 if (I == 0) continue; // No pattern.
Evan Chengdd304dd2005-12-05 23:08:55 +00001340
Chris Lattner1f39e292005-09-14 00:09:24 +00001341 if (I->getNumTrees() != 1) {
1342 std::cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1343 continue;
1344 }
1345 TreePatternNode *Pattern = I->getTree(0);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001346 TreePatternNode *SrcPattern;
Evan Chengbcecf332005-12-17 01:19:28 +00001347 if (Pattern->getOperator()->getName() == "set") {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001348 if (Pattern->getNumChildren() != 2)
1349 continue; // Not a set of a single value (not handled so far)
1350
1351 SrcPattern = Pattern->getChild(1)->clone();
Evan Chengbcecf332005-12-17 01:19:28 +00001352 } else{
1353 // Not a set (store or something?)
1354 SrcPattern = Pattern;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001355 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001356
1357 std::string Reason;
1358 if (!SrcPattern->canPatternMatch(Reason, *this))
1359 I->error("Instruction can never match: " + Reason);
1360
Evan Cheng58e84a62005-12-14 22:02:59 +00001361 Record *Instr = II->first;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001362 TreePatternNode *DstPattern = TheInst.getResultPattern();
Evan Cheng58e84a62005-12-14 22:02:59 +00001363 PatternsToMatch.
1364 push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
1365 SrcPattern, DstPattern));
Chris Lattner1f39e292005-09-14 00:09:24 +00001366 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001367}
1368
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001369void DAGISelEmitter::ParsePatterns() {
Chris Lattnerabbb6052005-09-15 21:42:00 +00001370 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001371
Chris Lattnerabbb6052005-09-15 21:42:00 +00001372 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001373 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
Chris Lattneredbd8712005-10-21 01:19:59 +00001374 TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001375
Chris Lattnerabbb6052005-09-15 21:42:00 +00001376 // Inline pattern fragments into it.
1377 Pattern->InlinePatternFragments();
1378
1379 // Infer as many types as possible. If we cannot infer all of them, we can
1380 // never do anything with this pattern: report it to the user.
1381 if (!Pattern->InferAllTypes())
1382 Pattern->error("Could not infer all types in pattern!");
Chris Lattner09c03392005-11-17 17:43:52 +00001383
1384 // Validate that the input pattern is correct.
1385 {
1386 std::map<std::string, TreePatternNode*> InstInputs;
1387 std::map<std::string, Record*> InstResults;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001388 std::vector<Record*> InstImpInputs;
Evan Chengbcecf332005-12-17 01:19:28 +00001389 std::vector<Record*> InstImpResults;
Chris Lattner09c03392005-11-17 17:43:52 +00001390 FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
Evan Chengbcecf332005-12-17 01:19:28 +00001391 InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001392 InstImpInputs, InstImpResults);
Chris Lattner09c03392005-11-17 17:43:52 +00001393 }
Chris Lattnerabbb6052005-09-15 21:42:00 +00001394
1395 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1396 if (LI->getSize() == 0) continue; // no pattern.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001397
1398 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001399 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
Chris Lattnerabbb6052005-09-15 21:42:00 +00001400
1401 // Inline pattern fragments into it.
1402 Result->InlinePatternFragments();
1403
1404 // Infer as many types as possible. If we cannot infer all of them, we can
1405 // never do anything with this pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001406 if (!Result->InferAllTypes())
Chris Lattnerae5b3502005-09-15 21:57:35 +00001407 Result->error("Could not infer all types in pattern result!");
Chris Lattnerabbb6052005-09-15 21:42:00 +00001408
1409 if (Result->getNumTrees() != 1)
1410 Result->error("Cannot handle instructions producing instructions "
1411 "with temporaries yet!");
Chris Lattnere97603f2005-09-28 19:27:25 +00001412
1413 std::string Reason;
1414 if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1415 Pattern->error("Pattern can never match: " + Reason);
1416
Evan Cheng58e84a62005-12-14 22:02:59 +00001417 PatternsToMatch.
1418 push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
1419 Pattern->getOnlyTree(),
1420 Result->getOnlyTree()));
Chris Lattnerabbb6052005-09-15 21:42:00 +00001421 }
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001422}
1423
Chris Lattnere46e17b2005-09-29 19:28:10 +00001424/// CombineChildVariants - Given a bunch of permutations of each child of the
1425/// 'operator' node, put them together in all possible ways.
1426static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattneraf302912005-09-29 22:36:54 +00001427 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
Chris Lattnere46e17b2005-09-29 19:28:10 +00001428 std::vector<TreePatternNode*> &OutVariants,
1429 DAGISelEmitter &ISE) {
Chris Lattneraf302912005-09-29 22:36:54 +00001430 // Make sure that each operand has at least one variant to choose from.
1431 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1432 if (ChildVariants[i].empty())
1433 return;
1434
Chris Lattnere46e17b2005-09-29 19:28:10 +00001435 // The end result is an all-pairs construction of the resultant pattern.
1436 std::vector<unsigned> Idxs;
1437 Idxs.resize(ChildVariants.size());
1438 bool NotDone = true;
1439 while (NotDone) {
1440 // Create the variant and add it to the output list.
1441 std::vector<TreePatternNode*> NewChildren;
1442 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1443 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1444 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1445
1446 // Copy over properties.
1447 R->setName(Orig->getName());
1448 R->setPredicateFn(Orig->getPredicateFn());
1449 R->setTransformFn(Orig->getTransformFn());
Nate Begemanb73628b2005-12-30 00:12:56 +00001450 R->setTypes(Orig->getExtTypes());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001451
1452 // If this pattern cannot every match, do not include it as a variant.
1453 std::string ErrString;
1454 if (!R->canPatternMatch(ErrString, ISE)) {
1455 delete R;
1456 } else {
1457 bool AlreadyExists = false;
1458
1459 // Scan to see if this pattern has already been emitted. We can get
1460 // duplication due to things like commuting:
1461 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1462 // which are the same pattern. Ignore the dups.
1463 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1464 if (R->isIsomorphicTo(OutVariants[i])) {
1465 AlreadyExists = true;
1466 break;
1467 }
1468
1469 if (AlreadyExists)
1470 delete R;
1471 else
1472 OutVariants.push_back(R);
1473 }
1474
1475 // Increment indices to the next permutation.
1476 NotDone = false;
1477 // Look for something we can increment without causing a wrap-around.
1478 for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1479 if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1480 NotDone = true; // Found something to increment.
1481 break;
1482 }
1483 Idxs[IdxsIdx] = 0;
1484 }
1485 }
1486}
1487
Chris Lattneraf302912005-09-29 22:36:54 +00001488/// CombineChildVariants - A helper function for binary operators.
1489///
1490static void CombineChildVariants(TreePatternNode *Orig,
1491 const std::vector<TreePatternNode*> &LHS,
1492 const std::vector<TreePatternNode*> &RHS,
1493 std::vector<TreePatternNode*> &OutVariants,
1494 DAGISelEmitter &ISE) {
1495 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1496 ChildVariants.push_back(LHS);
1497 ChildVariants.push_back(RHS);
1498 CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1499}
1500
1501
1502static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1503 std::vector<TreePatternNode *> &Children) {
1504 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1505 Record *Operator = N->getOperator();
1506
1507 // Only permit raw nodes.
1508 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1509 N->getTransformFn()) {
1510 Children.push_back(N);
1511 return;
1512 }
1513
1514 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1515 Children.push_back(N->getChild(0));
1516 else
1517 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1518
1519 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1520 Children.push_back(N->getChild(1));
1521 else
1522 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1523}
1524
Chris Lattnere46e17b2005-09-29 19:28:10 +00001525/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1526/// the (potentially recursive) pattern by using algebraic laws.
1527///
1528static void GenerateVariantsOf(TreePatternNode *N,
1529 std::vector<TreePatternNode*> &OutVariants,
1530 DAGISelEmitter &ISE) {
1531 // We cannot permute leaves.
1532 if (N->isLeaf()) {
1533 OutVariants.push_back(N);
1534 return;
1535 }
1536
1537 // Look up interesting info about the node.
1538 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
1539
1540 // If this node is associative, reassociate.
Chris Lattneraf302912005-09-29 22:36:54 +00001541 if (NodeInfo.hasProperty(SDNodeInfo::SDNPAssociative)) {
1542 // Reassociate by pulling together all of the linked operators
1543 std::vector<TreePatternNode*> MaximalChildren;
1544 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1545
1546 // Only handle child sizes of 3. Otherwise we'll end up trying too many
1547 // permutations.
1548 if (MaximalChildren.size() == 3) {
1549 // Find the variants of all of our maximal children.
1550 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1551 GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1552 GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1553 GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1554
1555 // There are only two ways we can permute the tree:
1556 // (A op B) op C and A op (B op C)
1557 // Within these forms, we can also permute A/B/C.
1558
1559 // Generate legal pair permutations of A/B/C.
1560 std::vector<TreePatternNode*> ABVariants;
1561 std::vector<TreePatternNode*> BAVariants;
1562 std::vector<TreePatternNode*> ACVariants;
1563 std::vector<TreePatternNode*> CAVariants;
1564 std::vector<TreePatternNode*> BCVariants;
1565 std::vector<TreePatternNode*> CBVariants;
1566 CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1567 CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1568 CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1569 CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1570 CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1571 CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1572
1573 // Combine those into the result: (x op x) op x
1574 CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1575 CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1576 CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1577 CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1578 CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1579 CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1580
1581 // Combine those into the result: x op (x op x)
1582 CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1583 CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1584 CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1585 CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1586 CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1587 CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1588 return;
1589 }
1590 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00001591
1592 // Compute permutations of all children.
1593 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1594 ChildVariants.resize(N->getNumChildren());
1595 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1596 GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1597
1598 // Build all permutations based on how the children were formed.
1599 CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1600
1601 // If this node is commutative, consider the commuted order.
1602 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
1603 assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
Chris Lattneraf302912005-09-29 22:36:54 +00001604 // Consider the commuted order.
1605 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1606 OutVariants, ISE);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001607 }
1608}
1609
1610
Chris Lattnere97603f2005-09-28 19:27:25 +00001611// GenerateVariants - Generate variants. For example, commutative patterns can
1612// match multiple ways. Add them to PatternsToMatch as well.
1613void DAGISelEmitter::GenerateVariants() {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001614
1615 DEBUG(std::cerr << "Generating instruction variants.\n");
1616
1617 // Loop over all of the patterns we've collected, checking to see if we can
1618 // generate variants of the instruction, through the exploitation of
1619 // identities. This permits the target to provide agressive matching without
1620 // the .td file having to contain tons of variants of instructions.
1621 //
1622 // Note that this loop adds new patterns to the PatternsToMatch list, but we
1623 // intentionally do not reconsider these. Any variants of added patterns have
1624 // already been added.
1625 //
1626 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1627 std::vector<TreePatternNode*> Variants;
Evan Cheng58e84a62005-12-14 22:02:59 +00001628 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001629
1630 assert(!Variants.empty() && "Must create at least original variant!");
Chris Lattnere46e17b2005-09-29 19:28:10 +00001631 Variants.erase(Variants.begin()); // Remove the original pattern.
1632
1633 if (Variants.empty()) // No variants for this pattern.
1634 continue;
1635
1636 DEBUG(std::cerr << "FOUND VARIANTS OF: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00001637 PatternsToMatch[i].getSrcPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00001638 std::cerr << "\n");
1639
1640 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1641 TreePatternNode *Variant = Variants[v];
1642
1643 DEBUG(std::cerr << " VAR#" << v << ": ";
1644 Variant->dump();
1645 std::cerr << "\n");
1646
1647 // Scan to see if an instruction or explicit pattern already matches this.
1648 bool AlreadyExists = false;
1649 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1650 // Check to see if this variant already exists.
Evan Cheng58e84a62005-12-14 22:02:59 +00001651 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern())) {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001652 DEBUG(std::cerr << " *** ALREADY EXISTS, ignoring variant.\n");
1653 AlreadyExists = true;
1654 break;
1655 }
1656 }
1657 // If we already have it, ignore the variant.
1658 if (AlreadyExists) continue;
1659
1660 // Otherwise, add it to the list of patterns we have.
Evan Cheng58e84a62005-12-14 22:02:59 +00001661 PatternsToMatch.
1662 push_back(PatternToMatch(PatternsToMatch[i].getPredicates(),
1663 Variant, PatternsToMatch[i].getDstPattern()));
Chris Lattnere46e17b2005-09-29 19:28:10 +00001664 }
1665
1666 DEBUG(std::cerr << "\n");
1667 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001668}
1669
Chris Lattner7cf2fe62005-09-28 20:58:06 +00001670
Evan Cheng0fc71982005-12-08 02:00:36 +00001671// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
1672// ComplexPattern.
1673static bool NodeIsComplexPattern(TreePatternNode *N)
1674{
1675 return (N->isLeaf() &&
1676 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1677 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1678 isSubClassOf("ComplexPattern"));
1679}
1680
1681// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
1682// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
1683static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
1684 DAGISelEmitter &ISE)
1685{
1686 if (N->isLeaf() &&
1687 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1688 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1689 isSubClassOf("ComplexPattern")) {
1690 return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
1691 ->getDef());
1692 }
1693 return NULL;
1694}
1695
Chris Lattner05814af2005-09-28 17:57:56 +00001696/// getPatternSize - Return the 'size' of this pattern. We want to match large
1697/// patterns before small ones. This is used to determine the size of a
1698/// pattern.
Evan Cheng0fc71982005-12-08 02:00:36 +00001699static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
Evan Cheng4a7c2842006-01-06 22:19:44 +00001700 assert(isExtIntegerInVTs(P->getExtTypes()) ||
1701 isExtFloatingPointInVTs(P->getExtTypes()) ||
1702 P->getExtTypeNum(0) == MVT::isVoid ||
1703 P->getExtTypeNum(0) == MVT::Flag &&
1704 "Not a valid pattern node to size!");
Evan Chenge1050d62006-01-06 02:30:23 +00001705 unsigned Size = 2; // The node itself.
Evan Cheng0fc71982005-12-08 02:00:36 +00001706
1707 // FIXME: This is a hack to statically increase the priority of patterns
1708 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
1709 // Later we can allow complexity / cost for each pattern to be (optionally)
1710 // specified. To get best possible pattern match we'll need to dynamically
1711 // calculate the complexity of all patterns a dag can potentially map to.
1712 const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
1713 if (AM)
Evan Cheng4a7c2842006-01-06 22:19:44 +00001714 Size += AM->getNumOperands() * 2;
Evan Cheng0fc71982005-12-08 02:00:36 +00001715
Chris Lattner05814af2005-09-28 17:57:56 +00001716 // Count children in the count if they are also nodes.
1717 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
1718 TreePatternNode *Child = P->getChild(i);
Nate Begemanb73628b2005-12-30 00:12:56 +00001719 if (!Child->isLeaf() && Child->getExtTypeNum(0) != MVT::Other)
Evan Cheng0fc71982005-12-08 02:00:36 +00001720 Size += getPatternSize(Child, ISE);
1721 else if (Child->isLeaf()) {
1722 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
Evan Cheng4a7c2842006-01-06 22:19:44 +00001723 Size += 3; // Matches a ConstantSDNode.
1724 else if (NodeIsComplexPattern(Child))
1725 Size += getPatternSize(Child, ISE);
Chris Lattner2f041d42005-10-19 04:41:05 +00001726 }
Chris Lattner05814af2005-09-28 17:57:56 +00001727 }
1728
1729 return Size;
1730}
1731
1732/// getResultPatternCost - Compute the number of instructions for this pattern.
1733/// This is a temporary hack. We should really include the instruction
1734/// latencies in this calculation.
1735static unsigned getResultPatternCost(TreePatternNode *P) {
1736 if (P->isLeaf()) return 0;
1737
1738 unsigned Cost = P->getOperator()->isSubClassOf("Instruction");
1739 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
1740 Cost += getResultPatternCost(P->getChild(i));
1741 return Cost;
1742}
1743
1744// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
1745// In particular, we want to match maximal patterns first and lowest cost within
1746// a particular complexity first.
1747struct PatternSortingPredicate {
Evan Cheng0fc71982005-12-08 02:00:36 +00001748 PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
1749 DAGISelEmitter &ISE;
1750
Evan Cheng58e84a62005-12-14 22:02:59 +00001751 bool operator()(PatternToMatch *LHS,
1752 PatternToMatch *RHS) {
1753 unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), ISE);
1754 unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00001755 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
1756 if (LHSSize < RHSSize) return false;
1757
1758 // If the patterns have equal complexity, compare generated instruction cost
Evan Cheng58e84a62005-12-14 22:02:59 +00001759 return getResultPatternCost(LHS->getDstPattern()) <
1760 getResultPatternCost(RHS->getDstPattern());
Chris Lattner05814af2005-09-28 17:57:56 +00001761 }
1762};
1763
Nate Begeman6510b222005-12-01 04:51:06 +00001764/// getRegisterValueType - Look up and return the first ValueType of specified
1765/// RegisterClass record
Evan Cheng66a48bb2005-12-01 00:18:45 +00001766static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +00001767 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
1768 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +00001769 return MVT::Other;
1770}
1771
Chris Lattner72fe91c2005-09-24 00:40:24 +00001772
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001773/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
1774/// type information from it.
1775static void RemoveAllTypes(TreePatternNode *N) {
Nate Begemanb73628b2005-12-30 00:12:56 +00001776 N->removeTypes();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001777 if (!N->isLeaf())
1778 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1779 RemoveAllTypes(N->getChild(i));
1780}
Chris Lattner72fe91c2005-09-24 00:40:24 +00001781
Chris Lattner0614b622005-11-02 06:49:14 +00001782Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
1783 Record *N = Records.getDef(Name);
1784 assert(N && N->isSubClassOf("SDNode") && "Bad argument");
1785 return N;
1786}
1787
Evan Cheng51fecc82006-01-09 18:27:06 +00001788/// NodeHasProperty - return true if TreePatternNode has the specified
1789/// property.
1790static bool NodeHasProperty(TreePatternNode *N, SDNodeInfo::SDNP Property,
1791 DAGISelEmitter &ISE)
Evan Cheng7b05bd52005-12-23 22:11:47 +00001792{
1793 if (N->isLeaf()) return false;
1794 Record *Operator = N->getOperator();
1795 if (!Operator->isSubClassOf("SDNode")) return false;
1796
1797 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
Evan Cheng51fecc82006-01-09 18:27:06 +00001798 return NodeInfo.hasProperty(Property);
Evan Cheng7b05bd52005-12-23 22:11:47 +00001799}
1800
Evan Cheng51fecc82006-01-09 18:27:06 +00001801static bool PatternHasProperty(TreePatternNode *N, SDNodeInfo::SDNP Property,
1802 DAGISelEmitter &ISE)
Evan Cheng7b05bd52005-12-23 22:11:47 +00001803{
Evan Cheng51fecc82006-01-09 18:27:06 +00001804 if (NodeHasProperty(N, Property, ISE))
Evan Cheng7b05bd52005-12-23 22:11:47 +00001805 return true;
Evan Cheng51fecc82006-01-09 18:27:06 +00001806
1807 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1808 TreePatternNode *Child = N->getChild(i);
1809 if (PatternHasProperty(Child, Property, ISE))
1810 return true;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001811 }
1812
1813 return false;
1814}
1815
Evan Chengb915f312005-12-09 22:45:35 +00001816class PatternCodeEmitter {
1817private:
1818 DAGISelEmitter &ISE;
1819
Evan Cheng58e84a62005-12-14 22:02:59 +00001820 // Predicates.
1821 ListInit *Predicates;
1822 // Instruction selector pattern.
1823 TreePatternNode *Pattern;
1824 // Matched instruction.
1825 TreePatternNode *Instruction;
Evan Chengb915f312005-12-09 22:45:35 +00001826 unsigned PatternNo;
1827 std::ostream &OS;
1828 // Node to name mapping
Evan Chengf805c2e2006-01-12 19:35:54 +00001829 std::map<std::string, std::string> VariableMap;
1830 // Node to operator mapping
1831 std::map<std::string, Record*> OperatorMap;
Evan Chengb915f312005-12-09 22:45:35 +00001832 // Names of all the folded nodes which produce chains.
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001833 std::vector<std::pair<std::string, unsigned> > FoldedChains;
Evan Chengb915f312005-12-09 22:45:35 +00001834 unsigned TmpNo;
1835
1836public:
Evan Cheng58e84a62005-12-14 22:02:59 +00001837 PatternCodeEmitter(DAGISelEmitter &ise, ListInit *preds,
1838 TreePatternNode *pattern, TreePatternNode *instr,
Evan Chengb915f312005-12-09 22:45:35 +00001839 unsigned PatNum, std::ostream &os) :
Evan Cheng58e84a62005-12-14 22:02:59 +00001840 ISE(ise), Predicates(preds), Pattern(pattern), Instruction(instr),
Evan Cheng7b05bd52005-12-23 22:11:47 +00001841 PatternNo(PatNum), OS(os), TmpNo(0) {}
Evan Chengb915f312005-12-09 22:45:35 +00001842
1843 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
1844 /// if the match fails. At this point, we already know that the opcode for N
1845 /// matches, and the SDNode for the result has the RootName specified name.
1846 void EmitMatchCode(TreePatternNode *N, const std::string &RootName,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001847 bool &FoundChain, bool isRoot = false) {
Evan Cheng58e84a62005-12-14 22:02:59 +00001848
1849 // Emit instruction predicates. Each predicate is just a string for now.
1850 if (isRoot) {
1851 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
1852 if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
1853 Record *Def = Pred->getDef();
1854 if (Def->isSubClassOf("Predicate")) {
1855 if (i == 0)
1856 OS << " if (";
1857 else
1858 OS << " && ";
Evan Cheng5fb5e102005-12-20 20:08:01 +00001859 OS << "!(" << Def->getValueAsString("CondString") << ")";
Evan Cheng58e84a62005-12-14 22:02:59 +00001860 if (i == e-1)
1861 OS << ") goto P" << PatternNo << "Fail;\n";
1862 } else {
1863 Def->dump();
1864 assert(0 && "Unknown predicate type!");
1865 }
1866 }
1867 }
1868 }
1869
Evan Chengb915f312005-12-09 22:45:35 +00001870 if (N->isLeaf()) {
1871 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1872 OS << " if (cast<ConstantSDNode>(" << RootName
1873 << ")->getSignExtended() != " << II->getValue() << ")\n"
1874 << " goto P" << PatternNo << "Fail;\n";
1875 return;
1876 } else if (!NodeIsComplexPattern(N)) {
1877 assert(0 && "Cannot match this as a leaf value!");
1878 abort();
1879 }
1880 }
1881
1882 // If this node has a name associated with it, capture it in VariableMap. If
1883 // we already saw this in the pattern, emit code to verify dagness.
1884 if (!N->getName().empty()) {
1885 std::string &VarMapEntry = VariableMap[N->getName()];
1886 if (VarMapEntry.empty()) {
1887 VarMapEntry = RootName;
1888 } else {
1889 // If we get here, this is a second reference to a specific name. Since
1890 // we already have checked that the first reference is valid, we don't
1891 // have to recursively match it, just check that it's the same as the
1892 // previously named thing.
1893 OS << " if (" << VarMapEntry << " != " << RootName
1894 << ") goto P" << PatternNo << "Fail;\n";
1895 return;
1896 }
Evan Chengf805c2e2006-01-12 19:35:54 +00001897
1898 if (!N->isLeaf())
1899 OperatorMap[N->getName()] = N->getOperator();
Evan Chengb915f312005-12-09 22:45:35 +00001900 }
1901
1902
1903 // Emit code to load the child nodes and match their contents recursively.
1904 unsigned OpNo = 0;
Evan Cheng51fecc82006-01-09 18:27:06 +00001905 bool HasChain = NodeHasProperty(N, SDNodeInfo::SDNPHasChain, ISE);
Evan Cheng86217892005-12-12 19:37:43 +00001906 if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00001907 OpNo = 1;
1908 if (!isRoot) {
Evan Cheng1129e872005-12-10 00:09:17 +00001909 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(N->getOperator());
Evan Chengb915f312005-12-09 22:45:35 +00001910 OS << " if (!" << RootName << ".hasOneUse()) goto P"
1911 << PatternNo << "Fail; // Multiple uses of actual result?\n";
1912 OS << " if (CodeGenMap.count(" << RootName
Evan Cheng1129e872005-12-10 00:09:17 +00001913 << ".getValue(" << CInfo.getNumResults() << "))) goto P"
Evan Chengb915f312005-12-09 22:45:35 +00001914 << PatternNo << "Fail; // Already selected for a chain use?\n";
1915 }
Evan Cheng1cf6db22006-01-06 00:41:12 +00001916 if (!FoundChain) {
1917 OS << " SDOperand Chain = " << RootName << ".getOperand(0);\n";
1918 FoundChain = true;
1919 }
Evan Chengb915f312005-12-09 22:45:35 +00001920 }
1921
1922 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
Chris Lattner4e3c8e512006-01-03 22:55:16 +00001923 OS << " SDOperand " << RootName << OpNo << " = "
1924 << RootName << ".getOperand(" << OpNo << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00001925 TreePatternNode *Child = N->getChild(i);
1926
1927 if (!Child->isLeaf()) {
1928 // If it's not a leaf, recursively match.
1929 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(Child->getOperator());
1930 OS << " if (" << RootName << OpNo << ".getOpcode() != "
1931 << CInfo.getEnumName() << ") goto P" << PatternNo << "Fail;\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00001932 EmitMatchCode(Child, RootName + utostr(OpNo), FoundChain);
Evan Cheng51fecc82006-01-09 18:27:06 +00001933 if (NodeHasProperty(Child, SDNodeInfo::SDNPHasChain, ISE)) {
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001934 FoldedChains.push_back(std::make_pair(RootName + utostr(OpNo),
1935 CInfo.getNumResults()));
1936 }
Evan Chengb915f312005-12-09 22:45:35 +00001937 } else {
1938 // If this child has a name associated with it, capture it in VarMap. If
1939 // we already saw this in the pattern, emit code to verify dagness.
1940 if (!Child->getName().empty()) {
1941 std::string &VarMapEntry = VariableMap[Child->getName()];
1942 if (VarMapEntry.empty()) {
1943 VarMapEntry = RootName + utostr(OpNo);
1944 } else {
1945 // If we get here, this is a second reference to a specific name. Since
1946 // we already have checked that the first reference is valid, we don't
1947 // have to recursively match it, just check that it's the same as the
1948 // previously named thing.
1949 OS << " if (" << VarMapEntry << " != " << RootName << OpNo
1950 << ") goto P" << PatternNo << "Fail;\n";
1951 continue;
1952 }
1953 }
1954
1955 // Handle leaves of various types.
1956 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
1957 Record *LeafRec = DI->getDef();
1958 if (LeafRec->isSubClassOf("RegisterClass")) {
1959 // Handle register references. Nothing to do here.
1960 } else if (LeafRec->isSubClassOf("Register")) {
Evan Cheng97938882005-12-22 02:24:50 +00001961 // Handle register references.
Evan Chengb915f312005-12-09 22:45:35 +00001962 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
1963 // Handle complex pattern. Nothing to do here.
Evan Cheng01f318b2005-12-14 02:21:57 +00001964 } else if (LeafRec->getName() == "srcvalue") {
1965 // Place holder for SRCVALUE nodes. Nothing to do here.
Evan Chengb915f312005-12-09 22:45:35 +00001966 } else if (LeafRec->isSubClassOf("ValueType")) {
1967 // Make sure this is the specified value type.
1968 OS << " if (cast<VTSDNode>(" << RootName << OpNo << ")->getVT() != "
1969 << "MVT::" << LeafRec->getName() << ") goto P" << PatternNo
1970 << "Fail;\n";
1971 } else if (LeafRec->isSubClassOf("CondCode")) {
1972 // Make sure this is the specified cond code.
1973 OS << " if (cast<CondCodeSDNode>(" << RootName << OpNo
1974 << ")->get() != " << "ISD::" << LeafRec->getName()
1975 << ") goto P" << PatternNo << "Fail;\n";
1976 } else {
1977 Child->dump();
Evan Cheng97938882005-12-22 02:24:50 +00001978 std::cerr << " ";
Evan Chengb915f312005-12-09 22:45:35 +00001979 assert(0 && "Unknown leaf type!");
1980 }
1981 } else if (IntInit *II = dynamic_cast<IntInit*>(Child->getLeafValue())) {
1982 OS << " if (!isa<ConstantSDNode>(" << RootName << OpNo << ") ||\n"
1983 << " cast<ConstantSDNode>(" << RootName << OpNo
1984 << ")->getSignExtended() != " << II->getValue() << ")\n"
1985 << " goto P" << PatternNo << "Fail;\n";
1986 } else {
1987 Child->dump();
1988 assert(0 && "Unknown leaf type!");
1989 }
1990 }
1991 }
1992
1993 // If there is a node predicate for this, emit the call.
1994 if (!N->getPredicateFn().empty())
1995 OS << " if (!" << N->getPredicateFn() << "(" << RootName
1996 << ".Val)) goto P" << PatternNo << "Fail;\n";
1997 }
1998
1999 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
2000 /// we actually have to build a DAG!
2001 std::pair<unsigned, unsigned>
2002 EmitResultCode(TreePatternNode *N, bool isRoot = false) {
2003 // This is something selected from the pattern we matched.
2004 if (!N->getName().empty()) {
2005 assert(!isRoot && "Root of pattern cannot be a leaf!");
2006 std::string &Val = VariableMap[N->getName()];
2007 assert(!Val.empty() &&
2008 "Variable referenced but not defined and not caught earlier!");
2009 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
2010 // Already selected this operand, just return the tmpval.
2011 return std::make_pair(1, atoi(Val.c_str()+3));
2012 }
2013
2014 const ComplexPattern *CP;
2015 unsigned ResNo = TmpNo++;
2016 unsigned NumRes = 1;
2017 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
Nate Begemanb73628b2005-12-30 00:12:56 +00002018 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
2019 switch (N->getTypeNum(0)) {
Evan Chengb915f312005-12-09 22:45:35 +00002020 default: assert(0 && "Unknown type for constant node!");
2021 case MVT::i1: OS << " bool Tmp"; break;
2022 case MVT::i8: OS << " unsigned char Tmp"; break;
2023 case MVT::i16: OS << " unsigned short Tmp"; break;
2024 case MVT::i32: OS << " unsigned Tmp"; break;
2025 case MVT::i64: OS << " uint64_t Tmp"; break;
2026 }
2027 OS << ResNo << "C = cast<ConstantSDNode>(" << Val << ")->getValue();\n";
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002028 OS << " SDOperand Tmp" << utostr(ResNo)
2029 << " = CurDAG->getTargetConstant(Tmp"
Nate Begemanb73628b2005-12-30 00:12:56 +00002030 << ResNo << "C, MVT::" << getEnumName(N->getTypeNum(0)) << ");\n";
Evan Chengbb48e332006-01-12 07:54:57 +00002031 } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
Evan Chengf805c2e2006-01-12 19:35:54 +00002032 Record *Op = OperatorMap[N->getName()];
2033 // Transform ExternalSymbol to TargetExternalSymbol
2034 if (Op && Op->getName() == "externalsym") {
2035 OS << " SDOperand Tmp" << ResNo
2036 << " = CurDAG->getTargetExternalSymbol(cast<ExternalSymbolSDNode>("
2037 << Val << ")->getSymbol(), MVT::" << getEnumName(N->getTypeNum(0))
2038 << ");\n";
2039 } else
2040 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Evan Chengb915f312005-12-09 22:45:35 +00002041 } else if (!N->isLeaf() && N->getOperator()->getName() == "tglobaladdr") {
Evan Chengf805c2e2006-01-12 19:35:54 +00002042 Record *Op = OperatorMap[N->getName()];
2043 // Transform GlobalAddress to TargetGlobalAddress
2044 if (Op && Op->getName() == "globaladdr") {
2045 OS << " SDOperand Tmp" << ResNo
2046 << " = CurDAG->getTargetGlobalAddress(cast<GlobalAddressSDNode>("
2047 << Val << ")->getGlobal(), MVT::" << getEnumName(N->getTypeNum(0))
2048 << ");\n";
2049 } else
2050 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002051 } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
2052 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Evan Chengbb48e332006-01-12 07:54:57 +00002053 } else if (!N->isLeaf() && N->getOperator()->getName() == "tconstpool") {
2054 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Evan Chengb915f312005-12-09 22:45:35 +00002055 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
2056 std::string Fn = CP->getSelectFunc();
2057 NumRes = CP->getNumOperands();
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002058 OS << " SDOperand ";
Jeff Cohen60e91872006-01-04 03:23:30 +00002059 for (unsigned i = 0; i < NumRes - 1; ++i)
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002060 OS << "Tmp" << (i+ResNo) << ",";
Jeff Cohen60e91872006-01-04 03:23:30 +00002061 OS << "Tmp" << (NumRes - 1 + ResNo) << ";\n";
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002062
Evan Chengb915f312005-12-09 22:45:35 +00002063 OS << " if (!" << Fn << "(" << Val;
Jeff Cohen60e91872006-01-04 03:23:30 +00002064 for (unsigned i = 0; i < NumRes; i++)
Evan Chengbcecf332005-12-17 01:19:28 +00002065 OS << ", Tmp" << i + ResNo;
Evan Chengb915f312005-12-09 22:45:35 +00002066 OS << ")) goto P" << PatternNo << "Fail;\n";
2067 TmpNo = ResNo + NumRes;
2068 } else {
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002069 OS << " SDOperand Tmp" << ResNo << " = Select(" << Val << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002070 }
2071 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2072 // value if used multiple times by this pattern result.
2073 Val = "Tmp"+utostr(ResNo);
2074 return std::make_pair(NumRes, ResNo);
2075 }
2076
2077 if (N->isLeaf()) {
2078 // If this is an explicit register reference, handle it.
2079 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
2080 unsigned ResNo = TmpNo++;
2081 if (DI->getDef()->isSubClassOf("Register")) {
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002082 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getRegister("
Evan Chengb915f312005-12-09 22:45:35 +00002083 << ISE.getQualifiedName(DI->getDef()) << ", MVT::"
Nate Begemanb73628b2005-12-30 00:12:56 +00002084 << getEnumName(N->getTypeNum(0))
Evan Chengb915f312005-12-09 22:45:35 +00002085 << ");\n";
2086 return std::make_pair(1, ResNo);
2087 }
2088 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
2089 unsigned ResNo = TmpNo++;
Nate Begemanb73628b2005-12-30 00:12:56 +00002090 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002091 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetConstant("
Evan Chengb915f312005-12-09 22:45:35 +00002092 << II->getValue() << ", MVT::"
Nate Begemanb73628b2005-12-30 00:12:56 +00002093 << getEnumName(N->getTypeNum(0))
Evan Chengb915f312005-12-09 22:45:35 +00002094 << ");\n";
2095 return std::make_pair(1, ResNo);
2096 }
2097
2098 N->dump();
2099 assert(0 && "Unknown leaf type!");
2100 return std::make_pair(1, ~0U);
2101 }
2102
2103 Record *Op = N->getOperator();
2104 if (Op->isSubClassOf("Instruction")) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00002105 const CodeGenTarget &CGT = ISE.getTargetInfo();
2106 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
Evan Cheng4fba2812005-12-20 07:37:41 +00002107 const DAGInstruction &Inst = ISE.getInstruction(Op);
Evan Cheng7b05bd52005-12-23 22:11:47 +00002108 bool HasImpInputs = Inst.getNumImpOperands() > 0;
2109 bool HasImpResults = Inst.getNumImpResults() > 0;
Evan Cheng51fecc82006-01-09 18:27:06 +00002110 bool HasOptInFlag = isRoot &&
2111 NodeHasProperty(Pattern, SDNodeInfo::SDNPOptInFlag, ISE);
2112 bool HasInFlag = isRoot &&
2113 NodeHasProperty(Pattern, SDNodeInfo::SDNPInFlag, ISE);
2114 bool HasOutFlag = HasImpResults ||
2115 (isRoot && PatternHasProperty(Pattern, SDNodeInfo::SDNPOutFlag, ISE));
2116 bool HasChain = II.hasCtrlDep ||
2117 (isRoot && PatternHasProperty(Pattern, SDNodeInfo::SDNPHasChain, ISE));
Evan Cheng4fba2812005-12-20 07:37:41 +00002118
Evan Cheng51fecc82006-01-09 18:27:06 +00002119 if (HasOutFlag || HasInFlag || HasOptInFlag || HasImpInputs)
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002120 OS << " SDOperand InFlag = SDOperand(0, 0);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002121
Evan Chengb915f312005-12-09 22:45:35 +00002122 // Determine operand emission order. Complex pattern first.
2123 std::vector<std::pair<unsigned, TreePatternNode*> > EmitOrder;
2124 std::vector<std::pair<unsigned, TreePatternNode*> >::iterator OI;
2125 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
2126 TreePatternNode *Child = N->getChild(i);
2127 if (i == 0) {
2128 EmitOrder.push_back(std::make_pair(i, Child));
2129 OI = EmitOrder.begin();
2130 } else if (NodeIsComplexPattern(Child)) {
2131 OI = EmitOrder.insert(OI, std::make_pair(i, Child));
2132 } else {
2133 EmitOrder.push_back(std::make_pair(i, Child));
2134 }
2135 }
2136
2137 // Emit all of the operands.
2138 std::vector<std::pair<unsigned, unsigned> > NumTemps(EmitOrder.size());
2139 for (unsigned i = 0, e = EmitOrder.size(); i != e; ++i) {
2140 unsigned OpOrder = EmitOrder[i].first;
2141 TreePatternNode *Child = EmitOrder[i].second;
2142 std::pair<unsigned, unsigned> NumTemp = EmitResultCode(Child);
2143 NumTemps[OpOrder] = NumTemp;
2144 }
2145
2146 // List all the operands in the right order.
2147 std::vector<unsigned> Ops;
2148 for (unsigned i = 0, e = NumTemps.size(); i != e; i++) {
2149 for (unsigned j = 0; j < NumTemps[i].first; j++)
2150 Ops.push_back(NumTemps[i].second + j);
2151 }
2152
Evan Chengb915f312005-12-09 22:45:35 +00002153 // Emit all the chain and CopyToReg stuff.
Evan Chengb2c6d492006-01-11 22:16:13 +00002154 bool ChainEmitted = HasChain;
Evan Cheng7b05bd52005-12-23 22:11:47 +00002155 if (HasChain)
Evan Cheng86217892005-12-12 19:37:43 +00002156 OS << " Chain = Select(Chain);\n";
Evan Cheng51fecc82006-01-09 18:27:06 +00002157 if (HasImpInputs)
Evan Chengb2c6d492006-01-11 22:16:13 +00002158 EmitCopyToRegs(Pattern, "N", ChainEmitted, true);
Evan Cheng51fecc82006-01-09 18:27:06 +00002159 if (HasInFlag || HasOptInFlag) {
2160 unsigned FlagNo = (unsigned) HasChain + Pattern->getNumChildren();
2161 if (HasOptInFlag)
2162 OS << " if (N.getNumOperands() == " << FlagNo+1 << ") ";
2163 else
2164 OS << " ";
2165 OS << "InFlag = Select(N.getOperand(" << FlagNo << "));\n";
2166 }
Evan Chengb915f312005-12-09 22:45:35 +00002167
Evan Chengb915f312005-12-09 22:45:35 +00002168 unsigned NumResults = Inst.getNumResults();
2169 unsigned ResNo = TmpNo++;
2170 if (!isRoot) {
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002171 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002172 << II.Namespace << "::" << II.TheDef->getName();
Nate Begemanb73628b2005-12-30 00:12:56 +00002173 if (N->getTypeNum(0) != MVT::isVoid)
2174 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
Evan Cheng7b05bd52005-12-23 22:11:47 +00002175 if (HasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002176 OS << ", MVT::Flag";
Evan Chengbcecf332005-12-17 01:19:28 +00002177
Evan Chengb915f312005-12-09 22:45:35 +00002178 unsigned LastOp = 0;
2179 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2180 LastOp = Ops[i];
2181 OS << ", Tmp" << LastOp;
2182 }
2183 OS << ");\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00002184 if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00002185 // Must have at least one result
2186 OS << " Chain = Tmp" << LastOp << ".getValue("
2187 << NumResults << ");\n";
2188 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002189 } else if (HasChain || HasOutFlag) {
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002190 OS << " SDOperand Result = CurDAG->getTargetNode("
Evan Chengb915f312005-12-09 22:45:35 +00002191 << II.Namespace << "::" << II.TheDef->getName();
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002192
2193 // Output order: results, chain, flags
2194 // Result types.
Evan Chengbcecf332005-12-17 01:19:28 +00002195 if (NumResults > 0) {
Nate Begemanb73628b2005-12-30 00:12:56 +00002196 if (N->getTypeNum(0) != MVT::isVoid)
2197 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
Evan Chengbcecf332005-12-17 01:19:28 +00002198 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002199 if (HasChain)
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002200 OS << ", MVT::Other";
Evan Cheng7b05bd52005-12-23 22:11:47 +00002201 if (HasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002202 OS << ", MVT::Flag";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002203
2204 // Inputs.
Evan Chengb915f312005-12-09 22:45:35 +00002205 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2206 OS << ", Tmp" << Ops[i];
Evan Cheng7b05bd52005-12-23 22:11:47 +00002207 if (HasChain) OS << ", Chain";
Evan Cheng51fecc82006-01-09 18:27:06 +00002208 if (HasInFlag || HasImpInputs) OS << ", InFlag";
Evan Chengb915f312005-12-09 22:45:35 +00002209 OS << ");\n";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002210
2211 unsigned ValNo = 0;
Evan Chengf9fc25d2005-12-19 22:40:04 +00002212 for (unsigned i = 0; i < NumResults; i++) {
2213 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = Result"
2214 << ".getValue(" << ValNo << ");\n";
2215 ValNo++;
2216 }
2217
Evan Cheng7b05bd52005-12-23 22:11:47 +00002218 if (HasChain)
Evan Cheng4fba2812005-12-20 07:37:41 +00002219 OS << " Chain = Result.getValue(" << ValNo << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002220
Evan Cheng7b05bd52005-12-23 22:11:47 +00002221 if (HasOutFlag)
Evan Cheng97938882005-12-22 02:24:50 +00002222 OS << " InFlag = Result.getValue("
Evan Cheng7b05bd52005-12-23 22:11:47 +00002223 << ValNo + (unsigned)HasChain << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002224
Evan Cheng7b05bd52005-12-23 22:11:47 +00002225 if (HasImpResults) {
Evan Chengb2c6d492006-01-11 22:16:13 +00002226 if (EmitCopyFromRegs(N, ChainEmitted)) {
Evan Cheng97938882005-12-22 02:24:50 +00002227 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = "
2228 << "Result.getValue(" << ValNo << ");\n";
2229 ValNo++;
2230 }
2231 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002232
Evan Cheng7b05bd52005-12-23 22:11:47 +00002233 // User does not expect that the instruction produces a chain!
Evan Cheng51fecc82006-01-09 18:27:06 +00002234 bool NodeHasChain =
2235 NodeHasProperty(Pattern, SDNodeInfo::SDNPHasChain, ISE);
2236 bool AddedChain = HasChain && !NodeHasChain;
2237 if (NodeHasChain)
Evan Cheng97938882005-12-22 02:24:50 +00002238 OS << " CodeGenMap[N.getValue(" << ValNo++ << ")] = Chain;\n";
2239
2240 if (FoldedChains.size() > 0) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002241 OS << " ";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002242 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Evan Cheng4fba2812005-12-20 07:37:41 +00002243 OS << "CodeGenMap[" << FoldedChains[j].first << ".getValue("
2244 << FoldedChains[j].second << ")] = ";
2245 OS << "Chain;\n";
Evan Chengb915f312005-12-09 22:45:35 +00002246 }
Evan Chengf9fc25d2005-12-19 22:40:04 +00002247
Evan Cheng7b05bd52005-12-23 22:11:47 +00002248 if (HasOutFlag)
Evan Cheng97938882005-12-22 02:24:50 +00002249 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = InFlag;\n";
2250
Evan Cheng7b05bd52005-12-23 22:11:47 +00002251 if (AddedChain && HasOutFlag) {
Evan Cheng97938882005-12-22 02:24:50 +00002252 if (NumResults == 0) {
2253 OS << " return Result.getValue(N.ResNo+1);\n";
2254 } else {
2255 OS << " if (N.ResNo < " << NumResults << ")\n";
2256 OS << " return Result.getValue(N.ResNo);\n";
2257 OS << " else\n";
2258 OS << " return Result.getValue(N.ResNo+1);\n";
2259 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002260 } else {
Evan Chenge0870512005-12-20 00:06:17 +00002261 OS << " return Result.getValue(N.ResNo);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002262 }
Evan Chengb915f312005-12-09 22:45:35 +00002263 } else {
2264 // If this instruction is the root, and if there is only one use of it,
2265 // use SelectNodeTo instead of getTargetNode to avoid an allocation.
2266 OS << " if (N.Val->hasOneUse()) {\n";
2267 OS << " return CurDAG->SelectNodeTo(N.Val, "
Evan Chengbcecf332005-12-17 01:19:28 +00002268 << II.Namespace << "::" << II.TheDef->getName();
Nate Begemanb73628b2005-12-30 00:12:56 +00002269 if (N->getTypeNum(0) != MVT::isVoid)
2270 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
Evan Cheng7b05bd52005-12-23 22:11:47 +00002271 if (HasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002272 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002273 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2274 OS << ", Tmp" << Ops[i];
Evan Cheng51fecc82006-01-09 18:27:06 +00002275 if (HasInFlag || HasImpInputs)
Evan Chengb915f312005-12-09 22:45:35 +00002276 OS << ", InFlag";
2277 OS << ");\n";
2278 OS << " } else {\n";
2279 OS << " return CodeGenMap[N] = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002280 << II.Namespace << "::" << II.TheDef->getName();
Nate Begemanb73628b2005-12-30 00:12:56 +00002281 if (N->getTypeNum(0) != MVT::isVoid)
2282 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
Evan Cheng7b05bd52005-12-23 22:11:47 +00002283 if (HasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002284 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002285 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2286 OS << ", Tmp" << Ops[i];
Evan Cheng51fecc82006-01-09 18:27:06 +00002287 if (HasInFlag || HasImpInputs)
Evan Chengb915f312005-12-09 22:45:35 +00002288 OS << ", InFlag";
2289 OS << ");\n";
2290 OS << " }\n";
2291 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002292
Evan Chengb915f312005-12-09 22:45:35 +00002293 return std::make_pair(1, ResNo);
2294 } else if (Op->isSubClassOf("SDNodeXForm")) {
2295 assert(N->getNumChildren() == 1 && "node xform should have one child!");
Evan Cheng58e84a62005-12-14 22:02:59 +00002296 unsigned OpVal = EmitResultCode(N->getChild(0)).second;
Evan Chengb915f312005-12-09 22:45:35 +00002297 unsigned ResNo = TmpNo++;
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002298 OS << " SDOperand Tmp" << ResNo << " = Transform_" << Op->getName()
Evan Chengb915f312005-12-09 22:45:35 +00002299 << "(Tmp" << OpVal << ".Val);\n";
2300 if (isRoot) {
2301 OS << " CodeGenMap[N] = Tmp" << ResNo << ";\n";
2302 OS << " return Tmp" << ResNo << ";\n";
2303 }
2304 return std::make_pair(1, ResNo);
2305 } else {
2306 N->dump();
Chris Lattner7893f132006-01-11 01:33:49 +00002307 std::cerr << "\n";
2308 throw std::string("Unknown node in result pattern!");
Evan Chengb915f312005-12-09 22:45:35 +00002309 }
2310 }
2311
2312 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat' and
2313 /// add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
2314 /// 'Pat' may be missing types. If we find an unresolved type to add a check
2315 /// for, this returns true otherwise false if Pat has all types.
2316 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
2317 const std::string &Prefix) {
2318 // Did we find one?
2319 if (!Pat->hasTypeSet()) {
2320 // Move a type over from 'other' to 'pat'.
Nate Begemanb73628b2005-12-30 00:12:56 +00002321 Pat->setTypes(Other->getExtTypes());
Evan Chengb915f312005-12-09 22:45:35 +00002322 OS << " if (" << Prefix << ".Val->getValueType(0) != MVT::"
Nate Begemanb73628b2005-12-30 00:12:56 +00002323 << getName(Pat->getTypeNum(0)) << ") goto P" << PatternNo << "Fail;\n";
Evan Chengb915f312005-12-09 22:45:35 +00002324 return true;
Evan Chengb915f312005-12-09 22:45:35 +00002325 }
2326
Evan Cheng51fecc82006-01-09 18:27:06 +00002327 unsigned OpNo =
2328 (unsigned) NodeHasProperty(Pat, SDNodeInfo::SDNPHasChain, ISE);
Evan Chengb915f312005-12-09 22:45:35 +00002329 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
2330 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
2331 Prefix + utostr(OpNo)))
2332 return true;
2333 return false;
2334 }
2335
2336private:
Evan Cheng51fecc82006-01-09 18:27:06 +00002337 /// EmitCopyToRegs - Emit the flag operands for the DAG that is
Evan Chengb915f312005-12-09 22:45:35 +00002338 /// being built.
Evan Cheng51fecc82006-01-09 18:27:06 +00002339 void EmitCopyToRegs(TreePatternNode *N, const std::string &RootName,
Evan Chengb2c6d492006-01-11 22:16:13 +00002340 bool &ChainEmitted, bool isRoot = false) {
Evan Chengb915f312005-12-09 22:45:35 +00002341 const CodeGenTarget &T = ISE.getTargetInfo();
Evan Cheng51fecc82006-01-09 18:27:06 +00002342 unsigned OpNo =
2343 (unsigned) NodeHasProperty(N, SDNodeInfo::SDNPHasChain, ISE);
Evan Chengb915f312005-12-09 22:45:35 +00002344 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
2345 TreePatternNode *Child = N->getChild(i);
2346 if (!Child->isLeaf()) {
Evan Chengb2c6d492006-01-11 22:16:13 +00002347 EmitCopyToRegs(Child, RootName + utostr(OpNo), ChainEmitted);
Evan Chengb915f312005-12-09 22:45:35 +00002348 } else {
2349 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2350 Record *RR = DI->getDef();
2351 if (RR->isSubClassOf("Register")) {
2352 MVT::ValueType RVT = getRegisterValueType(RR, T);
Evan Chengbcecf332005-12-17 01:19:28 +00002353 if (RVT == MVT::Flag) {
2354 OS << " InFlag = Select(" << RootName << OpNo << ");\n";
Evan Chengb2c6d492006-01-11 22:16:13 +00002355 } else {
2356 if (!ChainEmitted) {
2357 OS << " SDOperand Chain = CurDAG->getEntryNode();\n";
2358 ChainEmitted = true;
2359 }
Evan Chengb915f312005-12-09 22:45:35 +00002360 OS << " SDOperand " << RootName << "CR" << i << ";\n";
2361 OS << " " << RootName << "CR" << i
2362 << " = CurDAG->getCopyToReg(Chain, CurDAG->getRegister("
2363 << ISE.getQualifiedName(RR) << ", MVT::"
2364 << getEnumName(RVT) << ")"
2365 << ", Select(" << RootName << OpNo << "), InFlag);\n";
2366 OS << " Chain = " << RootName << "CR" << i
2367 << ".getValue(0);\n";
2368 OS << " InFlag = " << RootName << "CR" << i
2369 << ".getValue(1);\n";
Evan Chengb915f312005-12-09 22:45:35 +00002370 }
2371 }
2372 }
2373 }
2374 }
2375 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002376
2377 /// EmitCopyFromRegs - Emit code to copy result to physical registers
Evan Cheng7b05bd52005-12-23 22:11:47 +00002378 /// as specified by the instruction. It returns true if any copy is
2379 /// emitted.
Evan Chengb2c6d492006-01-11 22:16:13 +00002380 bool EmitCopyFromRegs(TreePatternNode *N, bool &ChainEmitted) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00002381 bool RetVal = false;
Evan Cheng4fba2812005-12-20 07:37:41 +00002382 Record *Op = N->getOperator();
2383 if (Op->isSubClassOf("Instruction")) {
2384 const DAGInstruction &Inst = ISE.getInstruction(Op);
2385 const CodeGenTarget &CGT = ISE.getTargetInfo();
2386 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
2387 unsigned NumImpResults = Inst.getNumImpResults();
2388 for (unsigned i = 0; i < NumImpResults; i++) {
2389 Record *RR = Inst.getImpResult(i);
2390 if (RR->isSubClassOf("Register")) {
2391 MVT::ValueType RVT = getRegisterValueType(RR, CGT);
2392 if (RVT != MVT::Flag) {
Evan Chengb2c6d492006-01-11 22:16:13 +00002393 if (!ChainEmitted) {
2394 OS << " SDOperand Chain = CurDAG->getEntryNode();\n";
2395 ChainEmitted = true;
Evan Cheng4fba2812005-12-20 07:37:41 +00002396 }
Evan Chengb2c6d492006-01-11 22:16:13 +00002397 OS << " Result = CurDAG->getCopyFromReg(Chain, "
2398 << ISE.getQualifiedName(RR)
2399 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2400 OS << " Chain = Result.getValue(1);\n";
2401 OS << " InFlag = Result.getValue(2);\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00002402 RetVal = true;
Evan Cheng4fba2812005-12-20 07:37:41 +00002403 }
2404 }
2405 }
2406 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002407 return RetVal;
Evan Cheng4fba2812005-12-20 07:37:41 +00002408 }
Evan Chengb915f312005-12-09 22:45:35 +00002409};
2410
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002411/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
2412/// stream to match the pattern, and generate the code for the match if it
2413/// succeeds.
Chris Lattner3f7e9142005-09-23 20:52:47 +00002414void DAGISelEmitter::EmitCodeForPattern(PatternToMatch &Pattern,
2415 std::ostream &OS) {
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002416 static unsigned PatternCount = 0;
2417 unsigned PatternNo = PatternCount++;
2418 OS << " { // Pattern #" << PatternNo << ": ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002419 Pattern.getSrcPattern()->print(OS);
Chris Lattner05814af2005-09-28 17:57:56 +00002420 OS << "\n // Emits: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002421 Pattern.getDstPattern()->print(OS);
Chris Lattner3f7e9142005-09-23 20:52:47 +00002422 OS << "\n";
Evan Cheng58e84a62005-12-14 22:02:59 +00002423 OS << " // Pattern complexity = "
2424 << getPatternSize(Pattern.getSrcPattern(), *this)
2425 << " cost = "
2426 << getResultPatternCost(Pattern.getDstPattern()) << "\n";
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002427
Evan Cheng58e84a62005-12-14 22:02:59 +00002428 PatternCodeEmitter Emitter(*this, Pattern.getPredicates(),
2429 Pattern.getSrcPattern(), Pattern.getDstPattern(),
2430 PatternNo, OS);
Evan Chengb915f312005-12-09 22:45:35 +00002431
Chris Lattner8fc35682005-09-23 23:16:51 +00002432 // Emit the matcher, capturing named arguments in VariableMap.
Evan Cheng7b05bd52005-12-23 22:11:47 +00002433 bool FoundChain = false;
2434 Emitter.EmitMatchCode(Pattern.getSrcPattern(), "N", FoundChain,
2435 true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002436
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002437 // TP - Get *SOME* tree pattern, we don't care which.
2438 TreePattern &TP = *PatternFragments.begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00002439
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002440 // At this point, we know that we structurally match the pattern, but the
2441 // types of the nodes may not match. Figure out the fewest number of type
2442 // comparisons we need to emit. For example, if there is only one integer
2443 // type supported by a target, there should be no type comparisons at all for
2444 // integer patterns!
2445 //
2446 // To figure out the fewest number of type checks needed, clone the pattern,
2447 // remove the types, then perform type inference on the pattern as a whole.
2448 // If there are unresolved types, emit an explicit check for those types,
2449 // apply the type to the tree, then rerun type inference. Iterate until all
2450 // types are resolved.
2451 //
Evan Cheng58e84a62005-12-14 22:02:59 +00002452 TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002453 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00002454
2455 do {
2456 // Resolve/propagate as many types as possible.
2457 try {
2458 bool MadeChange = true;
2459 while (MadeChange)
2460 MadeChange = Pat->ApplyTypeConstraints(TP,true/*Ignore reg constraints*/);
2461 } catch (...) {
2462 assert(0 && "Error: could not find consistent types for something we"
2463 " already decided was ok!");
2464 abort();
2465 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002466
Chris Lattner7e82f132005-10-15 21:34:21 +00002467 // Insert a check for an unresolved type and add it to the tree. If we find
2468 // an unresolved type to add a check for, this returns true and we iterate,
2469 // otherwise we are done.
Evan Cheng58e84a62005-12-14 22:02:59 +00002470 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N"));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00002471
Evan Cheng58e84a62005-12-14 22:02:59 +00002472 Emitter.EmitResultCode(Pattern.getDstPattern(), true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002473
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002474 delete Pat;
2475
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002476 OS << " }\n P" << PatternNo << "Fail:\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002477}
2478
Chris Lattner37481472005-09-26 21:59:35 +00002479
2480namespace {
2481 /// CompareByRecordName - An ordering predicate that implements less-than by
2482 /// comparing the names records.
2483 struct CompareByRecordName {
2484 bool operator()(const Record *LHS, const Record *RHS) const {
2485 // Sort by name first.
2486 if (LHS->getName() < RHS->getName()) return true;
2487 // If both names are equal, sort by pointer.
2488 return LHS->getName() == RHS->getName() && LHS < RHS;
2489 }
2490 };
2491}
2492
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002493void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002494 std::string InstNS = Target.inst_begin()->second.Namespace;
2495 if (!InstNS.empty()) InstNS += "::";
2496
Chris Lattner602f6922006-01-04 00:25:00 +00002497 // Group the patterns by their top-level opcodes.
2498 std::map<Record*, std::vector<PatternToMatch*>,
2499 CompareByRecordName> PatternsByOpcode;
2500 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
2501 TreePatternNode *Node = PatternsToMatch[i].getSrcPattern();
2502 if (!Node->isLeaf()) {
2503 PatternsByOpcode[Node->getOperator()].push_back(&PatternsToMatch[i]);
2504 } else {
2505 const ComplexPattern *CP;
2506 if (IntInit *II =
2507 dynamic_cast<IntInit*>(Node->getLeafValue())) {
2508 PatternsByOpcode[getSDNodeNamed("imm")].push_back(&PatternsToMatch[i]);
2509 } else if ((CP = NodeGetComplexPattern(Node, *this))) {
2510 std::vector<Record*> OpNodes = CP->getRootNodes();
2511 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
2512 PatternsByOpcode[OpNodes[j]].insert(PatternsByOpcode[OpNodes[j]].begin(),
2513 &PatternsToMatch[i]);
2514 }
2515 } else {
2516 std::cerr << "Unrecognized opcode '";
2517 Node->dump();
2518 std::cerr << "' on tree pattern '";
2519 std::cerr << PatternsToMatch[i].getDstPattern()->getOperator()->getName();
2520 std::cerr << "'!\n";
2521 exit(1);
2522 }
2523 }
2524 }
2525
2526 // Emit one Select_* method for each top-level opcode. We do this instead of
2527 // emitting one giant switch statement to support compilers where this will
2528 // result in the recursive functions taking less stack space.
2529 for (std::map<Record*, std::vector<PatternToMatch*>,
2530 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2531 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
2532 OS << "SDOperand Select_" << PBOI->first->getName() << "(SDOperand N) {\n";
2533
2534 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
2535 std::vector<PatternToMatch*> &Patterns = PBOI->second;
2536
2537 // We want to emit all of the matching code now. However, we want to emit
2538 // the matches in order of minimal cost. Sort the patterns so the least
2539 // cost one is at the start.
2540 std::stable_sort(Patterns.begin(), Patterns.end(),
2541 PatternSortingPredicate(*this));
2542
2543 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
2544 EmitCodeForPattern(*Patterns[i], OS);
2545
2546 OS << " std::cerr << \"Cannot yet select: \";\n"
2547 << " N.Val->dump(CurDAG);\n"
2548 << " std::cerr << '\\n';\n"
2549 << " abort();\n"
2550 << "}\n\n";
2551 }
2552
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002553 // Emit boilerplate.
2554 OS << "// The main instruction selector code.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002555 << "SDOperand SelectCode(SDOperand N) {\n"
2556 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002557 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
2558 << "INSTRUCTION_LIST_END))\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002559 << " return N; // Already selected.\n\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002560 << " std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(N);\n"
Evan Cheng481c8e02005-12-12 23:22:48 +00002561 << " if (CGMI != CodeGenMap.end()) return CGMI->second;\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002562 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002563 << " default: break;\n"
2564 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner5216c692005-12-18 21:05:44 +00002565 << " case ISD::BasicBlock:\n"
Chris Lattner8020a522006-01-11 19:52:27 +00002566 << " case ISD::Register:\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002567 << " return N;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002568 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002569 << " case ISD::AssertZext: {\n"
2570 << " SDOperand Tmp0 = Select(N.getOperand(0));\n"
2571 << " if (!N.Val->hasOneUse()) CodeGenMap[N] = Tmp0;\n"
2572 << " return Tmp0;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002573 << " }\n"
2574 << " case ISD::TokenFactor:\n"
2575 << " if (N.getNumOperands() == 2) {\n"
2576 << " SDOperand Op0 = Select(N.getOperand(0));\n"
2577 << " SDOperand Op1 = Select(N.getOperand(1));\n"
2578 << " return CodeGenMap[N] =\n"
2579 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Op0, Op1);\n"
2580 << " } else {\n"
2581 << " std::vector<SDOperand> Ops;\n"
2582 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
2583 << " Ops.push_back(Select(N.getOperand(i)));\n"
2584 << " return CodeGenMap[N] = \n"
2585 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Ops);\n"
2586 << " }\n"
2587 << " case ISD::CopyFromReg: {\n"
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002588 << " SDOperand Chain = Select(N.getOperand(0));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002589 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
2590 << " MVT::ValueType VT = N.Val->getValueType(0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002591 << " if (N.Val->getNumValues() == 2) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002592 << " if (Chain == N.getOperand(0)) return N; // No change\n"
2593 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT);\n"
2594 << " CodeGenMap[N.getValue(0)] = New;\n"
2595 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2596 << " return New.getValue(N.ResNo);\n"
2597 << " } else {\n"
Chris Lattner7a8054f2005-12-22 20:37:36 +00002598 << " SDOperand Flag(0, 0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002599 << " if (N.getNumOperands() == 3) Flag = Select(N.getOperand(2));\n"
2600 << " if (Chain == N.getOperand(0) &&\n"
2601 << " (N.getNumOperands() == 2 || Flag == N.getOperand(2)))\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002602 << " return N; // No change\n"
2603 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT, Flag);\n"
2604 << " CodeGenMap[N.getValue(0)] = New;\n"
2605 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2606 << " CodeGenMap[N.getValue(2)] = New.getValue(2);\n"
2607 << " return New.getValue(N.ResNo);\n"
2608 << " }\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002609 << " }\n"
2610 << " case ISD::CopyToReg: {\n"
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002611 << " SDOperand Chain = Select(N.getOperand(0));\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002612 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002613 << " SDOperand Val = Select(N.getOperand(2));\n"
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002614 << " SDOperand Result = N;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002615 << " if (N.Val->getNumValues() == 1) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002616 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2))\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002617 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002618 << " return CodeGenMap[N] = Result;\n"
2619 << " } else {\n"
Chris Lattner7a8054f2005-12-22 20:37:36 +00002620 << " SDOperand Flag(0, 0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002621 << " if (N.getNumOperands() == 4) Flag = Select(N.getOperand(3));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002622 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2) ||\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002623 << " (N.getNumOperands() == 4 && Flag != N.getOperand(3)))\n"
2624 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val, Flag);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002625 << " CodeGenMap[N.getValue(0)] = Result;\n"
2626 << " CodeGenMap[N.getValue(1)] = Result.getValue(1);\n"
2627 << " return Result.getValue(N.ResNo);\n"
2628 << " }\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002629 << " }\n";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002630
Chris Lattner602f6922006-01-04 00:25:00 +00002631 // Loop over all of the case statements, emiting a call to each method we
2632 // emitted above.
Chris Lattner37481472005-09-26 21:59:35 +00002633 for (std::map<Record*, std::vector<PatternToMatch*>,
2634 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2635 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
Chris Lattner81303322005-09-23 19:36:15 +00002636 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
Chris Lattner602f6922006-01-04 00:25:00 +00002637 OS << " case " << OpcodeInfo.getEnumName() << ": "
Chris Lattner11966a02006-01-04 00:32:01 +00002638 << std::string(std::max(0, int(24-OpcodeInfo.getEnumName().size())), ' ')
Chris Lattner602f6922006-01-04 00:25:00 +00002639 << "return Select_" << PBOI->first->getName() << "(N);\n";
Chris Lattner81303322005-09-23 19:36:15 +00002640 }
Chris Lattner81303322005-09-23 19:36:15 +00002641
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002642 OS << " } // end of big switch.\n\n"
2643 << " std::cerr << \"Cannot yet select: \";\n"
Evan Cheng97938882005-12-22 02:24:50 +00002644 << " N.Val->dump(CurDAG);\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002645 << " std::cerr << '\\n';\n"
2646 << " abort();\n"
2647 << "}\n";
2648}
2649
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002650void DAGISelEmitter::run(std::ostream &OS) {
2651 EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
2652 " target", OS);
2653
Chris Lattner1f39e292005-09-14 00:09:24 +00002654 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2655 << "// *** instruction selector class. These functions are really "
2656 << "methods.\n\n";
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002657
Chris Lattner296dfe32005-09-24 00:50:51 +00002658 OS << "// Instance var to keep track of multiply used nodes that have \n"
2659 << "// already been selected.\n"
2660 << "std::map<SDOperand, SDOperand> CodeGenMap;\n";
2661
Chris Lattnerca559d02005-09-08 21:03:01 +00002662 ParseNodeInfo();
Chris Lattner24eeeb82005-09-13 21:51:00 +00002663 ParseNodeTransforms(OS);
Evan Cheng0fc71982005-12-08 02:00:36 +00002664 ParseComplexPatterns();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002665 ParsePatternFragments(OS);
2666 ParseInstructions();
2667 ParsePatterns();
Chris Lattner3f7e9142005-09-23 20:52:47 +00002668
Chris Lattnere97603f2005-09-28 19:27:25 +00002669 // Generate variants. For example, commutative patterns can match
Chris Lattner3f7e9142005-09-23 20:52:47 +00002670 // multiple ways. Add them to PatternsToMatch as well.
Chris Lattnere97603f2005-09-28 19:27:25 +00002671 GenerateVariants();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002672
Chris Lattnere46e17b2005-09-29 19:28:10 +00002673
2674 DEBUG(std::cerr << "\n\nALL PATTERNS TO MATCH:\n\n";
2675 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002676 std::cerr << "PATTERN: "; PatternsToMatch[i].getSrcPattern()->dump();
2677 std::cerr << "\nRESULT: ";PatternsToMatch[i].getDstPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00002678 std::cerr << "\n";
2679 });
2680
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002681 // At this point, we have full information about the 'Patterns' we need to
2682 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002683 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002684 EmitInstructionSelector(OS);
2685
2686 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
2687 E = PatternFragments.end(); I != E; ++I)
2688 delete I->second;
2689 PatternFragments.clear();
2690
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002691 Instructions.clear();
2692}