blob: 510f41cfd9bf2ab89aafeac2fdc2dc174c080561 [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
37/// isExtIntegerVT - Return true if the specified extended value type is
38/// integer, or isInt.
39static bool isExtIntegerVT(unsigned char VT) {
40 return VT == MVT::isInt ||
41 (VT < MVT::LAST_VALUETYPE && MVT::isInteger((MVT::ValueType)VT));
42}
43
44/// isExtFloatingPointVT - Return true if the specified extended value type is
45/// floating point, or isFP.
46static bool isExtFloatingPointVT(unsigned char VT) {
47 return VT == MVT::isFP ||
48 (VT < MVT::LAST_VALUETYPE && MVT::isFloatingPoint((MVT::ValueType)VT));
49}
50
51//===----------------------------------------------------------------------===//
Chris Lattner33c92e92005-09-08 21:27:15 +000052// SDTypeConstraint implementation
53//
54
55SDTypeConstraint::SDTypeConstraint(Record *R) {
56 OperandNo = R->getValueAsInt("OperandNum");
57
58 if (R->isSubClassOf("SDTCisVT")) {
59 ConstraintType = SDTCisVT;
60 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
Chris Lattner5b21be72005-12-09 22:57:42 +000061 } else if (R->isSubClassOf("SDTCisPtrTy")) {
62 ConstraintType = SDTCisPtrTy;
Chris Lattner33c92e92005-09-08 21:27:15 +000063 } else if (R->isSubClassOf("SDTCisInt")) {
64 ConstraintType = SDTCisInt;
65 } else if (R->isSubClassOf("SDTCisFP")) {
66 ConstraintType = SDTCisFP;
67 } else if (R->isSubClassOf("SDTCisSameAs")) {
68 ConstraintType = SDTCisSameAs;
69 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
70 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
71 ConstraintType = SDTCisVTSmallerThanOp;
72 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum =
73 R->getValueAsInt("OtherOperandNum");
Chris Lattner03ebd802005-10-14 04:53:53 +000074 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
75 ConstraintType = SDTCisOpSmallerThanOp;
76 x.SDTCisOpSmallerThanOp_Info.BigOperandNum =
77 R->getValueAsInt("BigOperandNum");
Chris Lattner33c92e92005-09-08 21:27:15 +000078 } else {
79 std::cerr << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n";
80 exit(1);
81 }
82}
83
Chris Lattner32707602005-09-08 23:22:48 +000084/// getOperandNum - Return the node corresponding to operand #OpNo in tree
85/// N, which has NumResults results.
86TreePatternNode *SDTypeConstraint::getOperandNum(unsigned OpNo,
87 TreePatternNode *N,
88 unsigned NumResults) const {
Evan Cheng1c3d19e2005-12-04 08:18:16 +000089 assert(NumResults <= 1 &&
90 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +000091
92 if (OpNo < NumResults)
93 return N; // FIXME: need value #
94 else
95 return N->getChild(OpNo-NumResults);
96}
97
98/// ApplyTypeConstraint - Given a node in a pattern, apply this type
99/// constraint to the nodes operands. This returns true if it makes a
100/// change, false otherwise. If a type contradiction is found, throw an
101/// exception.
102bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
103 const SDNodeInfo &NodeInfo,
104 TreePattern &TP) const {
105 unsigned NumResults = NodeInfo.getNumResults();
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000106 assert(NumResults <= 1 &&
107 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +0000108
109 // Check that the number of operands is sane.
110 if (NodeInfo.getNumOperands() >= 0) {
111 if (N->getNumChildren() != (unsigned)NodeInfo.getNumOperands())
112 TP.error(N->getOperator()->getName() + " node requires exactly " +
113 itostr(NodeInfo.getNumOperands()) + " operands!");
114 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000115
116 const CodeGenTarget &CGT = TP.getDAGISelEmitter().getTargetInfo();
Chris Lattner32707602005-09-08 23:22:48 +0000117
118 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NumResults);
119
120 switch (ConstraintType) {
121 default: assert(0 && "Unknown constraint type!");
122 case SDTCisVT:
123 // Operand must be a particular type.
124 return NodeToApply->UpdateNodeType(x.SDTCisVT_Info.VT, TP);
Chris Lattner5b21be72005-12-09 22:57:42 +0000125 case SDTCisPtrTy: {
126 // Operand must be same as target pointer type.
127 return NodeToApply->UpdateNodeType(CGT.getPointerType(), TP);
128 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000129 case SDTCisInt: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000130 // If there is only one integer type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000131 std::vector<MVT::ValueType> IntVTs =
132 FilterVTs(CGT.getLegalValueTypes(), MVT::isInteger);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000133
134 // If we found exactly one supported integer type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000135 if (IntVTs.size() == 1)
136 return NodeToApply->UpdateNodeType(IntVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000137 return NodeToApply->UpdateNodeType(MVT::isInt, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000138 }
139 case SDTCisFP: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000140 // If there is only one FP type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000141 std::vector<MVT::ValueType> FPVTs =
142 FilterVTs(CGT.getLegalValueTypes(), MVT::isFloatingPoint);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000143
144 // If we found exactly one supported FP type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000145 if (FPVTs.size() == 1)
146 return NodeToApply->UpdateNodeType(FPVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000147 return NodeToApply->UpdateNodeType(MVT::isFP, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000148 }
Chris Lattner32707602005-09-08 23:22:48 +0000149 case SDTCisSameAs: {
150 TreePatternNode *OtherNode =
151 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000152 return NodeToApply->UpdateNodeType(OtherNode->getExtType(), TP) |
153 OtherNode->UpdateNodeType(NodeToApply->getExtType(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000154 }
155 case SDTCisVTSmallerThanOp: {
156 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must
157 // have an integer type that is smaller than the VT.
158 if (!NodeToApply->isLeaf() ||
159 !dynamic_cast<DefInit*>(NodeToApply->getLeafValue()) ||
160 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
161 ->isSubClassOf("ValueType"))
162 TP.error(N->getOperator()->getName() + " expects a VT operand!");
163 MVT::ValueType VT =
164 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
165 if (!MVT::isInteger(VT))
166 TP.error(N->getOperator()->getName() + " VT operand must be integer!");
167
168 TreePatternNode *OtherNode =
169 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N,NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000170
171 // It must be integer.
172 bool MadeChange = false;
173 MadeChange |= OtherNode->UpdateNodeType(MVT::isInt, TP);
174
175 if (OtherNode->hasTypeSet() && OtherNode->getType() <= VT)
Chris Lattner32707602005-09-08 23:22:48 +0000176 OtherNode->UpdateNodeType(MVT::Other, TP); // Throw an error.
177 return false;
178 }
Chris Lattner03ebd802005-10-14 04:53:53 +0000179 case SDTCisOpSmallerThanOp: {
Chris Lattner603d78c2005-10-14 06:25:00 +0000180 TreePatternNode *BigOperand =
181 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NumResults);
182
183 // Both operands must be integer or FP, but we don't care which.
184 bool MadeChange = false;
185
186 if (isExtIntegerVT(NodeToApply->getExtType()))
187 MadeChange |= BigOperand->UpdateNodeType(MVT::isInt, TP);
188 else if (isExtFloatingPointVT(NodeToApply->getExtType()))
189 MadeChange |= BigOperand->UpdateNodeType(MVT::isFP, TP);
190 if (isExtIntegerVT(BigOperand->getExtType()))
191 MadeChange |= NodeToApply->UpdateNodeType(MVT::isInt, TP);
192 else if (isExtFloatingPointVT(BigOperand->getExtType()))
193 MadeChange |= NodeToApply->UpdateNodeType(MVT::isFP, TP);
194
195 std::vector<MVT::ValueType> VTs = CGT.getLegalValueTypes();
196
197 if (isExtIntegerVT(NodeToApply->getExtType())) {
198 VTs = FilterVTs(VTs, MVT::isInteger);
199 } else if (isExtFloatingPointVT(NodeToApply->getExtType())) {
200 VTs = FilterVTs(VTs, MVT::isFloatingPoint);
201 } else {
202 VTs.clear();
203 }
204
205 switch (VTs.size()) {
206 default: // Too many VT's to pick from.
207 case 0: break; // No info yet.
208 case 1:
209 // Only one VT of this flavor. Cannot ever satisify the constraints.
210 return NodeToApply->UpdateNodeType(MVT::Other, TP); // throw
211 case 2:
212 // If we have exactly two possible types, the little operand must be the
213 // small one, the big operand should be the big one. Common with
214 // float/double for example.
215 assert(VTs[0] < VTs[1] && "Should be sorted!");
216 MadeChange |= NodeToApply->UpdateNodeType(VTs[0], TP);
217 MadeChange |= BigOperand->UpdateNodeType(VTs[1], TP);
218 break;
219 }
220 return MadeChange;
Chris Lattner03ebd802005-10-14 04:53:53 +0000221 }
Chris Lattner32707602005-09-08 23:22:48 +0000222 }
223 return false;
224}
225
226
Chris Lattner33c92e92005-09-08 21:27:15 +0000227//===----------------------------------------------------------------------===//
Chris Lattnerca559d02005-09-08 21:03:01 +0000228// SDNodeInfo implementation
229//
230SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
231 EnumName = R->getValueAsString("Opcode");
232 SDClassName = R->getValueAsString("SDClass");
Chris Lattner33c92e92005-09-08 21:27:15 +0000233 Record *TypeProfile = R->getValueAsDef("TypeProfile");
234 NumResults = TypeProfile->getValueAsInt("NumResults");
235 NumOperands = TypeProfile->getValueAsInt("NumOperands");
236
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000237 // Parse the properties.
238 Properties = 0;
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000239 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
Chris Lattner6bc0d742005-10-28 22:43:25 +0000240 for (unsigned i = 0, e = PropList.size(); i != e; ++i) {
241 if (PropList[i]->getName() == "SDNPCommutative") {
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000242 Properties |= 1 << SDNPCommutative;
Chris Lattner6bc0d742005-10-28 22:43:25 +0000243 } else if (PropList[i]->getName() == "SDNPAssociative") {
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000244 Properties |= 1 << SDNPAssociative;
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000245 } else if (PropList[i]->getName() == "SDNPHasChain") {
246 Properties |= 1 << SDNPHasChain;
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000247 } else {
Chris Lattner6bc0d742005-10-28 22:43:25 +0000248 std::cerr << "Unknown SD Node property '" << PropList[i]->getName()
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000249 << "' on node '" << R->getName() << "'!\n";
250 exit(1);
251 }
252 }
253
254
Chris Lattner33c92e92005-09-08 21:27:15 +0000255 // Parse the type constraints.
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000256 std::vector<Record*> ConstraintList =
257 TypeProfile->getValueAsListOfDefs("Constraints");
258 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
Chris Lattnerca559d02005-09-08 21:03:01 +0000259}
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000260
261//===----------------------------------------------------------------------===//
262// TreePatternNode implementation
263//
264
265TreePatternNode::~TreePatternNode() {
266#if 0 // FIXME: implement refcounted tree nodes!
267 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
268 delete getChild(i);
269#endif
270}
271
Chris Lattner32707602005-09-08 23:22:48 +0000272/// UpdateNodeType - Set the node type of N to VT if VT contains
273/// information. If N already contains a conflicting type, then throw an
274/// exception. This returns true if any information was updated.
275///
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000276bool TreePatternNode::UpdateNodeType(unsigned char VT, TreePattern &TP) {
277 if (VT == MVT::isUnknown || getExtType() == VT) return false;
278 if (getExtType() == MVT::isUnknown) {
Chris Lattner32707602005-09-08 23:22:48 +0000279 setType(VT);
280 return true;
281 }
282
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000283 // If we are told this is to be an int or FP type, and it already is, ignore
284 // the advice.
285 if ((VT == MVT::isInt && isExtIntegerVT(getExtType())) ||
286 (VT == MVT::isFP && isExtFloatingPointVT(getExtType())))
287 return false;
288
289 // If we know this is an int or fp type, and we are told it is a specific one,
290 // take the advice.
291 if ((getExtType() == MVT::isInt && isExtIntegerVT(VT)) ||
292 (getExtType() == MVT::isFP && isExtFloatingPointVT(VT))) {
293 setType(VT);
294 return true;
295 }
296
Chris Lattner1531f202005-10-26 16:59:37 +0000297 if (isLeaf()) {
298 dump();
Evan Chengbcecf332005-12-17 01:19:28 +0000299 std::cerr << " ";
Chris Lattner1531f202005-10-26 16:59:37 +0000300 TP.error("Type inference contradiction found in node!");
301 } else {
302 TP.error("Type inference contradiction found in node " +
303 getOperator()->getName() + "!");
304 }
Chris Lattner32707602005-09-08 23:22:48 +0000305 return true; // unreachable
306}
307
308
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000309void TreePatternNode::print(std::ostream &OS) const {
310 if (isLeaf()) {
311 OS << *getLeafValue();
312 } else {
313 OS << "(" << getOperator()->getName();
314 }
315
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000316 switch (getExtType()) {
317 case MVT::Other: OS << ":Other"; break;
318 case MVT::isInt: OS << ":isInt"; break;
319 case MVT::isFP : OS << ":isFP"; break;
320 case MVT::isUnknown: ; /*OS << ":?";*/ break;
321 default: OS << ":" << getType(); break;
322 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000323
324 if (!isLeaf()) {
325 if (getNumChildren() != 0) {
326 OS << " ";
327 getChild(0)->print(OS);
328 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
329 OS << ", ";
330 getChild(i)->print(OS);
331 }
332 }
333 OS << ")";
334 }
335
336 if (!PredicateFn.empty())
Chris Lattner24eeeb82005-09-13 21:51:00 +0000337 OS << "<<P:" << PredicateFn << ">>";
Chris Lattnerb0276202005-09-14 22:55:26 +0000338 if (TransformFn)
339 OS << "<<X:" << TransformFn->getName() << ">>";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000340 if (!getName().empty())
341 OS << ":$" << getName();
342
343}
344void TreePatternNode::dump() const {
345 print(std::cerr);
346}
347
Chris Lattnere46e17b2005-09-29 19:28:10 +0000348/// isIsomorphicTo - Return true if this node is recursively isomorphic to
349/// the specified node. For this comparison, all of the state of the node
350/// is considered, except for the assigned name. Nodes with differing names
351/// that are otherwise identical are considered isomorphic.
352bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N) const {
353 if (N == this) return true;
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000354 if (N->isLeaf() != isLeaf() || getExtType() != N->getExtType() ||
Chris Lattnere46e17b2005-09-29 19:28:10 +0000355 getPredicateFn() != N->getPredicateFn() ||
356 getTransformFn() != N->getTransformFn())
357 return false;
358
359 if (isLeaf()) {
360 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue()))
361 if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue()))
362 return DI->getDef() == NDI->getDef();
363 return getLeafValue() == N->getLeafValue();
364 }
365
366 if (N->getOperator() != getOperator() ||
367 N->getNumChildren() != getNumChildren()) return false;
368 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
369 if (!getChild(i)->isIsomorphicTo(N->getChild(i)))
370 return false;
371 return true;
372}
373
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000374/// clone - Make a copy of this tree and all of its children.
375///
376TreePatternNode *TreePatternNode::clone() const {
377 TreePatternNode *New;
378 if (isLeaf()) {
379 New = new TreePatternNode(getLeafValue());
380 } else {
381 std::vector<TreePatternNode*> CChildren;
382 CChildren.reserve(Children.size());
383 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
384 CChildren.push_back(getChild(i)->clone());
385 New = new TreePatternNode(getOperator(), CChildren);
386 }
387 New->setName(getName());
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000388 New->setType(getExtType());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000389 New->setPredicateFn(getPredicateFn());
Chris Lattner24eeeb82005-09-13 21:51:00 +0000390 New->setTransformFn(getTransformFn());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000391 return New;
392}
393
Chris Lattner32707602005-09-08 23:22:48 +0000394/// SubstituteFormalArguments - Replace the formal arguments in this tree
395/// with actual values specified by ArgMap.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000396void TreePatternNode::
397SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
398 if (isLeaf()) return;
399
400 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
401 TreePatternNode *Child = getChild(i);
402 if (Child->isLeaf()) {
403 Init *Val = Child->getLeafValue();
404 if (dynamic_cast<DefInit*>(Val) &&
405 static_cast<DefInit*>(Val)->getDef()->getName() == "node") {
406 // We found a use of a formal argument, replace it with its value.
407 Child = ArgMap[Child->getName()];
408 assert(Child && "Couldn't find formal argument!");
409 setChild(i, Child);
410 }
411 } else {
412 getChild(i)->SubstituteFormalArguments(ArgMap);
413 }
414 }
415}
416
417
418/// InlinePatternFragments - If this pattern refers to any pattern
419/// fragments, inline them into place, giving us a pattern without any
420/// PatFrag references.
421TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
422 if (isLeaf()) return this; // nothing to do.
423 Record *Op = getOperator();
424
425 if (!Op->isSubClassOf("PatFrag")) {
426 // Just recursively inline children nodes.
427 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
428 setChild(i, getChild(i)->InlinePatternFragments(TP));
429 return this;
430 }
431
432 // Otherwise, we found a reference to a fragment. First, look up its
433 // TreePattern record.
434 TreePattern *Frag = TP.getDAGISelEmitter().getPatternFragment(Op);
435
436 // Verify that we are passing the right number of operands.
437 if (Frag->getNumArgs() != Children.size())
438 TP.error("'" + Op->getName() + "' fragment requires " +
439 utostr(Frag->getNumArgs()) + " operands!");
440
Chris Lattner37937092005-09-09 01:15:01 +0000441 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000442
443 // Resolve formal arguments to their actual value.
444 if (Frag->getNumArgs()) {
445 // Compute the map of formal to actual arguments.
446 std::map<std::string, TreePatternNode*> ArgMap;
447 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
448 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
449
450 FragTree->SubstituteFormalArguments(ArgMap);
451 }
452
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000453 FragTree->setName(getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000454 FragTree->UpdateNodeType(getExtType(), TP);
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000455
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000456 // Get a new copy of this fragment to stitch into here.
457 //delete this; // FIXME: implement refcounting!
458 return FragTree;
459}
460
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000461/// getIntrinsicType - Check to see if the specified record has an intrinsic
462/// type which should be applied to it. This infer the type of register
463/// references from the register file information, for example.
464///
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000465static unsigned char getIntrinsicType(Record *R, bool NotRegisters,
466 TreePattern &TP) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000467 // Check to see if this is a register or a register class...
468 if (R->isSubClassOf("RegisterClass")) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000469 if (NotRegisters) return MVT::isUnknown;
Nate Begeman6510b222005-12-01 04:51:06 +0000470 const CodeGenRegisterClass &RC =
471 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(R);
472 return RC.getValueTypeNum(0);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000473 } else if (R->isSubClassOf("PatFrag")) {
474 // Pattern fragment types will be resolved when they are inlined.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000475 return MVT::isUnknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000476 } else if (R->isSubClassOf("Register")) {
Chris Lattner22faeab2005-12-05 02:36:37 +0000477 // If the register appears in exactly one regclass, and the regclass has one
478 // value type, use it as the known type.
479 const CodeGenTarget &T = TP.getDAGISelEmitter().getTargetInfo();
480 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
481 if (RC->getNumValueTypes() == 1)
482 return RC->getValueTypeNum(0);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000483 return MVT::isUnknown;
Chris Lattner1531f202005-10-26 16:59:37 +0000484 } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
485 // Using a VTSDNode or CondCodeSDNode.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000486 return MVT::Other;
Evan Cheng0fc71982005-12-08 02:00:36 +0000487 } else if (R->isSubClassOf("ComplexPattern")) {
Evan Cheng3aa39f42005-12-08 02:14:08 +0000488 return TP.getDAGISelEmitter().getComplexPattern(R).getValueType();
Evan Cheng01f318b2005-12-14 02:21:57 +0000489 } else if (R->getName() == "node" || R->getName() == "srcvalue") {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000490 // Placeholder.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000491 return MVT::isUnknown;
Evan Cheng97938882005-12-22 02:24:50 +0000492 } else if (R->getName() == "FLAG") {
493 // Some pseudo flag operand.
494 return MVT::Flag;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000495 }
496
497 TP.error("Unknown node flavor used in pattern: " + R->getName());
498 return MVT::Other;
499}
500
Chris Lattner32707602005-09-08 23:22:48 +0000501/// ApplyTypeConstraints - Apply all of the type constraints relevent to
502/// this node and its children in the tree. This returns true if it makes a
503/// change, false otherwise. If a type contradiction is found, throw an
504/// exception.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000505bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
506 if (isLeaf()) {
Chris Lattner465c7372005-11-03 05:46:11 +0000507 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000508 // If it's a regclass or something else known, include the type.
509 return UpdateNodeType(getIntrinsicType(DI->getDef(), NotRegisters, TP),
510 TP);
Chris Lattner465c7372005-11-03 05:46:11 +0000511 } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
512 // Int inits are always integers. :)
513 bool MadeChange = UpdateNodeType(MVT::isInt, TP);
514
515 if (hasTypeSet()) {
516 unsigned Size = MVT::getSizeInBits(getType());
517 // Make sure that the value is representable for this type.
518 if (Size < 32) {
519 int Val = (II->getValue() << (32-Size)) >> (32-Size);
520 if (Val != II->getValue())
521 TP.error("Sign-extended integer value '" + itostr(II->getValue()) +
522 "' is out of range for type 'MVT::" +
523 getEnumName(getType()) + "'!");
524 }
525 }
526
527 return MadeChange;
528 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000529 return false;
530 }
Chris Lattner32707602005-09-08 23:22:48 +0000531
532 // special handling for set, which isn't really an SDNode.
533 if (getOperator()->getName() == "set") {
534 assert (getNumChildren() == 2 && "Only handle 2 operand set's for now!");
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000535 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
536 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner32707602005-09-08 23:22:48 +0000537
538 // Types of operands must match.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000539 MadeChange |= getChild(0)->UpdateNodeType(getChild(1)->getExtType(), TP);
540 MadeChange |= getChild(1)->UpdateNodeType(getChild(0)->getExtType(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000541 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
542 return MadeChange;
Chris Lattnerabbb6052005-09-15 21:42:00 +0000543 } else if (getOperator()->isSubClassOf("SDNode")) {
544 const SDNodeInfo &NI = TP.getDAGISelEmitter().getSDNodeInfo(getOperator());
545
546 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
547 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000548 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000549 // Branch, etc. do not produce results and top-level forms in instr pattern
550 // must have void types.
551 if (NI.getNumResults() == 0)
552 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
Chris Lattnerabbb6052005-09-15 21:42:00 +0000553 return MadeChange;
Chris Lattnera28aec12005-09-15 22:23:50 +0000554 } else if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattnerae5b3502005-09-15 21:57:35 +0000555 const DAGInstruction &Inst =
556 TP.getDAGISelEmitter().getInstruction(getOperator());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000557 bool MadeChange = false;
558 unsigned NumResults = Inst.getNumResults();
Chris Lattnerae5b3502005-09-15 21:57:35 +0000559
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000560 assert(NumResults <= 1 &&
561 "Only supports zero or one result instrs!");
Chris Lattnera28aec12005-09-15 22:23:50 +0000562 // Apply the result type to the node
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000563 if (NumResults == 0) {
564 MadeChange = UpdateNodeType(MVT::isVoid, TP);
565 } else {
566 Record *ResultNode = Inst.getResult(0);
567 assert(ResultNode->isSubClassOf("RegisterClass") &&
568 "Operands should be register classes!");
Nate Begemanddb39542005-12-01 00:06:14 +0000569
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000570 const CodeGenRegisterClass &RC =
571 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(ResultNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000572
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000573 // Get the first ValueType in the RegClass, it's as good as any.
574 MadeChange = UpdateNodeType(RC.getValueTypeNum(0), TP);
575 }
Chris Lattnera28aec12005-09-15 22:23:50 +0000576
577 if (getNumChildren() != Inst.getNumOperands())
578 TP.error("Instruction '" + getOperator()->getName() + " expects " +
579 utostr(Inst.getNumOperands()) + " operands, not " +
580 utostr(getNumChildren()) + " operands!");
581 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
Nate Begemanddb39542005-12-01 00:06:14 +0000582 Record *OperandNode = Inst.getOperand(i);
583 MVT::ValueType VT;
584 if (OperandNode->isSubClassOf("RegisterClass")) {
585 const CodeGenRegisterClass &RC =
586 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(OperandNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000587 VT = RC.getValueTypeNum(0);
Nate Begemanddb39542005-12-01 00:06:14 +0000588 } else if (OperandNode->isSubClassOf("Operand")) {
589 VT = getValueType(OperandNode->getValueAsDef("Type"));
590 } else {
591 assert(0 && "Unknown operand type!");
592 abort();
593 }
594
595 MadeChange |= getChild(i)->UpdateNodeType(VT, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000596 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnera28aec12005-09-15 22:23:50 +0000597 }
598 return MadeChange;
599 } else {
600 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
601
602 // Node transforms always take one operand, and take and return the same
603 // type.
604 if (getNumChildren() != 1)
605 TP.error("Node transform '" + getOperator()->getName() +
606 "' requires one operand!");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000607 bool MadeChange = UpdateNodeType(getChild(0)->getExtType(), TP);
608 MadeChange |= getChild(0)->UpdateNodeType(getExtType(), TP);
Chris Lattnera28aec12005-09-15 22:23:50 +0000609 return MadeChange;
Chris Lattner32707602005-09-08 23:22:48 +0000610 }
Chris Lattner32707602005-09-08 23:22:48 +0000611}
612
Chris Lattnere97603f2005-09-28 19:27:25 +0000613/// canPatternMatch - If it is impossible for this pattern to match on this
614/// target, fill in Reason and return false. Otherwise, return true. This is
615/// used as a santity check for .td files (to prevent people from writing stuff
616/// that can never possibly work), and to prevent the pattern permuter from
617/// generating stuff that is useless.
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000618bool TreePatternNode::canPatternMatch(std::string &Reason, DAGISelEmitter &ISE){
Chris Lattnere97603f2005-09-28 19:27:25 +0000619 if (isLeaf()) return true;
620
621 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
622 if (!getChild(i)->canPatternMatch(Reason, ISE))
623 return false;
Evan Cheng0fc71982005-12-08 02:00:36 +0000624
Chris Lattnere97603f2005-09-28 19:27:25 +0000625 // If this node is a commutative operator, check that the LHS isn't an
626 // immediate.
627 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(getOperator());
628 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
629 // Scan all of the operands of the node and make sure that only the last one
630 // is a constant node.
631 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i)
632 if (!getChild(i)->isLeaf() &&
633 getChild(i)->getOperator()->getName() == "imm") {
634 Reason = "Immediate value must be on the RHS of commutative operators!";
635 return false;
636 }
637 }
638
639 return true;
640}
Chris Lattner32707602005-09-08 23:22:48 +0000641
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000642//===----------------------------------------------------------------------===//
643// TreePattern implementation
644//
645
Chris Lattneredbd8712005-10-21 01:19:59 +0000646TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattneree9f0c32005-09-13 21:20:49 +0000647 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000648 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000649 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
650 Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000651}
652
Chris Lattneredbd8712005-10-21 01:19:59 +0000653TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000654 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000655 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000656 Trees.push_back(ParseTreePattern(Pat));
657}
658
Chris Lattneredbd8712005-10-21 01:19:59 +0000659TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000660 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000661 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000662 Trees.push_back(Pat);
663}
664
665
666
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000667void TreePattern::error(const std::string &Msg) const {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000668 dump();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000669 throw "In " + TheRecord->getName() + ": " + Msg;
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000670}
671
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000672TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
673 Record *Operator = Dag->getNodeType();
674
675 if (Operator->isSubClassOf("ValueType")) {
676 // If the operator is a ValueType, then this must be "type cast" of a leaf
677 // node.
678 if (Dag->getNumArgs() != 1)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000679 error("Type cast only takes one operand!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000680
681 Init *Arg = Dag->getArg(0);
682 TreePatternNode *New;
683 if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
Chris Lattner72fe91c2005-09-24 00:40:24 +0000684 Record *R = DI->getDef();
685 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
686 Dag->setArg(0, new DagInit(R,
687 std::vector<std::pair<Init*, std::string> >()));
Chris Lattner12cf9092005-11-16 23:14:54 +0000688 return ParseTreePattern(Dag);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000689 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000690 New = new TreePatternNode(DI);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000691 } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
692 New = ParseTreePattern(DI);
Chris Lattner0614b622005-11-02 06:49:14 +0000693 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
694 New = new TreePatternNode(II);
695 if (!Dag->getArgName(0).empty())
696 error("Constant int argument should not have a name!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000697 } else {
698 Arg->dump();
699 error("Unknown leaf value for tree pattern!");
700 return 0;
701 }
702
Chris Lattner32707602005-09-08 23:22:48 +0000703 // Apply the type cast.
704 New->UpdateNodeType(getValueType(Operator), *this);
Chris Lattner12cf9092005-11-16 23:14:54 +0000705 New->setName(Dag->getArgName(0));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000706 return New;
707 }
708
709 // Verify that this is something that makes sense for an operator.
710 if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
Chris Lattnerabbb6052005-09-15 21:42:00 +0000711 !Operator->isSubClassOf("Instruction") &&
712 !Operator->isSubClassOf("SDNodeXForm") &&
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000713 Operator->getName() != "set")
714 error("Unrecognized node '" + Operator->getName() + "'!");
715
Chris Lattneredbd8712005-10-21 01:19:59 +0000716 // Check to see if this is something that is illegal in an input pattern.
717 if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
718 Operator->isSubClassOf("SDNodeXForm")))
719 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
720
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000721 std::vector<TreePatternNode*> Children;
722
723 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
724 Init *Arg = Dag->getArg(i);
725 if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
726 Children.push_back(ParseTreePattern(DI));
Chris Lattner12cf9092005-11-16 23:14:54 +0000727 if (Children.back()->getName().empty())
728 Children.back()->setName(Dag->getArgName(i));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000729 } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
730 Record *R = DefI->getDef();
731 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
732 // TreePatternNode if its own.
733 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
734 Dag->setArg(i, new DagInit(R,
735 std::vector<std::pair<Init*, std::string> >()));
736 --i; // Revisit this node...
737 } else {
738 TreePatternNode *Node = new TreePatternNode(DefI);
739 Node->setName(Dag->getArgName(i));
740 Children.push_back(Node);
741
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000742 // Input argument?
743 if (R->getName() == "node") {
744 if (Dag->getArgName(i).empty())
745 error("'node' argument requires a name to match with operand list");
746 Args.push_back(Dag->getArgName(i));
747 }
748 }
Chris Lattner5d5a0562005-10-19 04:30:56 +0000749 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
750 TreePatternNode *Node = new TreePatternNode(II);
751 if (!Dag->getArgName(i).empty())
752 error("Constant int argument should not have a name!");
753 Children.push_back(Node);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000754 } else {
Chris Lattner5d5a0562005-10-19 04:30:56 +0000755 std::cerr << '"';
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000756 Arg->dump();
Chris Lattner5d5a0562005-10-19 04:30:56 +0000757 std::cerr << "\": ";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000758 error("Unknown leaf value for tree pattern!");
759 }
760 }
761
762 return new TreePatternNode(Operator, Children);
763}
764
Chris Lattner32707602005-09-08 23:22:48 +0000765/// InferAllTypes - Infer/propagate as many types throughout the expression
766/// patterns as possible. Return true if all types are infered, false
767/// otherwise. Throw an exception if a type contradiction is found.
768bool TreePattern::InferAllTypes() {
769 bool MadeChange = true;
770 while (MadeChange) {
771 MadeChange = false;
772 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000773 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
Chris Lattner32707602005-09-08 23:22:48 +0000774 }
775
776 bool HasUnresolvedTypes = false;
777 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
778 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
779 return !HasUnresolvedTypes;
780}
781
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000782void TreePattern::print(std::ostream &OS) const {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000783 OS << getRecord()->getName();
784 if (!Args.empty()) {
785 OS << "(" << Args[0];
786 for (unsigned i = 1, e = Args.size(); i != e; ++i)
787 OS << ", " << Args[i];
788 OS << ")";
789 }
790 OS << ": ";
791
792 if (Trees.size() > 1)
793 OS << "[\n";
794 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
795 OS << "\t";
796 Trees[i]->print(OS);
797 OS << "\n";
798 }
799
800 if (Trees.size() > 1)
801 OS << "]\n";
802}
803
804void TreePattern::dump() const { print(std::cerr); }
805
806
807
808//===----------------------------------------------------------------------===//
809// DAGISelEmitter implementation
810//
811
Chris Lattnerca559d02005-09-08 21:03:01 +0000812// Parse all of the SDNode definitions for the target, populating SDNodes.
813void DAGISelEmitter::ParseNodeInfo() {
814 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
815 while (!Nodes.empty()) {
816 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
817 Nodes.pop_back();
818 }
819}
820
Chris Lattner24eeeb82005-09-13 21:51:00 +0000821/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
822/// map, and emit them to the file as functions.
823void DAGISelEmitter::ParseNodeTransforms(std::ostream &OS) {
824 OS << "\n// Node transformations.\n";
825 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
826 while (!Xforms.empty()) {
827 Record *XFormNode = Xforms.back();
828 Record *SDNode = XFormNode->getValueAsDef("Opcode");
829 std::string Code = XFormNode->getValueAsCode("XFormFunction");
830 SDNodeXForms.insert(std::make_pair(XFormNode,
831 std::make_pair(SDNode, Code)));
832
Chris Lattner1048b7a2005-09-13 22:03:37 +0000833 if (!Code.empty()) {
Chris Lattner24eeeb82005-09-13 21:51:00 +0000834 std::string ClassName = getSDNodeInfo(SDNode).getSDClassName();
835 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
836
Chris Lattner1048b7a2005-09-13 22:03:37 +0000837 OS << "inline SDOperand Transform_" << XFormNode->getName()
Chris Lattner24eeeb82005-09-13 21:51:00 +0000838 << "(SDNode *" << C2 << ") {\n";
839 if (ClassName != "SDNode")
840 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
841 OS << Code << "\n}\n";
842 }
843
844 Xforms.pop_back();
845 }
846}
847
Evan Cheng0fc71982005-12-08 02:00:36 +0000848void DAGISelEmitter::ParseComplexPatterns() {
849 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
850 while (!AMs.empty()) {
851 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
852 AMs.pop_back();
853 }
854}
Chris Lattner24eeeb82005-09-13 21:51:00 +0000855
856
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000857/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
858/// file, building up the PatternFragments map. After we've collected them all,
859/// inline fragments together as necessary, so that there are no references left
860/// inside a pattern fragment to a pattern fragment.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000861///
862/// This also emits all of the predicate functions to the output file.
863///
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000864void DAGISelEmitter::ParsePatternFragments(std::ostream &OS) {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000865 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
866
867 // First step, parse all of the fragments and emit predicate functions.
868 OS << "\n// Predicate functions.\n";
869 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +0000870 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
Chris Lattneredbd8712005-10-21 01:19:59 +0000871 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000872 PatternFragments[Fragments[i]] = P;
Chris Lattneree9f0c32005-09-13 21:20:49 +0000873
874 // Validate the argument list, converting it to map, to discard duplicates.
875 std::vector<std::string> &Args = P->getArgList();
876 std::set<std::string> OperandsMap(Args.begin(), Args.end());
877
878 if (OperandsMap.count(""))
879 P->error("Cannot have unnamed 'node' values in pattern fragment!");
880
881 // Parse the operands list.
882 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
883 if (OpsList->getNodeType()->getName() != "ops")
884 P->error("Operands list should start with '(ops ... '!");
885
886 // Copy over the arguments.
887 Args.clear();
888 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
889 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
890 static_cast<DefInit*>(OpsList->getArg(j))->
891 getDef()->getName() != "node")
892 P->error("Operands list should all be 'node' values.");
893 if (OpsList->getArgName(j).empty())
894 P->error("Operands list should have names for each operand!");
895 if (!OperandsMap.count(OpsList->getArgName(j)))
896 P->error("'" + OpsList->getArgName(j) +
897 "' does not occur in pattern or was multiply specified!");
898 OperandsMap.erase(OpsList->getArgName(j));
899 Args.push_back(OpsList->getArgName(j));
900 }
901
902 if (!OperandsMap.empty())
903 P->error("Operands list does not contain an entry for operand '" +
904 *OperandsMap.begin() + "'!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000905
906 // If there is a code init for this fragment, emit the predicate code and
907 // keep track of the fact that this fragment uses it.
Chris Lattner24eeeb82005-09-13 21:51:00 +0000908 std::string Code = Fragments[i]->getValueAsCode("Predicate");
909 if (!Code.empty()) {
Chris Lattner37937092005-09-09 01:15:01 +0000910 assert(!P->getOnlyTree()->isLeaf() && "Can't be a leaf!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000911 std::string ClassName =
Chris Lattner37937092005-09-09 01:15:01 +0000912 getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000913 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
914
Chris Lattner1048b7a2005-09-13 22:03:37 +0000915 OS << "inline bool Predicate_" << Fragments[i]->getName()
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000916 << "(SDNode *" << C2 << ") {\n";
917 if (ClassName != "SDNode")
918 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
Chris Lattner24eeeb82005-09-13 21:51:00 +0000919 OS << Code << "\n}\n";
Chris Lattner37937092005-09-09 01:15:01 +0000920 P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000921 }
Chris Lattner6de8b532005-09-13 21:59:15 +0000922
923 // If there is a node transformation corresponding to this, keep track of
924 // it.
925 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
926 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
Chris Lattnerb0276202005-09-14 22:55:26 +0000927 P->getOnlyTree()->setTransformFn(Transform);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000928 }
929
930 OS << "\n\n";
931
932 // Now that we've parsed all of the tree fragments, do a closure on them so
933 // that there are not references to PatFrags left inside of them.
934 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
935 E = PatternFragments.end(); I != E; ++I) {
Chris Lattner32707602005-09-08 23:22:48 +0000936 TreePattern *ThePat = I->second;
937 ThePat->InlinePatternFragments();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000938
Chris Lattner32707602005-09-08 23:22:48 +0000939 // Infer as many types as possible. Don't worry about it if we don't infer
940 // all of them, some may depend on the inputs of the pattern.
941 try {
942 ThePat->InferAllTypes();
943 } catch (...) {
944 // If this pattern fragment is not supported by this target (no types can
945 // satisfy its constraints), just ignore it. If the bogus pattern is
946 // actually used by instructions, the type consistency error will be
947 // reported there.
948 }
949
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000950 // If debugging, print out the pattern fragment result.
Chris Lattner32707602005-09-08 23:22:48 +0000951 DEBUG(ThePat->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000952 }
953}
954
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000955/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
Chris Lattnerf1311842005-09-14 23:05:13 +0000956/// instruction input. Return true if this is a real use.
957static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Evan Cheng97938882005-12-22 02:24:50 +0000958 std::map<std::string, TreePatternNode*> &InstInputs) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000959 // No name -> not interesting.
Chris Lattner7da852f2005-09-14 22:06:36 +0000960 if (Pat->getName().empty()) {
961 if (Pat->isLeaf()) {
962 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
963 if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
964 I->error("Input " + DI->getDef()->getName() + " must be named!");
Chris Lattner7da852f2005-09-14 22:06:36 +0000965 }
Chris Lattnerf1311842005-09-14 23:05:13 +0000966 return false;
Chris Lattner7da852f2005-09-14 22:06:36 +0000967 }
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000968
969 Record *Rec;
970 if (Pat->isLeaf()) {
971 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
972 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
973 Rec = DI->getDef();
974 } else {
975 assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
976 Rec = Pat->getOperator();
977 }
978
Evan Cheng01f318b2005-12-14 02:21:57 +0000979 // SRCVALUE nodes are ignored.
980 if (Rec->getName() == "srcvalue")
981 return false;
982
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000983 TreePatternNode *&Slot = InstInputs[Pat->getName()];
984 if (!Slot) {
985 Slot = Pat;
986 } else {
987 Record *SlotRec;
988 if (Slot->isLeaf()) {
Chris Lattnerb9f01eb2005-09-16 00:29:46 +0000989 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000990 } else {
991 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
992 SlotRec = Slot->getOperator();
993 }
994
995 // Ensure that the inputs agree if we've already seen this input.
996 if (Rec != SlotRec)
997 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000998 if (Slot->getExtType() != Pat->getExtType())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000999 I->error("All $" + Pat->getName() + " inputs must agree with each other");
1000 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001001 return true;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001002}
1003
1004/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1005/// part of "I", the instruction), computing the set of inputs and outputs of
1006/// the pattern. Report errors if we see anything naughty.
1007void DAGISelEmitter::
1008FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1009 std::map<std::string, TreePatternNode*> &InstInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001010 std::map<std::string, Record*> &InstResults,
Evan Chengbcecf332005-12-17 01:19:28 +00001011 std::vector<Record*> &InstImpResults) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001012 if (Pat->isLeaf()) {
Evan Cheng97938882005-12-22 02:24:50 +00001013 bool isUse = HandleUse(I, Pat, InstInputs);
Chris Lattnerf1311842005-09-14 23:05:13 +00001014 if (!isUse && Pat->getTransformFn())
1015 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001016 return;
1017 } else if (Pat->getOperator()->getName() != "set") {
1018 // If this is not a set, verify that the children nodes are not void typed,
1019 // and recurse.
1020 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001021 if (Pat->getChild(i)->getExtType() == MVT::isVoid)
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001022 I->error("Cannot have void nodes inside of patterns!");
Evan Chengbcecf332005-12-17 01:19:28 +00001023 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
Evan Cheng97938882005-12-22 02:24:50 +00001024 InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001025 }
1026
1027 // If this is a non-leaf node with no children, treat it basically as if
1028 // it were a leaf. This handles nodes like (imm).
Chris Lattnerf1311842005-09-14 23:05:13 +00001029 bool isUse = false;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001030 if (Pat->getNumChildren() == 0)
Evan Cheng97938882005-12-22 02:24:50 +00001031 isUse = HandleUse(I, Pat, InstInputs);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001032
Chris Lattnerf1311842005-09-14 23:05:13 +00001033 if (!isUse && Pat->getTransformFn())
1034 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001035 return;
1036 }
1037
1038 // Otherwise, this is a set, validate and collect instruction results.
1039 if (Pat->getNumChildren() == 0)
1040 I->error("set requires operands!");
1041 else if (Pat->getNumChildren() & 1)
1042 I->error("set requires an even number of operands");
1043
Chris Lattnerf1311842005-09-14 23:05:13 +00001044 if (Pat->getTransformFn())
1045 I->error("Cannot specify a transform function on a set node!");
1046
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001047 // Check the set destinations.
1048 unsigned NumValues = Pat->getNumChildren()/2;
1049 for (unsigned i = 0; i != NumValues; ++i) {
1050 TreePatternNode *Dest = Pat->getChild(i);
1051 if (!Dest->isLeaf())
Evan Cheng86217892005-12-12 19:37:43 +00001052 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001053
1054 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1055 if (!Val)
Evan Cheng86217892005-12-12 19:37:43 +00001056 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001057
Evan Chengbcecf332005-12-17 01:19:28 +00001058 if (Val->getDef()->isSubClassOf("RegisterClass")) {
1059 if (Dest->getName().empty())
1060 I->error("set destination must have a name!");
1061 if (InstResults.count(Dest->getName()))
1062 I->error("cannot set '" + Dest->getName() +"' multiple times");
1063 InstResults[Dest->getName()] = Val->getDef();
Evan Cheng97938882005-12-22 02:24:50 +00001064 } else if (Val->getDef()->isSubClassOf("Register") ||
1065 Val->getDef()->getName() == "FLAG") {
Evan Chengbcecf332005-12-17 01:19:28 +00001066 InstImpResults.push_back(Val->getDef());
1067 } else {
1068 I->error("set destination should be a register!");
1069 }
1070
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001071 // Verify and collect info from the computation.
1072 FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
Evan Cheng97938882005-12-22 02:24:50 +00001073 InstInputs, InstResults, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001074 }
1075}
1076
Evan Chengdd304dd2005-12-05 23:08:55 +00001077/// NodeHasChain - return true if TreePatternNode has the property
1078/// 'hasChain', meaning it reads a ctrl-flow chain operand and writes
1079/// a chain result.
1080static bool NodeHasChain(TreePatternNode *N, DAGISelEmitter &ISE)
1081{
1082 if (N->isLeaf()) return false;
1083 Record *Operator = N->getOperator();
1084 if (!Operator->isSubClassOf("SDNode")) return false;
1085
1086 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
1087 return NodeInfo.hasProperty(SDNodeInfo::SDNPHasChain);
1088}
1089
1090static bool PatternHasCtrlDep(TreePatternNode *N, DAGISelEmitter &ISE)
1091{
1092 if (NodeHasChain(N, ISE))
1093 return true;
1094 else {
1095 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1096 TreePatternNode *Child = N->getChild(i);
1097 if (PatternHasCtrlDep(Child, ISE))
1098 return true;
1099 }
1100 }
1101
1102 return false;
1103}
1104
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001105
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001106/// ParseInstructions - Parse all of the instructions, inlining and resolving
1107/// any fragments involved. This populates the Instructions list with fully
1108/// resolved instructions.
1109void DAGISelEmitter::ParseInstructions() {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001110 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1111
1112 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001113 ListInit *LI = 0;
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001114
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001115 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1116 LI = Instrs[i]->getValueAsListInit("Pattern");
1117
1118 // If there is no pattern, only collect minimal information about the
1119 // instruction for its operand list. We have to assume that there is one
1120 // result, as we have no detailed info.
1121 if (!LI || LI->getSize() == 0) {
Nate Begemanddb39542005-12-01 00:06:14 +00001122 std::vector<Record*> Results;
1123 std::vector<Record*> Operands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001124
1125 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001126
Evan Cheng87bddeb2005-12-21 20:20:49 +00001127 // Note: Removed if (InstInfo.OperandList.size() == 0) continue;
1128 // It's possible for some instruction, e.g. RET for X86 that only has an
1129 // implicit flag operand.
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001130 // FIXME: temporary hack...
1131 if (InstInfo.isReturn || InstInfo.isBranch || InstInfo.isCall ||
1132 InstInfo.isStore) {
1133 // These produce no results
Evan Cheng87bddeb2005-12-21 20:20:49 +00001134 for (unsigned j = 0, e = InstInfo.OperandList.size(); j < e; ++j)
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001135 Operands.push_back(InstInfo.OperandList[j].Rec);
1136 } else {
1137 // Assume the first operand is the result.
1138 Results.push_back(InstInfo.OperandList[0].Rec);
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001139
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001140 // The rest are inputs.
Evan Cheng87bddeb2005-12-21 20:20:49 +00001141 for (unsigned j = 1, e = InstInfo.OperandList.size(); j < e; ++j)
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001142 Operands.push_back(InstInfo.OperandList[j].Rec);
1143 }
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001144
1145 // Create and insert the instruction.
Evan Chengbcecf332005-12-17 01:19:28 +00001146 std::vector<Record*> ImpResults;
1147 std::vector<Record*> ImpOperands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001148 Instructions.insert(std::make_pair(Instrs[i],
Evan Cheng97938882005-12-22 02:24:50 +00001149 DAGInstruction(0, Results, Operands, ImpResults)));
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001150 continue; // no pattern.
1151 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001152
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001153 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001154 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001155 // Inline pattern fragments into it.
Chris Lattner32707602005-09-08 23:22:48 +00001156 I->InlinePatternFragments();
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001157
Chris Lattner95f6b762005-09-08 23:26:30 +00001158 // Infer as many types as possible. If we cannot infer all of them, we can
1159 // never do anything with this instruction pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001160 if (!I->InferAllTypes())
Chris Lattner32707602005-09-08 23:22:48 +00001161 I->error("Could not infer all types in pattern!");
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001162
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001163 // InstInputs - Keep track of all of the inputs of the instruction, along
1164 // with the record they are declared as.
1165 std::map<std::string, TreePatternNode*> InstInputs;
1166
1167 // InstResults - Keep track of all the virtual registers that are 'set'
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001168 // in the instruction, including what reg class they are.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001169 std::map<std::string, Record*> InstResults;
Evan Chengbcecf332005-12-17 01:19:28 +00001170 std::vector<Record*> InstImpResults;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001171
Chris Lattner1f39e292005-09-14 00:09:24 +00001172 // Verify that the top-level forms in the instruction are of void type, and
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001173 // fill in the InstResults map.
Chris Lattner1f39e292005-09-14 00:09:24 +00001174 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1175 TreePatternNode *Pat = I->getTree(j);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001176 if (Pat->getExtType() != MVT::isVoid)
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001177 I->error("Top-level forms in instruction pattern should have"
1178 " void types");
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001179
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001180 // Find inputs and outputs, and verify the structure of the uses/defs.
Evan Chengbcecf332005-12-17 01:19:28 +00001181 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
Evan Cheng97938882005-12-22 02:24:50 +00001182 InstImpResults);
Chris Lattner1f39e292005-09-14 00:09:24 +00001183 }
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001184
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001185 // Now that we have inputs and outputs of the pattern, inspect the operands
1186 // list for the instruction. This determines the order that operands are
1187 // added to the machine instruction the node corresponds to.
1188 unsigned NumResults = InstResults.size();
Chris Lattner39e8af92005-09-14 18:19:25 +00001189
1190 // Parse the operands list from the (ops) list, validating it.
1191 std::vector<std::string> &Args = I->getArgList();
1192 assert(Args.empty() && "Args list should still be empty here!");
1193 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1194
1195 // Check that all of the results occur first in the list.
Nate Begemanddb39542005-12-01 00:06:14 +00001196 std::vector<Record*> Results;
Chris Lattner39e8af92005-09-14 18:19:25 +00001197 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattner3a7319d2005-09-14 21:04:12 +00001198 if (i == CGI.OperandList.size())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001199 I->error("'" + InstResults.begin()->first +
1200 "' set but does not appear in operand list!");
Chris Lattner39e8af92005-09-14 18:19:25 +00001201 const std::string &OpName = CGI.OperandList[i].Name;
Chris Lattner39e8af92005-09-14 18:19:25 +00001202
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001203 // Check that it exists in InstResults.
1204 Record *R = InstResults[OpName];
Chris Lattner39e8af92005-09-14 18:19:25 +00001205 if (R == 0)
1206 I->error("Operand $" + OpName + " should be a set destination: all "
1207 "outputs must occur before inputs in operand list!");
1208
1209 if (CGI.OperandList[i].Rec != R)
1210 I->error("Operand $" + OpName + " class mismatch!");
1211
Chris Lattnerae6d8282005-09-15 21:51:12 +00001212 // Remember the return type.
Nate Begemanddb39542005-12-01 00:06:14 +00001213 Results.push_back(CGI.OperandList[i].Rec);
Chris Lattnerae6d8282005-09-15 21:51:12 +00001214
Chris Lattner39e8af92005-09-14 18:19:25 +00001215 // Okay, this one checks out.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001216 InstResults.erase(OpName);
1217 }
1218
Chris Lattner0b592252005-09-14 21:59:34 +00001219 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1220 // the copy while we're checking the inputs.
1221 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
Chris Lattnerb0276202005-09-14 22:55:26 +00001222
1223 std::vector<TreePatternNode*> ResultNodeOperands;
Nate Begemanddb39542005-12-01 00:06:14 +00001224 std::vector<Record*> Operands;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001225 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1226 const std::string &OpName = CGI.OperandList[i].Name;
1227 if (OpName.empty())
1228 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1229
Chris Lattner0b592252005-09-14 21:59:34 +00001230 if (!InstInputsCheck.count(OpName))
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001231 I->error("Operand $" + OpName +
1232 " does not appear in the instruction pattern");
Chris Lattner0b592252005-09-14 21:59:34 +00001233 TreePatternNode *InVal = InstInputsCheck[OpName];
Chris Lattnerb0276202005-09-14 22:55:26 +00001234 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Nate Begemanddb39542005-12-01 00:06:14 +00001235
1236 if (InVal->isLeaf() &&
1237 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1238 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Evan Cheng0fc71982005-12-08 02:00:36 +00001239 if (CGI.OperandList[i].Rec != InRec &&
1240 !InRec->isSubClassOf("ComplexPattern"))
Nate Begemanddb39542005-12-01 00:06:14 +00001241 I->error("Operand $" + OpName +
Evan Cheng0fc71982005-12-08 02:00:36 +00001242 "'s register class disagrees between the operand and pattern");
Nate Begemanddb39542005-12-01 00:06:14 +00001243 }
1244 Operands.push_back(CGI.OperandList[i].Rec);
Chris Lattnerb0276202005-09-14 22:55:26 +00001245
Chris Lattner2175c182005-09-14 23:01:59 +00001246 // Construct the result for the dest-pattern operand list.
1247 TreePatternNode *OpNode = InVal->clone();
1248
1249 // No predicate is useful on the result.
1250 OpNode->setPredicateFn("");
1251
1252 // Promote the xform function to be an explicit node if set.
1253 if (Record *Xform = OpNode->getTransformFn()) {
1254 OpNode->setTransformFn(0);
1255 std::vector<TreePatternNode*> Children;
1256 Children.push_back(OpNode);
1257 OpNode = new TreePatternNode(Xform, Children);
1258 }
1259
1260 ResultNodeOperands.push_back(OpNode);
Chris Lattner39e8af92005-09-14 18:19:25 +00001261 }
1262
Chris Lattner0b592252005-09-14 21:59:34 +00001263 if (!InstInputsCheck.empty())
1264 I->error("Input operand $" + InstInputsCheck.begin()->first +
1265 " occurs in pattern but not in operands list!");
Chris Lattnerb0276202005-09-14 22:55:26 +00001266
1267 TreePatternNode *ResultPattern =
1268 new TreePatternNode(I->getRecord(), ResultNodeOperands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001269
1270 // Create and insert the instruction.
Evan Cheng97938882005-12-22 02:24:50 +00001271 DAGInstruction TheInst(I, Results, Operands, InstImpResults);
Chris Lattnera28aec12005-09-15 22:23:50 +00001272 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1273
1274 // Use a temporary tree pattern to infer all types and make sure that the
1275 // constructed result is correct. This depends on the instruction already
1276 // being inserted into the Instructions map.
Chris Lattneredbd8712005-10-21 01:19:59 +00001277 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattnera28aec12005-09-15 22:23:50 +00001278 Temp.InferAllTypes();
1279
1280 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1281 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Chris Lattnerb0276202005-09-14 22:55:26 +00001282
Chris Lattner32707602005-09-08 23:22:48 +00001283 DEBUG(I->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001284 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001285
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001286 // If we can, convert the instructions to be patterns that are matched!
Chris Lattnerae5b3502005-09-15 21:57:35 +00001287 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1288 E = Instructions.end(); II != E; ++II) {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001289 DAGInstruction &TheInst = II->second;
1290 TreePattern *I = TheInst.getPattern();
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001291 if (I == 0) continue; // No pattern.
Evan Chengdd304dd2005-12-05 23:08:55 +00001292
Chris Lattner1f39e292005-09-14 00:09:24 +00001293 if (I->getNumTrees() != 1) {
1294 std::cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1295 continue;
1296 }
1297 TreePatternNode *Pattern = I->getTree(0);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001298 TreePatternNode *SrcPattern;
Evan Chengbcecf332005-12-17 01:19:28 +00001299 if (Pattern->getOperator()->getName() == "set") {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001300 if (Pattern->getNumChildren() != 2)
1301 continue; // Not a set of a single value (not handled so far)
1302
1303 SrcPattern = Pattern->getChild(1)->clone();
Evan Chengbcecf332005-12-17 01:19:28 +00001304 } else{
1305 // Not a set (store or something?)
1306 SrcPattern = Pattern;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001307 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001308
1309 std::string Reason;
1310 if (!SrcPattern->canPatternMatch(Reason, *this))
1311 I->error("Instruction can never match: " + Reason);
1312
Evan Cheng58e84a62005-12-14 22:02:59 +00001313 Record *Instr = II->first;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001314 TreePatternNode *DstPattern = TheInst.getResultPattern();
Evan Cheng58e84a62005-12-14 22:02:59 +00001315 PatternsToMatch.
1316 push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
1317 SrcPattern, DstPattern));
Evan Chengdd304dd2005-12-05 23:08:55 +00001318
1319 if (PatternHasCtrlDep(Pattern, *this)) {
Evan Chengdd304dd2005-12-05 23:08:55 +00001320 CodeGenInstruction &InstInfo = Target.getInstruction(Instr->getName());
1321 InstInfo.hasCtrlDep = true;
1322 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001323 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001324}
1325
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001326void DAGISelEmitter::ParsePatterns() {
Chris Lattnerabbb6052005-09-15 21:42:00 +00001327 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001328
Chris Lattnerabbb6052005-09-15 21:42:00 +00001329 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001330 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
Chris Lattneredbd8712005-10-21 01:19:59 +00001331 TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001332
Chris Lattnerabbb6052005-09-15 21:42:00 +00001333 // Inline pattern fragments into it.
1334 Pattern->InlinePatternFragments();
1335
1336 // Infer as many types as possible. If we cannot infer all of them, we can
1337 // never do anything with this pattern: report it to the user.
1338 if (!Pattern->InferAllTypes())
1339 Pattern->error("Could not infer all types in pattern!");
Chris Lattner09c03392005-11-17 17:43:52 +00001340
1341 // Validate that the input pattern is correct.
1342 {
1343 std::map<std::string, TreePatternNode*> InstInputs;
1344 std::map<std::string, Record*> InstResults;
Evan Chengbcecf332005-12-17 01:19:28 +00001345 std::vector<Record*> InstImpResults;
Chris Lattner09c03392005-11-17 17:43:52 +00001346 FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
Evan Chengbcecf332005-12-17 01:19:28 +00001347 InstInputs, InstResults,
Evan Cheng97938882005-12-22 02:24:50 +00001348 InstImpResults);
Chris Lattner09c03392005-11-17 17:43:52 +00001349 }
Chris Lattnerabbb6052005-09-15 21:42:00 +00001350
1351 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1352 if (LI->getSize() == 0) continue; // no pattern.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001353
1354 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001355 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
Chris Lattnerabbb6052005-09-15 21:42:00 +00001356
1357 // Inline pattern fragments into it.
1358 Result->InlinePatternFragments();
1359
1360 // Infer as many types as possible. If we cannot infer all of them, we can
1361 // never do anything with this pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001362 if (!Result->InferAllTypes())
Chris Lattnerae5b3502005-09-15 21:57:35 +00001363 Result->error("Could not infer all types in pattern result!");
Chris Lattnerabbb6052005-09-15 21:42:00 +00001364
1365 if (Result->getNumTrees() != 1)
1366 Result->error("Cannot handle instructions producing instructions "
1367 "with temporaries yet!");
Chris Lattnere97603f2005-09-28 19:27:25 +00001368
1369 std::string Reason;
1370 if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1371 Pattern->error("Pattern can never match: " + Reason);
1372
Evan Cheng58e84a62005-12-14 22:02:59 +00001373 PatternsToMatch.
1374 push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
1375 Pattern->getOnlyTree(),
1376 Result->getOnlyTree()));
Chris Lattnerabbb6052005-09-15 21:42:00 +00001377 }
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001378}
1379
Chris Lattnere46e17b2005-09-29 19:28:10 +00001380/// CombineChildVariants - Given a bunch of permutations of each child of the
1381/// 'operator' node, put them together in all possible ways.
1382static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattneraf302912005-09-29 22:36:54 +00001383 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
Chris Lattnere46e17b2005-09-29 19:28:10 +00001384 std::vector<TreePatternNode*> &OutVariants,
1385 DAGISelEmitter &ISE) {
Chris Lattneraf302912005-09-29 22:36:54 +00001386 // Make sure that each operand has at least one variant to choose from.
1387 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1388 if (ChildVariants[i].empty())
1389 return;
1390
Chris Lattnere46e17b2005-09-29 19:28:10 +00001391 // The end result is an all-pairs construction of the resultant pattern.
1392 std::vector<unsigned> Idxs;
1393 Idxs.resize(ChildVariants.size());
1394 bool NotDone = true;
1395 while (NotDone) {
1396 // Create the variant and add it to the output list.
1397 std::vector<TreePatternNode*> NewChildren;
1398 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1399 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1400 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1401
1402 // Copy over properties.
1403 R->setName(Orig->getName());
1404 R->setPredicateFn(Orig->getPredicateFn());
1405 R->setTransformFn(Orig->getTransformFn());
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001406 R->setType(Orig->getExtType());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001407
1408 // If this pattern cannot every match, do not include it as a variant.
1409 std::string ErrString;
1410 if (!R->canPatternMatch(ErrString, ISE)) {
1411 delete R;
1412 } else {
1413 bool AlreadyExists = false;
1414
1415 // Scan to see if this pattern has already been emitted. We can get
1416 // duplication due to things like commuting:
1417 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1418 // which are the same pattern. Ignore the dups.
1419 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1420 if (R->isIsomorphicTo(OutVariants[i])) {
1421 AlreadyExists = true;
1422 break;
1423 }
1424
1425 if (AlreadyExists)
1426 delete R;
1427 else
1428 OutVariants.push_back(R);
1429 }
1430
1431 // Increment indices to the next permutation.
1432 NotDone = false;
1433 // Look for something we can increment without causing a wrap-around.
1434 for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1435 if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1436 NotDone = true; // Found something to increment.
1437 break;
1438 }
1439 Idxs[IdxsIdx] = 0;
1440 }
1441 }
1442}
1443
Chris Lattneraf302912005-09-29 22:36:54 +00001444/// CombineChildVariants - A helper function for binary operators.
1445///
1446static void CombineChildVariants(TreePatternNode *Orig,
1447 const std::vector<TreePatternNode*> &LHS,
1448 const std::vector<TreePatternNode*> &RHS,
1449 std::vector<TreePatternNode*> &OutVariants,
1450 DAGISelEmitter &ISE) {
1451 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1452 ChildVariants.push_back(LHS);
1453 ChildVariants.push_back(RHS);
1454 CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1455}
1456
1457
1458static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1459 std::vector<TreePatternNode *> &Children) {
1460 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1461 Record *Operator = N->getOperator();
1462
1463 // Only permit raw nodes.
1464 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1465 N->getTransformFn()) {
1466 Children.push_back(N);
1467 return;
1468 }
1469
1470 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1471 Children.push_back(N->getChild(0));
1472 else
1473 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1474
1475 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1476 Children.push_back(N->getChild(1));
1477 else
1478 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1479}
1480
Chris Lattnere46e17b2005-09-29 19:28:10 +00001481/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1482/// the (potentially recursive) pattern by using algebraic laws.
1483///
1484static void GenerateVariantsOf(TreePatternNode *N,
1485 std::vector<TreePatternNode*> &OutVariants,
1486 DAGISelEmitter &ISE) {
1487 // We cannot permute leaves.
1488 if (N->isLeaf()) {
1489 OutVariants.push_back(N);
1490 return;
1491 }
1492
1493 // Look up interesting info about the node.
1494 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
1495
1496 // If this node is associative, reassociate.
Chris Lattneraf302912005-09-29 22:36:54 +00001497 if (NodeInfo.hasProperty(SDNodeInfo::SDNPAssociative)) {
1498 // Reassociate by pulling together all of the linked operators
1499 std::vector<TreePatternNode*> MaximalChildren;
1500 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1501
1502 // Only handle child sizes of 3. Otherwise we'll end up trying too many
1503 // permutations.
1504 if (MaximalChildren.size() == 3) {
1505 // Find the variants of all of our maximal children.
1506 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1507 GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1508 GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1509 GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1510
1511 // There are only two ways we can permute the tree:
1512 // (A op B) op C and A op (B op C)
1513 // Within these forms, we can also permute A/B/C.
1514
1515 // Generate legal pair permutations of A/B/C.
1516 std::vector<TreePatternNode*> ABVariants;
1517 std::vector<TreePatternNode*> BAVariants;
1518 std::vector<TreePatternNode*> ACVariants;
1519 std::vector<TreePatternNode*> CAVariants;
1520 std::vector<TreePatternNode*> BCVariants;
1521 std::vector<TreePatternNode*> CBVariants;
1522 CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1523 CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1524 CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1525 CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1526 CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1527 CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1528
1529 // Combine those into the result: (x op x) op x
1530 CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1531 CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1532 CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1533 CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1534 CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1535 CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1536
1537 // Combine those into the result: x op (x op x)
1538 CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1539 CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1540 CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1541 CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1542 CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1543 CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1544 return;
1545 }
1546 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00001547
1548 // Compute permutations of all children.
1549 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1550 ChildVariants.resize(N->getNumChildren());
1551 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1552 GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1553
1554 // Build all permutations based on how the children were formed.
1555 CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1556
1557 // If this node is commutative, consider the commuted order.
1558 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
1559 assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
Chris Lattneraf302912005-09-29 22:36:54 +00001560 // Consider the commuted order.
1561 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1562 OutVariants, ISE);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001563 }
1564}
1565
1566
Chris Lattnere97603f2005-09-28 19:27:25 +00001567// GenerateVariants - Generate variants. For example, commutative patterns can
1568// match multiple ways. Add them to PatternsToMatch as well.
1569void DAGISelEmitter::GenerateVariants() {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001570
1571 DEBUG(std::cerr << "Generating instruction variants.\n");
1572
1573 // Loop over all of the patterns we've collected, checking to see if we can
1574 // generate variants of the instruction, through the exploitation of
1575 // identities. This permits the target to provide agressive matching without
1576 // the .td file having to contain tons of variants of instructions.
1577 //
1578 // Note that this loop adds new patterns to the PatternsToMatch list, but we
1579 // intentionally do not reconsider these. Any variants of added patterns have
1580 // already been added.
1581 //
1582 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1583 std::vector<TreePatternNode*> Variants;
Evan Cheng58e84a62005-12-14 22:02:59 +00001584 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001585
1586 assert(!Variants.empty() && "Must create at least original variant!");
Chris Lattnere46e17b2005-09-29 19:28:10 +00001587 Variants.erase(Variants.begin()); // Remove the original pattern.
1588
1589 if (Variants.empty()) // No variants for this pattern.
1590 continue;
1591
1592 DEBUG(std::cerr << "FOUND VARIANTS OF: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00001593 PatternsToMatch[i].getSrcPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00001594 std::cerr << "\n");
1595
1596 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1597 TreePatternNode *Variant = Variants[v];
1598
1599 DEBUG(std::cerr << " VAR#" << v << ": ";
1600 Variant->dump();
1601 std::cerr << "\n");
1602
1603 // Scan to see if an instruction or explicit pattern already matches this.
1604 bool AlreadyExists = false;
1605 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1606 // Check to see if this variant already exists.
Evan Cheng58e84a62005-12-14 22:02:59 +00001607 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern())) {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001608 DEBUG(std::cerr << " *** ALREADY EXISTS, ignoring variant.\n");
1609 AlreadyExists = true;
1610 break;
1611 }
1612 }
1613 // If we already have it, ignore the variant.
1614 if (AlreadyExists) continue;
1615
1616 // Otherwise, add it to the list of patterns we have.
Evan Cheng58e84a62005-12-14 22:02:59 +00001617 PatternsToMatch.
1618 push_back(PatternToMatch(PatternsToMatch[i].getPredicates(),
1619 Variant, PatternsToMatch[i].getDstPattern()));
Chris Lattnere46e17b2005-09-29 19:28:10 +00001620 }
1621
1622 DEBUG(std::cerr << "\n");
1623 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001624}
1625
Chris Lattner7cf2fe62005-09-28 20:58:06 +00001626
Evan Cheng0fc71982005-12-08 02:00:36 +00001627// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
1628// ComplexPattern.
1629static bool NodeIsComplexPattern(TreePatternNode *N)
1630{
1631 return (N->isLeaf() &&
1632 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1633 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1634 isSubClassOf("ComplexPattern"));
1635}
1636
1637// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
1638// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
1639static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
1640 DAGISelEmitter &ISE)
1641{
1642 if (N->isLeaf() &&
1643 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1644 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1645 isSubClassOf("ComplexPattern")) {
1646 return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
1647 ->getDef());
1648 }
1649 return NULL;
1650}
1651
Chris Lattner05814af2005-09-28 17:57:56 +00001652/// getPatternSize - Return the 'size' of this pattern. We want to match large
1653/// patterns before small ones. This is used to determine the size of a
1654/// pattern.
Evan Cheng0fc71982005-12-08 02:00:36 +00001655static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001656 assert(isExtIntegerVT(P->getExtType()) ||
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001657 isExtFloatingPointVT(P->getExtType()) ||
Evan Chengbcecf332005-12-17 01:19:28 +00001658 P->getExtType() == MVT::isVoid ||
1659 P->getExtType() == MVT::Flag && "Not a valid pattern node to size!");
Chris Lattner05814af2005-09-28 17:57:56 +00001660 unsigned Size = 1; // The node itself.
Evan Cheng0fc71982005-12-08 02:00:36 +00001661
1662 // FIXME: This is a hack to statically increase the priority of patterns
1663 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
1664 // Later we can allow complexity / cost for each pattern to be (optionally)
1665 // specified. To get best possible pattern match we'll need to dynamically
1666 // calculate the complexity of all patterns a dag can potentially map to.
1667 const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
1668 if (AM)
1669 Size += AM->getNumOperands();
1670
Chris Lattner05814af2005-09-28 17:57:56 +00001671 // Count children in the count if they are also nodes.
1672 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
1673 TreePatternNode *Child = P->getChild(i);
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001674 if (!Child->isLeaf() && Child->getExtType() != MVT::Other)
Evan Cheng0fc71982005-12-08 02:00:36 +00001675 Size += getPatternSize(Child, ISE);
1676 else if (Child->isLeaf()) {
1677 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
1678 ++Size; // Matches a ConstantSDNode.
1679 else if (NodeIsComplexPattern(Child))
1680 Size += getPatternSize(Child, ISE);
Chris Lattner2f041d42005-10-19 04:41:05 +00001681 }
Chris Lattner05814af2005-09-28 17:57:56 +00001682 }
1683
1684 return Size;
1685}
1686
1687/// getResultPatternCost - Compute the number of instructions for this pattern.
1688/// This is a temporary hack. We should really include the instruction
1689/// latencies in this calculation.
1690static unsigned getResultPatternCost(TreePatternNode *P) {
1691 if (P->isLeaf()) return 0;
1692
1693 unsigned Cost = P->getOperator()->isSubClassOf("Instruction");
1694 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
1695 Cost += getResultPatternCost(P->getChild(i));
1696 return Cost;
1697}
1698
1699// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
1700// In particular, we want to match maximal patterns first and lowest cost within
1701// a particular complexity first.
1702struct PatternSortingPredicate {
Evan Cheng0fc71982005-12-08 02:00:36 +00001703 PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
1704 DAGISelEmitter &ISE;
1705
Evan Cheng58e84a62005-12-14 22:02:59 +00001706 bool operator()(PatternToMatch *LHS,
1707 PatternToMatch *RHS) {
1708 unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), ISE);
1709 unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00001710 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
1711 if (LHSSize < RHSSize) return false;
1712
1713 // If the patterns have equal complexity, compare generated instruction cost
Evan Cheng58e84a62005-12-14 22:02:59 +00001714 return getResultPatternCost(LHS->getDstPattern()) <
1715 getResultPatternCost(RHS->getDstPattern());
Chris Lattner05814af2005-09-28 17:57:56 +00001716 }
1717};
1718
Nate Begeman6510b222005-12-01 04:51:06 +00001719/// getRegisterValueType - Look up and return the first ValueType of specified
1720/// RegisterClass record
Evan Cheng66a48bb2005-12-01 00:18:45 +00001721static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +00001722 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
1723 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +00001724 return MVT::Other;
1725}
1726
Chris Lattner72fe91c2005-09-24 00:40:24 +00001727
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001728/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
1729/// type information from it.
1730static void RemoveAllTypes(TreePatternNode *N) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001731 N->setType(MVT::isUnknown);
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001732 if (!N->isLeaf())
1733 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1734 RemoveAllTypes(N->getChild(i));
1735}
Chris Lattner72fe91c2005-09-24 00:40:24 +00001736
Chris Lattner0614b622005-11-02 06:49:14 +00001737Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
1738 Record *N = Records.getDef(Name);
1739 assert(N && N->isSubClassOf("SDNode") && "Bad argument");
1740 return N;
1741}
1742
Evan Chengb915f312005-12-09 22:45:35 +00001743class PatternCodeEmitter {
1744private:
1745 DAGISelEmitter &ISE;
1746
Evan Cheng58e84a62005-12-14 22:02:59 +00001747 // Predicates.
1748 ListInit *Predicates;
1749 // Instruction selector pattern.
1750 TreePatternNode *Pattern;
1751 // Matched instruction.
1752 TreePatternNode *Instruction;
Evan Chengb915f312005-12-09 22:45:35 +00001753 unsigned PatternNo;
1754 std::ostream &OS;
1755 // Node to name mapping
1756 std::map<std::string,std::string> VariableMap;
Evan Chengb915f312005-12-09 22:45:35 +00001757 // Names of all the folded nodes which produce chains.
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001758 std::vector<std::pair<std::string, unsigned> > FoldedChains;
Evan Cheng86217892005-12-12 19:37:43 +00001759 bool FoundChain;
Evan Chengb915f312005-12-09 22:45:35 +00001760 unsigned TmpNo;
Evan Cheng97938882005-12-22 02:24:50 +00001761 unsigned NumImpInputs;
Evan Chengb915f312005-12-09 22:45:35 +00001762
1763public:
Evan Cheng58e84a62005-12-14 22:02:59 +00001764 PatternCodeEmitter(DAGISelEmitter &ise, ListInit *preds,
1765 TreePatternNode *pattern, TreePatternNode *instr,
Evan Chengb915f312005-12-09 22:45:35 +00001766 unsigned PatNum, std::ostream &os) :
Evan Cheng58e84a62005-12-14 22:02:59 +00001767 ISE(ise), Predicates(preds), Pattern(pattern), Instruction(instr),
Evan Cheng97938882005-12-22 02:24:50 +00001768 PatternNo(PatNum), OS(os), FoundChain(false), TmpNo(0),
1769 NumImpInputs(0) {}
Evan Chengb915f312005-12-09 22:45:35 +00001770
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001771 /// isPredeclaredSDOperand - Return true if this is one of the predeclared
1772 /// SDOperands.
1773 bool isPredeclaredSDOperand(const std::string &OpName) const {
1774 return OpName == "N0" || OpName == "N1" || OpName == "N2" ||
1775 OpName == "N00" || OpName == "N01" ||
1776 OpName == "N10" || OpName == "N11" ||
1777 OpName == "Tmp0" || OpName == "Tmp1" ||
1778 OpName == "Tmp2" || OpName == "Tmp3";
1779 }
1780
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001781 /// DeclareSDOperand - Emit "SDOperand <opname>" or "<opname>". This works
1782 /// around an ugly GCC bug where SelectCode is using too much stack space
1783 void DeclareSDOperand(const std::string &OpName) const {
1784 // If it's one of the common cases declared at the top of SelectCode, just
1785 // use the existing declaration.
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001786 if (isPredeclaredSDOperand(OpName))
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001787 OS << OpName;
1788 else
1789 OS << "SDOperand " << OpName;
1790 }
1791
Evan Chengb915f312005-12-09 22:45:35 +00001792 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
1793 /// if the match fails. At this point, we already know that the opcode for N
1794 /// matches, and the SDNode for the result has the RootName specified name.
1795 void EmitMatchCode(TreePatternNode *N, const std::string &RootName,
1796 bool isRoot = false) {
Evan Cheng58e84a62005-12-14 22:02:59 +00001797
1798 // Emit instruction predicates. Each predicate is just a string for now.
1799 if (isRoot) {
1800 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
1801 if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
1802 Record *Def = Pred->getDef();
1803 if (Def->isSubClassOf("Predicate")) {
1804 if (i == 0)
1805 OS << " if (";
1806 else
1807 OS << " && ";
Evan Cheng5fb5e102005-12-20 20:08:01 +00001808 OS << "!(" << Def->getValueAsString("CondString") << ")";
Evan Cheng58e84a62005-12-14 22:02:59 +00001809 if (i == e-1)
1810 OS << ") goto P" << PatternNo << "Fail;\n";
1811 } else {
1812 Def->dump();
1813 assert(0 && "Unknown predicate type!");
1814 }
1815 }
1816 }
1817 }
1818
Evan Chengb915f312005-12-09 22:45:35 +00001819 if (N->isLeaf()) {
1820 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1821 OS << " if (cast<ConstantSDNode>(" << RootName
1822 << ")->getSignExtended() != " << II->getValue() << ")\n"
1823 << " goto P" << PatternNo << "Fail;\n";
1824 return;
1825 } else if (!NodeIsComplexPattern(N)) {
1826 assert(0 && "Cannot match this as a leaf value!");
1827 abort();
1828 }
1829 }
1830
1831 // If this node has a name associated with it, capture it in VariableMap. If
1832 // we already saw this in the pattern, emit code to verify dagness.
1833 if (!N->getName().empty()) {
1834 std::string &VarMapEntry = VariableMap[N->getName()];
1835 if (VarMapEntry.empty()) {
1836 VarMapEntry = RootName;
1837 } else {
1838 // If we get here, this is a second reference to a specific name. Since
1839 // we already have checked that the first reference is valid, we don't
1840 // have to recursively match it, just check that it's the same as the
1841 // previously named thing.
1842 OS << " if (" << VarMapEntry << " != " << RootName
1843 << ") goto P" << PatternNo << "Fail;\n";
1844 return;
1845 }
1846 }
1847
1848
1849 // Emit code to load the child nodes and match their contents recursively.
1850 unsigned OpNo = 0;
Evan Cheng86217892005-12-12 19:37:43 +00001851 bool HasChain = NodeHasChain(N, ISE);
1852 if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00001853 OpNo = 1;
1854 if (!isRoot) {
Evan Cheng1129e872005-12-10 00:09:17 +00001855 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(N->getOperator());
Evan Chengb915f312005-12-09 22:45:35 +00001856 OS << " if (!" << RootName << ".hasOneUse()) goto P"
1857 << PatternNo << "Fail; // Multiple uses of actual result?\n";
1858 OS << " if (CodeGenMap.count(" << RootName
Evan Cheng1129e872005-12-10 00:09:17 +00001859 << ".getValue(" << CInfo.getNumResults() << "))) goto P"
Evan Chengb915f312005-12-09 22:45:35 +00001860 << PatternNo << "Fail; // Already selected for a chain use?\n";
1861 }
Evan Chengb915f312005-12-09 22:45:35 +00001862 }
1863
1864 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001865 OS << " ";
1866 DeclareSDOperand(RootName+utostr(OpNo));
1867 OS << " = " << RootName << ".getOperand(" << OpNo << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00001868 TreePatternNode *Child = N->getChild(i);
1869
1870 if (!Child->isLeaf()) {
1871 // If it's not a leaf, recursively match.
1872 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(Child->getOperator());
1873 OS << " if (" << RootName << OpNo << ".getOpcode() != "
1874 << CInfo.getEnumName() << ") goto P" << PatternNo << "Fail;\n";
1875 EmitMatchCode(Child, RootName + utostr(OpNo));
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001876 if (NodeHasChain(Child, ISE)) {
1877 FoldedChains.push_back(std::make_pair(RootName + utostr(OpNo),
1878 CInfo.getNumResults()));
1879 }
Evan Chengb915f312005-12-09 22:45:35 +00001880 } else {
1881 // If this child has a name associated with it, capture it in VarMap. If
1882 // we already saw this in the pattern, emit code to verify dagness.
1883 if (!Child->getName().empty()) {
1884 std::string &VarMapEntry = VariableMap[Child->getName()];
1885 if (VarMapEntry.empty()) {
1886 VarMapEntry = RootName + utostr(OpNo);
1887 } else {
1888 // If we get here, this is a second reference to a specific name. Since
1889 // we already have checked that the first reference is valid, we don't
1890 // have to recursively match it, just check that it's the same as the
1891 // previously named thing.
1892 OS << " if (" << VarMapEntry << " != " << RootName << OpNo
1893 << ") goto P" << PatternNo << "Fail;\n";
1894 continue;
1895 }
1896 }
1897
1898 // Handle leaves of various types.
1899 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
1900 Record *LeafRec = DI->getDef();
1901 if (LeafRec->isSubClassOf("RegisterClass")) {
1902 // Handle register references. Nothing to do here.
1903 } else if (LeafRec->isSubClassOf("Register")) {
Evan Cheng97938882005-12-22 02:24:50 +00001904 // Handle register references.
1905 NumImpInputs++;
Evan Chengb915f312005-12-09 22:45:35 +00001906 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
1907 // Handle complex pattern. Nothing to do here.
Evan Cheng97938882005-12-22 02:24:50 +00001908 } else if (LeafRec->getName() == "FLAG") {
1909 // Handle pseudo FLAG register nodes.
1910 NumImpInputs++;
Evan Cheng01f318b2005-12-14 02:21:57 +00001911 } else if (LeafRec->getName() == "srcvalue") {
1912 // Place holder for SRCVALUE nodes. Nothing to do here.
Evan Chengb915f312005-12-09 22:45:35 +00001913 } else if (LeafRec->isSubClassOf("ValueType")) {
1914 // Make sure this is the specified value type.
1915 OS << " if (cast<VTSDNode>(" << RootName << OpNo << ")->getVT() != "
1916 << "MVT::" << LeafRec->getName() << ") goto P" << PatternNo
1917 << "Fail;\n";
1918 } else if (LeafRec->isSubClassOf("CondCode")) {
1919 // Make sure this is the specified cond code.
1920 OS << " if (cast<CondCodeSDNode>(" << RootName << OpNo
1921 << ")->get() != " << "ISD::" << LeafRec->getName()
1922 << ") goto P" << PatternNo << "Fail;\n";
1923 } else {
1924 Child->dump();
Evan Cheng97938882005-12-22 02:24:50 +00001925 std::cerr << " ";
Evan Chengb915f312005-12-09 22:45:35 +00001926 assert(0 && "Unknown leaf type!");
1927 }
1928 } else if (IntInit *II = dynamic_cast<IntInit*>(Child->getLeafValue())) {
1929 OS << " if (!isa<ConstantSDNode>(" << RootName << OpNo << ") ||\n"
1930 << " cast<ConstantSDNode>(" << RootName << OpNo
1931 << ")->getSignExtended() != " << II->getValue() << ")\n"
1932 << " goto P" << PatternNo << "Fail;\n";
1933 } else {
1934 Child->dump();
1935 assert(0 && "Unknown leaf type!");
1936 }
1937 }
1938 }
1939
Evan Cheng86217892005-12-12 19:37:43 +00001940 if (HasChain) {
1941 if (!FoundChain) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001942 OS << " Chain = " << RootName << ".getOperand(0);\n";
Evan Cheng86217892005-12-12 19:37:43 +00001943 FoundChain = true;
1944 }
1945 }
1946
Evan Chengb915f312005-12-09 22:45:35 +00001947 // If there is a node predicate for this, emit the call.
1948 if (!N->getPredicateFn().empty())
1949 OS << " if (!" << N->getPredicateFn() << "(" << RootName
1950 << ".Val)) goto P" << PatternNo << "Fail;\n";
1951 }
1952
1953 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
1954 /// we actually have to build a DAG!
1955 std::pair<unsigned, unsigned>
1956 EmitResultCode(TreePatternNode *N, bool isRoot = false) {
1957 // This is something selected from the pattern we matched.
1958 if (!N->getName().empty()) {
1959 assert(!isRoot && "Root of pattern cannot be a leaf!");
1960 std::string &Val = VariableMap[N->getName()];
1961 assert(!Val.empty() &&
1962 "Variable referenced but not defined and not caught earlier!");
1963 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
1964 // Already selected this operand, just return the tmpval.
1965 return std::make_pair(1, atoi(Val.c_str()+3));
1966 }
1967
1968 const ComplexPattern *CP;
1969 unsigned ResNo = TmpNo++;
1970 unsigned NumRes = 1;
1971 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
1972 switch (N->getType()) {
1973 default: assert(0 && "Unknown type for constant node!");
1974 case MVT::i1: OS << " bool Tmp"; break;
1975 case MVT::i8: OS << " unsigned char Tmp"; break;
1976 case MVT::i16: OS << " unsigned short Tmp"; break;
1977 case MVT::i32: OS << " unsigned Tmp"; break;
1978 case MVT::i64: OS << " uint64_t Tmp"; break;
1979 }
1980 OS << ResNo << "C = cast<ConstantSDNode>(" << Val << ")->getValue();\n";
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001981 OS << " ";
1982 DeclareSDOperand("Tmp"+utostr(ResNo));
1983 OS << " = CurDAG->getTargetConstant(Tmp"
Evan Chengb915f312005-12-09 22:45:35 +00001984 << ResNo << "C, MVT::" << getEnumName(N->getType()) << ");\n";
1985 } else if (!N->isLeaf() && N->getOperator()->getName() == "tglobaladdr") {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001986 OS << " ";
1987 DeclareSDOperand("Tmp"+utostr(ResNo));
1988 OS << " = " << Val << ";\n";
Nate Begeman28a6b022005-12-10 02:36:00 +00001989 } else if (!N->isLeaf() && N->getOperator()->getName() == "tconstpool") {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001990 OS << " ";
1991 DeclareSDOperand("Tmp"+utostr(ResNo));
1992 OS << " = " << Val << ";\n";
Evan Chengb915f312005-12-09 22:45:35 +00001993 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
1994 std::string Fn = CP->getSelectFunc();
1995 NumRes = CP->getNumOperands();
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001996 for (unsigned i = 0; i != NumRes; ++i) {
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001997 if (!isPredeclaredSDOperand("Tmp" + utostr(i+ResNo))) {
1998 OS << " ";
1999 DeclareSDOperand("Tmp" + utostr(i+ResNo));
2000 OS << ";\n";
2001 }
Evan Chengb915f312005-12-09 22:45:35 +00002002 }
Evan Chengb915f312005-12-09 22:45:35 +00002003 OS << " if (!" << Fn << "(" << Val;
2004 for (unsigned i = 0; i < NumRes; i++)
Evan Chengbcecf332005-12-17 01:19:28 +00002005 OS << ", Tmp" << i + ResNo;
Evan Chengb915f312005-12-09 22:45:35 +00002006 OS << ")) goto P" << PatternNo << "Fail;\n";
2007 TmpNo = ResNo + NumRes;
2008 } else {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002009 OS << " ";
2010 DeclareSDOperand("Tmp"+utostr(ResNo));
2011 OS << " = Select(" << Val << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002012 }
2013 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2014 // value if used multiple times by this pattern result.
2015 Val = "Tmp"+utostr(ResNo);
2016 return std::make_pair(NumRes, ResNo);
2017 }
2018
2019 if (N->isLeaf()) {
2020 // If this is an explicit register reference, handle it.
2021 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
2022 unsigned ResNo = TmpNo++;
2023 if (DI->getDef()->isSubClassOf("Register")) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002024 OS << " ";
2025 DeclareSDOperand("Tmp"+utostr(ResNo));
2026 OS << " = CurDAG->getRegister("
Evan Chengb915f312005-12-09 22:45:35 +00002027 << ISE.getQualifiedName(DI->getDef()) << ", MVT::"
2028 << getEnumName(N->getType())
2029 << ");\n";
2030 return std::make_pair(1, ResNo);
2031 }
2032 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
2033 unsigned ResNo = TmpNo++;
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002034 OS << " ";
2035 DeclareSDOperand("Tmp"+utostr(ResNo));
2036 OS << " = CurDAG->getTargetConstant("
Evan Chengb915f312005-12-09 22:45:35 +00002037 << II->getValue() << ", MVT::"
2038 << getEnumName(N->getType())
2039 << ");\n";
2040 return std::make_pair(1, ResNo);
2041 }
2042
2043 N->dump();
2044 assert(0 && "Unknown leaf type!");
2045 return std::make_pair(1, ~0U);
2046 }
2047
2048 Record *Op = N->getOperator();
2049 if (Op->isSubClassOf("Instruction")) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002050 const DAGInstruction &Inst = ISE.getInstruction(Op);
Evan Cheng97938882005-12-22 02:24:50 +00002051 bool InFlag = NumImpInputs > 0;
2052 bool OutFlag = Inst.getNumImpResults() > 0;
Evan Cheng4fba2812005-12-20 07:37:41 +00002053
2054 if (InFlag || OutFlag)
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002055 OS << " InFlag = SDOperand(0, 0);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002056
Evan Chengb915f312005-12-09 22:45:35 +00002057 // Determine operand emission order. Complex pattern first.
2058 std::vector<std::pair<unsigned, TreePatternNode*> > EmitOrder;
2059 std::vector<std::pair<unsigned, TreePatternNode*> >::iterator OI;
2060 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
2061 TreePatternNode *Child = N->getChild(i);
2062 if (i == 0) {
2063 EmitOrder.push_back(std::make_pair(i, Child));
2064 OI = EmitOrder.begin();
2065 } else if (NodeIsComplexPattern(Child)) {
2066 OI = EmitOrder.insert(OI, std::make_pair(i, Child));
2067 } else {
2068 EmitOrder.push_back(std::make_pair(i, Child));
2069 }
2070 }
2071
2072 // Emit all of the operands.
2073 std::vector<std::pair<unsigned, unsigned> > NumTemps(EmitOrder.size());
2074 for (unsigned i = 0, e = EmitOrder.size(); i != e; ++i) {
2075 unsigned OpOrder = EmitOrder[i].first;
2076 TreePatternNode *Child = EmitOrder[i].second;
2077 std::pair<unsigned, unsigned> NumTemp = EmitResultCode(Child);
2078 NumTemps[OpOrder] = NumTemp;
2079 }
2080
2081 // List all the operands in the right order.
2082 std::vector<unsigned> Ops;
2083 for (unsigned i = 0, e = NumTemps.size(); i != e; i++) {
2084 for (unsigned j = 0; j < NumTemps[i].first; j++)
2085 Ops.push_back(NumTemps[i].second + j);
2086 }
2087
Evan Chengbcecf332005-12-17 01:19:28 +00002088 const CodeGenTarget &CGT = ISE.getTargetInfo();
2089 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
Evan Chengb915f312005-12-09 22:45:35 +00002090
2091 // Emit all the chain and CopyToReg stuff.
2092 if (II.hasCtrlDep)
Evan Cheng86217892005-12-12 19:37:43 +00002093 OS << " Chain = Select(Chain);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002094 if (InFlag)
2095 EmitCopyToRegs(Pattern, "N", II.hasCtrlDep);
Evan Chengb915f312005-12-09 22:45:35 +00002096
Evan Chengb915f312005-12-09 22:45:35 +00002097 unsigned NumResults = Inst.getNumResults();
2098 unsigned ResNo = TmpNo++;
2099 if (!isRoot) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002100 OS << " ";
2101 DeclareSDOperand("Tmp"+utostr(ResNo));
2102 OS << " = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002103 << II.Namespace << "::" << II.TheDef->getName();
2104 if (N->getType() != MVT::isVoid)
2105 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng4fba2812005-12-20 07:37:41 +00002106 if (OutFlag)
2107 OS << ", MVT::Flag";
Evan Chengbcecf332005-12-17 01:19:28 +00002108
Evan Chengb915f312005-12-09 22:45:35 +00002109 unsigned LastOp = 0;
2110 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2111 LastOp = Ops[i];
2112 OS << ", Tmp" << LastOp;
2113 }
2114 OS << ");\n";
2115 if (II.hasCtrlDep) {
2116 // Must have at least one result
2117 OS << " Chain = Tmp" << LastOp << ".getValue("
2118 << NumResults << ");\n";
2119 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002120 } else if (II.hasCtrlDep || OutFlag) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002121 OS << " Result = CurDAG->getTargetNode("
Evan Chengb915f312005-12-09 22:45:35 +00002122 << II.Namespace << "::" << II.TheDef->getName();
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002123
2124 // Output order: results, chain, flags
2125 // Result types.
Evan Chengbcecf332005-12-17 01:19:28 +00002126 if (NumResults > 0) {
2127 // TODO: multiple results?
2128 if (N->getType() != MVT::isVoid)
2129 OS << ", MVT::" << getEnumName(N->getType());
2130 }
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002131 if (II.hasCtrlDep)
2132 OS << ", MVT::Other";
Evan Cheng4fba2812005-12-20 07:37:41 +00002133 if (OutFlag)
2134 OS << ", MVT::Flag";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002135
2136 // Inputs.
Evan Chengb915f312005-12-09 22:45:35 +00002137 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2138 OS << ", Tmp" << Ops[i];
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002139 if (II.hasCtrlDep) OS << ", Chain";
2140 if (InFlag) OS << ", InFlag";
Evan Chengb915f312005-12-09 22:45:35 +00002141 OS << ");\n";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002142
2143 unsigned ValNo = 0;
Evan Chengf9fc25d2005-12-19 22:40:04 +00002144 for (unsigned i = 0; i < NumResults; i++) {
2145 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = Result"
2146 << ".getValue(" << ValNo << ");\n";
2147 ValNo++;
2148 }
2149
Evan Cheng97938882005-12-22 02:24:50 +00002150 if (II.hasCtrlDep)
Evan Cheng4fba2812005-12-20 07:37:41 +00002151 OS << " Chain = Result.getValue(" << ValNo << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002152
2153 if (OutFlag)
Evan Cheng97938882005-12-22 02:24:50 +00002154 OS << " InFlag = Result.getValue("
2155 << ValNo + (unsigned)II.hasCtrlDep << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002156
Evan Cheng97938882005-12-22 02:24:50 +00002157 unsigned NumCopies = 0;
2158 if (OutFlag) {
2159 NumCopies = EmitCopyFromRegs(N, II.hasCtrlDep);
2160 for (unsigned i = 0; i < NumCopies; i++) {
2161 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = "
2162 << "Result.getValue(" << ValNo << ");\n";
2163 ValNo++;
2164 }
2165 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002166
Evan Cheng97938882005-12-22 02:24:50 +00002167 // User does not expect that I produce a chain!
2168 bool AddedChain =
2169 !NodeHasChain(Pattern, ISE) && (II.hasCtrlDep || NumCopies > 0);
2170
2171 if (NodeHasChain(Pattern, ISE))
2172 OS << " CodeGenMap[N.getValue(" << ValNo++ << ")] = Chain;\n";
2173
2174 if (FoldedChains.size() > 0) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002175 OS << " ";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002176 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Evan Cheng4fba2812005-12-20 07:37:41 +00002177 OS << "CodeGenMap[" << FoldedChains[j].first << ".getValue("
2178 << FoldedChains[j].second << ")] = ";
2179 OS << "Chain;\n";
Evan Chengb915f312005-12-09 22:45:35 +00002180 }
Evan Chengf9fc25d2005-12-19 22:40:04 +00002181
Evan Cheng97938882005-12-22 02:24:50 +00002182 if (OutFlag)
2183 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = InFlag;\n";
2184
2185 if (AddedChain && OutFlag) {
2186 if (NumResults == 0) {
2187 OS << " return Result.getValue(N.ResNo+1);\n";
2188 } else {
2189 OS << " if (N.ResNo < " << NumResults << ")\n";
2190 OS << " return Result.getValue(N.ResNo);\n";
2191 OS << " else\n";
2192 OS << " return Result.getValue(N.ResNo+1);\n";
2193 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002194 } else {
Evan Chenge0870512005-12-20 00:06:17 +00002195 OS << " return Result.getValue(N.ResNo);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002196 }
Evan Chengb915f312005-12-09 22:45:35 +00002197 } else {
2198 // If this instruction is the root, and if there is only one use of it,
2199 // use SelectNodeTo instead of getTargetNode to avoid an allocation.
2200 OS << " if (N.Val->hasOneUse()) {\n";
2201 OS << " return CurDAG->SelectNodeTo(N.Val, "
Evan Chengbcecf332005-12-17 01:19:28 +00002202 << II.Namespace << "::" << II.TheDef->getName();
2203 if (N->getType() != MVT::isVoid)
2204 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng4fba2812005-12-20 07:37:41 +00002205 if (OutFlag)
2206 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002207 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2208 OS << ", Tmp" << Ops[i];
2209 if (InFlag)
2210 OS << ", InFlag";
2211 OS << ");\n";
2212 OS << " } else {\n";
2213 OS << " return CodeGenMap[N] = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002214 << II.Namespace << "::" << II.TheDef->getName();
2215 if (N->getType() != MVT::isVoid)
2216 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng4fba2812005-12-20 07:37:41 +00002217 if (OutFlag)
2218 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002219 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2220 OS << ", Tmp" << Ops[i];
2221 if (InFlag)
2222 OS << ", InFlag";
2223 OS << ");\n";
2224 OS << " }\n";
2225 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002226
Evan Chengb915f312005-12-09 22:45:35 +00002227 return std::make_pair(1, ResNo);
2228 } else if (Op->isSubClassOf("SDNodeXForm")) {
2229 assert(N->getNumChildren() == 1 && "node xform should have one child!");
Evan Cheng58e84a62005-12-14 22:02:59 +00002230 unsigned OpVal = EmitResultCode(N->getChild(0)).second;
Evan Chengb915f312005-12-09 22:45:35 +00002231 unsigned ResNo = TmpNo++;
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002232 OS << " ";
2233 DeclareSDOperand("Tmp"+utostr(ResNo));
2234 OS << " = Transform_" << Op->getName()
Evan Chengb915f312005-12-09 22:45:35 +00002235 << "(Tmp" << OpVal << ".Val);\n";
2236 if (isRoot) {
2237 OS << " CodeGenMap[N] = Tmp" << ResNo << ";\n";
2238 OS << " return Tmp" << ResNo << ";\n";
2239 }
2240 return std::make_pair(1, ResNo);
2241 } else {
2242 N->dump();
2243 assert(0 && "Unknown node in result pattern!");
2244 return std::make_pair(1, ~0U);
2245 }
2246 }
2247
2248 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat' and
2249 /// add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
2250 /// 'Pat' may be missing types. If we find an unresolved type to add a check
2251 /// for, this returns true otherwise false if Pat has all types.
2252 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
2253 const std::string &Prefix) {
2254 // Did we find one?
2255 if (!Pat->hasTypeSet()) {
2256 // Move a type over from 'other' to 'pat'.
2257 Pat->setType(Other->getType());
2258 OS << " if (" << Prefix << ".Val->getValueType(0) != MVT::"
2259 << getName(Pat->getType()) << ") goto P" << PatternNo << "Fail;\n";
2260 return true;
Evan Chengb915f312005-12-09 22:45:35 +00002261 }
2262
2263 unsigned OpNo = (unsigned) NodeHasChain(Pat, ISE);
2264 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
2265 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
2266 Prefix + utostr(OpNo)))
2267 return true;
2268 return false;
2269 }
2270
2271private:
2272 /// EmitCopyToRegs - Emit the flag operands for the DAG that is
2273 /// being built.
2274 void EmitCopyToRegs(TreePatternNode *N, const std::string &RootName,
2275 bool HasCtrlDep) {
2276 const CodeGenTarget &T = ISE.getTargetInfo();
2277 unsigned OpNo = (unsigned) NodeHasChain(N, ISE);
2278 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
2279 TreePatternNode *Child = N->getChild(i);
2280 if (!Child->isLeaf()) {
2281 EmitCopyToRegs(Child, RootName + utostr(OpNo), HasCtrlDep);
2282 } else {
2283 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2284 Record *RR = DI->getDef();
2285 if (RR->isSubClassOf("Register")) {
2286 MVT::ValueType RVT = getRegisterValueType(RR, T);
Evan Chengbcecf332005-12-17 01:19:28 +00002287 if (RVT == MVT::Flag) {
2288 OS << " InFlag = Select(" << RootName << OpNo << ");\n";
2289 } else if (HasCtrlDep) {
Evan Chengb915f312005-12-09 22:45:35 +00002290 OS << " SDOperand " << RootName << "CR" << i << ";\n";
2291 OS << " " << RootName << "CR" << i
2292 << " = CurDAG->getCopyToReg(Chain, CurDAG->getRegister("
2293 << ISE.getQualifiedName(RR) << ", MVT::"
2294 << getEnumName(RVT) << ")"
2295 << ", Select(" << RootName << OpNo << "), InFlag);\n";
2296 OS << " Chain = " << RootName << "CR" << i
2297 << ".getValue(0);\n";
2298 OS << " InFlag = " << RootName << "CR" << i
2299 << ".getValue(1);\n";
2300 } else {
2301 OS << " InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode()"
2302 << ", CurDAG->getRegister(" << ISE.getQualifiedName(RR)
2303 << ", MVT::" << getEnumName(RVT) << ")"
2304 << ", Select(" << RootName << OpNo
2305 << "), InFlag).getValue(1);\n";
2306 }
Evan Cheng97938882005-12-22 02:24:50 +00002307 } else if (RR->getName() == "FLAG") {
2308 OS << " InFlag = Select(" << RootName << OpNo << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002309 }
2310 }
2311 }
2312 }
2313 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002314
2315 /// EmitCopyFromRegs - Emit code to copy result to physical registers
Evan Cheng97938882005-12-22 02:24:50 +00002316 /// as specified by the instruction. It returns the number of
2317 /// CopyFromRegs emitted.
2318 unsigned EmitCopyFromRegs(TreePatternNode *N, bool HasCtrlDep) {
2319 unsigned NumCopies = 0;
Evan Cheng4fba2812005-12-20 07:37:41 +00002320 Record *Op = N->getOperator();
2321 if (Op->isSubClassOf("Instruction")) {
2322 const DAGInstruction &Inst = ISE.getInstruction(Op);
2323 const CodeGenTarget &CGT = ISE.getTargetInfo();
2324 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
2325 unsigned NumImpResults = Inst.getNumImpResults();
2326 for (unsigned i = 0; i < NumImpResults; i++) {
2327 Record *RR = Inst.getImpResult(i);
2328 if (RR->isSubClassOf("Register")) {
2329 MVT::ValueType RVT = getRegisterValueType(RR, CGT);
2330 if (RVT != MVT::Flag) {
2331 if (HasCtrlDep) {
2332 OS << " Result = CurDAG->getCopyFromReg(Chain, "
2333 << ISE.getQualifiedName(RR)
2334 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2335 OS << " Chain = Result.getValue(1);\n";
2336 OS << " InFlag = Result.getValue(2);\n";
2337 } else {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002338 OS << " Chain;\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002339 OS << " Result = CurDAG->getCopyFromReg("
2340 << "CurDAG->getEntryNode(), ISE.getQualifiedName(RR)"
2341 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2342 OS << " Chain = Result.getValue(1);\n";
2343 OS << " InFlag = Result.getValue(2);\n";
2344 }
Evan Cheng97938882005-12-22 02:24:50 +00002345 NumCopies++;
Evan Cheng4fba2812005-12-20 07:37:41 +00002346 }
2347 }
2348 }
2349 }
Evan Cheng97938882005-12-22 02:24:50 +00002350 return NumCopies;
Evan Cheng4fba2812005-12-20 07:37:41 +00002351 }
Evan Chengb915f312005-12-09 22:45:35 +00002352};
2353
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002354/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
2355/// stream to match the pattern, and generate the code for the match if it
2356/// succeeds.
Chris Lattner3f7e9142005-09-23 20:52:47 +00002357void DAGISelEmitter::EmitCodeForPattern(PatternToMatch &Pattern,
2358 std::ostream &OS) {
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002359 static unsigned PatternCount = 0;
2360 unsigned PatternNo = PatternCount++;
2361 OS << " { // Pattern #" << PatternNo << ": ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002362 Pattern.getSrcPattern()->print(OS);
Chris Lattner05814af2005-09-28 17:57:56 +00002363 OS << "\n // Emits: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002364 Pattern.getDstPattern()->print(OS);
Chris Lattner3f7e9142005-09-23 20:52:47 +00002365 OS << "\n";
Evan Cheng58e84a62005-12-14 22:02:59 +00002366 OS << " // Pattern complexity = "
2367 << getPatternSize(Pattern.getSrcPattern(), *this)
2368 << " cost = "
2369 << getResultPatternCost(Pattern.getDstPattern()) << "\n";
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002370
Evan Cheng58e84a62005-12-14 22:02:59 +00002371 PatternCodeEmitter Emitter(*this, Pattern.getPredicates(),
2372 Pattern.getSrcPattern(), Pattern.getDstPattern(),
2373 PatternNo, OS);
Evan Chengb915f312005-12-09 22:45:35 +00002374
Chris Lattner8fc35682005-09-23 23:16:51 +00002375 // Emit the matcher, capturing named arguments in VariableMap.
Evan Cheng58e84a62005-12-14 22:02:59 +00002376 Emitter.EmitMatchCode(Pattern.getSrcPattern(), "N", true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002377
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002378 // TP - Get *SOME* tree pattern, we don't care which.
2379 TreePattern &TP = *PatternFragments.begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00002380
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002381 // At this point, we know that we structurally match the pattern, but the
2382 // types of the nodes may not match. Figure out the fewest number of type
2383 // comparisons we need to emit. For example, if there is only one integer
2384 // type supported by a target, there should be no type comparisons at all for
2385 // integer patterns!
2386 //
2387 // To figure out the fewest number of type checks needed, clone the pattern,
2388 // remove the types, then perform type inference on the pattern as a whole.
2389 // If there are unresolved types, emit an explicit check for those types,
2390 // apply the type to the tree, then rerun type inference. Iterate until all
2391 // types are resolved.
2392 //
Evan Cheng58e84a62005-12-14 22:02:59 +00002393 TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002394 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00002395
2396 do {
2397 // Resolve/propagate as many types as possible.
2398 try {
2399 bool MadeChange = true;
2400 while (MadeChange)
2401 MadeChange = Pat->ApplyTypeConstraints(TP,true/*Ignore reg constraints*/);
2402 } catch (...) {
2403 assert(0 && "Error: could not find consistent types for something we"
2404 " already decided was ok!");
2405 abort();
2406 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002407
Chris Lattner7e82f132005-10-15 21:34:21 +00002408 // Insert a check for an unresolved type and add it to the tree. If we find
2409 // an unresolved type to add a check for, this returns true and we iterate,
2410 // otherwise we are done.
Evan Cheng58e84a62005-12-14 22:02:59 +00002411 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N"));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00002412
Evan Cheng58e84a62005-12-14 22:02:59 +00002413 Emitter.EmitResultCode(Pattern.getDstPattern(), true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002414
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002415 delete Pat;
2416
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002417 OS << " }\n P" << PatternNo << "Fail:\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002418}
2419
Chris Lattner37481472005-09-26 21:59:35 +00002420
2421namespace {
2422 /// CompareByRecordName - An ordering predicate that implements less-than by
2423 /// comparing the names records.
2424 struct CompareByRecordName {
2425 bool operator()(const Record *LHS, const Record *RHS) const {
2426 // Sort by name first.
2427 if (LHS->getName() < RHS->getName()) return true;
2428 // If both names are equal, sort by pointer.
2429 return LHS->getName() == RHS->getName() && LHS < RHS;
2430 }
2431 };
2432}
2433
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002434void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002435 std::string InstNS = Target.inst_begin()->second.Namespace;
2436 if (!InstNS.empty()) InstNS += "::";
2437
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002438 // Emit boilerplate.
2439 OS << "// The main instruction selector code.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002440 << "SDOperand SelectCode(SDOperand N) {\n"
2441 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002442 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
2443 << "INSTRUCTION_LIST_END))\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002444 << " return N; // Already selected.\n\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002445 << " std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(N);\n"
Evan Cheng481c8e02005-12-12 23:22:48 +00002446 << " if (CGMI != CodeGenMap.end()) return CGMI->second;\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002447 << " // Work arounds for GCC stack overflow bugs.\n"
2448 << " SDOperand N0, N1, N2, N00, N01, N10, N11, Tmp0, Tmp1, Tmp2, Tmp3;\n"
2449 << " SDOperand Chain, InFlag, Result;\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002450 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002451 << " default: break;\n"
2452 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner5216c692005-12-18 21:05:44 +00002453 << " case ISD::BasicBlock:\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002454 << " return N;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002455 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002456 << " case ISD::AssertZext: {\n"
2457 << " SDOperand Tmp0 = Select(N.getOperand(0));\n"
2458 << " if (!N.Val->hasOneUse()) CodeGenMap[N] = Tmp0;\n"
2459 << " return Tmp0;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002460 << " }\n"
2461 << " case ISD::TokenFactor:\n"
2462 << " if (N.getNumOperands() == 2) {\n"
2463 << " SDOperand Op0 = Select(N.getOperand(0));\n"
2464 << " SDOperand Op1 = Select(N.getOperand(1));\n"
2465 << " return CodeGenMap[N] =\n"
2466 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Op0, Op1);\n"
2467 << " } else {\n"
2468 << " std::vector<SDOperand> Ops;\n"
2469 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
2470 << " Ops.push_back(Select(N.getOperand(i)));\n"
2471 << " return CodeGenMap[N] = \n"
2472 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Ops);\n"
2473 << " }\n"
2474 << " case ISD::CopyFromReg: {\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002475 << " Chain = Select(N.getOperand(0));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002476 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
2477 << " MVT::ValueType VT = N.Val->getValueType(0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002478 << " if (N.Val->getNumValues() == 2) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002479 << " if (Chain == N.getOperand(0)) return N; // No change\n"
2480 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT);\n"
2481 << " CodeGenMap[N.getValue(0)] = New;\n"
2482 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2483 << " return New.getValue(N.ResNo);\n"
2484 << " } else {\n"
2485 << " SDOperand Flag;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002486 << " if (N.getNumOperands() == 3) Flag = Select(N.getOperand(2));\n"
2487 << " if (Chain == N.getOperand(0) &&\n"
2488 << " (N.getNumOperands() == 2 || Flag == N.getOperand(2)))\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002489 << " return N; // No change\n"
2490 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT, Flag);\n"
2491 << " CodeGenMap[N.getValue(0)] = New;\n"
2492 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2493 << " CodeGenMap[N.getValue(2)] = New.getValue(2);\n"
2494 << " return New.getValue(N.ResNo);\n"
2495 << " }\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002496 << " }\n"
2497 << " case ISD::CopyToReg: {\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002498 << " Chain = Select(N.getOperand(0));\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002499 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002500 << " SDOperand Val = Select(N.getOperand(2));\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002501 << " Result = N;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002502 << " if (N.Val->getNumValues() == 1) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002503 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2))\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002504 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002505 << " return CodeGenMap[N] = Result;\n"
2506 << " } else {\n"
2507 << " SDOperand Flag;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002508 << " if (N.getNumOperands() == 4) Flag = Select(N.getOperand(3));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002509 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2) ||\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002510 << " (N.getNumOperands() == 4 && Flag != N.getOperand(3)))\n"
2511 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val, Flag);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002512 << " CodeGenMap[N.getValue(0)] = Result;\n"
2513 << " CodeGenMap[N.getValue(1)] = Result.getValue(1);\n"
2514 << " return Result.getValue(N.ResNo);\n"
2515 << " }\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002516 << " }\n";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002517
Chris Lattner81303322005-09-23 19:36:15 +00002518 // Group the patterns by their top-level opcodes.
Chris Lattner37481472005-09-26 21:59:35 +00002519 std::map<Record*, std::vector<PatternToMatch*>,
2520 CompareByRecordName> PatternsByOpcode;
Evan Cheng0fc71982005-12-08 02:00:36 +00002521 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002522 TreePatternNode *Node = PatternsToMatch[i].getSrcPattern();
Evan Cheng0fc71982005-12-08 02:00:36 +00002523 if (!Node->isLeaf()) {
2524 PatternsByOpcode[Node->getOperator()].push_back(&PatternsToMatch[i]);
Chris Lattner0614b622005-11-02 06:49:14 +00002525 } else {
Evan Cheng0fc71982005-12-08 02:00:36 +00002526 const ComplexPattern *CP;
Chris Lattner0614b622005-11-02 06:49:14 +00002527 if (IntInit *II =
Evan Cheng0fc71982005-12-08 02:00:36 +00002528 dynamic_cast<IntInit*>(Node->getLeafValue())) {
Chris Lattner0614b622005-11-02 06:49:14 +00002529 PatternsByOpcode[getSDNodeNamed("imm")].push_back(&PatternsToMatch[i]);
Evan Cheng0fc71982005-12-08 02:00:36 +00002530 } else if ((CP = NodeGetComplexPattern(Node, *this))) {
Evan Cheng3aa39f42005-12-08 02:14:08 +00002531 std::vector<Record*> OpNodes = CP->getRootNodes();
Evan Cheng0fc71982005-12-08 02:00:36 +00002532 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
2533 PatternsByOpcode[OpNodes[j]].insert(PatternsByOpcode[OpNodes[j]].begin(),
2534 &PatternsToMatch[i]);
2535 }
Chris Lattner0614b622005-11-02 06:49:14 +00002536 } else {
Evan Cheng76021f02005-11-29 18:44:58 +00002537 std::cerr << "Unrecognized opcode '";
Evan Cheng0fc71982005-12-08 02:00:36 +00002538 Node->dump();
Evan Cheng76021f02005-11-29 18:44:58 +00002539 std::cerr << "' on tree pattern '";
Evan Cheng58e84a62005-12-14 22:02:59 +00002540 std::cerr << PatternsToMatch[i].getDstPattern()->getOperator()->getName();
Evan Cheng76021f02005-11-29 18:44:58 +00002541 std::cerr << "'!\n";
2542 exit(1);
Chris Lattner0614b622005-11-02 06:49:14 +00002543 }
2544 }
Evan Cheng0fc71982005-12-08 02:00:36 +00002545 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002546
Chris Lattner3f7e9142005-09-23 20:52:47 +00002547 // Loop over all of the case statements.
Chris Lattner37481472005-09-26 21:59:35 +00002548 for (std::map<Record*, std::vector<PatternToMatch*>,
2549 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2550 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
Chris Lattner81303322005-09-23 19:36:15 +00002551 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
2552 std::vector<PatternToMatch*> &Patterns = PBOI->second;
2553
2554 OS << " case " << OpcodeInfo.getEnumName() << ":\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002555
2556 // We want to emit all of the matching code now. However, we want to emit
2557 // the matches in order of minimal cost. Sort the patterns so the least
2558 // cost one is at the start.
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002559 std::stable_sort(Patterns.begin(), Patterns.end(),
Evan Cheng0fc71982005-12-08 02:00:36 +00002560 PatternSortingPredicate(*this));
Chris Lattner81303322005-09-23 19:36:15 +00002561
Chris Lattner3f7e9142005-09-23 20:52:47 +00002562 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
2563 EmitCodeForPattern(*Patterns[i], OS);
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002564 OS << " break;\n\n";
Chris Lattner81303322005-09-23 19:36:15 +00002565 }
2566
2567
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002568 OS << " } // end of big switch.\n\n"
2569 << " std::cerr << \"Cannot yet select: \";\n"
Evan Cheng97938882005-12-22 02:24:50 +00002570 << " N.Val->dump(CurDAG);\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002571 << " std::cerr << '\\n';\n"
2572 << " abort();\n"
2573 << "}\n";
2574}
2575
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002576void DAGISelEmitter::run(std::ostream &OS) {
2577 EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
2578 " target", OS);
2579
Chris Lattner1f39e292005-09-14 00:09:24 +00002580 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2581 << "// *** instruction selector class. These functions are really "
2582 << "methods.\n\n";
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002583
Chris Lattner296dfe32005-09-24 00:50:51 +00002584 OS << "// Instance var to keep track of multiply used nodes that have \n"
2585 << "// already been selected.\n"
2586 << "std::map<SDOperand, SDOperand> CodeGenMap;\n";
2587
Chris Lattnerca559d02005-09-08 21:03:01 +00002588 ParseNodeInfo();
Chris Lattner24eeeb82005-09-13 21:51:00 +00002589 ParseNodeTransforms(OS);
Evan Cheng0fc71982005-12-08 02:00:36 +00002590 ParseComplexPatterns();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002591 ParsePatternFragments(OS);
2592 ParseInstructions();
2593 ParsePatterns();
Chris Lattner3f7e9142005-09-23 20:52:47 +00002594
Chris Lattnere97603f2005-09-28 19:27:25 +00002595 // Generate variants. For example, commutative patterns can match
Chris Lattner3f7e9142005-09-23 20:52:47 +00002596 // multiple ways. Add them to PatternsToMatch as well.
Chris Lattnere97603f2005-09-28 19:27:25 +00002597 GenerateVariants();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002598
Chris Lattnere46e17b2005-09-29 19:28:10 +00002599
2600 DEBUG(std::cerr << "\n\nALL PATTERNS TO MATCH:\n\n";
2601 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002602 std::cerr << "PATTERN: "; PatternsToMatch[i].getSrcPattern()->dump();
2603 std::cerr << "\nRESULT: ";PatternsToMatch[i].getDstPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00002604 std::cerr << "\n";
2605 });
2606
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002607 // At this point, we have full information about the 'Patterns' we need to
2608 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002609 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002610 EmitInstructionSelector(OS);
2611
2612 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
2613 E = PatternFragments.end(); I != E; ++I)
2614 delete I->second;
2615 PatternFragments.clear();
2616
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002617 Instructions.clear();
2618}