blob: 9aa4f989e5307f30bf3aa096383bb44a6d950bad [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")) {
Evan Cheng37e90052006-01-15 10:04:45 +0000547 if (NotRegisters)
548 return Unknown;
Chris Lattner22faeab2005-12-05 02:36:37 +0000549 // If the register appears in exactly one regclass, and the regclass has one
550 // value type, use it as the known type.
551 const CodeGenTarget &T = TP.getDAGISelEmitter().getTargetInfo();
552 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
Nate Begemanb73628b2005-12-30 00:12:56 +0000553 return ConvertVTs(RC->getValueTypes());
554 return Unknown;
Chris Lattner1531f202005-10-26 16:59:37 +0000555 } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
556 // Using a VTSDNode or CondCodeSDNode.
Nate Begemanb73628b2005-12-30 00:12:56 +0000557 return Other;
Evan Cheng0fc71982005-12-08 02:00:36 +0000558 } else if (R->isSubClassOf("ComplexPattern")) {
Evan Cheng57c517d2006-01-17 07:36:41 +0000559 if (NotRegisters)
560 return Unknown;
Nate Begemanb73628b2005-12-30 00:12:56 +0000561 std::vector<unsigned char>
562 ComplexPat(1, TP.getDAGISelEmitter().getComplexPattern(R).getValueType());
563 return ComplexPat;
Evan Cheng01f318b2005-12-14 02:21:57 +0000564 } else if (R->getName() == "node" || R->getName() == "srcvalue") {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000565 // Placeholder.
Nate Begemanb73628b2005-12-30 00:12:56 +0000566 return Unknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000567 }
568
569 TP.error("Unknown node flavor used in pattern: " + R->getName());
Nate Begemanb73628b2005-12-30 00:12:56 +0000570 return Other;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000571}
572
Chris Lattner32707602005-09-08 23:22:48 +0000573/// ApplyTypeConstraints - Apply all of the type constraints relevent to
574/// this node and its children in the tree. This returns true if it makes a
575/// change, false otherwise. If a type contradiction is found, throw an
576/// exception.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000577bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
578 if (isLeaf()) {
Chris Lattner465c7372005-11-03 05:46:11 +0000579 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000580 // If it's a regclass or something else known, include the type.
581 return UpdateNodeType(getIntrinsicType(DI->getDef(), NotRegisters, TP),
582 TP);
Chris Lattner465c7372005-11-03 05:46:11 +0000583 } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
584 // Int inits are always integers. :)
585 bool MadeChange = UpdateNodeType(MVT::isInt, TP);
586
587 if (hasTypeSet()) {
Nate Begemanb73628b2005-12-30 00:12:56 +0000588 // At some point, it may make sense for this tree pattern to have
589 // multiple types. Assert here that it does not, so we revisit this
590 // code when appropriate.
591 assert(getExtTypes().size() == 1 && "TreePattern has too many types!");
592
593 unsigned Size = MVT::getSizeInBits(getTypeNum(0));
Chris Lattner465c7372005-11-03 05:46:11 +0000594 // Make sure that the value is representable for this type.
595 if (Size < 32) {
596 int Val = (II->getValue() << (32-Size)) >> (32-Size);
597 if (Val != II->getValue())
598 TP.error("Sign-extended integer value '" + itostr(II->getValue()) +
599 "' is out of range for type 'MVT::" +
Nate Begemanb73628b2005-12-30 00:12:56 +0000600 getEnumName(getTypeNum(0)) + "'!");
Chris Lattner465c7372005-11-03 05:46:11 +0000601 }
602 }
603
604 return MadeChange;
605 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000606 return false;
607 }
Chris Lattner32707602005-09-08 23:22:48 +0000608
609 // special handling for set, which isn't really an SDNode.
610 if (getOperator()->getName() == "set") {
611 assert (getNumChildren() == 2 && "Only handle 2 operand set's for now!");
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000612 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
613 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner32707602005-09-08 23:22:48 +0000614
615 // Types of operands must match.
Nate Begemanb73628b2005-12-30 00:12:56 +0000616 MadeChange |= getChild(0)->UpdateNodeType(getChild(1)->getExtTypes(), TP);
617 MadeChange |= getChild(1)->UpdateNodeType(getChild(0)->getExtTypes(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000618 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
619 return MadeChange;
Chris Lattnerabbb6052005-09-15 21:42:00 +0000620 } else if (getOperator()->isSubClassOf("SDNode")) {
621 const SDNodeInfo &NI = TP.getDAGISelEmitter().getSDNodeInfo(getOperator());
622
623 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
624 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000625 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000626 // Branch, etc. do not produce results and top-level forms in instr pattern
627 // must have void types.
628 if (NI.getNumResults() == 0)
629 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
Chris Lattnerabbb6052005-09-15 21:42:00 +0000630 return MadeChange;
Chris Lattnera28aec12005-09-15 22:23:50 +0000631 } else if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattnerae5b3502005-09-15 21:57:35 +0000632 const DAGInstruction &Inst =
633 TP.getDAGISelEmitter().getInstruction(getOperator());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000634 bool MadeChange = false;
635 unsigned NumResults = Inst.getNumResults();
Chris Lattnerae5b3502005-09-15 21:57:35 +0000636
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000637 assert(NumResults <= 1 &&
638 "Only supports zero or one result instrs!");
Chris Lattnera28aec12005-09-15 22:23:50 +0000639 // Apply the result type to the node
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000640 if (NumResults == 0) {
641 MadeChange = UpdateNodeType(MVT::isVoid, TP);
642 } else {
643 Record *ResultNode = Inst.getResult(0);
644 assert(ResultNode->isSubClassOf("RegisterClass") &&
645 "Operands should be register classes!");
Nate Begemanddb39542005-12-01 00:06:14 +0000646
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000647 const CodeGenRegisterClass &RC =
648 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(ResultNode);
Nate Begemanb73628b2005-12-30 00:12:56 +0000649 MadeChange = UpdateNodeType(ConvertVTs(RC.getValueTypes()), TP);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000650 }
Chris Lattnera28aec12005-09-15 22:23:50 +0000651
652 if (getNumChildren() != Inst.getNumOperands())
653 TP.error("Instruction '" + getOperator()->getName() + " expects " +
654 utostr(Inst.getNumOperands()) + " operands, not " +
655 utostr(getNumChildren()) + " operands!");
656 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
Nate Begemanddb39542005-12-01 00:06:14 +0000657 Record *OperandNode = Inst.getOperand(i);
658 MVT::ValueType VT;
659 if (OperandNode->isSubClassOf("RegisterClass")) {
660 const CodeGenRegisterClass &RC =
661 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(OperandNode);
Nate Begemanb73628b2005-12-30 00:12:56 +0000662 //VT = RC.getValueTypeNum(0);
663 MadeChange |=getChild(i)->UpdateNodeType(ConvertVTs(RC.getValueTypes()),
664 TP);
Nate Begemanddb39542005-12-01 00:06:14 +0000665 } else if (OperandNode->isSubClassOf("Operand")) {
666 VT = getValueType(OperandNode->getValueAsDef("Type"));
Nate Begemanb73628b2005-12-30 00:12:56 +0000667 MadeChange |= getChild(i)->UpdateNodeType(VT, TP);
Nate Begemanddb39542005-12-01 00:06:14 +0000668 } else {
669 assert(0 && "Unknown operand type!");
670 abort();
671 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000672 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnera28aec12005-09-15 22:23:50 +0000673 }
674 return MadeChange;
675 } else {
676 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
677
678 // Node transforms always take one operand, and take and return the same
679 // type.
680 if (getNumChildren() != 1)
681 TP.error("Node transform '" + getOperator()->getName() +
682 "' requires one operand!");
Nate Begemanb73628b2005-12-30 00:12:56 +0000683 bool MadeChange = UpdateNodeType(getChild(0)->getExtTypes(), TP);
684 MadeChange |= getChild(0)->UpdateNodeType(getExtTypes(), TP);
Chris Lattnera28aec12005-09-15 22:23:50 +0000685 return MadeChange;
Chris Lattner32707602005-09-08 23:22:48 +0000686 }
Chris Lattner32707602005-09-08 23:22:48 +0000687}
688
Chris Lattnere97603f2005-09-28 19:27:25 +0000689/// canPatternMatch - If it is impossible for this pattern to match on this
690/// target, fill in Reason and return false. Otherwise, return true. This is
691/// used as a santity check for .td files (to prevent people from writing stuff
692/// that can never possibly work), and to prevent the pattern permuter from
693/// generating stuff that is useless.
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000694bool TreePatternNode::canPatternMatch(std::string &Reason, DAGISelEmitter &ISE){
Chris Lattnere97603f2005-09-28 19:27:25 +0000695 if (isLeaf()) return true;
696
697 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
698 if (!getChild(i)->canPatternMatch(Reason, ISE))
699 return false;
Evan Cheng0fc71982005-12-08 02:00:36 +0000700
Chris Lattnere97603f2005-09-28 19:27:25 +0000701 // If this node is a commutative operator, check that the LHS isn't an
702 // immediate.
703 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(getOperator());
704 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
705 // Scan all of the operands of the node and make sure that only the last one
706 // is a constant node.
707 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i)
708 if (!getChild(i)->isLeaf() &&
709 getChild(i)->getOperator()->getName() == "imm") {
710 Reason = "Immediate value must be on the RHS of commutative operators!";
711 return false;
712 }
713 }
714
715 return true;
716}
Chris Lattner32707602005-09-08 23:22:48 +0000717
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000718//===----------------------------------------------------------------------===//
719// TreePattern implementation
720//
721
Chris Lattneredbd8712005-10-21 01:19:59 +0000722TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattneree9f0c32005-09-13 21:20:49 +0000723 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000724 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000725 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
726 Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000727}
728
Chris Lattneredbd8712005-10-21 01:19:59 +0000729TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000730 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000731 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000732 Trees.push_back(ParseTreePattern(Pat));
733}
734
Chris Lattneredbd8712005-10-21 01:19:59 +0000735TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000736 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000737 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000738 Trees.push_back(Pat);
739}
740
741
742
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000743void TreePattern::error(const std::string &Msg) const {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000744 dump();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000745 throw "In " + TheRecord->getName() + ": " + Msg;
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000746}
747
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000748TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
749 Record *Operator = Dag->getNodeType();
750
751 if (Operator->isSubClassOf("ValueType")) {
752 // If the operator is a ValueType, then this must be "type cast" of a leaf
753 // node.
754 if (Dag->getNumArgs() != 1)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000755 error("Type cast only takes one operand!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000756
757 Init *Arg = Dag->getArg(0);
758 TreePatternNode *New;
759 if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
Chris Lattner72fe91c2005-09-24 00:40:24 +0000760 Record *R = DI->getDef();
761 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
762 Dag->setArg(0, new DagInit(R,
763 std::vector<std::pair<Init*, std::string> >()));
Chris Lattner12cf9092005-11-16 23:14:54 +0000764 return ParseTreePattern(Dag);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000765 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000766 New = new TreePatternNode(DI);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000767 } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
768 New = ParseTreePattern(DI);
Chris Lattner0614b622005-11-02 06:49:14 +0000769 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
770 New = new TreePatternNode(II);
771 if (!Dag->getArgName(0).empty())
772 error("Constant int argument should not have a name!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000773 } else {
774 Arg->dump();
775 error("Unknown leaf value for tree pattern!");
776 return 0;
777 }
778
Chris Lattner32707602005-09-08 23:22:48 +0000779 // Apply the type cast.
780 New->UpdateNodeType(getValueType(Operator), *this);
Chris Lattner12cf9092005-11-16 23:14:54 +0000781 New->setName(Dag->getArgName(0));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000782 return New;
783 }
784
785 // Verify that this is something that makes sense for an operator.
786 if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
Chris Lattnerabbb6052005-09-15 21:42:00 +0000787 !Operator->isSubClassOf("Instruction") &&
788 !Operator->isSubClassOf("SDNodeXForm") &&
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000789 Operator->getName() != "set")
790 error("Unrecognized node '" + Operator->getName() + "'!");
791
Chris Lattneredbd8712005-10-21 01:19:59 +0000792 // Check to see if this is something that is illegal in an input pattern.
793 if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
794 Operator->isSubClassOf("SDNodeXForm")))
795 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
796
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000797 std::vector<TreePatternNode*> Children;
798
799 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
800 Init *Arg = Dag->getArg(i);
801 if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
802 Children.push_back(ParseTreePattern(DI));
Chris Lattner12cf9092005-11-16 23:14:54 +0000803 if (Children.back()->getName().empty())
804 Children.back()->setName(Dag->getArgName(i));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000805 } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
806 Record *R = DefI->getDef();
807 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
808 // TreePatternNode if its own.
809 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
810 Dag->setArg(i, new DagInit(R,
811 std::vector<std::pair<Init*, std::string> >()));
812 --i; // Revisit this node...
813 } else {
814 TreePatternNode *Node = new TreePatternNode(DefI);
815 Node->setName(Dag->getArgName(i));
816 Children.push_back(Node);
817
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000818 // Input argument?
819 if (R->getName() == "node") {
820 if (Dag->getArgName(i).empty())
821 error("'node' argument requires a name to match with operand list");
822 Args.push_back(Dag->getArgName(i));
823 }
824 }
Chris Lattner5d5a0562005-10-19 04:30:56 +0000825 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
826 TreePatternNode *Node = new TreePatternNode(II);
827 if (!Dag->getArgName(i).empty())
828 error("Constant int argument should not have a name!");
829 Children.push_back(Node);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000830 } else {
Chris Lattner5d5a0562005-10-19 04:30:56 +0000831 std::cerr << '"';
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000832 Arg->dump();
Chris Lattner5d5a0562005-10-19 04:30:56 +0000833 std::cerr << "\": ";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000834 error("Unknown leaf value for tree pattern!");
835 }
836 }
837
838 return new TreePatternNode(Operator, Children);
839}
840
Chris Lattner32707602005-09-08 23:22:48 +0000841/// InferAllTypes - Infer/propagate as many types throughout the expression
842/// patterns as possible. Return true if all types are infered, false
843/// otherwise. Throw an exception if a type contradiction is found.
844bool TreePattern::InferAllTypes() {
845 bool MadeChange = true;
846 while (MadeChange) {
847 MadeChange = false;
848 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000849 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
Chris Lattner32707602005-09-08 23:22:48 +0000850 }
851
852 bool HasUnresolvedTypes = false;
853 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
854 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
855 return !HasUnresolvedTypes;
856}
857
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000858void TreePattern::print(std::ostream &OS) const {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000859 OS << getRecord()->getName();
860 if (!Args.empty()) {
861 OS << "(" << Args[0];
862 for (unsigned i = 1, e = Args.size(); i != e; ++i)
863 OS << ", " << Args[i];
864 OS << ")";
865 }
866 OS << ": ";
867
868 if (Trees.size() > 1)
869 OS << "[\n";
870 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
871 OS << "\t";
872 Trees[i]->print(OS);
873 OS << "\n";
874 }
875
876 if (Trees.size() > 1)
877 OS << "]\n";
878}
879
880void TreePattern::dump() const { print(std::cerr); }
881
882
883
884//===----------------------------------------------------------------------===//
885// DAGISelEmitter implementation
886//
887
Chris Lattnerca559d02005-09-08 21:03:01 +0000888// Parse all of the SDNode definitions for the target, populating SDNodes.
889void DAGISelEmitter::ParseNodeInfo() {
890 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
891 while (!Nodes.empty()) {
892 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
893 Nodes.pop_back();
894 }
895}
896
Chris Lattner24eeeb82005-09-13 21:51:00 +0000897/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
898/// map, and emit them to the file as functions.
899void DAGISelEmitter::ParseNodeTransforms(std::ostream &OS) {
900 OS << "\n// Node transformations.\n";
901 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
902 while (!Xforms.empty()) {
903 Record *XFormNode = Xforms.back();
904 Record *SDNode = XFormNode->getValueAsDef("Opcode");
905 std::string Code = XFormNode->getValueAsCode("XFormFunction");
906 SDNodeXForms.insert(std::make_pair(XFormNode,
907 std::make_pair(SDNode, Code)));
908
Chris Lattner1048b7a2005-09-13 22:03:37 +0000909 if (!Code.empty()) {
Chris Lattner24eeeb82005-09-13 21:51:00 +0000910 std::string ClassName = getSDNodeInfo(SDNode).getSDClassName();
911 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
912
Chris Lattner1048b7a2005-09-13 22:03:37 +0000913 OS << "inline SDOperand Transform_" << XFormNode->getName()
Chris Lattner24eeeb82005-09-13 21:51:00 +0000914 << "(SDNode *" << C2 << ") {\n";
915 if (ClassName != "SDNode")
916 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
917 OS << Code << "\n}\n";
918 }
919
920 Xforms.pop_back();
921 }
922}
923
Evan Cheng0fc71982005-12-08 02:00:36 +0000924void DAGISelEmitter::ParseComplexPatterns() {
925 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
926 while (!AMs.empty()) {
927 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
928 AMs.pop_back();
929 }
930}
Chris Lattner24eeeb82005-09-13 21:51:00 +0000931
932
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000933/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
934/// file, building up the PatternFragments map. After we've collected them all,
935/// inline fragments together as necessary, so that there are no references left
936/// inside a pattern fragment to a pattern fragment.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000937///
938/// This also emits all of the predicate functions to the output file.
939///
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000940void DAGISelEmitter::ParsePatternFragments(std::ostream &OS) {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000941 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
942
943 // First step, parse all of the fragments and emit predicate functions.
944 OS << "\n// Predicate functions.\n";
945 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +0000946 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
Chris Lattneredbd8712005-10-21 01:19:59 +0000947 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000948 PatternFragments[Fragments[i]] = P;
Chris Lattneree9f0c32005-09-13 21:20:49 +0000949
950 // Validate the argument list, converting it to map, to discard duplicates.
951 std::vector<std::string> &Args = P->getArgList();
952 std::set<std::string> OperandsMap(Args.begin(), Args.end());
953
954 if (OperandsMap.count(""))
955 P->error("Cannot have unnamed 'node' values in pattern fragment!");
956
957 // Parse the operands list.
958 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
959 if (OpsList->getNodeType()->getName() != "ops")
960 P->error("Operands list should start with '(ops ... '!");
961
962 // Copy over the arguments.
963 Args.clear();
964 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
965 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
966 static_cast<DefInit*>(OpsList->getArg(j))->
967 getDef()->getName() != "node")
968 P->error("Operands list should all be 'node' values.");
969 if (OpsList->getArgName(j).empty())
970 P->error("Operands list should have names for each operand!");
971 if (!OperandsMap.count(OpsList->getArgName(j)))
972 P->error("'" + OpsList->getArgName(j) +
973 "' does not occur in pattern or was multiply specified!");
974 OperandsMap.erase(OpsList->getArgName(j));
975 Args.push_back(OpsList->getArgName(j));
976 }
977
978 if (!OperandsMap.empty())
979 P->error("Operands list does not contain an entry for operand '" +
980 *OperandsMap.begin() + "'!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000981
982 // If there is a code init for this fragment, emit the predicate code and
983 // keep track of the fact that this fragment uses it.
Chris Lattner24eeeb82005-09-13 21:51:00 +0000984 std::string Code = Fragments[i]->getValueAsCode("Predicate");
985 if (!Code.empty()) {
Chris Lattner37937092005-09-09 01:15:01 +0000986 assert(!P->getOnlyTree()->isLeaf() && "Can't be a leaf!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000987 std::string ClassName =
Chris Lattner37937092005-09-09 01:15:01 +0000988 getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000989 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
990
Chris Lattner1048b7a2005-09-13 22:03:37 +0000991 OS << "inline bool Predicate_" << Fragments[i]->getName()
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000992 << "(SDNode *" << C2 << ") {\n";
993 if (ClassName != "SDNode")
994 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
Chris Lattner24eeeb82005-09-13 21:51:00 +0000995 OS << Code << "\n}\n";
Chris Lattner37937092005-09-09 01:15:01 +0000996 P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000997 }
Chris Lattner6de8b532005-09-13 21:59:15 +0000998
999 // If there is a node transformation corresponding to this, keep track of
1000 // it.
1001 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
1002 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
Chris Lattnerb0276202005-09-14 22:55:26 +00001003 P->getOnlyTree()->setTransformFn(Transform);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001004 }
1005
1006 OS << "\n\n";
1007
1008 // Now that we've parsed all of the tree fragments, do a closure on them so
1009 // that there are not references to PatFrags left inside of them.
1010 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
1011 E = PatternFragments.end(); I != E; ++I) {
Chris Lattner32707602005-09-08 23:22:48 +00001012 TreePattern *ThePat = I->second;
1013 ThePat->InlinePatternFragments();
Chris Lattneree9f0c32005-09-13 21:20:49 +00001014
Chris Lattner32707602005-09-08 23:22:48 +00001015 // Infer as many types as possible. Don't worry about it if we don't infer
1016 // all of them, some may depend on the inputs of the pattern.
1017 try {
1018 ThePat->InferAllTypes();
1019 } catch (...) {
1020 // If this pattern fragment is not supported by this target (no types can
1021 // satisfy its constraints), just ignore it. If the bogus pattern is
1022 // actually used by instructions, the type consistency error will be
1023 // reported there.
1024 }
1025
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001026 // If debugging, print out the pattern fragment result.
Chris Lattner32707602005-09-08 23:22:48 +00001027 DEBUG(ThePat->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001028 }
1029}
1030
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001031/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
Chris Lattnerf1311842005-09-14 23:05:13 +00001032/// instruction input. Return true if this is a real use.
1033static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001034 std::map<std::string, TreePatternNode*> &InstInputs,
1035 std::vector<Record*> &InstImpInputs) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001036 // No name -> not interesting.
Chris Lattner7da852f2005-09-14 22:06:36 +00001037 if (Pat->getName().empty()) {
1038 if (Pat->isLeaf()) {
1039 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1040 if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
1041 I->error("Input " + DI->getDef()->getName() + " must be named!");
Evan Cheng7b05bd52005-12-23 22:11:47 +00001042 else if (DI && DI->getDef()->isSubClassOf("Register"))
1043 InstImpInputs.push_back(DI->getDef());
Chris Lattner7da852f2005-09-14 22:06:36 +00001044 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001045 return false;
Chris Lattner7da852f2005-09-14 22:06:36 +00001046 }
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001047
1048 Record *Rec;
1049 if (Pat->isLeaf()) {
1050 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1051 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
1052 Rec = DI->getDef();
1053 } else {
1054 assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
1055 Rec = Pat->getOperator();
1056 }
1057
Evan Cheng01f318b2005-12-14 02:21:57 +00001058 // SRCVALUE nodes are ignored.
1059 if (Rec->getName() == "srcvalue")
1060 return false;
1061
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001062 TreePatternNode *&Slot = InstInputs[Pat->getName()];
1063 if (!Slot) {
1064 Slot = Pat;
1065 } else {
1066 Record *SlotRec;
1067 if (Slot->isLeaf()) {
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00001068 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001069 } else {
1070 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
1071 SlotRec = Slot->getOperator();
1072 }
1073
1074 // Ensure that the inputs agree if we've already seen this input.
1075 if (Rec != SlotRec)
1076 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Nate Begemanb73628b2005-12-30 00:12:56 +00001077 if (Slot->getExtTypes() != Pat->getExtTypes())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001078 I->error("All $" + Pat->getName() + " inputs must agree with each other");
1079 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001080 return true;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001081}
1082
1083/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1084/// part of "I", the instruction), computing the set of inputs and outputs of
1085/// the pattern. Report errors if we see anything naughty.
1086void DAGISelEmitter::
1087FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1088 std::map<std::string, TreePatternNode*> &InstInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001089 std::map<std::string, Record*> &InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001090 std::vector<Record*> &InstImpInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001091 std::vector<Record*> &InstImpResults) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001092 if (Pat->isLeaf()) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00001093 bool isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerf1311842005-09-14 23:05:13 +00001094 if (!isUse && Pat->getTransformFn())
1095 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001096 return;
1097 } else if (Pat->getOperator()->getName() != "set") {
1098 // If this is not a set, verify that the children nodes are not void typed,
1099 // and recurse.
1100 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Nate Begemanb73628b2005-12-30 00:12:56 +00001101 if (Pat->getChild(i)->getExtTypeNum(0) == MVT::isVoid)
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001102 I->error("Cannot have void nodes inside of patterns!");
Evan Chengbcecf332005-12-17 01:19:28 +00001103 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001104 InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001105 }
1106
1107 // If this is a non-leaf node with no children, treat it basically as if
1108 // it were a leaf. This handles nodes like (imm).
Chris Lattnerf1311842005-09-14 23:05:13 +00001109 bool isUse = false;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001110 if (Pat->getNumChildren() == 0)
Evan Cheng7b05bd52005-12-23 22:11:47 +00001111 isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001112
Chris Lattnerf1311842005-09-14 23:05:13 +00001113 if (!isUse && Pat->getTransformFn())
1114 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001115 return;
1116 }
1117
1118 // Otherwise, this is a set, validate and collect instruction results.
1119 if (Pat->getNumChildren() == 0)
1120 I->error("set requires operands!");
1121 else if (Pat->getNumChildren() & 1)
1122 I->error("set requires an even number of operands");
1123
Chris Lattnerf1311842005-09-14 23:05:13 +00001124 if (Pat->getTransformFn())
1125 I->error("Cannot specify a transform function on a set node!");
1126
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001127 // Check the set destinations.
1128 unsigned NumValues = Pat->getNumChildren()/2;
1129 for (unsigned i = 0; i != NumValues; ++i) {
1130 TreePatternNode *Dest = Pat->getChild(i);
1131 if (!Dest->isLeaf())
Evan Cheng86217892005-12-12 19:37:43 +00001132 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001133
1134 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1135 if (!Val)
Evan Cheng86217892005-12-12 19:37:43 +00001136 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001137
Evan Chengbcecf332005-12-17 01:19:28 +00001138 if (Val->getDef()->isSubClassOf("RegisterClass")) {
1139 if (Dest->getName().empty())
1140 I->error("set destination must have a name!");
1141 if (InstResults.count(Dest->getName()))
1142 I->error("cannot set '" + Dest->getName() +"' multiple times");
1143 InstResults[Dest->getName()] = Val->getDef();
Evan Cheng7b05bd52005-12-23 22:11:47 +00001144 } else if (Val->getDef()->isSubClassOf("Register")) {
Evan Chengbcecf332005-12-17 01:19:28 +00001145 InstImpResults.push_back(Val->getDef());
1146 } else {
1147 I->error("set destination should be a register!");
1148 }
1149
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001150 // Verify and collect info from the computation.
1151 FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
Evan Cheng7b05bd52005-12-23 22:11:47 +00001152 InstInputs, InstResults,
1153 InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001154 }
1155}
1156
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001157/// ParseInstructions - Parse all of the instructions, inlining and resolving
1158/// any fragments involved. This populates the Instructions list with fully
1159/// resolved instructions.
1160void DAGISelEmitter::ParseInstructions() {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001161 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1162
1163 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001164 ListInit *LI = 0;
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001165
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001166 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1167 LI = Instrs[i]->getValueAsListInit("Pattern");
1168
1169 // If there is no pattern, only collect minimal information about the
1170 // instruction for its operand list. We have to assume that there is one
1171 // result, as we have no detailed info.
1172 if (!LI || LI->getSize() == 0) {
Nate Begemanddb39542005-12-01 00:06:14 +00001173 std::vector<Record*> Results;
1174 std::vector<Record*> Operands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001175
1176 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001177
Evan Cheng3a217f32005-12-22 02:35:21 +00001178 if (InstInfo.OperandList.size() != 0) {
Evan Cheng3a217f32005-12-22 02:35:21 +00001179 // FIXME: temporary hack...
Evan Cheng2b4ea792005-12-26 09:11:45 +00001180 if (InstInfo.noResults) {
Evan Cheng3a217f32005-12-22 02:35:21 +00001181 // These produce no results
1182 for (unsigned j = 0, e = InstInfo.OperandList.size(); j < e; ++j)
1183 Operands.push_back(InstInfo.OperandList[j].Rec);
1184 } else {
1185 // Assume the first operand is the result.
1186 Results.push_back(InstInfo.OperandList[0].Rec);
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001187
Evan Cheng3a217f32005-12-22 02:35:21 +00001188 // The rest are inputs.
1189 for (unsigned j = 1, e = InstInfo.OperandList.size(); j < e; ++j)
1190 Operands.push_back(InstInfo.OperandList[j].Rec);
1191 }
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001192 }
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001193
1194 // Create and insert the instruction.
Evan Chengbcecf332005-12-17 01:19:28 +00001195 std::vector<Record*> ImpResults;
1196 std::vector<Record*> ImpOperands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001197 Instructions.insert(std::make_pair(Instrs[i],
Evan Cheng7b05bd52005-12-23 22:11:47 +00001198 DAGInstruction(0, Results, Operands, ImpResults,
1199 ImpOperands)));
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001200 continue; // no pattern.
1201 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001202
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001203 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001204 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001205 // Inline pattern fragments into it.
Chris Lattner32707602005-09-08 23:22:48 +00001206 I->InlinePatternFragments();
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001207
Chris Lattner95f6b762005-09-08 23:26:30 +00001208 // Infer as many types as possible. If we cannot infer all of them, we can
1209 // never do anything with this instruction pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001210 if (!I->InferAllTypes())
Chris Lattner32707602005-09-08 23:22:48 +00001211 I->error("Could not infer all types in pattern!");
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001212
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001213 // InstInputs - Keep track of all of the inputs of the instruction, along
1214 // with the record they are declared as.
1215 std::map<std::string, TreePatternNode*> InstInputs;
1216
1217 // InstResults - Keep track of all the virtual registers that are 'set'
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001218 // in the instruction, including what reg class they are.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001219 std::map<std::string, Record*> InstResults;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001220
1221 std::vector<Record*> InstImpInputs;
Evan Chengbcecf332005-12-17 01:19:28 +00001222 std::vector<Record*> InstImpResults;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001223
Chris Lattner1f39e292005-09-14 00:09:24 +00001224 // Verify that the top-level forms in the instruction are of void type, and
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001225 // fill in the InstResults map.
Chris Lattner1f39e292005-09-14 00:09:24 +00001226 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1227 TreePatternNode *Pat = I->getTree(j);
Nate Begemanb73628b2005-12-30 00:12:56 +00001228 if (Pat->getExtTypeNum(0) != MVT::isVoid)
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001229 I->error("Top-level forms in instruction pattern should have"
1230 " void types");
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001231
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001232 // Find inputs and outputs, and verify the structure of the uses/defs.
Evan Chengbcecf332005-12-17 01:19:28 +00001233 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001234 InstImpInputs, InstImpResults);
Chris Lattner1f39e292005-09-14 00:09:24 +00001235 }
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001236
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001237 // Now that we have inputs and outputs of the pattern, inspect the operands
1238 // list for the instruction. This determines the order that operands are
1239 // added to the machine instruction the node corresponds to.
1240 unsigned NumResults = InstResults.size();
Chris Lattner39e8af92005-09-14 18:19:25 +00001241
1242 // Parse the operands list from the (ops) list, validating it.
1243 std::vector<std::string> &Args = I->getArgList();
1244 assert(Args.empty() && "Args list should still be empty here!");
1245 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1246
1247 // Check that all of the results occur first in the list.
Nate Begemanddb39542005-12-01 00:06:14 +00001248 std::vector<Record*> Results;
Chris Lattner39e8af92005-09-14 18:19:25 +00001249 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattner3a7319d2005-09-14 21:04:12 +00001250 if (i == CGI.OperandList.size())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001251 I->error("'" + InstResults.begin()->first +
1252 "' set but does not appear in operand list!");
Chris Lattner39e8af92005-09-14 18:19:25 +00001253 const std::string &OpName = CGI.OperandList[i].Name;
Chris Lattner39e8af92005-09-14 18:19:25 +00001254
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001255 // Check that it exists in InstResults.
1256 Record *R = InstResults[OpName];
Chris Lattner39e8af92005-09-14 18:19:25 +00001257 if (R == 0)
1258 I->error("Operand $" + OpName + " should be a set destination: all "
1259 "outputs must occur before inputs in operand list!");
1260
1261 if (CGI.OperandList[i].Rec != R)
1262 I->error("Operand $" + OpName + " class mismatch!");
1263
Chris Lattnerae6d8282005-09-15 21:51:12 +00001264 // Remember the return type.
Nate Begemanddb39542005-12-01 00:06:14 +00001265 Results.push_back(CGI.OperandList[i].Rec);
Chris Lattnerae6d8282005-09-15 21:51:12 +00001266
Chris Lattner39e8af92005-09-14 18:19:25 +00001267 // Okay, this one checks out.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001268 InstResults.erase(OpName);
1269 }
1270
Chris Lattner0b592252005-09-14 21:59:34 +00001271 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1272 // the copy while we're checking the inputs.
1273 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
Chris Lattnerb0276202005-09-14 22:55:26 +00001274
1275 std::vector<TreePatternNode*> ResultNodeOperands;
Nate Begemanddb39542005-12-01 00:06:14 +00001276 std::vector<Record*> Operands;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001277 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1278 const std::string &OpName = CGI.OperandList[i].Name;
1279 if (OpName.empty())
1280 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1281
Chris Lattner0b592252005-09-14 21:59:34 +00001282 if (!InstInputsCheck.count(OpName))
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001283 I->error("Operand $" + OpName +
1284 " does not appear in the instruction pattern");
Chris Lattner0b592252005-09-14 21:59:34 +00001285 TreePatternNode *InVal = InstInputsCheck[OpName];
Chris Lattnerb0276202005-09-14 22:55:26 +00001286 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Nate Begemanddb39542005-12-01 00:06:14 +00001287
1288 if (InVal->isLeaf() &&
1289 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1290 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Evan Cheng0fc71982005-12-08 02:00:36 +00001291 if (CGI.OperandList[i].Rec != InRec &&
1292 !InRec->isSubClassOf("ComplexPattern"))
Nate Begemanddb39542005-12-01 00:06:14 +00001293 I->error("Operand $" + OpName +
Evan Cheng0fc71982005-12-08 02:00:36 +00001294 "'s register class disagrees between the operand and pattern");
Nate Begemanddb39542005-12-01 00:06:14 +00001295 }
1296 Operands.push_back(CGI.OperandList[i].Rec);
Chris Lattnerb0276202005-09-14 22:55:26 +00001297
Chris Lattner2175c182005-09-14 23:01:59 +00001298 // Construct the result for the dest-pattern operand list.
1299 TreePatternNode *OpNode = InVal->clone();
1300
1301 // No predicate is useful on the result.
1302 OpNode->setPredicateFn("");
1303
1304 // Promote the xform function to be an explicit node if set.
1305 if (Record *Xform = OpNode->getTransformFn()) {
1306 OpNode->setTransformFn(0);
1307 std::vector<TreePatternNode*> Children;
1308 Children.push_back(OpNode);
1309 OpNode = new TreePatternNode(Xform, Children);
1310 }
1311
1312 ResultNodeOperands.push_back(OpNode);
Chris Lattner39e8af92005-09-14 18:19:25 +00001313 }
1314
Chris Lattner0b592252005-09-14 21:59:34 +00001315 if (!InstInputsCheck.empty())
1316 I->error("Input operand $" + InstInputsCheck.begin()->first +
1317 " occurs in pattern but not in operands list!");
Chris Lattnerb0276202005-09-14 22:55:26 +00001318
1319 TreePatternNode *ResultPattern =
1320 new TreePatternNode(I->getRecord(), ResultNodeOperands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001321
1322 // Create and insert the instruction.
Evan Cheng7b05bd52005-12-23 22:11:47 +00001323 DAGInstruction TheInst(I, Results, Operands, InstImpResults, InstImpInputs);
Chris Lattnera28aec12005-09-15 22:23:50 +00001324 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1325
1326 // Use a temporary tree pattern to infer all types and make sure that the
1327 // constructed result is correct. This depends on the instruction already
1328 // being inserted into the Instructions map.
Chris Lattneredbd8712005-10-21 01:19:59 +00001329 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattnera28aec12005-09-15 22:23:50 +00001330 Temp.InferAllTypes();
1331
1332 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1333 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Chris Lattnerb0276202005-09-14 22:55:26 +00001334
Chris Lattner32707602005-09-08 23:22:48 +00001335 DEBUG(I->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001336 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001337
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001338 // If we can, convert the instructions to be patterns that are matched!
Chris Lattnerae5b3502005-09-15 21:57:35 +00001339 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1340 E = Instructions.end(); II != E; ++II) {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001341 DAGInstruction &TheInst = II->second;
1342 TreePattern *I = TheInst.getPattern();
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001343 if (I == 0) continue; // No pattern.
Evan Chengdd304dd2005-12-05 23:08:55 +00001344
Chris Lattner1f39e292005-09-14 00:09:24 +00001345 if (I->getNumTrees() != 1) {
1346 std::cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1347 continue;
1348 }
1349 TreePatternNode *Pattern = I->getTree(0);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001350 TreePatternNode *SrcPattern;
Evan Chengbcecf332005-12-17 01:19:28 +00001351 if (Pattern->getOperator()->getName() == "set") {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001352 if (Pattern->getNumChildren() != 2)
1353 continue; // Not a set of a single value (not handled so far)
1354
1355 SrcPattern = Pattern->getChild(1)->clone();
Evan Chengbcecf332005-12-17 01:19:28 +00001356 } else{
1357 // Not a set (store or something?)
1358 SrcPattern = Pattern;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001359 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001360
1361 std::string Reason;
1362 if (!SrcPattern->canPatternMatch(Reason, *this))
1363 I->error("Instruction can never match: " + Reason);
1364
Evan Cheng58e84a62005-12-14 22:02:59 +00001365 Record *Instr = II->first;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001366 TreePatternNode *DstPattern = TheInst.getResultPattern();
Evan Cheng58e84a62005-12-14 22:02:59 +00001367 PatternsToMatch.
1368 push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
1369 SrcPattern, DstPattern));
Chris Lattner1f39e292005-09-14 00:09:24 +00001370 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001371}
1372
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001373void DAGISelEmitter::ParsePatterns() {
Chris Lattnerabbb6052005-09-15 21:42:00 +00001374 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001375
Chris Lattnerabbb6052005-09-15 21:42:00 +00001376 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001377 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
Chris Lattneredbd8712005-10-21 01:19:59 +00001378 TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001379
Chris Lattnerabbb6052005-09-15 21:42:00 +00001380 // Inline pattern fragments into it.
1381 Pattern->InlinePatternFragments();
1382
1383 // Infer as many types as possible. If we cannot infer all of them, we can
1384 // never do anything with this pattern: report it to the user.
1385 if (!Pattern->InferAllTypes())
1386 Pattern->error("Could not infer all types in pattern!");
Chris Lattner09c03392005-11-17 17:43:52 +00001387
1388 // Validate that the input pattern is correct.
1389 {
1390 std::map<std::string, TreePatternNode*> InstInputs;
1391 std::map<std::string, Record*> InstResults;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001392 std::vector<Record*> InstImpInputs;
Evan Chengbcecf332005-12-17 01:19:28 +00001393 std::vector<Record*> InstImpResults;
Chris Lattner09c03392005-11-17 17:43:52 +00001394 FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
Evan Chengbcecf332005-12-17 01:19:28 +00001395 InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001396 InstImpInputs, InstImpResults);
Chris Lattner09c03392005-11-17 17:43:52 +00001397 }
Chris Lattnerabbb6052005-09-15 21:42:00 +00001398
1399 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1400 if (LI->getSize() == 0) continue; // no pattern.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001401
1402 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001403 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
Chris Lattnerabbb6052005-09-15 21:42:00 +00001404
1405 // Inline pattern fragments into it.
1406 Result->InlinePatternFragments();
1407
1408 // Infer as many types as possible. If we cannot infer all of them, we can
1409 // never do anything with this pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001410 if (!Result->InferAllTypes())
Chris Lattnerae5b3502005-09-15 21:57:35 +00001411 Result->error("Could not infer all types in pattern result!");
Chris Lattnerabbb6052005-09-15 21:42:00 +00001412
1413 if (Result->getNumTrees() != 1)
1414 Result->error("Cannot handle instructions producing instructions "
1415 "with temporaries yet!");
Chris Lattnere97603f2005-09-28 19:27:25 +00001416
1417 std::string Reason;
1418 if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1419 Pattern->error("Pattern can never match: " + Reason);
1420
Evan Cheng58e84a62005-12-14 22:02:59 +00001421 PatternsToMatch.
1422 push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
1423 Pattern->getOnlyTree(),
1424 Result->getOnlyTree()));
Chris Lattnerabbb6052005-09-15 21:42:00 +00001425 }
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001426}
1427
Chris Lattnere46e17b2005-09-29 19:28:10 +00001428/// CombineChildVariants - Given a bunch of permutations of each child of the
1429/// 'operator' node, put them together in all possible ways.
1430static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattneraf302912005-09-29 22:36:54 +00001431 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
Chris Lattnere46e17b2005-09-29 19:28:10 +00001432 std::vector<TreePatternNode*> &OutVariants,
1433 DAGISelEmitter &ISE) {
Chris Lattneraf302912005-09-29 22:36:54 +00001434 // Make sure that each operand has at least one variant to choose from.
1435 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1436 if (ChildVariants[i].empty())
1437 return;
1438
Chris Lattnere46e17b2005-09-29 19:28:10 +00001439 // The end result is an all-pairs construction of the resultant pattern.
1440 std::vector<unsigned> Idxs;
1441 Idxs.resize(ChildVariants.size());
1442 bool NotDone = true;
1443 while (NotDone) {
1444 // Create the variant and add it to the output list.
1445 std::vector<TreePatternNode*> NewChildren;
1446 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1447 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1448 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1449
1450 // Copy over properties.
1451 R->setName(Orig->getName());
1452 R->setPredicateFn(Orig->getPredicateFn());
1453 R->setTransformFn(Orig->getTransformFn());
Nate Begemanb73628b2005-12-30 00:12:56 +00001454 R->setTypes(Orig->getExtTypes());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001455
1456 // If this pattern cannot every match, do not include it as a variant.
1457 std::string ErrString;
1458 if (!R->canPatternMatch(ErrString, ISE)) {
1459 delete R;
1460 } else {
1461 bool AlreadyExists = false;
1462
1463 // Scan to see if this pattern has already been emitted. We can get
1464 // duplication due to things like commuting:
1465 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1466 // which are the same pattern. Ignore the dups.
1467 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1468 if (R->isIsomorphicTo(OutVariants[i])) {
1469 AlreadyExists = true;
1470 break;
1471 }
1472
1473 if (AlreadyExists)
1474 delete R;
1475 else
1476 OutVariants.push_back(R);
1477 }
1478
1479 // Increment indices to the next permutation.
1480 NotDone = false;
1481 // Look for something we can increment without causing a wrap-around.
1482 for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1483 if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1484 NotDone = true; // Found something to increment.
1485 break;
1486 }
1487 Idxs[IdxsIdx] = 0;
1488 }
1489 }
1490}
1491
Chris Lattneraf302912005-09-29 22:36:54 +00001492/// CombineChildVariants - A helper function for binary operators.
1493///
1494static void CombineChildVariants(TreePatternNode *Orig,
1495 const std::vector<TreePatternNode*> &LHS,
1496 const std::vector<TreePatternNode*> &RHS,
1497 std::vector<TreePatternNode*> &OutVariants,
1498 DAGISelEmitter &ISE) {
1499 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1500 ChildVariants.push_back(LHS);
1501 ChildVariants.push_back(RHS);
1502 CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1503}
1504
1505
1506static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1507 std::vector<TreePatternNode *> &Children) {
1508 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1509 Record *Operator = N->getOperator();
1510
1511 // Only permit raw nodes.
1512 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1513 N->getTransformFn()) {
1514 Children.push_back(N);
1515 return;
1516 }
1517
1518 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1519 Children.push_back(N->getChild(0));
1520 else
1521 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1522
1523 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1524 Children.push_back(N->getChild(1));
1525 else
1526 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1527}
1528
Chris Lattnere46e17b2005-09-29 19:28:10 +00001529/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1530/// the (potentially recursive) pattern by using algebraic laws.
1531///
1532static void GenerateVariantsOf(TreePatternNode *N,
1533 std::vector<TreePatternNode*> &OutVariants,
1534 DAGISelEmitter &ISE) {
1535 // We cannot permute leaves.
1536 if (N->isLeaf()) {
1537 OutVariants.push_back(N);
1538 return;
1539 }
1540
1541 // Look up interesting info about the node.
1542 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
1543
1544 // If this node is associative, reassociate.
Chris Lattneraf302912005-09-29 22:36:54 +00001545 if (NodeInfo.hasProperty(SDNodeInfo::SDNPAssociative)) {
1546 // Reassociate by pulling together all of the linked operators
1547 std::vector<TreePatternNode*> MaximalChildren;
1548 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1549
1550 // Only handle child sizes of 3. Otherwise we'll end up trying too many
1551 // permutations.
1552 if (MaximalChildren.size() == 3) {
1553 // Find the variants of all of our maximal children.
1554 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1555 GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1556 GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1557 GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1558
1559 // There are only two ways we can permute the tree:
1560 // (A op B) op C and A op (B op C)
1561 // Within these forms, we can also permute A/B/C.
1562
1563 // Generate legal pair permutations of A/B/C.
1564 std::vector<TreePatternNode*> ABVariants;
1565 std::vector<TreePatternNode*> BAVariants;
1566 std::vector<TreePatternNode*> ACVariants;
1567 std::vector<TreePatternNode*> CAVariants;
1568 std::vector<TreePatternNode*> BCVariants;
1569 std::vector<TreePatternNode*> CBVariants;
1570 CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1571 CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1572 CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1573 CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1574 CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1575 CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1576
1577 // Combine those into the result: (x op x) op x
1578 CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1579 CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1580 CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1581 CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1582 CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1583 CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1584
1585 // Combine those into the result: x op (x op x)
1586 CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1587 CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1588 CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1589 CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1590 CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1591 CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1592 return;
1593 }
1594 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00001595
1596 // Compute permutations of all children.
1597 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1598 ChildVariants.resize(N->getNumChildren());
1599 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1600 GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1601
1602 // Build all permutations based on how the children were formed.
1603 CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1604
1605 // If this node is commutative, consider the commuted order.
1606 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
1607 assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
Chris Lattneraf302912005-09-29 22:36:54 +00001608 // Consider the commuted order.
1609 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1610 OutVariants, ISE);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001611 }
1612}
1613
1614
Chris Lattnere97603f2005-09-28 19:27:25 +00001615// GenerateVariants - Generate variants. For example, commutative patterns can
1616// match multiple ways. Add them to PatternsToMatch as well.
1617void DAGISelEmitter::GenerateVariants() {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001618
1619 DEBUG(std::cerr << "Generating instruction variants.\n");
1620
1621 // Loop over all of the patterns we've collected, checking to see if we can
1622 // generate variants of the instruction, through the exploitation of
1623 // identities. This permits the target to provide agressive matching without
1624 // the .td file having to contain tons of variants of instructions.
1625 //
1626 // Note that this loop adds new patterns to the PatternsToMatch list, but we
1627 // intentionally do not reconsider these. Any variants of added patterns have
1628 // already been added.
1629 //
1630 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1631 std::vector<TreePatternNode*> Variants;
Evan Cheng58e84a62005-12-14 22:02:59 +00001632 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001633
1634 assert(!Variants.empty() && "Must create at least original variant!");
Chris Lattnere46e17b2005-09-29 19:28:10 +00001635 Variants.erase(Variants.begin()); // Remove the original pattern.
1636
1637 if (Variants.empty()) // No variants for this pattern.
1638 continue;
1639
1640 DEBUG(std::cerr << "FOUND VARIANTS OF: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00001641 PatternsToMatch[i].getSrcPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00001642 std::cerr << "\n");
1643
1644 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1645 TreePatternNode *Variant = Variants[v];
1646
1647 DEBUG(std::cerr << " VAR#" << v << ": ";
1648 Variant->dump();
1649 std::cerr << "\n");
1650
1651 // Scan to see if an instruction or explicit pattern already matches this.
1652 bool AlreadyExists = false;
1653 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1654 // Check to see if this variant already exists.
Evan Cheng58e84a62005-12-14 22:02:59 +00001655 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern())) {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001656 DEBUG(std::cerr << " *** ALREADY EXISTS, ignoring variant.\n");
1657 AlreadyExists = true;
1658 break;
1659 }
1660 }
1661 // If we already have it, ignore the variant.
1662 if (AlreadyExists) continue;
1663
1664 // Otherwise, add it to the list of patterns we have.
Evan Cheng58e84a62005-12-14 22:02:59 +00001665 PatternsToMatch.
1666 push_back(PatternToMatch(PatternsToMatch[i].getPredicates(),
1667 Variant, PatternsToMatch[i].getDstPattern()));
Chris Lattnere46e17b2005-09-29 19:28:10 +00001668 }
1669
1670 DEBUG(std::cerr << "\n");
1671 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001672}
1673
Chris Lattner7cf2fe62005-09-28 20:58:06 +00001674
Evan Cheng0fc71982005-12-08 02:00:36 +00001675// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
1676// ComplexPattern.
1677static bool NodeIsComplexPattern(TreePatternNode *N)
1678{
1679 return (N->isLeaf() &&
1680 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1681 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1682 isSubClassOf("ComplexPattern"));
1683}
1684
1685// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
1686// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
1687static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
1688 DAGISelEmitter &ISE)
1689{
1690 if (N->isLeaf() &&
1691 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1692 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1693 isSubClassOf("ComplexPattern")) {
1694 return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
1695 ->getDef());
1696 }
1697 return NULL;
1698}
1699
Chris Lattner05814af2005-09-28 17:57:56 +00001700/// getPatternSize - Return the 'size' of this pattern. We want to match large
1701/// patterns before small ones. This is used to determine the size of a
1702/// pattern.
Evan Cheng0fc71982005-12-08 02:00:36 +00001703static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
Evan Cheng4a7c2842006-01-06 22:19:44 +00001704 assert(isExtIntegerInVTs(P->getExtTypes()) ||
1705 isExtFloatingPointInVTs(P->getExtTypes()) ||
1706 P->getExtTypeNum(0) == MVT::isVoid ||
1707 P->getExtTypeNum(0) == MVT::Flag &&
1708 "Not a valid pattern node to size!");
Evan Chenge1050d62006-01-06 02:30:23 +00001709 unsigned Size = 2; // The node itself.
Evan Cheng0fc71982005-12-08 02:00:36 +00001710
1711 // FIXME: This is a hack to statically increase the priority of patterns
1712 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
1713 // Later we can allow complexity / cost for each pattern to be (optionally)
1714 // specified. To get best possible pattern match we'll need to dynamically
1715 // calculate the complexity of all patterns a dag can potentially map to.
1716 const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
1717 if (AM)
Evan Cheng4a7c2842006-01-06 22:19:44 +00001718 Size += AM->getNumOperands() * 2;
Evan Cheng0fc71982005-12-08 02:00:36 +00001719
Chris Lattner05814af2005-09-28 17:57:56 +00001720 // Count children in the count if they are also nodes.
1721 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
1722 TreePatternNode *Child = P->getChild(i);
Nate Begemanb73628b2005-12-30 00:12:56 +00001723 if (!Child->isLeaf() && Child->getExtTypeNum(0) != MVT::Other)
Evan Cheng0fc71982005-12-08 02:00:36 +00001724 Size += getPatternSize(Child, ISE);
1725 else if (Child->isLeaf()) {
1726 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
Evan Cheng4a7c2842006-01-06 22:19:44 +00001727 Size += 3; // Matches a ConstantSDNode.
1728 else if (NodeIsComplexPattern(Child))
1729 Size += getPatternSize(Child, ISE);
Chris Lattner2f041d42005-10-19 04:41:05 +00001730 }
Chris Lattner05814af2005-09-28 17:57:56 +00001731 }
1732
1733 return Size;
1734}
1735
1736/// getResultPatternCost - Compute the number of instructions for this pattern.
1737/// This is a temporary hack. We should really include the instruction
1738/// latencies in this calculation.
1739static unsigned getResultPatternCost(TreePatternNode *P) {
1740 if (P->isLeaf()) return 0;
1741
1742 unsigned Cost = P->getOperator()->isSubClassOf("Instruction");
1743 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
1744 Cost += getResultPatternCost(P->getChild(i));
1745 return Cost;
1746}
1747
1748// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
1749// In particular, we want to match maximal patterns first and lowest cost within
1750// a particular complexity first.
1751struct PatternSortingPredicate {
Evan Cheng0fc71982005-12-08 02:00:36 +00001752 PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
1753 DAGISelEmitter &ISE;
1754
Evan Cheng58e84a62005-12-14 22:02:59 +00001755 bool operator()(PatternToMatch *LHS,
1756 PatternToMatch *RHS) {
1757 unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), ISE);
1758 unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00001759 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
1760 if (LHSSize < RHSSize) return false;
1761
1762 // If the patterns have equal complexity, compare generated instruction cost
Evan Cheng58e84a62005-12-14 22:02:59 +00001763 return getResultPatternCost(LHS->getDstPattern()) <
1764 getResultPatternCost(RHS->getDstPattern());
Chris Lattner05814af2005-09-28 17:57:56 +00001765 }
1766};
1767
Nate Begeman6510b222005-12-01 04:51:06 +00001768/// getRegisterValueType - Look up and return the first ValueType of specified
1769/// RegisterClass record
Evan Cheng66a48bb2005-12-01 00:18:45 +00001770static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +00001771 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
1772 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +00001773 return MVT::Other;
1774}
1775
Chris Lattner72fe91c2005-09-24 00:40:24 +00001776
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001777/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
1778/// type information from it.
1779static void RemoveAllTypes(TreePatternNode *N) {
Nate Begemanb73628b2005-12-30 00:12:56 +00001780 N->removeTypes();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001781 if (!N->isLeaf())
1782 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1783 RemoveAllTypes(N->getChild(i));
1784}
Chris Lattner72fe91c2005-09-24 00:40:24 +00001785
Chris Lattner0614b622005-11-02 06:49:14 +00001786Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
1787 Record *N = Records.getDef(Name);
1788 assert(N && N->isSubClassOf("SDNode") && "Bad argument");
1789 return N;
1790}
1791
Evan Cheng51fecc82006-01-09 18:27:06 +00001792/// NodeHasProperty - return true if TreePatternNode has the specified
1793/// property.
1794static bool NodeHasProperty(TreePatternNode *N, SDNodeInfo::SDNP Property,
1795 DAGISelEmitter &ISE)
Evan Cheng7b05bd52005-12-23 22:11:47 +00001796{
1797 if (N->isLeaf()) return false;
1798 Record *Operator = N->getOperator();
1799 if (!Operator->isSubClassOf("SDNode")) return false;
1800
1801 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
Evan Cheng51fecc82006-01-09 18:27:06 +00001802 return NodeInfo.hasProperty(Property);
Evan Cheng7b05bd52005-12-23 22:11:47 +00001803}
1804
Evan Cheng51fecc82006-01-09 18:27:06 +00001805static bool PatternHasProperty(TreePatternNode *N, SDNodeInfo::SDNP Property,
1806 DAGISelEmitter &ISE)
Evan Cheng7b05bd52005-12-23 22:11:47 +00001807{
Evan Cheng51fecc82006-01-09 18:27:06 +00001808 if (NodeHasProperty(N, Property, ISE))
Evan Cheng7b05bd52005-12-23 22:11:47 +00001809 return true;
Evan Cheng51fecc82006-01-09 18:27:06 +00001810
1811 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1812 TreePatternNode *Child = N->getChild(i);
1813 if (PatternHasProperty(Child, Property, ISE))
1814 return true;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001815 }
1816
1817 return false;
1818}
1819
Evan Chengb915f312005-12-09 22:45:35 +00001820class PatternCodeEmitter {
1821private:
1822 DAGISelEmitter &ISE;
1823
Evan Cheng58e84a62005-12-14 22:02:59 +00001824 // Predicates.
1825 ListInit *Predicates;
1826 // Instruction selector pattern.
1827 TreePatternNode *Pattern;
1828 // Matched instruction.
1829 TreePatternNode *Instruction;
Evan Chengb915f312005-12-09 22:45:35 +00001830 unsigned PatternNo;
1831 std::ostream &OS;
1832 // Node to name mapping
Evan Chengf805c2e2006-01-12 19:35:54 +00001833 std::map<std::string, std::string> VariableMap;
1834 // Node to operator mapping
1835 std::map<std::string, Record*> OperatorMap;
Evan Chengb915f312005-12-09 22:45:35 +00001836 // Names of all the folded nodes which produce chains.
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001837 std::vector<std::pair<std::string, unsigned> > FoldedChains;
Evan Chengb4ad33c2006-01-19 01:55:45 +00001838 std::set<std::string> Duplicates;
Evan Chengb915f312005-12-09 22:45:35 +00001839 unsigned TmpNo;
1840
1841public:
Evan Cheng58e84a62005-12-14 22:02:59 +00001842 PatternCodeEmitter(DAGISelEmitter &ise, ListInit *preds,
1843 TreePatternNode *pattern, TreePatternNode *instr,
Evan Chengb915f312005-12-09 22:45:35 +00001844 unsigned PatNum, std::ostream &os) :
Evan Cheng58e84a62005-12-14 22:02:59 +00001845 ISE(ise), Predicates(preds), Pattern(pattern), Instruction(instr),
Evan Cheng7b05bd52005-12-23 22:11:47 +00001846 PatternNo(PatNum), OS(os), TmpNo(0) {}
Evan Chengb915f312005-12-09 22:45:35 +00001847
1848 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
1849 /// if the match fails. At this point, we already know that the opcode for N
1850 /// matches, and the SDNode for the result has the RootName specified name.
1851 void EmitMatchCode(TreePatternNode *N, const std::string &RootName,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001852 bool &FoundChain, bool isRoot = false) {
Evan Cheng58e84a62005-12-14 22:02:59 +00001853
1854 // Emit instruction predicates. Each predicate is just a string for now.
1855 if (isRoot) {
1856 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
1857 if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
1858 Record *Def = Pred->getDef();
1859 if (Def->isSubClassOf("Predicate")) {
1860 if (i == 0)
1861 OS << " if (";
1862 else
1863 OS << " && ";
Evan Cheng5fb5e102005-12-20 20:08:01 +00001864 OS << "!(" << Def->getValueAsString("CondString") << ")";
Evan Cheng58e84a62005-12-14 22:02:59 +00001865 if (i == e-1)
1866 OS << ") goto P" << PatternNo << "Fail;\n";
1867 } else {
1868 Def->dump();
1869 assert(0 && "Unknown predicate type!");
1870 }
1871 }
1872 }
1873 }
1874
Evan Chengb915f312005-12-09 22:45:35 +00001875 if (N->isLeaf()) {
1876 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1877 OS << " if (cast<ConstantSDNode>(" << RootName
1878 << ")->getSignExtended() != " << II->getValue() << ")\n"
1879 << " goto P" << PatternNo << "Fail;\n";
1880 return;
1881 } else if (!NodeIsComplexPattern(N)) {
1882 assert(0 && "Cannot match this as a leaf value!");
1883 abort();
1884 }
1885 }
1886
1887 // If this node has a name associated with it, capture it in VariableMap. If
1888 // we already saw this in the pattern, emit code to verify dagness.
1889 if (!N->getName().empty()) {
1890 std::string &VarMapEntry = VariableMap[N->getName()];
1891 if (VarMapEntry.empty()) {
1892 VarMapEntry = RootName;
1893 } else {
1894 // If we get here, this is a second reference to a specific name. Since
1895 // we already have checked that the first reference is valid, we don't
1896 // have to recursively match it, just check that it's the same as the
1897 // previously named thing.
1898 OS << " if (" << VarMapEntry << " != " << RootName
1899 << ") goto P" << PatternNo << "Fail;\n";
1900 return;
1901 }
Evan Chengf805c2e2006-01-12 19:35:54 +00001902
1903 if (!N->isLeaf())
1904 OperatorMap[N->getName()] = N->getOperator();
Evan Chengb915f312005-12-09 22:45:35 +00001905 }
1906
1907
1908 // Emit code to load the child nodes and match their contents recursively.
1909 unsigned OpNo = 0;
Evan Cheng76356d92006-01-20 01:11:03 +00001910 bool NodeHasChain = NodeHasProperty(N, SDNodeInfo::SDNPHasChain, ISE);
1911 bool HasChain = PatternHasProperty(N, SDNodeInfo::SDNPHasChain, ISE);
Evan Cheng1feeeec2006-01-26 19:13:45 +00001912 bool EmittedUseCheck = false;
1913 bool EmittedSlctedCheck = false;
Evan Cheng86217892005-12-12 19:37:43 +00001914 if (HasChain) {
Evan Cheng76356d92006-01-20 01:11:03 +00001915 if (NodeHasChain)
1916 OpNo = 1;
Evan Chengb915f312005-12-09 22:45:35 +00001917 if (!isRoot) {
Evan Cheng1129e872005-12-10 00:09:17 +00001918 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(N->getOperator());
Evan Chengb915f312005-12-09 22:45:35 +00001919 OS << " if (!" << RootName << ".hasOneUse()) goto P"
1920 << PatternNo << "Fail; // Multiple uses of actual result?\n";
Evan Cheng1feeeec2006-01-26 19:13:45 +00001921 EmittedUseCheck = true;
1922 // hasOneUse() check is not strong enough. If the original node has
1923 // already been selected, it may have been replaced with another.
1924 for (unsigned j = 0; j < CInfo.getNumResults(); j++)
1925 OS << " if (CodeGenMap.count(" << RootName
1926 << ".getValue(" << j << "))) goto P"
1927 << PatternNo << "Fail; // Already selected?\n";
1928 EmittedSlctedCheck = true;
Evan Cheng76356d92006-01-20 01:11:03 +00001929 if (NodeHasChain)
1930 OS << " if (CodeGenMap.count(" << RootName
1931 << ".getValue(" << CInfo.getNumResults() << "))) goto P"
1932 << PatternNo << "Fail; // Already selected for a chain use?\n";
Evan Chengb915f312005-12-09 22:45:35 +00001933 }
Evan Chengc15d18c2006-01-27 22:13:45 +00001934 if (NodeHasChain) {
1935 if (!FoundChain) {
1936 OS << " SDOperand Chain = " << RootName << ".getOperand(0);\n";
1937 FoundChain = true;
1938 } else {
1939 OS << " if (Chain.Val == " << RootName << ".Val)\n";
1940 OS << " Chain = " << RootName << ".getOperand(0);\n";
1941 OS << " else\n";
1942 OS << " goto P" << PatternNo << "Fail;\n";
1943 }
Evan Cheng1cf6db22006-01-06 00:41:12 +00001944 }
Evan Chengb915f312005-12-09 22:45:35 +00001945 }
1946
Evan Cheng54597732006-01-26 00:22:25 +00001947 // Don't fold any node which reads or writes a flag and has multiple uses.
1948 // FIXME: we really need to separate the concepts of flag and "glue". Those
1949 // real flag results, e.g. X86CMP output, can have multiple uses.
Evan Cheng8eab3602006-01-26 02:13:31 +00001950 // FIXME: If the incoming flag is optional. Then it is ok to fold it.
Evan Cheng1feeeec2006-01-26 19:13:45 +00001951 if (!isRoot &&
Evan Cheng54597732006-01-26 00:22:25 +00001952 (PatternHasProperty(N, SDNodeInfo::SDNPInFlag, ISE) ||
1953 PatternHasProperty(N, SDNodeInfo::SDNPOptInFlag, ISE) ||
1954 PatternHasProperty(N, SDNodeInfo::SDNPOutFlag, ISE))) {
Evan Cheng1feeeec2006-01-26 19:13:45 +00001955 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(N->getOperator());
1956 if (!EmittedUseCheck) {
Evan Cheng54597732006-01-26 00:22:25 +00001957 OS << " if (!" << RootName << ".hasOneUse()) goto P"
1958 << PatternNo << "Fail; // Multiple uses of actual result?\n";
1959 }
Evan Cheng1feeeec2006-01-26 19:13:45 +00001960 if (!EmittedSlctedCheck)
1961 // hasOneUse() check is not strong enough. If the original node has
1962 // already been selected, it may have been replaced with another.
1963 for (unsigned j = 0; j < CInfo.getNumResults(); j++)
1964 OS << " if (CodeGenMap.count(" << RootName
1965 << ".getValue(" << j << "))) goto P"
1966 << PatternNo << "Fail; // Already selected?\n";
Evan Cheng54597732006-01-26 00:22:25 +00001967 }
1968
Evan Chengb915f312005-12-09 22:45:35 +00001969 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
Chris Lattner4e3c8e512006-01-03 22:55:16 +00001970 OS << " SDOperand " << RootName << OpNo << " = "
1971 << RootName << ".getOperand(" << OpNo << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00001972 TreePatternNode *Child = N->getChild(i);
1973
1974 if (!Child->isLeaf()) {
1975 // If it's not a leaf, recursively match.
1976 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(Child->getOperator());
1977 OS << " if (" << RootName << OpNo << ".getOpcode() != "
1978 << CInfo.getEnumName() << ") goto P" << PatternNo << "Fail;\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00001979 EmitMatchCode(Child, RootName + utostr(OpNo), FoundChain);
Evan Cheng51fecc82006-01-09 18:27:06 +00001980 if (NodeHasProperty(Child, SDNodeInfo::SDNPHasChain, ISE)) {
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001981 FoldedChains.push_back(std::make_pair(RootName + utostr(OpNo),
1982 CInfo.getNumResults()));
1983 }
Evan Chengb915f312005-12-09 22:45:35 +00001984 } else {
1985 // If this child has a name associated with it, capture it in VarMap. If
1986 // we already saw this in the pattern, emit code to verify dagness.
1987 if (!Child->getName().empty()) {
1988 std::string &VarMapEntry = VariableMap[Child->getName()];
1989 if (VarMapEntry.empty()) {
1990 VarMapEntry = RootName + utostr(OpNo);
1991 } else {
1992 // If we get here, this is a second reference to a specific name. Since
1993 // we already have checked that the first reference is valid, we don't
1994 // have to recursively match it, just check that it's the same as the
1995 // previously named thing.
1996 OS << " if (" << VarMapEntry << " != " << RootName << OpNo
1997 << ") goto P" << PatternNo << "Fail;\n";
Evan Chengb4ad33c2006-01-19 01:55:45 +00001998 Duplicates.insert(RootName + utostr(OpNo));
Evan Chengb915f312005-12-09 22:45:35 +00001999 continue;
2000 }
2001 }
2002
2003 // Handle leaves of various types.
2004 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2005 Record *LeafRec = DI->getDef();
2006 if (LeafRec->isSubClassOf("RegisterClass")) {
2007 // Handle register references. Nothing to do here.
2008 } else if (LeafRec->isSubClassOf("Register")) {
Evan Cheng97938882005-12-22 02:24:50 +00002009 // Handle register references.
Evan Chengb915f312005-12-09 22:45:35 +00002010 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
2011 // Handle complex pattern. Nothing to do here.
Evan Cheng01f318b2005-12-14 02:21:57 +00002012 } else if (LeafRec->getName() == "srcvalue") {
2013 // Place holder for SRCVALUE nodes. Nothing to do here.
Evan Chengb915f312005-12-09 22:45:35 +00002014 } else if (LeafRec->isSubClassOf("ValueType")) {
2015 // Make sure this is the specified value type.
2016 OS << " if (cast<VTSDNode>(" << RootName << OpNo << ")->getVT() != "
2017 << "MVT::" << LeafRec->getName() << ") goto P" << PatternNo
2018 << "Fail;\n";
2019 } else if (LeafRec->isSubClassOf("CondCode")) {
2020 // Make sure this is the specified cond code.
2021 OS << " if (cast<CondCodeSDNode>(" << RootName << OpNo
2022 << ")->get() != " << "ISD::" << LeafRec->getName()
2023 << ") goto P" << PatternNo << "Fail;\n";
2024 } else {
2025 Child->dump();
Evan Cheng97938882005-12-22 02:24:50 +00002026 std::cerr << " ";
Evan Chengb915f312005-12-09 22:45:35 +00002027 assert(0 && "Unknown leaf type!");
2028 }
2029 } else if (IntInit *II = dynamic_cast<IntInit*>(Child->getLeafValue())) {
2030 OS << " if (!isa<ConstantSDNode>(" << RootName << OpNo << ") ||\n"
2031 << " cast<ConstantSDNode>(" << RootName << OpNo
2032 << ")->getSignExtended() != " << II->getValue() << ")\n"
2033 << " goto P" << PatternNo << "Fail;\n";
2034 } else {
2035 Child->dump();
2036 assert(0 && "Unknown leaf type!");
2037 }
2038 }
2039 }
2040
2041 // If there is a node predicate for this, emit the call.
2042 if (!N->getPredicateFn().empty())
2043 OS << " if (!" << N->getPredicateFn() << "(" << RootName
2044 << ".Val)) goto P" << PatternNo << "Fail;\n";
2045 }
2046
2047 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
2048 /// we actually have to build a DAG!
2049 std::pair<unsigned, unsigned>
2050 EmitResultCode(TreePatternNode *N, bool isRoot = false) {
2051 // This is something selected from the pattern we matched.
2052 if (!N->getName().empty()) {
2053 assert(!isRoot && "Root of pattern cannot be a leaf!");
2054 std::string &Val = VariableMap[N->getName()];
2055 assert(!Val.empty() &&
2056 "Variable referenced but not defined and not caught earlier!");
2057 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
2058 // Already selected this operand, just return the tmpval.
2059 return std::make_pair(1, atoi(Val.c_str()+3));
2060 }
2061
2062 const ComplexPattern *CP;
2063 unsigned ResNo = TmpNo++;
2064 unsigned NumRes = 1;
2065 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
Nate Begemanb73628b2005-12-30 00:12:56 +00002066 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
2067 switch (N->getTypeNum(0)) {
Evan Chengb915f312005-12-09 22:45:35 +00002068 default: assert(0 && "Unknown type for constant node!");
2069 case MVT::i1: OS << " bool Tmp"; break;
2070 case MVT::i8: OS << " unsigned char Tmp"; break;
2071 case MVT::i16: OS << " unsigned short Tmp"; break;
2072 case MVT::i32: OS << " unsigned Tmp"; break;
2073 case MVT::i64: OS << " uint64_t Tmp"; break;
2074 }
2075 OS << ResNo << "C = cast<ConstantSDNode>(" << Val << ")->getValue();\n";
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002076 OS << " SDOperand Tmp" << utostr(ResNo)
2077 << " = CurDAG->getTargetConstant(Tmp"
Nate Begemanb73628b2005-12-30 00:12:56 +00002078 << ResNo << "C, MVT::" << getEnumName(N->getTypeNum(0)) << ");\n";
Evan Chengbb48e332006-01-12 07:54:57 +00002079 } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
Evan Chengf805c2e2006-01-12 19:35:54 +00002080 Record *Op = OperatorMap[N->getName()];
2081 // Transform ExternalSymbol to TargetExternalSymbol
2082 if (Op && Op->getName() == "externalsym") {
2083 OS << " SDOperand Tmp" << ResNo
2084 << " = CurDAG->getTargetExternalSymbol(cast<ExternalSymbolSDNode>("
2085 << Val << ")->getSymbol(), MVT::" << getEnumName(N->getTypeNum(0))
2086 << ");\n";
2087 } else
2088 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Evan Chengb915f312005-12-09 22:45:35 +00002089 } else if (!N->isLeaf() && N->getOperator()->getName() == "tglobaladdr") {
Evan Chengf805c2e2006-01-12 19:35:54 +00002090 Record *Op = OperatorMap[N->getName()];
2091 // Transform GlobalAddress to TargetGlobalAddress
2092 if (Op && Op->getName() == "globaladdr") {
2093 OS << " SDOperand Tmp" << ResNo
2094 << " = CurDAG->getTargetGlobalAddress(cast<GlobalAddressSDNode>("
2095 << Val << ")->getGlobal(), MVT::" << getEnumName(N->getTypeNum(0))
2096 << ");\n";
2097 } else
2098 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002099 } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
2100 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Evan Chengbb48e332006-01-12 07:54:57 +00002101 } else if (!N->isLeaf() && N->getOperator()->getName() == "tconstpool") {
2102 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Evan Chengb915f312005-12-09 22:45:35 +00002103 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
2104 std::string Fn = CP->getSelectFunc();
2105 NumRes = CP->getNumOperands();
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002106 OS << " SDOperand ";
Jeff Cohen60e91872006-01-04 03:23:30 +00002107 for (unsigned i = 0; i < NumRes - 1; ++i)
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002108 OS << "Tmp" << (i+ResNo) << ",";
Jeff Cohen60e91872006-01-04 03:23:30 +00002109 OS << "Tmp" << (NumRes - 1 + ResNo) << ";\n";
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002110
Evan Chengb915f312005-12-09 22:45:35 +00002111 OS << " if (!" << Fn << "(" << Val;
Jeff Cohen60e91872006-01-04 03:23:30 +00002112 for (unsigned i = 0; i < NumRes; i++)
Evan Chengbcecf332005-12-17 01:19:28 +00002113 OS << ", Tmp" << i + ResNo;
Evan Chengb915f312005-12-09 22:45:35 +00002114 OS << ")) goto P" << PatternNo << "Fail;\n";
2115 TmpNo = ResNo + NumRes;
2116 } else {
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002117 OS << " SDOperand Tmp" << ResNo << " = Select(" << Val << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002118 }
2119 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2120 // value if used multiple times by this pattern result.
2121 Val = "Tmp"+utostr(ResNo);
2122 return std::make_pair(NumRes, ResNo);
2123 }
2124
2125 if (N->isLeaf()) {
2126 // If this is an explicit register reference, handle it.
2127 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
2128 unsigned ResNo = TmpNo++;
2129 if (DI->getDef()->isSubClassOf("Register")) {
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002130 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getRegister("
Evan Chengb915f312005-12-09 22:45:35 +00002131 << ISE.getQualifiedName(DI->getDef()) << ", MVT::"
Nate Begemanb73628b2005-12-30 00:12:56 +00002132 << getEnumName(N->getTypeNum(0))
Evan Chengb915f312005-12-09 22:45:35 +00002133 << ");\n";
2134 return std::make_pair(1, ResNo);
2135 }
2136 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
2137 unsigned ResNo = TmpNo++;
Nate Begemanb73628b2005-12-30 00:12:56 +00002138 assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002139 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetConstant("
Evan Chengb915f312005-12-09 22:45:35 +00002140 << II->getValue() << ", MVT::"
Nate Begemanb73628b2005-12-30 00:12:56 +00002141 << getEnumName(N->getTypeNum(0))
Evan Chengb915f312005-12-09 22:45:35 +00002142 << ");\n";
2143 return std::make_pair(1, ResNo);
2144 }
2145
2146 N->dump();
2147 assert(0 && "Unknown leaf type!");
2148 return std::make_pair(1, ~0U);
2149 }
2150
2151 Record *Op = N->getOperator();
2152 if (Op->isSubClassOf("Instruction")) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00002153 const CodeGenTarget &CGT = ISE.getTargetInfo();
2154 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
Evan Cheng4fba2812005-12-20 07:37:41 +00002155 const DAGInstruction &Inst = ISE.getInstruction(Op);
Evan Cheng7b05bd52005-12-23 22:11:47 +00002156 bool HasImpInputs = Inst.getNumImpOperands() > 0;
2157 bool HasImpResults = Inst.getNumImpResults() > 0;
Evan Cheng54597732006-01-26 00:22:25 +00002158 bool HasOptInFlag = isRoot &&
2159 PatternHasProperty(Pattern, SDNodeInfo::SDNPOptInFlag, ISE);
Evan Cheng51fecc82006-01-09 18:27:06 +00002160 bool HasInFlag = isRoot &&
Evan Cheng54597732006-01-26 00:22:25 +00002161 PatternHasProperty(Pattern, SDNodeInfo::SDNPInFlag, ISE);
2162 bool NodeHasOutFlag = HasImpResults ||
Evan Cheng51fecc82006-01-09 18:27:06 +00002163 (isRoot && PatternHasProperty(Pattern, SDNodeInfo::SDNPOutFlag, ISE));
Evan Cheng823b7522006-01-19 21:57:10 +00002164 bool NodeHasChain =
2165 NodeHasProperty(Pattern, SDNodeInfo::SDNPHasChain, ISE);
Evan Cheng51fecc82006-01-09 18:27:06 +00002166 bool HasChain = II.hasCtrlDep ||
2167 (isRoot && PatternHasProperty(Pattern, SDNodeInfo::SDNPHasChain, ISE));
Evan Cheng4fba2812005-12-20 07:37:41 +00002168
Evan Cheng54597732006-01-26 00:22:25 +00002169 if (HasInFlag || NodeHasOutFlag || HasOptInFlag || HasImpInputs)
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002170 OS << " SDOperand InFlag = SDOperand(0, 0);\n";
Evan Cheng54597732006-01-26 00:22:25 +00002171 if (HasOptInFlag)
2172 OS << " bool HasOptInFlag = false;\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002173
Evan Cheng823b7522006-01-19 21:57:10 +00002174 // How many results is this pattern expected to produce?
2175 unsigned NumExpectedResults = 0;
2176 for (unsigned i = 0, e = Pattern->getExtTypes().size(); i != e; i++) {
2177 MVT::ValueType VT = Pattern->getTypeNum(i);
2178 if (VT != MVT::isVoid && VT != MVT::Flag)
2179 NumExpectedResults++;
2180 }
2181
Evan Chengb915f312005-12-09 22:45:35 +00002182 // Determine operand emission order. Complex pattern first.
2183 std::vector<std::pair<unsigned, TreePatternNode*> > EmitOrder;
2184 std::vector<std::pair<unsigned, TreePatternNode*> >::iterator OI;
2185 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
2186 TreePatternNode *Child = N->getChild(i);
2187 if (i == 0) {
2188 EmitOrder.push_back(std::make_pair(i, Child));
2189 OI = EmitOrder.begin();
2190 } else if (NodeIsComplexPattern(Child)) {
2191 OI = EmitOrder.insert(OI, std::make_pair(i, Child));
2192 } else {
2193 EmitOrder.push_back(std::make_pair(i, Child));
2194 }
2195 }
2196
2197 // Emit all of the operands.
2198 std::vector<std::pair<unsigned, unsigned> > NumTemps(EmitOrder.size());
2199 for (unsigned i = 0, e = EmitOrder.size(); i != e; ++i) {
2200 unsigned OpOrder = EmitOrder[i].first;
2201 TreePatternNode *Child = EmitOrder[i].second;
2202 std::pair<unsigned, unsigned> NumTemp = EmitResultCode(Child);
2203 NumTemps[OpOrder] = NumTemp;
2204 }
2205
2206 // List all the operands in the right order.
2207 std::vector<unsigned> Ops;
2208 for (unsigned i = 0, e = NumTemps.size(); i != e; i++) {
2209 for (unsigned j = 0; j < NumTemps[i].first; j++)
2210 Ops.push_back(NumTemps[i].second + j);
2211 }
2212
Evan Chengb915f312005-12-09 22:45:35 +00002213 // Emit all the chain and CopyToReg stuff.
Evan Chengb2c6d492006-01-11 22:16:13 +00002214 bool ChainEmitted = HasChain;
Evan Cheng7b05bd52005-12-23 22:11:47 +00002215 if (HasChain)
Evan Cheng86217892005-12-12 19:37:43 +00002216 OS << " Chain = Select(Chain);\n";
Evan Cheng54597732006-01-26 00:22:25 +00002217 if (HasInFlag || HasOptInFlag || HasImpInputs)
2218 EmitInFlagSelectCode(Pattern, "N", ChainEmitted, true);
Evan Chengb915f312005-12-09 22:45:35 +00002219
Evan Chengb915f312005-12-09 22:45:35 +00002220 unsigned NumResults = Inst.getNumResults();
2221 unsigned ResNo = TmpNo++;
2222 if (!isRoot) {
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002223 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002224 << II.Namespace << "::" << II.TheDef->getName();
Nate Begemanb73628b2005-12-30 00:12:56 +00002225 if (N->getTypeNum(0) != MVT::isVoid)
2226 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
Evan Cheng54597732006-01-26 00:22:25 +00002227 if (NodeHasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002228 OS << ", MVT::Flag";
Evan Chengbcecf332005-12-17 01:19:28 +00002229
Evan Chengb915f312005-12-09 22:45:35 +00002230 unsigned LastOp = 0;
2231 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2232 LastOp = Ops[i];
2233 OS << ", Tmp" << LastOp;
2234 }
2235 OS << ");\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00002236 if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00002237 // Must have at least one result
2238 OS << " Chain = Tmp" << LastOp << ".getValue("
2239 << NumResults << ");\n";
2240 }
Evan Cheng54597732006-01-26 00:22:25 +00002241 } else if (HasChain || NodeHasOutFlag) {
Evan Cheng9789aaa2006-01-24 20:46:50 +00002242 if (HasOptInFlag) {
2243 OS << " SDOperand Result = SDOperand(0, 0);\n";
2244 unsigned FlagNo = (unsigned) NodeHasChain + Pattern->getNumChildren();
Evan Cheng54597732006-01-26 00:22:25 +00002245 OS << " if (HasOptInFlag)\n";
Evan Cheng9789aaa2006-01-24 20:46:50 +00002246 OS << " Result = CurDAG->getTargetNode("
2247 << II.Namespace << "::" << II.TheDef->getName();
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002248
Evan Cheng9789aaa2006-01-24 20:46:50 +00002249 // Output order: results, chain, flags
2250 // Result types.
2251 if (NumResults > 0) {
2252 if (N->getTypeNum(0) != MVT::isVoid)
2253 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
2254 }
2255 if (HasChain)
2256 OS << ", MVT::Other";
Evan Cheng54597732006-01-26 00:22:25 +00002257 if (NodeHasOutFlag)
Evan Cheng9789aaa2006-01-24 20:46:50 +00002258 OS << ", MVT::Flag";
2259
2260 // Inputs.
2261 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2262 OS << ", Tmp" << Ops[i];
2263 if (HasChain) OS << ", Chain";
2264 OS << ", InFlag);\n";
2265
2266 OS << " else\n";
2267 OS << " Result = CurDAG->getTargetNode("
2268 << II.Namespace << "::" << II.TheDef->getName();
2269
2270 // Output order: results, chain, flags
2271 // Result types.
2272 if (NumResults > 0) {
2273 if (N->getTypeNum(0) != MVT::isVoid)
2274 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
2275 }
2276 if (HasChain)
2277 OS << ", MVT::Other";
Evan Cheng54597732006-01-26 00:22:25 +00002278 if (NodeHasOutFlag)
Evan Cheng9789aaa2006-01-24 20:46:50 +00002279 OS << ", MVT::Flag";
2280
2281 // Inputs.
2282 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2283 OS << ", Tmp" << Ops[i];
2284 if (HasChain) OS << ", Chain);\n";
2285 } else {
2286 OS << " SDOperand Result = CurDAG->getTargetNode("
2287 << II.Namespace << "::" << II.TheDef->getName();
2288
2289 // Output order: results, chain, flags
2290 // Result types.
2291 if (NumResults > 0) {
2292 if (N->getTypeNum(0) != MVT::isVoid)
2293 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
2294 }
2295 if (HasChain)
2296 OS << ", MVT::Other";
Evan Cheng54597732006-01-26 00:22:25 +00002297 if (NodeHasOutFlag)
Evan Cheng9789aaa2006-01-24 20:46:50 +00002298 OS << ", MVT::Flag";
2299
2300 // Inputs.
2301 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2302 OS << ", Tmp" << Ops[i];
2303 if (HasChain) OS << ", Chain";
2304 if (HasInFlag || HasImpInputs) OS << ", InFlag";
2305 OS << ");\n";
Evan Chengbcecf332005-12-17 01:19:28 +00002306 }
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002307
2308 unsigned ValNo = 0;
Evan Chengf9fc25d2005-12-19 22:40:04 +00002309 for (unsigned i = 0; i < NumResults; i++) {
2310 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = Result"
2311 << ".getValue(" << ValNo << ");\n";
2312 ValNo++;
2313 }
2314
Evan Cheng7b05bd52005-12-23 22:11:47 +00002315 if (HasChain)
Evan Cheng4fba2812005-12-20 07:37:41 +00002316 OS << " Chain = Result.getValue(" << ValNo << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002317
Evan Cheng54597732006-01-26 00:22:25 +00002318 if (NodeHasOutFlag)
Evan Cheng97938882005-12-22 02:24:50 +00002319 OS << " InFlag = Result.getValue("
Evan Cheng7b05bd52005-12-23 22:11:47 +00002320 << ValNo + (unsigned)HasChain << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002321
Evan Cheng7b05bd52005-12-23 22:11:47 +00002322 if (HasImpResults) {
Evan Chengb2c6d492006-01-11 22:16:13 +00002323 if (EmitCopyFromRegs(N, ChainEmitted)) {
Evan Cheng97938882005-12-22 02:24:50 +00002324 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = "
2325 << "Result.getValue(" << ValNo << ");\n";
2326 ValNo++;
2327 }
2328 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002329
Evan Cheng7b05bd52005-12-23 22:11:47 +00002330 // User does not expect that the instruction produces a chain!
Evan Cheng51fecc82006-01-09 18:27:06 +00002331 bool AddedChain = HasChain && !NodeHasChain;
2332 if (NodeHasChain)
Evan Cheng97938882005-12-22 02:24:50 +00002333 OS << " CodeGenMap[N.getValue(" << ValNo++ << ")] = Chain;\n";
2334
2335 if (FoldedChains.size() > 0) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002336 OS << " ";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002337 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Evan Cheng4fba2812005-12-20 07:37:41 +00002338 OS << "CodeGenMap[" << FoldedChains[j].first << ".getValue("
2339 << FoldedChains[j].second << ")] = ";
2340 OS << "Chain;\n";
Evan Chengb915f312005-12-09 22:45:35 +00002341 }
Evan Chengf9fc25d2005-12-19 22:40:04 +00002342
Evan Cheng54597732006-01-26 00:22:25 +00002343 if (NodeHasOutFlag)
Evan Cheng97938882005-12-22 02:24:50 +00002344 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = InFlag;\n";
2345
Evan Cheng54597732006-01-26 00:22:25 +00002346 if (AddedChain && NodeHasOutFlag) {
Evan Cheng823b7522006-01-19 21:57:10 +00002347 if (NumExpectedResults == 0) {
Evan Cheng97938882005-12-22 02:24:50 +00002348 OS << " return Result.getValue(N.ResNo+1);\n";
2349 } else {
Evan Cheng823b7522006-01-19 21:57:10 +00002350 OS << " if (N.ResNo < " << NumExpectedResults << ")\n";
Evan Cheng97938882005-12-22 02:24:50 +00002351 OS << " return Result.getValue(N.ResNo);\n";
2352 OS << " else\n";
2353 OS << " return Result.getValue(N.ResNo+1);\n";
2354 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002355 } else {
Evan Chenge0870512005-12-20 00:06:17 +00002356 OS << " return Result.getValue(N.ResNo);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002357 }
Evan Chengb915f312005-12-09 22:45:35 +00002358 } else {
2359 // If this instruction is the root, and if there is only one use of it,
2360 // use SelectNodeTo instead of getTargetNode to avoid an allocation.
2361 OS << " if (N.Val->hasOneUse()) {\n";
2362 OS << " return CurDAG->SelectNodeTo(N.Val, "
Evan Chengbcecf332005-12-17 01:19:28 +00002363 << II.Namespace << "::" << II.TheDef->getName();
Nate Begemanb73628b2005-12-30 00:12:56 +00002364 if (N->getTypeNum(0) != MVT::isVoid)
2365 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
Evan Cheng54597732006-01-26 00:22:25 +00002366 if (NodeHasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002367 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002368 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2369 OS << ", Tmp" << Ops[i];
Evan Cheng51fecc82006-01-09 18:27:06 +00002370 if (HasInFlag || HasImpInputs)
Evan Chengb915f312005-12-09 22:45:35 +00002371 OS << ", InFlag";
2372 OS << ");\n";
2373 OS << " } else {\n";
2374 OS << " return CodeGenMap[N] = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002375 << II.Namespace << "::" << II.TheDef->getName();
Nate Begemanb73628b2005-12-30 00:12:56 +00002376 if (N->getTypeNum(0) != MVT::isVoid)
2377 OS << ", MVT::" << getEnumName(N->getTypeNum(0));
Evan Cheng54597732006-01-26 00:22:25 +00002378 if (NodeHasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002379 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002380 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2381 OS << ", Tmp" << Ops[i];
Evan Cheng51fecc82006-01-09 18:27:06 +00002382 if (HasInFlag || HasImpInputs)
Evan Chengb915f312005-12-09 22:45:35 +00002383 OS << ", InFlag";
2384 OS << ");\n";
2385 OS << " }\n";
2386 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002387
Evan Chengb915f312005-12-09 22:45:35 +00002388 return std::make_pair(1, ResNo);
2389 } else if (Op->isSubClassOf("SDNodeXForm")) {
2390 assert(N->getNumChildren() == 1 && "node xform should have one child!");
Evan Cheng58e84a62005-12-14 22:02:59 +00002391 unsigned OpVal = EmitResultCode(N->getChild(0)).second;
Evan Chengb915f312005-12-09 22:45:35 +00002392 unsigned ResNo = TmpNo++;
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002393 OS << " SDOperand Tmp" << ResNo << " = Transform_" << Op->getName()
Evan Chengb915f312005-12-09 22:45:35 +00002394 << "(Tmp" << OpVal << ".Val);\n";
2395 if (isRoot) {
2396 OS << " CodeGenMap[N] = Tmp" << ResNo << ";\n";
2397 OS << " return Tmp" << ResNo << ";\n";
2398 }
2399 return std::make_pair(1, ResNo);
2400 } else {
2401 N->dump();
Chris Lattner7893f132006-01-11 01:33:49 +00002402 std::cerr << "\n";
2403 throw std::string("Unknown node in result pattern!");
Evan Chengb915f312005-12-09 22:45:35 +00002404 }
2405 }
2406
2407 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat' and
2408 /// add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
2409 /// 'Pat' may be missing types. If we find an unresolved type to add a check
2410 /// for, this returns true otherwise false if Pat has all types.
2411 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
2412 const std::string &Prefix) {
2413 // Did we find one?
2414 if (!Pat->hasTypeSet()) {
2415 // Move a type over from 'other' to 'pat'.
Nate Begemanb73628b2005-12-30 00:12:56 +00002416 Pat->setTypes(Other->getExtTypes());
Evan Chengb915f312005-12-09 22:45:35 +00002417 OS << " if (" << Prefix << ".Val->getValueType(0) != MVT::"
Nate Begemanb73628b2005-12-30 00:12:56 +00002418 << getName(Pat->getTypeNum(0)) << ") goto P" << PatternNo << "Fail;\n";
Evan Chengb915f312005-12-09 22:45:35 +00002419 return true;
Evan Chengb915f312005-12-09 22:45:35 +00002420 }
2421
Evan Cheng51fecc82006-01-09 18:27:06 +00002422 unsigned OpNo =
2423 (unsigned) NodeHasProperty(Pat, SDNodeInfo::SDNPHasChain, ISE);
Evan Chengb915f312005-12-09 22:45:35 +00002424 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
2425 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
2426 Prefix + utostr(OpNo)))
2427 return true;
2428 return false;
2429 }
2430
2431private:
Evan Cheng54597732006-01-26 00:22:25 +00002432 /// EmitInFlagSelectCode - Emit the flag operands for the DAG that is
Evan Chengb915f312005-12-09 22:45:35 +00002433 /// being built.
Evan Cheng54597732006-01-26 00:22:25 +00002434 void EmitInFlagSelectCode(TreePatternNode *N, const std::string &RootName,
2435 bool &ChainEmitted, bool isRoot = false) {
Evan Chengb915f312005-12-09 22:45:35 +00002436 const CodeGenTarget &T = ISE.getTargetInfo();
Evan Cheng51fecc82006-01-09 18:27:06 +00002437 unsigned OpNo =
2438 (unsigned) NodeHasProperty(N, SDNodeInfo::SDNPHasChain, ISE);
Evan Cheng54597732006-01-26 00:22:25 +00002439 bool HasInFlag = NodeHasProperty(N, SDNodeInfo::SDNPInFlag, ISE);
2440 bool HasOptInFlag = NodeHasProperty(N, SDNodeInfo::SDNPOptInFlag, ISE);
Evan Chengb915f312005-12-09 22:45:35 +00002441 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
2442 TreePatternNode *Child = N->getChild(i);
2443 if (!Child->isLeaf()) {
Evan Cheng54597732006-01-26 00:22:25 +00002444 EmitInFlagSelectCode(Child, RootName + utostr(OpNo), ChainEmitted);
Evan Chengb915f312005-12-09 22:45:35 +00002445 } else {
2446 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
Evan Chengb4ad33c2006-01-19 01:55:45 +00002447 if (!Child->getName().empty()) {
2448 std::string Name = RootName + utostr(OpNo);
2449 if (Duplicates.find(Name) != Duplicates.end())
2450 // A duplicate! Do not emit a copy for this node.
2451 continue;
2452 }
2453
Evan Chengb915f312005-12-09 22:45:35 +00002454 Record *RR = DI->getDef();
2455 if (RR->isSubClassOf("Register")) {
2456 MVT::ValueType RVT = getRegisterValueType(RR, T);
Evan Chengbcecf332005-12-17 01:19:28 +00002457 if (RVT == MVT::Flag) {
2458 OS << " InFlag = Select(" << RootName << OpNo << ");\n";
Evan Chengb2c6d492006-01-11 22:16:13 +00002459 } else {
2460 if (!ChainEmitted) {
2461 OS << " SDOperand Chain = CurDAG->getEntryNode();\n";
2462 ChainEmitted = true;
2463 }
Evan Chengb915f312005-12-09 22:45:35 +00002464 OS << " SDOperand " << RootName << "CR" << i << ";\n";
2465 OS << " " << RootName << "CR" << i
2466 << " = CurDAG->getCopyToReg(Chain, CurDAG->getRegister("
2467 << ISE.getQualifiedName(RR) << ", MVT::"
2468 << getEnumName(RVT) << ")"
2469 << ", Select(" << RootName << OpNo << "), InFlag);\n";
2470 OS << " Chain = " << RootName << "CR" << i
2471 << ".getValue(0);\n";
2472 OS << " InFlag = " << RootName << "CR" << i
2473 << ".getValue(1);\n";
Evan Chengb915f312005-12-09 22:45:35 +00002474 }
2475 }
2476 }
2477 }
2478 }
Evan Cheng54597732006-01-26 00:22:25 +00002479
2480 if (HasInFlag || HasOptInFlag) {
2481 if (HasOptInFlag) {
2482 OS << " if (" << RootName << ".getNumOperands() == "
2483 << OpNo+1 << ") {\n";
2484 OS << " ";
2485 }
2486 OS << " InFlag = Select(" << RootName << ".getOperand("
2487 << OpNo << "));\n";
2488 if (HasOptInFlag) {
2489 OS << " HasOptInFlag = true;\n";
2490 OS << " }\n";
2491 }
2492 }
Evan Chengb915f312005-12-09 22:45:35 +00002493 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002494
2495 /// EmitCopyFromRegs - Emit code to copy result to physical registers
Evan Cheng7b05bd52005-12-23 22:11:47 +00002496 /// as specified by the instruction. It returns true if any copy is
2497 /// emitted.
Evan Chengb2c6d492006-01-11 22:16:13 +00002498 bool EmitCopyFromRegs(TreePatternNode *N, bool &ChainEmitted) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00002499 bool RetVal = false;
Evan Cheng4fba2812005-12-20 07:37:41 +00002500 Record *Op = N->getOperator();
2501 if (Op->isSubClassOf("Instruction")) {
2502 const DAGInstruction &Inst = ISE.getInstruction(Op);
2503 const CodeGenTarget &CGT = ISE.getTargetInfo();
2504 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
2505 unsigned NumImpResults = Inst.getNumImpResults();
2506 for (unsigned i = 0; i < NumImpResults; i++) {
2507 Record *RR = Inst.getImpResult(i);
2508 if (RR->isSubClassOf("Register")) {
2509 MVT::ValueType RVT = getRegisterValueType(RR, CGT);
2510 if (RVT != MVT::Flag) {
Evan Chengb2c6d492006-01-11 22:16:13 +00002511 if (!ChainEmitted) {
2512 OS << " SDOperand Chain = CurDAG->getEntryNode();\n";
2513 ChainEmitted = true;
Evan Cheng4fba2812005-12-20 07:37:41 +00002514 }
Evan Chengb2c6d492006-01-11 22:16:13 +00002515 OS << " Result = CurDAG->getCopyFromReg(Chain, "
2516 << ISE.getQualifiedName(RR)
2517 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2518 OS << " Chain = Result.getValue(1);\n";
2519 OS << " InFlag = Result.getValue(2);\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00002520 RetVal = true;
Evan Cheng4fba2812005-12-20 07:37:41 +00002521 }
2522 }
2523 }
2524 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002525 return RetVal;
Evan Cheng4fba2812005-12-20 07:37:41 +00002526 }
Evan Chengb915f312005-12-09 22:45:35 +00002527};
2528
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002529/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
2530/// stream to match the pattern, and generate the code for the match if it
2531/// succeeds.
Chris Lattner3f7e9142005-09-23 20:52:47 +00002532void DAGISelEmitter::EmitCodeForPattern(PatternToMatch &Pattern,
2533 std::ostream &OS) {
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002534 static unsigned PatternCount = 0;
2535 unsigned PatternNo = PatternCount++;
2536 OS << " { // Pattern #" << PatternNo << ": ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002537 Pattern.getSrcPattern()->print(OS);
Chris Lattner05814af2005-09-28 17:57:56 +00002538 OS << "\n // Emits: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002539 Pattern.getDstPattern()->print(OS);
Chris Lattner3f7e9142005-09-23 20:52:47 +00002540 OS << "\n";
Evan Cheng58e84a62005-12-14 22:02:59 +00002541 OS << " // Pattern complexity = "
2542 << getPatternSize(Pattern.getSrcPattern(), *this)
2543 << " cost = "
2544 << getResultPatternCost(Pattern.getDstPattern()) << "\n";
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002545
Evan Cheng58e84a62005-12-14 22:02:59 +00002546 PatternCodeEmitter Emitter(*this, Pattern.getPredicates(),
2547 Pattern.getSrcPattern(), Pattern.getDstPattern(),
2548 PatternNo, OS);
Evan Chengb915f312005-12-09 22:45:35 +00002549
Chris Lattner8fc35682005-09-23 23:16:51 +00002550 // Emit the matcher, capturing named arguments in VariableMap.
Evan Cheng7b05bd52005-12-23 22:11:47 +00002551 bool FoundChain = false;
2552 Emitter.EmitMatchCode(Pattern.getSrcPattern(), "N", FoundChain,
2553 true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002554
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002555 // TP - Get *SOME* tree pattern, we don't care which.
2556 TreePattern &TP = *PatternFragments.begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00002557
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002558 // At this point, we know that we structurally match the pattern, but the
2559 // types of the nodes may not match. Figure out the fewest number of type
2560 // comparisons we need to emit. For example, if there is only one integer
2561 // type supported by a target, there should be no type comparisons at all for
2562 // integer patterns!
2563 //
2564 // To figure out the fewest number of type checks needed, clone the pattern,
2565 // remove the types, then perform type inference on the pattern as a whole.
2566 // If there are unresolved types, emit an explicit check for those types,
2567 // apply the type to the tree, then rerun type inference. Iterate until all
2568 // types are resolved.
2569 //
Evan Cheng58e84a62005-12-14 22:02:59 +00002570 TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002571 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00002572
2573 do {
2574 // Resolve/propagate as many types as possible.
2575 try {
2576 bool MadeChange = true;
2577 while (MadeChange)
2578 MadeChange = Pat->ApplyTypeConstraints(TP,true/*Ignore reg constraints*/);
2579 } catch (...) {
2580 assert(0 && "Error: could not find consistent types for something we"
2581 " already decided was ok!");
2582 abort();
2583 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002584
Chris Lattner7e82f132005-10-15 21:34:21 +00002585 // Insert a check for an unresolved type and add it to the tree. If we find
2586 // an unresolved type to add a check for, this returns true and we iterate,
2587 // otherwise we are done.
Evan Cheng58e84a62005-12-14 22:02:59 +00002588 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N"));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00002589
Evan Cheng58e84a62005-12-14 22:02:59 +00002590 Emitter.EmitResultCode(Pattern.getDstPattern(), true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002591
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002592 delete Pat;
2593
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002594 OS << " }\n P" << PatternNo << "Fail:\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002595}
2596
Chris Lattner37481472005-09-26 21:59:35 +00002597
2598namespace {
2599 /// CompareByRecordName - An ordering predicate that implements less-than by
2600 /// comparing the names records.
2601 struct CompareByRecordName {
2602 bool operator()(const Record *LHS, const Record *RHS) const {
2603 // Sort by name first.
2604 if (LHS->getName() < RHS->getName()) return true;
2605 // If both names are equal, sort by pointer.
2606 return LHS->getName() == RHS->getName() && LHS < RHS;
2607 }
2608 };
2609}
2610
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002611void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002612 std::string InstNS = Target.inst_begin()->second.Namespace;
2613 if (!InstNS.empty()) InstNS += "::";
2614
Chris Lattner602f6922006-01-04 00:25:00 +00002615 // Group the patterns by their top-level opcodes.
2616 std::map<Record*, std::vector<PatternToMatch*>,
2617 CompareByRecordName> PatternsByOpcode;
2618 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
2619 TreePatternNode *Node = PatternsToMatch[i].getSrcPattern();
2620 if (!Node->isLeaf()) {
2621 PatternsByOpcode[Node->getOperator()].push_back(&PatternsToMatch[i]);
2622 } else {
2623 const ComplexPattern *CP;
2624 if (IntInit *II =
2625 dynamic_cast<IntInit*>(Node->getLeafValue())) {
2626 PatternsByOpcode[getSDNodeNamed("imm")].push_back(&PatternsToMatch[i]);
2627 } else if ((CP = NodeGetComplexPattern(Node, *this))) {
2628 std::vector<Record*> OpNodes = CP->getRootNodes();
2629 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
2630 PatternsByOpcode[OpNodes[j]].insert(PatternsByOpcode[OpNodes[j]].begin(),
2631 &PatternsToMatch[i]);
2632 }
2633 } else {
2634 std::cerr << "Unrecognized opcode '";
2635 Node->dump();
2636 std::cerr << "' on tree pattern '";
2637 std::cerr << PatternsToMatch[i].getDstPattern()->getOperator()->getName();
2638 std::cerr << "'!\n";
2639 exit(1);
2640 }
2641 }
2642 }
2643
2644 // Emit one Select_* method for each top-level opcode. We do this instead of
2645 // emitting one giant switch statement to support compilers where this will
2646 // result in the recursive functions taking less stack space.
2647 for (std::map<Record*, std::vector<PatternToMatch*>,
2648 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2649 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
2650 OS << "SDOperand Select_" << PBOI->first->getName() << "(SDOperand N) {\n";
2651
2652 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
2653 std::vector<PatternToMatch*> &Patterns = PBOI->second;
2654
2655 // We want to emit all of the matching code now. However, we want to emit
2656 // the matches in order of minimal cost. Sort the patterns so the least
2657 // cost one is at the start.
2658 std::stable_sort(Patterns.begin(), Patterns.end(),
2659 PatternSortingPredicate(*this));
2660
2661 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
2662 EmitCodeForPattern(*Patterns[i], OS);
2663
2664 OS << " std::cerr << \"Cannot yet select: \";\n"
2665 << " N.Val->dump(CurDAG);\n"
2666 << " std::cerr << '\\n';\n"
2667 << " abort();\n"
2668 << "}\n\n";
2669 }
2670
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002671 // Emit boilerplate.
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00002672 OS << "SDOperand Select_INLINEASM(SDOperand N) {\n"
2673 << " std::vector<SDOperand> Ops(N.Val->op_begin(), N.Val->op_end());\n"
2674 << " Ops[0] = Select(N.getOperand(0)); // Select the chain.\n\n"
2675 << " // Select the flag operand.\n"
2676 << " if (Ops.back().getValueType() == MVT::Flag)\n"
2677 << " Ops.back() = Select(Ops.back());\n"
2678 << " std::vector<MVT::ValueType> VTs;\n"
2679 << " VTs.push_back(MVT::Other);\n"
2680 << " VTs.push_back(MVT::Flag);\n"
2681 << " SDOperand New = CurDAG->getNode(ISD::INLINEASM, VTs, Ops);\n"
2682 << " CodeGenMap[N.getValue(0)] = New;\n"
2683 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2684 << " return New.getValue(N.ResNo);\n"
2685 << "}\n\n";
2686
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002687 OS << "// The main instruction selector code.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002688 << "SDOperand SelectCode(SDOperand N) {\n"
2689 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002690 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
2691 << "INSTRUCTION_LIST_END))\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002692 << " return N; // Already selected.\n\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002693 << " std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(N);\n"
Evan Cheng481c8e02005-12-12 23:22:48 +00002694 << " if (CGMI != CodeGenMap.end()) return CGMI->second;\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002695 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002696 << " default: break;\n"
2697 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner5216c692005-12-18 21:05:44 +00002698 << " case ISD::BasicBlock:\n"
Chris Lattner8020a522006-01-11 19:52:27 +00002699 << " case ISD::Register:\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002700 << " return N;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002701 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002702 << " case ISD::AssertZext: {\n"
2703 << " SDOperand Tmp0 = Select(N.getOperand(0));\n"
2704 << " if (!N.Val->hasOneUse()) CodeGenMap[N] = Tmp0;\n"
2705 << " return Tmp0;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002706 << " }\n"
2707 << " case ISD::TokenFactor:\n"
2708 << " if (N.getNumOperands() == 2) {\n"
2709 << " SDOperand Op0 = Select(N.getOperand(0));\n"
2710 << " SDOperand Op1 = Select(N.getOperand(1));\n"
2711 << " return CodeGenMap[N] =\n"
2712 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Op0, Op1);\n"
2713 << " } else {\n"
2714 << " std::vector<SDOperand> Ops;\n"
2715 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
2716 << " Ops.push_back(Select(N.getOperand(i)));\n"
2717 << " return CodeGenMap[N] = \n"
2718 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Ops);\n"
2719 << " }\n"
2720 << " case ISD::CopyFromReg: {\n"
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002721 << " SDOperand Chain = Select(N.getOperand(0));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002722 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
2723 << " MVT::ValueType VT = N.Val->getValueType(0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002724 << " if (N.Val->getNumValues() == 2) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002725 << " if (Chain == N.getOperand(0)) return N; // No change\n"
2726 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT);\n"
2727 << " CodeGenMap[N.getValue(0)] = New;\n"
2728 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2729 << " return New.getValue(N.ResNo);\n"
2730 << " } else {\n"
Chris Lattner7a8054f2005-12-22 20:37:36 +00002731 << " SDOperand Flag(0, 0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002732 << " if (N.getNumOperands() == 3) Flag = Select(N.getOperand(2));\n"
2733 << " if (Chain == N.getOperand(0) &&\n"
2734 << " (N.getNumOperands() == 2 || Flag == N.getOperand(2)))\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002735 << " return N; // No change\n"
2736 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT, Flag);\n"
2737 << " CodeGenMap[N.getValue(0)] = New;\n"
2738 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2739 << " CodeGenMap[N.getValue(2)] = New.getValue(2);\n"
2740 << " return New.getValue(N.ResNo);\n"
2741 << " }\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002742 << " }\n"
2743 << " case ISD::CopyToReg: {\n"
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002744 << " SDOperand Chain = Select(N.getOperand(0));\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002745 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002746 << " SDOperand Val = Select(N.getOperand(2));\n"
Chris Lattner4e3c8e512006-01-03 22:55:16 +00002747 << " SDOperand Result = N;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002748 << " if (N.Val->getNumValues() == 1) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002749 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2))\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002750 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002751 << " return CodeGenMap[N] = Result;\n"
2752 << " } else {\n"
Chris Lattner7a8054f2005-12-22 20:37:36 +00002753 << " SDOperand Flag(0, 0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002754 << " if (N.getNumOperands() == 4) Flag = Select(N.getOperand(3));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002755 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2) ||\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002756 << " (N.getNumOperands() == 4 && Flag != N.getOperand(3)))\n"
2757 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val, Flag);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002758 << " CodeGenMap[N.getValue(0)] = Result;\n"
2759 << " CodeGenMap[N.getValue(1)] = Result.getValue(1);\n"
2760 << " return Result.getValue(N.ResNo);\n"
2761 << " }\n"
Chris Lattnerfabcb7a2006-01-26 23:08:55 +00002762 << " }\n"
2763 << " case ISD::INLINEASM: return Select_INLINEASM(N);\n";
2764
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002765
Chris Lattner602f6922006-01-04 00:25:00 +00002766 // Loop over all of the case statements, emiting a call to each method we
2767 // emitted above.
Chris Lattner37481472005-09-26 21:59:35 +00002768 for (std::map<Record*, std::vector<PatternToMatch*>,
2769 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2770 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
Chris Lattner81303322005-09-23 19:36:15 +00002771 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
Chris Lattner602f6922006-01-04 00:25:00 +00002772 OS << " case " << OpcodeInfo.getEnumName() << ": "
Chris Lattner11966a02006-01-04 00:32:01 +00002773 << std::string(std::max(0, int(24-OpcodeInfo.getEnumName().size())), ' ')
Chris Lattner602f6922006-01-04 00:25:00 +00002774 << "return Select_" << PBOI->first->getName() << "(N);\n";
Chris Lattner81303322005-09-23 19:36:15 +00002775 }
Chris Lattner81303322005-09-23 19:36:15 +00002776
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002777 OS << " } // end of big switch.\n\n"
2778 << " std::cerr << \"Cannot yet select: \";\n"
Evan Cheng97938882005-12-22 02:24:50 +00002779 << " N.Val->dump(CurDAG);\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002780 << " std::cerr << '\\n';\n"
2781 << " abort();\n"
2782 << "}\n";
2783}
2784
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002785void DAGISelEmitter::run(std::ostream &OS) {
2786 EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
2787 " target", OS);
2788
Chris Lattner1f39e292005-09-14 00:09:24 +00002789 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2790 << "// *** instruction selector class. These functions are really "
2791 << "methods.\n\n";
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002792
Chris Lattner296dfe32005-09-24 00:50:51 +00002793 OS << "// Instance var to keep track of multiply used nodes that have \n"
2794 << "// already been selected.\n"
2795 << "std::map<SDOperand, SDOperand> CodeGenMap;\n";
2796
Chris Lattnerca559d02005-09-08 21:03:01 +00002797 ParseNodeInfo();
Chris Lattner24eeeb82005-09-13 21:51:00 +00002798 ParseNodeTransforms(OS);
Evan Cheng0fc71982005-12-08 02:00:36 +00002799 ParseComplexPatterns();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002800 ParsePatternFragments(OS);
2801 ParseInstructions();
2802 ParsePatterns();
Chris Lattner3f7e9142005-09-23 20:52:47 +00002803
Chris Lattnere97603f2005-09-28 19:27:25 +00002804 // Generate variants. For example, commutative patterns can match
Chris Lattner3f7e9142005-09-23 20:52:47 +00002805 // multiple ways. Add them to PatternsToMatch as well.
Chris Lattnere97603f2005-09-28 19:27:25 +00002806 GenerateVariants();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002807
Chris Lattnere46e17b2005-09-29 19:28:10 +00002808
2809 DEBUG(std::cerr << "\n\nALL PATTERNS TO MATCH:\n\n";
2810 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002811 std::cerr << "PATTERN: "; PatternsToMatch[i].getSrcPattern()->dump();
2812 std::cerr << "\nRESULT: ";PatternsToMatch[i].getDstPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00002813 std::cerr << "\n";
2814 });
2815
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002816 // At this point, we have full information about the 'Patterns' we need to
2817 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002818 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002819 EmitInstructionSelector(OS);
2820
2821 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
2822 E = PatternFragments.end(); I != E; ++I)
2823 delete I->second;
2824 PatternFragments.clear();
2825
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002826 Instructions.clear();
2827}