blob: eca9ad11cef96f0bd397acf910f29137fd3bac8a [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();
299 TP.error("Type inference contradiction found in node!");
300 } else {
301 TP.error("Type inference contradiction found in node " +
302 getOperator()->getName() + "!");
303 }
Chris Lattner32707602005-09-08 23:22:48 +0000304 return true; // unreachable
305}
306
307
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000308void TreePatternNode::print(std::ostream &OS) const {
309 if (isLeaf()) {
310 OS << *getLeafValue();
311 } else {
312 OS << "(" << getOperator()->getName();
313 }
314
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000315 switch (getExtType()) {
316 case MVT::Other: OS << ":Other"; break;
317 case MVT::isInt: OS << ":isInt"; break;
318 case MVT::isFP : OS << ":isFP"; break;
319 case MVT::isUnknown: ; /*OS << ":?";*/ break;
320 default: OS << ":" << getType(); break;
321 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000322
323 if (!isLeaf()) {
324 if (getNumChildren() != 0) {
325 OS << " ";
326 getChild(0)->print(OS);
327 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
328 OS << ", ";
329 getChild(i)->print(OS);
330 }
331 }
332 OS << ")";
333 }
334
335 if (!PredicateFn.empty())
Chris Lattner24eeeb82005-09-13 21:51:00 +0000336 OS << "<<P:" << PredicateFn << ">>";
Chris Lattnerb0276202005-09-14 22:55:26 +0000337 if (TransformFn)
338 OS << "<<X:" << TransformFn->getName() << ">>";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000339 if (!getName().empty())
340 OS << ":$" << getName();
341
342}
343void TreePatternNode::dump() const {
344 print(std::cerr);
345}
346
Chris Lattnere46e17b2005-09-29 19:28:10 +0000347/// isIsomorphicTo - Return true if this node is recursively isomorphic to
348/// the specified node. For this comparison, all of the state of the node
349/// is considered, except for the assigned name. Nodes with differing names
350/// that are otherwise identical are considered isomorphic.
351bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N) const {
352 if (N == this) return true;
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000353 if (N->isLeaf() != isLeaf() || getExtType() != N->getExtType() ||
Chris Lattnere46e17b2005-09-29 19:28:10 +0000354 getPredicateFn() != N->getPredicateFn() ||
355 getTransformFn() != N->getTransformFn())
356 return false;
357
358 if (isLeaf()) {
359 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue()))
360 if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue()))
361 return DI->getDef() == NDI->getDef();
362 return getLeafValue() == N->getLeafValue();
363 }
364
365 if (N->getOperator() != getOperator() ||
366 N->getNumChildren() != getNumChildren()) return false;
367 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
368 if (!getChild(i)->isIsomorphicTo(N->getChild(i)))
369 return false;
370 return true;
371}
372
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000373/// clone - Make a copy of this tree and all of its children.
374///
375TreePatternNode *TreePatternNode::clone() const {
376 TreePatternNode *New;
377 if (isLeaf()) {
378 New = new TreePatternNode(getLeafValue());
379 } else {
380 std::vector<TreePatternNode*> CChildren;
381 CChildren.reserve(Children.size());
382 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
383 CChildren.push_back(getChild(i)->clone());
384 New = new TreePatternNode(getOperator(), CChildren);
385 }
386 New->setName(getName());
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000387 New->setType(getExtType());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000388 New->setPredicateFn(getPredicateFn());
Chris Lattner24eeeb82005-09-13 21:51:00 +0000389 New->setTransformFn(getTransformFn());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000390 return New;
391}
392
Chris Lattner32707602005-09-08 23:22:48 +0000393/// SubstituteFormalArguments - Replace the formal arguments in this tree
394/// with actual values specified by ArgMap.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000395void TreePatternNode::
396SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
397 if (isLeaf()) return;
398
399 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
400 TreePatternNode *Child = getChild(i);
401 if (Child->isLeaf()) {
402 Init *Val = Child->getLeafValue();
403 if (dynamic_cast<DefInit*>(Val) &&
404 static_cast<DefInit*>(Val)->getDef()->getName() == "node") {
405 // We found a use of a formal argument, replace it with its value.
406 Child = ArgMap[Child->getName()];
407 assert(Child && "Couldn't find formal argument!");
408 setChild(i, Child);
409 }
410 } else {
411 getChild(i)->SubstituteFormalArguments(ArgMap);
412 }
413 }
414}
415
416
417/// InlinePatternFragments - If this pattern refers to any pattern
418/// fragments, inline them into place, giving us a pattern without any
419/// PatFrag references.
420TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
421 if (isLeaf()) return this; // nothing to do.
422 Record *Op = getOperator();
423
424 if (!Op->isSubClassOf("PatFrag")) {
425 // Just recursively inline children nodes.
426 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
427 setChild(i, getChild(i)->InlinePatternFragments(TP));
428 return this;
429 }
430
431 // Otherwise, we found a reference to a fragment. First, look up its
432 // TreePattern record.
433 TreePattern *Frag = TP.getDAGISelEmitter().getPatternFragment(Op);
434
435 // Verify that we are passing the right number of operands.
436 if (Frag->getNumArgs() != Children.size())
437 TP.error("'" + Op->getName() + "' fragment requires " +
438 utostr(Frag->getNumArgs()) + " operands!");
439
Chris Lattner37937092005-09-09 01:15:01 +0000440 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000441
442 // Resolve formal arguments to their actual value.
443 if (Frag->getNumArgs()) {
444 // Compute the map of formal to actual arguments.
445 std::map<std::string, TreePatternNode*> ArgMap;
446 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
447 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
448
449 FragTree->SubstituteFormalArguments(ArgMap);
450 }
451
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000452 FragTree->setName(getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000453 FragTree->UpdateNodeType(getExtType(), TP);
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000454
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000455 // Get a new copy of this fragment to stitch into here.
456 //delete this; // FIXME: implement refcounting!
457 return FragTree;
458}
459
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000460/// getIntrinsicType - Check to see if the specified record has an intrinsic
461/// type which should be applied to it. This infer the type of register
462/// references from the register file information, for example.
463///
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000464static unsigned char getIntrinsicType(Record *R, bool NotRegisters,
465 TreePattern &TP) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000466 // Check to see if this is a register or a register class...
467 if (R->isSubClassOf("RegisterClass")) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000468 if (NotRegisters) return MVT::isUnknown;
Nate Begeman6510b222005-12-01 04:51:06 +0000469 const CodeGenRegisterClass &RC =
470 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(R);
471 return RC.getValueTypeNum(0);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000472 } else if (R->isSubClassOf("PatFrag")) {
473 // Pattern fragment types will be resolved when they are inlined.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000474 return MVT::isUnknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000475 } else if (R->isSubClassOf("Register")) {
Chris Lattner22faeab2005-12-05 02:36:37 +0000476 // If the register appears in exactly one regclass, and the regclass has one
477 // value type, use it as the known type.
478 const CodeGenTarget &T = TP.getDAGISelEmitter().getTargetInfo();
479 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
480 if (RC->getNumValueTypes() == 1)
481 return RC->getValueTypeNum(0);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000482 return MVT::isUnknown;
Chris Lattner1531f202005-10-26 16:59:37 +0000483 } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
484 // Using a VTSDNode or CondCodeSDNode.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000485 return MVT::Other;
Evan Cheng0fc71982005-12-08 02:00:36 +0000486 } else if (R->isSubClassOf("ComplexPattern")) {
Evan Cheng3aa39f42005-12-08 02:14:08 +0000487 return TP.getDAGISelEmitter().getComplexPattern(R).getValueType();
Evan Cheng01f318b2005-12-14 02:21:57 +0000488 } else if (R->getName() == "node" || R->getName() == "srcvalue") {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000489 // Placeholder.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000490 return MVT::isUnknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000491 }
492
493 TP.error("Unknown node flavor used in pattern: " + R->getName());
494 return MVT::Other;
495}
496
Chris Lattner32707602005-09-08 23:22:48 +0000497/// ApplyTypeConstraints - Apply all of the type constraints relevent to
498/// this node and its children in the tree. This returns true if it makes a
499/// change, false otherwise. If a type contradiction is found, throw an
500/// exception.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000501bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
502 if (isLeaf()) {
Chris Lattner465c7372005-11-03 05:46:11 +0000503 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000504 // If it's a regclass or something else known, include the type.
505 return UpdateNodeType(getIntrinsicType(DI->getDef(), NotRegisters, TP),
506 TP);
Chris Lattner465c7372005-11-03 05:46:11 +0000507 } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
508 // Int inits are always integers. :)
509 bool MadeChange = UpdateNodeType(MVT::isInt, TP);
510
511 if (hasTypeSet()) {
512 unsigned Size = MVT::getSizeInBits(getType());
513 // Make sure that the value is representable for this type.
514 if (Size < 32) {
515 int Val = (II->getValue() << (32-Size)) >> (32-Size);
516 if (Val != II->getValue())
517 TP.error("Sign-extended integer value '" + itostr(II->getValue()) +
518 "' is out of range for type 'MVT::" +
519 getEnumName(getType()) + "'!");
520 }
521 }
522
523 return MadeChange;
524 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000525 return false;
526 }
Chris Lattner32707602005-09-08 23:22:48 +0000527
528 // special handling for set, which isn't really an SDNode.
529 if (getOperator()->getName() == "set") {
530 assert (getNumChildren() == 2 && "Only handle 2 operand set's for now!");
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000531 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
532 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner32707602005-09-08 23:22:48 +0000533
534 // Types of operands must match.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000535 MadeChange |= getChild(0)->UpdateNodeType(getChild(1)->getExtType(), TP);
536 MadeChange |= getChild(1)->UpdateNodeType(getChild(0)->getExtType(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000537 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
538 return MadeChange;
Chris Lattnerabbb6052005-09-15 21:42:00 +0000539 } else if (getOperator()->isSubClassOf("SDNode")) {
540 const SDNodeInfo &NI = TP.getDAGISelEmitter().getSDNodeInfo(getOperator());
541
542 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
543 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000544 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000545 // Branch, etc. do not produce results and top-level forms in instr pattern
546 // must have void types.
547 if (NI.getNumResults() == 0)
548 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
Chris Lattnerabbb6052005-09-15 21:42:00 +0000549 return MadeChange;
Chris Lattnera28aec12005-09-15 22:23:50 +0000550 } else if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattnerae5b3502005-09-15 21:57:35 +0000551 const DAGInstruction &Inst =
552 TP.getDAGISelEmitter().getInstruction(getOperator());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000553 bool MadeChange = false;
554 unsigned NumResults = Inst.getNumResults();
Chris Lattnerae5b3502005-09-15 21:57:35 +0000555
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000556 assert(NumResults <= 1 &&
557 "Only supports zero or one result instrs!");
Chris Lattnera28aec12005-09-15 22:23:50 +0000558 // Apply the result type to the node
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000559 if (NumResults == 0) {
560 MadeChange = UpdateNodeType(MVT::isVoid, TP);
561 } else {
562 Record *ResultNode = Inst.getResult(0);
563 assert(ResultNode->isSubClassOf("RegisterClass") &&
564 "Operands should be register classes!");
Nate Begemanddb39542005-12-01 00:06:14 +0000565
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000566 const CodeGenRegisterClass &RC =
567 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(ResultNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000568
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000569 // Get the first ValueType in the RegClass, it's as good as any.
570 MadeChange = UpdateNodeType(RC.getValueTypeNum(0), TP);
571 }
Chris Lattnera28aec12005-09-15 22:23:50 +0000572
573 if (getNumChildren() != Inst.getNumOperands())
574 TP.error("Instruction '" + getOperator()->getName() + " expects " +
575 utostr(Inst.getNumOperands()) + " operands, not " +
576 utostr(getNumChildren()) + " operands!");
577 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
Nate Begemanddb39542005-12-01 00:06:14 +0000578 Record *OperandNode = Inst.getOperand(i);
579 MVT::ValueType VT;
580 if (OperandNode->isSubClassOf("RegisterClass")) {
581 const CodeGenRegisterClass &RC =
582 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(OperandNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000583 VT = RC.getValueTypeNum(0);
Nate Begemanddb39542005-12-01 00:06:14 +0000584 } else if (OperandNode->isSubClassOf("Operand")) {
585 VT = getValueType(OperandNode->getValueAsDef("Type"));
586 } else {
587 assert(0 && "Unknown operand type!");
588 abort();
589 }
590
591 MadeChange |= getChild(i)->UpdateNodeType(VT, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000592 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnera28aec12005-09-15 22:23:50 +0000593 }
594 return MadeChange;
595 } else {
596 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
597
598 // Node transforms always take one operand, and take and return the same
599 // type.
600 if (getNumChildren() != 1)
601 TP.error("Node transform '" + getOperator()->getName() +
602 "' requires one operand!");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000603 bool MadeChange = UpdateNodeType(getChild(0)->getExtType(), TP);
604 MadeChange |= getChild(0)->UpdateNodeType(getExtType(), TP);
Chris Lattnera28aec12005-09-15 22:23:50 +0000605 return MadeChange;
Chris Lattner32707602005-09-08 23:22:48 +0000606 }
Chris Lattner32707602005-09-08 23:22:48 +0000607}
608
Chris Lattnere97603f2005-09-28 19:27:25 +0000609/// canPatternMatch - If it is impossible for this pattern to match on this
610/// target, fill in Reason and return false. Otherwise, return true. This is
611/// used as a santity check for .td files (to prevent people from writing stuff
612/// that can never possibly work), and to prevent the pattern permuter from
613/// generating stuff that is useless.
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000614bool TreePatternNode::canPatternMatch(std::string &Reason, DAGISelEmitter &ISE){
Chris Lattnere97603f2005-09-28 19:27:25 +0000615 if (isLeaf()) return true;
616
617 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
618 if (!getChild(i)->canPatternMatch(Reason, ISE))
619 return false;
Evan Cheng0fc71982005-12-08 02:00:36 +0000620
Chris Lattnere97603f2005-09-28 19:27:25 +0000621 // If this node is a commutative operator, check that the LHS isn't an
622 // immediate.
623 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(getOperator());
624 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
625 // Scan all of the operands of the node and make sure that only the last one
626 // is a constant node.
627 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i)
628 if (!getChild(i)->isLeaf() &&
629 getChild(i)->getOperator()->getName() == "imm") {
630 Reason = "Immediate value must be on the RHS of commutative operators!";
631 return false;
632 }
633 }
634
635 return true;
636}
Chris Lattner32707602005-09-08 23:22:48 +0000637
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000638//===----------------------------------------------------------------------===//
639// TreePattern implementation
640//
641
Chris Lattneredbd8712005-10-21 01:19:59 +0000642TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattneree9f0c32005-09-13 21:20:49 +0000643 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000644 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000645 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
646 Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000647}
648
Chris Lattneredbd8712005-10-21 01:19:59 +0000649TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000650 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000651 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000652 Trees.push_back(ParseTreePattern(Pat));
653}
654
Chris Lattneredbd8712005-10-21 01:19:59 +0000655TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000656 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000657 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000658 Trees.push_back(Pat);
659}
660
661
662
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000663void TreePattern::error(const std::string &Msg) const {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000664 dump();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000665 throw "In " + TheRecord->getName() + ": " + Msg;
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000666}
667
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000668TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
669 Record *Operator = Dag->getNodeType();
670
671 if (Operator->isSubClassOf("ValueType")) {
672 // If the operator is a ValueType, then this must be "type cast" of a leaf
673 // node.
674 if (Dag->getNumArgs() != 1)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000675 error("Type cast only takes one operand!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000676
677 Init *Arg = Dag->getArg(0);
678 TreePatternNode *New;
679 if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
Chris Lattner72fe91c2005-09-24 00:40:24 +0000680 Record *R = DI->getDef();
681 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
682 Dag->setArg(0, new DagInit(R,
683 std::vector<std::pair<Init*, std::string> >()));
Chris Lattner12cf9092005-11-16 23:14:54 +0000684 return ParseTreePattern(Dag);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000685 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000686 New = new TreePatternNode(DI);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000687 } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
688 New = ParseTreePattern(DI);
Chris Lattner0614b622005-11-02 06:49:14 +0000689 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
690 New = new TreePatternNode(II);
691 if (!Dag->getArgName(0).empty())
692 error("Constant int argument should not have a name!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000693 } else {
694 Arg->dump();
695 error("Unknown leaf value for tree pattern!");
696 return 0;
697 }
698
Chris Lattner32707602005-09-08 23:22:48 +0000699 // Apply the type cast.
700 New->UpdateNodeType(getValueType(Operator), *this);
Chris Lattner12cf9092005-11-16 23:14:54 +0000701 New->setName(Dag->getArgName(0));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000702 return New;
703 }
704
705 // Verify that this is something that makes sense for an operator.
706 if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
Chris Lattnerabbb6052005-09-15 21:42:00 +0000707 !Operator->isSubClassOf("Instruction") &&
708 !Operator->isSubClassOf("SDNodeXForm") &&
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000709 Operator->getName() != "set")
710 error("Unrecognized node '" + Operator->getName() + "'!");
711
Chris Lattneredbd8712005-10-21 01:19:59 +0000712 // Check to see if this is something that is illegal in an input pattern.
713 if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
714 Operator->isSubClassOf("SDNodeXForm")))
715 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
716
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000717 std::vector<TreePatternNode*> Children;
718
719 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
720 Init *Arg = Dag->getArg(i);
721 if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
722 Children.push_back(ParseTreePattern(DI));
Chris Lattner12cf9092005-11-16 23:14:54 +0000723 if (Children.back()->getName().empty())
724 Children.back()->setName(Dag->getArgName(i));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000725 } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
726 Record *R = DefI->getDef();
727 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
728 // TreePatternNode if its own.
729 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
730 Dag->setArg(i, new DagInit(R,
731 std::vector<std::pair<Init*, std::string> >()));
732 --i; // Revisit this node...
733 } else {
734 TreePatternNode *Node = new TreePatternNode(DefI);
735 Node->setName(Dag->getArgName(i));
736 Children.push_back(Node);
737
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000738 // Input argument?
739 if (R->getName() == "node") {
740 if (Dag->getArgName(i).empty())
741 error("'node' argument requires a name to match with operand list");
742 Args.push_back(Dag->getArgName(i));
743 }
744 }
Chris Lattner5d5a0562005-10-19 04:30:56 +0000745 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
746 TreePatternNode *Node = new TreePatternNode(II);
747 if (!Dag->getArgName(i).empty())
748 error("Constant int argument should not have a name!");
749 Children.push_back(Node);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000750 } else {
Chris Lattner5d5a0562005-10-19 04:30:56 +0000751 std::cerr << '"';
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000752 Arg->dump();
Chris Lattner5d5a0562005-10-19 04:30:56 +0000753 std::cerr << "\": ";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000754 error("Unknown leaf value for tree pattern!");
755 }
756 }
757
758 return new TreePatternNode(Operator, Children);
759}
760
Chris Lattner32707602005-09-08 23:22:48 +0000761/// InferAllTypes - Infer/propagate as many types throughout the expression
762/// patterns as possible. Return true if all types are infered, false
763/// otherwise. Throw an exception if a type contradiction is found.
764bool TreePattern::InferAllTypes() {
765 bool MadeChange = true;
766 while (MadeChange) {
767 MadeChange = false;
768 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000769 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
Chris Lattner32707602005-09-08 23:22:48 +0000770 }
771
772 bool HasUnresolvedTypes = false;
773 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
774 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
775 return !HasUnresolvedTypes;
776}
777
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000778void TreePattern::print(std::ostream &OS) const {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000779 OS << getRecord()->getName();
780 if (!Args.empty()) {
781 OS << "(" << Args[0];
782 for (unsigned i = 1, e = Args.size(); i != e; ++i)
783 OS << ", " << Args[i];
784 OS << ")";
785 }
786 OS << ": ";
787
788 if (Trees.size() > 1)
789 OS << "[\n";
790 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
791 OS << "\t";
792 Trees[i]->print(OS);
793 OS << "\n";
794 }
795
796 if (Trees.size() > 1)
797 OS << "]\n";
798}
799
800void TreePattern::dump() const { print(std::cerr); }
801
802
803
804//===----------------------------------------------------------------------===//
805// DAGISelEmitter implementation
806//
807
Chris Lattnerca559d02005-09-08 21:03:01 +0000808// Parse all of the SDNode definitions for the target, populating SDNodes.
809void DAGISelEmitter::ParseNodeInfo() {
810 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
811 while (!Nodes.empty()) {
812 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
813 Nodes.pop_back();
814 }
815}
816
Chris Lattner24eeeb82005-09-13 21:51:00 +0000817/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
818/// map, and emit them to the file as functions.
819void DAGISelEmitter::ParseNodeTransforms(std::ostream &OS) {
820 OS << "\n// Node transformations.\n";
821 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
822 while (!Xforms.empty()) {
823 Record *XFormNode = Xforms.back();
824 Record *SDNode = XFormNode->getValueAsDef("Opcode");
825 std::string Code = XFormNode->getValueAsCode("XFormFunction");
826 SDNodeXForms.insert(std::make_pair(XFormNode,
827 std::make_pair(SDNode, Code)));
828
Chris Lattner1048b7a2005-09-13 22:03:37 +0000829 if (!Code.empty()) {
Chris Lattner24eeeb82005-09-13 21:51:00 +0000830 std::string ClassName = getSDNodeInfo(SDNode).getSDClassName();
831 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
832
Chris Lattner1048b7a2005-09-13 22:03:37 +0000833 OS << "inline SDOperand Transform_" << XFormNode->getName()
Chris Lattner24eeeb82005-09-13 21:51:00 +0000834 << "(SDNode *" << C2 << ") {\n";
835 if (ClassName != "SDNode")
836 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
837 OS << Code << "\n}\n";
838 }
839
840 Xforms.pop_back();
841 }
842}
843
Evan Cheng0fc71982005-12-08 02:00:36 +0000844void DAGISelEmitter::ParseComplexPatterns() {
845 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
846 while (!AMs.empty()) {
847 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
848 AMs.pop_back();
849 }
850}
Chris Lattner24eeeb82005-09-13 21:51:00 +0000851
852
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000853/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
854/// file, building up the PatternFragments map. After we've collected them all,
855/// inline fragments together as necessary, so that there are no references left
856/// inside a pattern fragment to a pattern fragment.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000857///
858/// This also emits all of the predicate functions to the output file.
859///
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000860void DAGISelEmitter::ParsePatternFragments(std::ostream &OS) {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000861 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
862
863 // First step, parse all of the fragments and emit predicate functions.
864 OS << "\n// Predicate functions.\n";
865 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +0000866 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
Chris Lattneredbd8712005-10-21 01:19:59 +0000867 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000868 PatternFragments[Fragments[i]] = P;
Chris Lattneree9f0c32005-09-13 21:20:49 +0000869
870 // Validate the argument list, converting it to map, to discard duplicates.
871 std::vector<std::string> &Args = P->getArgList();
872 std::set<std::string> OperandsMap(Args.begin(), Args.end());
873
874 if (OperandsMap.count(""))
875 P->error("Cannot have unnamed 'node' values in pattern fragment!");
876
877 // Parse the operands list.
878 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
879 if (OpsList->getNodeType()->getName() != "ops")
880 P->error("Operands list should start with '(ops ... '!");
881
882 // Copy over the arguments.
883 Args.clear();
884 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
885 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
886 static_cast<DefInit*>(OpsList->getArg(j))->
887 getDef()->getName() != "node")
888 P->error("Operands list should all be 'node' values.");
889 if (OpsList->getArgName(j).empty())
890 P->error("Operands list should have names for each operand!");
891 if (!OperandsMap.count(OpsList->getArgName(j)))
892 P->error("'" + OpsList->getArgName(j) +
893 "' does not occur in pattern or was multiply specified!");
894 OperandsMap.erase(OpsList->getArgName(j));
895 Args.push_back(OpsList->getArgName(j));
896 }
897
898 if (!OperandsMap.empty())
899 P->error("Operands list does not contain an entry for operand '" +
900 *OperandsMap.begin() + "'!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000901
902 // If there is a code init for this fragment, emit the predicate code and
903 // keep track of the fact that this fragment uses it.
Chris Lattner24eeeb82005-09-13 21:51:00 +0000904 std::string Code = Fragments[i]->getValueAsCode("Predicate");
905 if (!Code.empty()) {
Chris Lattner37937092005-09-09 01:15:01 +0000906 assert(!P->getOnlyTree()->isLeaf() && "Can't be a leaf!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000907 std::string ClassName =
Chris Lattner37937092005-09-09 01:15:01 +0000908 getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000909 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
910
Chris Lattner1048b7a2005-09-13 22:03:37 +0000911 OS << "inline bool Predicate_" << Fragments[i]->getName()
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000912 << "(SDNode *" << C2 << ") {\n";
913 if (ClassName != "SDNode")
914 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
Chris Lattner24eeeb82005-09-13 21:51:00 +0000915 OS << Code << "\n}\n";
Chris Lattner37937092005-09-09 01:15:01 +0000916 P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000917 }
Chris Lattner6de8b532005-09-13 21:59:15 +0000918
919 // If there is a node transformation corresponding to this, keep track of
920 // it.
921 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
922 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
Chris Lattnerb0276202005-09-14 22:55:26 +0000923 P->getOnlyTree()->setTransformFn(Transform);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000924 }
925
926 OS << "\n\n";
927
928 // Now that we've parsed all of the tree fragments, do a closure on them so
929 // that there are not references to PatFrags left inside of them.
930 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
931 E = PatternFragments.end(); I != E; ++I) {
Chris Lattner32707602005-09-08 23:22:48 +0000932 TreePattern *ThePat = I->second;
933 ThePat->InlinePatternFragments();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000934
Chris Lattner32707602005-09-08 23:22:48 +0000935 // Infer as many types as possible. Don't worry about it if we don't infer
936 // all of them, some may depend on the inputs of the pattern.
937 try {
938 ThePat->InferAllTypes();
939 } catch (...) {
940 // If this pattern fragment is not supported by this target (no types can
941 // satisfy its constraints), just ignore it. If the bogus pattern is
942 // actually used by instructions, the type consistency error will be
943 // reported there.
944 }
945
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000946 // If debugging, print out the pattern fragment result.
Chris Lattner32707602005-09-08 23:22:48 +0000947 DEBUG(ThePat->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000948 }
949}
950
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000951/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
Chris Lattnerf1311842005-09-14 23:05:13 +0000952/// instruction input. Return true if this is a real use.
953static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000954 std::map<std::string, TreePatternNode*> &InstInputs) {
955 // No name -> not interesting.
Chris Lattner7da852f2005-09-14 22:06:36 +0000956 if (Pat->getName().empty()) {
957 if (Pat->isLeaf()) {
958 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
959 if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
960 I->error("Input " + DI->getDef()->getName() + " must be named!");
961
962 }
Chris Lattnerf1311842005-09-14 23:05:13 +0000963 return false;
Chris Lattner7da852f2005-09-14 22:06:36 +0000964 }
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000965
966 Record *Rec;
967 if (Pat->isLeaf()) {
968 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
969 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
970 Rec = DI->getDef();
971 } else {
972 assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
973 Rec = Pat->getOperator();
974 }
975
Evan Cheng01f318b2005-12-14 02:21:57 +0000976 // SRCVALUE nodes are ignored.
977 if (Rec->getName() == "srcvalue")
978 return false;
979
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000980 TreePatternNode *&Slot = InstInputs[Pat->getName()];
981 if (!Slot) {
982 Slot = Pat;
983 } else {
984 Record *SlotRec;
985 if (Slot->isLeaf()) {
Chris Lattnerb9f01eb2005-09-16 00:29:46 +0000986 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000987 } else {
988 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
989 SlotRec = Slot->getOperator();
990 }
991
992 // Ensure that the inputs agree if we've already seen this input.
993 if (Rec != SlotRec)
994 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000995 if (Slot->getExtType() != Pat->getExtType())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000996 I->error("All $" + Pat->getName() + " inputs must agree with each other");
997 }
Chris Lattnerf1311842005-09-14 23:05:13 +0000998 return true;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000999}
1000
1001/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1002/// part of "I", the instruction), computing the set of inputs and outputs of
1003/// the pattern. Report errors if we see anything naughty.
1004void DAGISelEmitter::
1005FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1006 std::map<std::string, TreePatternNode*> &InstInputs,
1007 std::map<std::string, Record*> &InstResults) {
1008 if (Pat->isLeaf()) {
Chris Lattnerf1311842005-09-14 23:05:13 +00001009 bool isUse = HandleUse(I, Pat, InstInputs);
1010 if (!isUse && Pat->getTransformFn())
1011 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001012 return;
1013 } else if (Pat->getOperator()->getName() != "set") {
1014 // If this is not a set, verify that the children nodes are not void typed,
1015 // and recurse.
1016 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001017 if (Pat->getChild(i)->getExtType() == MVT::isVoid)
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001018 I->error("Cannot have void nodes inside of patterns!");
1019 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults);
1020 }
1021
1022 // If this is a non-leaf node with no children, treat it basically as if
1023 // it were a leaf. This handles nodes like (imm).
Chris Lattnerf1311842005-09-14 23:05:13 +00001024 bool isUse = false;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001025 if (Pat->getNumChildren() == 0)
Chris Lattnerf1311842005-09-14 23:05:13 +00001026 isUse = HandleUse(I, Pat, InstInputs);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001027
Chris Lattnerf1311842005-09-14 23:05:13 +00001028 if (!isUse && Pat->getTransformFn())
1029 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001030 return;
1031 }
1032
1033 // Otherwise, this is a set, validate and collect instruction results.
1034 if (Pat->getNumChildren() == 0)
1035 I->error("set requires operands!");
1036 else if (Pat->getNumChildren() & 1)
1037 I->error("set requires an even number of operands");
1038
Chris Lattnerf1311842005-09-14 23:05:13 +00001039 if (Pat->getTransformFn())
1040 I->error("Cannot specify a transform function on a set node!");
1041
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001042 // Check the set destinations.
1043 unsigned NumValues = Pat->getNumChildren()/2;
1044 for (unsigned i = 0; i != NumValues; ++i) {
1045 TreePatternNode *Dest = Pat->getChild(i);
1046 if (!Dest->isLeaf())
Evan Cheng86217892005-12-12 19:37:43 +00001047 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001048
1049 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1050 if (!Val)
Evan Cheng86217892005-12-12 19:37:43 +00001051 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001052
Evan Cheng86217892005-12-12 19:37:43 +00001053 if (!Val->getDef()->isSubClassOf("RegisterClass") &&
1054 !Val->getDef()->isSubClassOf("Register"))
1055 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001056 if (Dest->getName().empty())
1057 I->error("set destination must have a name!");
1058 if (InstResults.count(Dest->getName()))
1059 I->error("cannot set '" + Dest->getName() +"' multiple times");
1060 InstResults[Dest->getName()] = Val->getDef();
1061
1062 // Verify and collect info from the computation.
1063 FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
1064 InstInputs, InstResults);
1065 }
1066}
1067
Evan Chengdd304dd2005-12-05 23:08:55 +00001068/// NodeHasChain - return true if TreePatternNode has the property
1069/// 'hasChain', meaning it reads a ctrl-flow chain operand and writes
1070/// a chain result.
1071static bool NodeHasChain(TreePatternNode *N, DAGISelEmitter &ISE)
1072{
1073 if (N->isLeaf()) return false;
1074 Record *Operator = N->getOperator();
1075 if (!Operator->isSubClassOf("SDNode")) return false;
1076
1077 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
1078 return NodeInfo.hasProperty(SDNodeInfo::SDNPHasChain);
1079}
1080
1081static bool PatternHasCtrlDep(TreePatternNode *N, DAGISelEmitter &ISE)
1082{
1083 if (NodeHasChain(N, ISE))
1084 return true;
1085 else {
1086 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1087 TreePatternNode *Child = N->getChild(i);
1088 if (PatternHasCtrlDep(Child, ISE))
1089 return true;
1090 }
1091 }
1092
1093 return false;
1094}
1095
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001096
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001097/// ParseInstructions - Parse all of the instructions, inlining and resolving
1098/// any fragments involved. This populates the Instructions list with fully
1099/// resolved instructions.
1100void DAGISelEmitter::ParseInstructions() {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001101 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1102
1103 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001104 ListInit *LI = 0;
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001105
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001106 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1107 LI = Instrs[i]->getValueAsListInit("Pattern");
1108
1109 // If there is no pattern, only collect minimal information about the
1110 // instruction for its operand list. We have to assume that there is one
1111 // result, as we have no detailed info.
1112 if (!LI || LI->getSize() == 0) {
Nate Begemanddb39542005-12-01 00:06:14 +00001113 std::vector<Record*> Results;
1114 std::vector<Record*> Operands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001115
1116 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
1117
1118 // Doesn't even define a result?
1119 if (InstInfo.OperandList.size() == 0)
1120 continue;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001121
1122 // FIXME: temporary hack...
1123 if (InstInfo.isReturn || InstInfo.isBranch || InstInfo.isCall ||
1124 InstInfo.isStore) {
1125 // These produce no results
1126 for (unsigned j = 0, e = InstInfo.OperandList.size(); j != e; ++j)
1127 Operands.push_back(InstInfo.OperandList[j].Rec);
1128 } else {
1129 // Assume the first operand is the result.
1130 Results.push_back(InstInfo.OperandList[0].Rec);
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001131
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001132 // The rest are inputs.
1133 for (unsigned j = 1, e = InstInfo.OperandList.size(); j != e; ++j)
1134 Operands.push_back(InstInfo.OperandList[j].Rec);
1135 }
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001136
1137 // Create and insert the instruction.
1138 Instructions.insert(std::make_pair(Instrs[i],
Nate Begemanddb39542005-12-01 00:06:14 +00001139 DAGInstruction(0, Results, Operands)));
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001140 continue; // no pattern.
1141 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001142
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001143 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001144 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001145 // Inline pattern fragments into it.
Chris Lattner32707602005-09-08 23:22:48 +00001146 I->InlinePatternFragments();
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001147
Chris Lattner95f6b762005-09-08 23:26:30 +00001148 // Infer as many types as possible. If we cannot infer all of them, we can
1149 // never do anything with this instruction pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001150 if (!I->InferAllTypes())
Chris Lattner32707602005-09-08 23:22:48 +00001151 I->error("Could not infer all types in pattern!");
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001152
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001153 // InstInputs - Keep track of all of the inputs of the instruction, along
1154 // with the record they are declared as.
1155 std::map<std::string, TreePatternNode*> InstInputs;
1156
1157 // InstResults - Keep track of all the virtual registers that are 'set'
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001158 // in the instruction, including what reg class they are.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001159 std::map<std::string, Record*> InstResults;
1160
Chris Lattner1f39e292005-09-14 00:09:24 +00001161 // Verify that the top-level forms in the instruction are of void type, and
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001162 // fill in the InstResults map.
Chris Lattner1f39e292005-09-14 00:09:24 +00001163 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1164 TreePatternNode *Pat = I->getTree(j);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001165 if (Pat->getExtType() != MVT::isVoid)
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001166 I->error("Top-level forms in instruction pattern should have"
1167 " void types");
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001168
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001169 // Find inputs and outputs, and verify the structure of the uses/defs.
1170 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults);
Chris Lattner1f39e292005-09-14 00:09:24 +00001171 }
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001172
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001173 // Now that we have inputs and outputs of the pattern, inspect the operands
1174 // list for the instruction. This determines the order that operands are
1175 // added to the machine instruction the node corresponds to.
1176 unsigned NumResults = InstResults.size();
Chris Lattner39e8af92005-09-14 18:19:25 +00001177
1178 // Parse the operands list from the (ops) list, validating it.
1179 std::vector<std::string> &Args = I->getArgList();
1180 assert(Args.empty() && "Args list should still be empty here!");
1181 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1182
1183 // Check that all of the results occur first in the list.
Nate Begemanddb39542005-12-01 00:06:14 +00001184 std::vector<Record*> Results;
Chris Lattner39e8af92005-09-14 18:19:25 +00001185 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattner3a7319d2005-09-14 21:04:12 +00001186 if (i == CGI.OperandList.size())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001187 I->error("'" + InstResults.begin()->first +
1188 "' set but does not appear in operand list!");
Chris Lattner39e8af92005-09-14 18:19:25 +00001189 const std::string &OpName = CGI.OperandList[i].Name;
Chris Lattner39e8af92005-09-14 18:19:25 +00001190
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001191 // Check that it exists in InstResults.
1192 Record *R = InstResults[OpName];
Chris Lattner39e8af92005-09-14 18:19:25 +00001193 if (R == 0)
1194 I->error("Operand $" + OpName + " should be a set destination: all "
1195 "outputs must occur before inputs in operand list!");
1196
1197 if (CGI.OperandList[i].Rec != R)
1198 I->error("Operand $" + OpName + " class mismatch!");
1199
Chris Lattnerae6d8282005-09-15 21:51:12 +00001200 // Remember the return type.
Nate Begemanddb39542005-12-01 00:06:14 +00001201 Results.push_back(CGI.OperandList[i].Rec);
Chris Lattnerae6d8282005-09-15 21:51:12 +00001202
Chris Lattner39e8af92005-09-14 18:19:25 +00001203 // Okay, this one checks out.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001204 InstResults.erase(OpName);
1205 }
1206
Chris Lattner0b592252005-09-14 21:59:34 +00001207 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1208 // the copy while we're checking the inputs.
1209 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
Chris Lattnerb0276202005-09-14 22:55:26 +00001210
1211 std::vector<TreePatternNode*> ResultNodeOperands;
Nate Begemanddb39542005-12-01 00:06:14 +00001212 std::vector<Record*> Operands;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001213 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1214 const std::string &OpName = CGI.OperandList[i].Name;
1215 if (OpName.empty())
1216 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1217
Chris Lattner0b592252005-09-14 21:59:34 +00001218 if (!InstInputsCheck.count(OpName))
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001219 I->error("Operand $" + OpName +
1220 " does not appear in the instruction pattern");
Chris Lattner0b592252005-09-14 21:59:34 +00001221 TreePatternNode *InVal = InstInputsCheck[OpName];
Chris Lattnerb0276202005-09-14 22:55:26 +00001222 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Nate Begemanddb39542005-12-01 00:06:14 +00001223
1224 if (InVal->isLeaf() &&
1225 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1226 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Evan Cheng0fc71982005-12-08 02:00:36 +00001227 if (CGI.OperandList[i].Rec != InRec &&
1228 !InRec->isSubClassOf("ComplexPattern"))
Nate Begemanddb39542005-12-01 00:06:14 +00001229 I->error("Operand $" + OpName +
Evan Cheng0fc71982005-12-08 02:00:36 +00001230 "'s register class disagrees between the operand and pattern");
Nate Begemanddb39542005-12-01 00:06:14 +00001231 }
1232 Operands.push_back(CGI.OperandList[i].Rec);
Chris Lattnerb0276202005-09-14 22:55:26 +00001233
Chris Lattner2175c182005-09-14 23:01:59 +00001234 // Construct the result for the dest-pattern operand list.
1235 TreePatternNode *OpNode = InVal->clone();
1236
1237 // No predicate is useful on the result.
1238 OpNode->setPredicateFn("");
1239
1240 // Promote the xform function to be an explicit node if set.
1241 if (Record *Xform = OpNode->getTransformFn()) {
1242 OpNode->setTransformFn(0);
1243 std::vector<TreePatternNode*> Children;
1244 Children.push_back(OpNode);
1245 OpNode = new TreePatternNode(Xform, Children);
1246 }
1247
1248 ResultNodeOperands.push_back(OpNode);
Chris Lattner39e8af92005-09-14 18:19:25 +00001249 }
1250
Chris Lattner0b592252005-09-14 21:59:34 +00001251 if (!InstInputsCheck.empty())
1252 I->error("Input operand $" + InstInputsCheck.begin()->first +
1253 " occurs in pattern but not in operands list!");
Chris Lattnerb0276202005-09-14 22:55:26 +00001254
1255 TreePatternNode *ResultPattern =
1256 new TreePatternNode(I->getRecord(), ResultNodeOperands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001257
1258 // Create and insert the instruction.
Nate Begemanddb39542005-12-01 00:06:14 +00001259 DAGInstruction TheInst(I, Results, Operands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001260 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1261
1262 // Use a temporary tree pattern to infer all types and make sure that the
1263 // constructed result is correct. This depends on the instruction already
1264 // being inserted into the Instructions map.
Chris Lattneredbd8712005-10-21 01:19:59 +00001265 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattnera28aec12005-09-15 22:23:50 +00001266 Temp.InferAllTypes();
1267
1268 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1269 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Chris Lattnerb0276202005-09-14 22:55:26 +00001270
Chris Lattner32707602005-09-08 23:22:48 +00001271 DEBUG(I->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001272 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001273
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001274 // If we can, convert the instructions to be patterns that are matched!
Chris Lattnerae5b3502005-09-15 21:57:35 +00001275 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1276 E = Instructions.end(); II != E; ++II) {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001277 DAGInstruction &TheInst = II->second;
1278 TreePattern *I = TheInst.getPattern();
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001279 if (I == 0) continue; // No pattern.
Evan Chengdd304dd2005-12-05 23:08:55 +00001280
Chris Lattner1f39e292005-09-14 00:09:24 +00001281 if (I->getNumTrees() != 1) {
1282 std::cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1283 continue;
1284 }
1285 TreePatternNode *Pattern = I->getTree(0);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001286 TreePatternNode *SrcPattern;
1287 if (TheInst.getNumResults() == 0) {
1288 SrcPattern = Pattern;
1289 } else {
1290 if (Pattern->getOperator()->getName() != "set")
1291 continue; // Not a set (store or something?)
Chris Lattner1f39e292005-09-14 00:09:24 +00001292
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001293 if (Pattern->getNumChildren() != 2)
1294 continue; // Not a set of a single value (not handled so far)
1295
1296 SrcPattern = Pattern->getChild(1)->clone();
1297 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001298
1299 std::string Reason;
1300 if (!SrcPattern->canPatternMatch(Reason, *this))
1301 I->error("Instruction can never match: " + Reason);
1302
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001303 TreePatternNode *DstPattern = TheInst.getResultPattern();
Chris Lattner1f39e292005-09-14 00:09:24 +00001304 PatternsToMatch.push_back(std::make_pair(SrcPattern, DstPattern));
Evan Chengdd304dd2005-12-05 23:08:55 +00001305
1306 if (PatternHasCtrlDep(Pattern, *this)) {
1307 Record *Instr = II->first;
1308 CodeGenInstruction &InstInfo = Target.getInstruction(Instr->getName());
1309 InstInfo.hasCtrlDep = true;
1310 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001311 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001312}
1313
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001314void DAGISelEmitter::ParsePatterns() {
Chris Lattnerabbb6052005-09-15 21:42:00 +00001315 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001316
Chris Lattnerabbb6052005-09-15 21:42:00 +00001317 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001318 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
Chris Lattneredbd8712005-10-21 01:19:59 +00001319 TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001320
Chris Lattnerabbb6052005-09-15 21:42:00 +00001321 // Inline pattern fragments into it.
1322 Pattern->InlinePatternFragments();
1323
1324 // Infer as many types as possible. If we cannot infer all of them, we can
1325 // never do anything with this pattern: report it to the user.
1326 if (!Pattern->InferAllTypes())
1327 Pattern->error("Could not infer all types in pattern!");
Chris Lattner09c03392005-11-17 17:43:52 +00001328
1329 // Validate that the input pattern is correct.
1330 {
1331 std::map<std::string, TreePatternNode*> InstInputs;
1332 std::map<std::string, Record*> InstResults;
1333 FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
1334 InstInputs, InstResults);
1335 }
Chris Lattnerabbb6052005-09-15 21:42:00 +00001336
1337 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1338 if (LI->getSize() == 0) continue; // no pattern.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001339
1340 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001341 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
Chris Lattnerabbb6052005-09-15 21:42:00 +00001342
1343 // Inline pattern fragments into it.
1344 Result->InlinePatternFragments();
1345
1346 // Infer as many types as possible. If we cannot infer all of them, we can
1347 // never do anything with this pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001348 if (!Result->InferAllTypes())
Chris Lattnerae5b3502005-09-15 21:57:35 +00001349 Result->error("Could not infer all types in pattern result!");
Chris Lattnerabbb6052005-09-15 21:42:00 +00001350
1351 if (Result->getNumTrees() != 1)
1352 Result->error("Cannot handle instructions producing instructions "
1353 "with temporaries yet!");
Chris Lattnere97603f2005-09-28 19:27:25 +00001354
1355 std::string Reason;
1356 if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1357 Pattern->error("Pattern can never match: " + Reason);
1358
Chris Lattnerabbb6052005-09-15 21:42:00 +00001359 PatternsToMatch.push_back(std::make_pair(Pattern->getOnlyTree(),
1360 Result->getOnlyTree()));
1361 }
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001362}
1363
Chris Lattnere46e17b2005-09-29 19:28:10 +00001364/// CombineChildVariants - Given a bunch of permutations of each child of the
1365/// 'operator' node, put them together in all possible ways.
1366static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattneraf302912005-09-29 22:36:54 +00001367 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
Chris Lattnere46e17b2005-09-29 19:28:10 +00001368 std::vector<TreePatternNode*> &OutVariants,
1369 DAGISelEmitter &ISE) {
Chris Lattneraf302912005-09-29 22:36:54 +00001370 // Make sure that each operand has at least one variant to choose from.
1371 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1372 if (ChildVariants[i].empty())
1373 return;
1374
Chris Lattnere46e17b2005-09-29 19:28:10 +00001375 // The end result is an all-pairs construction of the resultant pattern.
1376 std::vector<unsigned> Idxs;
1377 Idxs.resize(ChildVariants.size());
1378 bool NotDone = true;
1379 while (NotDone) {
1380 // Create the variant and add it to the output list.
1381 std::vector<TreePatternNode*> NewChildren;
1382 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1383 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1384 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1385
1386 // Copy over properties.
1387 R->setName(Orig->getName());
1388 R->setPredicateFn(Orig->getPredicateFn());
1389 R->setTransformFn(Orig->getTransformFn());
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001390 R->setType(Orig->getExtType());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001391
1392 // If this pattern cannot every match, do not include it as a variant.
1393 std::string ErrString;
1394 if (!R->canPatternMatch(ErrString, ISE)) {
1395 delete R;
1396 } else {
1397 bool AlreadyExists = false;
1398
1399 // Scan to see if this pattern has already been emitted. We can get
1400 // duplication due to things like commuting:
1401 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1402 // which are the same pattern. Ignore the dups.
1403 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1404 if (R->isIsomorphicTo(OutVariants[i])) {
1405 AlreadyExists = true;
1406 break;
1407 }
1408
1409 if (AlreadyExists)
1410 delete R;
1411 else
1412 OutVariants.push_back(R);
1413 }
1414
1415 // Increment indices to the next permutation.
1416 NotDone = false;
1417 // Look for something we can increment without causing a wrap-around.
1418 for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1419 if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1420 NotDone = true; // Found something to increment.
1421 break;
1422 }
1423 Idxs[IdxsIdx] = 0;
1424 }
1425 }
1426}
1427
Chris Lattneraf302912005-09-29 22:36:54 +00001428/// CombineChildVariants - A helper function for binary operators.
1429///
1430static void CombineChildVariants(TreePatternNode *Orig,
1431 const std::vector<TreePatternNode*> &LHS,
1432 const std::vector<TreePatternNode*> &RHS,
1433 std::vector<TreePatternNode*> &OutVariants,
1434 DAGISelEmitter &ISE) {
1435 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1436 ChildVariants.push_back(LHS);
1437 ChildVariants.push_back(RHS);
1438 CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1439}
1440
1441
1442static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1443 std::vector<TreePatternNode *> &Children) {
1444 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1445 Record *Operator = N->getOperator();
1446
1447 // Only permit raw nodes.
1448 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1449 N->getTransformFn()) {
1450 Children.push_back(N);
1451 return;
1452 }
1453
1454 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1455 Children.push_back(N->getChild(0));
1456 else
1457 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1458
1459 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1460 Children.push_back(N->getChild(1));
1461 else
1462 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1463}
1464
Chris Lattnere46e17b2005-09-29 19:28:10 +00001465/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1466/// the (potentially recursive) pattern by using algebraic laws.
1467///
1468static void GenerateVariantsOf(TreePatternNode *N,
1469 std::vector<TreePatternNode*> &OutVariants,
1470 DAGISelEmitter &ISE) {
1471 // We cannot permute leaves.
1472 if (N->isLeaf()) {
1473 OutVariants.push_back(N);
1474 return;
1475 }
1476
1477 // Look up interesting info about the node.
1478 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
1479
1480 // If this node is associative, reassociate.
Chris Lattneraf302912005-09-29 22:36:54 +00001481 if (NodeInfo.hasProperty(SDNodeInfo::SDNPAssociative)) {
1482 // Reassociate by pulling together all of the linked operators
1483 std::vector<TreePatternNode*> MaximalChildren;
1484 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1485
1486 // Only handle child sizes of 3. Otherwise we'll end up trying too many
1487 // permutations.
1488 if (MaximalChildren.size() == 3) {
1489 // Find the variants of all of our maximal children.
1490 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1491 GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1492 GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1493 GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1494
1495 // There are only two ways we can permute the tree:
1496 // (A op B) op C and A op (B op C)
1497 // Within these forms, we can also permute A/B/C.
1498
1499 // Generate legal pair permutations of A/B/C.
1500 std::vector<TreePatternNode*> ABVariants;
1501 std::vector<TreePatternNode*> BAVariants;
1502 std::vector<TreePatternNode*> ACVariants;
1503 std::vector<TreePatternNode*> CAVariants;
1504 std::vector<TreePatternNode*> BCVariants;
1505 std::vector<TreePatternNode*> CBVariants;
1506 CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1507 CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1508 CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1509 CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1510 CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1511 CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1512
1513 // Combine those into the result: (x op x) op x
1514 CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1515 CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1516 CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1517 CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1518 CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1519 CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1520
1521 // Combine those into the result: x op (x op x)
1522 CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1523 CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1524 CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1525 CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1526 CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1527 CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1528 return;
1529 }
1530 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00001531
1532 // Compute permutations of all children.
1533 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1534 ChildVariants.resize(N->getNumChildren());
1535 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1536 GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1537
1538 // Build all permutations based on how the children were formed.
1539 CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1540
1541 // If this node is commutative, consider the commuted order.
1542 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
1543 assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
Chris Lattneraf302912005-09-29 22:36:54 +00001544 // Consider the commuted order.
1545 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1546 OutVariants, ISE);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001547 }
1548}
1549
1550
Chris Lattnere97603f2005-09-28 19:27:25 +00001551// GenerateVariants - Generate variants. For example, commutative patterns can
1552// match multiple ways. Add them to PatternsToMatch as well.
1553void DAGISelEmitter::GenerateVariants() {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001554
1555 DEBUG(std::cerr << "Generating instruction variants.\n");
1556
1557 // Loop over all of the patterns we've collected, checking to see if we can
1558 // generate variants of the instruction, through the exploitation of
1559 // identities. This permits the target to provide agressive matching without
1560 // the .td file having to contain tons of variants of instructions.
1561 //
1562 // Note that this loop adds new patterns to the PatternsToMatch list, but we
1563 // intentionally do not reconsider these. Any variants of added patterns have
1564 // already been added.
1565 //
1566 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1567 std::vector<TreePatternNode*> Variants;
1568 GenerateVariantsOf(PatternsToMatch[i].first, Variants, *this);
1569
1570 assert(!Variants.empty() && "Must create at least original variant!");
Chris Lattnere46e17b2005-09-29 19:28:10 +00001571 Variants.erase(Variants.begin()); // Remove the original pattern.
1572
1573 if (Variants.empty()) // No variants for this pattern.
1574 continue;
1575
1576 DEBUG(std::cerr << "FOUND VARIANTS OF: ";
1577 PatternsToMatch[i].first->dump();
1578 std::cerr << "\n");
1579
1580 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1581 TreePatternNode *Variant = Variants[v];
1582
1583 DEBUG(std::cerr << " VAR#" << v << ": ";
1584 Variant->dump();
1585 std::cerr << "\n");
1586
1587 // Scan to see if an instruction or explicit pattern already matches this.
1588 bool AlreadyExists = false;
1589 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1590 // Check to see if this variant already exists.
1591 if (Variant->isIsomorphicTo(PatternsToMatch[p].first)) {
1592 DEBUG(std::cerr << " *** ALREADY EXISTS, ignoring variant.\n");
1593 AlreadyExists = true;
1594 break;
1595 }
1596 }
1597 // If we already have it, ignore the variant.
1598 if (AlreadyExists) continue;
1599
1600 // Otherwise, add it to the list of patterns we have.
1601 PatternsToMatch.push_back(std::make_pair(Variant,
1602 PatternsToMatch[i].second));
1603 }
1604
1605 DEBUG(std::cerr << "\n");
1606 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001607}
1608
Chris Lattner7cf2fe62005-09-28 20:58:06 +00001609
Evan Cheng0fc71982005-12-08 02:00:36 +00001610// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
1611// ComplexPattern.
1612static bool NodeIsComplexPattern(TreePatternNode *N)
1613{
1614 return (N->isLeaf() &&
1615 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1616 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1617 isSubClassOf("ComplexPattern"));
1618}
1619
1620// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
1621// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
1622static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
1623 DAGISelEmitter &ISE)
1624{
1625 if (N->isLeaf() &&
1626 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1627 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1628 isSubClassOf("ComplexPattern")) {
1629 return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
1630 ->getDef());
1631 }
1632 return NULL;
1633}
1634
Chris Lattner05814af2005-09-28 17:57:56 +00001635/// getPatternSize - Return the 'size' of this pattern. We want to match large
1636/// patterns before small ones. This is used to determine the size of a
1637/// pattern.
Evan Cheng0fc71982005-12-08 02:00:36 +00001638static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001639 assert(isExtIntegerVT(P->getExtType()) ||
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001640 isExtFloatingPointVT(P->getExtType()) ||
1641 P->getExtType() == MVT::isVoid && "Not a valid pattern node to size!");
Chris Lattner05814af2005-09-28 17:57:56 +00001642 unsigned Size = 1; // The node itself.
Evan Cheng0fc71982005-12-08 02:00:36 +00001643
1644 // FIXME: This is a hack to statically increase the priority of patterns
1645 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
1646 // Later we can allow complexity / cost for each pattern to be (optionally)
1647 // specified. To get best possible pattern match we'll need to dynamically
1648 // calculate the complexity of all patterns a dag can potentially map to.
1649 const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
1650 if (AM)
1651 Size += AM->getNumOperands();
1652
Chris Lattner05814af2005-09-28 17:57:56 +00001653 // Count children in the count if they are also nodes.
1654 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
1655 TreePatternNode *Child = P->getChild(i);
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001656 if (!Child->isLeaf() && Child->getExtType() != MVT::Other)
Evan Cheng0fc71982005-12-08 02:00:36 +00001657 Size += getPatternSize(Child, ISE);
1658 else if (Child->isLeaf()) {
1659 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
1660 ++Size; // Matches a ConstantSDNode.
1661 else if (NodeIsComplexPattern(Child))
1662 Size += getPatternSize(Child, ISE);
Chris Lattner2f041d42005-10-19 04:41:05 +00001663 }
Chris Lattner05814af2005-09-28 17:57:56 +00001664 }
1665
1666 return Size;
1667}
1668
1669/// getResultPatternCost - Compute the number of instructions for this pattern.
1670/// This is a temporary hack. We should really include the instruction
1671/// latencies in this calculation.
1672static unsigned getResultPatternCost(TreePatternNode *P) {
1673 if (P->isLeaf()) return 0;
1674
1675 unsigned Cost = P->getOperator()->isSubClassOf("Instruction");
1676 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
1677 Cost += getResultPatternCost(P->getChild(i));
1678 return Cost;
1679}
1680
1681// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
1682// In particular, we want to match maximal patterns first and lowest cost within
1683// a particular complexity first.
1684struct PatternSortingPredicate {
Evan Cheng0fc71982005-12-08 02:00:36 +00001685 PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
1686 DAGISelEmitter &ISE;
1687
Chris Lattner05814af2005-09-28 17:57:56 +00001688 bool operator()(DAGISelEmitter::PatternToMatch *LHS,
1689 DAGISelEmitter::PatternToMatch *RHS) {
Evan Cheng0fc71982005-12-08 02:00:36 +00001690 unsigned LHSSize = getPatternSize(LHS->first, ISE);
1691 unsigned RHSSize = getPatternSize(RHS->first, ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00001692 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
1693 if (LHSSize < RHSSize) return false;
1694
1695 // If the patterns have equal complexity, compare generated instruction cost
1696 return getResultPatternCost(LHS->second) <getResultPatternCost(RHS->second);
1697 }
1698};
1699
Nate Begeman6510b222005-12-01 04:51:06 +00001700/// getRegisterValueType - Look up and return the first ValueType of specified
1701/// RegisterClass record
Evan Cheng66a48bb2005-12-01 00:18:45 +00001702static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +00001703 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
1704 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +00001705 return MVT::Other;
1706}
1707
Chris Lattner72fe91c2005-09-24 00:40:24 +00001708
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001709/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
1710/// type information from it.
1711static void RemoveAllTypes(TreePatternNode *N) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001712 N->setType(MVT::isUnknown);
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001713 if (!N->isLeaf())
1714 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1715 RemoveAllTypes(N->getChild(i));
1716}
Chris Lattner72fe91c2005-09-24 00:40:24 +00001717
Chris Lattner0614b622005-11-02 06:49:14 +00001718Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
1719 Record *N = Records.getDef(Name);
1720 assert(N && N->isSubClassOf("SDNode") && "Bad argument");
1721 return N;
1722}
1723
Evan Chengb915f312005-12-09 22:45:35 +00001724class PatternCodeEmitter {
1725private:
1726 DAGISelEmitter &ISE;
1727
1728 // LHS of the pattern being matched
1729 TreePatternNode *LHS;
1730 unsigned PatternNo;
1731 std::ostream &OS;
1732 // Node to name mapping
1733 std::map<std::string,std::string> VariableMap;
Evan Chengb915f312005-12-09 22:45:35 +00001734 // Names of all the folded nodes which produce chains.
1735 std::vector<std::string> FoldedChains;
Evan Cheng86217892005-12-12 19:37:43 +00001736 bool FoundChain;
Evan Chengb915f312005-12-09 22:45:35 +00001737 bool InFlag;
1738 unsigned TmpNo;
1739
1740public:
1741 PatternCodeEmitter(DAGISelEmitter &ise, TreePatternNode *lhs,
1742 unsigned PatNum, std::ostream &os) :
1743 ISE(ise), LHS(lhs), PatternNo(PatNum), OS(os),
Evan Cheng86217892005-12-12 19:37:43 +00001744 FoundChain(false), InFlag(false), TmpNo(0) {};
Evan Chengb915f312005-12-09 22:45:35 +00001745
1746 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
1747 /// if the match fails. At this point, we already know that the opcode for N
1748 /// matches, and the SDNode for the result has the RootName specified name.
1749 void EmitMatchCode(TreePatternNode *N, const std::string &RootName,
1750 bool isRoot = false) {
1751 if (N->isLeaf()) {
1752 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1753 OS << " if (cast<ConstantSDNode>(" << RootName
1754 << ")->getSignExtended() != " << II->getValue() << ")\n"
1755 << " goto P" << PatternNo << "Fail;\n";
1756 return;
1757 } else if (!NodeIsComplexPattern(N)) {
1758 assert(0 && "Cannot match this as a leaf value!");
1759 abort();
1760 }
1761 }
1762
1763 // If this node has a name associated with it, capture it in VariableMap. If
1764 // we already saw this in the pattern, emit code to verify dagness.
1765 if (!N->getName().empty()) {
1766 std::string &VarMapEntry = VariableMap[N->getName()];
1767 if (VarMapEntry.empty()) {
1768 VarMapEntry = RootName;
1769 } else {
1770 // If we get here, this is a second reference to a specific name. Since
1771 // we already have checked that the first reference is valid, we don't
1772 // have to recursively match it, just check that it's the same as the
1773 // previously named thing.
1774 OS << " if (" << VarMapEntry << " != " << RootName
1775 << ") goto P" << PatternNo << "Fail;\n";
1776 return;
1777 }
1778 }
1779
1780
1781 // Emit code to load the child nodes and match their contents recursively.
1782 unsigned OpNo = 0;
Evan Cheng86217892005-12-12 19:37:43 +00001783 bool HasChain = NodeHasChain(N, ISE);
1784 if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00001785 OpNo = 1;
1786 if (!isRoot) {
Evan Cheng1129e872005-12-10 00:09:17 +00001787 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(N->getOperator());
Evan Chengb915f312005-12-09 22:45:35 +00001788 OS << " if (!" << RootName << ".hasOneUse()) goto P"
1789 << PatternNo << "Fail; // Multiple uses of actual result?\n";
1790 OS << " if (CodeGenMap.count(" << RootName
Evan Cheng1129e872005-12-10 00:09:17 +00001791 << ".getValue(" << CInfo.getNumResults() << "))) goto P"
Evan Chengb915f312005-12-09 22:45:35 +00001792 << PatternNo << "Fail; // Already selected for a chain use?\n";
1793 }
Evan Chengb915f312005-12-09 22:45:35 +00001794 }
1795
1796 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
1797 OS << " SDOperand " << RootName << OpNo <<" = " << RootName
1798 << ".getOperand(" << OpNo << ");\n";
1799 TreePatternNode *Child = N->getChild(i);
1800
1801 if (!Child->isLeaf()) {
1802 // If it's not a leaf, recursively match.
1803 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(Child->getOperator());
1804 OS << " if (" << RootName << OpNo << ".getOpcode() != "
1805 << CInfo.getEnumName() << ") goto P" << PatternNo << "Fail;\n";
1806 EmitMatchCode(Child, RootName + utostr(OpNo));
1807 if (NodeHasChain(Child, ISE))
1808 FoldedChains.push_back(RootName + utostr(OpNo));
1809 } else {
1810 // If this child has a name associated with it, capture it in VarMap. If
1811 // we already saw this in the pattern, emit code to verify dagness.
1812 if (!Child->getName().empty()) {
1813 std::string &VarMapEntry = VariableMap[Child->getName()];
1814 if (VarMapEntry.empty()) {
1815 VarMapEntry = RootName + utostr(OpNo);
1816 } else {
1817 // If we get here, this is a second reference to a specific name. Since
1818 // we already have checked that the first reference is valid, we don't
1819 // have to recursively match it, just check that it's the same as the
1820 // previously named thing.
1821 OS << " if (" << VarMapEntry << " != " << RootName << OpNo
1822 << ") goto P" << PatternNo << "Fail;\n";
1823 continue;
1824 }
1825 }
1826
1827 // Handle leaves of various types.
1828 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
1829 Record *LeafRec = DI->getDef();
1830 if (LeafRec->isSubClassOf("RegisterClass")) {
1831 // Handle register references. Nothing to do here.
1832 } else if (LeafRec->isSubClassOf("Register")) {
1833 if (!InFlag) {
1834 OS << " SDOperand InFlag = SDOperand(0,0);\n";
1835 InFlag = true;
1836 }
1837 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
1838 // Handle complex pattern. Nothing to do here.
Evan Cheng01f318b2005-12-14 02:21:57 +00001839 } else if (LeafRec->getName() == "srcvalue") {
1840 // Place holder for SRCVALUE nodes. Nothing to do here.
Evan Chengb915f312005-12-09 22:45:35 +00001841 } else if (LeafRec->isSubClassOf("ValueType")) {
1842 // Make sure this is the specified value type.
1843 OS << " if (cast<VTSDNode>(" << RootName << OpNo << ")->getVT() != "
1844 << "MVT::" << LeafRec->getName() << ") goto P" << PatternNo
1845 << "Fail;\n";
1846 } else if (LeafRec->isSubClassOf("CondCode")) {
1847 // Make sure this is the specified cond code.
1848 OS << " if (cast<CondCodeSDNode>(" << RootName << OpNo
1849 << ")->get() != " << "ISD::" << LeafRec->getName()
1850 << ") goto P" << PatternNo << "Fail;\n";
1851 } else {
1852 Child->dump();
1853 assert(0 && "Unknown leaf type!");
1854 }
1855 } else if (IntInit *II = dynamic_cast<IntInit*>(Child->getLeafValue())) {
1856 OS << " if (!isa<ConstantSDNode>(" << RootName << OpNo << ") ||\n"
1857 << " cast<ConstantSDNode>(" << RootName << OpNo
1858 << ")->getSignExtended() != " << II->getValue() << ")\n"
1859 << " goto P" << PatternNo << "Fail;\n";
1860 } else {
1861 Child->dump();
1862 assert(0 && "Unknown leaf type!");
1863 }
1864 }
1865 }
1866
Evan Cheng86217892005-12-12 19:37:43 +00001867 if (HasChain) {
1868 if (!FoundChain) {
1869 OS << " SDOperand Chain = " << RootName << ".getOperand(0);\n";
1870 FoundChain = true;
1871 }
1872 }
1873
Evan Chengb915f312005-12-09 22:45:35 +00001874 // If there is a node predicate for this, emit the call.
1875 if (!N->getPredicateFn().empty())
1876 OS << " if (!" << N->getPredicateFn() << "(" << RootName
1877 << ".Val)) goto P" << PatternNo << "Fail;\n";
1878 }
1879
1880 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
1881 /// we actually have to build a DAG!
1882 std::pair<unsigned, unsigned>
1883 EmitResultCode(TreePatternNode *N, bool isRoot = false) {
1884 // This is something selected from the pattern we matched.
1885 if (!N->getName().empty()) {
1886 assert(!isRoot && "Root of pattern cannot be a leaf!");
1887 std::string &Val = VariableMap[N->getName()];
1888 assert(!Val.empty() &&
1889 "Variable referenced but not defined and not caught earlier!");
1890 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
1891 // Already selected this operand, just return the tmpval.
1892 return std::make_pair(1, atoi(Val.c_str()+3));
1893 }
1894
1895 const ComplexPattern *CP;
1896 unsigned ResNo = TmpNo++;
1897 unsigned NumRes = 1;
1898 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
1899 switch (N->getType()) {
1900 default: assert(0 && "Unknown type for constant node!");
1901 case MVT::i1: OS << " bool Tmp"; break;
1902 case MVT::i8: OS << " unsigned char Tmp"; break;
1903 case MVT::i16: OS << " unsigned short Tmp"; break;
1904 case MVT::i32: OS << " unsigned Tmp"; break;
1905 case MVT::i64: OS << " uint64_t Tmp"; break;
1906 }
1907 OS << ResNo << "C = cast<ConstantSDNode>(" << Val << ")->getValue();\n";
1908 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetConstant(Tmp"
1909 << ResNo << "C, MVT::" << getEnumName(N->getType()) << ");\n";
1910 } else if (!N->isLeaf() && N->getOperator()->getName() == "tglobaladdr") {
1911 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Nate Begeman28a6b022005-12-10 02:36:00 +00001912 } else if (!N->isLeaf() && N->getOperator()->getName() == "tconstpool") {
1913 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
Evan Chengb915f312005-12-09 22:45:35 +00001914 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
1915 std::string Fn = CP->getSelectFunc();
1916 NumRes = CP->getNumOperands();
1917 OS << " SDOperand ";
1918 for (unsigned i = 0; i < NumRes; i++) {
1919 if (i != 0) OS << ", ";
1920 OS << "Tmp" << i + ResNo;
1921 }
1922 OS << ";\n";
1923 OS << " if (!" << Fn << "(" << Val;
1924 for (unsigned i = 0; i < NumRes; i++)
1925 OS << " , Tmp" << i + ResNo;
1926 OS << ")) goto P" << PatternNo << "Fail;\n";
1927 TmpNo = ResNo + NumRes;
1928 } else {
1929 OS << " SDOperand Tmp" << ResNo << " = Select(" << Val << ");\n";
1930 }
1931 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
1932 // value if used multiple times by this pattern result.
1933 Val = "Tmp"+utostr(ResNo);
1934 return std::make_pair(NumRes, ResNo);
1935 }
1936
1937 if (N->isLeaf()) {
1938 // If this is an explicit register reference, handle it.
1939 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
1940 unsigned ResNo = TmpNo++;
1941 if (DI->getDef()->isSubClassOf("Register")) {
1942 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getRegister("
1943 << ISE.getQualifiedName(DI->getDef()) << ", MVT::"
1944 << getEnumName(N->getType())
1945 << ");\n";
1946 return std::make_pair(1, ResNo);
1947 }
1948 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1949 unsigned ResNo = TmpNo++;
1950 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetConstant("
1951 << II->getValue() << ", MVT::"
1952 << getEnumName(N->getType())
1953 << ");\n";
1954 return std::make_pair(1, ResNo);
1955 }
1956
1957 N->dump();
1958 assert(0 && "Unknown leaf type!");
1959 return std::make_pair(1, ~0U);
1960 }
1961
1962 Record *Op = N->getOperator();
1963 if (Op->isSubClassOf("Instruction")) {
1964 // Determine operand emission order. Complex pattern first.
1965 std::vector<std::pair<unsigned, TreePatternNode*> > EmitOrder;
1966 std::vector<std::pair<unsigned, TreePatternNode*> >::iterator OI;
1967 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1968 TreePatternNode *Child = N->getChild(i);
1969 if (i == 0) {
1970 EmitOrder.push_back(std::make_pair(i, Child));
1971 OI = EmitOrder.begin();
1972 } else if (NodeIsComplexPattern(Child)) {
1973 OI = EmitOrder.insert(OI, std::make_pair(i, Child));
1974 } else {
1975 EmitOrder.push_back(std::make_pair(i, Child));
1976 }
1977 }
1978
1979 // Emit all of the operands.
1980 std::vector<std::pair<unsigned, unsigned> > NumTemps(EmitOrder.size());
1981 for (unsigned i = 0, e = EmitOrder.size(); i != e; ++i) {
1982 unsigned OpOrder = EmitOrder[i].first;
1983 TreePatternNode *Child = EmitOrder[i].second;
1984 std::pair<unsigned, unsigned> NumTemp = EmitResultCode(Child);
1985 NumTemps[OpOrder] = NumTemp;
1986 }
1987
1988 // List all the operands in the right order.
1989 std::vector<unsigned> Ops;
1990 for (unsigned i = 0, e = NumTemps.size(); i != e; i++) {
1991 for (unsigned j = 0; j < NumTemps[i].first; j++)
1992 Ops.push_back(NumTemps[i].second + j);
1993 }
1994
1995 CodeGenInstruction &II =
1996 ISE.getTargetInfo().getInstruction(Op->getName());
1997
1998 // Emit all the chain and CopyToReg stuff.
1999 if (II.hasCtrlDep)
Evan Cheng86217892005-12-12 19:37:43 +00002000 OS << " Chain = Select(Chain);\n";
Evan Chengb915f312005-12-09 22:45:35 +00002001 EmitCopyToRegs(LHS, "N", II.hasCtrlDep);
2002
2003 const DAGInstruction &Inst = ISE.getInstruction(Op);
2004 unsigned NumResults = Inst.getNumResults();
2005 unsigned ResNo = TmpNo++;
2006 if (!isRoot) {
2007 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetNode("
2008 << II.Namespace << "::" << II.TheDef->getName() << ", MVT::"
2009 << getEnumName(N->getType());
2010 unsigned LastOp = 0;
2011 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2012 LastOp = Ops[i];
2013 OS << ", Tmp" << LastOp;
2014 }
2015 OS << ");\n";
2016 if (II.hasCtrlDep) {
2017 // Must have at least one result
2018 OS << " Chain = Tmp" << LastOp << ".getValue("
2019 << NumResults << ");\n";
2020 }
2021 } else if (II.hasCtrlDep) {
2022 OS << " SDOperand Result = ";
2023 OS << "CurDAG->getTargetNode("
2024 << II.Namespace << "::" << II.TheDef->getName();
2025 if (NumResults > 0)
2026 OS << ", MVT::" << getEnumName(N->getType()); // TODO: multiple results?
2027 OS << ", MVT::Other";
2028 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2029 OS << ", Tmp" << Ops[i];
2030 OS << ", Chain";
2031 if (InFlag)
2032 OS << ", InFlag";
2033 OS << ");\n";
2034 if (NumResults != 0) {
Evan Cheng0e65b272005-12-12 23:45:21 +00002035 OS << " CodeGenMap[N.getValue(0)] = Result;\n";
Evan Chengb915f312005-12-09 22:45:35 +00002036 }
2037 OS << " Chain ";
2038 if (NodeHasChain(LHS, ISE))
Evan Cheng1129e872005-12-10 00:09:17 +00002039 OS << "= CodeGenMap[N.getValue(" << NumResults << ")] ";
Evan Chengb915f312005-12-09 22:45:35 +00002040 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Evan Cheng1129e872005-12-10 00:09:17 +00002041 OS << "= CodeGenMap[" << FoldedChains[j] << ".getValue("
2042 << NumResults << ")] ";
2043 OS << "= Result.getValue(" << NumResults << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002044 if (NumResults == 0)
2045 OS << " return Chain;\n";
2046 else
2047 OS << " return (N.ResNo) ? Chain : Result.getValue(0);\n";
2048 } else {
2049 // If this instruction is the root, and if there is only one use of it,
2050 // use SelectNodeTo instead of getTargetNode to avoid an allocation.
2051 OS << " if (N.Val->hasOneUse()) {\n";
2052 OS << " return CurDAG->SelectNodeTo(N.Val, "
2053 << II.Namespace << "::" << II.TheDef->getName() << ", MVT::"
2054 << getEnumName(N->getType());
2055 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2056 OS << ", Tmp" << Ops[i];
2057 if (InFlag)
2058 OS << ", InFlag";
2059 OS << ");\n";
2060 OS << " } else {\n";
2061 OS << " return CodeGenMap[N] = CurDAG->getTargetNode("
2062 << II.Namespace << "::" << II.TheDef->getName() << ", MVT::"
2063 << getEnumName(N->getType());
2064 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2065 OS << ", Tmp" << Ops[i];
2066 if (InFlag)
2067 OS << ", InFlag";
2068 OS << ");\n";
2069 OS << " }\n";
2070 }
2071 return std::make_pair(1, ResNo);
2072 } else if (Op->isSubClassOf("SDNodeXForm")) {
2073 assert(N->getNumChildren() == 1 && "node xform should have one child!");
2074 unsigned OpVal = EmitResultCode(N->getChild(0))
2075 .second;
2076
2077 unsigned ResNo = TmpNo++;
2078 OS << " SDOperand Tmp" << ResNo << " = Transform_" << Op->getName()
2079 << "(Tmp" << OpVal << ".Val);\n";
2080 if (isRoot) {
2081 OS << " CodeGenMap[N] = Tmp" << ResNo << ";\n";
2082 OS << " return Tmp" << ResNo << ";\n";
2083 }
2084 return std::make_pair(1, ResNo);
2085 } else {
2086 N->dump();
2087 assert(0 && "Unknown node in result pattern!");
2088 return std::make_pair(1, ~0U);
2089 }
2090 }
2091
2092 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat' and
2093 /// add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
2094 /// 'Pat' may be missing types. If we find an unresolved type to add a check
2095 /// for, this returns true otherwise false if Pat has all types.
2096 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
2097 const std::string &Prefix) {
2098 // Did we find one?
2099 if (!Pat->hasTypeSet()) {
2100 // Move a type over from 'other' to 'pat'.
2101 Pat->setType(Other->getType());
2102 OS << " if (" << Prefix << ".Val->getValueType(0) != MVT::"
2103 << getName(Pat->getType()) << ") goto P" << PatternNo << "Fail;\n";
2104 return true;
Evan Chengb915f312005-12-09 22:45:35 +00002105 }
2106
2107 unsigned OpNo = (unsigned) NodeHasChain(Pat, ISE);
2108 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
2109 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
2110 Prefix + utostr(OpNo)))
2111 return true;
2112 return false;
2113 }
2114
2115private:
2116 /// EmitCopyToRegs - Emit the flag operands for the DAG that is
2117 /// being built.
2118 void EmitCopyToRegs(TreePatternNode *N, const std::string &RootName,
2119 bool HasCtrlDep) {
2120 const CodeGenTarget &T = ISE.getTargetInfo();
2121 unsigned OpNo = (unsigned) NodeHasChain(N, ISE);
2122 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
2123 TreePatternNode *Child = N->getChild(i);
2124 if (!Child->isLeaf()) {
2125 EmitCopyToRegs(Child, RootName + utostr(OpNo), HasCtrlDep);
2126 } else {
2127 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2128 Record *RR = DI->getDef();
2129 if (RR->isSubClassOf("Register")) {
2130 MVT::ValueType RVT = getRegisterValueType(RR, T);
2131 if (HasCtrlDep) {
2132 OS << " SDOperand " << RootName << "CR" << i << ";\n";
2133 OS << " " << RootName << "CR" << i
2134 << " = CurDAG->getCopyToReg(Chain, CurDAG->getRegister("
2135 << ISE.getQualifiedName(RR) << ", MVT::"
2136 << getEnumName(RVT) << ")"
2137 << ", Select(" << RootName << OpNo << "), InFlag);\n";
2138 OS << " Chain = " << RootName << "CR" << i
2139 << ".getValue(0);\n";
2140 OS << " InFlag = " << RootName << "CR" << i
2141 << ".getValue(1);\n";
2142 } else {
2143 OS << " InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode()"
2144 << ", CurDAG->getRegister(" << ISE.getQualifiedName(RR)
2145 << ", MVT::" << getEnumName(RVT) << ")"
2146 << ", Select(" << RootName << OpNo
2147 << "), InFlag).getValue(1);\n";
2148 }
2149 }
2150 }
2151 }
2152 }
2153 }
2154};
2155
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002156/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
2157/// stream to match the pattern, and generate the code for the match if it
2158/// succeeds.
Chris Lattner3f7e9142005-09-23 20:52:47 +00002159void DAGISelEmitter::EmitCodeForPattern(PatternToMatch &Pattern,
2160 std::ostream &OS) {
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002161 static unsigned PatternCount = 0;
2162 unsigned PatternNo = PatternCount++;
2163 OS << " { // Pattern #" << PatternNo << ": ";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002164 Pattern.first->print(OS);
Chris Lattner05814af2005-09-28 17:57:56 +00002165 OS << "\n // Emits: ";
2166 Pattern.second->print(OS);
Chris Lattner3f7e9142005-09-23 20:52:47 +00002167 OS << "\n";
Evan Cheng0fc71982005-12-08 02:00:36 +00002168 OS << " // Pattern complexity = " << getPatternSize(Pattern.first, *this)
Chris Lattner05814af2005-09-28 17:57:56 +00002169 << " cost = " << getResultPatternCost(Pattern.second) << "\n";
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002170
Evan Chengb915f312005-12-09 22:45:35 +00002171 PatternCodeEmitter Emitter(*this, Pattern.first, PatternNo, OS);
2172
Chris Lattner8fc35682005-09-23 23:16:51 +00002173 // Emit the matcher, capturing named arguments in VariableMap.
Evan Chengb915f312005-12-09 22:45:35 +00002174 Emitter.EmitMatchCode(Pattern.first, "N", true /*the root*/);
2175
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002176 // TP - Get *SOME* tree pattern, we don't care which.
2177 TreePattern &TP = *PatternFragments.begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00002178
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002179 // At this point, we know that we structurally match the pattern, but the
2180 // types of the nodes may not match. Figure out the fewest number of type
2181 // comparisons we need to emit. For example, if there is only one integer
2182 // type supported by a target, there should be no type comparisons at all for
2183 // integer patterns!
2184 //
2185 // To figure out the fewest number of type checks needed, clone the pattern,
2186 // remove the types, then perform type inference on the pattern as a whole.
2187 // If there are unresolved types, emit an explicit check for those types,
2188 // apply the type to the tree, then rerun type inference. Iterate until all
2189 // types are resolved.
2190 //
2191 TreePatternNode *Pat = Pattern.first->clone();
2192 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00002193
2194 do {
2195 // Resolve/propagate as many types as possible.
2196 try {
2197 bool MadeChange = true;
2198 while (MadeChange)
2199 MadeChange = Pat->ApplyTypeConstraints(TP,true/*Ignore reg constraints*/);
2200 } catch (...) {
2201 assert(0 && "Error: could not find consistent types for something we"
2202 " already decided was ok!");
2203 abort();
2204 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002205
Chris Lattner7e82f132005-10-15 21:34:21 +00002206 // Insert a check for an unresolved type and add it to the tree. If we find
2207 // an unresolved type to add a check for, this returns true and we iterate,
2208 // otherwise we are done.
Evan Chengb915f312005-12-09 22:45:35 +00002209 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.first, "N"));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00002210
Evan Chengb915f312005-12-09 22:45:35 +00002211 Emitter.EmitResultCode(Pattern.second, true /*the root*/);
2212
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002213 delete Pat;
2214
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002215 OS << " }\n P" << PatternNo << "Fail:\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002216}
2217
Chris Lattner37481472005-09-26 21:59:35 +00002218
2219namespace {
2220 /// CompareByRecordName - An ordering predicate that implements less-than by
2221 /// comparing the names records.
2222 struct CompareByRecordName {
2223 bool operator()(const Record *LHS, const Record *RHS) const {
2224 // Sort by name first.
2225 if (LHS->getName() < RHS->getName()) return true;
2226 // If both names are equal, sort by pointer.
2227 return LHS->getName() == RHS->getName() && LHS < RHS;
2228 }
2229 };
2230}
2231
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002232void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002233 std::string InstNS = Target.inst_begin()->second.Namespace;
2234 if (!InstNS.empty()) InstNS += "::";
2235
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002236 // Emit boilerplate.
2237 OS << "// The main instruction selector code.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002238 << "SDOperand SelectCode(SDOperand N) {\n"
2239 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002240 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
2241 << "INSTRUCTION_LIST_END))\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002242 << " return N; // Already selected.\n\n"
Evan Cheng481c8e02005-12-12 23:22:48 +00002243 << " std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(N);\n"
2244 << " if (CGMI != CodeGenMap.end()) return CGMI->second;\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002245 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002246 << " default: break;\n"
2247 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002248 << " return N;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002249 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002250 << " case ISD::AssertZext: {\n"
2251 << " SDOperand Tmp0 = Select(N.getOperand(0));\n"
2252 << " if (!N.Val->hasOneUse()) CodeGenMap[N] = Tmp0;\n"
2253 << " return Tmp0;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002254 << " }\n"
2255 << " case ISD::TokenFactor:\n"
2256 << " if (N.getNumOperands() == 2) {\n"
2257 << " SDOperand Op0 = Select(N.getOperand(0));\n"
2258 << " SDOperand Op1 = Select(N.getOperand(1));\n"
2259 << " return CodeGenMap[N] =\n"
2260 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Op0, Op1);\n"
2261 << " } else {\n"
2262 << " std::vector<SDOperand> Ops;\n"
2263 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
2264 << " Ops.push_back(Select(N.getOperand(i)));\n"
2265 << " return CodeGenMap[N] = \n"
2266 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Ops);\n"
2267 << " }\n"
2268 << " case ISD::CopyFromReg: {\n"
2269 << " SDOperand Chain = Select(N.getOperand(0));\n"
2270 << " if (Chain == N.getOperand(0)) return N; // No change\n"
2271 << " SDOperand New = CurDAG->getCopyFromReg(Chain,\n"
2272 << " cast<RegisterSDNode>(N.getOperand(1))->getReg(),\n"
2273 << " N.Val->getValueType(0));\n"
2274 << " return New.getValue(N.ResNo);\n"
2275 << " }\n"
2276 << " case ISD::CopyToReg: {\n"
2277 << " SDOperand Chain = Select(N.getOperand(0));\n"
2278 << " SDOperand Reg = N.getOperand(1);\n"
2279 << " SDOperand Val = Select(N.getOperand(2));\n"
2280 << " return CodeGenMap[N] = \n"
2281 << " CurDAG->getNode(ISD::CopyToReg, MVT::Other,\n"
2282 << " Chain, Reg, Val);\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002283 << " }\n";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002284
Chris Lattner81303322005-09-23 19:36:15 +00002285 // Group the patterns by their top-level opcodes.
Chris Lattner37481472005-09-26 21:59:35 +00002286 std::map<Record*, std::vector<PatternToMatch*>,
2287 CompareByRecordName> PatternsByOpcode;
Evan Cheng0fc71982005-12-08 02:00:36 +00002288 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
2289 TreePatternNode *Node = PatternsToMatch[i].first;
2290 if (!Node->isLeaf()) {
2291 PatternsByOpcode[Node->getOperator()].push_back(&PatternsToMatch[i]);
Chris Lattner0614b622005-11-02 06:49:14 +00002292 } else {
Evan Cheng0fc71982005-12-08 02:00:36 +00002293 const ComplexPattern *CP;
Chris Lattner0614b622005-11-02 06:49:14 +00002294 if (IntInit *II =
Evan Cheng0fc71982005-12-08 02:00:36 +00002295 dynamic_cast<IntInit*>(Node->getLeafValue())) {
Chris Lattner0614b622005-11-02 06:49:14 +00002296 PatternsByOpcode[getSDNodeNamed("imm")].push_back(&PatternsToMatch[i]);
Evan Cheng0fc71982005-12-08 02:00:36 +00002297 } else if ((CP = NodeGetComplexPattern(Node, *this))) {
Evan Cheng3aa39f42005-12-08 02:14:08 +00002298 std::vector<Record*> OpNodes = CP->getRootNodes();
Evan Cheng0fc71982005-12-08 02:00:36 +00002299 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
2300 PatternsByOpcode[OpNodes[j]].insert(PatternsByOpcode[OpNodes[j]].begin(),
2301 &PatternsToMatch[i]);
2302 }
Chris Lattner0614b622005-11-02 06:49:14 +00002303 } else {
Evan Cheng76021f02005-11-29 18:44:58 +00002304 std::cerr << "Unrecognized opcode '";
Evan Cheng0fc71982005-12-08 02:00:36 +00002305 Node->dump();
Evan Cheng76021f02005-11-29 18:44:58 +00002306 std::cerr << "' on tree pattern '";
2307 std::cerr << PatternsToMatch[i].second->getOperator()->getName();
2308 std::cerr << "'!\n";
2309 exit(1);
Chris Lattner0614b622005-11-02 06:49:14 +00002310 }
2311 }
Evan Cheng0fc71982005-12-08 02:00:36 +00002312 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002313
Chris Lattner3f7e9142005-09-23 20:52:47 +00002314 // Loop over all of the case statements.
Chris Lattner37481472005-09-26 21:59:35 +00002315 for (std::map<Record*, std::vector<PatternToMatch*>,
2316 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2317 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
Chris Lattner81303322005-09-23 19:36:15 +00002318 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
2319 std::vector<PatternToMatch*> &Patterns = PBOI->second;
2320
2321 OS << " case " << OpcodeInfo.getEnumName() << ":\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002322
2323 // We want to emit all of the matching code now. However, we want to emit
2324 // the matches in order of minimal cost. Sort the patterns so the least
2325 // cost one is at the start.
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002326 std::stable_sort(Patterns.begin(), Patterns.end(),
Evan Cheng0fc71982005-12-08 02:00:36 +00002327 PatternSortingPredicate(*this));
Chris Lattner81303322005-09-23 19:36:15 +00002328
Chris Lattner3f7e9142005-09-23 20:52:47 +00002329 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
2330 EmitCodeForPattern(*Patterns[i], OS);
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002331 OS << " break;\n\n";
Chris Lattner81303322005-09-23 19:36:15 +00002332 }
2333
2334
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002335 OS << " } // end of big switch.\n\n"
2336 << " std::cerr << \"Cannot yet select: \";\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002337 << " N.Val->dump();\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002338 << " std::cerr << '\\n';\n"
2339 << " abort();\n"
2340 << "}\n";
2341}
2342
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002343void DAGISelEmitter::run(std::ostream &OS) {
2344 EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
2345 " target", OS);
2346
Chris Lattner1f39e292005-09-14 00:09:24 +00002347 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2348 << "// *** instruction selector class. These functions are really "
2349 << "methods.\n\n";
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002350
Chris Lattner296dfe32005-09-24 00:50:51 +00002351 OS << "// Instance var to keep track of multiply used nodes that have \n"
2352 << "// already been selected.\n"
2353 << "std::map<SDOperand, SDOperand> CodeGenMap;\n";
2354
Chris Lattnerca559d02005-09-08 21:03:01 +00002355 ParseNodeInfo();
Chris Lattner24eeeb82005-09-13 21:51:00 +00002356 ParseNodeTransforms(OS);
Evan Cheng0fc71982005-12-08 02:00:36 +00002357 ParseComplexPatterns();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002358 ParsePatternFragments(OS);
2359 ParseInstructions();
2360 ParsePatterns();
Chris Lattner3f7e9142005-09-23 20:52:47 +00002361
Chris Lattnere97603f2005-09-28 19:27:25 +00002362 // Generate variants. For example, commutative patterns can match
Chris Lattner3f7e9142005-09-23 20:52:47 +00002363 // multiple ways. Add them to PatternsToMatch as well.
Chris Lattnere97603f2005-09-28 19:27:25 +00002364 GenerateVariants();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002365
Chris Lattnere46e17b2005-09-29 19:28:10 +00002366
2367 DEBUG(std::cerr << "\n\nALL PATTERNS TO MATCH:\n\n";
2368 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
2369 std::cerr << "PATTERN: "; PatternsToMatch[i].first->dump();
2370 std::cerr << "\nRESULT: ";PatternsToMatch[i].second->dump();
2371 std::cerr << "\n";
2372 });
2373
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002374 // At this point, we have full information about the 'Patterns' we need to
2375 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002376 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002377 EmitInstructionSelector(OS);
2378
2379 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
2380 E = PatternFragments.end(); I != E; ++I)
2381 delete I->second;
2382 PatternFragments.clear();
2383
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002384 Instructions.clear();
2385}