blob: 62581eea1d1c8992a02c2cc2c4a34c67e845a8e4 [file] [log] [blame]
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001//===- DAGISelEmitter.cpp - Generate an instruction selector --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This tablegen backend emits a DAG instruction selector.
11//
12//===----------------------------------------------------------------------===//
13
14#include "DAGISelEmitter.h"
15#include "Record.h"
16#include "llvm/ADT/StringExtras.h"
17#include "llvm/Support/Debug.h"
Jeff Cohena48283b2005-09-25 19:04:43 +000018#include <algorithm>
Chris Lattner54cb8fd2005-09-07 23:44:43 +000019#include <set>
20using namespace llvm;
21
Chris Lattnerca559d02005-09-08 21:03:01 +000022//===----------------------------------------------------------------------===//
Chris Lattner3c7e18d2005-10-14 06:12:03 +000023// Helpers for working with extended types.
24
25/// FilterVTs - Filter a list of VT's according to a predicate.
26///
27template<typename T>
28static std::vector<MVT::ValueType>
29FilterVTs(const std::vector<MVT::ValueType> &InVTs, T Filter) {
30 std::vector<MVT::ValueType> Result;
31 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
32 if (Filter(InVTs[i]))
33 Result.push_back(InVTs[i]);
34 return Result;
35}
36
37/// isExtIntegerVT - Return true if the specified extended value type is
38/// integer, or isInt.
39static bool isExtIntegerVT(unsigned char VT) {
40 return VT == MVT::isInt ||
41 (VT < MVT::LAST_VALUETYPE && MVT::isInteger((MVT::ValueType)VT));
42}
43
44/// isExtFloatingPointVT - Return true if the specified extended value type is
45/// floating point, or isFP.
46static bool isExtFloatingPointVT(unsigned char VT) {
47 return VT == MVT::isFP ||
48 (VT < MVT::LAST_VALUETYPE && MVT::isFloatingPoint((MVT::ValueType)VT));
49}
50
51//===----------------------------------------------------------------------===//
Chris Lattner33c92e92005-09-08 21:27:15 +000052// SDTypeConstraint implementation
53//
54
55SDTypeConstraint::SDTypeConstraint(Record *R) {
56 OperandNo = R->getValueAsInt("OperandNum");
57
58 if (R->isSubClassOf("SDTCisVT")) {
59 ConstraintType = SDTCisVT;
60 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
Chris Lattner5b21be72005-12-09 22:57:42 +000061 } else if (R->isSubClassOf("SDTCisPtrTy")) {
62 ConstraintType = SDTCisPtrTy;
Chris Lattner33c92e92005-09-08 21:27:15 +000063 } else if (R->isSubClassOf("SDTCisInt")) {
64 ConstraintType = SDTCisInt;
65 } else if (R->isSubClassOf("SDTCisFP")) {
66 ConstraintType = SDTCisFP;
67 } else if (R->isSubClassOf("SDTCisSameAs")) {
68 ConstraintType = SDTCisSameAs;
69 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
70 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
71 ConstraintType = SDTCisVTSmallerThanOp;
72 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum =
73 R->getValueAsInt("OtherOperandNum");
Chris Lattner03ebd802005-10-14 04:53:53 +000074 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
75 ConstraintType = SDTCisOpSmallerThanOp;
76 x.SDTCisOpSmallerThanOp_Info.BigOperandNum =
77 R->getValueAsInt("BigOperandNum");
Chris Lattner33c92e92005-09-08 21:27:15 +000078 } else {
79 std::cerr << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n";
80 exit(1);
81 }
82}
83
Chris Lattner32707602005-09-08 23:22:48 +000084/// getOperandNum - Return the node corresponding to operand #OpNo in tree
85/// N, which has NumResults results.
86TreePatternNode *SDTypeConstraint::getOperandNum(unsigned OpNo,
87 TreePatternNode *N,
88 unsigned NumResults) const {
Evan Cheng1c3d19e2005-12-04 08:18:16 +000089 assert(NumResults <= 1 &&
90 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +000091
92 if (OpNo < NumResults)
93 return N; // FIXME: need value #
94 else
95 return N->getChild(OpNo-NumResults);
96}
97
98/// ApplyTypeConstraint - Given a node in a pattern, apply this type
99/// constraint to the nodes operands. This returns true if it makes a
100/// change, false otherwise. If a type contradiction is found, throw an
101/// exception.
102bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
103 const SDNodeInfo &NodeInfo,
104 TreePattern &TP) const {
105 unsigned NumResults = NodeInfo.getNumResults();
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000106 assert(NumResults <= 1 &&
107 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +0000108
109 // Check that the number of operands is sane.
110 if (NodeInfo.getNumOperands() >= 0) {
111 if (N->getNumChildren() != (unsigned)NodeInfo.getNumOperands())
112 TP.error(N->getOperator()->getName() + " node requires exactly " +
113 itostr(NodeInfo.getNumOperands()) + " operands!");
114 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000115
116 const CodeGenTarget &CGT = TP.getDAGISelEmitter().getTargetInfo();
Chris Lattner32707602005-09-08 23:22:48 +0000117
118 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NumResults);
119
120 switch (ConstraintType) {
121 default: assert(0 && "Unknown constraint type!");
122 case SDTCisVT:
123 // Operand must be a particular type.
124 return NodeToApply->UpdateNodeType(x.SDTCisVT_Info.VT, TP);
Chris Lattner5b21be72005-12-09 22:57:42 +0000125 case SDTCisPtrTy: {
126 // Operand must be same as target pointer type.
127 return NodeToApply->UpdateNodeType(CGT.getPointerType(), TP);
128 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000129 case SDTCisInt: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000130 // If there is only one integer type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000131 std::vector<MVT::ValueType> IntVTs =
132 FilterVTs(CGT.getLegalValueTypes(), MVT::isInteger);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000133
134 // If we found exactly one supported integer type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000135 if (IntVTs.size() == 1)
136 return NodeToApply->UpdateNodeType(IntVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000137 return NodeToApply->UpdateNodeType(MVT::isInt, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000138 }
139 case SDTCisFP: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000140 // If there is only one FP type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000141 std::vector<MVT::ValueType> FPVTs =
142 FilterVTs(CGT.getLegalValueTypes(), MVT::isFloatingPoint);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000143
144 // If we found exactly one supported FP type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000145 if (FPVTs.size() == 1)
146 return NodeToApply->UpdateNodeType(FPVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000147 return NodeToApply->UpdateNodeType(MVT::isFP, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000148 }
Chris Lattner32707602005-09-08 23:22:48 +0000149 case SDTCisSameAs: {
150 TreePatternNode *OtherNode =
151 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000152 return NodeToApply->UpdateNodeType(OtherNode->getExtType(), TP) |
153 OtherNode->UpdateNodeType(NodeToApply->getExtType(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000154 }
155 case SDTCisVTSmallerThanOp: {
156 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must
157 // have an integer type that is smaller than the VT.
158 if (!NodeToApply->isLeaf() ||
159 !dynamic_cast<DefInit*>(NodeToApply->getLeafValue()) ||
160 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
161 ->isSubClassOf("ValueType"))
162 TP.error(N->getOperator()->getName() + " expects a VT operand!");
163 MVT::ValueType VT =
164 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
165 if (!MVT::isInteger(VT))
166 TP.error(N->getOperator()->getName() + " VT operand must be integer!");
167
168 TreePatternNode *OtherNode =
169 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N,NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000170
171 // It must be integer.
172 bool MadeChange = false;
173 MadeChange |= OtherNode->UpdateNodeType(MVT::isInt, TP);
174
175 if (OtherNode->hasTypeSet() && OtherNode->getType() <= VT)
Chris Lattner32707602005-09-08 23:22:48 +0000176 OtherNode->UpdateNodeType(MVT::Other, TP); // Throw an error.
177 return false;
178 }
Chris Lattner03ebd802005-10-14 04:53:53 +0000179 case SDTCisOpSmallerThanOp: {
Chris Lattner603d78c2005-10-14 06:25:00 +0000180 TreePatternNode *BigOperand =
181 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NumResults);
182
183 // Both operands must be integer or FP, but we don't care which.
184 bool MadeChange = false;
185
186 if (isExtIntegerVT(NodeToApply->getExtType()))
187 MadeChange |= BigOperand->UpdateNodeType(MVT::isInt, TP);
188 else if (isExtFloatingPointVT(NodeToApply->getExtType()))
189 MadeChange |= BigOperand->UpdateNodeType(MVT::isFP, TP);
190 if (isExtIntegerVT(BigOperand->getExtType()))
191 MadeChange |= NodeToApply->UpdateNodeType(MVT::isInt, TP);
192 else if (isExtFloatingPointVT(BigOperand->getExtType()))
193 MadeChange |= NodeToApply->UpdateNodeType(MVT::isFP, TP);
194
195 std::vector<MVT::ValueType> VTs = CGT.getLegalValueTypes();
196
197 if (isExtIntegerVT(NodeToApply->getExtType())) {
198 VTs = FilterVTs(VTs, MVT::isInteger);
199 } else if (isExtFloatingPointVT(NodeToApply->getExtType())) {
200 VTs = FilterVTs(VTs, MVT::isFloatingPoint);
201 } else {
202 VTs.clear();
203 }
204
205 switch (VTs.size()) {
206 default: // Too many VT's to pick from.
207 case 0: break; // No info yet.
208 case 1:
209 // Only one VT of this flavor. Cannot ever satisify the constraints.
210 return NodeToApply->UpdateNodeType(MVT::Other, TP); // throw
211 case 2:
212 // If we have exactly two possible types, the little operand must be the
213 // small one, the big operand should be the big one. Common with
214 // float/double for example.
215 assert(VTs[0] < VTs[1] && "Should be sorted!");
216 MadeChange |= NodeToApply->UpdateNodeType(VTs[0], TP);
217 MadeChange |= BigOperand->UpdateNodeType(VTs[1], TP);
218 break;
219 }
220 return MadeChange;
Chris Lattner03ebd802005-10-14 04:53:53 +0000221 }
Chris Lattner32707602005-09-08 23:22:48 +0000222 }
223 return false;
224}
225
226
Chris Lattner33c92e92005-09-08 21:27:15 +0000227//===----------------------------------------------------------------------===//
Chris Lattnerca559d02005-09-08 21:03:01 +0000228// SDNodeInfo implementation
229//
230SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
231 EnumName = R->getValueAsString("Opcode");
232 SDClassName = R->getValueAsString("SDClass");
Chris Lattner33c92e92005-09-08 21:27:15 +0000233 Record *TypeProfile = R->getValueAsDef("TypeProfile");
234 NumResults = TypeProfile->getValueAsInt("NumResults");
235 NumOperands = TypeProfile->getValueAsInt("NumOperands");
236
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000237 // Parse the properties.
238 Properties = 0;
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000239 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
Chris Lattner6bc0d742005-10-28 22:43:25 +0000240 for (unsigned i = 0, e = PropList.size(); i != e; ++i) {
241 if (PropList[i]->getName() == "SDNPCommutative") {
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000242 Properties |= 1 << SDNPCommutative;
Chris Lattner6bc0d742005-10-28 22:43:25 +0000243 } else if (PropList[i]->getName() == "SDNPAssociative") {
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000244 Properties |= 1 << SDNPAssociative;
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000245 } else if (PropList[i]->getName() == "SDNPHasChain") {
246 Properties |= 1 << SDNPHasChain;
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000247 } else {
Chris Lattner6bc0d742005-10-28 22:43:25 +0000248 std::cerr << "Unknown SD Node property '" << PropList[i]->getName()
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000249 << "' on node '" << R->getName() << "'!\n";
250 exit(1);
251 }
252 }
253
254
Chris Lattner33c92e92005-09-08 21:27:15 +0000255 // Parse the type constraints.
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000256 std::vector<Record*> ConstraintList =
257 TypeProfile->getValueAsListOfDefs("Constraints");
258 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
Chris Lattnerca559d02005-09-08 21:03:01 +0000259}
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000260
261//===----------------------------------------------------------------------===//
262// TreePatternNode implementation
263//
264
265TreePatternNode::~TreePatternNode() {
266#if 0 // FIXME: implement refcounted tree nodes!
267 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
268 delete getChild(i);
269#endif
270}
271
Chris Lattner32707602005-09-08 23:22:48 +0000272/// UpdateNodeType - Set the node type of N to VT if VT contains
273/// information. If N already contains a conflicting type, then throw an
274/// exception. This returns true if any information was updated.
275///
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000276bool TreePatternNode::UpdateNodeType(unsigned char VT, TreePattern &TP) {
277 if (VT == MVT::isUnknown || getExtType() == VT) return false;
278 if (getExtType() == MVT::isUnknown) {
Chris Lattner32707602005-09-08 23:22:48 +0000279 setType(VT);
280 return true;
281 }
282
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000283 // If we are told this is to be an int or FP type, and it already is, ignore
284 // the advice.
285 if ((VT == MVT::isInt && isExtIntegerVT(getExtType())) ||
286 (VT == MVT::isFP && isExtFloatingPointVT(getExtType())))
287 return false;
288
289 // If we know this is an int or fp type, and we are told it is a specific one,
290 // take the advice.
291 if ((getExtType() == MVT::isInt && isExtIntegerVT(VT)) ||
292 (getExtType() == MVT::isFP && isExtFloatingPointVT(VT))) {
293 setType(VT);
294 return true;
295 }
296
Chris Lattner1531f202005-10-26 16:59:37 +0000297 if (isLeaf()) {
298 dump();
Evan Chengbcecf332005-12-17 01:19:28 +0000299 std::cerr << " ";
Chris Lattner1531f202005-10-26 16:59:37 +0000300 TP.error("Type inference contradiction found in node!");
301 } else {
302 TP.error("Type inference contradiction found in node " +
303 getOperator()->getName() + "!");
304 }
Chris Lattner32707602005-09-08 23:22:48 +0000305 return true; // unreachable
306}
307
308
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000309void TreePatternNode::print(std::ostream &OS) const {
310 if (isLeaf()) {
311 OS << *getLeafValue();
312 } else {
313 OS << "(" << getOperator()->getName();
314 }
315
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000316 switch (getExtType()) {
317 case MVT::Other: OS << ":Other"; break;
318 case MVT::isInt: OS << ":isInt"; break;
319 case MVT::isFP : OS << ":isFP"; break;
320 case MVT::isUnknown: ; /*OS << ":?";*/ break;
321 default: OS << ":" << getType(); break;
322 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000323
324 if (!isLeaf()) {
325 if (getNumChildren() != 0) {
326 OS << " ";
327 getChild(0)->print(OS);
328 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
329 OS << ", ";
330 getChild(i)->print(OS);
331 }
332 }
333 OS << ")";
334 }
335
336 if (!PredicateFn.empty())
Chris Lattner24eeeb82005-09-13 21:51:00 +0000337 OS << "<<P:" << PredicateFn << ">>";
Chris Lattnerb0276202005-09-14 22:55:26 +0000338 if (TransformFn)
339 OS << "<<X:" << TransformFn->getName() << ">>";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000340 if (!getName().empty())
341 OS << ":$" << getName();
342
343}
344void TreePatternNode::dump() const {
345 print(std::cerr);
346}
347
Chris Lattnere46e17b2005-09-29 19:28:10 +0000348/// isIsomorphicTo - Return true if this node is recursively isomorphic to
349/// the specified node. For this comparison, all of the state of the node
350/// is considered, except for the assigned name. Nodes with differing names
351/// that are otherwise identical are considered isomorphic.
352bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N) const {
353 if (N == this) return true;
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000354 if (N->isLeaf() != isLeaf() || getExtType() != N->getExtType() ||
Chris Lattnere46e17b2005-09-29 19:28:10 +0000355 getPredicateFn() != N->getPredicateFn() ||
356 getTransformFn() != N->getTransformFn())
357 return false;
358
359 if (isLeaf()) {
360 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue()))
361 if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue()))
362 return DI->getDef() == NDI->getDef();
363 return getLeafValue() == N->getLeafValue();
364 }
365
366 if (N->getOperator() != getOperator() ||
367 N->getNumChildren() != getNumChildren()) return false;
368 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
369 if (!getChild(i)->isIsomorphicTo(N->getChild(i)))
370 return false;
371 return true;
372}
373
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000374/// clone - Make a copy of this tree and all of its children.
375///
376TreePatternNode *TreePatternNode::clone() const {
377 TreePatternNode *New;
378 if (isLeaf()) {
379 New = new TreePatternNode(getLeafValue());
380 } else {
381 std::vector<TreePatternNode*> CChildren;
382 CChildren.reserve(Children.size());
383 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
384 CChildren.push_back(getChild(i)->clone());
385 New = new TreePatternNode(getOperator(), CChildren);
386 }
387 New->setName(getName());
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000388 New->setType(getExtType());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000389 New->setPredicateFn(getPredicateFn());
Chris Lattner24eeeb82005-09-13 21:51:00 +0000390 New->setTransformFn(getTransformFn());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000391 return New;
392}
393
Chris Lattner32707602005-09-08 23:22:48 +0000394/// SubstituteFormalArguments - Replace the formal arguments in this tree
395/// with actual values specified by ArgMap.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000396void TreePatternNode::
397SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
398 if (isLeaf()) return;
399
400 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
401 TreePatternNode *Child = getChild(i);
402 if (Child->isLeaf()) {
403 Init *Val = Child->getLeafValue();
404 if (dynamic_cast<DefInit*>(Val) &&
405 static_cast<DefInit*>(Val)->getDef()->getName() == "node") {
406 // We found a use of a formal argument, replace it with its value.
407 Child = ArgMap[Child->getName()];
408 assert(Child && "Couldn't find formal argument!");
409 setChild(i, Child);
410 }
411 } else {
412 getChild(i)->SubstituteFormalArguments(ArgMap);
413 }
414 }
415}
416
417
418/// InlinePatternFragments - If this pattern refers to any pattern
419/// fragments, inline them into place, giving us a pattern without any
420/// PatFrag references.
421TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
422 if (isLeaf()) return this; // nothing to do.
423 Record *Op = getOperator();
424
425 if (!Op->isSubClassOf("PatFrag")) {
426 // Just recursively inline children nodes.
427 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
428 setChild(i, getChild(i)->InlinePatternFragments(TP));
429 return this;
430 }
431
432 // Otherwise, we found a reference to a fragment. First, look up its
433 // TreePattern record.
434 TreePattern *Frag = TP.getDAGISelEmitter().getPatternFragment(Op);
435
436 // Verify that we are passing the right number of operands.
437 if (Frag->getNumArgs() != Children.size())
438 TP.error("'" + Op->getName() + "' fragment requires " +
439 utostr(Frag->getNumArgs()) + " operands!");
440
Chris Lattner37937092005-09-09 01:15:01 +0000441 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000442
443 // Resolve formal arguments to their actual value.
444 if (Frag->getNumArgs()) {
445 // Compute the map of formal to actual arguments.
446 std::map<std::string, TreePatternNode*> ArgMap;
447 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
448 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
449
450 FragTree->SubstituteFormalArguments(ArgMap);
451 }
452
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000453 FragTree->setName(getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000454 FragTree->UpdateNodeType(getExtType(), TP);
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000455
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000456 // Get a new copy of this fragment to stitch into here.
457 //delete this; // FIXME: implement refcounting!
458 return FragTree;
459}
460
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000461/// getIntrinsicType - Check to see if the specified record has an intrinsic
462/// type which should be applied to it. This infer the type of register
463/// references from the register file information, for example.
464///
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000465static unsigned char getIntrinsicType(Record *R, bool NotRegisters,
466 TreePattern &TP) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000467 // Check to see if this is a register or a register class...
468 if (R->isSubClassOf("RegisterClass")) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000469 if (NotRegisters) return MVT::isUnknown;
Nate Begeman6510b222005-12-01 04:51:06 +0000470 const CodeGenRegisterClass &RC =
471 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(R);
472 return RC.getValueTypeNum(0);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000473 } else if (R->isSubClassOf("PatFrag")) {
474 // Pattern fragment types will be resolved when they are inlined.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000475 return MVT::isUnknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000476 } else if (R->isSubClassOf("Register")) {
Chris Lattner22faeab2005-12-05 02:36:37 +0000477 // If the register appears in exactly one regclass, and the regclass has one
478 // value type, use it as the known type.
479 const CodeGenTarget &T = TP.getDAGISelEmitter().getTargetInfo();
480 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
481 if (RC->getNumValueTypes() == 1)
482 return RC->getValueTypeNum(0);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000483 return MVT::isUnknown;
Chris Lattner1531f202005-10-26 16:59:37 +0000484 } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
485 // Using a VTSDNode or CondCodeSDNode.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000486 return MVT::Other;
Evan Cheng0fc71982005-12-08 02:00:36 +0000487 } else if (R->isSubClassOf("ComplexPattern")) {
Evan Cheng3aa39f42005-12-08 02:14:08 +0000488 return TP.getDAGISelEmitter().getComplexPattern(R).getValueType();
Evan Cheng01f318b2005-12-14 02:21:57 +0000489 } else if (R->getName() == "node" || R->getName() == "srcvalue") {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000490 // Placeholder.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000491 return MVT::isUnknown;
Evan Cheng97938882005-12-22 02:24:50 +0000492 } else if (R->getName() == "FLAG") {
493 // Some pseudo flag operand.
494 return MVT::Flag;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000495 }
496
497 TP.error("Unknown node flavor used in pattern: " + R->getName());
498 return MVT::Other;
499}
500
Chris Lattner32707602005-09-08 23:22:48 +0000501/// ApplyTypeConstraints - Apply all of the type constraints relevent to
502/// this node and its children in the tree. This returns true if it makes a
503/// change, false otherwise. If a type contradiction is found, throw an
504/// exception.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000505bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
506 if (isLeaf()) {
Chris Lattner465c7372005-11-03 05:46:11 +0000507 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000508 // If it's a regclass or something else known, include the type.
509 return UpdateNodeType(getIntrinsicType(DI->getDef(), NotRegisters, TP),
510 TP);
Chris Lattner465c7372005-11-03 05:46:11 +0000511 } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
512 // Int inits are always integers. :)
513 bool MadeChange = UpdateNodeType(MVT::isInt, TP);
514
515 if (hasTypeSet()) {
516 unsigned Size = MVT::getSizeInBits(getType());
517 // Make sure that the value is representable for this type.
518 if (Size < 32) {
519 int Val = (II->getValue() << (32-Size)) >> (32-Size);
520 if (Val != II->getValue())
521 TP.error("Sign-extended integer value '" + itostr(II->getValue()) +
522 "' is out of range for type 'MVT::" +
523 getEnumName(getType()) + "'!");
524 }
525 }
526
527 return MadeChange;
528 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000529 return false;
530 }
Chris Lattner32707602005-09-08 23:22:48 +0000531
532 // special handling for set, which isn't really an SDNode.
533 if (getOperator()->getName() == "set") {
534 assert (getNumChildren() == 2 && "Only handle 2 operand set's for now!");
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000535 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
536 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner32707602005-09-08 23:22:48 +0000537
538 // Types of operands must match.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000539 MadeChange |= getChild(0)->UpdateNodeType(getChild(1)->getExtType(), TP);
540 MadeChange |= getChild(1)->UpdateNodeType(getChild(0)->getExtType(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000541 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
542 return MadeChange;
Chris Lattnerabbb6052005-09-15 21:42:00 +0000543 } else if (getOperator()->isSubClassOf("SDNode")) {
544 const SDNodeInfo &NI = TP.getDAGISelEmitter().getSDNodeInfo(getOperator());
545
546 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
547 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000548 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000549 // Branch, etc. do not produce results and top-level forms in instr pattern
550 // must have void types.
551 if (NI.getNumResults() == 0)
552 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
Chris Lattnerabbb6052005-09-15 21:42:00 +0000553 return MadeChange;
Chris Lattnera28aec12005-09-15 22:23:50 +0000554 } else if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattnerae5b3502005-09-15 21:57:35 +0000555 const DAGInstruction &Inst =
556 TP.getDAGISelEmitter().getInstruction(getOperator());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000557 bool MadeChange = false;
558 unsigned NumResults = Inst.getNumResults();
Chris Lattnerae5b3502005-09-15 21:57:35 +0000559
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000560 assert(NumResults <= 1 &&
561 "Only supports zero or one result instrs!");
Chris Lattnera28aec12005-09-15 22:23:50 +0000562 // Apply the result type to the node
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000563 if (NumResults == 0) {
564 MadeChange = UpdateNodeType(MVT::isVoid, TP);
565 } else {
566 Record *ResultNode = Inst.getResult(0);
567 assert(ResultNode->isSubClassOf("RegisterClass") &&
568 "Operands should be register classes!");
Nate Begemanddb39542005-12-01 00:06:14 +0000569
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000570 const CodeGenRegisterClass &RC =
571 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(ResultNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000572
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000573 // Get the first ValueType in the RegClass, it's as good as any.
574 MadeChange = UpdateNodeType(RC.getValueTypeNum(0), TP);
575 }
Chris Lattnera28aec12005-09-15 22:23:50 +0000576
577 if (getNumChildren() != Inst.getNumOperands())
578 TP.error("Instruction '" + getOperator()->getName() + " expects " +
579 utostr(Inst.getNumOperands()) + " operands, not " +
580 utostr(getNumChildren()) + " operands!");
581 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
Nate Begemanddb39542005-12-01 00:06:14 +0000582 Record *OperandNode = Inst.getOperand(i);
583 MVT::ValueType VT;
584 if (OperandNode->isSubClassOf("RegisterClass")) {
585 const CodeGenRegisterClass &RC =
586 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(OperandNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000587 VT = RC.getValueTypeNum(0);
Nate Begemanddb39542005-12-01 00:06:14 +0000588 } else if (OperandNode->isSubClassOf("Operand")) {
589 VT = getValueType(OperandNode->getValueAsDef("Type"));
590 } else {
591 assert(0 && "Unknown operand type!");
592 abort();
593 }
594
595 MadeChange |= getChild(i)->UpdateNodeType(VT, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000596 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnera28aec12005-09-15 22:23:50 +0000597 }
598 return MadeChange;
599 } else {
600 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
601
602 // Node transforms always take one operand, and take and return the same
603 // type.
604 if (getNumChildren() != 1)
605 TP.error("Node transform '" + getOperator()->getName() +
606 "' requires one operand!");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000607 bool MadeChange = UpdateNodeType(getChild(0)->getExtType(), TP);
608 MadeChange |= getChild(0)->UpdateNodeType(getExtType(), TP);
Chris Lattnera28aec12005-09-15 22:23:50 +0000609 return MadeChange;
Chris Lattner32707602005-09-08 23:22:48 +0000610 }
Chris Lattner32707602005-09-08 23:22:48 +0000611}
612
Chris Lattnere97603f2005-09-28 19:27:25 +0000613/// canPatternMatch - If it is impossible for this pattern to match on this
614/// target, fill in Reason and return false. Otherwise, return true. This is
615/// used as a santity check for .td files (to prevent people from writing stuff
616/// that can never possibly work), and to prevent the pattern permuter from
617/// generating stuff that is useless.
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000618bool TreePatternNode::canPatternMatch(std::string &Reason, DAGISelEmitter &ISE){
Chris Lattnere97603f2005-09-28 19:27:25 +0000619 if (isLeaf()) return true;
620
621 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
622 if (!getChild(i)->canPatternMatch(Reason, ISE))
623 return false;
Evan Cheng0fc71982005-12-08 02:00:36 +0000624
Chris Lattnere97603f2005-09-28 19:27:25 +0000625 // If this node is a commutative operator, check that the LHS isn't an
626 // immediate.
627 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(getOperator());
628 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
629 // Scan all of the operands of the node and make sure that only the last one
630 // is a constant node.
631 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i)
632 if (!getChild(i)->isLeaf() &&
633 getChild(i)->getOperator()->getName() == "imm") {
634 Reason = "Immediate value must be on the RHS of commutative operators!";
635 return false;
636 }
637 }
638
639 return true;
640}
Chris Lattner32707602005-09-08 23:22:48 +0000641
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000642//===----------------------------------------------------------------------===//
643// TreePattern implementation
644//
645
Chris Lattneredbd8712005-10-21 01:19:59 +0000646TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattneree9f0c32005-09-13 21:20:49 +0000647 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000648 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000649 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
650 Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000651}
652
Chris Lattneredbd8712005-10-21 01:19:59 +0000653TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000654 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000655 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000656 Trees.push_back(ParseTreePattern(Pat));
657}
658
Chris Lattneredbd8712005-10-21 01:19:59 +0000659TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000660 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000661 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000662 Trees.push_back(Pat);
663}
664
665
666
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000667void TreePattern::error(const std::string &Msg) const {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000668 dump();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000669 throw "In " + TheRecord->getName() + ": " + Msg;
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000670}
671
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000672TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
673 Record *Operator = Dag->getNodeType();
674
675 if (Operator->isSubClassOf("ValueType")) {
676 // If the operator is a ValueType, then this must be "type cast" of a leaf
677 // node.
678 if (Dag->getNumArgs() != 1)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000679 error("Type cast only takes one operand!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000680
681 Init *Arg = Dag->getArg(0);
682 TreePatternNode *New;
683 if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
Chris Lattner72fe91c2005-09-24 00:40:24 +0000684 Record *R = DI->getDef();
685 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
686 Dag->setArg(0, new DagInit(R,
687 std::vector<std::pair<Init*, std::string> >()));
Chris Lattner12cf9092005-11-16 23:14:54 +0000688 return ParseTreePattern(Dag);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000689 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000690 New = new TreePatternNode(DI);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000691 } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
692 New = ParseTreePattern(DI);
Chris Lattner0614b622005-11-02 06:49:14 +0000693 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
694 New = new TreePatternNode(II);
695 if (!Dag->getArgName(0).empty())
696 error("Constant int argument should not have a name!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000697 } else {
698 Arg->dump();
699 error("Unknown leaf value for tree pattern!");
700 return 0;
701 }
702
Chris Lattner32707602005-09-08 23:22:48 +0000703 // Apply the type cast.
704 New->UpdateNodeType(getValueType(Operator), *this);
Chris Lattner12cf9092005-11-16 23:14:54 +0000705 New->setName(Dag->getArgName(0));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000706 return New;
707 }
708
709 // Verify that this is something that makes sense for an operator.
710 if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
Chris Lattnerabbb6052005-09-15 21:42:00 +0000711 !Operator->isSubClassOf("Instruction") &&
712 !Operator->isSubClassOf("SDNodeXForm") &&
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000713 Operator->getName() != "set")
714 error("Unrecognized node '" + Operator->getName() + "'!");
715
Chris Lattneredbd8712005-10-21 01:19:59 +0000716 // Check to see if this is something that is illegal in an input pattern.
717 if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
718 Operator->isSubClassOf("SDNodeXForm")))
719 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
720
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000721 std::vector<TreePatternNode*> Children;
722
723 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
724 Init *Arg = Dag->getArg(i);
725 if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
726 Children.push_back(ParseTreePattern(DI));
Chris Lattner12cf9092005-11-16 23:14:54 +0000727 if (Children.back()->getName().empty())
728 Children.back()->setName(Dag->getArgName(i));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000729 } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
730 Record *R = DefI->getDef();
731 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
732 // TreePatternNode if its own.
733 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
734 Dag->setArg(i, new DagInit(R,
735 std::vector<std::pair<Init*, std::string> >()));
736 --i; // Revisit this node...
737 } else {
738 TreePatternNode *Node = new TreePatternNode(DefI);
739 Node->setName(Dag->getArgName(i));
740 Children.push_back(Node);
741
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000742 // Input argument?
743 if (R->getName() == "node") {
744 if (Dag->getArgName(i).empty())
745 error("'node' argument requires a name to match with operand list");
746 Args.push_back(Dag->getArgName(i));
747 }
748 }
Chris Lattner5d5a0562005-10-19 04:30:56 +0000749 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
750 TreePatternNode *Node = new TreePatternNode(II);
751 if (!Dag->getArgName(i).empty())
752 error("Constant int argument should not have a name!");
753 Children.push_back(Node);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000754 } else {
Chris Lattner5d5a0562005-10-19 04:30:56 +0000755 std::cerr << '"';
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000756 Arg->dump();
Chris Lattner5d5a0562005-10-19 04:30:56 +0000757 std::cerr << "\": ";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000758 error("Unknown leaf value for tree pattern!");
759 }
760 }
761
762 return new TreePatternNode(Operator, Children);
763}
764
Chris Lattner32707602005-09-08 23:22:48 +0000765/// InferAllTypes - Infer/propagate as many types throughout the expression
766/// patterns as possible. Return true if all types are infered, false
767/// otherwise. Throw an exception if a type contradiction is found.
768bool TreePattern::InferAllTypes() {
769 bool MadeChange = true;
770 while (MadeChange) {
771 MadeChange = false;
772 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000773 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
Chris Lattner32707602005-09-08 23:22:48 +0000774 }
775
776 bool HasUnresolvedTypes = false;
777 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
778 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
779 return !HasUnresolvedTypes;
780}
781
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000782void TreePattern::print(std::ostream &OS) const {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000783 OS << getRecord()->getName();
784 if (!Args.empty()) {
785 OS << "(" << Args[0];
786 for (unsigned i = 1, e = Args.size(); i != e; ++i)
787 OS << ", " << Args[i];
788 OS << ")";
789 }
790 OS << ": ";
791
792 if (Trees.size() > 1)
793 OS << "[\n";
794 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
795 OS << "\t";
796 Trees[i]->print(OS);
797 OS << "\n";
798 }
799
800 if (Trees.size() > 1)
801 OS << "]\n";
802}
803
804void TreePattern::dump() const { print(std::cerr); }
805
806
807
808//===----------------------------------------------------------------------===//
809// DAGISelEmitter implementation
810//
811
Chris Lattnerca559d02005-09-08 21:03:01 +0000812// Parse all of the SDNode definitions for the target, populating SDNodes.
813void DAGISelEmitter::ParseNodeInfo() {
814 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
815 while (!Nodes.empty()) {
816 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
817 Nodes.pop_back();
818 }
819}
820
Chris Lattner24eeeb82005-09-13 21:51:00 +0000821/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
822/// map, and emit them to the file as functions.
823void DAGISelEmitter::ParseNodeTransforms(std::ostream &OS) {
824 OS << "\n// Node transformations.\n";
825 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
826 while (!Xforms.empty()) {
827 Record *XFormNode = Xforms.back();
828 Record *SDNode = XFormNode->getValueAsDef("Opcode");
829 std::string Code = XFormNode->getValueAsCode("XFormFunction");
830 SDNodeXForms.insert(std::make_pair(XFormNode,
831 std::make_pair(SDNode, Code)));
832
Chris Lattner1048b7a2005-09-13 22:03:37 +0000833 if (!Code.empty()) {
Chris Lattner24eeeb82005-09-13 21:51:00 +0000834 std::string ClassName = getSDNodeInfo(SDNode).getSDClassName();
835 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
836
Chris Lattner1048b7a2005-09-13 22:03:37 +0000837 OS << "inline SDOperand Transform_" << XFormNode->getName()
Chris Lattner24eeeb82005-09-13 21:51:00 +0000838 << "(SDNode *" << C2 << ") {\n";
839 if (ClassName != "SDNode")
840 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
841 OS << Code << "\n}\n";
842 }
843
844 Xforms.pop_back();
845 }
846}
847
Evan Cheng0fc71982005-12-08 02:00:36 +0000848void DAGISelEmitter::ParseComplexPatterns() {
849 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
850 while (!AMs.empty()) {
851 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
852 AMs.pop_back();
853 }
854}
Chris Lattner24eeeb82005-09-13 21:51:00 +0000855
856
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000857/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
858/// file, building up the PatternFragments map. After we've collected them all,
859/// inline fragments together as necessary, so that there are no references left
860/// inside a pattern fragment to a pattern fragment.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000861///
862/// This also emits all of the predicate functions to the output file.
863///
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000864void DAGISelEmitter::ParsePatternFragments(std::ostream &OS) {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000865 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
866
867 // First step, parse all of the fragments and emit predicate functions.
868 OS << "\n// Predicate functions.\n";
869 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +0000870 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
Chris Lattneredbd8712005-10-21 01:19:59 +0000871 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000872 PatternFragments[Fragments[i]] = P;
Chris Lattneree9f0c32005-09-13 21:20:49 +0000873
874 // Validate the argument list, converting it to map, to discard duplicates.
875 std::vector<std::string> &Args = P->getArgList();
876 std::set<std::string> OperandsMap(Args.begin(), Args.end());
877
878 if (OperandsMap.count(""))
879 P->error("Cannot have unnamed 'node' values in pattern fragment!");
880
881 // Parse the operands list.
882 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
883 if (OpsList->getNodeType()->getName() != "ops")
884 P->error("Operands list should start with '(ops ... '!");
885
886 // Copy over the arguments.
887 Args.clear();
888 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
889 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
890 static_cast<DefInit*>(OpsList->getArg(j))->
891 getDef()->getName() != "node")
892 P->error("Operands list should all be 'node' values.");
893 if (OpsList->getArgName(j).empty())
894 P->error("Operands list should have names for each operand!");
895 if (!OperandsMap.count(OpsList->getArgName(j)))
896 P->error("'" + OpsList->getArgName(j) +
897 "' does not occur in pattern or was multiply specified!");
898 OperandsMap.erase(OpsList->getArgName(j));
899 Args.push_back(OpsList->getArgName(j));
900 }
901
902 if (!OperandsMap.empty())
903 P->error("Operands list does not contain an entry for operand '" +
904 *OperandsMap.begin() + "'!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000905
906 // If there is a code init for this fragment, emit the predicate code and
907 // keep track of the fact that this fragment uses it.
Chris Lattner24eeeb82005-09-13 21:51:00 +0000908 std::string Code = Fragments[i]->getValueAsCode("Predicate");
909 if (!Code.empty()) {
Chris Lattner37937092005-09-09 01:15:01 +0000910 assert(!P->getOnlyTree()->isLeaf() && "Can't be a leaf!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000911 std::string ClassName =
Chris Lattner37937092005-09-09 01:15:01 +0000912 getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000913 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
914
Chris Lattner1048b7a2005-09-13 22:03:37 +0000915 OS << "inline bool Predicate_" << Fragments[i]->getName()
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000916 << "(SDNode *" << C2 << ") {\n";
917 if (ClassName != "SDNode")
918 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
Chris Lattner24eeeb82005-09-13 21:51:00 +0000919 OS << Code << "\n}\n";
Chris Lattner37937092005-09-09 01:15:01 +0000920 P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000921 }
Chris Lattner6de8b532005-09-13 21:59:15 +0000922
923 // If there is a node transformation corresponding to this, keep track of
924 // it.
925 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
926 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
Chris Lattnerb0276202005-09-14 22:55:26 +0000927 P->getOnlyTree()->setTransformFn(Transform);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000928 }
929
930 OS << "\n\n";
931
932 // Now that we've parsed all of the tree fragments, do a closure on them so
933 // that there are not references to PatFrags left inside of them.
934 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
935 E = PatternFragments.end(); I != E; ++I) {
Chris Lattner32707602005-09-08 23:22:48 +0000936 TreePattern *ThePat = I->second;
937 ThePat->InlinePatternFragments();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000938
Chris Lattner32707602005-09-08 23:22:48 +0000939 // Infer as many types as possible. Don't worry about it if we don't infer
940 // all of them, some may depend on the inputs of the pattern.
941 try {
942 ThePat->InferAllTypes();
943 } catch (...) {
944 // If this pattern fragment is not supported by this target (no types can
945 // satisfy its constraints), just ignore it. If the bogus pattern is
946 // actually used by instructions, the type consistency error will be
947 // reported there.
948 }
949
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000950 // If debugging, print out the pattern fragment result.
Chris Lattner32707602005-09-08 23:22:48 +0000951 DEBUG(ThePat->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000952 }
953}
954
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000955/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
Chris Lattnerf1311842005-09-14 23:05:13 +0000956/// instruction input. Return true if this is a real use.
957static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Evan Cheng97938882005-12-22 02:24:50 +0000958 std::map<std::string, TreePatternNode*> &InstInputs) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000959 // No name -> not interesting.
Chris Lattner7da852f2005-09-14 22:06:36 +0000960 if (Pat->getName().empty()) {
961 if (Pat->isLeaf()) {
962 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
963 if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
964 I->error("Input " + DI->getDef()->getName() + " must be named!");
Chris Lattner7da852f2005-09-14 22:06:36 +0000965 }
Chris Lattnerf1311842005-09-14 23:05:13 +0000966 return false;
Chris Lattner7da852f2005-09-14 22:06:36 +0000967 }
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000968
969 Record *Rec;
970 if (Pat->isLeaf()) {
971 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
972 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
973 Rec = DI->getDef();
974 } else {
975 assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
976 Rec = Pat->getOperator();
977 }
978
Evan Cheng01f318b2005-12-14 02:21:57 +0000979 // SRCVALUE nodes are ignored.
980 if (Rec->getName() == "srcvalue")
981 return false;
982
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000983 TreePatternNode *&Slot = InstInputs[Pat->getName()];
984 if (!Slot) {
985 Slot = Pat;
986 } else {
987 Record *SlotRec;
988 if (Slot->isLeaf()) {
Chris Lattnerb9f01eb2005-09-16 00:29:46 +0000989 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000990 } else {
991 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
992 SlotRec = Slot->getOperator();
993 }
994
995 // Ensure that the inputs agree if we've already seen this input.
996 if (Rec != SlotRec)
997 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000998 if (Slot->getExtType() != Pat->getExtType())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000999 I->error("All $" + Pat->getName() + " inputs must agree with each other");
1000 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001001 return true;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001002}
1003
1004/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1005/// part of "I", the instruction), computing the set of inputs and outputs of
1006/// the pattern. Report errors if we see anything naughty.
1007void DAGISelEmitter::
1008FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1009 std::map<std::string, TreePatternNode*> &InstInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001010 std::map<std::string, Record*> &InstResults,
Evan Chengbcecf332005-12-17 01:19:28 +00001011 std::vector<Record*> &InstImpResults) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001012 if (Pat->isLeaf()) {
Evan Cheng97938882005-12-22 02:24:50 +00001013 bool isUse = HandleUse(I, Pat, InstInputs);
Chris Lattnerf1311842005-09-14 23:05:13 +00001014 if (!isUse && Pat->getTransformFn())
1015 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001016 return;
1017 } else if (Pat->getOperator()->getName() != "set") {
1018 // If this is not a set, verify that the children nodes are not void typed,
1019 // and recurse.
1020 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001021 if (Pat->getChild(i)->getExtType() == MVT::isVoid)
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001022 I->error("Cannot have void nodes inside of patterns!");
Evan Chengbcecf332005-12-17 01:19:28 +00001023 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
Evan Cheng97938882005-12-22 02:24:50 +00001024 InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001025 }
1026
1027 // If this is a non-leaf node with no children, treat it basically as if
1028 // it were a leaf. This handles nodes like (imm).
Chris Lattnerf1311842005-09-14 23:05:13 +00001029 bool isUse = false;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001030 if (Pat->getNumChildren() == 0)
Evan Cheng97938882005-12-22 02:24:50 +00001031 isUse = HandleUse(I, Pat, InstInputs);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001032
Chris Lattnerf1311842005-09-14 23:05:13 +00001033 if (!isUse && Pat->getTransformFn())
1034 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001035 return;
1036 }
1037
1038 // Otherwise, this is a set, validate and collect instruction results.
1039 if (Pat->getNumChildren() == 0)
1040 I->error("set requires operands!");
1041 else if (Pat->getNumChildren() & 1)
1042 I->error("set requires an even number of operands");
1043
Chris Lattnerf1311842005-09-14 23:05:13 +00001044 if (Pat->getTransformFn())
1045 I->error("Cannot specify a transform function on a set node!");
1046
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001047 // Check the set destinations.
1048 unsigned NumValues = Pat->getNumChildren()/2;
1049 for (unsigned i = 0; i != NumValues; ++i) {
1050 TreePatternNode *Dest = Pat->getChild(i);
1051 if (!Dest->isLeaf())
Evan Cheng86217892005-12-12 19:37:43 +00001052 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001053
1054 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1055 if (!Val)
Evan Cheng86217892005-12-12 19:37:43 +00001056 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001057
Evan Chengbcecf332005-12-17 01:19:28 +00001058 if (Val->getDef()->isSubClassOf("RegisterClass")) {
1059 if (Dest->getName().empty())
1060 I->error("set destination must have a name!");
1061 if (InstResults.count(Dest->getName()))
1062 I->error("cannot set '" + Dest->getName() +"' multiple times");
1063 InstResults[Dest->getName()] = Val->getDef();
Evan Cheng97938882005-12-22 02:24:50 +00001064 } else if (Val->getDef()->isSubClassOf("Register") ||
1065 Val->getDef()->getName() == "FLAG") {
Evan Chengbcecf332005-12-17 01:19:28 +00001066 InstImpResults.push_back(Val->getDef());
1067 } else {
1068 I->error("set destination should be a register!");
1069 }
1070
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001071 // Verify and collect info from the computation.
1072 FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
Evan Cheng97938882005-12-22 02:24:50 +00001073 InstInputs, InstResults, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001074 }
1075}
1076
Evan Chengdd304dd2005-12-05 23:08:55 +00001077/// NodeHasChain - return true if TreePatternNode has the property
1078/// 'hasChain', meaning it reads a ctrl-flow chain operand and writes
1079/// a chain result.
1080static bool NodeHasChain(TreePatternNode *N, DAGISelEmitter &ISE)
1081{
1082 if (N->isLeaf()) return false;
1083 Record *Operator = N->getOperator();
1084 if (!Operator->isSubClassOf("SDNode")) return false;
1085
1086 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
1087 return NodeInfo.hasProperty(SDNodeInfo::SDNPHasChain);
1088}
1089
1090static bool PatternHasCtrlDep(TreePatternNode *N, DAGISelEmitter &ISE)
1091{
1092 if (NodeHasChain(N, ISE))
1093 return true;
1094 else {
1095 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1096 TreePatternNode *Child = N->getChild(i);
1097 if (PatternHasCtrlDep(Child, ISE))
1098 return true;
1099 }
1100 }
1101
1102 return false;
1103}
1104
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001105
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001106/// ParseInstructions - Parse all of the instructions, inlining and resolving
1107/// any fragments involved. This populates the Instructions list with fully
1108/// resolved instructions.
1109void DAGISelEmitter::ParseInstructions() {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001110 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1111
1112 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001113 ListInit *LI = 0;
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001114
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001115 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1116 LI = Instrs[i]->getValueAsListInit("Pattern");
1117
1118 // If there is no pattern, only collect minimal information about the
1119 // instruction for its operand list. We have to assume that there is one
1120 // result, as we have no detailed info.
1121 if (!LI || LI->getSize() == 0) {
Nate Begemanddb39542005-12-01 00:06:14 +00001122 std::vector<Record*> Results;
1123 std::vector<Record*> Operands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001124
1125 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001126
Evan Cheng3a217f32005-12-22 02:35:21 +00001127 if (InstInfo.OperandList.size() != 0) {
1128 // It's possible for some instruction, e.g. RET for X86 that only has an
1129 // implicit flag operand.
1130 // FIXME: temporary hack...
1131 if (InstInfo.isReturn || InstInfo.isBranch || InstInfo.isCall ||
1132 InstInfo.isStore) {
1133 // These produce no results
1134 for (unsigned j = 0, e = InstInfo.OperandList.size(); j < e; ++j)
1135 Operands.push_back(InstInfo.OperandList[j].Rec);
1136 } else {
1137 // Assume the first operand is the result.
1138 Results.push_back(InstInfo.OperandList[0].Rec);
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001139
Evan Cheng3a217f32005-12-22 02:35:21 +00001140 // The rest are inputs.
1141 for (unsigned j = 1, e = InstInfo.OperandList.size(); j < e; ++j)
1142 Operands.push_back(InstInfo.OperandList[j].Rec);
1143 }
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001144 }
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001145
1146 // Create and insert the instruction.
Evan Chengbcecf332005-12-17 01:19:28 +00001147 std::vector<Record*> ImpResults;
1148 std::vector<Record*> ImpOperands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001149 Instructions.insert(std::make_pair(Instrs[i],
Evan Cheng97938882005-12-22 02:24:50 +00001150 DAGInstruction(0, Results, Operands, ImpResults)));
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001151 continue; // no pattern.
1152 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001153
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001154 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001155 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001156 // Inline pattern fragments into it.
Chris Lattner32707602005-09-08 23:22:48 +00001157 I->InlinePatternFragments();
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001158
Chris Lattner95f6b762005-09-08 23:26:30 +00001159 // Infer as many types as possible. If we cannot infer all of them, we can
1160 // never do anything with this instruction pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001161 if (!I->InferAllTypes())
Chris Lattner32707602005-09-08 23:22:48 +00001162 I->error("Could not infer all types in pattern!");
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001163
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001164 // InstInputs - Keep track of all of the inputs of the instruction, along
1165 // with the record they are declared as.
1166 std::map<std::string, TreePatternNode*> InstInputs;
1167
1168 // InstResults - Keep track of all the virtual registers that are 'set'
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001169 // in the instruction, including what reg class they are.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001170 std::map<std::string, Record*> InstResults;
Evan Chengbcecf332005-12-17 01:19:28 +00001171 std::vector<Record*> InstImpResults;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001172
Chris Lattner1f39e292005-09-14 00:09:24 +00001173 // Verify that the top-level forms in the instruction are of void type, and
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001174 // fill in the InstResults map.
Chris Lattner1f39e292005-09-14 00:09:24 +00001175 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1176 TreePatternNode *Pat = I->getTree(j);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001177 if (Pat->getExtType() != MVT::isVoid)
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001178 I->error("Top-level forms in instruction pattern should have"
1179 " void types");
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001180
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001181 // Find inputs and outputs, and verify the structure of the uses/defs.
Evan Chengbcecf332005-12-17 01:19:28 +00001182 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
Evan Cheng97938882005-12-22 02:24:50 +00001183 InstImpResults);
Chris Lattner1f39e292005-09-14 00:09:24 +00001184 }
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001185
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001186 // Now that we have inputs and outputs of the pattern, inspect the operands
1187 // list for the instruction. This determines the order that operands are
1188 // added to the machine instruction the node corresponds to.
1189 unsigned NumResults = InstResults.size();
Chris Lattner39e8af92005-09-14 18:19:25 +00001190
1191 // Parse the operands list from the (ops) list, validating it.
1192 std::vector<std::string> &Args = I->getArgList();
1193 assert(Args.empty() && "Args list should still be empty here!");
1194 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1195
1196 // Check that all of the results occur first in the list.
Nate Begemanddb39542005-12-01 00:06:14 +00001197 std::vector<Record*> Results;
Chris Lattner39e8af92005-09-14 18:19:25 +00001198 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattner3a7319d2005-09-14 21:04:12 +00001199 if (i == CGI.OperandList.size())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001200 I->error("'" + InstResults.begin()->first +
1201 "' set but does not appear in operand list!");
Chris Lattner39e8af92005-09-14 18:19:25 +00001202 const std::string &OpName = CGI.OperandList[i].Name;
Chris Lattner39e8af92005-09-14 18:19:25 +00001203
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001204 // Check that it exists in InstResults.
1205 Record *R = InstResults[OpName];
Chris Lattner39e8af92005-09-14 18:19:25 +00001206 if (R == 0)
1207 I->error("Operand $" + OpName + " should be a set destination: all "
1208 "outputs must occur before inputs in operand list!");
1209
1210 if (CGI.OperandList[i].Rec != R)
1211 I->error("Operand $" + OpName + " class mismatch!");
1212
Chris Lattnerae6d8282005-09-15 21:51:12 +00001213 // Remember the return type.
Nate Begemanddb39542005-12-01 00:06:14 +00001214 Results.push_back(CGI.OperandList[i].Rec);
Chris Lattnerae6d8282005-09-15 21:51:12 +00001215
Chris Lattner39e8af92005-09-14 18:19:25 +00001216 // Okay, this one checks out.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001217 InstResults.erase(OpName);
1218 }
1219
Chris Lattner0b592252005-09-14 21:59:34 +00001220 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1221 // the copy while we're checking the inputs.
1222 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
Chris Lattnerb0276202005-09-14 22:55:26 +00001223
1224 std::vector<TreePatternNode*> ResultNodeOperands;
Nate Begemanddb39542005-12-01 00:06:14 +00001225 std::vector<Record*> Operands;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001226 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1227 const std::string &OpName = CGI.OperandList[i].Name;
1228 if (OpName.empty())
1229 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1230
Chris Lattner0b592252005-09-14 21:59:34 +00001231 if (!InstInputsCheck.count(OpName))
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001232 I->error("Operand $" + OpName +
1233 " does not appear in the instruction pattern");
Chris Lattner0b592252005-09-14 21:59:34 +00001234 TreePatternNode *InVal = InstInputsCheck[OpName];
Chris Lattnerb0276202005-09-14 22:55:26 +00001235 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Nate Begemanddb39542005-12-01 00:06:14 +00001236
1237 if (InVal->isLeaf() &&
1238 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1239 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Evan Cheng0fc71982005-12-08 02:00:36 +00001240 if (CGI.OperandList[i].Rec != InRec &&
1241 !InRec->isSubClassOf("ComplexPattern"))
Nate Begemanddb39542005-12-01 00:06:14 +00001242 I->error("Operand $" + OpName +
Evan Cheng0fc71982005-12-08 02:00:36 +00001243 "'s register class disagrees between the operand and pattern");
Nate Begemanddb39542005-12-01 00:06:14 +00001244 }
1245 Operands.push_back(CGI.OperandList[i].Rec);
Chris Lattnerb0276202005-09-14 22:55:26 +00001246
Chris Lattner2175c182005-09-14 23:01:59 +00001247 // Construct the result for the dest-pattern operand list.
1248 TreePatternNode *OpNode = InVal->clone();
1249
1250 // No predicate is useful on the result.
1251 OpNode->setPredicateFn("");
1252
1253 // Promote the xform function to be an explicit node if set.
1254 if (Record *Xform = OpNode->getTransformFn()) {
1255 OpNode->setTransformFn(0);
1256 std::vector<TreePatternNode*> Children;
1257 Children.push_back(OpNode);
1258 OpNode = new TreePatternNode(Xform, Children);
1259 }
1260
1261 ResultNodeOperands.push_back(OpNode);
Chris Lattner39e8af92005-09-14 18:19:25 +00001262 }
1263
Chris Lattner0b592252005-09-14 21:59:34 +00001264 if (!InstInputsCheck.empty())
1265 I->error("Input operand $" + InstInputsCheck.begin()->first +
1266 " occurs in pattern but not in operands list!");
Chris Lattnerb0276202005-09-14 22:55:26 +00001267
1268 TreePatternNode *ResultPattern =
1269 new TreePatternNode(I->getRecord(), ResultNodeOperands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001270
1271 // Create and insert the instruction.
Evan Cheng97938882005-12-22 02:24:50 +00001272 DAGInstruction TheInst(I, Results, Operands, InstImpResults);
Chris Lattnera28aec12005-09-15 22:23:50 +00001273 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1274
1275 // Use a temporary tree pattern to infer all types and make sure that the
1276 // constructed result is correct. This depends on the instruction already
1277 // being inserted into the Instructions map.
Chris Lattneredbd8712005-10-21 01:19:59 +00001278 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattnera28aec12005-09-15 22:23:50 +00001279 Temp.InferAllTypes();
1280
1281 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1282 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Chris Lattnerb0276202005-09-14 22:55:26 +00001283
Chris Lattner32707602005-09-08 23:22:48 +00001284 DEBUG(I->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001285 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001286
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001287 // If we can, convert the instructions to be patterns that are matched!
Chris Lattnerae5b3502005-09-15 21:57:35 +00001288 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1289 E = Instructions.end(); II != E; ++II) {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001290 DAGInstruction &TheInst = II->second;
1291 TreePattern *I = TheInst.getPattern();
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001292 if (I == 0) continue; // No pattern.
Evan Chengdd304dd2005-12-05 23:08:55 +00001293
Chris Lattner1f39e292005-09-14 00:09:24 +00001294 if (I->getNumTrees() != 1) {
1295 std::cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1296 continue;
1297 }
1298 TreePatternNode *Pattern = I->getTree(0);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001299 TreePatternNode *SrcPattern;
Evan Chengbcecf332005-12-17 01:19:28 +00001300 if (Pattern->getOperator()->getName() == "set") {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001301 if (Pattern->getNumChildren() != 2)
1302 continue; // Not a set of a single value (not handled so far)
1303
1304 SrcPattern = Pattern->getChild(1)->clone();
Evan Chengbcecf332005-12-17 01:19:28 +00001305 } else{
1306 // Not a set (store or something?)
1307 SrcPattern = Pattern;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001308 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001309
1310 std::string Reason;
1311 if (!SrcPattern->canPatternMatch(Reason, *this))
1312 I->error("Instruction can never match: " + Reason);
1313
Evan Cheng58e84a62005-12-14 22:02:59 +00001314 Record *Instr = II->first;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001315 TreePatternNode *DstPattern = TheInst.getResultPattern();
Evan Cheng58e84a62005-12-14 22:02:59 +00001316 PatternsToMatch.
1317 push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
1318 SrcPattern, DstPattern));
Evan Chengdd304dd2005-12-05 23:08:55 +00001319
1320 if (PatternHasCtrlDep(Pattern, *this)) {
Evan Chengdd304dd2005-12-05 23:08:55 +00001321 CodeGenInstruction &InstInfo = Target.getInstruction(Instr->getName());
1322 InstInfo.hasCtrlDep = true;
1323 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001324 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001325}
1326
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001327void DAGISelEmitter::ParsePatterns() {
Chris Lattnerabbb6052005-09-15 21:42:00 +00001328 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001329
Chris Lattnerabbb6052005-09-15 21:42:00 +00001330 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001331 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
Chris Lattneredbd8712005-10-21 01:19:59 +00001332 TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001333
Chris Lattnerabbb6052005-09-15 21:42:00 +00001334 // Inline pattern fragments into it.
1335 Pattern->InlinePatternFragments();
1336
1337 // Infer as many types as possible. If we cannot infer all of them, we can
1338 // never do anything with this pattern: report it to the user.
1339 if (!Pattern->InferAllTypes())
1340 Pattern->error("Could not infer all types in pattern!");
Chris Lattner09c03392005-11-17 17:43:52 +00001341
1342 // Validate that the input pattern is correct.
1343 {
1344 std::map<std::string, TreePatternNode*> InstInputs;
1345 std::map<std::string, Record*> InstResults;
Evan Chengbcecf332005-12-17 01:19:28 +00001346 std::vector<Record*> InstImpResults;
Chris Lattner09c03392005-11-17 17:43:52 +00001347 FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
Evan Chengbcecf332005-12-17 01:19:28 +00001348 InstInputs, InstResults,
Evan Cheng97938882005-12-22 02:24:50 +00001349 InstImpResults);
Chris Lattner09c03392005-11-17 17:43:52 +00001350 }
Chris Lattnerabbb6052005-09-15 21:42:00 +00001351
1352 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1353 if (LI->getSize() == 0) continue; // no pattern.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001354
1355 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001356 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
Chris Lattnerabbb6052005-09-15 21:42:00 +00001357
1358 // Inline pattern fragments into it.
1359 Result->InlinePatternFragments();
1360
1361 // Infer as many types as possible. If we cannot infer all of them, we can
1362 // never do anything with this pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001363 if (!Result->InferAllTypes())
Chris Lattnerae5b3502005-09-15 21:57:35 +00001364 Result->error("Could not infer all types in pattern result!");
Chris Lattnerabbb6052005-09-15 21:42:00 +00001365
1366 if (Result->getNumTrees() != 1)
1367 Result->error("Cannot handle instructions producing instructions "
1368 "with temporaries yet!");
Chris Lattnere97603f2005-09-28 19:27:25 +00001369
1370 std::string Reason;
1371 if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1372 Pattern->error("Pattern can never match: " + Reason);
1373
Evan Cheng58e84a62005-12-14 22:02:59 +00001374 PatternsToMatch.
1375 push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
1376 Pattern->getOnlyTree(),
1377 Result->getOnlyTree()));
Chris Lattnerabbb6052005-09-15 21:42:00 +00001378 }
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001379}
1380
Chris Lattnere46e17b2005-09-29 19:28:10 +00001381/// CombineChildVariants - Given a bunch of permutations of each child of the
1382/// 'operator' node, put them together in all possible ways.
1383static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattneraf302912005-09-29 22:36:54 +00001384 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
Chris Lattnere46e17b2005-09-29 19:28:10 +00001385 std::vector<TreePatternNode*> &OutVariants,
1386 DAGISelEmitter &ISE) {
Chris Lattneraf302912005-09-29 22:36:54 +00001387 // Make sure that each operand has at least one variant to choose from.
1388 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1389 if (ChildVariants[i].empty())
1390 return;
1391
Chris Lattnere46e17b2005-09-29 19:28:10 +00001392 // The end result is an all-pairs construction of the resultant pattern.
1393 std::vector<unsigned> Idxs;
1394 Idxs.resize(ChildVariants.size());
1395 bool NotDone = true;
1396 while (NotDone) {
1397 // Create the variant and add it to the output list.
1398 std::vector<TreePatternNode*> NewChildren;
1399 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1400 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1401 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1402
1403 // Copy over properties.
1404 R->setName(Orig->getName());
1405 R->setPredicateFn(Orig->getPredicateFn());
1406 R->setTransformFn(Orig->getTransformFn());
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001407 R->setType(Orig->getExtType());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001408
1409 // If this pattern cannot every match, do not include it as a variant.
1410 std::string ErrString;
1411 if (!R->canPatternMatch(ErrString, ISE)) {
1412 delete R;
1413 } else {
1414 bool AlreadyExists = false;
1415
1416 // Scan to see if this pattern has already been emitted. We can get
1417 // duplication due to things like commuting:
1418 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1419 // which are the same pattern. Ignore the dups.
1420 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1421 if (R->isIsomorphicTo(OutVariants[i])) {
1422 AlreadyExists = true;
1423 break;
1424 }
1425
1426 if (AlreadyExists)
1427 delete R;
1428 else
1429 OutVariants.push_back(R);
1430 }
1431
1432 // Increment indices to the next permutation.
1433 NotDone = false;
1434 // Look for something we can increment without causing a wrap-around.
1435 for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1436 if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1437 NotDone = true; // Found something to increment.
1438 break;
1439 }
1440 Idxs[IdxsIdx] = 0;
1441 }
1442 }
1443}
1444
Chris Lattneraf302912005-09-29 22:36:54 +00001445/// CombineChildVariants - A helper function for binary operators.
1446///
1447static void CombineChildVariants(TreePatternNode *Orig,
1448 const std::vector<TreePatternNode*> &LHS,
1449 const std::vector<TreePatternNode*> &RHS,
1450 std::vector<TreePatternNode*> &OutVariants,
1451 DAGISelEmitter &ISE) {
1452 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1453 ChildVariants.push_back(LHS);
1454 ChildVariants.push_back(RHS);
1455 CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1456}
1457
1458
1459static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1460 std::vector<TreePatternNode *> &Children) {
1461 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1462 Record *Operator = N->getOperator();
1463
1464 // Only permit raw nodes.
1465 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1466 N->getTransformFn()) {
1467 Children.push_back(N);
1468 return;
1469 }
1470
1471 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1472 Children.push_back(N->getChild(0));
1473 else
1474 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1475
1476 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1477 Children.push_back(N->getChild(1));
1478 else
1479 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1480}
1481
Chris Lattnere46e17b2005-09-29 19:28:10 +00001482/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1483/// the (potentially recursive) pattern by using algebraic laws.
1484///
1485static void GenerateVariantsOf(TreePatternNode *N,
1486 std::vector<TreePatternNode*> &OutVariants,
1487 DAGISelEmitter &ISE) {
1488 // We cannot permute leaves.
1489 if (N->isLeaf()) {
1490 OutVariants.push_back(N);
1491 return;
1492 }
1493
1494 // Look up interesting info about the node.
1495 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
1496
1497 // If this node is associative, reassociate.
Chris Lattneraf302912005-09-29 22:36:54 +00001498 if (NodeInfo.hasProperty(SDNodeInfo::SDNPAssociative)) {
1499 // Reassociate by pulling together all of the linked operators
1500 std::vector<TreePatternNode*> MaximalChildren;
1501 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1502
1503 // Only handle child sizes of 3. Otherwise we'll end up trying too many
1504 // permutations.
1505 if (MaximalChildren.size() == 3) {
1506 // Find the variants of all of our maximal children.
1507 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1508 GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1509 GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1510 GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1511
1512 // There are only two ways we can permute the tree:
1513 // (A op B) op C and A op (B op C)
1514 // Within these forms, we can also permute A/B/C.
1515
1516 // Generate legal pair permutations of A/B/C.
1517 std::vector<TreePatternNode*> ABVariants;
1518 std::vector<TreePatternNode*> BAVariants;
1519 std::vector<TreePatternNode*> ACVariants;
1520 std::vector<TreePatternNode*> CAVariants;
1521 std::vector<TreePatternNode*> BCVariants;
1522 std::vector<TreePatternNode*> CBVariants;
1523 CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1524 CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1525 CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1526 CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1527 CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1528 CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1529
1530 // Combine those into the result: (x op x) op x
1531 CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1532 CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1533 CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1534 CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1535 CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1536 CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1537
1538 // Combine those into the result: x op (x op x)
1539 CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1540 CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1541 CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1542 CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1543 CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1544 CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1545 return;
1546 }
1547 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00001548
1549 // Compute permutations of all children.
1550 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1551 ChildVariants.resize(N->getNumChildren());
1552 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1553 GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1554
1555 // Build all permutations based on how the children were formed.
1556 CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1557
1558 // If this node is commutative, consider the commuted order.
1559 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
1560 assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
Chris Lattneraf302912005-09-29 22:36:54 +00001561 // Consider the commuted order.
1562 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1563 OutVariants, ISE);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001564 }
1565}
1566
1567
Chris Lattnere97603f2005-09-28 19:27:25 +00001568// GenerateVariants - Generate variants. For example, commutative patterns can
1569// match multiple ways. Add them to PatternsToMatch as well.
1570void DAGISelEmitter::GenerateVariants() {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001571
1572 DEBUG(std::cerr << "Generating instruction variants.\n");
1573
1574 // Loop over all of the patterns we've collected, checking to see if we can
1575 // generate variants of the instruction, through the exploitation of
1576 // identities. This permits the target to provide agressive matching without
1577 // the .td file having to contain tons of variants of instructions.
1578 //
1579 // Note that this loop adds new patterns to the PatternsToMatch list, but we
1580 // intentionally do not reconsider these. Any variants of added patterns have
1581 // already been added.
1582 //
1583 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1584 std::vector<TreePatternNode*> Variants;
Evan Cheng58e84a62005-12-14 22:02:59 +00001585 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001586
1587 assert(!Variants.empty() && "Must create at least original variant!");
Chris Lattnere46e17b2005-09-29 19:28:10 +00001588 Variants.erase(Variants.begin()); // Remove the original pattern.
1589
1590 if (Variants.empty()) // No variants for this pattern.
1591 continue;
1592
1593 DEBUG(std::cerr << "FOUND VARIANTS OF: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00001594 PatternsToMatch[i].getSrcPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00001595 std::cerr << "\n");
1596
1597 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1598 TreePatternNode *Variant = Variants[v];
1599
1600 DEBUG(std::cerr << " VAR#" << v << ": ";
1601 Variant->dump();
1602 std::cerr << "\n");
1603
1604 // Scan to see if an instruction or explicit pattern already matches this.
1605 bool AlreadyExists = false;
1606 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1607 // Check to see if this variant already exists.
Evan Cheng58e84a62005-12-14 22:02:59 +00001608 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern())) {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001609 DEBUG(std::cerr << " *** ALREADY EXISTS, ignoring variant.\n");
1610 AlreadyExists = true;
1611 break;
1612 }
1613 }
1614 // If we already have it, ignore the variant.
1615 if (AlreadyExists) continue;
1616
1617 // Otherwise, add it to the list of patterns we have.
Evan Cheng58e84a62005-12-14 22:02:59 +00001618 PatternsToMatch.
1619 push_back(PatternToMatch(PatternsToMatch[i].getPredicates(),
1620 Variant, PatternsToMatch[i].getDstPattern()));
Chris Lattnere46e17b2005-09-29 19:28:10 +00001621 }
1622
1623 DEBUG(std::cerr << "\n");
1624 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001625}
1626
Chris Lattner7cf2fe62005-09-28 20:58:06 +00001627
Evan Cheng0fc71982005-12-08 02:00:36 +00001628// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
1629// ComplexPattern.
1630static bool NodeIsComplexPattern(TreePatternNode *N)
1631{
1632 return (N->isLeaf() &&
1633 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1634 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1635 isSubClassOf("ComplexPattern"));
1636}
1637
1638// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
1639// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
1640static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
1641 DAGISelEmitter &ISE)
1642{
1643 if (N->isLeaf() &&
1644 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1645 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1646 isSubClassOf("ComplexPattern")) {
1647 return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
1648 ->getDef());
1649 }
1650 return NULL;
1651}
1652
Chris Lattner05814af2005-09-28 17:57:56 +00001653/// getPatternSize - Return the 'size' of this pattern. We want to match large
1654/// patterns before small ones. This is used to determine the size of a
1655/// pattern.
Evan Cheng0fc71982005-12-08 02:00:36 +00001656static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001657 assert(isExtIntegerVT(P->getExtType()) ||
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001658 isExtFloatingPointVT(P->getExtType()) ||
Evan Chengbcecf332005-12-17 01:19:28 +00001659 P->getExtType() == MVT::isVoid ||
1660 P->getExtType() == MVT::Flag && "Not a valid pattern node to size!");
Chris Lattner05814af2005-09-28 17:57:56 +00001661 unsigned Size = 1; // The node itself.
Evan Cheng0fc71982005-12-08 02:00:36 +00001662
1663 // FIXME: This is a hack to statically increase the priority of patterns
1664 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
1665 // Later we can allow complexity / cost for each pattern to be (optionally)
1666 // specified. To get best possible pattern match we'll need to dynamically
1667 // calculate the complexity of all patterns a dag can potentially map to.
1668 const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
1669 if (AM)
1670 Size += AM->getNumOperands();
1671
Chris Lattner05814af2005-09-28 17:57:56 +00001672 // Count children in the count if they are also nodes.
1673 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
1674 TreePatternNode *Child = P->getChild(i);
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001675 if (!Child->isLeaf() && Child->getExtType() != MVT::Other)
Evan Cheng0fc71982005-12-08 02:00:36 +00001676 Size += getPatternSize(Child, ISE);
1677 else if (Child->isLeaf()) {
1678 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
1679 ++Size; // Matches a ConstantSDNode.
1680 else if (NodeIsComplexPattern(Child))
1681 Size += getPatternSize(Child, ISE);
Chris Lattner2f041d42005-10-19 04:41:05 +00001682 }
Chris Lattner05814af2005-09-28 17:57:56 +00001683 }
1684
1685 return Size;
1686}
1687
1688/// getResultPatternCost - Compute the number of instructions for this pattern.
1689/// This is a temporary hack. We should really include the instruction
1690/// latencies in this calculation.
1691static unsigned getResultPatternCost(TreePatternNode *P) {
1692 if (P->isLeaf()) return 0;
1693
1694 unsigned Cost = P->getOperator()->isSubClassOf("Instruction");
1695 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
1696 Cost += getResultPatternCost(P->getChild(i));
1697 return Cost;
1698}
1699
1700// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
1701// In particular, we want to match maximal patterns first and lowest cost within
1702// a particular complexity first.
1703struct PatternSortingPredicate {
Evan Cheng0fc71982005-12-08 02:00:36 +00001704 PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
1705 DAGISelEmitter &ISE;
1706
Evan Cheng58e84a62005-12-14 22:02:59 +00001707 bool operator()(PatternToMatch *LHS,
1708 PatternToMatch *RHS) {
1709 unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), ISE);
1710 unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00001711 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
1712 if (LHSSize < RHSSize) return false;
1713
1714 // If the patterns have equal complexity, compare generated instruction cost
Evan Cheng58e84a62005-12-14 22:02:59 +00001715 return getResultPatternCost(LHS->getDstPattern()) <
1716 getResultPatternCost(RHS->getDstPattern());
Chris Lattner05814af2005-09-28 17:57:56 +00001717 }
1718};
1719
Nate Begeman6510b222005-12-01 04:51:06 +00001720/// getRegisterValueType - Look up and return the first ValueType of specified
1721/// RegisterClass record
Evan Cheng66a48bb2005-12-01 00:18:45 +00001722static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +00001723 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
1724 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +00001725 return MVT::Other;
1726}
1727
Chris Lattner72fe91c2005-09-24 00:40:24 +00001728
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001729/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
1730/// type information from it.
1731static void RemoveAllTypes(TreePatternNode *N) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001732 N->setType(MVT::isUnknown);
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001733 if (!N->isLeaf())
1734 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1735 RemoveAllTypes(N->getChild(i));
1736}
Chris Lattner72fe91c2005-09-24 00:40:24 +00001737
Chris Lattner0614b622005-11-02 06:49:14 +00001738Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
1739 Record *N = Records.getDef(Name);
1740 assert(N && N->isSubClassOf("SDNode") && "Bad argument");
1741 return N;
1742}
1743
Evan Chengb915f312005-12-09 22:45:35 +00001744class PatternCodeEmitter {
1745private:
1746 DAGISelEmitter &ISE;
1747
Evan Cheng58e84a62005-12-14 22:02:59 +00001748 // Predicates.
1749 ListInit *Predicates;
1750 // Instruction selector pattern.
1751 TreePatternNode *Pattern;
1752 // Matched instruction.
1753 TreePatternNode *Instruction;
Evan Chengb915f312005-12-09 22:45:35 +00001754 unsigned PatternNo;
1755 std::ostream &OS;
1756 // Node to name mapping
1757 std::map<std::string,std::string> VariableMap;
Evan Chengb915f312005-12-09 22:45:35 +00001758 // Names of all the folded nodes which produce chains.
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001759 std::vector<std::pair<std::string, unsigned> > FoldedChains;
Evan Cheng86217892005-12-12 19:37:43 +00001760 bool FoundChain;
Evan Chengb915f312005-12-09 22:45:35 +00001761 unsigned TmpNo;
Evan Cheng97938882005-12-22 02:24:50 +00001762 unsigned NumImpInputs;
Evan Chengb915f312005-12-09 22:45:35 +00001763
1764public:
Evan Cheng58e84a62005-12-14 22:02:59 +00001765 PatternCodeEmitter(DAGISelEmitter &ise, ListInit *preds,
1766 TreePatternNode *pattern, TreePatternNode *instr,
Evan Chengb915f312005-12-09 22:45:35 +00001767 unsigned PatNum, std::ostream &os) :
Evan Cheng58e84a62005-12-14 22:02:59 +00001768 ISE(ise), Predicates(preds), Pattern(pattern), Instruction(instr),
Evan Cheng97938882005-12-22 02:24:50 +00001769 PatternNo(PatNum), OS(os), FoundChain(false), TmpNo(0),
1770 NumImpInputs(0) {}
Evan Chengb915f312005-12-09 22:45:35 +00001771
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001772 /// isPredeclaredSDOperand - Return true if this is one of the predeclared
1773 /// SDOperands.
1774 bool isPredeclaredSDOperand(const std::string &OpName) const {
1775 return OpName == "N0" || OpName == "N1" || OpName == "N2" ||
1776 OpName == "N00" || OpName == "N01" ||
1777 OpName == "N10" || OpName == "N11" ||
1778 OpName == "Tmp0" || OpName == "Tmp1" ||
1779 OpName == "Tmp2" || OpName == "Tmp3";
1780 }
1781
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001782 /// DeclareSDOperand - Emit "SDOperand <opname>" or "<opname>". This works
1783 /// around an ugly GCC bug where SelectCode is using too much stack space
1784 void DeclareSDOperand(const std::string &OpName) const {
1785 // If it's one of the common cases declared at the top of SelectCode, just
1786 // use the existing declaration.
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001787 if (isPredeclaredSDOperand(OpName))
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001788 OS << OpName;
1789 else
1790 OS << "SDOperand " << OpName;
1791 }
1792
Evan Chengb915f312005-12-09 22:45:35 +00001793 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
1794 /// if the match fails. At this point, we already know that the opcode for N
1795 /// matches, and the SDNode for the result has the RootName specified name.
1796 void EmitMatchCode(TreePatternNode *N, const std::string &RootName,
1797 bool isRoot = false) {
Evan Cheng58e84a62005-12-14 22:02:59 +00001798
1799 // Emit instruction predicates. Each predicate is just a string for now.
1800 if (isRoot) {
1801 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
1802 if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
1803 Record *Def = Pred->getDef();
1804 if (Def->isSubClassOf("Predicate")) {
1805 if (i == 0)
1806 OS << " if (";
1807 else
1808 OS << " && ";
Evan Cheng5fb5e102005-12-20 20:08:01 +00001809 OS << "!(" << Def->getValueAsString("CondString") << ")";
Evan Cheng58e84a62005-12-14 22:02:59 +00001810 if (i == e-1)
1811 OS << ") goto P" << PatternNo << "Fail;\n";
1812 } else {
1813 Def->dump();
1814 assert(0 && "Unknown predicate type!");
1815 }
1816 }
1817 }
1818 }
1819
Evan Chengb915f312005-12-09 22:45:35 +00001820 if (N->isLeaf()) {
1821 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1822 OS << " if (cast<ConstantSDNode>(" << RootName
1823 << ")->getSignExtended() != " << II->getValue() << ")\n"
1824 << " goto P" << PatternNo << "Fail;\n";
1825 return;
1826 } else if (!NodeIsComplexPattern(N)) {
1827 assert(0 && "Cannot match this as a leaf value!");
1828 abort();
1829 }
1830 }
1831
1832 // If this node has a name associated with it, capture it in VariableMap. If
1833 // we already saw this in the pattern, emit code to verify dagness.
1834 if (!N->getName().empty()) {
1835 std::string &VarMapEntry = VariableMap[N->getName()];
1836 if (VarMapEntry.empty()) {
1837 VarMapEntry = RootName;
1838 } else {
1839 // If we get here, this is a second reference to a specific name. Since
1840 // we already have checked that the first reference is valid, we don't
1841 // have to recursively match it, just check that it's the same as the
1842 // previously named thing.
1843 OS << " if (" << VarMapEntry << " != " << RootName
1844 << ") goto P" << PatternNo << "Fail;\n";
1845 return;
1846 }
1847 }
1848
1849
1850 // Emit code to load the child nodes and match their contents recursively.
1851 unsigned OpNo = 0;
Evan Cheng86217892005-12-12 19:37:43 +00001852 bool HasChain = NodeHasChain(N, ISE);
1853 if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00001854 OpNo = 1;
1855 if (!isRoot) {
Evan Cheng1129e872005-12-10 00:09:17 +00001856 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(N->getOperator());
Evan Chengb915f312005-12-09 22:45:35 +00001857 OS << " if (!" << RootName << ".hasOneUse()) goto P"
1858 << PatternNo << "Fail; // Multiple uses of actual result?\n";
1859 OS << " if (CodeGenMap.count(" << RootName
Evan Cheng1129e872005-12-10 00:09:17 +00001860 << ".getValue(" << CInfo.getNumResults() << "))) goto P"
Evan Chengb915f312005-12-09 22:45:35 +00001861 << PatternNo << "Fail; // Already selected for a chain use?\n";
1862 }
Evan Chengb915f312005-12-09 22:45:35 +00001863 }
1864
1865 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001866 OS << " ";
1867 DeclareSDOperand(RootName+utostr(OpNo));
1868 OS << " = " << RootName << ".getOperand(" << OpNo << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00001869 TreePatternNode *Child = N->getChild(i);
1870
1871 if (!Child->isLeaf()) {
1872 // If it's not a leaf, recursively match.
1873 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(Child->getOperator());
1874 OS << " if (" << RootName << OpNo << ".getOpcode() != "
1875 << CInfo.getEnumName() << ") goto P" << PatternNo << "Fail;\n";
1876 EmitMatchCode(Child, RootName + utostr(OpNo));
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001877 if (NodeHasChain(Child, ISE)) {
1878 FoldedChains.push_back(std::make_pair(RootName + utostr(OpNo),
1879 CInfo.getNumResults()));
1880 }
Evan Chengb915f312005-12-09 22:45:35 +00001881 } else {
1882 // If this child has a name associated with it, capture it in VarMap. If
1883 // we already saw this in the pattern, emit code to verify dagness.
1884 if (!Child->getName().empty()) {
1885 std::string &VarMapEntry = VariableMap[Child->getName()];
1886 if (VarMapEntry.empty()) {
1887 VarMapEntry = RootName + utostr(OpNo);
1888 } else {
1889 // If we get here, this is a second reference to a specific name. Since
1890 // we already have checked that the first reference is valid, we don't
1891 // have to recursively match it, just check that it's the same as the
1892 // previously named thing.
1893 OS << " if (" << VarMapEntry << " != " << RootName << OpNo
1894 << ") goto P" << PatternNo << "Fail;\n";
1895 continue;
1896 }
1897 }
1898
1899 // Handle leaves of various types.
1900 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
1901 Record *LeafRec = DI->getDef();
1902 if (LeafRec->isSubClassOf("RegisterClass")) {
1903 // Handle register references. Nothing to do here.
1904 } else if (LeafRec->isSubClassOf("Register")) {
Evan Cheng97938882005-12-22 02:24:50 +00001905 // Handle register references.
1906 NumImpInputs++;
Evan Chengb915f312005-12-09 22:45:35 +00001907 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
1908 // Handle complex pattern. Nothing to do here.
Evan Cheng97938882005-12-22 02:24:50 +00001909 } else if (LeafRec->getName() == "FLAG") {
1910 // Handle pseudo FLAG register nodes.
1911 NumImpInputs++;
Evan Cheng01f318b2005-12-14 02:21:57 +00001912 } else if (LeafRec->getName() == "srcvalue") {
1913 // Place holder for SRCVALUE nodes. Nothing to do here.
Evan Chengb915f312005-12-09 22:45:35 +00001914 } else if (LeafRec->isSubClassOf("ValueType")) {
1915 // Make sure this is the specified value type.
1916 OS << " if (cast<VTSDNode>(" << RootName << OpNo << ")->getVT() != "
1917 << "MVT::" << LeafRec->getName() << ") goto P" << PatternNo
1918 << "Fail;\n";
1919 } else if (LeafRec->isSubClassOf("CondCode")) {
1920 // Make sure this is the specified cond code.
1921 OS << " if (cast<CondCodeSDNode>(" << RootName << OpNo
1922 << ")->get() != " << "ISD::" << LeafRec->getName()
1923 << ") goto P" << PatternNo << "Fail;\n";
1924 } else {
1925 Child->dump();
Evan Cheng97938882005-12-22 02:24:50 +00001926 std::cerr << " ";
Evan Chengb915f312005-12-09 22:45:35 +00001927 assert(0 && "Unknown leaf type!");
1928 }
1929 } else if (IntInit *II = dynamic_cast<IntInit*>(Child->getLeafValue())) {
1930 OS << " if (!isa<ConstantSDNode>(" << RootName << OpNo << ") ||\n"
1931 << " cast<ConstantSDNode>(" << RootName << OpNo
1932 << ")->getSignExtended() != " << II->getValue() << ")\n"
1933 << " goto P" << PatternNo << "Fail;\n";
1934 } else {
1935 Child->dump();
1936 assert(0 && "Unknown leaf type!");
1937 }
1938 }
1939 }
1940
Evan Cheng86217892005-12-12 19:37:43 +00001941 if (HasChain) {
1942 if (!FoundChain) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001943 OS << " Chain = " << RootName << ".getOperand(0);\n";
Evan Cheng86217892005-12-12 19:37:43 +00001944 FoundChain = true;
1945 }
1946 }
1947
Evan Chengb915f312005-12-09 22:45:35 +00001948 // If there is a node predicate for this, emit the call.
1949 if (!N->getPredicateFn().empty())
1950 OS << " if (!" << N->getPredicateFn() << "(" << RootName
1951 << ".Val)) goto P" << PatternNo << "Fail;\n";
1952 }
1953
1954 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
1955 /// we actually have to build a DAG!
1956 std::pair<unsigned, unsigned>
1957 EmitResultCode(TreePatternNode *N, bool isRoot = false) {
1958 // This is something selected from the pattern we matched.
1959 if (!N->getName().empty()) {
1960 assert(!isRoot && "Root of pattern cannot be a leaf!");
1961 std::string &Val = VariableMap[N->getName()];
1962 assert(!Val.empty() &&
1963 "Variable referenced but not defined and not caught earlier!");
1964 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
1965 // Already selected this operand, just return the tmpval.
1966 return std::make_pair(1, atoi(Val.c_str()+3));
1967 }
1968
1969 const ComplexPattern *CP;
1970 unsigned ResNo = TmpNo++;
1971 unsigned NumRes = 1;
1972 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
1973 switch (N->getType()) {
1974 default: assert(0 && "Unknown type for constant node!");
1975 case MVT::i1: OS << " bool Tmp"; break;
1976 case MVT::i8: OS << " unsigned char Tmp"; break;
1977 case MVT::i16: OS << " unsigned short Tmp"; break;
1978 case MVT::i32: OS << " unsigned Tmp"; break;
1979 case MVT::i64: OS << " uint64_t Tmp"; break;
1980 }
1981 OS << ResNo << "C = cast<ConstantSDNode>(" << Val << ")->getValue();\n";
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001982 OS << " ";
1983 DeclareSDOperand("Tmp"+utostr(ResNo));
1984 OS << " = CurDAG->getTargetConstant(Tmp"
Evan Chengb915f312005-12-09 22:45:35 +00001985 << ResNo << "C, MVT::" << getEnumName(N->getType()) << ");\n";
1986 } else if (!N->isLeaf() && N->getOperator()->getName() == "tglobaladdr") {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001987 OS << " ";
1988 DeclareSDOperand("Tmp"+utostr(ResNo));
1989 OS << " = " << Val << ";\n";
Nate Begeman28a6b022005-12-10 02:36:00 +00001990 } else if (!N->isLeaf() && N->getOperator()->getName() == "tconstpool") {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001991 OS << " ";
1992 DeclareSDOperand("Tmp"+utostr(ResNo));
1993 OS << " = " << Val << ";\n";
Evan Chengb915f312005-12-09 22:45:35 +00001994 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
1995 std::string Fn = CP->getSelectFunc();
1996 NumRes = CP->getNumOperands();
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001997 for (unsigned i = 0; i != NumRes; ++i) {
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001998 if (!isPredeclaredSDOperand("Tmp" + utostr(i+ResNo))) {
1999 OS << " ";
2000 DeclareSDOperand("Tmp" + utostr(i+ResNo));
2001 OS << ";\n";
2002 }
Evan Chengb915f312005-12-09 22:45:35 +00002003 }
Evan Chengb915f312005-12-09 22:45:35 +00002004 OS << " if (!" << Fn << "(" << Val;
2005 for (unsigned i = 0; i < NumRes; i++)
Evan Chengbcecf332005-12-17 01:19:28 +00002006 OS << ", Tmp" << i + ResNo;
Evan Chengb915f312005-12-09 22:45:35 +00002007 OS << ")) goto P" << PatternNo << "Fail;\n";
2008 TmpNo = ResNo + NumRes;
2009 } else {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002010 OS << " ";
2011 DeclareSDOperand("Tmp"+utostr(ResNo));
2012 OS << " = Select(" << Val << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002013 }
2014 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2015 // value if used multiple times by this pattern result.
2016 Val = "Tmp"+utostr(ResNo);
2017 return std::make_pair(NumRes, ResNo);
2018 }
2019
2020 if (N->isLeaf()) {
2021 // If this is an explicit register reference, handle it.
2022 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
2023 unsigned ResNo = TmpNo++;
2024 if (DI->getDef()->isSubClassOf("Register")) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002025 OS << " ";
2026 DeclareSDOperand("Tmp"+utostr(ResNo));
2027 OS << " = CurDAG->getRegister("
Evan Chengb915f312005-12-09 22:45:35 +00002028 << ISE.getQualifiedName(DI->getDef()) << ", MVT::"
2029 << getEnumName(N->getType())
2030 << ");\n";
2031 return std::make_pair(1, ResNo);
2032 }
2033 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
2034 unsigned ResNo = TmpNo++;
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002035 OS << " ";
2036 DeclareSDOperand("Tmp"+utostr(ResNo));
2037 OS << " = CurDAG->getTargetConstant("
Evan Chengb915f312005-12-09 22:45:35 +00002038 << II->getValue() << ", MVT::"
2039 << getEnumName(N->getType())
2040 << ");\n";
2041 return std::make_pair(1, ResNo);
2042 }
2043
2044 N->dump();
2045 assert(0 && "Unknown leaf type!");
2046 return std::make_pair(1, ~0U);
2047 }
2048
2049 Record *Op = N->getOperator();
2050 if (Op->isSubClassOf("Instruction")) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002051 const DAGInstruction &Inst = ISE.getInstruction(Op);
Evan Cheng97938882005-12-22 02:24:50 +00002052 bool InFlag = NumImpInputs > 0;
2053 bool OutFlag = Inst.getNumImpResults() > 0;
Evan Cheng4fba2812005-12-20 07:37:41 +00002054
2055 if (InFlag || OutFlag)
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002056 OS << " InFlag = SDOperand(0, 0);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002057
Evan Chengb915f312005-12-09 22:45:35 +00002058 // Determine operand emission order. Complex pattern first.
2059 std::vector<std::pair<unsigned, TreePatternNode*> > EmitOrder;
2060 std::vector<std::pair<unsigned, TreePatternNode*> >::iterator OI;
2061 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
2062 TreePatternNode *Child = N->getChild(i);
2063 if (i == 0) {
2064 EmitOrder.push_back(std::make_pair(i, Child));
2065 OI = EmitOrder.begin();
2066 } else if (NodeIsComplexPattern(Child)) {
2067 OI = EmitOrder.insert(OI, std::make_pair(i, Child));
2068 } else {
2069 EmitOrder.push_back(std::make_pair(i, Child));
2070 }
2071 }
2072
2073 // Emit all of the operands.
2074 std::vector<std::pair<unsigned, unsigned> > NumTemps(EmitOrder.size());
2075 for (unsigned i = 0, e = EmitOrder.size(); i != e; ++i) {
2076 unsigned OpOrder = EmitOrder[i].first;
2077 TreePatternNode *Child = EmitOrder[i].second;
2078 std::pair<unsigned, unsigned> NumTemp = EmitResultCode(Child);
2079 NumTemps[OpOrder] = NumTemp;
2080 }
2081
2082 // List all the operands in the right order.
2083 std::vector<unsigned> Ops;
2084 for (unsigned i = 0, e = NumTemps.size(); i != e; i++) {
2085 for (unsigned j = 0; j < NumTemps[i].first; j++)
2086 Ops.push_back(NumTemps[i].second + j);
2087 }
2088
Evan Chengbcecf332005-12-17 01:19:28 +00002089 const CodeGenTarget &CGT = ISE.getTargetInfo();
2090 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
Evan Chengb915f312005-12-09 22:45:35 +00002091
2092 // Emit all the chain and CopyToReg stuff.
2093 if (II.hasCtrlDep)
Evan Cheng86217892005-12-12 19:37:43 +00002094 OS << " Chain = Select(Chain);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002095 if (InFlag)
2096 EmitCopyToRegs(Pattern, "N", II.hasCtrlDep);
Evan Chengb915f312005-12-09 22:45:35 +00002097
Evan Chengb915f312005-12-09 22:45:35 +00002098 unsigned NumResults = Inst.getNumResults();
2099 unsigned ResNo = TmpNo++;
2100 if (!isRoot) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002101 OS << " ";
2102 DeclareSDOperand("Tmp"+utostr(ResNo));
2103 OS << " = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002104 << II.Namespace << "::" << II.TheDef->getName();
2105 if (N->getType() != MVT::isVoid)
2106 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng4fba2812005-12-20 07:37:41 +00002107 if (OutFlag)
2108 OS << ", MVT::Flag";
Evan Chengbcecf332005-12-17 01:19:28 +00002109
Evan Chengb915f312005-12-09 22:45:35 +00002110 unsigned LastOp = 0;
2111 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2112 LastOp = Ops[i];
2113 OS << ", Tmp" << LastOp;
2114 }
2115 OS << ");\n";
2116 if (II.hasCtrlDep) {
2117 // Must have at least one result
2118 OS << " Chain = Tmp" << LastOp << ".getValue("
2119 << NumResults << ");\n";
2120 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002121 } else if (II.hasCtrlDep || OutFlag) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002122 OS << " Result = CurDAG->getTargetNode("
Evan Chengb915f312005-12-09 22:45:35 +00002123 << II.Namespace << "::" << II.TheDef->getName();
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002124
2125 // Output order: results, chain, flags
2126 // Result types.
Evan Chengbcecf332005-12-17 01:19:28 +00002127 if (NumResults > 0) {
2128 // TODO: multiple results?
2129 if (N->getType() != MVT::isVoid)
2130 OS << ", MVT::" << getEnumName(N->getType());
2131 }
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002132 if (II.hasCtrlDep)
2133 OS << ", MVT::Other";
Evan Cheng4fba2812005-12-20 07:37:41 +00002134 if (OutFlag)
2135 OS << ", MVT::Flag";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002136
2137 // Inputs.
Evan Chengb915f312005-12-09 22:45:35 +00002138 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2139 OS << ", Tmp" << Ops[i];
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002140 if (II.hasCtrlDep) OS << ", Chain";
2141 if (InFlag) OS << ", InFlag";
Evan Chengb915f312005-12-09 22:45:35 +00002142 OS << ");\n";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002143
2144 unsigned ValNo = 0;
Evan Chengf9fc25d2005-12-19 22:40:04 +00002145 for (unsigned i = 0; i < NumResults; i++) {
2146 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = Result"
2147 << ".getValue(" << ValNo << ");\n";
2148 ValNo++;
2149 }
2150
Evan Cheng97938882005-12-22 02:24:50 +00002151 if (II.hasCtrlDep)
Evan Cheng4fba2812005-12-20 07:37:41 +00002152 OS << " Chain = Result.getValue(" << ValNo << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002153
2154 if (OutFlag)
Evan Cheng97938882005-12-22 02:24:50 +00002155 OS << " InFlag = Result.getValue("
2156 << ValNo + (unsigned)II.hasCtrlDep << ");\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002157
Evan Cheng97938882005-12-22 02:24:50 +00002158 unsigned NumCopies = 0;
2159 if (OutFlag) {
2160 NumCopies = EmitCopyFromRegs(N, II.hasCtrlDep);
2161 for (unsigned i = 0; i < NumCopies; i++) {
2162 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = "
2163 << "Result.getValue(" << ValNo << ");\n";
2164 ValNo++;
2165 }
2166 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002167
Evan Cheng97938882005-12-22 02:24:50 +00002168 // User does not expect that I produce a chain!
2169 bool AddedChain =
2170 !NodeHasChain(Pattern, ISE) && (II.hasCtrlDep || NumCopies > 0);
2171
2172 if (NodeHasChain(Pattern, ISE))
2173 OS << " CodeGenMap[N.getValue(" << ValNo++ << ")] = Chain;\n";
2174
2175 if (FoldedChains.size() > 0) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002176 OS << " ";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002177 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Evan Cheng4fba2812005-12-20 07:37:41 +00002178 OS << "CodeGenMap[" << FoldedChains[j].first << ".getValue("
2179 << FoldedChains[j].second << ")] = ";
2180 OS << "Chain;\n";
Evan Chengb915f312005-12-09 22:45:35 +00002181 }
Evan Chengf9fc25d2005-12-19 22:40:04 +00002182
Evan Cheng97938882005-12-22 02:24:50 +00002183 if (OutFlag)
2184 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = InFlag;\n";
2185
2186 if (AddedChain && OutFlag) {
2187 if (NumResults == 0) {
2188 OS << " return Result.getValue(N.ResNo+1);\n";
2189 } else {
2190 OS << " if (N.ResNo < " << NumResults << ")\n";
2191 OS << " return Result.getValue(N.ResNo);\n";
2192 OS << " else\n";
2193 OS << " return Result.getValue(N.ResNo+1);\n";
2194 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002195 } else {
Evan Chenge0870512005-12-20 00:06:17 +00002196 OS << " return Result.getValue(N.ResNo);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002197 }
Evan Chengb915f312005-12-09 22:45:35 +00002198 } else {
2199 // If this instruction is the root, and if there is only one use of it,
2200 // use SelectNodeTo instead of getTargetNode to avoid an allocation.
2201 OS << " if (N.Val->hasOneUse()) {\n";
2202 OS << " return CurDAG->SelectNodeTo(N.Val, "
Evan Chengbcecf332005-12-17 01:19:28 +00002203 << II.Namespace << "::" << II.TheDef->getName();
2204 if (N->getType() != MVT::isVoid)
2205 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng4fba2812005-12-20 07:37:41 +00002206 if (OutFlag)
2207 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002208 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2209 OS << ", Tmp" << Ops[i];
2210 if (InFlag)
2211 OS << ", InFlag";
2212 OS << ");\n";
2213 OS << " } else {\n";
2214 OS << " return CodeGenMap[N] = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002215 << II.Namespace << "::" << II.TheDef->getName();
2216 if (N->getType() != MVT::isVoid)
2217 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng4fba2812005-12-20 07:37:41 +00002218 if (OutFlag)
2219 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002220 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2221 OS << ", Tmp" << Ops[i];
2222 if (InFlag)
2223 OS << ", InFlag";
2224 OS << ");\n";
2225 OS << " }\n";
2226 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002227
Evan Chengb915f312005-12-09 22:45:35 +00002228 return std::make_pair(1, ResNo);
2229 } else if (Op->isSubClassOf("SDNodeXForm")) {
2230 assert(N->getNumChildren() == 1 && "node xform should have one child!");
Evan Cheng58e84a62005-12-14 22:02:59 +00002231 unsigned OpVal = EmitResultCode(N->getChild(0)).second;
Evan Chengb915f312005-12-09 22:45:35 +00002232 unsigned ResNo = TmpNo++;
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002233 OS << " ";
2234 DeclareSDOperand("Tmp"+utostr(ResNo));
2235 OS << " = Transform_" << Op->getName()
Evan Chengb915f312005-12-09 22:45:35 +00002236 << "(Tmp" << OpVal << ".Val);\n";
2237 if (isRoot) {
2238 OS << " CodeGenMap[N] = Tmp" << ResNo << ";\n";
2239 OS << " return Tmp" << ResNo << ";\n";
2240 }
2241 return std::make_pair(1, ResNo);
2242 } else {
2243 N->dump();
2244 assert(0 && "Unknown node in result pattern!");
2245 return std::make_pair(1, ~0U);
2246 }
2247 }
2248
2249 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat' and
2250 /// add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
2251 /// 'Pat' may be missing types. If we find an unresolved type to add a check
2252 /// for, this returns true otherwise false if Pat has all types.
2253 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
2254 const std::string &Prefix) {
2255 // Did we find one?
2256 if (!Pat->hasTypeSet()) {
2257 // Move a type over from 'other' to 'pat'.
2258 Pat->setType(Other->getType());
2259 OS << " if (" << Prefix << ".Val->getValueType(0) != MVT::"
2260 << getName(Pat->getType()) << ") goto P" << PatternNo << "Fail;\n";
2261 return true;
Evan Chengb915f312005-12-09 22:45:35 +00002262 }
2263
2264 unsigned OpNo = (unsigned) NodeHasChain(Pat, ISE);
2265 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
2266 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
2267 Prefix + utostr(OpNo)))
2268 return true;
2269 return false;
2270 }
2271
2272private:
2273 /// EmitCopyToRegs - Emit the flag operands for the DAG that is
2274 /// being built.
2275 void EmitCopyToRegs(TreePatternNode *N, const std::string &RootName,
2276 bool HasCtrlDep) {
2277 const CodeGenTarget &T = ISE.getTargetInfo();
2278 unsigned OpNo = (unsigned) NodeHasChain(N, ISE);
2279 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
2280 TreePatternNode *Child = N->getChild(i);
2281 if (!Child->isLeaf()) {
2282 EmitCopyToRegs(Child, RootName + utostr(OpNo), HasCtrlDep);
2283 } else {
2284 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2285 Record *RR = DI->getDef();
2286 if (RR->isSubClassOf("Register")) {
2287 MVT::ValueType RVT = getRegisterValueType(RR, T);
Evan Chengbcecf332005-12-17 01:19:28 +00002288 if (RVT == MVT::Flag) {
2289 OS << " InFlag = Select(" << RootName << OpNo << ");\n";
2290 } else if (HasCtrlDep) {
Evan Chengb915f312005-12-09 22:45:35 +00002291 OS << " SDOperand " << RootName << "CR" << i << ";\n";
2292 OS << " " << RootName << "CR" << i
2293 << " = CurDAG->getCopyToReg(Chain, CurDAG->getRegister("
2294 << ISE.getQualifiedName(RR) << ", MVT::"
2295 << getEnumName(RVT) << ")"
2296 << ", Select(" << RootName << OpNo << "), InFlag);\n";
2297 OS << " Chain = " << RootName << "CR" << i
2298 << ".getValue(0);\n";
2299 OS << " InFlag = " << RootName << "CR" << i
2300 << ".getValue(1);\n";
2301 } else {
2302 OS << " InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode()"
2303 << ", CurDAG->getRegister(" << ISE.getQualifiedName(RR)
2304 << ", MVT::" << getEnumName(RVT) << ")"
2305 << ", Select(" << RootName << OpNo
2306 << "), InFlag).getValue(1);\n";
2307 }
Evan Cheng97938882005-12-22 02:24:50 +00002308 } else if (RR->getName() == "FLAG") {
2309 OS << " InFlag = Select(" << RootName << OpNo << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002310 }
2311 }
2312 }
2313 }
2314 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002315
2316 /// EmitCopyFromRegs - Emit code to copy result to physical registers
Evan Cheng97938882005-12-22 02:24:50 +00002317 /// as specified by the instruction. It returns the number of
2318 /// CopyFromRegs emitted.
2319 unsigned EmitCopyFromRegs(TreePatternNode *N, bool HasCtrlDep) {
2320 unsigned NumCopies = 0;
Evan Cheng4fba2812005-12-20 07:37:41 +00002321 Record *Op = N->getOperator();
2322 if (Op->isSubClassOf("Instruction")) {
2323 const DAGInstruction &Inst = ISE.getInstruction(Op);
2324 const CodeGenTarget &CGT = ISE.getTargetInfo();
2325 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
2326 unsigned NumImpResults = Inst.getNumImpResults();
2327 for (unsigned i = 0; i < NumImpResults; i++) {
2328 Record *RR = Inst.getImpResult(i);
2329 if (RR->isSubClassOf("Register")) {
2330 MVT::ValueType RVT = getRegisterValueType(RR, CGT);
2331 if (RVT != MVT::Flag) {
2332 if (HasCtrlDep) {
2333 OS << " Result = CurDAG->getCopyFromReg(Chain, "
2334 << ISE.getQualifiedName(RR)
2335 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2336 OS << " Chain = Result.getValue(1);\n";
2337 OS << " InFlag = Result.getValue(2);\n";
2338 } else {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002339 OS << " Chain;\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002340 OS << " Result = CurDAG->getCopyFromReg("
2341 << "CurDAG->getEntryNode(), ISE.getQualifiedName(RR)"
2342 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2343 OS << " Chain = Result.getValue(1);\n";
2344 OS << " InFlag = Result.getValue(2);\n";
2345 }
Evan Cheng97938882005-12-22 02:24:50 +00002346 NumCopies++;
Evan Cheng4fba2812005-12-20 07:37:41 +00002347 }
2348 }
2349 }
2350 }
Evan Cheng97938882005-12-22 02:24:50 +00002351 return NumCopies;
Evan Cheng4fba2812005-12-20 07:37:41 +00002352 }
Evan Chengb915f312005-12-09 22:45:35 +00002353};
2354
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002355/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
2356/// stream to match the pattern, and generate the code for the match if it
2357/// succeeds.
Chris Lattner3f7e9142005-09-23 20:52:47 +00002358void DAGISelEmitter::EmitCodeForPattern(PatternToMatch &Pattern,
2359 std::ostream &OS) {
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002360 static unsigned PatternCount = 0;
2361 unsigned PatternNo = PatternCount++;
2362 OS << " { // Pattern #" << PatternNo << ": ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002363 Pattern.getSrcPattern()->print(OS);
Chris Lattner05814af2005-09-28 17:57:56 +00002364 OS << "\n // Emits: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002365 Pattern.getDstPattern()->print(OS);
Chris Lattner3f7e9142005-09-23 20:52:47 +00002366 OS << "\n";
Evan Cheng58e84a62005-12-14 22:02:59 +00002367 OS << " // Pattern complexity = "
2368 << getPatternSize(Pattern.getSrcPattern(), *this)
2369 << " cost = "
2370 << getResultPatternCost(Pattern.getDstPattern()) << "\n";
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002371
Evan Cheng58e84a62005-12-14 22:02:59 +00002372 PatternCodeEmitter Emitter(*this, Pattern.getPredicates(),
2373 Pattern.getSrcPattern(), Pattern.getDstPattern(),
2374 PatternNo, OS);
Evan Chengb915f312005-12-09 22:45:35 +00002375
Chris Lattner8fc35682005-09-23 23:16:51 +00002376 // Emit the matcher, capturing named arguments in VariableMap.
Evan Cheng58e84a62005-12-14 22:02:59 +00002377 Emitter.EmitMatchCode(Pattern.getSrcPattern(), "N", true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002378
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002379 // TP - Get *SOME* tree pattern, we don't care which.
2380 TreePattern &TP = *PatternFragments.begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00002381
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002382 // At this point, we know that we structurally match the pattern, but the
2383 // types of the nodes may not match. Figure out the fewest number of type
2384 // comparisons we need to emit. For example, if there is only one integer
2385 // type supported by a target, there should be no type comparisons at all for
2386 // integer patterns!
2387 //
2388 // To figure out the fewest number of type checks needed, clone the pattern,
2389 // remove the types, then perform type inference on the pattern as a whole.
2390 // If there are unresolved types, emit an explicit check for those types,
2391 // apply the type to the tree, then rerun type inference. Iterate until all
2392 // types are resolved.
2393 //
Evan Cheng58e84a62005-12-14 22:02:59 +00002394 TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002395 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00002396
2397 do {
2398 // Resolve/propagate as many types as possible.
2399 try {
2400 bool MadeChange = true;
2401 while (MadeChange)
2402 MadeChange = Pat->ApplyTypeConstraints(TP,true/*Ignore reg constraints*/);
2403 } catch (...) {
2404 assert(0 && "Error: could not find consistent types for something we"
2405 " already decided was ok!");
2406 abort();
2407 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002408
Chris Lattner7e82f132005-10-15 21:34:21 +00002409 // Insert a check for an unresolved type and add it to the tree. If we find
2410 // an unresolved type to add a check for, this returns true and we iterate,
2411 // otherwise we are done.
Evan Cheng58e84a62005-12-14 22:02:59 +00002412 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N"));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00002413
Evan Cheng58e84a62005-12-14 22:02:59 +00002414 Emitter.EmitResultCode(Pattern.getDstPattern(), true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002415
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002416 delete Pat;
2417
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002418 OS << " }\n P" << PatternNo << "Fail:\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002419}
2420
Chris Lattner37481472005-09-26 21:59:35 +00002421
2422namespace {
2423 /// CompareByRecordName - An ordering predicate that implements less-than by
2424 /// comparing the names records.
2425 struct CompareByRecordName {
2426 bool operator()(const Record *LHS, const Record *RHS) const {
2427 // Sort by name first.
2428 if (LHS->getName() < RHS->getName()) return true;
2429 // If both names are equal, sort by pointer.
2430 return LHS->getName() == RHS->getName() && LHS < RHS;
2431 }
2432 };
2433}
2434
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002435void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002436 std::string InstNS = Target.inst_begin()->second.Namespace;
2437 if (!InstNS.empty()) InstNS += "::";
2438
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002439 // Emit boilerplate.
2440 OS << "// The main instruction selector code.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002441 << "SDOperand SelectCode(SDOperand N) {\n"
2442 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002443 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
2444 << "INSTRUCTION_LIST_END))\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002445 << " return N; // Already selected.\n\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002446 << " std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(N);\n"
Evan Cheng481c8e02005-12-12 23:22:48 +00002447 << " if (CGMI != CodeGenMap.end()) return CGMI->second;\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002448 << " // Work arounds for GCC stack overflow bugs.\n"
2449 << " SDOperand N0, N1, N2, N00, N01, N10, N11, Tmp0, Tmp1, Tmp2, Tmp3;\n"
2450 << " SDOperand Chain, InFlag, Result;\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002451 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002452 << " default: break;\n"
2453 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner5216c692005-12-18 21:05:44 +00002454 << " case ISD::BasicBlock:\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002455 << " return N;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002456 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002457 << " case ISD::AssertZext: {\n"
2458 << " SDOperand Tmp0 = Select(N.getOperand(0));\n"
2459 << " if (!N.Val->hasOneUse()) CodeGenMap[N] = Tmp0;\n"
2460 << " return Tmp0;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002461 << " }\n"
2462 << " case ISD::TokenFactor:\n"
2463 << " if (N.getNumOperands() == 2) {\n"
2464 << " SDOperand Op0 = Select(N.getOperand(0));\n"
2465 << " SDOperand Op1 = Select(N.getOperand(1));\n"
2466 << " return CodeGenMap[N] =\n"
2467 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Op0, Op1);\n"
2468 << " } else {\n"
2469 << " std::vector<SDOperand> Ops;\n"
2470 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
2471 << " Ops.push_back(Select(N.getOperand(i)));\n"
2472 << " return CodeGenMap[N] = \n"
2473 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Ops);\n"
2474 << " }\n"
2475 << " case ISD::CopyFromReg: {\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002476 << " Chain = Select(N.getOperand(0));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002477 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
2478 << " MVT::ValueType VT = N.Val->getValueType(0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002479 << " if (N.Val->getNumValues() == 2) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002480 << " if (Chain == N.getOperand(0)) return N; // No change\n"
2481 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT);\n"
2482 << " CodeGenMap[N.getValue(0)] = New;\n"
2483 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2484 << " return New.getValue(N.ResNo);\n"
2485 << " } else {\n"
2486 << " SDOperand Flag;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002487 << " if (N.getNumOperands() == 3) Flag = Select(N.getOperand(2));\n"
2488 << " if (Chain == N.getOperand(0) &&\n"
2489 << " (N.getNumOperands() == 2 || Flag == N.getOperand(2)))\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002490 << " return N; // No change\n"
2491 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT, Flag);\n"
2492 << " CodeGenMap[N.getValue(0)] = New;\n"
2493 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2494 << " CodeGenMap[N.getValue(2)] = New.getValue(2);\n"
2495 << " return New.getValue(N.ResNo);\n"
2496 << " }\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002497 << " }\n"
2498 << " case ISD::CopyToReg: {\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002499 << " Chain = Select(N.getOperand(0));\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002500 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002501 << " SDOperand Val = Select(N.getOperand(2));\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002502 << " Result = N;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002503 << " if (N.Val->getNumValues() == 1) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002504 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2))\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002505 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002506 << " return CodeGenMap[N] = Result;\n"
2507 << " } else {\n"
2508 << " SDOperand Flag;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002509 << " if (N.getNumOperands() == 4) Flag = Select(N.getOperand(3));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002510 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2) ||\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002511 << " (N.getNumOperands() == 4 && Flag != N.getOperand(3)))\n"
2512 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val, Flag);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002513 << " CodeGenMap[N.getValue(0)] = Result;\n"
2514 << " CodeGenMap[N.getValue(1)] = Result.getValue(1);\n"
2515 << " return Result.getValue(N.ResNo);\n"
2516 << " }\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002517 << " }\n";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002518
Chris Lattner81303322005-09-23 19:36:15 +00002519 // Group the patterns by their top-level opcodes.
Chris Lattner37481472005-09-26 21:59:35 +00002520 std::map<Record*, std::vector<PatternToMatch*>,
2521 CompareByRecordName> PatternsByOpcode;
Evan Cheng0fc71982005-12-08 02:00:36 +00002522 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002523 TreePatternNode *Node = PatternsToMatch[i].getSrcPattern();
Evan Cheng0fc71982005-12-08 02:00:36 +00002524 if (!Node->isLeaf()) {
2525 PatternsByOpcode[Node->getOperator()].push_back(&PatternsToMatch[i]);
Chris Lattner0614b622005-11-02 06:49:14 +00002526 } else {
Evan Cheng0fc71982005-12-08 02:00:36 +00002527 const ComplexPattern *CP;
Chris Lattner0614b622005-11-02 06:49:14 +00002528 if (IntInit *II =
Evan Cheng0fc71982005-12-08 02:00:36 +00002529 dynamic_cast<IntInit*>(Node->getLeafValue())) {
Chris Lattner0614b622005-11-02 06:49:14 +00002530 PatternsByOpcode[getSDNodeNamed("imm")].push_back(&PatternsToMatch[i]);
Evan Cheng0fc71982005-12-08 02:00:36 +00002531 } else if ((CP = NodeGetComplexPattern(Node, *this))) {
Evan Cheng3aa39f42005-12-08 02:14:08 +00002532 std::vector<Record*> OpNodes = CP->getRootNodes();
Evan Cheng0fc71982005-12-08 02:00:36 +00002533 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
2534 PatternsByOpcode[OpNodes[j]].insert(PatternsByOpcode[OpNodes[j]].begin(),
2535 &PatternsToMatch[i]);
2536 }
Chris Lattner0614b622005-11-02 06:49:14 +00002537 } else {
Evan Cheng76021f02005-11-29 18:44:58 +00002538 std::cerr << "Unrecognized opcode '";
Evan Cheng0fc71982005-12-08 02:00:36 +00002539 Node->dump();
Evan Cheng76021f02005-11-29 18:44:58 +00002540 std::cerr << "' on tree pattern '";
Evan Cheng58e84a62005-12-14 22:02:59 +00002541 std::cerr << PatternsToMatch[i].getDstPattern()->getOperator()->getName();
Evan Cheng76021f02005-11-29 18:44:58 +00002542 std::cerr << "'!\n";
2543 exit(1);
Chris Lattner0614b622005-11-02 06:49:14 +00002544 }
2545 }
Evan Cheng0fc71982005-12-08 02:00:36 +00002546 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002547
Chris Lattner3f7e9142005-09-23 20:52:47 +00002548 // Loop over all of the case statements.
Chris Lattner37481472005-09-26 21:59:35 +00002549 for (std::map<Record*, std::vector<PatternToMatch*>,
2550 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2551 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
Chris Lattner81303322005-09-23 19:36:15 +00002552 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
2553 std::vector<PatternToMatch*> &Patterns = PBOI->second;
2554
2555 OS << " case " << OpcodeInfo.getEnumName() << ":\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002556
2557 // We want to emit all of the matching code now. However, we want to emit
2558 // the matches in order of minimal cost. Sort the patterns so the least
2559 // cost one is at the start.
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002560 std::stable_sort(Patterns.begin(), Patterns.end(),
Evan Cheng0fc71982005-12-08 02:00:36 +00002561 PatternSortingPredicate(*this));
Chris Lattner81303322005-09-23 19:36:15 +00002562
Chris Lattner3f7e9142005-09-23 20:52:47 +00002563 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
2564 EmitCodeForPattern(*Patterns[i], OS);
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002565 OS << " break;\n\n";
Chris Lattner81303322005-09-23 19:36:15 +00002566 }
2567
2568
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002569 OS << " } // end of big switch.\n\n"
2570 << " std::cerr << \"Cannot yet select: \";\n"
Evan Cheng97938882005-12-22 02:24:50 +00002571 << " N.Val->dump(CurDAG);\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002572 << " std::cerr << '\\n';\n"
2573 << " abort();\n"
2574 << "}\n";
2575}
2576
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002577void DAGISelEmitter::run(std::ostream &OS) {
2578 EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
2579 " target", OS);
2580
Chris Lattner1f39e292005-09-14 00:09:24 +00002581 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2582 << "// *** instruction selector class. These functions are really "
2583 << "methods.\n\n";
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002584
Chris Lattner296dfe32005-09-24 00:50:51 +00002585 OS << "// Instance var to keep track of multiply used nodes that have \n"
2586 << "// already been selected.\n"
2587 << "std::map<SDOperand, SDOperand> CodeGenMap;\n";
2588
Chris Lattnerca559d02005-09-08 21:03:01 +00002589 ParseNodeInfo();
Chris Lattner24eeeb82005-09-13 21:51:00 +00002590 ParseNodeTransforms(OS);
Evan Cheng0fc71982005-12-08 02:00:36 +00002591 ParseComplexPatterns();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002592 ParsePatternFragments(OS);
2593 ParseInstructions();
2594 ParsePatterns();
Chris Lattner3f7e9142005-09-23 20:52:47 +00002595
Chris Lattnere97603f2005-09-28 19:27:25 +00002596 // Generate variants. For example, commutative patterns can match
Chris Lattner3f7e9142005-09-23 20:52:47 +00002597 // multiple ways. Add them to PatternsToMatch as well.
Chris Lattnere97603f2005-09-28 19:27:25 +00002598 GenerateVariants();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002599
Chris Lattnere46e17b2005-09-29 19:28:10 +00002600
2601 DEBUG(std::cerr << "\n\nALL PATTERNS TO MATCH:\n\n";
2602 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002603 std::cerr << "PATTERN: "; PatternsToMatch[i].getSrcPattern()->dump();
2604 std::cerr << "\nRESULT: ";PatternsToMatch[i].getDstPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00002605 std::cerr << "\n";
2606 });
2607
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002608 // At this point, we have full information about the 'Patterns' we need to
2609 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002610 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002611 EmitInstructionSelector(OS);
2612
2613 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
2614 E = PatternFragments.end(); I != E; ++I)
2615 delete I->second;
2616 PatternFragments.clear();
2617
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002618 Instructions.clear();
2619}