blob: 05b96290a97d438b9b0787169f682df033779396 [file] [log] [blame]
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001//===- DAGISelEmitter.cpp - Generate an instruction selector --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This tablegen backend emits a DAG instruction selector.
11//
12//===----------------------------------------------------------------------===//
13
14#include "DAGISelEmitter.h"
15#include "Record.h"
16#include "llvm/ADT/StringExtras.h"
17#include "llvm/Support/Debug.h"
Jeff Cohena48283b2005-09-25 19:04:43 +000018#include <algorithm>
Chris Lattner54cb8fd2005-09-07 23:44:43 +000019#include <set>
20using namespace llvm;
21
Chris Lattnerca559d02005-09-08 21:03:01 +000022//===----------------------------------------------------------------------===//
Chris Lattner3c7e18d2005-10-14 06:12:03 +000023// Helpers for working with extended types.
24
25/// FilterVTs - Filter a list of VT's according to a predicate.
26///
27template<typename T>
28static std::vector<MVT::ValueType>
29FilterVTs(const std::vector<MVT::ValueType> &InVTs, T Filter) {
30 std::vector<MVT::ValueType> Result;
31 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
32 if (Filter(InVTs[i]))
33 Result.push_back(InVTs[i]);
34 return Result;
35}
36
37/// isExtIntegerVT - Return true if the specified extended value type is
38/// integer, or isInt.
39static bool isExtIntegerVT(unsigned char VT) {
40 return VT == MVT::isInt ||
41 (VT < MVT::LAST_VALUETYPE && MVT::isInteger((MVT::ValueType)VT));
42}
43
44/// isExtFloatingPointVT - Return true if the specified extended value type is
45/// floating point, or isFP.
46static bool isExtFloatingPointVT(unsigned char VT) {
47 return VT == MVT::isFP ||
48 (VT < MVT::LAST_VALUETYPE && MVT::isFloatingPoint((MVT::ValueType)VT));
49}
50
51//===----------------------------------------------------------------------===//
Chris Lattner33c92e92005-09-08 21:27:15 +000052// SDTypeConstraint implementation
53//
54
55SDTypeConstraint::SDTypeConstraint(Record *R) {
56 OperandNo = R->getValueAsInt("OperandNum");
57
58 if (R->isSubClassOf("SDTCisVT")) {
59 ConstraintType = SDTCisVT;
60 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
Chris Lattner5b21be72005-12-09 22:57:42 +000061 } else if (R->isSubClassOf("SDTCisPtrTy")) {
62 ConstraintType = SDTCisPtrTy;
Chris Lattner33c92e92005-09-08 21:27:15 +000063 } else if (R->isSubClassOf("SDTCisInt")) {
64 ConstraintType = SDTCisInt;
65 } else if (R->isSubClassOf("SDTCisFP")) {
66 ConstraintType = SDTCisFP;
67 } else if (R->isSubClassOf("SDTCisSameAs")) {
68 ConstraintType = SDTCisSameAs;
69 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
70 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
71 ConstraintType = SDTCisVTSmallerThanOp;
72 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum =
73 R->getValueAsInt("OtherOperandNum");
Chris Lattner03ebd802005-10-14 04:53:53 +000074 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
75 ConstraintType = SDTCisOpSmallerThanOp;
76 x.SDTCisOpSmallerThanOp_Info.BigOperandNum =
77 R->getValueAsInt("BigOperandNum");
Chris Lattner33c92e92005-09-08 21:27:15 +000078 } else {
79 std::cerr << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n";
80 exit(1);
81 }
82}
83
Chris Lattner32707602005-09-08 23:22:48 +000084/// getOperandNum - Return the node corresponding to operand #OpNo in tree
85/// N, which has NumResults results.
86TreePatternNode *SDTypeConstraint::getOperandNum(unsigned OpNo,
87 TreePatternNode *N,
88 unsigned NumResults) const {
Evan Cheng1c3d19e2005-12-04 08:18:16 +000089 assert(NumResults <= 1 &&
90 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +000091
92 if (OpNo < NumResults)
93 return N; // FIXME: need value #
94 else
95 return N->getChild(OpNo-NumResults);
96}
97
98/// ApplyTypeConstraint - Given a node in a pattern, apply this type
99/// constraint to the nodes operands. This returns true if it makes a
100/// change, false otherwise. If a type contradiction is found, throw an
101/// exception.
102bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
103 const SDNodeInfo &NodeInfo,
104 TreePattern &TP) const {
105 unsigned NumResults = NodeInfo.getNumResults();
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000106 assert(NumResults <= 1 &&
107 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +0000108
109 // Check that the number of operands is sane.
110 if (NodeInfo.getNumOperands() >= 0) {
111 if (N->getNumChildren() != (unsigned)NodeInfo.getNumOperands())
112 TP.error(N->getOperator()->getName() + " node requires exactly " +
113 itostr(NodeInfo.getNumOperands()) + " operands!");
114 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000115
116 const CodeGenTarget &CGT = TP.getDAGISelEmitter().getTargetInfo();
Chris Lattner32707602005-09-08 23:22:48 +0000117
118 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NumResults);
119
120 switch (ConstraintType) {
121 default: assert(0 && "Unknown constraint type!");
122 case SDTCisVT:
123 // Operand must be a particular type.
124 return NodeToApply->UpdateNodeType(x.SDTCisVT_Info.VT, TP);
Chris Lattner5b21be72005-12-09 22:57:42 +0000125 case SDTCisPtrTy: {
126 // Operand must be same as target pointer type.
127 return NodeToApply->UpdateNodeType(CGT.getPointerType(), TP);
128 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000129 case SDTCisInt: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000130 // If there is only one integer type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000131 std::vector<MVT::ValueType> IntVTs =
132 FilterVTs(CGT.getLegalValueTypes(), MVT::isInteger);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000133
134 // If we found exactly one supported integer type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000135 if (IntVTs.size() == 1)
136 return NodeToApply->UpdateNodeType(IntVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000137 return NodeToApply->UpdateNodeType(MVT::isInt, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000138 }
139 case SDTCisFP: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000140 // If there is only one FP type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000141 std::vector<MVT::ValueType> FPVTs =
142 FilterVTs(CGT.getLegalValueTypes(), MVT::isFloatingPoint);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000143
144 // If we found exactly one supported FP type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000145 if (FPVTs.size() == 1)
146 return NodeToApply->UpdateNodeType(FPVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000147 return NodeToApply->UpdateNodeType(MVT::isFP, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000148 }
Chris Lattner32707602005-09-08 23:22:48 +0000149 case SDTCisSameAs: {
150 TreePatternNode *OtherNode =
151 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000152 return NodeToApply->UpdateNodeType(OtherNode->getExtType(), TP) |
153 OtherNode->UpdateNodeType(NodeToApply->getExtType(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000154 }
155 case SDTCisVTSmallerThanOp: {
156 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must
157 // have an integer type that is smaller than the VT.
158 if (!NodeToApply->isLeaf() ||
159 !dynamic_cast<DefInit*>(NodeToApply->getLeafValue()) ||
160 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
161 ->isSubClassOf("ValueType"))
162 TP.error(N->getOperator()->getName() + " expects a VT operand!");
163 MVT::ValueType VT =
164 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
165 if (!MVT::isInteger(VT))
166 TP.error(N->getOperator()->getName() + " VT operand must be integer!");
167
168 TreePatternNode *OtherNode =
169 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N,NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000170
171 // It must be integer.
172 bool MadeChange = false;
173 MadeChange |= OtherNode->UpdateNodeType(MVT::isInt, TP);
174
175 if (OtherNode->hasTypeSet() && OtherNode->getType() <= VT)
Chris Lattner32707602005-09-08 23:22:48 +0000176 OtherNode->UpdateNodeType(MVT::Other, TP); // Throw an error.
177 return false;
178 }
Chris Lattner03ebd802005-10-14 04:53:53 +0000179 case SDTCisOpSmallerThanOp: {
Chris Lattner603d78c2005-10-14 06:25:00 +0000180 TreePatternNode *BigOperand =
181 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NumResults);
182
183 // Both operands must be integer or FP, but we don't care which.
184 bool MadeChange = false;
185
186 if (isExtIntegerVT(NodeToApply->getExtType()))
187 MadeChange |= BigOperand->UpdateNodeType(MVT::isInt, TP);
188 else if (isExtFloatingPointVT(NodeToApply->getExtType()))
189 MadeChange |= BigOperand->UpdateNodeType(MVT::isFP, TP);
190 if (isExtIntegerVT(BigOperand->getExtType()))
191 MadeChange |= NodeToApply->UpdateNodeType(MVT::isInt, TP);
192 else if (isExtFloatingPointVT(BigOperand->getExtType()))
193 MadeChange |= NodeToApply->UpdateNodeType(MVT::isFP, TP);
194
195 std::vector<MVT::ValueType> VTs = CGT.getLegalValueTypes();
196
197 if (isExtIntegerVT(NodeToApply->getExtType())) {
198 VTs = FilterVTs(VTs, MVT::isInteger);
199 } else if (isExtFloatingPointVT(NodeToApply->getExtType())) {
200 VTs = FilterVTs(VTs, MVT::isFloatingPoint);
201 } else {
202 VTs.clear();
203 }
204
205 switch (VTs.size()) {
206 default: // Too many VT's to pick from.
207 case 0: break; // No info yet.
208 case 1:
209 // Only one VT of this flavor. Cannot ever satisify the constraints.
210 return NodeToApply->UpdateNodeType(MVT::Other, TP); // throw
211 case 2:
212 // If we have exactly two possible types, the little operand must be the
213 // small one, the big operand should be the big one. Common with
214 // float/double for example.
215 assert(VTs[0] < VTs[1] && "Should be sorted!");
216 MadeChange |= NodeToApply->UpdateNodeType(VTs[0], TP);
217 MadeChange |= BigOperand->UpdateNodeType(VTs[1], TP);
218 break;
219 }
220 return MadeChange;
Chris Lattner03ebd802005-10-14 04:53:53 +0000221 }
Chris Lattner32707602005-09-08 23:22:48 +0000222 }
223 return false;
224}
225
226
Chris Lattner33c92e92005-09-08 21:27:15 +0000227//===----------------------------------------------------------------------===//
Chris Lattnerca559d02005-09-08 21:03:01 +0000228// SDNodeInfo implementation
229//
230SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
231 EnumName = R->getValueAsString("Opcode");
232 SDClassName = R->getValueAsString("SDClass");
Chris Lattner33c92e92005-09-08 21:27:15 +0000233 Record *TypeProfile = R->getValueAsDef("TypeProfile");
234 NumResults = TypeProfile->getValueAsInt("NumResults");
235 NumOperands = TypeProfile->getValueAsInt("NumOperands");
236
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000237 // Parse the properties.
238 Properties = 0;
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000239 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
Chris Lattner6bc0d742005-10-28 22:43:25 +0000240 for (unsigned i = 0, e = PropList.size(); i != e; ++i) {
241 if (PropList[i]->getName() == "SDNPCommutative") {
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000242 Properties |= 1 << SDNPCommutative;
Chris Lattner6bc0d742005-10-28 22:43:25 +0000243 } else if (PropList[i]->getName() == "SDNPAssociative") {
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000244 Properties |= 1 << SDNPAssociative;
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000245 } else if (PropList[i]->getName() == "SDNPHasChain") {
246 Properties |= 1 << SDNPHasChain;
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000247 } else {
Chris Lattner6bc0d742005-10-28 22:43:25 +0000248 std::cerr << "Unknown SD Node property '" << PropList[i]->getName()
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000249 << "' on node '" << R->getName() << "'!\n";
250 exit(1);
251 }
252 }
253
254
Chris Lattner33c92e92005-09-08 21:27:15 +0000255 // Parse the type constraints.
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000256 std::vector<Record*> ConstraintList =
257 TypeProfile->getValueAsListOfDefs("Constraints");
258 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
Chris Lattnerca559d02005-09-08 21:03:01 +0000259}
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000260
261//===----------------------------------------------------------------------===//
262// TreePatternNode implementation
263//
264
265TreePatternNode::~TreePatternNode() {
266#if 0 // FIXME: implement refcounted tree nodes!
267 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
268 delete getChild(i);
269#endif
270}
271
Chris Lattner32707602005-09-08 23:22:48 +0000272/// UpdateNodeType - Set the node type of N to VT if VT contains
273/// information. If N already contains a conflicting type, then throw an
274/// exception. This returns true if any information was updated.
275///
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000276bool TreePatternNode::UpdateNodeType(unsigned char VT, TreePattern &TP) {
277 if (VT == MVT::isUnknown || getExtType() == VT) return false;
278 if (getExtType() == MVT::isUnknown) {
Chris Lattner32707602005-09-08 23:22:48 +0000279 setType(VT);
280 return true;
281 }
282
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000283 // If we are told this is to be an int or FP type, and it already is, ignore
284 // the advice.
285 if ((VT == MVT::isInt && isExtIntegerVT(getExtType())) ||
286 (VT == MVT::isFP && isExtFloatingPointVT(getExtType())))
287 return false;
288
289 // If we know this is an int or fp type, and we are told it is a specific one,
290 // take the advice.
291 if ((getExtType() == MVT::isInt && isExtIntegerVT(VT)) ||
292 (getExtType() == MVT::isFP && isExtFloatingPointVT(VT))) {
293 setType(VT);
294 return true;
295 }
296
Chris Lattner1531f202005-10-26 16:59:37 +0000297 if (isLeaf()) {
298 dump();
Evan Chengbcecf332005-12-17 01:19:28 +0000299 std::cerr << " ";
Chris Lattner1531f202005-10-26 16:59:37 +0000300 TP.error("Type inference contradiction found in node!");
301 } else {
302 TP.error("Type inference contradiction found in node " +
303 getOperator()->getName() + "!");
304 }
Chris Lattner32707602005-09-08 23:22:48 +0000305 return true; // unreachable
306}
307
308
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000309void TreePatternNode::print(std::ostream &OS) const {
310 if (isLeaf()) {
311 OS << *getLeafValue();
312 } else {
313 OS << "(" << getOperator()->getName();
314 }
315
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000316 switch (getExtType()) {
317 case MVT::Other: OS << ":Other"; break;
318 case MVT::isInt: OS << ":isInt"; break;
319 case MVT::isFP : OS << ":isFP"; break;
320 case MVT::isUnknown: ; /*OS << ":?";*/ break;
321 default: OS << ":" << getType(); break;
322 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000323
324 if (!isLeaf()) {
325 if (getNumChildren() != 0) {
326 OS << " ";
327 getChild(0)->print(OS);
328 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
329 OS << ", ";
330 getChild(i)->print(OS);
331 }
332 }
333 OS << ")";
334 }
335
336 if (!PredicateFn.empty())
Chris Lattner24eeeb82005-09-13 21:51:00 +0000337 OS << "<<P:" << PredicateFn << ">>";
Chris Lattnerb0276202005-09-14 22:55:26 +0000338 if (TransformFn)
339 OS << "<<X:" << TransformFn->getName() << ">>";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000340 if (!getName().empty())
341 OS << ":$" << getName();
342
343}
344void TreePatternNode::dump() const {
345 print(std::cerr);
346}
347
Chris Lattnere46e17b2005-09-29 19:28:10 +0000348/// isIsomorphicTo - Return true if this node is recursively isomorphic to
349/// the specified node. For this comparison, all of the state of the node
350/// is considered, except for the assigned name. Nodes with differing names
351/// that are otherwise identical are considered isomorphic.
352bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N) const {
353 if (N == this) return true;
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000354 if (N->isLeaf() != isLeaf() || getExtType() != N->getExtType() ||
Chris Lattnere46e17b2005-09-29 19:28:10 +0000355 getPredicateFn() != N->getPredicateFn() ||
356 getTransformFn() != N->getTransformFn())
357 return false;
358
359 if (isLeaf()) {
360 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue()))
361 if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue()))
362 return DI->getDef() == NDI->getDef();
363 return getLeafValue() == N->getLeafValue();
364 }
365
366 if (N->getOperator() != getOperator() ||
367 N->getNumChildren() != getNumChildren()) return false;
368 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
369 if (!getChild(i)->isIsomorphicTo(N->getChild(i)))
370 return false;
371 return true;
372}
373
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000374/// clone - Make a copy of this tree and all of its children.
375///
376TreePatternNode *TreePatternNode::clone() const {
377 TreePatternNode *New;
378 if (isLeaf()) {
379 New = new TreePatternNode(getLeafValue());
380 } else {
381 std::vector<TreePatternNode*> CChildren;
382 CChildren.reserve(Children.size());
383 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
384 CChildren.push_back(getChild(i)->clone());
385 New = new TreePatternNode(getOperator(), CChildren);
386 }
387 New->setName(getName());
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000388 New->setType(getExtType());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000389 New->setPredicateFn(getPredicateFn());
Chris Lattner24eeeb82005-09-13 21:51:00 +0000390 New->setTransformFn(getTransformFn());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000391 return New;
392}
393
Chris Lattner32707602005-09-08 23:22:48 +0000394/// SubstituteFormalArguments - Replace the formal arguments in this tree
395/// with actual values specified by ArgMap.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000396void TreePatternNode::
397SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
398 if (isLeaf()) return;
399
400 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
401 TreePatternNode *Child = getChild(i);
402 if (Child->isLeaf()) {
403 Init *Val = Child->getLeafValue();
404 if (dynamic_cast<DefInit*>(Val) &&
405 static_cast<DefInit*>(Val)->getDef()->getName() == "node") {
406 // We found a use of a formal argument, replace it with its value.
407 Child = ArgMap[Child->getName()];
408 assert(Child && "Couldn't find formal argument!");
409 setChild(i, Child);
410 }
411 } else {
412 getChild(i)->SubstituteFormalArguments(ArgMap);
413 }
414 }
415}
416
417
418/// InlinePatternFragments - If this pattern refers to any pattern
419/// fragments, inline them into place, giving us a pattern without any
420/// PatFrag references.
421TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
422 if (isLeaf()) return this; // nothing to do.
423 Record *Op = getOperator();
424
425 if (!Op->isSubClassOf("PatFrag")) {
426 // Just recursively inline children nodes.
427 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
428 setChild(i, getChild(i)->InlinePatternFragments(TP));
429 return this;
430 }
431
432 // Otherwise, we found a reference to a fragment. First, look up its
433 // TreePattern record.
434 TreePattern *Frag = TP.getDAGISelEmitter().getPatternFragment(Op);
435
436 // Verify that we are passing the right number of operands.
437 if (Frag->getNumArgs() != Children.size())
438 TP.error("'" + Op->getName() + "' fragment requires " +
439 utostr(Frag->getNumArgs()) + " operands!");
440
Chris Lattner37937092005-09-09 01:15:01 +0000441 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000442
443 // Resolve formal arguments to their actual value.
444 if (Frag->getNumArgs()) {
445 // Compute the map of formal to actual arguments.
446 std::map<std::string, TreePatternNode*> ArgMap;
447 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
448 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
449
450 FragTree->SubstituteFormalArguments(ArgMap);
451 }
452
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000453 FragTree->setName(getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000454 FragTree->UpdateNodeType(getExtType(), TP);
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000455
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000456 // Get a new copy of this fragment to stitch into here.
457 //delete this; // FIXME: implement refcounting!
458 return FragTree;
459}
460
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000461/// getIntrinsicType - Check to see if the specified record has an intrinsic
462/// type which should be applied to it. This infer the type of register
463/// references from the register file information, for example.
464///
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000465static unsigned char getIntrinsicType(Record *R, bool NotRegisters,
466 TreePattern &TP) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000467 // Check to see if this is a register or a register class...
468 if (R->isSubClassOf("RegisterClass")) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000469 if (NotRegisters) return MVT::isUnknown;
Nate Begeman6510b222005-12-01 04:51:06 +0000470 const CodeGenRegisterClass &RC =
471 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(R);
472 return RC.getValueTypeNum(0);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000473 } else if (R->isSubClassOf("PatFrag")) {
474 // Pattern fragment types will be resolved when they are inlined.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000475 return MVT::isUnknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000476 } else if (R->isSubClassOf("Register")) {
Chris Lattner22faeab2005-12-05 02:36:37 +0000477 // If the register appears in exactly one regclass, and the regclass has one
478 // value type, use it as the known type.
479 const CodeGenTarget &T = TP.getDAGISelEmitter().getTargetInfo();
480 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
481 if (RC->getNumValueTypes() == 1)
482 return RC->getValueTypeNum(0);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000483 return MVT::isUnknown;
Chris Lattner1531f202005-10-26 16:59:37 +0000484 } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
485 // Using a VTSDNode or CondCodeSDNode.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000486 return MVT::Other;
Evan Cheng0fc71982005-12-08 02:00:36 +0000487 } else if (R->isSubClassOf("ComplexPattern")) {
Evan Cheng3aa39f42005-12-08 02:14:08 +0000488 return TP.getDAGISelEmitter().getComplexPattern(R).getValueType();
Evan Cheng01f318b2005-12-14 02:21:57 +0000489 } else if (R->getName() == "node" || R->getName() == "srcvalue") {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000490 // Placeholder.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000491 return MVT::isUnknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000492 }
493
494 TP.error("Unknown node flavor used in pattern: " + R->getName());
495 return MVT::Other;
496}
497
Chris Lattner32707602005-09-08 23:22:48 +0000498/// ApplyTypeConstraints - Apply all of the type constraints relevent to
499/// this node and its children in the tree. This returns true if it makes a
500/// change, false otherwise. If a type contradiction is found, throw an
501/// exception.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000502bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
503 if (isLeaf()) {
Chris Lattner465c7372005-11-03 05:46:11 +0000504 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000505 // If it's a regclass or something else known, include the type.
506 return UpdateNodeType(getIntrinsicType(DI->getDef(), NotRegisters, TP),
507 TP);
Chris Lattner465c7372005-11-03 05:46:11 +0000508 } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
509 // Int inits are always integers. :)
510 bool MadeChange = UpdateNodeType(MVT::isInt, TP);
511
512 if (hasTypeSet()) {
513 unsigned Size = MVT::getSizeInBits(getType());
514 // Make sure that the value is representable for this type.
515 if (Size < 32) {
516 int Val = (II->getValue() << (32-Size)) >> (32-Size);
517 if (Val != II->getValue())
518 TP.error("Sign-extended integer value '" + itostr(II->getValue()) +
519 "' is out of range for type 'MVT::" +
520 getEnumName(getType()) + "'!");
521 }
522 }
523
524 return MadeChange;
525 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000526 return false;
527 }
Chris Lattner32707602005-09-08 23:22:48 +0000528
529 // special handling for set, which isn't really an SDNode.
530 if (getOperator()->getName() == "set") {
531 assert (getNumChildren() == 2 && "Only handle 2 operand set's for now!");
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000532 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
533 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner32707602005-09-08 23:22:48 +0000534
535 // Types of operands must match.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000536 MadeChange |= getChild(0)->UpdateNodeType(getChild(1)->getExtType(), TP);
537 MadeChange |= getChild(1)->UpdateNodeType(getChild(0)->getExtType(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000538 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
539 return MadeChange;
Chris Lattnerabbb6052005-09-15 21:42:00 +0000540 } else if (getOperator()->isSubClassOf("SDNode")) {
541 const SDNodeInfo &NI = TP.getDAGISelEmitter().getSDNodeInfo(getOperator());
542
543 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
544 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000545 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000546 // Branch, etc. do not produce results and top-level forms in instr pattern
547 // must have void types.
548 if (NI.getNumResults() == 0)
549 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
Chris Lattnerabbb6052005-09-15 21:42:00 +0000550 return MadeChange;
Chris Lattnera28aec12005-09-15 22:23:50 +0000551 } else if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattnerae5b3502005-09-15 21:57:35 +0000552 const DAGInstruction &Inst =
553 TP.getDAGISelEmitter().getInstruction(getOperator());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000554 bool MadeChange = false;
555 unsigned NumResults = Inst.getNumResults();
Chris Lattnerae5b3502005-09-15 21:57:35 +0000556
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000557 assert(NumResults <= 1 &&
558 "Only supports zero or one result instrs!");
Chris Lattnera28aec12005-09-15 22:23:50 +0000559 // Apply the result type to the node
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000560 if (NumResults == 0) {
561 MadeChange = UpdateNodeType(MVT::isVoid, TP);
562 } else {
563 Record *ResultNode = Inst.getResult(0);
564 assert(ResultNode->isSubClassOf("RegisterClass") &&
565 "Operands should be register classes!");
Nate Begemanddb39542005-12-01 00:06:14 +0000566
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000567 const CodeGenRegisterClass &RC =
568 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(ResultNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000569
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000570 // Get the first ValueType in the RegClass, it's as good as any.
571 MadeChange = UpdateNodeType(RC.getValueTypeNum(0), TP);
572 }
Chris Lattnera28aec12005-09-15 22:23:50 +0000573
574 if (getNumChildren() != Inst.getNumOperands())
575 TP.error("Instruction '" + getOperator()->getName() + " expects " +
576 utostr(Inst.getNumOperands()) + " operands, not " +
577 utostr(getNumChildren()) + " operands!");
578 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
Nate Begemanddb39542005-12-01 00:06:14 +0000579 Record *OperandNode = Inst.getOperand(i);
580 MVT::ValueType VT;
581 if (OperandNode->isSubClassOf("RegisterClass")) {
582 const CodeGenRegisterClass &RC =
583 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(OperandNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000584 VT = RC.getValueTypeNum(0);
Nate Begemanddb39542005-12-01 00:06:14 +0000585 } else if (OperandNode->isSubClassOf("Operand")) {
586 VT = getValueType(OperandNode->getValueAsDef("Type"));
587 } else {
588 assert(0 && "Unknown operand type!");
589 abort();
590 }
591
592 MadeChange |= getChild(i)->UpdateNodeType(VT, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000593 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnera28aec12005-09-15 22:23:50 +0000594 }
595 return MadeChange;
596 } else {
597 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
598
599 // Node transforms always take one operand, and take and return the same
600 // type.
601 if (getNumChildren() != 1)
602 TP.error("Node transform '" + getOperator()->getName() +
603 "' requires one operand!");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000604 bool MadeChange = UpdateNodeType(getChild(0)->getExtType(), TP);
605 MadeChange |= getChild(0)->UpdateNodeType(getExtType(), TP);
Chris Lattnera28aec12005-09-15 22:23:50 +0000606 return MadeChange;
Chris Lattner32707602005-09-08 23:22:48 +0000607 }
Chris Lattner32707602005-09-08 23:22:48 +0000608}
609
Chris Lattnere97603f2005-09-28 19:27:25 +0000610/// canPatternMatch - If it is impossible for this pattern to match on this
611/// target, fill in Reason and return false. Otherwise, return true. This is
612/// used as a santity check for .td files (to prevent people from writing stuff
613/// that can never possibly work), and to prevent the pattern permuter from
614/// generating stuff that is useless.
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000615bool TreePatternNode::canPatternMatch(std::string &Reason, DAGISelEmitter &ISE){
Chris Lattnere97603f2005-09-28 19:27:25 +0000616 if (isLeaf()) return true;
617
618 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
619 if (!getChild(i)->canPatternMatch(Reason, ISE))
620 return false;
Evan Cheng0fc71982005-12-08 02:00:36 +0000621
Chris Lattnere97603f2005-09-28 19:27:25 +0000622 // If this node is a commutative operator, check that the LHS isn't an
623 // immediate.
624 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(getOperator());
625 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
626 // Scan all of the operands of the node and make sure that only the last one
627 // is a constant node.
628 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i)
629 if (!getChild(i)->isLeaf() &&
630 getChild(i)->getOperator()->getName() == "imm") {
631 Reason = "Immediate value must be on the RHS of commutative operators!";
632 return false;
633 }
634 }
635
636 return true;
637}
Chris Lattner32707602005-09-08 23:22:48 +0000638
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000639//===----------------------------------------------------------------------===//
640// TreePattern implementation
641//
642
Chris Lattneredbd8712005-10-21 01:19:59 +0000643TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattneree9f0c32005-09-13 21:20:49 +0000644 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000645 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000646 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
647 Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000648}
649
Chris Lattneredbd8712005-10-21 01:19:59 +0000650TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000651 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000652 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000653 Trees.push_back(ParseTreePattern(Pat));
654}
655
Chris Lattneredbd8712005-10-21 01:19:59 +0000656TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000657 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000658 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000659 Trees.push_back(Pat);
660}
661
662
663
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000664void TreePattern::error(const std::string &Msg) const {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000665 dump();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000666 throw "In " + TheRecord->getName() + ": " + Msg;
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000667}
668
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000669TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
670 Record *Operator = Dag->getNodeType();
671
672 if (Operator->isSubClassOf("ValueType")) {
673 // If the operator is a ValueType, then this must be "type cast" of a leaf
674 // node.
675 if (Dag->getNumArgs() != 1)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000676 error("Type cast only takes one operand!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000677
678 Init *Arg = Dag->getArg(0);
679 TreePatternNode *New;
680 if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
Chris Lattner72fe91c2005-09-24 00:40:24 +0000681 Record *R = DI->getDef();
682 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
683 Dag->setArg(0, new DagInit(R,
684 std::vector<std::pair<Init*, std::string> >()));
Chris Lattner12cf9092005-11-16 23:14:54 +0000685 return ParseTreePattern(Dag);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000686 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000687 New = new TreePatternNode(DI);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000688 } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
689 New = ParseTreePattern(DI);
Chris Lattner0614b622005-11-02 06:49:14 +0000690 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
691 New = new TreePatternNode(II);
692 if (!Dag->getArgName(0).empty())
693 error("Constant int argument should not have a name!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000694 } else {
695 Arg->dump();
696 error("Unknown leaf value for tree pattern!");
697 return 0;
698 }
699
Chris Lattner32707602005-09-08 23:22:48 +0000700 // Apply the type cast.
701 New->UpdateNodeType(getValueType(Operator), *this);
Chris Lattner12cf9092005-11-16 23:14:54 +0000702 New->setName(Dag->getArgName(0));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000703 return New;
704 }
705
706 // Verify that this is something that makes sense for an operator.
707 if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
Chris Lattnerabbb6052005-09-15 21:42:00 +0000708 !Operator->isSubClassOf("Instruction") &&
709 !Operator->isSubClassOf("SDNodeXForm") &&
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000710 Operator->getName() != "set")
711 error("Unrecognized node '" + Operator->getName() + "'!");
712
Chris Lattneredbd8712005-10-21 01:19:59 +0000713 // Check to see if this is something that is illegal in an input pattern.
714 if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
715 Operator->isSubClassOf("SDNodeXForm")))
716 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
717
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000718 std::vector<TreePatternNode*> Children;
719
720 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
721 Init *Arg = Dag->getArg(i);
722 if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
723 Children.push_back(ParseTreePattern(DI));
Chris Lattner12cf9092005-11-16 23:14:54 +0000724 if (Children.back()->getName().empty())
725 Children.back()->setName(Dag->getArgName(i));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000726 } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
727 Record *R = DefI->getDef();
728 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
729 // TreePatternNode if its own.
730 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
731 Dag->setArg(i, new DagInit(R,
732 std::vector<std::pair<Init*, std::string> >()));
733 --i; // Revisit this node...
734 } else {
735 TreePatternNode *Node = new TreePatternNode(DefI);
736 Node->setName(Dag->getArgName(i));
737 Children.push_back(Node);
738
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000739 // Input argument?
740 if (R->getName() == "node") {
741 if (Dag->getArgName(i).empty())
742 error("'node' argument requires a name to match with operand list");
743 Args.push_back(Dag->getArgName(i));
744 }
745 }
Chris Lattner5d5a0562005-10-19 04:30:56 +0000746 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
747 TreePatternNode *Node = new TreePatternNode(II);
748 if (!Dag->getArgName(i).empty())
749 error("Constant int argument should not have a name!");
750 Children.push_back(Node);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000751 } else {
Chris Lattner5d5a0562005-10-19 04:30:56 +0000752 std::cerr << '"';
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000753 Arg->dump();
Chris Lattner5d5a0562005-10-19 04:30:56 +0000754 std::cerr << "\": ";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000755 error("Unknown leaf value for tree pattern!");
756 }
757 }
758
759 return new TreePatternNode(Operator, Children);
760}
761
Chris Lattner32707602005-09-08 23:22:48 +0000762/// InferAllTypes - Infer/propagate as many types throughout the expression
763/// patterns as possible. Return true if all types are infered, false
764/// otherwise. Throw an exception if a type contradiction is found.
765bool TreePattern::InferAllTypes() {
766 bool MadeChange = true;
767 while (MadeChange) {
768 MadeChange = false;
769 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000770 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
Chris Lattner32707602005-09-08 23:22:48 +0000771 }
772
773 bool HasUnresolvedTypes = false;
774 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
775 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
776 return !HasUnresolvedTypes;
777}
778
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000779void TreePattern::print(std::ostream &OS) const {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000780 OS << getRecord()->getName();
781 if (!Args.empty()) {
782 OS << "(" << Args[0];
783 for (unsigned i = 1, e = Args.size(); i != e; ++i)
784 OS << ", " << Args[i];
785 OS << ")";
786 }
787 OS << ": ";
788
789 if (Trees.size() > 1)
790 OS << "[\n";
791 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
792 OS << "\t";
793 Trees[i]->print(OS);
794 OS << "\n";
795 }
796
797 if (Trees.size() > 1)
798 OS << "]\n";
799}
800
801void TreePattern::dump() const { print(std::cerr); }
802
803
804
805//===----------------------------------------------------------------------===//
806// DAGISelEmitter implementation
807//
808
Chris Lattnerca559d02005-09-08 21:03:01 +0000809// Parse all of the SDNode definitions for the target, populating SDNodes.
810void DAGISelEmitter::ParseNodeInfo() {
811 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
812 while (!Nodes.empty()) {
813 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
814 Nodes.pop_back();
815 }
816}
817
Chris Lattner24eeeb82005-09-13 21:51:00 +0000818/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
819/// map, and emit them to the file as functions.
820void DAGISelEmitter::ParseNodeTransforms(std::ostream &OS) {
821 OS << "\n// Node transformations.\n";
822 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
823 while (!Xforms.empty()) {
824 Record *XFormNode = Xforms.back();
825 Record *SDNode = XFormNode->getValueAsDef("Opcode");
826 std::string Code = XFormNode->getValueAsCode("XFormFunction");
827 SDNodeXForms.insert(std::make_pair(XFormNode,
828 std::make_pair(SDNode, Code)));
829
Chris Lattner1048b7a2005-09-13 22:03:37 +0000830 if (!Code.empty()) {
Chris Lattner24eeeb82005-09-13 21:51:00 +0000831 std::string ClassName = getSDNodeInfo(SDNode).getSDClassName();
832 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
833
Chris Lattner1048b7a2005-09-13 22:03:37 +0000834 OS << "inline SDOperand Transform_" << XFormNode->getName()
Chris Lattner24eeeb82005-09-13 21:51:00 +0000835 << "(SDNode *" << C2 << ") {\n";
836 if (ClassName != "SDNode")
837 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
838 OS << Code << "\n}\n";
839 }
840
841 Xforms.pop_back();
842 }
843}
844
Evan Cheng0fc71982005-12-08 02:00:36 +0000845void DAGISelEmitter::ParseComplexPatterns() {
846 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
847 while (!AMs.empty()) {
848 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
849 AMs.pop_back();
850 }
851}
Chris Lattner24eeeb82005-09-13 21:51:00 +0000852
853
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000854/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
855/// file, building up the PatternFragments map. After we've collected them all,
856/// inline fragments together as necessary, so that there are no references left
857/// inside a pattern fragment to a pattern fragment.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000858///
859/// This also emits all of the predicate functions to the output file.
860///
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000861void DAGISelEmitter::ParsePatternFragments(std::ostream &OS) {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000862 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
863
864 // First step, parse all of the fragments and emit predicate functions.
865 OS << "\n// Predicate functions.\n";
866 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +0000867 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
Chris Lattneredbd8712005-10-21 01:19:59 +0000868 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000869 PatternFragments[Fragments[i]] = P;
Chris Lattneree9f0c32005-09-13 21:20:49 +0000870
871 // Validate the argument list, converting it to map, to discard duplicates.
872 std::vector<std::string> &Args = P->getArgList();
873 std::set<std::string> OperandsMap(Args.begin(), Args.end());
874
875 if (OperandsMap.count(""))
876 P->error("Cannot have unnamed 'node' values in pattern fragment!");
877
878 // Parse the operands list.
879 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
880 if (OpsList->getNodeType()->getName() != "ops")
881 P->error("Operands list should start with '(ops ... '!");
882
883 // Copy over the arguments.
884 Args.clear();
885 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
886 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
887 static_cast<DefInit*>(OpsList->getArg(j))->
888 getDef()->getName() != "node")
889 P->error("Operands list should all be 'node' values.");
890 if (OpsList->getArgName(j).empty())
891 P->error("Operands list should have names for each operand!");
892 if (!OperandsMap.count(OpsList->getArgName(j)))
893 P->error("'" + OpsList->getArgName(j) +
894 "' does not occur in pattern or was multiply specified!");
895 OperandsMap.erase(OpsList->getArgName(j));
896 Args.push_back(OpsList->getArgName(j));
897 }
898
899 if (!OperandsMap.empty())
900 P->error("Operands list does not contain an entry for operand '" +
901 *OperandsMap.begin() + "'!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000902
903 // If there is a code init for this fragment, emit the predicate code and
904 // keep track of the fact that this fragment uses it.
Chris Lattner24eeeb82005-09-13 21:51:00 +0000905 std::string Code = Fragments[i]->getValueAsCode("Predicate");
906 if (!Code.empty()) {
Chris Lattner37937092005-09-09 01:15:01 +0000907 assert(!P->getOnlyTree()->isLeaf() && "Can't be a leaf!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000908 std::string ClassName =
Chris Lattner37937092005-09-09 01:15:01 +0000909 getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000910 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
911
Chris Lattner1048b7a2005-09-13 22:03:37 +0000912 OS << "inline bool Predicate_" << Fragments[i]->getName()
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000913 << "(SDNode *" << C2 << ") {\n";
914 if (ClassName != "SDNode")
915 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
Chris Lattner24eeeb82005-09-13 21:51:00 +0000916 OS << Code << "\n}\n";
Chris Lattner37937092005-09-09 01:15:01 +0000917 P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000918 }
Chris Lattner6de8b532005-09-13 21:59:15 +0000919
920 // If there is a node transformation corresponding to this, keep track of
921 // it.
922 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
923 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
Chris Lattnerb0276202005-09-14 22:55:26 +0000924 P->getOnlyTree()->setTransformFn(Transform);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000925 }
926
927 OS << "\n\n";
928
929 // Now that we've parsed all of the tree fragments, do a closure on them so
930 // that there are not references to PatFrags left inside of them.
931 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
932 E = PatternFragments.end(); I != E; ++I) {
Chris Lattner32707602005-09-08 23:22:48 +0000933 TreePattern *ThePat = I->second;
934 ThePat->InlinePatternFragments();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000935
Chris Lattner32707602005-09-08 23:22:48 +0000936 // Infer as many types as possible. Don't worry about it if we don't infer
937 // all of them, some may depend on the inputs of the pattern.
938 try {
939 ThePat->InferAllTypes();
940 } catch (...) {
941 // If this pattern fragment is not supported by this target (no types can
942 // satisfy its constraints), just ignore it. If the bogus pattern is
943 // actually used by instructions, the type consistency error will be
944 // reported there.
945 }
946
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000947 // If debugging, print out the pattern fragment result.
Chris Lattner32707602005-09-08 23:22:48 +0000948 DEBUG(ThePat->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000949 }
950}
951
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000952/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
Chris Lattnerf1311842005-09-14 23:05:13 +0000953/// instruction input. Return true if this is a real use.
954static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Evan Cheng7b05bd52005-12-23 22:11:47 +0000955 std::map<std::string, TreePatternNode*> &InstInputs,
956 std::vector<Record*> &InstImpInputs) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000957 // No name -> not interesting.
Chris Lattner7da852f2005-09-14 22:06:36 +0000958 if (Pat->getName().empty()) {
959 if (Pat->isLeaf()) {
960 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
961 if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
962 I->error("Input " + DI->getDef()->getName() + " must be named!");
Evan Cheng7b05bd52005-12-23 22:11:47 +0000963 else if (DI && DI->getDef()->isSubClassOf("Register"))
964 InstImpInputs.push_back(DI->getDef());
Chris Lattner7da852f2005-09-14 22:06:36 +0000965 }
Chris Lattnerf1311842005-09-14 23:05:13 +0000966 return false;
Chris Lattner7da852f2005-09-14 22:06:36 +0000967 }
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000968
969 Record *Rec;
970 if (Pat->isLeaf()) {
971 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
972 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
973 Rec = DI->getDef();
974 } else {
975 assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
976 Rec = Pat->getOperator();
977 }
978
Evan Cheng01f318b2005-12-14 02:21:57 +0000979 // SRCVALUE nodes are ignored.
980 if (Rec->getName() == "srcvalue")
981 return false;
982
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000983 TreePatternNode *&Slot = InstInputs[Pat->getName()];
984 if (!Slot) {
985 Slot = Pat;
986 } else {
987 Record *SlotRec;
988 if (Slot->isLeaf()) {
Chris Lattnerb9f01eb2005-09-16 00:29:46 +0000989 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000990 } else {
991 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
992 SlotRec = Slot->getOperator();
993 }
994
995 // Ensure that the inputs agree if we've already seen this input.
996 if (Rec != SlotRec)
997 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000998 if (Slot->getExtType() != Pat->getExtType())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000999 I->error("All $" + Pat->getName() + " inputs must agree with each other");
1000 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001001 return true;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001002}
1003
1004/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1005/// part of "I", the instruction), computing the set of inputs and outputs of
1006/// the pattern. Report errors if we see anything naughty.
1007void DAGISelEmitter::
1008FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1009 std::map<std::string, TreePatternNode*> &InstInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001010 std::map<std::string, Record*> &InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001011 std::vector<Record*> &InstImpInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001012 std::vector<Record*> &InstImpResults) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001013 if (Pat->isLeaf()) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00001014 bool isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerf1311842005-09-14 23:05:13 +00001015 if (!isUse && Pat->getTransformFn())
1016 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001017 return;
1018 } else if (Pat->getOperator()->getName() != "set") {
1019 // If this is not a set, verify that the children nodes are not void typed,
1020 // and recurse.
1021 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001022 if (Pat->getChild(i)->getExtType() == MVT::isVoid)
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001023 I->error("Cannot have void nodes inside of patterns!");
Evan Chengbcecf332005-12-17 01:19:28 +00001024 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001025 InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001026 }
1027
1028 // If this is a non-leaf node with no children, treat it basically as if
1029 // it were a leaf. This handles nodes like (imm).
Chris Lattnerf1311842005-09-14 23:05:13 +00001030 bool isUse = false;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001031 if (Pat->getNumChildren() == 0)
Evan Cheng7b05bd52005-12-23 22:11:47 +00001032 isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001033
Chris Lattnerf1311842005-09-14 23:05:13 +00001034 if (!isUse && Pat->getTransformFn())
1035 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001036 return;
1037 }
1038
1039 // Otherwise, this is a set, validate and collect instruction results.
1040 if (Pat->getNumChildren() == 0)
1041 I->error("set requires operands!");
1042 else if (Pat->getNumChildren() & 1)
1043 I->error("set requires an even number of operands");
1044
Chris Lattnerf1311842005-09-14 23:05:13 +00001045 if (Pat->getTransformFn())
1046 I->error("Cannot specify a transform function on a set node!");
1047
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001048 // Check the set destinations.
1049 unsigned NumValues = Pat->getNumChildren()/2;
1050 for (unsigned i = 0; i != NumValues; ++i) {
1051 TreePatternNode *Dest = Pat->getChild(i);
1052 if (!Dest->isLeaf())
Evan Cheng86217892005-12-12 19:37:43 +00001053 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001054
1055 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1056 if (!Val)
Evan Cheng86217892005-12-12 19:37:43 +00001057 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001058
Evan Chengbcecf332005-12-17 01:19:28 +00001059 if (Val->getDef()->isSubClassOf("RegisterClass")) {
1060 if (Dest->getName().empty())
1061 I->error("set destination must have a name!");
1062 if (InstResults.count(Dest->getName()))
1063 I->error("cannot set '" + Dest->getName() +"' multiple times");
1064 InstResults[Dest->getName()] = Val->getDef();
Evan Cheng7b05bd52005-12-23 22:11:47 +00001065 } else if (Val->getDef()->isSubClassOf("Register")) {
Evan Chengbcecf332005-12-17 01:19:28 +00001066 InstImpResults.push_back(Val->getDef());
1067 } else {
1068 I->error("set destination should be a register!");
1069 }
1070
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001071 // Verify and collect info from the computation.
1072 FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
Evan Cheng7b05bd52005-12-23 22:11:47 +00001073 InstInputs, InstResults,
1074 InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001075 }
1076}
1077
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001078/// ParseInstructions - Parse all of the instructions, inlining and resolving
1079/// any fragments involved. This populates the Instructions list with fully
1080/// resolved instructions.
1081void DAGISelEmitter::ParseInstructions() {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001082 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1083
1084 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001085 ListInit *LI = 0;
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001086
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001087 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1088 LI = Instrs[i]->getValueAsListInit("Pattern");
1089
1090 // If there is no pattern, only collect minimal information about the
1091 // instruction for its operand list. We have to assume that there is one
1092 // result, as we have no detailed info.
1093 if (!LI || LI->getSize() == 0) {
Nate Begemanddb39542005-12-01 00:06:14 +00001094 std::vector<Record*> Results;
1095 std::vector<Record*> Operands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001096
1097 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001098
Evan Cheng3a217f32005-12-22 02:35:21 +00001099 if (InstInfo.OperandList.size() != 0) {
1100 // It's possible for some instruction, e.g. RET for X86 that only has an
1101 // implicit flag operand.
1102 // FIXME: temporary hack...
1103 if (InstInfo.isReturn || InstInfo.isBranch || InstInfo.isCall ||
1104 InstInfo.isStore) {
1105 // These produce no results
1106 for (unsigned j = 0, e = InstInfo.OperandList.size(); j < e; ++j)
1107 Operands.push_back(InstInfo.OperandList[j].Rec);
1108 } else {
1109 // Assume the first operand is the result.
1110 Results.push_back(InstInfo.OperandList[0].Rec);
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001111
Evan Cheng3a217f32005-12-22 02:35:21 +00001112 // The rest are inputs.
1113 for (unsigned j = 1, e = InstInfo.OperandList.size(); j < e; ++j)
1114 Operands.push_back(InstInfo.OperandList[j].Rec);
1115 }
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001116 }
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001117
1118 // Create and insert the instruction.
Evan Chengbcecf332005-12-17 01:19:28 +00001119 std::vector<Record*> ImpResults;
1120 std::vector<Record*> ImpOperands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001121 Instructions.insert(std::make_pair(Instrs[i],
Evan Cheng7b05bd52005-12-23 22:11:47 +00001122 DAGInstruction(0, Results, Operands, ImpResults,
1123 ImpOperands)));
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001124 continue; // no pattern.
1125 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001126
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001127 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001128 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001129 // Inline pattern fragments into it.
Chris Lattner32707602005-09-08 23:22:48 +00001130 I->InlinePatternFragments();
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001131
Chris Lattner95f6b762005-09-08 23:26:30 +00001132 // Infer as many types as possible. If we cannot infer all of them, we can
1133 // never do anything with this instruction pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001134 if (!I->InferAllTypes())
Chris Lattner32707602005-09-08 23:22:48 +00001135 I->error("Could not infer all types in pattern!");
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001136
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001137 // InstInputs - Keep track of all of the inputs of the instruction, along
1138 // with the record they are declared as.
1139 std::map<std::string, TreePatternNode*> InstInputs;
1140
1141 // InstResults - Keep track of all the virtual registers that are 'set'
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001142 // in the instruction, including what reg class they are.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001143 std::map<std::string, Record*> InstResults;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001144
1145 std::vector<Record*> InstImpInputs;
Evan Chengbcecf332005-12-17 01:19:28 +00001146 std::vector<Record*> InstImpResults;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001147
Chris Lattner1f39e292005-09-14 00:09:24 +00001148 // Verify that the top-level forms in the instruction are of void type, and
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001149 // fill in the InstResults map.
Chris Lattner1f39e292005-09-14 00:09:24 +00001150 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1151 TreePatternNode *Pat = I->getTree(j);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001152 if (Pat->getExtType() != MVT::isVoid)
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001153 I->error("Top-level forms in instruction pattern should have"
1154 " void types");
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001155
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001156 // Find inputs and outputs, and verify the structure of the uses/defs.
Evan Chengbcecf332005-12-17 01:19:28 +00001157 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001158 InstImpInputs, InstImpResults);
Chris Lattner1f39e292005-09-14 00:09:24 +00001159 }
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001160
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001161 // Now that we have inputs and outputs of the pattern, inspect the operands
1162 // list for the instruction. This determines the order that operands are
1163 // added to the machine instruction the node corresponds to.
1164 unsigned NumResults = InstResults.size();
Chris Lattner39e8af92005-09-14 18:19:25 +00001165
1166 // Parse the operands list from the (ops) list, validating it.
1167 std::vector<std::string> &Args = I->getArgList();
1168 assert(Args.empty() && "Args list should still be empty here!");
1169 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1170
1171 // Check that all of the results occur first in the list.
Nate Begemanddb39542005-12-01 00:06:14 +00001172 std::vector<Record*> Results;
Chris Lattner39e8af92005-09-14 18:19:25 +00001173 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattner3a7319d2005-09-14 21:04:12 +00001174 if (i == CGI.OperandList.size())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001175 I->error("'" + InstResults.begin()->first +
1176 "' set but does not appear in operand list!");
Chris Lattner39e8af92005-09-14 18:19:25 +00001177 const std::string &OpName = CGI.OperandList[i].Name;
Chris Lattner39e8af92005-09-14 18:19:25 +00001178
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001179 // Check that it exists in InstResults.
1180 Record *R = InstResults[OpName];
Chris Lattner39e8af92005-09-14 18:19:25 +00001181 if (R == 0)
1182 I->error("Operand $" + OpName + " should be a set destination: all "
1183 "outputs must occur before inputs in operand list!");
1184
1185 if (CGI.OperandList[i].Rec != R)
1186 I->error("Operand $" + OpName + " class mismatch!");
1187
Chris Lattnerae6d8282005-09-15 21:51:12 +00001188 // Remember the return type.
Nate Begemanddb39542005-12-01 00:06:14 +00001189 Results.push_back(CGI.OperandList[i].Rec);
Chris Lattnerae6d8282005-09-15 21:51:12 +00001190
Chris Lattner39e8af92005-09-14 18:19:25 +00001191 // Okay, this one checks out.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001192 InstResults.erase(OpName);
1193 }
1194
Chris Lattner0b592252005-09-14 21:59:34 +00001195 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1196 // the copy while we're checking the inputs.
1197 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
Chris Lattnerb0276202005-09-14 22:55:26 +00001198
1199 std::vector<TreePatternNode*> ResultNodeOperands;
Nate Begemanddb39542005-12-01 00:06:14 +00001200 std::vector<Record*> Operands;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001201 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1202 const std::string &OpName = CGI.OperandList[i].Name;
1203 if (OpName.empty())
1204 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1205
Chris Lattner0b592252005-09-14 21:59:34 +00001206 if (!InstInputsCheck.count(OpName))
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001207 I->error("Operand $" + OpName +
1208 " does not appear in the instruction pattern");
Chris Lattner0b592252005-09-14 21:59:34 +00001209 TreePatternNode *InVal = InstInputsCheck[OpName];
Chris Lattnerb0276202005-09-14 22:55:26 +00001210 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Nate Begemanddb39542005-12-01 00:06:14 +00001211
1212 if (InVal->isLeaf() &&
1213 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1214 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Evan Cheng0fc71982005-12-08 02:00:36 +00001215 if (CGI.OperandList[i].Rec != InRec &&
1216 !InRec->isSubClassOf("ComplexPattern"))
Nate Begemanddb39542005-12-01 00:06:14 +00001217 I->error("Operand $" + OpName +
Evan Cheng0fc71982005-12-08 02:00:36 +00001218 "'s register class disagrees between the operand and pattern");
Nate Begemanddb39542005-12-01 00:06:14 +00001219 }
1220 Operands.push_back(CGI.OperandList[i].Rec);
Chris Lattnerb0276202005-09-14 22:55:26 +00001221
Chris Lattner2175c182005-09-14 23:01:59 +00001222 // Construct the result for the dest-pattern operand list.
1223 TreePatternNode *OpNode = InVal->clone();
1224
1225 // No predicate is useful on the result.
1226 OpNode->setPredicateFn("");
1227
1228 // Promote the xform function to be an explicit node if set.
1229 if (Record *Xform = OpNode->getTransformFn()) {
1230 OpNode->setTransformFn(0);
1231 std::vector<TreePatternNode*> Children;
1232 Children.push_back(OpNode);
1233 OpNode = new TreePatternNode(Xform, Children);
1234 }
1235
1236 ResultNodeOperands.push_back(OpNode);
Chris Lattner39e8af92005-09-14 18:19:25 +00001237 }
1238
Chris Lattner0b592252005-09-14 21:59:34 +00001239 if (!InstInputsCheck.empty())
1240 I->error("Input operand $" + InstInputsCheck.begin()->first +
1241 " occurs in pattern but not in operands list!");
Chris Lattnerb0276202005-09-14 22:55:26 +00001242
1243 TreePatternNode *ResultPattern =
1244 new TreePatternNode(I->getRecord(), ResultNodeOperands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001245
1246 // Create and insert the instruction.
Evan Cheng7b05bd52005-12-23 22:11:47 +00001247 DAGInstruction TheInst(I, Results, Operands, InstImpResults, InstImpInputs);
Chris Lattnera28aec12005-09-15 22:23:50 +00001248 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1249
1250 // Use a temporary tree pattern to infer all types and make sure that the
1251 // constructed result is correct. This depends on the instruction already
1252 // being inserted into the Instructions map.
Chris Lattneredbd8712005-10-21 01:19:59 +00001253 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattnera28aec12005-09-15 22:23:50 +00001254 Temp.InferAllTypes();
1255
1256 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1257 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Chris Lattnerb0276202005-09-14 22:55:26 +00001258
Chris Lattner32707602005-09-08 23:22:48 +00001259 DEBUG(I->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001260 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001261
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001262 // If we can, convert the instructions to be patterns that are matched!
Chris Lattnerae5b3502005-09-15 21:57:35 +00001263 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1264 E = Instructions.end(); II != E; ++II) {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001265 DAGInstruction &TheInst = II->second;
1266 TreePattern *I = TheInst.getPattern();
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001267 if (I == 0) continue; // No pattern.
Evan Chengdd304dd2005-12-05 23:08:55 +00001268
Chris Lattner1f39e292005-09-14 00:09:24 +00001269 if (I->getNumTrees() != 1) {
1270 std::cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1271 continue;
1272 }
1273 TreePatternNode *Pattern = I->getTree(0);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001274 TreePatternNode *SrcPattern;
Evan Chengbcecf332005-12-17 01:19:28 +00001275 if (Pattern->getOperator()->getName() == "set") {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001276 if (Pattern->getNumChildren() != 2)
1277 continue; // Not a set of a single value (not handled so far)
1278
1279 SrcPattern = Pattern->getChild(1)->clone();
Evan Chengbcecf332005-12-17 01:19:28 +00001280 } else{
1281 // Not a set (store or something?)
1282 SrcPattern = Pattern;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001283 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001284
1285 std::string Reason;
1286 if (!SrcPattern->canPatternMatch(Reason, *this))
1287 I->error("Instruction can never match: " + Reason);
1288
Evan Cheng58e84a62005-12-14 22:02:59 +00001289 Record *Instr = II->first;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001290 TreePatternNode *DstPattern = TheInst.getResultPattern();
Evan Cheng58e84a62005-12-14 22:02:59 +00001291 PatternsToMatch.
1292 push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
1293 SrcPattern, DstPattern));
Chris Lattner1f39e292005-09-14 00:09:24 +00001294 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001295}
1296
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001297void DAGISelEmitter::ParsePatterns() {
Chris Lattnerabbb6052005-09-15 21:42:00 +00001298 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001299
Chris Lattnerabbb6052005-09-15 21:42:00 +00001300 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001301 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
Chris Lattneredbd8712005-10-21 01:19:59 +00001302 TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001303
Chris Lattnerabbb6052005-09-15 21:42:00 +00001304 // Inline pattern fragments into it.
1305 Pattern->InlinePatternFragments();
1306
1307 // Infer as many types as possible. If we cannot infer all of them, we can
1308 // never do anything with this pattern: report it to the user.
1309 if (!Pattern->InferAllTypes())
1310 Pattern->error("Could not infer all types in pattern!");
Chris Lattner09c03392005-11-17 17:43:52 +00001311
1312 // Validate that the input pattern is correct.
1313 {
1314 std::map<std::string, TreePatternNode*> InstInputs;
1315 std::map<std::string, Record*> InstResults;
Evan Cheng7b05bd52005-12-23 22:11:47 +00001316 std::vector<Record*> InstImpInputs;
Evan Chengbcecf332005-12-17 01:19:28 +00001317 std::vector<Record*> InstImpResults;
Chris Lattner09c03392005-11-17 17:43:52 +00001318 FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
Evan Chengbcecf332005-12-17 01:19:28 +00001319 InstInputs, InstResults,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001320 InstImpInputs, InstImpResults);
Chris Lattner09c03392005-11-17 17:43:52 +00001321 }
Chris Lattnerabbb6052005-09-15 21:42:00 +00001322
1323 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1324 if (LI->getSize() == 0) continue; // no pattern.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001325
1326 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001327 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
Chris Lattnerabbb6052005-09-15 21:42:00 +00001328
1329 // Inline pattern fragments into it.
1330 Result->InlinePatternFragments();
1331
1332 // Infer as many types as possible. If we cannot infer all of them, we can
1333 // never do anything with this pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001334 if (!Result->InferAllTypes())
Chris Lattnerae5b3502005-09-15 21:57:35 +00001335 Result->error("Could not infer all types in pattern result!");
Chris Lattnerabbb6052005-09-15 21:42:00 +00001336
1337 if (Result->getNumTrees() != 1)
1338 Result->error("Cannot handle instructions producing instructions "
1339 "with temporaries yet!");
Chris Lattnere97603f2005-09-28 19:27:25 +00001340
1341 std::string Reason;
1342 if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1343 Pattern->error("Pattern can never match: " + Reason);
1344
Evan Cheng58e84a62005-12-14 22:02:59 +00001345 PatternsToMatch.
1346 push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
1347 Pattern->getOnlyTree(),
1348 Result->getOnlyTree()));
Chris Lattnerabbb6052005-09-15 21:42:00 +00001349 }
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001350}
1351
Chris Lattnere46e17b2005-09-29 19:28:10 +00001352/// CombineChildVariants - Given a bunch of permutations of each child of the
1353/// 'operator' node, put them together in all possible ways.
1354static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattneraf302912005-09-29 22:36:54 +00001355 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
Chris Lattnere46e17b2005-09-29 19:28:10 +00001356 std::vector<TreePatternNode*> &OutVariants,
1357 DAGISelEmitter &ISE) {
Chris Lattneraf302912005-09-29 22:36:54 +00001358 // Make sure that each operand has at least one variant to choose from.
1359 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1360 if (ChildVariants[i].empty())
1361 return;
1362
Chris Lattnere46e17b2005-09-29 19:28:10 +00001363 // The end result is an all-pairs construction of the resultant pattern.
1364 std::vector<unsigned> Idxs;
1365 Idxs.resize(ChildVariants.size());
1366 bool NotDone = true;
1367 while (NotDone) {
1368 // Create the variant and add it to the output list.
1369 std::vector<TreePatternNode*> NewChildren;
1370 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1371 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1372 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1373
1374 // Copy over properties.
1375 R->setName(Orig->getName());
1376 R->setPredicateFn(Orig->getPredicateFn());
1377 R->setTransformFn(Orig->getTransformFn());
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001378 R->setType(Orig->getExtType());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001379
1380 // If this pattern cannot every match, do not include it as a variant.
1381 std::string ErrString;
1382 if (!R->canPatternMatch(ErrString, ISE)) {
1383 delete R;
1384 } else {
1385 bool AlreadyExists = false;
1386
1387 // Scan to see if this pattern has already been emitted. We can get
1388 // duplication due to things like commuting:
1389 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1390 // which are the same pattern. Ignore the dups.
1391 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1392 if (R->isIsomorphicTo(OutVariants[i])) {
1393 AlreadyExists = true;
1394 break;
1395 }
1396
1397 if (AlreadyExists)
1398 delete R;
1399 else
1400 OutVariants.push_back(R);
1401 }
1402
1403 // Increment indices to the next permutation.
1404 NotDone = false;
1405 // Look for something we can increment without causing a wrap-around.
1406 for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1407 if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1408 NotDone = true; // Found something to increment.
1409 break;
1410 }
1411 Idxs[IdxsIdx] = 0;
1412 }
1413 }
1414}
1415
Chris Lattneraf302912005-09-29 22:36:54 +00001416/// CombineChildVariants - A helper function for binary operators.
1417///
1418static void CombineChildVariants(TreePatternNode *Orig,
1419 const std::vector<TreePatternNode*> &LHS,
1420 const std::vector<TreePatternNode*> &RHS,
1421 std::vector<TreePatternNode*> &OutVariants,
1422 DAGISelEmitter &ISE) {
1423 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1424 ChildVariants.push_back(LHS);
1425 ChildVariants.push_back(RHS);
1426 CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1427}
1428
1429
1430static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1431 std::vector<TreePatternNode *> &Children) {
1432 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1433 Record *Operator = N->getOperator();
1434
1435 // Only permit raw nodes.
1436 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1437 N->getTransformFn()) {
1438 Children.push_back(N);
1439 return;
1440 }
1441
1442 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1443 Children.push_back(N->getChild(0));
1444 else
1445 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1446
1447 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1448 Children.push_back(N->getChild(1));
1449 else
1450 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1451}
1452
Chris Lattnere46e17b2005-09-29 19:28:10 +00001453/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1454/// the (potentially recursive) pattern by using algebraic laws.
1455///
1456static void GenerateVariantsOf(TreePatternNode *N,
1457 std::vector<TreePatternNode*> &OutVariants,
1458 DAGISelEmitter &ISE) {
1459 // We cannot permute leaves.
1460 if (N->isLeaf()) {
1461 OutVariants.push_back(N);
1462 return;
1463 }
1464
1465 // Look up interesting info about the node.
1466 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
1467
1468 // If this node is associative, reassociate.
Chris Lattneraf302912005-09-29 22:36:54 +00001469 if (NodeInfo.hasProperty(SDNodeInfo::SDNPAssociative)) {
1470 // Reassociate by pulling together all of the linked operators
1471 std::vector<TreePatternNode*> MaximalChildren;
1472 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1473
1474 // Only handle child sizes of 3. Otherwise we'll end up trying too many
1475 // permutations.
1476 if (MaximalChildren.size() == 3) {
1477 // Find the variants of all of our maximal children.
1478 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1479 GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1480 GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1481 GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1482
1483 // There are only two ways we can permute the tree:
1484 // (A op B) op C and A op (B op C)
1485 // Within these forms, we can also permute A/B/C.
1486
1487 // Generate legal pair permutations of A/B/C.
1488 std::vector<TreePatternNode*> ABVariants;
1489 std::vector<TreePatternNode*> BAVariants;
1490 std::vector<TreePatternNode*> ACVariants;
1491 std::vector<TreePatternNode*> CAVariants;
1492 std::vector<TreePatternNode*> BCVariants;
1493 std::vector<TreePatternNode*> CBVariants;
1494 CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1495 CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1496 CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1497 CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1498 CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1499 CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1500
1501 // Combine those into the result: (x op x) op x
1502 CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1503 CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1504 CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1505 CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1506 CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1507 CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1508
1509 // Combine those into the result: x op (x op x)
1510 CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1511 CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1512 CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1513 CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1514 CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1515 CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1516 return;
1517 }
1518 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00001519
1520 // Compute permutations of all children.
1521 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1522 ChildVariants.resize(N->getNumChildren());
1523 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1524 GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1525
1526 // Build all permutations based on how the children were formed.
1527 CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1528
1529 // If this node is commutative, consider the commuted order.
1530 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
1531 assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
Chris Lattneraf302912005-09-29 22:36:54 +00001532 // Consider the commuted order.
1533 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1534 OutVariants, ISE);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001535 }
1536}
1537
1538
Chris Lattnere97603f2005-09-28 19:27:25 +00001539// GenerateVariants - Generate variants. For example, commutative patterns can
1540// match multiple ways. Add them to PatternsToMatch as well.
1541void DAGISelEmitter::GenerateVariants() {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001542
1543 DEBUG(std::cerr << "Generating instruction variants.\n");
1544
1545 // Loop over all of the patterns we've collected, checking to see if we can
1546 // generate variants of the instruction, through the exploitation of
1547 // identities. This permits the target to provide agressive matching without
1548 // the .td file having to contain tons of variants of instructions.
1549 //
1550 // Note that this loop adds new patterns to the PatternsToMatch list, but we
1551 // intentionally do not reconsider these. Any variants of added patterns have
1552 // already been added.
1553 //
1554 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1555 std::vector<TreePatternNode*> Variants;
Evan Cheng58e84a62005-12-14 22:02:59 +00001556 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001557
1558 assert(!Variants.empty() && "Must create at least original variant!");
Chris Lattnere46e17b2005-09-29 19:28:10 +00001559 Variants.erase(Variants.begin()); // Remove the original pattern.
1560
1561 if (Variants.empty()) // No variants for this pattern.
1562 continue;
1563
1564 DEBUG(std::cerr << "FOUND VARIANTS OF: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00001565 PatternsToMatch[i].getSrcPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00001566 std::cerr << "\n");
1567
1568 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1569 TreePatternNode *Variant = Variants[v];
1570
1571 DEBUG(std::cerr << " VAR#" << v << ": ";
1572 Variant->dump();
1573 std::cerr << "\n");
1574
1575 // Scan to see if an instruction or explicit pattern already matches this.
1576 bool AlreadyExists = false;
1577 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1578 // Check to see if this variant already exists.
Evan Cheng58e84a62005-12-14 22:02:59 +00001579 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern())) {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001580 DEBUG(std::cerr << " *** ALREADY EXISTS, ignoring variant.\n");
1581 AlreadyExists = true;
1582 break;
1583 }
1584 }
1585 // If we already have it, ignore the variant.
1586 if (AlreadyExists) continue;
1587
1588 // Otherwise, add it to the list of patterns we have.
Evan Cheng58e84a62005-12-14 22:02:59 +00001589 PatternsToMatch.
1590 push_back(PatternToMatch(PatternsToMatch[i].getPredicates(),
1591 Variant, PatternsToMatch[i].getDstPattern()));
Chris Lattnere46e17b2005-09-29 19:28:10 +00001592 }
1593
1594 DEBUG(std::cerr << "\n");
1595 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001596}
1597
Chris Lattner7cf2fe62005-09-28 20:58:06 +00001598
Evan Cheng0fc71982005-12-08 02:00:36 +00001599// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
1600// ComplexPattern.
1601static bool NodeIsComplexPattern(TreePatternNode *N)
1602{
1603 return (N->isLeaf() &&
1604 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1605 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1606 isSubClassOf("ComplexPattern"));
1607}
1608
1609// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
1610// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
1611static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
1612 DAGISelEmitter &ISE)
1613{
1614 if (N->isLeaf() &&
1615 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1616 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1617 isSubClassOf("ComplexPattern")) {
1618 return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
1619 ->getDef());
1620 }
1621 return NULL;
1622}
1623
Chris Lattner05814af2005-09-28 17:57:56 +00001624/// getPatternSize - Return the 'size' of this pattern. We want to match large
1625/// patterns before small ones. This is used to determine the size of a
1626/// pattern.
Evan Cheng0fc71982005-12-08 02:00:36 +00001627static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001628 assert(isExtIntegerVT(P->getExtType()) ||
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001629 isExtFloatingPointVT(P->getExtType()) ||
Evan Chengbcecf332005-12-17 01:19:28 +00001630 P->getExtType() == MVT::isVoid ||
1631 P->getExtType() == MVT::Flag && "Not a valid pattern node to size!");
Chris Lattner05814af2005-09-28 17:57:56 +00001632 unsigned Size = 1; // The node itself.
Evan Cheng0fc71982005-12-08 02:00:36 +00001633
1634 // FIXME: This is a hack to statically increase the priority of patterns
1635 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
1636 // Later we can allow complexity / cost for each pattern to be (optionally)
1637 // specified. To get best possible pattern match we'll need to dynamically
1638 // calculate the complexity of all patterns a dag can potentially map to.
1639 const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
1640 if (AM)
1641 Size += AM->getNumOperands();
1642
Chris Lattner05814af2005-09-28 17:57:56 +00001643 // Count children in the count if they are also nodes.
1644 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
1645 TreePatternNode *Child = P->getChild(i);
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001646 if (!Child->isLeaf() && Child->getExtType() != MVT::Other)
Evan Cheng0fc71982005-12-08 02:00:36 +00001647 Size += getPatternSize(Child, ISE);
1648 else if (Child->isLeaf()) {
1649 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
1650 ++Size; // Matches a ConstantSDNode.
1651 else if (NodeIsComplexPattern(Child))
1652 Size += getPatternSize(Child, ISE);
Chris Lattner2f041d42005-10-19 04:41:05 +00001653 }
Chris Lattner05814af2005-09-28 17:57:56 +00001654 }
1655
1656 return Size;
1657}
1658
1659/// getResultPatternCost - Compute the number of instructions for this pattern.
1660/// This is a temporary hack. We should really include the instruction
1661/// latencies in this calculation.
1662static unsigned getResultPatternCost(TreePatternNode *P) {
1663 if (P->isLeaf()) return 0;
1664
1665 unsigned Cost = P->getOperator()->isSubClassOf("Instruction");
1666 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
1667 Cost += getResultPatternCost(P->getChild(i));
1668 return Cost;
1669}
1670
1671// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
1672// In particular, we want to match maximal patterns first and lowest cost within
1673// a particular complexity first.
1674struct PatternSortingPredicate {
Evan Cheng0fc71982005-12-08 02:00:36 +00001675 PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
1676 DAGISelEmitter &ISE;
1677
Evan Cheng58e84a62005-12-14 22:02:59 +00001678 bool operator()(PatternToMatch *LHS,
1679 PatternToMatch *RHS) {
1680 unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), ISE);
1681 unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00001682 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
1683 if (LHSSize < RHSSize) return false;
1684
1685 // If the patterns have equal complexity, compare generated instruction cost
Evan Cheng58e84a62005-12-14 22:02:59 +00001686 return getResultPatternCost(LHS->getDstPattern()) <
1687 getResultPatternCost(RHS->getDstPattern());
Chris Lattner05814af2005-09-28 17:57:56 +00001688 }
1689};
1690
Nate Begeman6510b222005-12-01 04:51:06 +00001691/// getRegisterValueType - Look up and return the first ValueType of specified
1692/// RegisterClass record
Evan Cheng66a48bb2005-12-01 00:18:45 +00001693static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +00001694 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
1695 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +00001696 return MVT::Other;
1697}
1698
Chris Lattner72fe91c2005-09-24 00:40:24 +00001699
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001700/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
1701/// type information from it.
1702static void RemoveAllTypes(TreePatternNode *N) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001703 N->setType(MVT::isUnknown);
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001704 if (!N->isLeaf())
1705 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1706 RemoveAllTypes(N->getChild(i));
1707}
Chris Lattner72fe91c2005-09-24 00:40:24 +00001708
Chris Lattner0614b622005-11-02 06:49:14 +00001709Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
1710 Record *N = Records.getDef(Name);
1711 assert(N && N->isSubClassOf("SDNode") && "Bad argument");
1712 return N;
1713}
1714
Evan Cheng7b05bd52005-12-23 22:11:47 +00001715/// NodeHasChain - return true if TreePatternNode has the property
1716/// 'hasChain', meaning it reads a ctrl-flow chain operand and writes
1717/// a chain result.
1718static bool NodeHasChain(TreePatternNode *N, DAGISelEmitter &ISE)
1719{
1720 if (N->isLeaf()) return false;
1721 Record *Operator = N->getOperator();
1722 if (!Operator->isSubClassOf("SDNode")) return false;
1723
1724 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
1725 return NodeInfo.hasProperty(SDNodeInfo::SDNPHasChain);
1726}
1727
1728static bool PatternHasCtrlDep(TreePatternNode *N, DAGISelEmitter &ISE)
1729{
1730 if (NodeHasChain(N, ISE))
1731 return true;
1732 else {
1733 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1734 TreePatternNode *Child = N->getChild(i);
1735 if (PatternHasCtrlDep(Child, ISE))
1736 return true;
1737 }
1738 }
1739
1740 return false;
1741}
1742
Evan Chengb915f312005-12-09 22:45:35 +00001743class PatternCodeEmitter {
1744private:
1745 DAGISelEmitter &ISE;
1746
Evan Cheng58e84a62005-12-14 22:02:59 +00001747 // Predicates.
1748 ListInit *Predicates;
1749 // Instruction selector pattern.
1750 TreePatternNode *Pattern;
1751 // Matched instruction.
1752 TreePatternNode *Instruction;
Evan Chengb915f312005-12-09 22:45:35 +00001753 unsigned PatternNo;
1754 std::ostream &OS;
1755 // Node to name mapping
1756 std::map<std::string,std::string> VariableMap;
Evan Chengb915f312005-12-09 22:45:35 +00001757 // Names of all the folded nodes which produce chains.
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001758 std::vector<std::pair<std::string, unsigned> > FoldedChains;
Evan Chengb915f312005-12-09 22:45:35 +00001759 unsigned TmpNo;
1760
1761public:
Evan Cheng58e84a62005-12-14 22:02:59 +00001762 PatternCodeEmitter(DAGISelEmitter &ise, ListInit *preds,
1763 TreePatternNode *pattern, TreePatternNode *instr,
Evan Chengb915f312005-12-09 22:45:35 +00001764 unsigned PatNum, std::ostream &os) :
Evan Cheng58e84a62005-12-14 22:02:59 +00001765 ISE(ise), Predicates(preds), Pattern(pattern), Instruction(instr),
Evan Cheng7b05bd52005-12-23 22:11:47 +00001766 PatternNo(PatNum), OS(os), TmpNo(0) {}
Evan Chengb915f312005-12-09 22:45:35 +00001767
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001768 /// isPredeclaredSDOperand - Return true if this is one of the predeclared
1769 /// SDOperands.
1770 bool isPredeclaredSDOperand(const std::string &OpName) const {
1771 return OpName == "N0" || OpName == "N1" || OpName == "N2" ||
1772 OpName == "N00" || OpName == "N01" ||
1773 OpName == "N10" || OpName == "N11" ||
1774 OpName == "Tmp0" || OpName == "Tmp1" ||
1775 OpName == "Tmp2" || OpName == "Tmp3";
1776 }
1777
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001778 /// DeclareSDOperand - Emit "SDOperand <opname>" or "<opname>". This works
1779 /// around an ugly GCC bug where SelectCode is using too much stack space
1780 void DeclareSDOperand(const std::string &OpName) const {
1781 // If it's one of the common cases declared at the top of SelectCode, just
1782 // use the existing declaration.
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001783 if (isPredeclaredSDOperand(OpName))
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001784 OS << OpName;
1785 else
1786 OS << "SDOperand " << OpName;
1787 }
1788
Evan Chengb915f312005-12-09 22:45:35 +00001789 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
1790 /// if the match fails. At this point, we already know that the opcode for N
1791 /// matches, and the SDNode for the result has the RootName specified name.
1792 void EmitMatchCode(TreePatternNode *N, const std::string &RootName,
Evan Cheng7b05bd52005-12-23 22:11:47 +00001793 bool &FoundChain, bool isRoot = false) {
Evan Cheng58e84a62005-12-14 22:02:59 +00001794
1795 // Emit instruction predicates. Each predicate is just a string for now.
1796 if (isRoot) {
1797 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
1798 if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
1799 Record *Def = Pred->getDef();
1800 if (Def->isSubClassOf("Predicate")) {
1801 if (i == 0)
1802 OS << " if (";
1803 else
1804 OS << " && ";
Evan Cheng5fb5e102005-12-20 20:08:01 +00001805 OS << "!(" << Def->getValueAsString("CondString") << ")";
Evan Cheng58e84a62005-12-14 22:02:59 +00001806 if (i == e-1)
1807 OS << ") goto P" << PatternNo << "Fail;\n";
1808 } else {
1809 Def->dump();
1810 assert(0 && "Unknown predicate type!");
1811 }
1812 }
1813 }
1814 }
1815
Evan Chengb915f312005-12-09 22:45:35 +00001816 if (N->isLeaf()) {
1817 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1818 OS << " if (cast<ConstantSDNode>(" << RootName
1819 << ")->getSignExtended() != " << II->getValue() << ")\n"
1820 << " goto P" << PatternNo << "Fail;\n";
1821 return;
1822 } else if (!NodeIsComplexPattern(N)) {
1823 assert(0 && "Cannot match this as a leaf value!");
1824 abort();
1825 }
1826 }
1827
1828 // If this node has a name associated with it, capture it in VariableMap. If
1829 // we already saw this in the pattern, emit code to verify dagness.
1830 if (!N->getName().empty()) {
1831 std::string &VarMapEntry = VariableMap[N->getName()];
1832 if (VarMapEntry.empty()) {
1833 VarMapEntry = RootName;
1834 } else {
1835 // If we get here, this is a second reference to a specific name. Since
1836 // we already have checked that the first reference is valid, we don't
1837 // have to recursively match it, just check that it's the same as the
1838 // previously named thing.
1839 OS << " if (" << VarMapEntry << " != " << RootName
1840 << ") goto P" << PatternNo << "Fail;\n";
1841 return;
1842 }
1843 }
1844
1845
1846 // Emit code to load the child nodes and match their contents recursively.
1847 unsigned OpNo = 0;
Evan Cheng86217892005-12-12 19:37:43 +00001848 bool HasChain = NodeHasChain(N, ISE);
1849 if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00001850 OpNo = 1;
1851 if (!isRoot) {
Evan Cheng1129e872005-12-10 00:09:17 +00001852 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(N->getOperator());
Evan Chengb915f312005-12-09 22:45:35 +00001853 OS << " if (!" << RootName << ".hasOneUse()) goto P"
1854 << PatternNo << "Fail; // Multiple uses of actual result?\n";
1855 OS << " if (CodeGenMap.count(" << RootName
Evan Cheng1129e872005-12-10 00:09:17 +00001856 << ".getValue(" << CInfo.getNumResults() << "))) goto P"
Evan Chengb915f312005-12-09 22:45:35 +00001857 << PatternNo << "Fail; // Already selected for a chain use?\n";
1858 }
Evan Chengb915f312005-12-09 22:45:35 +00001859 }
1860
1861 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001862 OS << " ";
1863 DeclareSDOperand(RootName+utostr(OpNo));
1864 OS << " = " << RootName << ".getOperand(" << OpNo << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00001865 TreePatternNode *Child = N->getChild(i);
1866
1867 if (!Child->isLeaf()) {
1868 // If it's not a leaf, recursively match.
1869 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(Child->getOperator());
1870 OS << " if (" << RootName << OpNo << ".getOpcode() != "
1871 << CInfo.getEnumName() << ") goto P" << PatternNo << "Fail;\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00001872 EmitMatchCode(Child, RootName + utostr(OpNo), FoundChain);
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001873 if (NodeHasChain(Child, ISE)) {
1874 FoldedChains.push_back(std::make_pair(RootName + utostr(OpNo),
1875 CInfo.getNumResults()));
1876 }
Evan Chengb915f312005-12-09 22:45:35 +00001877 } else {
1878 // If this child has a name associated with it, capture it in VarMap. If
1879 // we already saw this in the pattern, emit code to verify dagness.
1880 if (!Child->getName().empty()) {
1881 std::string &VarMapEntry = VariableMap[Child->getName()];
1882 if (VarMapEntry.empty()) {
1883 VarMapEntry = RootName + utostr(OpNo);
1884 } else {
1885 // If we get here, this is a second reference to a specific name. Since
1886 // we already have checked that the first reference is valid, we don't
1887 // have to recursively match it, just check that it's the same as the
1888 // previously named thing.
1889 OS << " if (" << VarMapEntry << " != " << RootName << OpNo
1890 << ") goto P" << PatternNo << "Fail;\n";
1891 continue;
1892 }
1893 }
1894
1895 // Handle leaves of various types.
1896 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
1897 Record *LeafRec = DI->getDef();
1898 if (LeafRec->isSubClassOf("RegisterClass")) {
1899 // Handle register references. Nothing to do here.
1900 } else if (LeafRec->isSubClassOf("Register")) {
Evan Cheng97938882005-12-22 02:24:50 +00001901 // Handle register references.
Evan Chengb915f312005-12-09 22:45:35 +00001902 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
1903 // Handle complex pattern. Nothing to do here.
Evan Cheng01f318b2005-12-14 02:21:57 +00001904 } else if (LeafRec->getName() == "srcvalue") {
1905 // Place holder for SRCVALUE nodes. Nothing to do here.
Evan Chengb915f312005-12-09 22:45:35 +00001906 } else if (LeafRec->isSubClassOf("ValueType")) {
1907 // Make sure this is the specified value type.
1908 OS << " if (cast<VTSDNode>(" << RootName << OpNo << ")->getVT() != "
1909 << "MVT::" << LeafRec->getName() << ") goto P" << PatternNo
1910 << "Fail;\n";
1911 } else if (LeafRec->isSubClassOf("CondCode")) {
1912 // Make sure this is the specified cond code.
1913 OS << " if (cast<CondCodeSDNode>(" << RootName << OpNo
1914 << ")->get() != " << "ISD::" << LeafRec->getName()
1915 << ") goto P" << PatternNo << "Fail;\n";
1916 } else {
1917 Child->dump();
Evan Cheng97938882005-12-22 02:24:50 +00001918 std::cerr << " ";
Evan Chengb915f312005-12-09 22:45:35 +00001919 assert(0 && "Unknown leaf type!");
1920 }
1921 } else if (IntInit *II = dynamic_cast<IntInit*>(Child->getLeafValue())) {
1922 OS << " if (!isa<ConstantSDNode>(" << RootName << OpNo << ") ||\n"
1923 << " cast<ConstantSDNode>(" << RootName << OpNo
1924 << ")->getSignExtended() != " << II->getValue() << ")\n"
1925 << " goto P" << PatternNo << "Fail;\n";
1926 } else {
1927 Child->dump();
1928 assert(0 && "Unknown leaf type!");
1929 }
1930 }
1931 }
1932
Evan Cheng86217892005-12-12 19:37:43 +00001933 if (HasChain) {
1934 if (!FoundChain) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001935 OS << " Chain = " << RootName << ".getOperand(0);\n";
Evan Cheng86217892005-12-12 19:37:43 +00001936 FoundChain = true;
1937 }
1938 }
1939
Evan Chengb915f312005-12-09 22:45:35 +00001940 // If there is a node predicate for this, emit the call.
1941 if (!N->getPredicateFn().empty())
1942 OS << " if (!" << N->getPredicateFn() << "(" << RootName
1943 << ".Val)) goto P" << PatternNo << "Fail;\n";
1944 }
1945
1946 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
1947 /// we actually have to build a DAG!
1948 std::pair<unsigned, unsigned>
1949 EmitResultCode(TreePatternNode *N, bool isRoot = false) {
1950 // This is something selected from the pattern we matched.
1951 if (!N->getName().empty()) {
1952 assert(!isRoot && "Root of pattern cannot be a leaf!");
1953 std::string &Val = VariableMap[N->getName()];
1954 assert(!Val.empty() &&
1955 "Variable referenced but not defined and not caught earlier!");
1956 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
1957 // Already selected this operand, just return the tmpval.
1958 return std::make_pair(1, atoi(Val.c_str()+3));
1959 }
1960
1961 const ComplexPattern *CP;
1962 unsigned ResNo = TmpNo++;
1963 unsigned NumRes = 1;
1964 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
1965 switch (N->getType()) {
1966 default: assert(0 && "Unknown type for constant node!");
1967 case MVT::i1: OS << " bool Tmp"; break;
1968 case MVT::i8: OS << " unsigned char Tmp"; break;
1969 case MVT::i16: OS << " unsigned short Tmp"; break;
1970 case MVT::i32: OS << " unsigned Tmp"; break;
1971 case MVT::i64: OS << " uint64_t Tmp"; break;
1972 }
1973 OS << ResNo << "C = cast<ConstantSDNode>(" << Val << ")->getValue();\n";
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001974 OS << " ";
1975 DeclareSDOperand("Tmp"+utostr(ResNo));
1976 OS << " = CurDAG->getTargetConstant(Tmp"
Evan Chengb915f312005-12-09 22:45:35 +00001977 << ResNo << "C, MVT::" << getEnumName(N->getType()) << ");\n";
1978 } else if (!N->isLeaf() && N->getOperator()->getName() == "tglobaladdr") {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001979 OS << " ";
1980 DeclareSDOperand("Tmp"+utostr(ResNo));
1981 OS << " = " << Val << ";\n";
Nate Begeman28a6b022005-12-10 02:36:00 +00001982 } else if (!N->isLeaf() && N->getOperator()->getName() == "tconstpool") {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001983 OS << " ";
1984 DeclareSDOperand("Tmp"+utostr(ResNo));
1985 OS << " = " << Val << ";\n";
Evan Chengb915f312005-12-09 22:45:35 +00001986 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
1987 std::string Fn = CP->getSelectFunc();
1988 NumRes = CP->getNumOperands();
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001989 for (unsigned i = 0; i != NumRes; ++i) {
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001990 if (!isPredeclaredSDOperand("Tmp" + utostr(i+ResNo))) {
1991 OS << " ";
1992 DeclareSDOperand("Tmp" + utostr(i+ResNo));
1993 OS << ";\n";
1994 }
Evan Chengb915f312005-12-09 22:45:35 +00001995 }
Evan Chengb915f312005-12-09 22:45:35 +00001996 OS << " if (!" << Fn << "(" << Val;
1997 for (unsigned i = 0; i < NumRes; i++)
Evan Chengbcecf332005-12-17 01:19:28 +00001998 OS << ", Tmp" << i + ResNo;
Evan Chengb915f312005-12-09 22:45:35 +00001999 OS << ")) goto P" << PatternNo << "Fail;\n";
2000 TmpNo = ResNo + NumRes;
2001 } else {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002002 OS << " ";
2003 DeclareSDOperand("Tmp"+utostr(ResNo));
2004 OS << " = Select(" << Val << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002005 }
2006 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2007 // value if used multiple times by this pattern result.
2008 Val = "Tmp"+utostr(ResNo);
2009 return std::make_pair(NumRes, ResNo);
2010 }
2011
2012 if (N->isLeaf()) {
2013 // If this is an explicit register reference, handle it.
2014 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
2015 unsigned ResNo = TmpNo++;
2016 if (DI->getDef()->isSubClassOf("Register")) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002017 OS << " ";
2018 DeclareSDOperand("Tmp"+utostr(ResNo));
2019 OS << " = CurDAG->getRegister("
Evan Chengb915f312005-12-09 22:45:35 +00002020 << ISE.getQualifiedName(DI->getDef()) << ", MVT::"
2021 << getEnumName(N->getType())
2022 << ");\n";
2023 return std::make_pair(1, ResNo);
2024 }
2025 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
2026 unsigned ResNo = TmpNo++;
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002027 OS << " ";
2028 DeclareSDOperand("Tmp"+utostr(ResNo));
2029 OS << " = CurDAG->getTargetConstant("
Evan Chengb915f312005-12-09 22:45:35 +00002030 << II->getValue() << ", MVT::"
2031 << getEnumName(N->getType())
2032 << ");\n";
2033 return std::make_pair(1, ResNo);
2034 }
2035
2036 N->dump();
2037 assert(0 && "Unknown leaf type!");
2038 return std::make_pair(1, ~0U);
2039 }
2040
2041 Record *Op = N->getOperator();
2042 if (Op->isSubClassOf("Instruction")) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00002043 const CodeGenTarget &CGT = ISE.getTargetInfo();
2044 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
Evan Cheng4fba2812005-12-20 07:37:41 +00002045 const DAGInstruction &Inst = ISE.getInstruction(Op);
Evan Cheng7b05bd52005-12-23 22:11:47 +00002046 bool HasImpInputs = Inst.getNumImpOperands() > 0;
2047 bool HasImpResults = Inst.getNumImpResults() > 0;
2048 bool HasInFlag = II.hasInFlag || HasImpInputs;
2049 bool HasOutFlag = II.hasOutFlag || HasImpResults;
2050 bool HasChain = II.hasCtrlDep;
Evan Cheng4fba2812005-12-20 07:37:41 +00002051
Evan Cheng7b05bd52005-12-23 22:11:47 +00002052 if (isRoot && PatternHasCtrlDep(Pattern, ISE))
2053 HasChain = true;
2054 if (HasInFlag || HasOutFlag)
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002055 OS << " InFlag = SDOperand(0, 0);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002056
Evan Chengb915f312005-12-09 22:45:35 +00002057 // Determine operand emission order. Complex pattern first.
2058 std::vector<std::pair<unsigned, TreePatternNode*> > EmitOrder;
2059 std::vector<std::pair<unsigned, TreePatternNode*> >::iterator OI;
2060 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
2061 TreePatternNode *Child = N->getChild(i);
2062 if (i == 0) {
2063 EmitOrder.push_back(std::make_pair(i, Child));
2064 OI = EmitOrder.begin();
2065 } else if (NodeIsComplexPattern(Child)) {
2066 OI = EmitOrder.insert(OI, std::make_pair(i, Child));
2067 } else {
2068 EmitOrder.push_back(std::make_pair(i, Child));
2069 }
2070 }
2071
2072 // Emit all of the operands.
2073 std::vector<std::pair<unsigned, unsigned> > NumTemps(EmitOrder.size());
2074 for (unsigned i = 0, e = EmitOrder.size(); i != e; ++i) {
2075 unsigned OpOrder = EmitOrder[i].first;
2076 TreePatternNode *Child = EmitOrder[i].second;
2077 std::pair<unsigned, unsigned> NumTemp = EmitResultCode(Child);
2078 NumTemps[OpOrder] = NumTemp;
2079 }
2080
2081 // List all the operands in the right order.
2082 std::vector<unsigned> Ops;
2083 for (unsigned i = 0, e = NumTemps.size(); i != e; i++) {
2084 for (unsigned j = 0; j < NumTemps[i].first; j++)
2085 Ops.push_back(NumTemps[i].second + j);
2086 }
2087
Evan Chengb915f312005-12-09 22:45:35 +00002088 // Emit all the chain and CopyToReg stuff.
Evan Cheng7b05bd52005-12-23 22:11:47 +00002089 if (HasChain)
Evan Cheng86217892005-12-12 19:37:43 +00002090 OS << " Chain = Select(Chain);\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00002091 if (HasInFlag)
2092 EmitInFlags(Pattern, "N", HasChain, II.hasInFlag, true);
Evan Chengb915f312005-12-09 22:45:35 +00002093
Evan Chengb915f312005-12-09 22:45:35 +00002094 unsigned NumResults = Inst.getNumResults();
2095 unsigned ResNo = TmpNo++;
2096 if (!isRoot) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002097 OS << " ";
2098 DeclareSDOperand("Tmp"+utostr(ResNo));
2099 OS << " = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002100 << II.Namespace << "::" << II.TheDef->getName();
2101 if (N->getType() != MVT::isVoid)
2102 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng7b05bd52005-12-23 22:11:47 +00002103 if (HasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002104 OS << ", MVT::Flag";
Evan Chengbcecf332005-12-17 01:19:28 +00002105
Evan Chengb915f312005-12-09 22:45:35 +00002106 unsigned LastOp = 0;
2107 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2108 LastOp = Ops[i];
2109 OS << ", Tmp" << LastOp;
2110 }
2111 OS << ");\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00002112 if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00002113 // Must have at least one result
2114 OS << " Chain = Tmp" << LastOp << ".getValue("
2115 << NumResults << ");\n";
2116 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002117 } else if (HasChain || HasOutFlag) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002118 OS << " Result = CurDAG->getTargetNode("
Evan Chengb915f312005-12-09 22:45:35 +00002119 << II.Namespace << "::" << II.TheDef->getName();
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002120
2121 // Output order: results, chain, flags
2122 // Result types.
Evan Chengbcecf332005-12-17 01:19:28 +00002123 if (NumResults > 0) {
2124 // TODO: multiple results?
2125 if (N->getType() != MVT::isVoid)
2126 OS << ", MVT::" << getEnumName(N->getType());
2127 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002128 if (HasChain)
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002129 OS << ", MVT::Other";
Evan Cheng7b05bd52005-12-23 22:11:47 +00002130 if (HasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002131 OS << ", MVT::Flag";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002132
2133 // Inputs.
Evan Chengb915f312005-12-09 22:45:35 +00002134 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2135 OS << ", Tmp" << Ops[i];
Evan Cheng7b05bd52005-12-23 22:11:47 +00002136 if (HasChain) OS << ", Chain";
2137 if (HasInFlag) OS << ", InFlag";
Evan Chengb915f312005-12-09 22:45:35 +00002138 OS << ");\n";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002139
2140 unsigned ValNo = 0;
Evan Chengf9fc25d2005-12-19 22:40:04 +00002141 for (unsigned i = 0; i < NumResults; i++) {
2142 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = Result"
2143 << ".getValue(" << ValNo << ");\n";
2144 ValNo++;
2145 }
2146
Evan Cheng7b05bd52005-12-23 22:11:47 +00002147 if (HasChain)
Evan Cheng4fba2812005-12-20 07:37:41 +00002148 OS << " Chain = Result.getValue(" << ValNo << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002149
Evan Cheng7b05bd52005-12-23 22:11:47 +00002150 if (HasOutFlag)
Evan Cheng97938882005-12-22 02:24:50 +00002151 OS << " InFlag = Result.getValue("
Evan Cheng7b05bd52005-12-23 22:11:47 +00002152 << ValNo + (unsigned)HasChain << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002153
Evan Cheng7b05bd52005-12-23 22:11:47 +00002154 if (HasImpResults) {
2155 if (EmitCopyFromRegs(N, HasChain)) {
Evan Cheng97938882005-12-22 02:24:50 +00002156 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = "
2157 << "Result.getValue(" << ValNo << ");\n";
2158 ValNo++;
Evan Cheng7b05bd52005-12-23 22:11:47 +00002159 HasChain = true;
Evan Cheng97938882005-12-22 02:24:50 +00002160 }
2161 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002162
Evan Cheng7b05bd52005-12-23 22:11:47 +00002163 // User does not expect that the instruction produces a chain!
2164 bool AddedChain = HasChain && !NodeHasChain(Pattern, ISE);
Evan Cheng97938882005-12-22 02:24:50 +00002165 if (NodeHasChain(Pattern, ISE))
2166 OS << " CodeGenMap[N.getValue(" << ValNo++ << ")] = Chain;\n";
2167
2168 if (FoldedChains.size() > 0) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002169 OS << " ";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002170 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Evan Cheng4fba2812005-12-20 07:37:41 +00002171 OS << "CodeGenMap[" << FoldedChains[j].first << ".getValue("
2172 << FoldedChains[j].second << ")] = ";
2173 OS << "Chain;\n";
Evan Chengb915f312005-12-09 22:45:35 +00002174 }
Evan Chengf9fc25d2005-12-19 22:40:04 +00002175
Evan Cheng7b05bd52005-12-23 22:11:47 +00002176 if (HasOutFlag)
Evan Cheng97938882005-12-22 02:24:50 +00002177 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = InFlag;\n";
2178
Evan Cheng7b05bd52005-12-23 22:11:47 +00002179 if (AddedChain && HasOutFlag) {
Evan Cheng97938882005-12-22 02:24:50 +00002180 if (NumResults == 0) {
2181 OS << " return Result.getValue(N.ResNo+1);\n";
2182 } else {
2183 OS << " if (N.ResNo < " << NumResults << ")\n";
2184 OS << " return Result.getValue(N.ResNo);\n";
2185 OS << " else\n";
2186 OS << " return Result.getValue(N.ResNo+1);\n";
2187 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002188 } else {
Evan Chenge0870512005-12-20 00:06:17 +00002189 OS << " return Result.getValue(N.ResNo);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002190 }
Evan Chengb915f312005-12-09 22:45:35 +00002191 } else {
2192 // If this instruction is the root, and if there is only one use of it,
2193 // use SelectNodeTo instead of getTargetNode to avoid an allocation.
2194 OS << " if (N.Val->hasOneUse()) {\n";
2195 OS << " return CurDAG->SelectNodeTo(N.Val, "
Evan Chengbcecf332005-12-17 01:19:28 +00002196 << II.Namespace << "::" << II.TheDef->getName();
2197 if (N->getType() != MVT::isVoid)
2198 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng7b05bd52005-12-23 22:11:47 +00002199 if (HasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002200 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002201 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2202 OS << ", Tmp" << Ops[i];
Evan Cheng7b05bd52005-12-23 22:11:47 +00002203 if (HasInFlag)
Evan Chengb915f312005-12-09 22:45:35 +00002204 OS << ", InFlag";
2205 OS << ");\n";
2206 OS << " } else {\n";
2207 OS << " return CodeGenMap[N] = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002208 << II.Namespace << "::" << II.TheDef->getName();
2209 if (N->getType() != MVT::isVoid)
2210 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng7b05bd52005-12-23 22:11:47 +00002211 if (HasOutFlag)
Evan Cheng4fba2812005-12-20 07:37:41 +00002212 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002213 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2214 OS << ", Tmp" << Ops[i];
Evan Cheng7b05bd52005-12-23 22:11:47 +00002215 if (HasInFlag)
Evan Chengb915f312005-12-09 22:45:35 +00002216 OS << ", InFlag";
2217 OS << ");\n";
2218 OS << " }\n";
2219 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002220
Evan Chengb915f312005-12-09 22:45:35 +00002221 return std::make_pair(1, ResNo);
2222 } else if (Op->isSubClassOf("SDNodeXForm")) {
2223 assert(N->getNumChildren() == 1 && "node xform should have one child!");
Evan Cheng58e84a62005-12-14 22:02:59 +00002224 unsigned OpVal = EmitResultCode(N->getChild(0)).second;
Evan Chengb915f312005-12-09 22:45:35 +00002225 unsigned ResNo = TmpNo++;
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002226 OS << " ";
2227 DeclareSDOperand("Tmp"+utostr(ResNo));
2228 OS << " = Transform_" << Op->getName()
Evan Chengb915f312005-12-09 22:45:35 +00002229 << "(Tmp" << OpVal << ".Val);\n";
2230 if (isRoot) {
2231 OS << " CodeGenMap[N] = Tmp" << ResNo << ";\n";
2232 OS << " return Tmp" << ResNo << ";\n";
2233 }
2234 return std::make_pair(1, ResNo);
2235 } else {
2236 N->dump();
2237 assert(0 && "Unknown node in result pattern!");
2238 return std::make_pair(1, ~0U);
2239 }
2240 }
2241
2242 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat' and
2243 /// add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
2244 /// 'Pat' may be missing types. If we find an unresolved type to add a check
2245 /// for, this returns true otherwise false if Pat has all types.
2246 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
2247 const std::string &Prefix) {
2248 // Did we find one?
2249 if (!Pat->hasTypeSet()) {
2250 // Move a type over from 'other' to 'pat'.
2251 Pat->setType(Other->getType());
2252 OS << " if (" << Prefix << ".Val->getValueType(0) != MVT::"
2253 << getName(Pat->getType()) << ") goto P" << PatternNo << "Fail;\n";
2254 return true;
Evan Chengb915f312005-12-09 22:45:35 +00002255 }
2256
2257 unsigned OpNo = (unsigned) NodeHasChain(Pat, ISE);
2258 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
2259 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
2260 Prefix + utostr(OpNo)))
2261 return true;
2262 return false;
2263 }
2264
2265private:
Evan Cheng7b05bd52005-12-23 22:11:47 +00002266 /// EmitInFlags - Emit the flag operands for the DAG that is
Evan Chengb915f312005-12-09 22:45:35 +00002267 /// being built.
Evan Cheng7b05bd52005-12-23 22:11:47 +00002268 void EmitInFlags(TreePatternNode *N, const std::string &RootName,
2269 bool HasChain, bool HasInFlag, bool isRoot = false) {
Evan Chengb915f312005-12-09 22:45:35 +00002270 const CodeGenTarget &T = ISE.getTargetInfo();
2271 unsigned OpNo = (unsigned) NodeHasChain(N, ISE);
2272 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
2273 TreePatternNode *Child = N->getChild(i);
2274 if (!Child->isLeaf()) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00002275 EmitInFlags(Child, RootName + utostr(OpNo), HasChain, HasInFlag);
Evan Chengb915f312005-12-09 22:45:35 +00002276 } else {
2277 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2278 Record *RR = DI->getDef();
2279 if (RR->isSubClassOf("Register")) {
2280 MVT::ValueType RVT = getRegisterValueType(RR, T);
Evan Chengbcecf332005-12-17 01:19:28 +00002281 if (RVT == MVT::Flag) {
2282 OS << " InFlag = Select(" << RootName << OpNo << ");\n";
Evan Cheng7b05bd52005-12-23 22:11:47 +00002283 } else if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00002284 OS << " SDOperand " << RootName << "CR" << i << ";\n";
2285 OS << " " << RootName << "CR" << i
2286 << " = CurDAG->getCopyToReg(Chain, CurDAG->getRegister("
2287 << ISE.getQualifiedName(RR) << ", MVT::"
2288 << getEnumName(RVT) << ")"
2289 << ", Select(" << RootName << OpNo << "), InFlag);\n";
2290 OS << " Chain = " << RootName << "CR" << i
2291 << ".getValue(0);\n";
2292 OS << " InFlag = " << RootName << "CR" << i
2293 << ".getValue(1);\n";
2294 } else {
2295 OS << " InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode()"
2296 << ", CurDAG->getRegister(" << ISE.getQualifiedName(RR)
2297 << ", MVT::" << getEnumName(RVT) << ")"
2298 << ", Select(" << RootName << OpNo
2299 << "), InFlag).getValue(1);\n";
2300 }
2301 }
2302 }
2303 }
2304 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002305
2306 if (isRoot && HasInFlag) {
2307 OS << " " << RootName << OpNo << " = " << RootName
2308 << ".getOperand(" << OpNo << ");\n";
2309 OS << " InFlag = Select(" << RootName << OpNo << ");\n";
2310 }
Evan Chengb915f312005-12-09 22:45:35 +00002311 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002312
2313 /// EmitCopyFromRegs - Emit code to copy result to physical registers
Evan Cheng7b05bd52005-12-23 22:11:47 +00002314 /// as specified by the instruction. It returns true if any copy is
2315 /// emitted.
2316 bool EmitCopyFromRegs(TreePatternNode *N, bool HasChain) {
2317 bool RetVal = false;
Evan Cheng4fba2812005-12-20 07:37:41 +00002318 Record *Op = N->getOperator();
2319 if (Op->isSubClassOf("Instruction")) {
2320 const DAGInstruction &Inst = ISE.getInstruction(Op);
2321 const CodeGenTarget &CGT = ISE.getTargetInfo();
2322 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
2323 unsigned NumImpResults = Inst.getNumImpResults();
2324 for (unsigned i = 0; i < NumImpResults; i++) {
2325 Record *RR = Inst.getImpResult(i);
2326 if (RR->isSubClassOf("Register")) {
2327 MVT::ValueType RVT = getRegisterValueType(RR, CGT);
2328 if (RVT != MVT::Flag) {
Evan Cheng7b05bd52005-12-23 22:11:47 +00002329 if (HasChain) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002330 OS << " Result = CurDAG->getCopyFromReg(Chain, "
2331 << ISE.getQualifiedName(RR)
2332 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2333 OS << " Chain = Result.getValue(1);\n";
2334 OS << " InFlag = Result.getValue(2);\n";
2335 } else {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002336 OS << " Chain;\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002337 OS << " Result = CurDAG->getCopyFromReg("
2338 << "CurDAG->getEntryNode(), ISE.getQualifiedName(RR)"
2339 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2340 OS << " Chain = Result.getValue(1);\n";
2341 OS << " InFlag = Result.getValue(2);\n";
2342 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002343 RetVal = true;
Evan Cheng4fba2812005-12-20 07:37:41 +00002344 }
2345 }
2346 }
2347 }
Evan Cheng7b05bd52005-12-23 22:11:47 +00002348 return RetVal;
Evan Cheng4fba2812005-12-20 07:37:41 +00002349 }
Evan Chengb915f312005-12-09 22:45:35 +00002350};
2351
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002352/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
2353/// stream to match the pattern, and generate the code for the match if it
2354/// succeeds.
Chris Lattner3f7e9142005-09-23 20:52:47 +00002355void DAGISelEmitter::EmitCodeForPattern(PatternToMatch &Pattern,
2356 std::ostream &OS) {
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002357 static unsigned PatternCount = 0;
2358 unsigned PatternNo = PatternCount++;
2359 OS << " { // Pattern #" << PatternNo << ": ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002360 Pattern.getSrcPattern()->print(OS);
Chris Lattner05814af2005-09-28 17:57:56 +00002361 OS << "\n // Emits: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002362 Pattern.getDstPattern()->print(OS);
Chris Lattner3f7e9142005-09-23 20:52:47 +00002363 OS << "\n";
Evan Cheng58e84a62005-12-14 22:02:59 +00002364 OS << " // Pattern complexity = "
2365 << getPatternSize(Pattern.getSrcPattern(), *this)
2366 << " cost = "
2367 << getResultPatternCost(Pattern.getDstPattern()) << "\n";
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002368
Evan Cheng58e84a62005-12-14 22:02:59 +00002369 PatternCodeEmitter Emitter(*this, Pattern.getPredicates(),
2370 Pattern.getSrcPattern(), Pattern.getDstPattern(),
2371 PatternNo, OS);
Evan Chengb915f312005-12-09 22:45:35 +00002372
Chris Lattner8fc35682005-09-23 23:16:51 +00002373 // Emit the matcher, capturing named arguments in VariableMap.
Evan Cheng7b05bd52005-12-23 22:11:47 +00002374 bool FoundChain = false;
2375 Emitter.EmitMatchCode(Pattern.getSrcPattern(), "N", FoundChain,
2376 true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002377
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002378 // TP - Get *SOME* tree pattern, we don't care which.
2379 TreePattern &TP = *PatternFragments.begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00002380
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002381 // At this point, we know that we structurally match the pattern, but the
2382 // types of the nodes may not match. Figure out the fewest number of type
2383 // comparisons we need to emit. For example, if there is only one integer
2384 // type supported by a target, there should be no type comparisons at all for
2385 // integer patterns!
2386 //
2387 // To figure out the fewest number of type checks needed, clone the pattern,
2388 // remove the types, then perform type inference on the pattern as a whole.
2389 // If there are unresolved types, emit an explicit check for those types,
2390 // apply the type to the tree, then rerun type inference. Iterate until all
2391 // types are resolved.
2392 //
Evan Cheng58e84a62005-12-14 22:02:59 +00002393 TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002394 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00002395
2396 do {
2397 // Resolve/propagate as many types as possible.
2398 try {
2399 bool MadeChange = true;
2400 while (MadeChange)
2401 MadeChange = Pat->ApplyTypeConstraints(TP,true/*Ignore reg constraints*/);
2402 } catch (...) {
2403 assert(0 && "Error: could not find consistent types for something we"
2404 " already decided was ok!");
2405 abort();
2406 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002407
Chris Lattner7e82f132005-10-15 21:34:21 +00002408 // Insert a check for an unresolved type and add it to the tree. If we find
2409 // an unresolved type to add a check for, this returns true and we iterate,
2410 // otherwise we are done.
Evan Cheng58e84a62005-12-14 22:02:59 +00002411 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N"));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00002412
Evan Cheng58e84a62005-12-14 22:02:59 +00002413 Emitter.EmitResultCode(Pattern.getDstPattern(), true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002414
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002415 delete Pat;
2416
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002417 OS << " }\n P" << PatternNo << "Fail:\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002418}
2419
Chris Lattner37481472005-09-26 21:59:35 +00002420
2421namespace {
2422 /// CompareByRecordName - An ordering predicate that implements less-than by
2423 /// comparing the names records.
2424 struct CompareByRecordName {
2425 bool operator()(const Record *LHS, const Record *RHS) const {
2426 // Sort by name first.
2427 if (LHS->getName() < RHS->getName()) return true;
2428 // If both names are equal, sort by pointer.
2429 return LHS->getName() == RHS->getName() && LHS < RHS;
2430 }
2431 };
2432}
2433
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002434void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002435 std::string InstNS = Target.inst_begin()->second.Namespace;
2436 if (!InstNS.empty()) InstNS += "::";
2437
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002438 // Emit boilerplate.
2439 OS << "// The main instruction selector code.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002440 << "SDOperand SelectCode(SDOperand N) {\n"
2441 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002442 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
2443 << "INSTRUCTION_LIST_END))\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002444 << " return N; // Already selected.\n\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002445 << " std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(N);\n"
Evan Cheng481c8e02005-12-12 23:22:48 +00002446 << " if (CGMI != CodeGenMap.end()) return CGMI->second;\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002447 << " // Work arounds for GCC stack overflow bugs.\n"
2448 << " SDOperand N0, N1, N2, N00, N01, N10, N11, Tmp0, Tmp1, Tmp2, Tmp3;\n"
2449 << " SDOperand Chain, InFlag, Result;\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002450 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002451 << " default: break;\n"
2452 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner5216c692005-12-18 21:05:44 +00002453 << " case ISD::BasicBlock:\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002454 << " return N;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002455 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002456 << " case ISD::AssertZext: {\n"
2457 << " SDOperand Tmp0 = Select(N.getOperand(0));\n"
2458 << " if (!N.Val->hasOneUse()) CodeGenMap[N] = Tmp0;\n"
2459 << " return Tmp0;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002460 << " }\n"
2461 << " case ISD::TokenFactor:\n"
2462 << " if (N.getNumOperands() == 2) {\n"
2463 << " SDOperand Op0 = Select(N.getOperand(0));\n"
2464 << " SDOperand Op1 = Select(N.getOperand(1));\n"
2465 << " return CodeGenMap[N] =\n"
2466 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Op0, Op1);\n"
2467 << " } else {\n"
2468 << " std::vector<SDOperand> Ops;\n"
2469 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
2470 << " Ops.push_back(Select(N.getOperand(i)));\n"
2471 << " return CodeGenMap[N] = \n"
2472 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Ops);\n"
2473 << " }\n"
2474 << " case ISD::CopyFromReg: {\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002475 << " Chain = Select(N.getOperand(0));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002476 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
2477 << " MVT::ValueType VT = N.Val->getValueType(0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002478 << " if (N.Val->getNumValues() == 2) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002479 << " if (Chain == N.getOperand(0)) return N; // No change\n"
2480 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT);\n"
2481 << " CodeGenMap[N.getValue(0)] = New;\n"
2482 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2483 << " return New.getValue(N.ResNo);\n"
2484 << " } else {\n"
Chris Lattner7a8054f2005-12-22 20:37:36 +00002485 << " SDOperand Flag(0, 0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002486 << " if (N.getNumOperands() == 3) Flag = Select(N.getOperand(2));\n"
2487 << " if (Chain == N.getOperand(0) &&\n"
2488 << " (N.getNumOperands() == 2 || Flag == N.getOperand(2)))\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002489 << " return N; // No change\n"
2490 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT, Flag);\n"
2491 << " CodeGenMap[N.getValue(0)] = New;\n"
2492 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2493 << " CodeGenMap[N.getValue(2)] = New.getValue(2);\n"
2494 << " return New.getValue(N.ResNo);\n"
2495 << " }\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002496 << " }\n"
2497 << " case ISD::CopyToReg: {\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002498 << " Chain = Select(N.getOperand(0));\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002499 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002500 << " SDOperand Val = Select(N.getOperand(2));\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002501 << " Result = N;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002502 << " if (N.Val->getNumValues() == 1) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002503 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2))\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002504 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002505 << " return CodeGenMap[N] = Result;\n"
2506 << " } else {\n"
Chris Lattner7a8054f2005-12-22 20:37:36 +00002507 << " SDOperand Flag(0, 0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002508 << " if (N.getNumOperands() == 4) Flag = Select(N.getOperand(3));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002509 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2) ||\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002510 << " (N.getNumOperands() == 4 && Flag != N.getOperand(3)))\n"
2511 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val, Flag);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002512 << " CodeGenMap[N.getValue(0)] = Result;\n"
2513 << " CodeGenMap[N.getValue(1)] = Result.getValue(1);\n"
2514 << " return Result.getValue(N.ResNo);\n"
2515 << " }\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002516 << " }\n";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002517
Chris Lattner81303322005-09-23 19:36:15 +00002518 // Group the patterns by their top-level opcodes.
Chris Lattner37481472005-09-26 21:59:35 +00002519 std::map<Record*, std::vector<PatternToMatch*>,
2520 CompareByRecordName> PatternsByOpcode;
Evan Cheng0fc71982005-12-08 02:00:36 +00002521 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002522 TreePatternNode *Node = PatternsToMatch[i].getSrcPattern();
Evan Cheng0fc71982005-12-08 02:00:36 +00002523 if (!Node->isLeaf()) {
2524 PatternsByOpcode[Node->getOperator()].push_back(&PatternsToMatch[i]);
Chris Lattner0614b622005-11-02 06:49:14 +00002525 } else {
Evan Cheng0fc71982005-12-08 02:00:36 +00002526 const ComplexPattern *CP;
Chris Lattner0614b622005-11-02 06:49:14 +00002527 if (IntInit *II =
Evan Cheng0fc71982005-12-08 02:00:36 +00002528 dynamic_cast<IntInit*>(Node->getLeafValue())) {
Chris Lattner0614b622005-11-02 06:49:14 +00002529 PatternsByOpcode[getSDNodeNamed("imm")].push_back(&PatternsToMatch[i]);
Evan Cheng0fc71982005-12-08 02:00:36 +00002530 } else if ((CP = NodeGetComplexPattern(Node, *this))) {
Evan Cheng3aa39f42005-12-08 02:14:08 +00002531 std::vector<Record*> OpNodes = CP->getRootNodes();
Evan Cheng0fc71982005-12-08 02:00:36 +00002532 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
2533 PatternsByOpcode[OpNodes[j]].insert(PatternsByOpcode[OpNodes[j]].begin(),
2534 &PatternsToMatch[i]);
2535 }
Chris Lattner0614b622005-11-02 06:49:14 +00002536 } else {
Evan Cheng76021f02005-11-29 18:44:58 +00002537 std::cerr << "Unrecognized opcode '";
Evan Cheng0fc71982005-12-08 02:00:36 +00002538 Node->dump();
Evan Cheng76021f02005-11-29 18:44:58 +00002539 std::cerr << "' on tree pattern '";
Evan Cheng58e84a62005-12-14 22:02:59 +00002540 std::cerr << PatternsToMatch[i].getDstPattern()->getOperator()->getName();
Evan Cheng76021f02005-11-29 18:44:58 +00002541 std::cerr << "'!\n";
2542 exit(1);
Chris Lattner0614b622005-11-02 06:49:14 +00002543 }
2544 }
Evan Cheng0fc71982005-12-08 02:00:36 +00002545 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002546
Chris Lattner3f7e9142005-09-23 20:52:47 +00002547 // Loop over all of the case statements.
Chris Lattner37481472005-09-26 21:59:35 +00002548 for (std::map<Record*, std::vector<PatternToMatch*>,
2549 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2550 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
Chris Lattner81303322005-09-23 19:36:15 +00002551 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
2552 std::vector<PatternToMatch*> &Patterns = PBOI->second;
2553
2554 OS << " case " << OpcodeInfo.getEnumName() << ":\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002555
2556 // We want to emit all of the matching code now. However, we want to emit
2557 // the matches in order of minimal cost. Sort the patterns so the least
2558 // cost one is at the start.
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002559 std::stable_sort(Patterns.begin(), Patterns.end(),
Evan Cheng0fc71982005-12-08 02:00:36 +00002560 PatternSortingPredicate(*this));
Chris Lattner81303322005-09-23 19:36:15 +00002561
Chris Lattner3f7e9142005-09-23 20:52:47 +00002562 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
2563 EmitCodeForPattern(*Patterns[i], OS);
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002564 OS << " break;\n\n";
Chris Lattner81303322005-09-23 19:36:15 +00002565 }
2566
2567
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002568 OS << " } // end of big switch.\n\n"
2569 << " std::cerr << \"Cannot yet select: \";\n"
Evan Cheng97938882005-12-22 02:24:50 +00002570 << " N.Val->dump(CurDAG);\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002571 << " std::cerr << '\\n';\n"
2572 << " abort();\n"
2573 << "}\n";
2574}
2575
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002576void DAGISelEmitter::run(std::ostream &OS) {
2577 EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
2578 " target", OS);
2579
Chris Lattner1f39e292005-09-14 00:09:24 +00002580 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2581 << "// *** instruction selector class. These functions are really "
2582 << "methods.\n\n";
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002583
Chris Lattner296dfe32005-09-24 00:50:51 +00002584 OS << "// Instance var to keep track of multiply used nodes that have \n"
2585 << "// already been selected.\n"
2586 << "std::map<SDOperand, SDOperand> CodeGenMap;\n";
2587
Chris Lattnerca559d02005-09-08 21:03:01 +00002588 ParseNodeInfo();
Chris Lattner24eeeb82005-09-13 21:51:00 +00002589 ParseNodeTransforms(OS);
Evan Cheng0fc71982005-12-08 02:00:36 +00002590 ParseComplexPatterns();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002591 ParsePatternFragments(OS);
2592 ParseInstructions();
2593 ParsePatterns();
Chris Lattner3f7e9142005-09-23 20:52:47 +00002594
Chris Lattnere97603f2005-09-28 19:27:25 +00002595 // Generate variants. For example, commutative patterns can match
Chris Lattner3f7e9142005-09-23 20:52:47 +00002596 // multiple ways. Add them to PatternsToMatch as well.
Chris Lattnere97603f2005-09-28 19:27:25 +00002597 GenerateVariants();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002598
Chris Lattnere46e17b2005-09-29 19:28:10 +00002599
2600 DEBUG(std::cerr << "\n\nALL PATTERNS TO MATCH:\n\n";
2601 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002602 std::cerr << "PATTERN: "; PatternsToMatch[i].getSrcPattern()->dump();
2603 std::cerr << "\nRESULT: ";PatternsToMatch[i].getDstPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00002604 std::cerr << "\n";
2605 });
2606
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002607 // At this point, we have full information about the 'Patterns' we need to
2608 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002609 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002610 EmitInstructionSelector(OS);
2611
2612 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
2613 E = PatternFragments.end(); I != E; ++I)
2614 delete I->second;
2615 PatternFragments.clear();
2616
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002617 Instructions.clear();
2618}