blob: 3d64fa7bbc5b1eb0ab7169fbe7059e856f1d106c [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();
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000488 } else if (R->getName() == "node") {
489 // 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
976 TreePatternNode *&Slot = InstInputs[Pat->getName()];
977 if (!Slot) {
978 Slot = Pat;
979 } else {
980 Record *SlotRec;
981 if (Slot->isLeaf()) {
Chris Lattnerb9f01eb2005-09-16 00:29:46 +0000982 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000983 } else {
984 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
985 SlotRec = Slot->getOperator();
986 }
987
988 // Ensure that the inputs agree if we've already seen this input.
989 if (Rec != SlotRec)
990 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000991 if (Slot->getExtType() != Pat->getExtType())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000992 I->error("All $" + Pat->getName() + " inputs must agree with each other");
993 }
Chris Lattnerf1311842005-09-14 23:05:13 +0000994 return true;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000995}
996
997/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
998/// part of "I", the instruction), computing the set of inputs and outputs of
999/// the pattern. Report errors if we see anything naughty.
1000void DAGISelEmitter::
1001FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1002 std::map<std::string, TreePatternNode*> &InstInputs,
1003 std::map<std::string, Record*> &InstResults) {
1004 if (Pat->isLeaf()) {
Chris Lattnerf1311842005-09-14 23:05:13 +00001005 bool isUse = HandleUse(I, Pat, InstInputs);
1006 if (!isUse && Pat->getTransformFn())
1007 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001008 return;
1009 } else if (Pat->getOperator()->getName() != "set") {
1010 // If this is not a set, verify that the children nodes are not void typed,
1011 // and recurse.
1012 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001013 if (Pat->getChild(i)->getExtType() == MVT::isVoid)
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001014 I->error("Cannot have void nodes inside of patterns!");
1015 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults);
1016 }
1017
1018 // If this is a non-leaf node with no children, treat it basically as if
1019 // it were a leaf. This handles nodes like (imm).
Chris Lattnerf1311842005-09-14 23:05:13 +00001020 bool isUse = false;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001021 if (Pat->getNumChildren() == 0)
Chris Lattnerf1311842005-09-14 23:05:13 +00001022 isUse = HandleUse(I, Pat, InstInputs);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001023
Chris Lattnerf1311842005-09-14 23:05:13 +00001024 if (!isUse && Pat->getTransformFn())
1025 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001026 return;
1027 }
1028
1029 // Otherwise, this is a set, validate and collect instruction results.
1030 if (Pat->getNumChildren() == 0)
1031 I->error("set requires operands!");
1032 else if (Pat->getNumChildren() & 1)
1033 I->error("set requires an even number of operands");
1034
Chris Lattnerf1311842005-09-14 23:05:13 +00001035 if (Pat->getTransformFn())
1036 I->error("Cannot specify a transform function on a set node!");
1037
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001038 // Check the set destinations.
1039 unsigned NumValues = Pat->getNumChildren()/2;
1040 for (unsigned i = 0; i != NumValues; ++i) {
1041 TreePatternNode *Dest = Pat->getChild(i);
1042 if (!Dest->isLeaf())
1043 I->error("set destination should be a virtual register!");
1044
1045 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1046 if (!Val)
1047 I->error("set destination should be a virtual register!");
1048
1049 if (!Val->getDef()->isSubClassOf("RegisterClass"))
1050 I->error("set destination should be a virtual register!");
1051 if (Dest->getName().empty())
1052 I->error("set destination must have a name!");
1053 if (InstResults.count(Dest->getName()))
1054 I->error("cannot set '" + Dest->getName() +"' multiple times");
1055 InstResults[Dest->getName()] = Val->getDef();
1056
1057 // Verify and collect info from the computation.
1058 FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
1059 InstInputs, InstResults);
1060 }
1061}
1062
Evan Chengdd304dd2005-12-05 23:08:55 +00001063/// NodeHasChain - return true if TreePatternNode has the property
1064/// 'hasChain', meaning it reads a ctrl-flow chain operand and writes
1065/// a chain result.
1066static bool NodeHasChain(TreePatternNode *N, DAGISelEmitter &ISE)
1067{
1068 if (N->isLeaf()) return false;
1069 Record *Operator = N->getOperator();
1070 if (!Operator->isSubClassOf("SDNode")) return false;
1071
1072 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
1073 return NodeInfo.hasProperty(SDNodeInfo::SDNPHasChain);
1074}
1075
1076static bool PatternHasCtrlDep(TreePatternNode *N, DAGISelEmitter &ISE)
1077{
1078 if (NodeHasChain(N, ISE))
1079 return true;
1080 else {
1081 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1082 TreePatternNode *Child = N->getChild(i);
1083 if (PatternHasCtrlDep(Child, ISE))
1084 return true;
1085 }
1086 }
1087
1088 return false;
1089}
1090
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001091
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001092/// ParseInstructions - Parse all of the instructions, inlining and resolving
1093/// any fragments involved. This populates the Instructions list with fully
1094/// resolved instructions.
1095void DAGISelEmitter::ParseInstructions() {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001096 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1097
1098 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001099 ListInit *LI = 0;
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001100
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001101 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1102 LI = Instrs[i]->getValueAsListInit("Pattern");
1103
1104 // If there is no pattern, only collect minimal information about the
1105 // instruction for its operand list. We have to assume that there is one
1106 // result, as we have no detailed info.
1107 if (!LI || LI->getSize() == 0) {
Nate Begemanddb39542005-12-01 00:06:14 +00001108 std::vector<Record*> Results;
1109 std::vector<Record*> Operands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001110
1111 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
1112
1113 // Doesn't even define a result?
1114 if (InstInfo.OperandList.size() == 0)
1115 continue;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001116
1117 // FIXME: temporary hack...
1118 if (InstInfo.isReturn || InstInfo.isBranch || InstInfo.isCall ||
1119 InstInfo.isStore) {
1120 // These produce no results
1121 for (unsigned j = 0, e = InstInfo.OperandList.size(); j != e; ++j)
1122 Operands.push_back(InstInfo.OperandList[j].Rec);
1123 } else {
1124 // Assume the first operand is the result.
1125 Results.push_back(InstInfo.OperandList[0].Rec);
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001126
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001127 // The rest are inputs.
1128 for (unsigned j = 1, e = InstInfo.OperandList.size(); j != e; ++j)
1129 Operands.push_back(InstInfo.OperandList[j].Rec);
1130 }
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001131
1132 // Create and insert the instruction.
1133 Instructions.insert(std::make_pair(Instrs[i],
Nate Begemanddb39542005-12-01 00:06:14 +00001134 DAGInstruction(0, Results, Operands)));
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001135 continue; // no pattern.
1136 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001137
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001138 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001139 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001140 // Inline pattern fragments into it.
Chris Lattner32707602005-09-08 23:22:48 +00001141 I->InlinePatternFragments();
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001142
Chris Lattner95f6b762005-09-08 23:26:30 +00001143 // Infer as many types as possible. If we cannot infer all of them, we can
1144 // never do anything with this instruction pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001145 if (!I->InferAllTypes())
Chris Lattner32707602005-09-08 23:22:48 +00001146 I->error("Could not infer all types in pattern!");
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001147
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001148 // InstInputs - Keep track of all of the inputs of the instruction, along
1149 // with the record they are declared as.
1150 std::map<std::string, TreePatternNode*> InstInputs;
1151
1152 // InstResults - Keep track of all the virtual registers that are 'set'
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001153 // in the instruction, including what reg class they are.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001154 std::map<std::string, Record*> InstResults;
1155
Chris Lattner1f39e292005-09-14 00:09:24 +00001156 // Verify that the top-level forms in the instruction are of void type, and
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001157 // fill in the InstResults map.
Chris Lattner1f39e292005-09-14 00:09:24 +00001158 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1159 TreePatternNode *Pat = I->getTree(j);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001160 if (Pat->getExtType() != MVT::isVoid)
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001161 I->error("Top-level forms in instruction pattern should have"
1162 " void types");
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001163
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001164 // Find inputs and outputs, and verify the structure of the uses/defs.
1165 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults);
Chris Lattner1f39e292005-09-14 00:09:24 +00001166 }
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001167
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001168 // Now that we have inputs and outputs of the pattern, inspect the operands
1169 // list for the instruction. This determines the order that operands are
1170 // added to the machine instruction the node corresponds to.
1171 unsigned NumResults = InstResults.size();
Chris Lattner39e8af92005-09-14 18:19:25 +00001172
1173 // Parse the operands list from the (ops) list, validating it.
1174 std::vector<std::string> &Args = I->getArgList();
1175 assert(Args.empty() && "Args list should still be empty here!");
1176 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1177
1178 // Check that all of the results occur first in the list.
Nate Begemanddb39542005-12-01 00:06:14 +00001179 std::vector<Record*> Results;
Chris Lattner39e8af92005-09-14 18:19:25 +00001180 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattner3a7319d2005-09-14 21:04:12 +00001181 if (i == CGI.OperandList.size())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001182 I->error("'" + InstResults.begin()->first +
1183 "' set but does not appear in operand list!");
Chris Lattner39e8af92005-09-14 18:19:25 +00001184 const std::string &OpName = CGI.OperandList[i].Name;
Chris Lattner39e8af92005-09-14 18:19:25 +00001185
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001186 // Check that it exists in InstResults.
1187 Record *R = InstResults[OpName];
Chris Lattner39e8af92005-09-14 18:19:25 +00001188 if (R == 0)
1189 I->error("Operand $" + OpName + " should be a set destination: all "
1190 "outputs must occur before inputs in operand list!");
1191
1192 if (CGI.OperandList[i].Rec != R)
1193 I->error("Operand $" + OpName + " class mismatch!");
1194
Chris Lattnerae6d8282005-09-15 21:51:12 +00001195 // Remember the return type.
Nate Begemanddb39542005-12-01 00:06:14 +00001196 Results.push_back(CGI.OperandList[i].Rec);
Chris Lattnerae6d8282005-09-15 21:51:12 +00001197
Chris Lattner39e8af92005-09-14 18:19:25 +00001198 // Okay, this one checks out.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001199 InstResults.erase(OpName);
1200 }
1201
Chris Lattner0b592252005-09-14 21:59:34 +00001202 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1203 // the copy while we're checking the inputs.
1204 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
Chris Lattnerb0276202005-09-14 22:55:26 +00001205
1206 std::vector<TreePatternNode*> ResultNodeOperands;
Nate Begemanddb39542005-12-01 00:06:14 +00001207 std::vector<Record*> Operands;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001208 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1209 const std::string &OpName = CGI.OperandList[i].Name;
1210 if (OpName.empty())
1211 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1212
Chris Lattner0b592252005-09-14 21:59:34 +00001213 if (!InstInputsCheck.count(OpName))
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001214 I->error("Operand $" + OpName +
1215 " does not appear in the instruction pattern");
Chris Lattner0b592252005-09-14 21:59:34 +00001216 TreePatternNode *InVal = InstInputsCheck[OpName];
Chris Lattnerb0276202005-09-14 22:55:26 +00001217 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Nate Begemanddb39542005-12-01 00:06:14 +00001218
1219 if (InVal->isLeaf() &&
1220 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1221 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Evan Cheng0fc71982005-12-08 02:00:36 +00001222 if (CGI.OperandList[i].Rec != InRec &&
1223 !InRec->isSubClassOf("ComplexPattern"))
Nate Begemanddb39542005-12-01 00:06:14 +00001224 I->error("Operand $" + OpName +
Evan Cheng0fc71982005-12-08 02:00:36 +00001225 "'s register class disagrees between the operand and pattern");
Nate Begemanddb39542005-12-01 00:06:14 +00001226 }
1227 Operands.push_back(CGI.OperandList[i].Rec);
Chris Lattnerb0276202005-09-14 22:55:26 +00001228
Chris Lattner2175c182005-09-14 23:01:59 +00001229 // Construct the result for the dest-pattern operand list.
1230 TreePatternNode *OpNode = InVal->clone();
1231
1232 // No predicate is useful on the result.
1233 OpNode->setPredicateFn("");
1234
1235 // Promote the xform function to be an explicit node if set.
1236 if (Record *Xform = OpNode->getTransformFn()) {
1237 OpNode->setTransformFn(0);
1238 std::vector<TreePatternNode*> Children;
1239 Children.push_back(OpNode);
1240 OpNode = new TreePatternNode(Xform, Children);
1241 }
1242
1243 ResultNodeOperands.push_back(OpNode);
Chris Lattner39e8af92005-09-14 18:19:25 +00001244 }
1245
Chris Lattner0b592252005-09-14 21:59:34 +00001246 if (!InstInputsCheck.empty())
1247 I->error("Input operand $" + InstInputsCheck.begin()->first +
1248 " occurs in pattern but not in operands list!");
Chris Lattnerb0276202005-09-14 22:55:26 +00001249
1250 TreePatternNode *ResultPattern =
1251 new TreePatternNode(I->getRecord(), ResultNodeOperands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001252
1253 // Create and insert the instruction.
Nate Begemanddb39542005-12-01 00:06:14 +00001254 DAGInstruction TheInst(I, Results, Operands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001255 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1256
1257 // Use a temporary tree pattern to infer all types and make sure that the
1258 // constructed result is correct. This depends on the instruction already
1259 // being inserted into the Instructions map.
Chris Lattneredbd8712005-10-21 01:19:59 +00001260 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattnera28aec12005-09-15 22:23:50 +00001261 Temp.InferAllTypes();
1262
1263 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1264 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Chris Lattnerb0276202005-09-14 22:55:26 +00001265
Chris Lattner32707602005-09-08 23:22:48 +00001266 DEBUG(I->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001267 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001268
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001269 // If we can, convert the instructions to be patterns that are matched!
Chris Lattnerae5b3502005-09-15 21:57:35 +00001270 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1271 E = Instructions.end(); II != E; ++II) {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001272 DAGInstruction &TheInst = II->second;
1273 TreePattern *I = TheInst.getPattern();
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001274 if (I == 0) continue; // No pattern.
Evan Chengdd304dd2005-12-05 23:08:55 +00001275
Chris Lattner1f39e292005-09-14 00:09:24 +00001276 if (I->getNumTrees() != 1) {
1277 std::cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1278 continue;
1279 }
1280 TreePatternNode *Pattern = I->getTree(0);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001281 TreePatternNode *SrcPattern;
1282 if (TheInst.getNumResults() == 0) {
1283 SrcPattern = Pattern;
1284 } else {
1285 if (Pattern->getOperator()->getName() != "set")
1286 continue; // Not a set (store or something?)
Chris Lattner1f39e292005-09-14 00:09:24 +00001287
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001288 if (Pattern->getNumChildren() != 2)
1289 continue; // Not a set of a single value (not handled so far)
1290
1291 SrcPattern = Pattern->getChild(1)->clone();
1292 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001293
1294 std::string Reason;
1295 if (!SrcPattern->canPatternMatch(Reason, *this))
1296 I->error("Instruction can never match: " + Reason);
1297
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001298 TreePatternNode *DstPattern = TheInst.getResultPattern();
Chris Lattner1f39e292005-09-14 00:09:24 +00001299 PatternsToMatch.push_back(std::make_pair(SrcPattern, DstPattern));
Evan Chengdd304dd2005-12-05 23:08:55 +00001300
1301 if (PatternHasCtrlDep(Pattern, *this)) {
1302 Record *Instr = II->first;
1303 CodeGenInstruction &InstInfo = Target.getInstruction(Instr->getName());
1304 InstInfo.hasCtrlDep = true;
1305 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001306 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001307}
1308
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001309void DAGISelEmitter::ParsePatterns() {
Chris Lattnerabbb6052005-09-15 21:42:00 +00001310 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001311
Chris Lattnerabbb6052005-09-15 21:42:00 +00001312 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001313 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
Chris Lattneredbd8712005-10-21 01:19:59 +00001314 TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001315
Chris Lattnerabbb6052005-09-15 21:42:00 +00001316 // Inline pattern fragments into it.
1317 Pattern->InlinePatternFragments();
1318
1319 // Infer as many types as possible. If we cannot infer all of them, we can
1320 // never do anything with this pattern: report it to the user.
1321 if (!Pattern->InferAllTypes())
1322 Pattern->error("Could not infer all types in pattern!");
Chris Lattner09c03392005-11-17 17:43:52 +00001323
1324 // Validate that the input pattern is correct.
1325 {
1326 std::map<std::string, TreePatternNode*> InstInputs;
1327 std::map<std::string, Record*> InstResults;
1328 FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
1329 InstInputs, InstResults);
1330 }
Chris Lattnerabbb6052005-09-15 21:42:00 +00001331
1332 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1333 if (LI->getSize() == 0) continue; // no pattern.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001334
1335 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001336 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
Chris Lattnerabbb6052005-09-15 21:42:00 +00001337
1338 // Inline pattern fragments into it.
1339 Result->InlinePatternFragments();
1340
1341 // Infer as many types as possible. If we cannot infer all of them, we can
1342 // never do anything with this pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001343 if (!Result->InferAllTypes())
Chris Lattnerae5b3502005-09-15 21:57:35 +00001344 Result->error("Could not infer all types in pattern result!");
Chris Lattnerabbb6052005-09-15 21:42:00 +00001345
1346 if (Result->getNumTrees() != 1)
1347 Result->error("Cannot handle instructions producing instructions "
1348 "with temporaries yet!");
Chris Lattnere97603f2005-09-28 19:27:25 +00001349
1350 std::string Reason;
1351 if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1352 Pattern->error("Pattern can never match: " + Reason);
1353
Chris Lattnerabbb6052005-09-15 21:42:00 +00001354 PatternsToMatch.push_back(std::make_pair(Pattern->getOnlyTree(),
1355 Result->getOnlyTree()));
1356 }
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001357}
1358
Chris Lattnere46e17b2005-09-29 19:28:10 +00001359/// CombineChildVariants - Given a bunch of permutations of each child of the
1360/// 'operator' node, put them together in all possible ways.
1361static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattneraf302912005-09-29 22:36:54 +00001362 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
Chris Lattnere46e17b2005-09-29 19:28:10 +00001363 std::vector<TreePatternNode*> &OutVariants,
1364 DAGISelEmitter &ISE) {
Chris Lattneraf302912005-09-29 22:36:54 +00001365 // Make sure that each operand has at least one variant to choose from.
1366 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1367 if (ChildVariants[i].empty())
1368 return;
1369
Chris Lattnere46e17b2005-09-29 19:28:10 +00001370 // The end result is an all-pairs construction of the resultant pattern.
1371 std::vector<unsigned> Idxs;
1372 Idxs.resize(ChildVariants.size());
1373 bool NotDone = true;
1374 while (NotDone) {
1375 // Create the variant and add it to the output list.
1376 std::vector<TreePatternNode*> NewChildren;
1377 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1378 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1379 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1380
1381 // Copy over properties.
1382 R->setName(Orig->getName());
1383 R->setPredicateFn(Orig->getPredicateFn());
1384 R->setTransformFn(Orig->getTransformFn());
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001385 R->setType(Orig->getExtType());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001386
1387 // If this pattern cannot every match, do not include it as a variant.
1388 std::string ErrString;
1389 if (!R->canPatternMatch(ErrString, ISE)) {
1390 delete R;
1391 } else {
1392 bool AlreadyExists = false;
1393
1394 // Scan to see if this pattern has already been emitted. We can get
1395 // duplication due to things like commuting:
1396 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1397 // which are the same pattern. Ignore the dups.
1398 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1399 if (R->isIsomorphicTo(OutVariants[i])) {
1400 AlreadyExists = true;
1401 break;
1402 }
1403
1404 if (AlreadyExists)
1405 delete R;
1406 else
1407 OutVariants.push_back(R);
1408 }
1409
1410 // Increment indices to the next permutation.
1411 NotDone = false;
1412 // Look for something we can increment without causing a wrap-around.
1413 for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1414 if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1415 NotDone = true; // Found something to increment.
1416 break;
1417 }
1418 Idxs[IdxsIdx] = 0;
1419 }
1420 }
1421}
1422
Chris Lattneraf302912005-09-29 22:36:54 +00001423/// CombineChildVariants - A helper function for binary operators.
1424///
1425static void CombineChildVariants(TreePatternNode *Orig,
1426 const std::vector<TreePatternNode*> &LHS,
1427 const std::vector<TreePatternNode*> &RHS,
1428 std::vector<TreePatternNode*> &OutVariants,
1429 DAGISelEmitter &ISE) {
1430 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1431 ChildVariants.push_back(LHS);
1432 ChildVariants.push_back(RHS);
1433 CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1434}
1435
1436
1437static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1438 std::vector<TreePatternNode *> &Children) {
1439 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1440 Record *Operator = N->getOperator();
1441
1442 // Only permit raw nodes.
1443 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1444 N->getTransformFn()) {
1445 Children.push_back(N);
1446 return;
1447 }
1448
1449 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1450 Children.push_back(N->getChild(0));
1451 else
1452 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1453
1454 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1455 Children.push_back(N->getChild(1));
1456 else
1457 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1458}
1459
Chris Lattnere46e17b2005-09-29 19:28:10 +00001460/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1461/// the (potentially recursive) pattern by using algebraic laws.
1462///
1463static void GenerateVariantsOf(TreePatternNode *N,
1464 std::vector<TreePatternNode*> &OutVariants,
1465 DAGISelEmitter &ISE) {
1466 // We cannot permute leaves.
1467 if (N->isLeaf()) {
1468 OutVariants.push_back(N);
1469 return;
1470 }
1471
1472 // Look up interesting info about the node.
1473 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
1474
1475 // If this node is associative, reassociate.
Chris Lattneraf302912005-09-29 22:36:54 +00001476 if (NodeInfo.hasProperty(SDNodeInfo::SDNPAssociative)) {
1477 // Reassociate by pulling together all of the linked operators
1478 std::vector<TreePatternNode*> MaximalChildren;
1479 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1480
1481 // Only handle child sizes of 3. Otherwise we'll end up trying too many
1482 // permutations.
1483 if (MaximalChildren.size() == 3) {
1484 // Find the variants of all of our maximal children.
1485 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1486 GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1487 GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1488 GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1489
1490 // There are only two ways we can permute the tree:
1491 // (A op B) op C and A op (B op C)
1492 // Within these forms, we can also permute A/B/C.
1493
1494 // Generate legal pair permutations of A/B/C.
1495 std::vector<TreePatternNode*> ABVariants;
1496 std::vector<TreePatternNode*> BAVariants;
1497 std::vector<TreePatternNode*> ACVariants;
1498 std::vector<TreePatternNode*> CAVariants;
1499 std::vector<TreePatternNode*> BCVariants;
1500 std::vector<TreePatternNode*> CBVariants;
1501 CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1502 CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1503 CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1504 CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1505 CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1506 CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1507
1508 // Combine those into the result: (x op x) op x
1509 CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1510 CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1511 CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1512 CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1513 CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1514 CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1515
1516 // Combine those into the result: x op (x op x)
1517 CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1518 CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1519 CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1520 CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1521 CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1522 CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1523 return;
1524 }
1525 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00001526
1527 // Compute permutations of all children.
1528 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1529 ChildVariants.resize(N->getNumChildren());
1530 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1531 GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1532
1533 // Build all permutations based on how the children were formed.
1534 CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1535
1536 // If this node is commutative, consider the commuted order.
1537 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
1538 assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
Chris Lattneraf302912005-09-29 22:36:54 +00001539 // Consider the commuted order.
1540 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1541 OutVariants, ISE);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001542 }
1543}
1544
1545
Chris Lattnere97603f2005-09-28 19:27:25 +00001546// GenerateVariants - Generate variants. For example, commutative patterns can
1547// match multiple ways. Add them to PatternsToMatch as well.
1548void DAGISelEmitter::GenerateVariants() {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001549
1550 DEBUG(std::cerr << "Generating instruction variants.\n");
1551
1552 // Loop over all of the patterns we've collected, checking to see if we can
1553 // generate variants of the instruction, through the exploitation of
1554 // identities. This permits the target to provide agressive matching without
1555 // the .td file having to contain tons of variants of instructions.
1556 //
1557 // Note that this loop adds new patterns to the PatternsToMatch list, but we
1558 // intentionally do not reconsider these. Any variants of added patterns have
1559 // already been added.
1560 //
1561 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1562 std::vector<TreePatternNode*> Variants;
1563 GenerateVariantsOf(PatternsToMatch[i].first, Variants, *this);
1564
1565 assert(!Variants.empty() && "Must create at least original variant!");
Chris Lattnere46e17b2005-09-29 19:28:10 +00001566 Variants.erase(Variants.begin()); // Remove the original pattern.
1567
1568 if (Variants.empty()) // No variants for this pattern.
1569 continue;
1570
1571 DEBUG(std::cerr << "FOUND VARIANTS OF: ";
1572 PatternsToMatch[i].first->dump();
1573 std::cerr << "\n");
1574
1575 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1576 TreePatternNode *Variant = Variants[v];
1577
1578 DEBUG(std::cerr << " VAR#" << v << ": ";
1579 Variant->dump();
1580 std::cerr << "\n");
1581
1582 // Scan to see if an instruction or explicit pattern already matches this.
1583 bool AlreadyExists = false;
1584 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1585 // Check to see if this variant already exists.
1586 if (Variant->isIsomorphicTo(PatternsToMatch[p].first)) {
1587 DEBUG(std::cerr << " *** ALREADY EXISTS, ignoring variant.\n");
1588 AlreadyExists = true;
1589 break;
1590 }
1591 }
1592 // If we already have it, ignore the variant.
1593 if (AlreadyExists) continue;
1594
1595 // Otherwise, add it to the list of patterns we have.
1596 PatternsToMatch.push_back(std::make_pair(Variant,
1597 PatternsToMatch[i].second));
1598 }
1599
1600 DEBUG(std::cerr << "\n");
1601 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001602}
1603
Chris Lattner7cf2fe62005-09-28 20:58:06 +00001604
Evan Cheng0fc71982005-12-08 02:00:36 +00001605// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
1606// ComplexPattern.
1607static bool NodeIsComplexPattern(TreePatternNode *N)
1608{
1609 return (N->isLeaf() &&
1610 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1611 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1612 isSubClassOf("ComplexPattern"));
1613}
1614
1615// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
1616// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
1617static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
1618 DAGISelEmitter &ISE)
1619{
1620 if (N->isLeaf() &&
1621 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1622 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1623 isSubClassOf("ComplexPattern")) {
1624 return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
1625 ->getDef());
1626 }
1627 return NULL;
1628}
1629
Chris Lattner05814af2005-09-28 17:57:56 +00001630/// getPatternSize - Return the 'size' of this pattern. We want to match large
1631/// patterns before small ones. This is used to determine the size of a
1632/// pattern.
Evan Cheng0fc71982005-12-08 02:00:36 +00001633static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001634 assert(isExtIntegerVT(P->getExtType()) ||
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001635 isExtFloatingPointVT(P->getExtType()) ||
1636 P->getExtType() == MVT::isVoid && "Not a valid pattern node to size!");
Chris Lattner05814af2005-09-28 17:57:56 +00001637 unsigned Size = 1; // The node itself.
Evan Cheng0fc71982005-12-08 02:00:36 +00001638
1639 // FIXME: This is a hack to statically increase the priority of patterns
1640 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
1641 // Later we can allow complexity / cost for each pattern to be (optionally)
1642 // specified. To get best possible pattern match we'll need to dynamically
1643 // calculate the complexity of all patterns a dag can potentially map to.
1644 const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
1645 if (AM)
1646 Size += AM->getNumOperands();
1647
Chris Lattner05814af2005-09-28 17:57:56 +00001648 // Count children in the count if they are also nodes.
1649 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
1650 TreePatternNode *Child = P->getChild(i);
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001651 if (!Child->isLeaf() && Child->getExtType() != MVT::Other)
Evan Cheng0fc71982005-12-08 02:00:36 +00001652 Size += getPatternSize(Child, ISE);
1653 else if (Child->isLeaf()) {
1654 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
1655 ++Size; // Matches a ConstantSDNode.
1656 else if (NodeIsComplexPattern(Child))
1657 Size += getPatternSize(Child, ISE);
Chris Lattner2f041d42005-10-19 04:41:05 +00001658 }
Chris Lattner05814af2005-09-28 17:57:56 +00001659 }
1660
1661 return Size;
1662}
1663
1664/// getResultPatternCost - Compute the number of instructions for this pattern.
1665/// This is a temporary hack. We should really include the instruction
1666/// latencies in this calculation.
1667static unsigned getResultPatternCost(TreePatternNode *P) {
1668 if (P->isLeaf()) return 0;
1669
1670 unsigned Cost = P->getOperator()->isSubClassOf("Instruction");
1671 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
1672 Cost += getResultPatternCost(P->getChild(i));
1673 return Cost;
1674}
1675
1676// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
1677// In particular, we want to match maximal patterns first and lowest cost within
1678// a particular complexity first.
1679struct PatternSortingPredicate {
Evan Cheng0fc71982005-12-08 02:00:36 +00001680 PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
1681 DAGISelEmitter &ISE;
1682
Chris Lattner05814af2005-09-28 17:57:56 +00001683 bool operator()(DAGISelEmitter::PatternToMatch *LHS,
1684 DAGISelEmitter::PatternToMatch *RHS) {
Evan Cheng0fc71982005-12-08 02:00:36 +00001685 unsigned LHSSize = getPatternSize(LHS->first, ISE);
1686 unsigned RHSSize = getPatternSize(RHS->first, ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00001687 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
1688 if (LHSSize < RHSSize) return false;
1689
1690 // If the patterns have equal complexity, compare generated instruction cost
1691 return getResultPatternCost(LHS->second) <getResultPatternCost(RHS->second);
1692 }
1693};
1694
Nate Begeman6510b222005-12-01 04:51:06 +00001695/// getRegisterValueType - Look up and return the first ValueType of specified
1696/// RegisterClass record
Evan Cheng66a48bb2005-12-01 00:18:45 +00001697static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +00001698 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
1699 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +00001700 return MVT::Other;
1701}
1702
Chris Lattner72fe91c2005-09-24 00:40:24 +00001703
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001704/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
1705/// type information from it.
1706static void RemoveAllTypes(TreePatternNode *N) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001707 N->setType(MVT::isUnknown);
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001708 if (!N->isLeaf())
1709 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1710 RemoveAllTypes(N->getChild(i));
1711}
Chris Lattner72fe91c2005-09-24 00:40:24 +00001712
Chris Lattner0614b622005-11-02 06:49:14 +00001713Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
1714 Record *N = Records.getDef(Name);
1715 assert(N && N->isSubClassOf("SDNode") && "Bad argument");
1716 return N;
1717}
1718
Evan Chengb915f312005-12-09 22:45:35 +00001719class PatternCodeEmitter {
1720private:
1721 DAGISelEmitter &ISE;
1722
1723 // LHS of the pattern being matched
1724 TreePatternNode *LHS;
1725 unsigned PatternNo;
1726 std::ostream &OS;
1727 // Node to name mapping
1728 std::map<std::string,std::string> VariableMap;
1729 // Name of the inner most node which produces a chain.
1730 std::string InnerChain;
1731 // Names of all the folded nodes which produce chains.
1732 std::vector<std::string> FoldedChains;
1733 bool InFlag;
1734 unsigned TmpNo;
1735
1736public:
1737 PatternCodeEmitter(DAGISelEmitter &ise, TreePatternNode *lhs,
1738 unsigned PatNum, std::ostream &os) :
1739 ISE(ise), LHS(lhs), PatternNo(PatNum), OS(os),
1740 InFlag(false), TmpNo(0) {};
1741
1742 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
1743 /// if the match fails. At this point, we already know that the opcode for N
1744 /// matches, and the SDNode for the result has the RootName specified name.
1745 void EmitMatchCode(TreePatternNode *N, const std::string &RootName,
1746 bool isRoot = false) {
1747 if (N->isLeaf()) {
1748 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1749 OS << " if (cast<ConstantSDNode>(" << RootName
1750 << ")->getSignExtended() != " << II->getValue() << ")\n"
1751 << " goto P" << PatternNo << "Fail;\n";
1752 return;
1753 } else if (!NodeIsComplexPattern(N)) {
1754 assert(0 && "Cannot match this as a leaf value!");
1755 abort();
1756 }
1757 }
1758
1759 // If this node has a name associated with it, capture it in VariableMap. If
1760 // we already saw this in the pattern, emit code to verify dagness.
1761 if (!N->getName().empty()) {
1762 std::string &VarMapEntry = VariableMap[N->getName()];
1763 if (VarMapEntry.empty()) {
1764 VarMapEntry = RootName;
1765 } else {
1766 // If we get here, this is a second reference to a specific name. Since
1767 // we already have checked that the first reference is valid, we don't
1768 // have to recursively match it, just check that it's the same as the
1769 // previously named thing.
1770 OS << " if (" << VarMapEntry << " != " << RootName
1771 << ") goto P" << PatternNo << "Fail;\n";
1772 return;
1773 }
1774 }
1775
1776
1777 // Emit code to load the child nodes and match their contents recursively.
1778 unsigned OpNo = 0;
1779 if (NodeHasChain(N, ISE)) {
1780 OpNo = 1;
1781 if (!isRoot) {
Evan Cheng1129e872005-12-10 00:09:17 +00001782 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(N->getOperator());
Evan Chengb915f312005-12-09 22:45:35 +00001783 OS << " if (!" << RootName << ".hasOneUse()) goto P"
1784 << PatternNo << "Fail; // Multiple uses of actual result?\n";
1785 OS << " if (CodeGenMap.count(" << RootName
Evan Cheng1129e872005-12-10 00:09:17 +00001786 << ".getValue(" << CInfo.getNumResults() << "))) goto P"
Evan Chengb915f312005-12-09 22:45:35 +00001787 << PatternNo << "Fail; // Already selected for a chain use?\n";
1788 }
1789 if (InnerChain.empty()) {
1790 OS << " SDOperand " << RootName << "0 = " << RootName
1791 << ".getOperand(0);\n";
1792 InnerChain = RootName + "0";
1793 }
1794 }
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.
1839 } else if (LeafRec->isSubClassOf("ValueType")) {
1840 // Make sure this is the specified value type.
1841 OS << " if (cast<VTSDNode>(" << RootName << OpNo << ")->getVT() != "
1842 << "MVT::" << LeafRec->getName() << ") goto P" << PatternNo
1843 << "Fail;\n";
1844 } else if (LeafRec->isSubClassOf("CondCode")) {
1845 // Make sure this is the specified cond code.
1846 OS << " if (cast<CondCodeSDNode>(" << RootName << OpNo
1847 << ")->get() != " << "ISD::" << LeafRec->getName()
1848 << ") goto P" << PatternNo << "Fail;\n";
1849 } else {
1850 Child->dump();
1851 assert(0 && "Unknown leaf type!");
1852 }
1853 } else if (IntInit *II = dynamic_cast<IntInit*>(Child->getLeafValue())) {
1854 OS << " if (!isa<ConstantSDNode>(" << RootName << OpNo << ") ||\n"
1855 << " cast<ConstantSDNode>(" << RootName << OpNo
1856 << ")->getSignExtended() != " << II->getValue() << ")\n"
1857 << " goto P" << PatternNo << "Fail;\n";
1858 } else {
1859 Child->dump();
1860 assert(0 && "Unknown leaf type!");
1861 }
1862 }
1863 }
1864
1865 // If there is a node predicate for this, emit the call.
1866 if (!N->getPredicateFn().empty())
1867 OS << " if (!" << N->getPredicateFn() << "(" << RootName
1868 << ".Val)) goto P" << PatternNo << "Fail;\n";
1869 }
1870
1871 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
1872 /// we actually have to build a DAG!
1873 std::pair<unsigned, unsigned>
1874 EmitResultCode(TreePatternNode *N, bool isRoot = false) {
1875 // This is something selected from the pattern we matched.
1876 if (!N->getName().empty()) {
1877 assert(!isRoot && "Root of pattern cannot be a leaf!");
1878 std::string &Val = VariableMap[N->getName()];
1879 assert(!Val.empty() &&
1880 "Variable referenced but not defined and not caught earlier!");
1881 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
1882 // Already selected this operand, just return the tmpval.
1883 return std::make_pair(1, atoi(Val.c_str()+3));
1884 }
1885
1886 const ComplexPattern *CP;
1887 unsigned ResNo = TmpNo++;
1888 unsigned NumRes = 1;
1889 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
1890 switch (N->getType()) {
1891 default: assert(0 && "Unknown type for constant node!");
1892 case MVT::i1: OS << " bool Tmp"; break;
1893 case MVT::i8: OS << " unsigned char Tmp"; break;
1894 case MVT::i16: OS << " unsigned short Tmp"; break;
1895 case MVT::i32: OS << " unsigned Tmp"; break;
1896 case MVT::i64: OS << " uint64_t Tmp"; break;
1897 }
1898 OS << ResNo << "C = cast<ConstantSDNode>(" << Val << ")->getValue();\n";
1899 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetConstant(Tmp"
1900 << ResNo << "C, MVT::" << getEnumName(N->getType()) << ");\n";
1901 } else if (!N->isLeaf() && N->getOperator()->getName() == "tglobaladdr") {
1902 OS << " SDOperand Tmp" << ResNo << " = " << Val << ";\n";
1903 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
1904 std::string Fn = CP->getSelectFunc();
1905 NumRes = CP->getNumOperands();
1906 OS << " SDOperand ";
1907 for (unsigned i = 0; i < NumRes; i++) {
1908 if (i != 0) OS << ", ";
1909 OS << "Tmp" << i + ResNo;
1910 }
1911 OS << ";\n";
1912 OS << " if (!" << Fn << "(" << Val;
1913 for (unsigned i = 0; i < NumRes; i++)
1914 OS << " , Tmp" << i + ResNo;
1915 OS << ")) goto P" << PatternNo << "Fail;\n";
1916 TmpNo = ResNo + NumRes;
1917 } else {
1918 OS << " SDOperand Tmp" << ResNo << " = Select(" << Val << ");\n";
1919 }
1920 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
1921 // value if used multiple times by this pattern result.
1922 Val = "Tmp"+utostr(ResNo);
1923 return std::make_pair(NumRes, ResNo);
1924 }
1925
1926 if (N->isLeaf()) {
1927 // If this is an explicit register reference, handle it.
1928 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
1929 unsigned ResNo = TmpNo++;
1930 if (DI->getDef()->isSubClassOf("Register")) {
1931 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getRegister("
1932 << ISE.getQualifiedName(DI->getDef()) << ", MVT::"
1933 << getEnumName(N->getType())
1934 << ");\n";
1935 return std::make_pair(1, ResNo);
1936 }
1937 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1938 unsigned ResNo = TmpNo++;
1939 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetConstant("
1940 << II->getValue() << ", MVT::"
1941 << getEnumName(N->getType())
1942 << ");\n";
1943 return std::make_pair(1, ResNo);
1944 }
1945
1946 N->dump();
1947 assert(0 && "Unknown leaf type!");
1948 return std::make_pair(1, ~0U);
1949 }
1950
1951 Record *Op = N->getOperator();
1952 if (Op->isSubClassOf("Instruction")) {
1953 // Determine operand emission order. Complex pattern first.
1954 std::vector<std::pair<unsigned, TreePatternNode*> > EmitOrder;
1955 std::vector<std::pair<unsigned, TreePatternNode*> >::iterator OI;
1956 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1957 TreePatternNode *Child = N->getChild(i);
1958 if (i == 0) {
1959 EmitOrder.push_back(std::make_pair(i, Child));
1960 OI = EmitOrder.begin();
1961 } else if (NodeIsComplexPattern(Child)) {
1962 OI = EmitOrder.insert(OI, std::make_pair(i, Child));
1963 } else {
1964 EmitOrder.push_back(std::make_pair(i, Child));
1965 }
1966 }
1967
1968 // Emit all of the operands.
1969 std::vector<std::pair<unsigned, unsigned> > NumTemps(EmitOrder.size());
1970 for (unsigned i = 0, e = EmitOrder.size(); i != e; ++i) {
1971 unsigned OpOrder = EmitOrder[i].first;
1972 TreePatternNode *Child = EmitOrder[i].second;
1973 std::pair<unsigned, unsigned> NumTemp = EmitResultCode(Child);
1974 NumTemps[OpOrder] = NumTemp;
1975 }
1976
1977 // List all the operands in the right order.
1978 std::vector<unsigned> Ops;
1979 for (unsigned i = 0, e = NumTemps.size(); i != e; i++) {
1980 for (unsigned j = 0; j < NumTemps[i].first; j++)
1981 Ops.push_back(NumTemps[i].second + j);
1982 }
1983
1984 CodeGenInstruction &II =
1985 ISE.getTargetInfo().getInstruction(Op->getName());
1986
1987 // Emit all the chain and CopyToReg stuff.
1988 if (II.hasCtrlDep)
1989 OS << " SDOperand Chain = Select(" << InnerChain << ");\n";
1990 EmitCopyToRegs(LHS, "N", II.hasCtrlDep);
1991
1992 const DAGInstruction &Inst = ISE.getInstruction(Op);
1993 unsigned NumResults = Inst.getNumResults();
1994 unsigned ResNo = TmpNo++;
1995 if (!isRoot) {
1996 OS << " SDOperand Tmp" << ResNo << " = CurDAG->getTargetNode("
1997 << II.Namespace << "::" << II.TheDef->getName() << ", MVT::"
1998 << getEnumName(N->getType());
1999 unsigned LastOp = 0;
2000 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2001 LastOp = Ops[i];
2002 OS << ", Tmp" << LastOp;
2003 }
2004 OS << ");\n";
2005 if (II.hasCtrlDep) {
2006 // Must have at least one result
2007 OS << " Chain = Tmp" << LastOp << ".getValue("
2008 << NumResults << ");\n";
2009 }
2010 } else if (II.hasCtrlDep) {
2011 OS << " SDOperand Result = ";
2012 OS << "CurDAG->getTargetNode("
2013 << II.Namespace << "::" << II.TheDef->getName();
2014 if (NumResults > 0)
2015 OS << ", MVT::" << getEnumName(N->getType()); // TODO: multiple results?
2016 OS << ", MVT::Other";
2017 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2018 OS << ", Tmp" << Ops[i];
2019 OS << ", Chain";
2020 if (InFlag)
2021 OS << ", InFlag";
2022 OS << ");\n";
2023 if (NumResults != 0) {
2024 OS << " CodeGenMap[N] = Result;\n";
2025 }
2026 OS << " Chain ";
2027 if (NodeHasChain(LHS, ISE))
Evan Cheng1129e872005-12-10 00:09:17 +00002028 OS << "= CodeGenMap[N.getValue(" << NumResults << ")] ";
Evan Chengb915f312005-12-09 22:45:35 +00002029 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Evan Cheng1129e872005-12-10 00:09:17 +00002030 OS << "= CodeGenMap[" << FoldedChains[j] << ".getValue("
2031 << NumResults << ")] ";
2032 OS << "= Result.getValue(" << NumResults << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002033 if (NumResults == 0)
2034 OS << " return Chain;\n";
2035 else
2036 OS << " return (N.ResNo) ? Chain : Result.getValue(0);\n";
2037 } else {
2038 // If this instruction is the root, and if there is only one use of it,
2039 // use SelectNodeTo instead of getTargetNode to avoid an allocation.
2040 OS << " if (N.Val->hasOneUse()) {\n";
2041 OS << " return CurDAG->SelectNodeTo(N.Val, "
2042 << II.Namespace << "::" << II.TheDef->getName() << ", MVT::"
2043 << getEnumName(N->getType());
2044 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2045 OS << ", Tmp" << Ops[i];
2046 if (InFlag)
2047 OS << ", InFlag";
2048 OS << ");\n";
2049 OS << " } else {\n";
2050 OS << " return CodeGenMap[N] = CurDAG->getTargetNode("
2051 << II.Namespace << "::" << II.TheDef->getName() << ", MVT::"
2052 << getEnumName(N->getType());
2053 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2054 OS << ", Tmp" << Ops[i];
2055 if (InFlag)
2056 OS << ", InFlag";
2057 OS << ");\n";
2058 OS << " }\n";
2059 }
2060 return std::make_pair(1, ResNo);
2061 } else if (Op->isSubClassOf("SDNodeXForm")) {
2062 assert(N->getNumChildren() == 1 && "node xform should have one child!");
2063 unsigned OpVal = EmitResultCode(N->getChild(0))
2064 .second;
2065
2066 unsigned ResNo = TmpNo++;
2067 OS << " SDOperand Tmp" << ResNo << " = Transform_" << Op->getName()
2068 << "(Tmp" << OpVal << ".Val);\n";
2069 if (isRoot) {
2070 OS << " CodeGenMap[N] = Tmp" << ResNo << ";\n";
2071 OS << " return Tmp" << ResNo << ";\n";
2072 }
2073 return std::make_pair(1, ResNo);
2074 } else {
2075 N->dump();
2076 assert(0 && "Unknown node in result pattern!");
2077 return std::make_pair(1, ~0U);
2078 }
2079 }
2080
2081 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat' and
2082 /// add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
2083 /// 'Pat' may be missing types. If we find an unresolved type to add a check
2084 /// for, this returns true otherwise false if Pat has all types.
2085 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
2086 const std::string &Prefix) {
2087 // Did we find one?
2088 if (!Pat->hasTypeSet()) {
2089 // Move a type over from 'other' to 'pat'.
2090 Pat->setType(Other->getType());
2091 OS << " if (" << Prefix << ".Val->getValueType(0) != MVT::"
2092 << getName(Pat->getType()) << ") goto P" << PatternNo << "Fail;\n";
2093 return true;
2094 } else if (Pat->isLeaf()) {
2095 if (NodeIsComplexPattern(Pat))
2096 OS << " if (" << Prefix << ".Val->getValueType(0) != MVT::"
2097 << getName(Pat->getType()) << ") goto P" << PatternNo << "Fail;\n";
2098 return false;
2099 }
2100
2101 unsigned OpNo = (unsigned) NodeHasChain(Pat, ISE);
2102 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
2103 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
2104 Prefix + utostr(OpNo)))
2105 return true;
2106 return false;
2107 }
2108
2109private:
2110 /// EmitCopyToRegs - Emit the flag operands for the DAG that is
2111 /// being built.
2112 void EmitCopyToRegs(TreePatternNode *N, const std::string &RootName,
2113 bool HasCtrlDep) {
2114 const CodeGenTarget &T = ISE.getTargetInfo();
2115 unsigned OpNo = (unsigned) NodeHasChain(N, ISE);
2116 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
2117 TreePatternNode *Child = N->getChild(i);
2118 if (!Child->isLeaf()) {
2119 EmitCopyToRegs(Child, RootName + utostr(OpNo), HasCtrlDep);
2120 } else {
2121 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2122 Record *RR = DI->getDef();
2123 if (RR->isSubClassOf("Register")) {
2124 MVT::ValueType RVT = getRegisterValueType(RR, T);
2125 if (HasCtrlDep) {
2126 OS << " SDOperand " << RootName << "CR" << i << ";\n";
2127 OS << " " << RootName << "CR" << i
2128 << " = CurDAG->getCopyToReg(Chain, CurDAG->getRegister("
2129 << ISE.getQualifiedName(RR) << ", MVT::"
2130 << getEnumName(RVT) << ")"
2131 << ", Select(" << RootName << OpNo << "), InFlag);\n";
2132 OS << " Chain = " << RootName << "CR" << i
2133 << ".getValue(0);\n";
2134 OS << " InFlag = " << RootName << "CR" << i
2135 << ".getValue(1);\n";
2136 } else {
2137 OS << " InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode()"
2138 << ", CurDAG->getRegister(" << ISE.getQualifiedName(RR)
2139 << ", MVT::" << getEnumName(RVT) << ")"
2140 << ", Select(" << RootName << OpNo
2141 << "), InFlag).getValue(1);\n";
2142 }
2143 }
2144 }
2145 }
2146 }
2147 }
2148};
2149
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002150/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
2151/// stream to match the pattern, and generate the code for the match if it
2152/// succeeds.
Chris Lattner3f7e9142005-09-23 20:52:47 +00002153void DAGISelEmitter::EmitCodeForPattern(PatternToMatch &Pattern,
2154 std::ostream &OS) {
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002155 static unsigned PatternCount = 0;
2156 unsigned PatternNo = PatternCount++;
2157 OS << " { // Pattern #" << PatternNo << ": ";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002158 Pattern.first->print(OS);
Chris Lattner05814af2005-09-28 17:57:56 +00002159 OS << "\n // Emits: ";
2160 Pattern.second->print(OS);
Chris Lattner3f7e9142005-09-23 20:52:47 +00002161 OS << "\n";
Evan Cheng0fc71982005-12-08 02:00:36 +00002162 OS << " // Pattern complexity = " << getPatternSize(Pattern.first, *this)
Chris Lattner05814af2005-09-28 17:57:56 +00002163 << " cost = " << getResultPatternCost(Pattern.second) << "\n";
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002164
Evan Chengb915f312005-12-09 22:45:35 +00002165 PatternCodeEmitter Emitter(*this, Pattern.first, PatternNo, OS);
2166
Chris Lattner8fc35682005-09-23 23:16:51 +00002167 // Emit the matcher, capturing named arguments in VariableMap.
Evan Chengb915f312005-12-09 22:45:35 +00002168 Emitter.EmitMatchCode(Pattern.first, "N", true /*the root*/);
2169
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002170 // TP - Get *SOME* tree pattern, we don't care which.
2171 TreePattern &TP = *PatternFragments.begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00002172
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002173 // At this point, we know that we structurally match the pattern, but the
2174 // types of the nodes may not match. Figure out the fewest number of type
2175 // comparisons we need to emit. For example, if there is only one integer
2176 // type supported by a target, there should be no type comparisons at all for
2177 // integer patterns!
2178 //
2179 // To figure out the fewest number of type checks needed, clone the pattern,
2180 // remove the types, then perform type inference on the pattern as a whole.
2181 // If there are unresolved types, emit an explicit check for those types,
2182 // apply the type to the tree, then rerun type inference. Iterate until all
2183 // types are resolved.
2184 //
2185 TreePatternNode *Pat = Pattern.first->clone();
2186 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00002187
2188 do {
2189 // Resolve/propagate as many types as possible.
2190 try {
2191 bool MadeChange = true;
2192 while (MadeChange)
2193 MadeChange = Pat->ApplyTypeConstraints(TP,true/*Ignore reg constraints*/);
2194 } catch (...) {
2195 assert(0 && "Error: could not find consistent types for something we"
2196 " already decided was ok!");
2197 abort();
2198 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002199
Chris Lattner7e82f132005-10-15 21:34:21 +00002200 // Insert a check for an unresolved type and add it to the tree. If we find
2201 // an unresolved type to add a check for, this returns true and we iterate,
2202 // otherwise we are done.
Evan Chengb915f312005-12-09 22:45:35 +00002203 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.first, "N"));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00002204
Evan Chengb915f312005-12-09 22:45:35 +00002205 Emitter.EmitResultCode(Pattern.second, true /*the root*/);
2206
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002207 delete Pat;
2208
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002209 OS << " }\n P" << PatternNo << "Fail:\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002210}
2211
Chris Lattner37481472005-09-26 21:59:35 +00002212
2213namespace {
2214 /// CompareByRecordName - An ordering predicate that implements less-than by
2215 /// comparing the names records.
2216 struct CompareByRecordName {
2217 bool operator()(const Record *LHS, const Record *RHS) const {
2218 // Sort by name first.
2219 if (LHS->getName() < RHS->getName()) return true;
2220 // If both names are equal, sort by pointer.
2221 return LHS->getName() == RHS->getName() && LHS < RHS;
2222 }
2223 };
2224}
2225
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002226void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002227 std::string InstNS = Target.inst_begin()->second.Namespace;
2228 if (!InstNS.empty()) InstNS += "::";
2229
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002230 // Emit boilerplate.
2231 OS << "// The main instruction selector code.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002232 << "SDOperand SelectCode(SDOperand N) {\n"
2233 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002234 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
2235 << "INSTRUCTION_LIST_END))\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002236 << " return N; // Already selected.\n\n"
Chris Lattner296dfe32005-09-24 00:50:51 +00002237 << " if (!N.Val->hasOneUse()) {\n"
2238 << " std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(N);\n"
2239 << " if (CGMI != CodeGenMap.end()) return CGMI->second;\n"
2240 << " }\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002241 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002242 << " default: break;\n"
2243 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002244 << " return N;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002245 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002246 << " case ISD::AssertZext: {\n"
2247 << " SDOperand Tmp0 = Select(N.getOperand(0));\n"
2248 << " if (!N.Val->hasOneUse()) CodeGenMap[N] = Tmp0;\n"
2249 << " return Tmp0;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002250 << " }\n"
2251 << " case ISD::TokenFactor:\n"
2252 << " if (N.getNumOperands() == 2) {\n"
2253 << " SDOperand Op0 = Select(N.getOperand(0));\n"
2254 << " SDOperand Op1 = Select(N.getOperand(1));\n"
2255 << " return CodeGenMap[N] =\n"
2256 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Op0, Op1);\n"
2257 << " } else {\n"
2258 << " std::vector<SDOperand> Ops;\n"
2259 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
2260 << " Ops.push_back(Select(N.getOperand(i)));\n"
2261 << " return CodeGenMap[N] = \n"
2262 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Ops);\n"
2263 << " }\n"
2264 << " case ISD::CopyFromReg: {\n"
2265 << " SDOperand Chain = Select(N.getOperand(0));\n"
2266 << " if (Chain == N.getOperand(0)) return N; // No change\n"
2267 << " SDOperand New = CurDAG->getCopyFromReg(Chain,\n"
2268 << " cast<RegisterSDNode>(N.getOperand(1))->getReg(),\n"
2269 << " N.Val->getValueType(0));\n"
2270 << " return New.getValue(N.ResNo);\n"
2271 << " }\n"
2272 << " case ISD::CopyToReg: {\n"
2273 << " SDOperand Chain = Select(N.getOperand(0));\n"
2274 << " SDOperand Reg = N.getOperand(1);\n"
2275 << " SDOperand Val = Select(N.getOperand(2));\n"
2276 << " return CodeGenMap[N] = \n"
2277 << " CurDAG->getNode(ISD::CopyToReg, MVT::Other,\n"
2278 << " Chain, Reg, Val);\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002279 << " }\n";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002280
Chris Lattner81303322005-09-23 19:36:15 +00002281 // Group the patterns by their top-level opcodes.
Chris Lattner37481472005-09-26 21:59:35 +00002282 std::map<Record*, std::vector<PatternToMatch*>,
2283 CompareByRecordName> PatternsByOpcode;
Evan Cheng0fc71982005-12-08 02:00:36 +00002284 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
2285 TreePatternNode *Node = PatternsToMatch[i].first;
2286 if (!Node->isLeaf()) {
2287 PatternsByOpcode[Node->getOperator()].push_back(&PatternsToMatch[i]);
Chris Lattner0614b622005-11-02 06:49:14 +00002288 } else {
Evan Cheng0fc71982005-12-08 02:00:36 +00002289 const ComplexPattern *CP;
Chris Lattner0614b622005-11-02 06:49:14 +00002290 if (IntInit *II =
Evan Cheng0fc71982005-12-08 02:00:36 +00002291 dynamic_cast<IntInit*>(Node->getLeafValue())) {
Chris Lattner0614b622005-11-02 06:49:14 +00002292 PatternsByOpcode[getSDNodeNamed("imm")].push_back(&PatternsToMatch[i]);
Evan Cheng0fc71982005-12-08 02:00:36 +00002293 } else if ((CP = NodeGetComplexPattern(Node, *this))) {
Evan Cheng3aa39f42005-12-08 02:14:08 +00002294 std::vector<Record*> OpNodes = CP->getRootNodes();
Evan Cheng0fc71982005-12-08 02:00:36 +00002295 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
2296 PatternsByOpcode[OpNodes[j]].insert(PatternsByOpcode[OpNodes[j]].begin(),
2297 &PatternsToMatch[i]);
2298 }
Chris Lattner0614b622005-11-02 06:49:14 +00002299 } else {
Evan Cheng76021f02005-11-29 18:44:58 +00002300 std::cerr << "Unrecognized opcode '";
Evan Cheng0fc71982005-12-08 02:00:36 +00002301 Node->dump();
Evan Cheng76021f02005-11-29 18:44:58 +00002302 std::cerr << "' on tree pattern '";
2303 std::cerr << PatternsToMatch[i].second->getOperator()->getName();
2304 std::cerr << "'!\n";
2305 exit(1);
Chris Lattner0614b622005-11-02 06:49:14 +00002306 }
2307 }
Evan Cheng0fc71982005-12-08 02:00:36 +00002308 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002309
Chris Lattner3f7e9142005-09-23 20:52:47 +00002310 // Loop over all of the case statements.
Chris Lattner37481472005-09-26 21:59:35 +00002311 for (std::map<Record*, std::vector<PatternToMatch*>,
2312 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2313 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
Chris Lattner81303322005-09-23 19:36:15 +00002314 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
2315 std::vector<PatternToMatch*> &Patterns = PBOI->second;
2316
2317 OS << " case " << OpcodeInfo.getEnumName() << ":\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002318
2319 // We want to emit all of the matching code now. However, we want to emit
2320 // the matches in order of minimal cost. Sort the patterns so the least
2321 // cost one is at the start.
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002322 std::stable_sort(Patterns.begin(), Patterns.end(),
Evan Cheng0fc71982005-12-08 02:00:36 +00002323 PatternSortingPredicate(*this));
Chris Lattner81303322005-09-23 19:36:15 +00002324
Chris Lattner3f7e9142005-09-23 20:52:47 +00002325 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
2326 EmitCodeForPattern(*Patterns[i], OS);
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002327 OS << " break;\n\n";
Chris Lattner81303322005-09-23 19:36:15 +00002328 }
2329
2330
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002331 OS << " } // end of big switch.\n\n"
2332 << " std::cerr << \"Cannot yet select: \";\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002333 << " N.Val->dump();\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002334 << " std::cerr << '\\n';\n"
2335 << " abort();\n"
2336 << "}\n";
2337}
2338
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002339void DAGISelEmitter::run(std::ostream &OS) {
2340 EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
2341 " target", OS);
2342
Chris Lattner1f39e292005-09-14 00:09:24 +00002343 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2344 << "// *** instruction selector class. These functions are really "
2345 << "methods.\n\n";
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002346
Chris Lattner296dfe32005-09-24 00:50:51 +00002347 OS << "// Instance var to keep track of multiply used nodes that have \n"
2348 << "// already been selected.\n"
2349 << "std::map<SDOperand, SDOperand> CodeGenMap;\n";
2350
Chris Lattnerca559d02005-09-08 21:03:01 +00002351 ParseNodeInfo();
Chris Lattner24eeeb82005-09-13 21:51:00 +00002352 ParseNodeTransforms(OS);
Evan Cheng0fc71982005-12-08 02:00:36 +00002353 ParseComplexPatterns();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002354 ParsePatternFragments(OS);
2355 ParseInstructions();
2356 ParsePatterns();
Chris Lattner3f7e9142005-09-23 20:52:47 +00002357
Chris Lattnere97603f2005-09-28 19:27:25 +00002358 // Generate variants. For example, commutative patterns can match
Chris Lattner3f7e9142005-09-23 20:52:47 +00002359 // multiple ways. Add them to PatternsToMatch as well.
Chris Lattnere97603f2005-09-28 19:27:25 +00002360 GenerateVariants();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002361
Chris Lattnere46e17b2005-09-29 19:28:10 +00002362
2363 DEBUG(std::cerr << "\n\nALL PATTERNS TO MATCH:\n\n";
2364 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
2365 std::cerr << "PATTERN: "; PatternsToMatch[i].first->dump();
2366 std::cerr << "\nRESULT: ";PatternsToMatch[i].second->dump();
2367 std::cerr << "\n";
2368 });
2369
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002370 // At this point, we have full information about the 'Patterns' we need to
2371 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002372 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002373 EmitInstructionSelector(OS);
2374
2375 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
2376 E = PatternFragments.end(); I != E; ++I)
2377 delete I->second;
2378 PatternFragments.clear();
2379
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002380 Instructions.clear();
2381}