blob: 140c8f2bf12fab8970774ab6eac2d6c560c78199 [file] [log] [blame]
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001//===- DAGISelEmitter.cpp - Generate an instruction selector --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This tablegen backend emits a DAG instruction selector.
11//
12//===----------------------------------------------------------------------===//
13
14#include "DAGISelEmitter.h"
15#include "Record.h"
16#include "llvm/ADT/StringExtras.h"
17#include "llvm/Support/Debug.h"
Jeff Cohena48283b2005-09-25 19:04:43 +000018#include <algorithm>
Chris Lattner54cb8fd2005-09-07 23:44:43 +000019#include <set>
20using namespace llvm;
21
Chris Lattnerca559d02005-09-08 21:03:01 +000022//===----------------------------------------------------------------------===//
Chris Lattner3c7e18d2005-10-14 06:12:03 +000023// Helpers for working with extended types.
24
25/// FilterVTs - Filter a list of VT's according to a predicate.
26///
27template<typename T>
28static std::vector<MVT::ValueType>
29FilterVTs(const std::vector<MVT::ValueType> &InVTs, T Filter) {
30 std::vector<MVT::ValueType> Result;
31 for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
32 if (Filter(InVTs[i]))
33 Result.push_back(InVTs[i]);
34 return Result;
35}
36
37/// isExtIntegerVT - Return true if the specified extended value type is
38/// integer, or isInt.
39static bool isExtIntegerVT(unsigned char VT) {
40 return VT == MVT::isInt ||
41 (VT < MVT::LAST_VALUETYPE && MVT::isInteger((MVT::ValueType)VT));
42}
43
44/// isExtFloatingPointVT - Return true if the specified extended value type is
45/// floating point, or isFP.
46static bool isExtFloatingPointVT(unsigned char VT) {
47 return VT == MVT::isFP ||
48 (VT < MVT::LAST_VALUETYPE && MVT::isFloatingPoint((MVT::ValueType)VT));
49}
50
51//===----------------------------------------------------------------------===//
Chris Lattner33c92e92005-09-08 21:27:15 +000052// SDTypeConstraint implementation
53//
54
55SDTypeConstraint::SDTypeConstraint(Record *R) {
56 OperandNo = R->getValueAsInt("OperandNum");
57
58 if (R->isSubClassOf("SDTCisVT")) {
59 ConstraintType = SDTCisVT;
60 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
Chris Lattner5b21be72005-12-09 22:57:42 +000061 } else if (R->isSubClassOf("SDTCisPtrTy")) {
62 ConstraintType = SDTCisPtrTy;
Chris Lattner33c92e92005-09-08 21:27:15 +000063 } else if (R->isSubClassOf("SDTCisInt")) {
64 ConstraintType = SDTCisInt;
65 } else if (R->isSubClassOf("SDTCisFP")) {
66 ConstraintType = SDTCisFP;
67 } else if (R->isSubClassOf("SDTCisSameAs")) {
68 ConstraintType = SDTCisSameAs;
69 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
70 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
71 ConstraintType = SDTCisVTSmallerThanOp;
72 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum =
73 R->getValueAsInt("OtherOperandNum");
Chris Lattner03ebd802005-10-14 04:53:53 +000074 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
75 ConstraintType = SDTCisOpSmallerThanOp;
76 x.SDTCisOpSmallerThanOp_Info.BigOperandNum =
77 R->getValueAsInt("BigOperandNum");
Chris Lattner33c92e92005-09-08 21:27:15 +000078 } else {
79 std::cerr << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n";
80 exit(1);
81 }
82}
83
Chris Lattner32707602005-09-08 23:22:48 +000084/// getOperandNum - Return the node corresponding to operand #OpNo in tree
85/// N, which has NumResults results.
86TreePatternNode *SDTypeConstraint::getOperandNum(unsigned OpNo,
87 TreePatternNode *N,
88 unsigned NumResults) const {
Evan Cheng1c3d19e2005-12-04 08:18:16 +000089 assert(NumResults <= 1 &&
90 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +000091
92 if (OpNo < NumResults)
93 return N; // FIXME: need value #
94 else
95 return N->getChild(OpNo-NumResults);
96}
97
98/// ApplyTypeConstraint - Given a node in a pattern, apply this type
99/// constraint to the nodes operands. This returns true if it makes a
100/// change, false otherwise. If a type contradiction is found, throw an
101/// exception.
102bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
103 const SDNodeInfo &NodeInfo,
104 TreePattern &TP) const {
105 unsigned NumResults = NodeInfo.getNumResults();
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000106 assert(NumResults <= 1 &&
107 "We only work with nodes with zero or one result so far!");
Chris Lattner32707602005-09-08 23:22:48 +0000108
109 // Check that the number of operands is sane.
110 if (NodeInfo.getNumOperands() >= 0) {
111 if (N->getNumChildren() != (unsigned)NodeInfo.getNumOperands())
112 TP.error(N->getOperator()->getName() + " node requires exactly " +
113 itostr(NodeInfo.getNumOperands()) + " operands!");
114 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000115
116 const CodeGenTarget &CGT = TP.getDAGISelEmitter().getTargetInfo();
Chris Lattner32707602005-09-08 23:22:48 +0000117
118 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NumResults);
119
120 switch (ConstraintType) {
121 default: assert(0 && "Unknown constraint type!");
122 case SDTCisVT:
123 // Operand must be a particular type.
124 return NodeToApply->UpdateNodeType(x.SDTCisVT_Info.VT, TP);
Chris Lattner5b21be72005-12-09 22:57:42 +0000125 case SDTCisPtrTy: {
126 // Operand must be same as target pointer type.
127 return NodeToApply->UpdateNodeType(CGT.getPointerType(), TP);
128 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000129 case SDTCisInt: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000130 // If there is only one integer type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000131 std::vector<MVT::ValueType> IntVTs =
132 FilterVTs(CGT.getLegalValueTypes(), MVT::isInteger);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000133
134 // If we found exactly one supported integer type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000135 if (IntVTs.size() == 1)
136 return NodeToApply->UpdateNodeType(IntVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000137 return NodeToApply->UpdateNodeType(MVT::isInt, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000138 }
139 case SDTCisFP: {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000140 // If there is only one FP type supported, this must be it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000141 std::vector<MVT::ValueType> FPVTs =
142 FilterVTs(CGT.getLegalValueTypes(), MVT::isFloatingPoint);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000143
144 // If we found exactly one supported FP type, apply it.
Chris Lattnere0583b12005-10-14 05:08:37 +0000145 if (FPVTs.size() == 1)
146 return NodeToApply->UpdateNodeType(FPVTs[0], TP);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000147 return NodeToApply->UpdateNodeType(MVT::isFP, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000148 }
Chris Lattner32707602005-09-08 23:22:48 +0000149 case SDTCisSameAs: {
150 TreePatternNode *OtherNode =
151 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000152 return NodeToApply->UpdateNodeType(OtherNode->getExtType(), TP) |
153 OtherNode->UpdateNodeType(NodeToApply->getExtType(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000154 }
155 case SDTCisVTSmallerThanOp: {
156 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must
157 // have an integer type that is smaller than the VT.
158 if (!NodeToApply->isLeaf() ||
159 !dynamic_cast<DefInit*>(NodeToApply->getLeafValue()) ||
160 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
161 ->isSubClassOf("ValueType"))
162 TP.error(N->getOperator()->getName() + " expects a VT operand!");
163 MVT::ValueType VT =
164 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
165 if (!MVT::isInteger(VT))
166 TP.error(N->getOperator()->getName() + " VT operand must be integer!");
167
168 TreePatternNode *OtherNode =
169 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N,NumResults);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000170
171 // It must be integer.
172 bool MadeChange = false;
173 MadeChange |= OtherNode->UpdateNodeType(MVT::isInt, TP);
174
175 if (OtherNode->hasTypeSet() && OtherNode->getType() <= VT)
Chris Lattner32707602005-09-08 23:22:48 +0000176 OtherNode->UpdateNodeType(MVT::Other, TP); // Throw an error.
177 return false;
178 }
Chris Lattner03ebd802005-10-14 04:53:53 +0000179 case SDTCisOpSmallerThanOp: {
Chris Lattner603d78c2005-10-14 06:25:00 +0000180 TreePatternNode *BigOperand =
181 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NumResults);
182
183 // Both operands must be integer or FP, but we don't care which.
184 bool MadeChange = false;
185
186 if (isExtIntegerVT(NodeToApply->getExtType()))
187 MadeChange |= BigOperand->UpdateNodeType(MVT::isInt, TP);
188 else if (isExtFloatingPointVT(NodeToApply->getExtType()))
189 MadeChange |= BigOperand->UpdateNodeType(MVT::isFP, TP);
190 if (isExtIntegerVT(BigOperand->getExtType()))
191 MadeChange |= NodeToApply->UpdateNodeType(MVT::isInt, TP);
192 else if (isExtFloatingPointVT(BigOperand->getExtType()))
193 MadeChange |= NodeToApply->UpdateNodeType(MVT::isFP, TP);
194
195 std::vector<MVT::ValueType> VTs = CGT.getLegalValueTypes();
196
197 if (isExtIntegerVT(NodeToApply->getExtType())) {
198 VTs = FilterVTs(VTs, MVT::isInteger);
199 } else if (isExtFloatingPointVT(NodeToApply->getExtType())) {
200 VTs = FilterVTs(VTs, MVT::isFloatingPoint);
201 } else {
202 VTs.clear();
203 }
204
205 switch (VTs.size()) {
206 default: // Too many VT's to pick from.
207 case 0: break; // No info yet.
208 case 1:
209 // Only one VT of this flavor. Cannot ever satisify the constraints.
210 return NodeToApply->UpdateNodeType(MVT::Other, TP); // throw
211 case 2:
212 // If we have exactly two possible types, the little operand must be the
213 // small one, the big operand should be the big one. Common with
214 // float/double for example.
215 assert(VTs[0] < VTs[1] && "Should be sorted!");
216 MadeChange |= NodeToApply->UpdateNodeType(VTs[0], TP);
217 MadeChange |= BigOperand->UpdateNodeType(VTs[1], TP);
218 break;
219 }
220 return MadeChange;
Chris Lattner03ebd802005-10-14 04:53:53 +0000221 }
Chris Lattner32707602005-09-08 23:22:48 +0000222 }
223 return false;
224}
225
226
Chris Lattner33c92e92005-09-08 21:27:15 +0000227//===----------------------------------------------------------------------===//
Chris Lattnerca559d02005-09-08 21:03:01 +0000228// SDNodeInfo implementation
229//
230SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
231 EnumName = R->getValueAsString("Opcode");
232 SDClassName = R->getValueAsString("SDClass");
Chris Lattner33c92e92005-09-08 21:27:15 +0000233 Record *TypeProfile = R->getValueAsDef("TypeProfile");
234 NumResults = TypeProfile->getValueAsInt("NumResults");
235 NumOperands = TypeProfile->getValueAsInt("NumOperands");
236
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000237 // Parse the properties.
238 Properties = 0;
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000239 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
Chris Lattner6bc0d742005-10-28 22:43:25 +0000240 for (unsigned i = 0, e = PropList.size(); i != e; ++i) {
241 if (PropList[i]->getName() == "SDNPCommutative") {
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000242 Properties |= 1 << SDNPCommutative;
Chris Lattner6bc0d742005-10-28 22:43:25 +0000243 } else if (PropList[i]->getName() == "SDNPAssociative") {
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000244 Properties |= 1 << SDNPAssociative;
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000245 } else if (PropList[i]->getName() == "SDNPHasChain") {
246 Properties |= 1 << SDNPHasChain;
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000247 } else {
Chris Lattner6bc0d742005-10-28 22:43:25 +0000248 std::cerr << "Unknown SD Node property '" << PropList[i]->getName()
Chris Lattnera1a68ae2005-09-28 18:28:29 +0000249 << "' on node '" << R->getName() << "'!\n";
250 exit(1);
251 }
252 }
253
254
Chris Lattner33c92e92005-09-08 21:27:15 +0000255 // Parse the type constraints.
Chris Lattnerb0e103d2005-10-28 22:49:02 +0000256 std::vector<Record*> ConstraintList =
257 TypeProfile->getValueAsListOfDefs("Constraints");
258 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
Chris Lattnerca559d02005-09-08 21:03:01 +0000259}
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000260
261//===----------------------------------------------------------------------===//
262// TreePatternNode implementation
263//
264
265TreePatternNode::~TreePatternNode() {
266#if 0 // FIXME: implement refcounted tree nodes!
267 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
268 delete getChild(i);
269#endif
270}
271
Chris Lattner32707602005-09-08 23:22:48 +0000272/// UpdateNodeType - Set the node type of N to VT if VT contains
273/// information. If N already contains a conflicting type, then throw an
274/// exception. This returns true if any information was updated.
275///
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000276bool TreePatternNode::UpdateNodeType(unsigned char VT, TreePattern &TP) {
277 if (VT == MVT::isUnknown || getExtType() == VT) return false;
278 if (getExtType() == MVT::isUnknown) {
Chris Lattner32707602005-09-08 23:22:48 +0000279 setType(VT);
280 return true;
281 }
282
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000283 // If we are told this is to be an int or FP type, and it already is, ignore
284 // the advice.
285 if ((VT == MVT::isInt && isExtIntegerVT(getExtType())) ||
286 (VT == MVT::isFP && isExtFloatingPointVT(getExtType())))
287 return false;
288
289 // If we know this is an int or fp type, and we are told it is a specific one,
290 // take the advice.
291 if ((getExtType() == MVT::isInt && isExtIntegerVT(VT)) ||
292 (getExtType() == MVT::isFP && isExtFloatingPointVT(VT))) {
293 setType(VT);
294 return true;
295 }
296
Chris Lattner1531f202005-10-26 16:59:37 +0000297 if (isLeaf()) {
298 dump();
Evan Chengbcecf332005-12-17 01:19:28 +0000299 std::cerr << " ";
Chris Lattner1531f202005-10-26 16:59:37 +0000300 TP.error("Type inference contradiction found in node!");
301 } else {
302 TP.error("Type inference contradiction found in node " +
303 getOperator()->getName() + "!");
304 }
Chris Lattner32707602005-09-08 23:22:48 +0000305 return true; // unreachable
306}
307
308
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000309void TreePatternNode::print(std::ostream &OS) const {
310 if (isLeaf()) {
311 OS << *getLeafValue();
312 } else {
313 OS << "(" << getOperator()->getName();
314 }
315
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000316 switch (getExtType()) {
317 case MVT::Other: OS << ":Other"; break;
318 case MVT::isInt: OS << ":isInt"; break;
319 case MVT::isFP : OS << ":isFP"; break;
320 case MVT::isUnknown: ; /*OS << ":?";*/ break;
321 default: OS << ":" << getType(); break;
322 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000323
324 if (!isLeaf()) {
325 if (getNumChildren() != 0) {
326 OS << " ";
327 getChild(0)->print(OS);
328 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
329 OS << ", ";
330 getChild(i)->print(OS);
331 }
332 }
333 OS << ")";
334 }
335
336 if (!PredicateFn.empty())
Chris Lattner24eeeb82005-09-13 21:51:00 +0000337 OS << "<<P:" << PredicateFn << ">>";
Chris Lattnerb0276202005-09-14 22:55:26 +0000338 if (TransformFn)
339 OS << "<<X:" << TransformFn->getName() << ">>";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000340 if (!getName().empty())
341 OS << ":$" << getName();
342
343}
344void TreePatternNode::dump() const {
345 print(std::cerr);
346}
347
Chris Lattnere46e17b2005-09-29 19:28:10 +0000348/// isIsomorphicTo - Return true if this node is recursively isomorphic to
349/// the specified node. For this comparison, all of the state of the node
350/// is considered, except for the assigned name. Nodes with differing names
351/// that are otherwise identical are considered isomorphic.
352bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N) const {
353 if (N == this) return true;
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000354 if (N->isLeaf() != isLeaf() || getExtType() != N->getExtType() ||
Chris Lattnere46e17b2005-09-29 19:28:10 +0000355 getPredicateFn() != N->getPredicateFn() ||
356 getTransformFn() != N->getTransformFn())
357 return false;
358
359 if (isLeaf()) {
360 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue()))
361 if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue()))
362 return DI->getDef() == NDI->getDef();
363 return getLeafValue() == N->getLeafValue();
364 }
365
366 if (N->getOperator() != getOperator() ||
367 N->getNumChildren() != getNumChildren()) return false;
368 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
369 if (!getChild(i)->isIsomorphicTo(N->getChild(i)))
370 return false;
371 return true;
372}
373
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000374/// clone - Make a copy of this tree and all of its children.
375///
376TreePatternNode *TreePatternNode::clone() const {
377 TreePatternNode *New;
378 if (isLeaf()) {
379 New = new TreePatternNode(getLeafValue());
380 } else {
381 std::vector<TreePatternNode*> CChildren;
382 CChildren.reserve(Children.size());
383 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
384 CChildren.push_back(getChild(i)->clone());
385 New = new TreePatternNode(getOperator(), CChildren);
386 }
387 New->setName(getName());
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000388 New->setType(getExtType());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000389 New->setPredicateFn(getPredicateFn());
Chris Lattner24eeeb82005-09-13 21:51:00 +0000390 New->setTransformFn(getTransformFn());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000391 return New;
392}
393
Chris Lattner32707602005-09-08 23:22:48 +0000394/// SubstituteFormalArguments - Replace the formal arguments in this tree
395/// with actual values specified by ArgMap.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000396void TreePatternNode::
397SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
398 if (isLeaf()) return;
399
400 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
401 TreePatternNode *Child = getChild(i);
402 if (Child->isLeaf()) {
403 Init *Val = Child->getLeafValue();
404 if (dynamic_cast<DefInit*>(Val) &&
405 static_cast<DefInit*>(Val)->getDef()->getName() == "node") {
406 // We found a use of a formal argument, replace it with its value.
407 Child = ArgMap[Child->getName()];
408 assert(Child && "Couldn't find formal argument!");
409 setChild(i, Child);
410 }
411 } else {
412 getChild(i)->SubstituteFormalArguments(ArgMap);
413 }
414 }
415}
416
417
418/// InlinePatternFragments - If this pattern refers to any pattern
419/// fragments, inline them into place, giving us a pattern without any
420/// PatFrag references.
421TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
422 if (isLeaf()) return this; // nothing to do.
423 Record *Op = getOperator();
424
425 if (!Op->isSubClassOf("PatFrag")) {
426 // Just recursively inline children nodes.
427 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
428 setChild(i, getChild(i)->InlinePatternFragments(TP));
429 return this;
430 }
431
432 // Otherwise, we found a reference to a fragment. First, look up its
433 // TreePattern record.
434 TreePattern *Frag = TP.getDAGISelEmitter().getPatternFragment(Op);
435
436 // Verify that we are passing the right number of operands.
437 if (Frag->getNumArgs() != Children.size())
438 TP.error("'" + Op->getName() + "' fragment requires " +
439 utostr(Frag->getNumArgs()) + " operands!");
440
Chris Lattner37937092005-09-09 01:15:01 +0000441 TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000442
443 // Resolve formal arguments to their actual value.
444 if (Frag->getNumArgs()) {
445 // Compute the map of formal to actual arguments.
446 std::map<std::string, TreePatternNode*> ArgMap;
447 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
448 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
449
450 FragTree->SubstituteFormalArguments(ArgMap);
451 }
452
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000453 FragTree->setName(getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000454 FragTree->UpdateNodeType(getExtType(), TP);
Chris Lattnerfbf8e572005-09-08 17:45:12 +0000455
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000456 // Get a new copy of this fragment to stitch into here.
457 //delete this; // FIXME: implement refcounting!
458 return FragTree;
459}
460
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000461/// getIntrinsicType - Check to see if the specified record has an intrinsic
462/// type which should be applied to it. This infer the type of register
463/// references from the register file information, for example.
464///
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000465static unsigned char getIntrinsicType(Record *R, bool NotRegisters,
466 TreePattern &TP) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000467 // Check to see if this is a register or a register class...
468 if (R->isSubClassOf("RegisterClass")) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000469 if (NotRegisters) return MVT::isUnknown;
Nate Begeman6510b222005-12-01 04:51:06 +0000470 const CodeGenRegisterClass &RC =
471 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(R);
472 return RC.getValueTypeNum(0);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000473 } else if (R->isSubClassOf("PatFrag")) {
474 // Pattern fragment types will be resolved when they are inlined.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000475 return MVT::isUnknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000476 } else if (R->isSubClassOf("Register")) {
Chris Lattner22faeab2005-12-05 02:36:37 +0000477 // If the register appears in exactly one regclass, and the regclass has one
478 // value type, use it as the known type.
479 const CodeGenTarget &T = TP.getDAGISelEmitter().getTargetInfo();
480 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
481 if (RC->getNumValueTypes() == 1)
482 return RC->getValueTypeNum(0);
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000483 return MVT::isUnknown;
Chris Lattner1531f202005-10-26 16:59:37 +0000484 } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
485 // Using a VTSDNode or CondCodeSDNode.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000486 return MVT::Other;
Evan Cheng0fc71982005-12-08 02:00:36 +0000487 } else if (R->isSubClassOf("ComplexPattern")) {
Evan Cheng3aa39f42005-12-08 02:14:08 +0000488 return TP.getDAGISelEmitter().getComplexPattern(R).getValueType();
Evan Cheng01f318b2005-12-14 02:21:57 +0000489 } else if (R->getName() == "node" || R->getName() == "srcvalue") {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000490 // Placeholder.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000491 return MVT::isUnknown;
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000492 }
493
494 TP.error("Unknown node flavor used in pattern: " + R->getName());
495 return MVT::Other;
496}
497
Chris Lattner32707602005-09-08 23:22:48 +0000498/// ApplyTypeConstraints - Apply all of the type constraints relevent to
499/// this node and its children in the tree. This returns true if it makes a
500/// change, false otherwise. If a type contradiction is found, throw an
501/// exception.
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000502bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
503 if (isLeaf()) {
Chris Lattner465c7372005-11-03 05:46:11 +0000504 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000505 // If it's a regclass or something else known, include the type.
506 return UpdateNodeType(getIntrinsicType(DI->getDef(), NotRegisters, TP),
507 TP);
Chris Lattner465c7372005-11-03 05:46:11 +0000508 } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
509 // Int inits are always integers. :)
510 bool MadeChange = UpdateNodeType(MVT::isInt, TP);
511
512 if (hasTypeSet()) {
513 unsigned Size = MVT::getSizeInBits(getType());
514 // Make sure that the value is representable for this type.
515 if (Size < 32) {
516 int Val = (II->getValue() << (32-Size)) >> (32-Size);
517 if (Val != II->getValue())
518 TP.error("Sign-extended integer value '" + itostr(II->getValue()) +
519 "' is out of range for type 'MVT::" +
520 getEnumName(getType()) + "'!");
521 }
522 }
523
524 return MadeChange;
525 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000526 return false;
527 }
Chris Lattner32707602005-09-08 23:22:48 +0000528
529 // special handling for set, which isn't really an SDNode.
530 if (getOperator()->getName() == "set") {
531 assert (getNumChildren() == 2 && "Only handle 2 operand set's for now!");
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000532 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
533 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattner32707602005-09-08 23:22:48 +0000534
535 // Types of operands must match.
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000536 MadeChange |= getChild(0)->UpdateNodeType(getChild(1)->getExtType(), TP);
537 MadeChange |= getChild(1)->UpdateNodeType(getChild(0)->getExtType(), TP);
Chris Lattner32707602005-09-08 23:22:48 +0000538 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
539 return MadeChange;
Chris Lattnerabbb6052005-09-15 21:42:00 +0000540 } else if (getOperator()->isSubClassOf("SDNode")) {
541 const SDNodeInfo &NI = TP.getDAGISelEmitter().getSDNodeInfo(getOperator());
542
543 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
544 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000545 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000546 // Branch, etc. do not produce results and top-level forms in instr pattern
547 // must have void types.
548 if (NI.getNumResults() == 0)
549 MadeChange |= UpdateNodeType(MVT::isVoid, TP);
Chris Lattnerabbb6052005-09-15 21:42:00 +0000550 return MadeChange;
Chris Lattnera28aec12005-09-15 22:23:50 +0000551 } else if (getOperator()->isSubClassOf("Instruction")) {
Chris Lattnerae5b3502005-09-15 21:57:35 +0000552 const DAGInstruction &Inst =
553 TP.getDAGISelEmitter().getInstruction(getOperator());
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000554 bool MadeChange = false;
555 unsigned NumResults = Inst.getNumResults();
Chris Lattnerae5b3502005-09-15 21:57:35 +0000556
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000557 assert(NumResults <= 1 &&
558 "Only supports zero or one result instrs!");
Chris Lattnera28aec12005-09-15 22:23:50 +0000559 // Apply the result type to the node
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000560 if (NumResults == 0) {
561 MadeChange = UpdateNodeType(MVT::isVoid, TP);
562 } else {
563 Record *ResultNode = Inst.getResult(0);
564 assert(ResultNode->isSubClassOf("RegisterClass") &&
565 "Operands should be register classes!");
Nate Begemanddb39542005-12-01 00:06:14 +0000566
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000567 const CodeGenRegisterClass &RC =
568 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(ResultNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000569
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000570 // Get the first ValueType in the RegClass, it's as good as any.
571 MadeChange = UpdateNodeType(RC.getValueTypeNum(0), TP);
572 }
Chris Lattnera28aec12005-09-15 22:23:50 +0000573
574 if (getNumChildren() != Inst.getNumOperands())
575 TP.error("Instruction '" + getOperator()->getName() + " expects " +
576 utostr(Inst.getNumOperands()) + " operands, not " +
577 utostr(getNumChildren()) + " operands!");
578 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
Nate Begemanddb39542005-12-01 00:06:14 +0000579 Record *OperandNode = Inst.getOperand(i);
580 MVT::ValueType VT;
581 if (OperandNode->isSubClassOf("RegisterClass")) {
582 const CodeGenRegisterClass &RC =
583 TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(OperandNode);
Nate Begeman6510b222005-12-01 04:51:06 +0000584 VT = RC.getValueTypeNum(0);
Nate Begemanddb39542005-12-01 00:06:14 +0000585 } else if (OperandNode->isSubClassOf("Operand")) {
586 VT = getValueType(OperandNode->getValueAsDef("Type"));
587 } else {
588 assert(0 && "Unknown operand type!");
589 abort();
590 }
591
592 MadeChange |= getChild(i)->UpdateNodeType(VT, TP);
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000593 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
Chris Lattnera28aec12005-09-15 22:23:50 +0000594 }
595 return MadeChange;
596 } else {
597 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
598
599 // Node transforms always take one operand, and take and return the same
600 // type.
601 if (getNumChildren() != 1)
602 TP.error("Node transform '" + getOperator()->getName() +
603 "' requires one operand!");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000604 bool MadeChange = UpdateNodeType(getChild(0)->getExtType(), TP);
605 MadeChange |= getChild(0)->UpdateNodeType(getExtType(), TP);
Chris Lattnera28aec12005-09-15 22:23:50 +0000606 return MadeChange;
Chris Lattner32707602005-09-08 23:22:48 +0000607 }
Chris Lattner32707602005-09-08 23:22:48 +0000608}
609
Chris Lattnere97603f2005-09-28 19:27:25 +0000610/// canPatternMatch - If it is impossible for this pattern to match on this
611/// target, fill in Reason and return false. Otherwise, return true. This is
612/// used as a santity check for .td files (to prevent people from writing stuff
613/// that can never possibly work), and to prevent the pattern permuter from
614/// generating stuff that is useless.
Chris Lattner7cf2fe62005-09-28 20:58:06 +0000615bool TreePatternNode::canPatternMatch(std::string &Reason, DAGISelEmitter &ISE){
Chris Lattnere97603f2005-09-28 19:27:25 +0000616 if (isLeaf()) return true;
617
618 for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
619 if (!getChild(i)->canPatternMatch(Reason, ISE))
620 return false;
Evan Cheng0fc71982005-12-08 02:00:36 +0000621
Chris Lattnere97603f2005-09-28 19:27:25 +0000622 // If this node is a commutative operator, check that the LHS isn't an
623 // immediate.
624 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(getOperator());
625 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
626 // Scan all of the operands of the node and make sure that only the last one
627 // is a constant node.
628 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i)
629 if (!getChild(i)->isLeaf() &&
630 getChild(i)->getOperator()->getName() == "imm") {
631 Reason = "Immediate value must be on the RHS of commutative operators!";
632 return false;
633 }
634 }
635
636 return true;
637}
Chris Lattner32707602005-09-08 23:22:48 +0000638
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000639//===----------------------------------------------------------------------===//
640// TreePattern implementation
641//
642
Chris Lattneredbd8712005-10-21 01:19:59 +0000643TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
Chris Lattneree9f0c32005-09-13 21:20:49 +0000644 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000645 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000646 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
647 Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000648}
649
Chris Lattneredbd8712005-10-21 01:19:59 +0000650TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000651 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000652 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000653 Trees.push_back(ParseTreePattern(Pat));
654}
655
Chris Lattneredbd8712005-10-21 01:19:59 +0000656TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
Chris Lattnera28aec12005-09-15 22:23:50 +0000657 DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
Chris Lattneredbd8712005-10-21 01:19:59 +0000658 isInputPattern = isInput;
Chris Lattnera28aec12005-09-15 22:23:50 +0000659 Trees.push_back(Pat);
660}
661
662
663
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000664void TreePattern::error(const std::string &Msg) const {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000665 dump();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000666 throw "In " + TheRecord->getName() + ": " + Msg;
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000667}
668
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000669TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
670 Record *Operator = Dag->getNodeType();
671
672 if (Operator->isSubClassOf("ValueType")) {
673 // If the operator is a ValueType, then this must be "type cast" of a leaf
674 // node.
675 if (Dag->getNumArgs() != 1)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000676 error("Type cast only takes one operand!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000677
678 Init *Arg = Dag->getArg(0);
679 TreePatternNode *New;
680 if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
Chris Lattner72fe91c2005-09-24 00:40:24 +0000681 Record *R = DI->getDef();
682 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
683 Dag->setArg(0, new DagInit(R,
684 std::vector<std::pair<Init*, std::string> >()));
Chris Lattner12cf9092005-11-16 23:14:54 +0000685 return ParseTreePattern(Dag);
Evan Cheng1c3d19e2005-12-04 08:18:16 +0000686 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000687 New = new TreePatternNode(DI);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000688 } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
689 New = ParseTreePattern(DI);
Chris Lattner0614b622005-11-02 06:49:14 +0000690 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
691 New = new TreePatternNode(II);
692 if (!Dag->getArgName(0).empty())
693 error("Constant int argument should not have a name!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000694 } else {
695 Arg->dump();
696 error("Unknown leaf value for tree pattern!");
697 return 0;
698 }
699
Chris Lattner32707602005-09-08 23:22:48 +0000700 // Apply the type cast.
701 New->UpdateNodeType(getValueType(Operator), *this);
Chris Lattner12cf9092005-11-16 23:14:54 +0000702 New->setName(Dag->getArgName(0));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000703 return New;
704 }
705
706 // Verify that this is something that makes sense for an operator.
707 if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
Chris Lattnerabbb6052005-09-15 21:42:00 +0000708 !Operator->isSubClassOf("Instruction") &&
709 !Operator->isSubClassOf("SDNodeXForm") &&
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000710 Operator->getName() != "set")
711 error("Unrecognized node '" + Operator->getName() + "'!");
712
Chris Lattneredbd8712005-10-21 01:19:59 +0000713 // Check to see if this is something that is illegal in an input pattern.
714 if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
715 Operator->isSubClassOf("SDNodeXForm")))
716 error("Cannot use '" + Operator->getName() + "' in an input pattern!");
717
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000718 std::vector<TreePatternNode*> Children;
719
720 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
721 Init *Arg = Dag->getArg(i);
722 if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
723 Children.push_back(ParseTreePattern(DI));
Chris Lattner12cf9092005-11-16 23:14:54 +0000724 if (Children.back()->getName().empty())
725 Children.back()->setName(Dag->getArgName(i));
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000726 } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
727 Record *R = DefI->getDef();
728 // Direct reference to a leaf DagNode or PatFrag? Turn it into a
729 // TreePatternNode if its own.
730 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
731 Dag->setArg(i, new DagInit(R,
732 std::vector<std::pair<Init*, std::string> >()));
733 --i; // Revisit this node...
734 } else {
735 TreePatternNode *Node = new TreePatternNode(DefI);
736 Node->setName(Dag->getArgName(i));
737 Children.push_back(Node);
738
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000739 // Input argument?
740 if (R->getName() == "node") {
741 if (Dag->getArgName(i).empty())
742 error("'node' argument requires a name to match with operand list");
743 Args.push_back(Dag->getArgName(i));
744 }
745 }
Chris Lattner5d5a0562005-10-19 04:30:56 +0000746 } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
747 TreePatternNode *Node = new TreePatternNode(II);
748 if (!Dag->getArgName(i).empty())
749 error("Constant int argument should not have a name!");
750 Children.push_back(Node);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000751 } else {
Chris Lattner5d5a0562005-10-19 04:30:56 +0000752 std::cerr << '"';
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000753 Arg->dump();
Chris Lattner5d5a0562005-10-19 04:30:56 +0000754 std::cerr << "\": ";
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000755 error("Unknown leaf value for tree pattern!");
756 }
757 }
758
759 return new TreePatternNode(Operator, Children);
760}
761
Chris Lattner32707602005-09-08 23:22:48 +0000762/// InferAllTypes - Infer/propagate as many types throughout the expression
763/// patterns as possible. Return true if all types are infered, false
764/// otherwise. Throw an exception if a type contradiction is found.
765bool TreePattern::InferAllTypes() {
766 bool MadeChange = true;
767 while (MadeChange) {
768 MadeChange = false;
769 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
Chris Lattner0ee7cff2005-10-14 04:11:13 +0000770 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
Chris Lattner32707602005-09-08 23:22:48 +0000771 }
772
773 bool HasUnresolvedTypes = false;
774 for (unsigned i = 0, e = Trees.size(); i != e; ++i)
775 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
776 return !HasUnresolvedTypes;
777}
778
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000779void TreePattern::print(std::ostream &OS) const {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000780 OS << getRecord()->getName();
781 if (!Args.empty()) {
782 OS << "(" << Args[0];
783 for (unsigned i = 1, e = Args.size(); i != e; ++i)
784 OS << ", " << Args[i];
785 OS << ")";
786 }
787 OS << ": ";
788
789 if (Trees.size() > 1)
790 OS << "[\n";
791 for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
792 OS << "\t";
793 Trees[i]->print(OS);
794 OS << "\n";
795 }
796
797 if (Trees.size() > 1)
798 OS << "]\n";
799}
800
801void TreePattern::dump() const { print(std::cerr); }
802
803
804
805//===----------------------------------------------------------------------===//
806// DAGISelEmitter implementation
807//
808
Chris Lattnerca559d02005-09-08 21:03:01 +0000809// Parse all of the SDNode definitions for the target, populating SDNodes.
810void DAGISelEmitter::ParseNodeInfo() {
811 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
812 while (!Nodes.empty()) {
813 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
814 Nodes.pop_back();
815 }
816}
817
Chris Lattner24eeeb82005-09-13 21:51:00 +0000818/// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
819/// map, and emit them to the file as functions.
820void DAGISelEmitter::ParseNodeTransforms(std::ostream &OS) {
821 OS << "\n// Node transformations.\n";
822 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
823 while (!Xforms.empty()) {
824 Record *XFormNode = Xforms.back();
825 Record *SDNode = XFormNode->getValueAsDef("Opcode");
826 std::string Code = XFormNode->getValueAsCode("XFormFunction");
827 SDNodeXForms.insert(std::make_pair(XFormNode,
828 std::make_pair(SDNode, Code)));
829
Chris Lattner1048b7a2005-09-13 22:03:37 +0000830 if (!Code.empty()) {
Chris Lattner24eeeb82005-09-13 21:51:00 +0000831 std::string ClassName = getSDNodeInfo(SDNode).getSDClassName();
832 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
833
Chris Lattner1048b7a2005-09-13 22:03:37 +0000834 OS << "inline SDOperand Transform_" << XFormNode->getName()
Chris Lattner24eeeb82005-09-13 21:51:00 +0000835 << "(SDNode *" << C2 << ") {\n";
836 if (ClassName != "SDNode")
837 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
838 OS << Code << "\n}\n";
839 }
840
841 Xforms.pop_back();
842 }
843}
844
Evan Cheng0fc71982005-12-08 02:00:36 +0000845void DAGISelEmitter::ParseComplexPatterns() {
846 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
847 while (!AMs.empty()) {
848 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
849 AMs.pop_back();
850 }
851}
Chris Lattner24eeeb82005-09-13 21:51:00 +0000852
853
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000854/// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
855/// file, building up the PatternFragments map. After we've collected them all,
856/// inline fragments together as necessary, so that there are no references left
857/// inside a pattern fragment to a pattern fragment.
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000858///
859/// This also emits all of the predicate functions to the output file.
860///
Chris Lattnerb39e4be2005-09-15 02:38:02 +0000861void DAGISelEmitter::ParsePatternFragments(std::ostream &OS) {
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000862 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
863
864 // First step, parse all of the fragments and emit predicate functions.
865 OS << "\n// Predicate functions.\n";
866 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +0000867 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
Chris Lattneredbd8712005-10-21 01:19:59 +0000868 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000869 PatternFragments[Fragments[i]] = P;
Chris Lattneree9f0c32005-09-13 21:20:49 +0000870
871 // Validate the argument list, converting it to map, to discard duplicates.
872 std::vector<std::string> &Args = P->getArgList();
873 std::set<std::string> OperandsMap(Args.begin(), Args.end());
874
875 if (OperandsMap.count(""))
876 P->error("Cannot have unnamed 'node' values in pattern fragment!");
877
878 // Parse the operands list.
879 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
880 if (OpsList->getNodeType()->getName() != "ops")
881 P->error("Operands list should start with '(ops ... '!");
882
883 // Copy over the arguments.
884 Args.clear();
885 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
886 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
887 static_cast<DefInit*>(OpsList->getArg(j))->
888 getDef()->getName() != "node")
889 P->error("Operands list should all be 'node' values.");
890 if (OpsList->getArgName(j).empty())
891 P->error("Operands list should have names for each operand!");
892 if (!OperandsMap.count(OpsList->getArgName(j)))
893 P->error("'" + OpsList->getArgName(j) +
894 "' does not occur in pattern or was multiply specified!");
895 OperandsMap.erase(OpsList->getArgName(j));
896 Args.push_back(OpsList->getArgName(j));
897 }
898
899 if (!OperandsMap.empty())
900 P->error("Operands list does not contain an entry for operand '" +
901 *OperandsMap.begin() + "'!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000902
903 // If there is a code init for this fragment, emit the predicate code and
904 // keep track of the fact that this fragment uses it.
Chris Lattner24eeeb82005-09-13 21:51:00 +0000905 std::string Code = Fragments[i]->getValueAsCode("Predicate");
906 if (!Code.empty()) {
Chris Lattner37937092005-09-09 01:15:01 +0000907 assert(!P->getOnlyTree()->isLeaf() && "Can't be a leaf!");
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000908 std::string ClassName =
Chris Lattner37937092005-09-09 01:15:01 +0000909 getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000910 const char *C2 = ClassName == "SDNode" ? "N" : "inN";
911
Chris Lattner1048b7a2005-09-13 22:03:37 +0000912 OS << "inline bool Predicate_" << Fragments[i]->getName()
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000913 << "(SDNode *" << C2 << ") {\n";
914 if (ClassName != "SDNode")
915 OS << " " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
Chris Lattner24eeeb82005-09-13 21:51:00 +0000916 OS << Code << "\n}\n";
Chris Lattner37937092005-09-09 01:15:01 +0000917 P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000918 }
Chris Lattner6de8b532005-09-13 21:59:15 +0000919
920 // If there is a node transformation corresponding to this, keep track of
921 // it.
922 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
923 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
Chris Lattnerb0276202005-09-14 22:55:26 +0000924 P->getOnlyTree()->setTransformFn(Transform);
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000925 }
926
927 OS << "\n\n";
928
929 // Now that we've parsed all of the tree fragments, do a closure on them so
930 // that there are not references to PatFrags left inside of them.
931 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
932 E = PatternFragments.end(); I != E; ++I) {
Chris Lattner32707602005-09-08 23:22:48 +0000933 TreePattern *ThePat = I->second;
934 ThePat->InlinePatternFragments();
Chris Lattneree9f0c32005-09-13 21:20:49 +0000935
Chris Lattner32707602005-09-08 23:22:48 +0000936 // Infer as many types as possible. Don't worry about it if we don't infer
937 // all of them, some may depend on the inputs of the pattern.
938 try {
939 ThePat->InferAllTypes();
940 } catch (...) {
941 // If this pattern fragment is not supported by this target (no types can
942 // satisfy its constraints), just ignore it. If the bogus pattern is
943 // actually used by instructions, the type consistency error will be
944 // reported there.
945 }
946
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000947 // If debugging, print out the pattern fragment result.
Chris Lattner32707602005-09-08 23:22:48 +0000948 DEBUG(ThePat->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +0000949 }
950}
951
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000952/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
Chris Lattnerf1311842005-09-14 23:05:13 +0000953/// instruction input. Return true if this is a real use.
954static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
Evan Chengbcecf332005-12-17 01:19:28 +0000955 std::map<std::string, TreePatternNode*> &InstInputs,
956 std::vector<Record*> &InstImpInputs) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000957 // No name -> not interesting.
Chris Lattner7da852f2005-09-14 22:06:36 +0000958 if (Pat->getName().empty()) {
959 if (Pat->isLeaf()) {
960 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
961 if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
962 I->error("Input " + DI->getDef()->getName() + " must be named!");
Evan Chengbcecf332005-12-17 01:19:28 +0000963 else if (DI && DI->getDef()->isSubClassOf("Register")) {
964 InstImpInputs.push_back(DI->getDef());
965 }
Chris Lattner7da852f2005-09-14 22:06:36 +0000966 }
Chris Lattnerf1311842005-09-14 23:05:13 +0000967 return false;
Chris Lattner7da852f2005-09-14 22:06:36 +0000968 }
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000969
970 Record *Rec;
971 if (Pat->isLeaf()) {
972 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
973 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
974 Rec = DI->getDef();
975 } else {
976 assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
977 Rec = Pat->getOperator();
978 }
979
Evan Cheng01f318b2005-12-14 02:21:57 +0000980 // SRCVALUE nodes are ignored.
981 if (Rec->getName() == "srcvalue")
982 return false;
983
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000984 TreePatternNode *&Slot = InstInputs[Pat->getName()];
985 if (!Slot) {
986 Slot = Pat;
987 } else {
988 Record *SlotRec;
989 if (Slot->isLeaf()) {
Chris Lattnerb9f01eb2005-09-16 00:29:46 +0000990 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
Chris Lattnerd8a3bde2005-09-14 20:53:42 +0000991 } else {
992 assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
993 SlotRec = Slot->getOperator();
994 }
995
996 // Ensure that the inputs agree if we've already seen this input.
997 if (Rec != SlotRec)
998 I->error("All $" + Pat->getName() + " inputs must agree with each other");
Chris Lattner3c7e18d2005-10-14 06:12:03 +0000999 if (Slot->getExtType() != Pat->getExtType())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001000 I->error("All $" + Pat->getName() + " inputs must agree with each other");
1001 }
Chris Lattnerf1311842005-09-14 23:05:13 +00001002 return true;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001003}
1004
1005/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1006/// part of "I", the instruction), computing the set of inputs and outputs of
1007/// the pattern. Report errors if we see anything naughty.
1008void DAGISelEmitter::
1009FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1010 std::map<std::string, TreePatternNode*> &InstInputs,
Evan Chengbcecf332005-12-17 01:19:28 +00001011 std::map<std::string, Record*> &InstResults,
1012 std::vector<Record*> &InstImpInputs,
1013 std::vector<Record*> &InstImpResults) {
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001014 if (Pat->isLeaf()) {
Evan Chengbcecf332005-12-17 01:19:28 +00001015 bool isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerf1311842005-09-14 23:05:13 +00001016 if (!isUse && Pat->getTransformFn())
1017 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001018 return;
1019 } else if (Pat->getOperator()->getName() != "set") {
1020 // If this is not a set, verify that the children nodes are not void typed,
1021 // and recurse.
1022 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001023 if (Pat->getChild(i)->getExtType() == MVT::isVoid)
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001024 I->error("Cannot have void nodes inside of patterns!");
Evan Chengbcecf332005-12-17 01:19:28 +00001025 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
1026 InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001027 }
1028
1029 // If this is a non-leaf node with no children, treat it basically as if
1030 // it were a leaf. This handles nodes like (imm).
Chris Lattnerf1311842005-09-14 23:05:13 +00001031 bool isUse = false;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001032 if (Pat->getNumChildren() == 0)
Evan Chengbcecf332005-12-17 01:19:28 +00001033 isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001034
Chris Lattnerf1311842005-09-14 23:05:13 +00001035 if (!isUse && Pat->getTransformFn())
1036 I->error("Cannot specify a transform function for a non-input value!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001037 return;
1038 }
1039
1040 // Otherwise, this is a set, validate and collect instruction results.
1041 if (Pat->getNumChildren() == 0)
1042 I->error("set requires operands!");
1043 else if (Pat->getNumChildren() & 1)
1044 I->error("set requires an even number of operands");
1045
Chris Lattnerf1311842005-09-14 23:05:13 +00001046 if (Pat->getTransformFn())
1047 I->error("Cannot specify a transform function on a set node!");
1048
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001049 // Check the set destinations.
1050 unsigned NumValues = Pat->getNumChildren()/2;
1051 for (unsigned i = 0; i != NumValues; ++i) {
1052 TreePatternNode *Dest = Pat->getChild(i);
1053 if (!Dest->isLeaf())
Evan Cheng86217892005-12-12 19:37:43 +00001054 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001055
1056 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1057 if (!Val)
Evan Cheng86217892005-12-12 19:37:43 +00001058 I->error("set destination should be a register!");
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001059
Evan Chengbcecf332005-12-17 01:19:28 +00001060 if (Val->getDef()->isSubClassOf("RegisterClass")) {
1061 if (Dest->getName().empty())
1062 I->error("set destination must have a name!");
1063 if (InstResults.count(Dest->getName()))
1064 I->error("cannot set '" + Dest->getName() +"' multiple times");
1065 InstResults[Dest->getName()] = Val->getDef();
1066 } else if (Val->getDef()->isSubClassOf("Register")) {
1067 InstImpResults.push_back(Val->getDef());
1068 } else {
1069 I->error("set destination should be a register!");
1070 }
1071
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001072 // Verify and collect info from the computation.
1073 FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
Evan Chengbcecf332005-12-17 01:19:28 +00001074 InstInputs, InstResults, InstImpInputs, InstImpResults);
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001075 }
1076}
1077
Evan Chengdd304dd2005-12-05 23:08:55 +00001078/// NodeHasChain - return true if TreePatternNode has the property
1079/// 'hasChain', meaning it reads a ctrl-flow chain operand and writes
1080/// a chain result.
1081static bool NodeHasChain(TreePatternNode *N, DAGISelEmitter &ISE)
1082{
1083 if (N->isLeaf()) return false;
1084 Record *Operator = N->getOperator();
1085 if (!Operator->isSubClassOf("SDNode")) return false;
1086
1087 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
1088 return NodeInfo.hasProperty(SDNodeInfo::SDNPHasChain);
1089}
1090
1091static bool PatternHasCtrlDep(TreePatternNode *N, DAGISelEmitter &ISE)
1092{
1093 if (NodeHasChain(N, ISE))
1094 return true;
1095 else {
1096 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1097 TreePatternNode *Child = N->getChild(i);
1098 if (PatternHasCtrlDep(Child, ISE))
1099 return true;
1100 }
1101 }
1102
1103 return false;
1104}
1105
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001106
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001107/// ParseInstructions - Parse all of the instructions, inlining and resolving
1108/// any fragments involved. This populates the Instructions list with fully
1109/// resolved instructions.
1110void DAGISelEmitter::ParseInstructions() {
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001111 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1112
1113 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001114 ListInit *LI = 0;
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001115
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001116 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1117 LI = Instrs[i]->getValueAsListInit("Pattern");
1118
1119 // If there is no pattern, only collect minimal information about the
1120 // instruction for its operand list. We have to assume that there is one
1121 // result, as we have no detailed info.
1122 if (!LI || LI->getSize() == 0) {
Nate Begemanddb39542005-12-01 00:06:14 +00001123 std::vector<Record*> Results;
1124 std::vector<Record*> Operands;
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001125
1126 CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001127
Evan Cheng87bddeb2005-12-21 20:20:49 +00001128 // Note: Removed if (InstInfo.OperandList.size() == 0) continue;
1129 // It's possible for some instruction, e.g. RET for X86 that only has an
1130 // implicit flag operand.
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001131 // FIXME: temporary hack...
1132 if (InstInfo.isReturn || InstInfo.isBranch || InstInfo.isCall ||
1133 InstInfo.isStore) {
1134 // These produce no results
Evan Cheng87bddeb2005-12-21 20:20:49 +00001135 for (unsigned j = 0, e = InstInfo.OperandList.size(); j < e; ++j)
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001136 Operands.push_back(InstInfo.OperandList[j].Rec);
1137 } else {
1138 // Assume the first operand is the result.
1139 Results.push_back(InstInfo.OperandList[0].Rec);
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001140
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001141 // The rest are inputs.
Evan Cheng87bddeb2005-12-21 20:20:49 +00001142 for (unsigned j = 1, e = InstInfo.OperandList.size(); j < e; ++j)
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001143 Operands.push_back(InstInfo.OperandList[j].Rec);
1144 }
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 Chengbcecf332005-12-17 01:19:28 +00001150 DAGInstruction(0, Results, Operands,
1151 ImpResults, ImpOperands)));
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001152 continue; // no pattern.
1153 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001154
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001155 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001156 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001157 // Inline pattern fragments into it.
Chris Lattner32707602005-09-08 23:22:48 +00001158 I->InlinePatternFragments();
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001159
Chris Lattner95f6b762005-09-08 23:26:30 +00001160 // Infer as many types as possible. If we cannot infer all of them, we can
1161 // never do anything with this instruction pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001162 if (!I->InferAllTypes())
Chris Lattner32707602005-09-08 23:22:48 +00001163 I->error("Could not infer all types in pattern!");
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001164
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001165 // InstInputs - Keep track of all of the inputs of the instruction, along
1166 // with the record they are declared as.
1167 std::map<std::string, TreePatternNode*> InstInputs;
1168
1169 // InstResults - Keep track of all the virtual registers that are 'set'
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001170 // in the instruction, including what reg class they are.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001171 std::map<std::string, Record*> InstResults;
Evan Chengbcecf332005-12-17 01:19:28 +00001172
1173 std::vector<Record*> InstImpInputs;
1174 std::vector<Record*> InstImpResults;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001175
Chris Lattner1f39e292005-09-14 00:09:24 +00001176 // Verify that the top-level forms in the instruction are of void type, and
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001177 // fill in the InstResults map.
Chris Lattner1f39e292005-09-14 00:09:24 +00001178 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1179 TreePatternNode *Pat = I->getTree(j);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001180 if (Pat->getExtType() != MVT::isVoid)
Chris Lattnerf2a17a72005-09-09 01:11:44 +00001181 I->error("Top-level forms in instruction pattern should have"
1182 " void types");
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001183
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001184 // Find inputs and outputs, and verify the structure of the uses/defs.
Evan Chengbcecf332005-12-17 01:19:28 +00001185 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
1186 InstImpInputs, InstImpResults);
Chris Lattner1f39e292005-09-14 00:09:24 +00001187 }
Chris Lattner5f8cb2a2005-09-14 02:11:12 +00001188
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001189 // Now that we have inputs and outputs of the pattern, inspect the operands
1190 // list for the instruction. This determines the order that operands are
1191 // added to the machine instruction the node corresponds to.
1192 unsigned NumResults = InstResults.size();
Chris Lattner39e8af92005-09-14 18:19:25 +00001193
1194 // Parse the operands list from the (ops) list, validating it.
1195 std::vector<std::string> &Args = I->getArgList();
1196 assert(Args.empty() && "Args list should still be empty here!");
1197 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1198
1199 // Check that all of the results occur first in the list.
Nate Begemanddb39542005-12-01 00:06:14 +00001200 std::vector<Record*> Results;
Chris Lattner39e8af92005-09-14 18:19:25 +00001201 for (unsigned i = 0; i != NumResults; ++i) {
Chris Lattner3a7319d2005-09-14 21:04:12 +00001202 if (i == CGI.OperandList.size())
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001203 I->error("'" + InstResults.begin()->first +
1204 "' set but does not appear in operand list!");
Chris Lattner39e8af92005-09-14 18:19:25 +00001205 const std::string &OpName = CGI.OperandList[i].Name;
Chris Lattner39e8af92005-09-14 18:19:25 +00001206
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001207 // Check that it exists in InstResults.
1208 Record *R = InstResults[OpName];
Chris Lattner39e8af92005-09-14 18:19:25 +00001209 if (R == 0)
1210 I->error("Operand $" + OpName + " should be a set destination: all "
1211 "outputs must occur before inputs in operand list!");
1212
1213 if (CGI.OperandList[i].Rec != R)
1214 I->error("Operand $" + OpName + " class mismatch!");
1215
Chris Lattnerae6d8282005-09-15 21:51:12 +00001216 // Remember the return type.
Nate Begemanddb39542005-12-01 00:06:14 +00001217 Results.push_back(CGI.OperandList[i].Rec);
Chris Lattnerae6d8282005-09-15 21:51:12 +00001218
Chris Lattner39e8af92005-09-14 18:19:25 +00001219 // Okay, this one checks out.
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001220 InstResults.erase(OpName);
1221 }
1222
Chris Lattner0b592252005-09-14 21:59:34 +00001223 // Loop over the inputs next. Make a copy of InstInputs so we can destroy
1224 // the copy while we're checking the inputs.
1225 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
Chris Lattnerb0276202005-09-14 22:55:26 +00001226
1227 std::vector<TreePatternNode*> ResultNodeOperands;
Nate Begemanddb39542005-12-01 00:06:14 +00001228 std::vector<Record*> Operands;
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001229 for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1230 const std::string &OpName = CGI.OperandList[i].Name;
1231 if (OpName.empty())
1232 I->error("Operand #" + utostr(i) + " in operands list has no name!");
1233
Chris Lattner0b592252005-09-14 21:59:34 +00001234 if (!InstInputsCheck.count(OpName))
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001235 I->error("Operand $" + OpName +
1236 " does not appear in the instruction pattern");
Chris Lattner0b592252005-09-14 21:59:34 +00001237 TreePatternNode *InVal = InstInputsCheck[OpName];
Chris Lattnerb0276202005-09-14 22:55:26 +00001238 InstInputsCheck.erase(OpName); // It occurred, remove from map.
Nate Begemanddb39542005-12-01 00:06:14 +00001239
1240 if (InVal->isLeaf() &&
1241 dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1242 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
Evan Cheng0fc71982005-12-08 02:00:36 +00001243 if (CGI.OperandList[i].Rec != InRec &&
1244 !InRec->isSubClassOf("ComplexPattern"))
Nate Begemanddb39542005-12-01 00:06:14 +00001245 I->error("Operand $" + OpName +
Evan Cheng0fc71982005-12-08 02:00:36 +00001246 "'s register class disagrees between the operand and pattern");
Nate Begemanddb39542005-12-01 00:06:14 +00001247 }
1248 Operands.push_back(CGI.OperandList[i].Rec);
Chris Lattnerb0276202005-09-14 22:55:26 +00001249
Chris Lattner2175c182005-09-14 23:01:59 +00001250 // Construct the result for the dest-pattern operand list.
1251 TreePatternNode *OpNode = InVal->clone();
1252
1253 // No predicate is useful on the result.
1254 OpNode->setPredicateFn("");
1255
1256 // Promote the xform function to be an explicit node if set.
1257 if (Record *Xform = OpNode->getTransformFn()) {
1258 OpNode->setTransformFn(0);
1259 std::vector<TreePatternNode*> Children;
1260 Children.push_back(OpNode);
1261 OpNode = new TreePatternNode(Xform, Children);
1262 }
1263
1264 ResultNodeOperands.push_back(OpNode);
Chris Lattner39e8af92005-09-14 18:19:25 +00001265 }
1266
Chris Lattner0b592252005-09-14 21:59:34 +00001267 if (!InstInputsCheck.empty())
1268 I->error("Input operand $" + InstInputsCheck.begin()->first +
1269 " occurs in pattern but not in operands list!");
Chris Lattnerb0276202005-09-14 22:55:26 +00001270
1271 TreePatternNode *ResultPattern =
1272 new TreePatternNode(I->getRecord(), ResultNodeOperands);
Chris Lattnera28aec12005-09-15 22:23:50 +00001273
1274 // Create and insert the instruction.
Evan Chengbcecf332005-12-17 01:19:28 +00001275 DAGInstruction TheInst(I, Results, Operands, InstImpResults, InstImpInputs);
Chris Lattnera28aec12005-09-15 22:23:50 +00001276 Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1277
1278 // Use a temporary tree pattern to infer all types and make sure that the
1279 // constructed result is correct. This depends on the instruction already
1280 // being inserted into the Instructions map.
Chris Lattneredbd8712005-10-21 01:19:59 +00001281 TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
Chris Lattnera28aec12005-09-15 22:23:50 +00001282 Temp.InferAllTypes();
1283
1284 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1285 TheInsertedInst.setResultPattern(Temp.getOnlyTree());
Chris Lattnerb0276202005-09-14 22:55:26 +00001286
Chris Lattner32707602005-09-08 23:22:48 +00001287 DEBUG(I->dump());
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001288 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001289
Chris Lattnerd8a3bde2005-09-14 20:53:42 +00001290 // If we can, convert the instructions to be patterns that are matched!
Chris Lattnerae5b3502005-09-15 21:57:35 +00001291 for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1292 E = Instructions.end(); II != E; ++II) {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001293 DAGInstruction &TheInst = II->second;
1294 TreePattern *I = TheInst.getPattern();
Chris Lattner0c0cfa72005-10-19 01:27:22 +00001295 if (I == 0) continue; // No pattern.
Evan Chengdd304dd2005-12-05 23:08:55 +00001296
Chris Lattner1f39e292005-09-14 00:09:24 +00001297 if (I->getNumTrees() != 1) {
1298 std::cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1299 continue;
1300 }
1301 TreePatternNode *Pattern = I->getTree(0);
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001302 TreePatternNode *SrcPattern;
Evan Chengbcecf332005-12-17 01:19:28 +00001303 if (Pattern->getOperator()->getName() == "set") {
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001304 if (Pattern->getNumChildren() != 2)
1305 continue; // Not a set of a single value (not handled so far)
1306
1307 SrcPattern = Pattern->getChild(1)->clone();
Evan Chengbcecf332005-12-17 01:19:28 +00001308 } else{
1309 // Not a set (store or something?)
1310 SrcPattern = Pattern;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001311 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001312
1313 std::string Reason;
1314 if (!SrcPattern->canPatternMatch(Reason, *this))
1315 I->error("Instruction can never match: " + Reason);
1316
Evan Cheng58e84a62005-12-14 22:02:59 +00001317 Record *Instr = II->first;
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001318 TreePatternNode *DstPattern = TheInst.getResultPattern();
Evan Cheng58e84a62005-12-14 22:02:59 +00001319 PatternsToMatch.
1320 push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
1321 SrcPattern, DstPattern));
Evan Chengdd304dd2005-12-05 23:08:55 +00001322
1323 if (PatternHasCtrlDep(Pattern, *this)) {
Evan Chengdd304dd2005-12-05 23:08:55 +00001324 CodeGenInstruction &InstInfo = Target.getInstruction(Instr->getName());
1325 InstInfo.hasCtrlDep = true;
1326 }
Chris Lattner1f39e292005-09-14 00:09:24 +00001327 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00001328}
1329
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001330void DAGISelEmitter::ParsePatterns() {
Chris Lattnerabbb6052005-09-15 21:42:00 +00001331 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001332
Chris Lattnerabbb6052005-09-15 21:42:00 +00001333 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
Chris Lattnera28aec12005-09-15 22:23:50 +00001334 DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
Chris Lattneredbd8712005-10-21 01:19:59 +00001335 TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001336
Chris Lattnerabbb6052005-09-15 21:42:00 +00001337 // Inline pattern fragments into it.
1338 Pattern->InlinePatternFragments();
1339
1340 // Infer as many types as possible. If we cannot infer all of them, we can
1341 // never do anything with this pattern: report it to the user.
1342 if (!Pattern->InferAllTypes())
1343 Pattern->error("Could not infer all types in pattern!");
Chris Lattner09c03392005-11-17 17:43:52 +00001344
1345 // Validate that the input pattern is correct.
1346 {
1347 std::map<std::string, TreePatternNode*> InstInputs;
1348 std::map<std::string, Record*> InstResults;
Evan Chengbcecf332005-12-17 01:19:28 +00001349 std::vector<Record*> InstImpInputs;
1350 std::vector<Record*> InstImpResults;
Chris Lattner09c03392005-11-17 17:43:52 +00001351 FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
Evan Chengbcecf332005-12-17 01:19:28 +00001352 InstInputs, InstResults,
1353 InstImpInputs, InstImpResults);
Chris Lattner09c03392005-11-17 17:43:52 +00001354 }
Chris Lattnerabbb6052005-09-15 21:42:00 +00001355
1356 ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1357 if (LI->getSize() == 0) continue; // no pattern.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001358
1359 // Parse the instruction.
Chris Lattneredbd8712005-10-21 01:19:59 +00001360 TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
Chris Lattnerabbb6052005-09-15 21:42:00 +00001361
1362 // Inline pattern fragments into it.
1363 Result->InlinePatternFragments();
1364
1365 // Infer as many types as possible. If we cannot infer all of them, we can
1366 // never do anything with this pattern: report it to the user.
Chris Lattnerabbb6052005-09-15 21:42:00 +00001367 if (!Result->InferAllTypes())
Chris Lattnerae5b3502005-09-15 21:57:35 +00001368 Result->error("Could not infer all types in pattern result!");
Chris Lattnerabbb6052005-09-15 21:42:00 +00001369
1370 if (Result->getNumTrees() != 1)
1371 Result->error("Cannot handle instructions producing instructions "
1372 "with temporaries yet!");
Chris Lattnere97603f2005-09-28 19:27:25 +00001373
1374 std::string Reason;
1375 if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1376 Pattern->error("Pattern can never match: " + Reason);
1377
Evan Cheng58e84a62005-12-14 22:02:59 +00001378 PatternsToMatch.
1379 push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
1380 Pattern->getOnlyTree(),
1381 Result->getOnlyTree()));
Chris Lattnerabbb6052005-09-15 21:42:00 +00001382 }
Chris Lattnerb39e4be2005-09-15 02:38:02 +00001383}
1384
Chris Lattnere46e17b2005-09-29 19:28:10 +00001385/// CombineChildVariants - Given a bunch of permutations of each child of the
1386/// 'operator' node, put them together in all possible ways.
1387static void CombineChildVariants(TreePatternNode *Orig,
Chris Lattneraf302912005-09-29 22:36:54 +00001388 const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
Chris Lattnere46e17b2005-09-29 19:28:10 +00001389 std::vector<TreePatternNode*> &OutVariants,
1390 DAGISelEmitter &ISE) {
Chris Lattneraf302912005-09-29 22:36:54 +00001391 // Make sure that each operand has at least one variant to choose from.
1392 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1393 if (ChildVariants[i].empty())
1394 return;
1395
Chris Lattnere46e17b2005-09-29 19:28:10 +00001396 // The end result is an all-pairs construction of the resultant pattern.
1397 std::vector<unsigned> Idxs;
1398 Idxs.resize(ChildVariants.size());
1399 bool NotDone = true;
1400 while (NotDone) {
1401 // Create the variant and add it to the output list.
1402 std::vector<TreePatternNode*> NewChildren;
1403 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1404 NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1405 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1406
1407 // Copy over properties.
1408 R->setName(Orig->getName());
1409 R->setPredicateFn(Orig->getPredicateFn());
1410 R->setTransformFn(Orig->getTransformFn());
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001411 R->setType(Orig->getExtType());
Chris Lattnere46e17b2005-09-29 19:28:10 +00001412
1413 // If this pattern cannot every match, do not include it as a variant.
1414 std::string ErrString;
1415 if (!R->canPatternMatch(ErrString, ISE)) {
1416 delete R;
1417 } else {
1418 bool AlreadyExists = false;
1419
1420 // Scan to see if this pattern has already been emitted. We can get
1421 // duplication due to things like commuting:
1422 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1423 // which are the same pattern. Ignore the dups.
1424 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1425 if (R->isIsomorphicTo(OutVariants[i])) {
1426 AlreadyExists = true;
1427 break;
1428 }
1429
1430 if (AlreadyExists)
1431 delete R;
1432 else
1433 OutVariants.push_back(R);
1434 }
1435
1436 // Increment indices to the next permutation.
1437 NotDone = false;
1438 // Look for something we can increment without causing a wrap-around.
1439 for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1440 if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1441 NotDone = true; // Found something to increment.
1442 break;
1443 }
1444 Idxs[IdxsIdx] = 0;
1445 }
1446 }
1447}
1448
Chris Lattneraf302912005-09-29 22:36:54 +00001449/// CombineChildVariants - A helper function for binary operators.
1450///
1451static void CombineChildVariants(TreePatternNode *Orig,
1452 const std::vector<TreePatternNode*> &LHS,
1453 const std::vector<TreePatternNode*> &RHS,
1454 std::vector<TreePatternNode*> &OutVariants,
1455 DAGISelEmitter &ISE) {
1456 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1457 ChildVariants.push_back(LHS);
1458 ChildVariants.push_back(RHS);
1459 CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1460}
1461
1462
1463static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1464 std::vector<TreePatternNode *> &Children) {
1465 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1466 Record *Operator = N->getOperator();
1467
1468 // Only permit raw nodes.
1469 if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1470 N->getTransformFn()) {
1471 Children.push_back(N);
1472 return;
1473 }
1474
1475 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1476 Children.push_back(N->getChild(0));
1477 else
1478 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1479
1480 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1481 Children.push_back(N->getChild(1));
1482 else
1483 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1484}
1485
Chris Lattnere46e17b2005-09-29 19:28:10 +00001486/// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1487/// the (potentially recursive) pattern by using algebraic laws.
1488///
1489static void GenerateVariantsOf(TreePatternNode *N,
1490 std::vector<TreePatternNode*> &OutVariants,
1491 DAGISelEmitter &ISE) {
1492 // We cannot permute leaves.
1493 if (N->isLeaf()) {
1494 OutVariants.push_back(N);
1495 return;
1496 }
1497
1498 // Look up interesting info about the node.
1499 const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
1500
1501 // If this node is associative, reassociate.
Chris Lattneraf302912005-09-29 22:36:54 +00001502 if (NodeInfo.hasProperty(SDNodeInfo::SDNPAssociative)) {
1503 // Reassociate by pulling together all of the linked operators
1504 std::vector<TreePatternNode*> MaximalChildren;
1505 GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1506
1507 // Only handle child sizes of 3. Otherwise we'll end up trying too many
1508 // permutations.
1509 if (MaximalChildren.size() == 3) {
1510 // Find the variants of all of our maximal children.
1511 std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1512 GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1513 GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1514 GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1515
1516 // There are only two ways we can permute the tree:
1517 // (A op B) op C and A op (B op C)
1518 // Within these forms, we can also permute A/B/C.
1519
1520 // Generate legal pair permutations of A/B/C.
1521 std::vector<TreePatternNode*> ABVariants;
1522 std::vector<TreePatternNode*> BAVariants;
1523 std::vector<TreePatternNode*> ACVariants;
1524 std::vector<TreePatternNode*> CAVariants;
1525 std::vector<TreePatternNode*> BCVariants;
1526 std::vector<TreePatternNode*> CBVariants;
1527 CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1528 CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1529 CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1530 CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1531 CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1532 CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1533
1534 // Combine those into the result: (x op x) op x
1535 CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1536 CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1537 CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1538 CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1539 CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1540 CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1541
1542 // Combine those into the result: x op (x op x)
1543 CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1544 CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1545 CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1546 CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1547 CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1548 CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1549 return;
1550 }
1551 }
Chris Lattnere46e17b2005-09-29 19:28:10 +00001552
1553 // Compute permutations of all children.
1554 std::vector<std::vector<TreePatternNode*> > ChildVariants;
1555 ChildVariants.resize(N->getNumChildren());
1556 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1557 GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1558
1559 // Build all permutations based on how the children were formed.
1560 CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1561
1562 // If this node is commutative, consider the commuted order.
1563 if (NodeInfo.hasProperty(SDNodeInfo::SDNPCommutative)) {
1564 assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
Chris Lattneraf302912005-09-29 22:36:54 +00001565 // Consider the commuted order.
1566 CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1567 OutVariants, ISE);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001568 }
1569}
1570
1571
Chris Lattnere97603f2005-09-28 19:27:25 +00001572// GenerateVariants - Generate variants. For example, commutative patterns can
1573// match multiple ways. Add them to PatternsToMatch as well.
1574void DAGISelEmitter::GenerateVariants() {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001575
1576 DEBUG(std::cerr << "Generating instruction variants.\n");
1577
1578 // Loop over all of the patterns we've collected, checking to see if we can
1579 // generate variants of the instruction, through the exploitation of
1580 // identities. This permits the target to provide agressive matching without
1581 // the .td file having to contain tons of variants of instructions.
1582 //
1583 // Note that this loop adds new patterns to the PatternsToMatch list, but we
1584 // intentionally do not reconsider these. Any variants of added patterns have
1585 // already been added.
1586 //
1587 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1588 std::vector<TreePatternNode*> Variants;
Evan Cheng58e84a62005-12-14 22:02:59 +00001589 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this);
Chris Lattnere46e17b2005-09-29 19:28:10 +00001590
1591 assert(!Variants.empty() && "Must create at least original variant!");
Chris Lattnere46e17b2005-09-29 19:28:10 +00001592 Variants.erase(Variants.begin()); // Remove the original pattern.
1593
1594 if (Variants.empty()) // No variants for this pattern.
1595 continue;
1596
1597 DEBUG(std::cerr << "FOUND VARIANTS OF: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00001598 PatternsToMatch[i].getSrcPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00001599 std::cerr << "\n");
1600
1601 for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1602 TreePatternNode *Variant = Variants[v];
1603
1604 DEBUG(std::cerr << " VAR#" << v << ": ";
1605 Variant->dump();
1606 std::cerr << "\n");
1607
1608 // Scan to see if an instruction or explicit pattern already matches this.
1609 bool AlreadyExists = false;
1610 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1611 // Check to see if this variant already exists.
Evan Cheng58e84a62005-12-14 22:02:59 +00001612 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern())) {
Chris Lattnere46e17b2005-09-29 19:28:10 +00001613 DEBUG(std::cerr << " *** ALREADY EXISTS, ignoring variant.\n");
1614 AlreadyExists = true;
1615 break;
1616 }
1617 }
1618 // If we already have it, ignore the variant.
1619 if (AlreadyExists) continue;
1620
1621 // Otherwise, add it to the list of patterns we have.
Evan Cheng58e84a62005-12-14 22:02:59 +00001622 PatternsToMatch.
1623 push_back(PatternToMatch(PatternsToMatch[i].getPredicates(),
1624 Variant, PatternsToMatch[i].getDstPattern()));
Chris Lattnere46e17b2005-09-29 19:28:10 +00001625 }
1626
1627 DEBUG(std::cerr << "\n");
1628 }
Chris Lattnere97603f2005-09-28 19:27:25 +00001629}
1630
Chris Lattner7cf2fe62005-09-28 20:58:06 +00001631
Evan Cheng0fc71982005-12-08 02:00:36 +00001632// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
1633// ComplexPattern.
1634static bool NodeIsComplexPattern(TreePatternNode *N)
1635{
1636 return (N->isLeaf() &&
1637 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1638 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1639 isSubClassOf("ComplexPattern"));
1640}
1641
1642// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
1643// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
1644static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
1645 DAGISelEmitter &ISE)
1646{
1647 if (N->isLeaf() &&
1648 dynamic_cast<DefInit*>(N->getLeafValue()) &&
1649 static_cast<DefInit*>(N->getLeafValue())->getDef()->
1650 isSubClassOf("ComplexPattern")) {
1651 return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
1652 ->getDef());
1653 }
1654 return NULL;
1655}
1656
Chris Lattner05814af2005-09-28 17:57:56 +00001657/// getPatternSize - Return the 'size' of this pattern. We want to match large
1658/// patterns before small ones. This is used to determine the size of a
1659/// pattern.
Evan Cheng0fc71982005-12-08 02:00:36 +00001660static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001661 assert(isExtIntegerVT(P->getExtType()) ||
Evan Cheng1c3d19e2005-12-04 08:18:16 +00001662 isExtFloatingPointVT(P->getExtType()) ||
Evan Chengbcecf332005-12-17 01:19:28 +00001663 P->getExtType() == MVT::isVoid ||
1664 P->getExtType() == MVT::Flag && "Not a valid pattern node to size!");
Chris Lattner05814af2005-09-28 17:57:56 +00001665 unsigned Size = 1; // The node itself.
Evan Cheng0fc71982005-12-08 02:00:36 +00001666
1667 // FIXME: This is a hack to statically increase the priority of patterns
1668 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
1669 // Later we can allow complexity / cost for each pattern to be (optionally)
1670 // specified. To get best possible pattern match we'll need to dynamically
1671 // calculate the complexity of all patterns a dag can potentially map to.
1672 const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
1673 if (AM)
1674 Size += AM->getNumOperands();
1675
Chris Lattner05814af2005-09-28 17:57:56 +00001676 // Count children in the count if they are also nodes.
1677 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
1678 TreePatternNode *Child = P->getChild(i);
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001679 if (!Child->isLeaf() && Child->getExtType() != MVT::Other)
Evan Cheng0fc71982005-12-08 02:00:36 +00001680 Size += getPatternSize(Child, ISE);
1681 else if (Child->isLeaf()) {
1682 if (dynamic_cast<IntInit*>(Child->getLeafValue()))
1683 ++Size; // Matches a ConstantSDNode.
1684 else if (NodeIsComplexPattern(Child))
1685 Size += getPatternSize(Child, ISE);
Chris Lattner2f041d42005-10-19 04:41:05 +00001686 }
Chris Lattner05814af2005-09-28 17:57:56 +00001687 }
1688
1689 return Size;
1690}
1691
1692/// getResultPatternCost - Compute the number of instructions for this pattern.
1693/// This is a temporary hack. We should really include the instruction
1694/// latencies in this calculation.
1695static unsigned getResultPatternCost(TreePatternNode *P) {
1696 if (P->isLeaf()) return 0;
1697
1698 unsigned Cost = P->getOperator()->isSubClassOf("Instruction");
1699 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
1700 Cost += getResultPatternCost(P->getChild(i));
1701 return Cost;
1702}
1703
1704// PatternSortingPredicate - return true if we prefer to match LHS before RHS.
1705// In particular, we want to match maximal patterns first and lowest cost within
1706// a particular complexity first.
1707struct PatternSortingPredicate {
Evan Cheng0fc71982005-12-08 02:00:36 +00001708 PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
1709 DAGISelEmitter &ISE;
1710
Evan Cheng58e84a62005-12-14 22:02:59 +00001711 bool operator()(PatternToMatch *LHS,
1712 PatternToMatch *RHS) {
1713 unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), ISE);
1714 unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), ISE);
Chris Lattner05814af2005-09-28 17:57:56 +00001715 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost
1716 if (LHSSize < RHSSize) return false;
1717
1718 // If the patterns have equal complexity, compare generated instruction cost
Evan Cheng58e84a62005-12-14 22:02:59 +00001719 return getResultPatternCost(LHS->getDstPattern()) <
1720 getResultPatternCost(RHS->getDstPattern());
Chris Lattner05814af2005-09-28 17:57:56 +00001721 }
1722};
1723
Nate Begeman6510b222005-12-01 04:51:06 +00001724/// getRegisterValueType - Look up and return the first ValueType of specified
1725/// RegisterClass record
Evan Cheng66a48bb2005-12-01 00:18:45 +00001726static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
Chris Lattner22faeab2005-12-05 02:36:37 +00001727 if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
1728 return RC->getValueTypeNum(0);
Evan Cheng66a48bb2005-12-01 00:18:45 +00001729 return MVT::Other;
1730}
1731
Chris Lattner72fe91c2005-09-24 00:40:24 +00001732
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001733/// RemoveAllTypes - A quick recursive walk over a pattern which removes all
1734/// type information from it.
1735static void RemoveAllTypes(TreePatternNode *N) {
Chris Lattner3c7e18d2005-10-14 06:12:03 +00001736 N->setType(MVT::isUnknown);
Chris Lattner0ee7cff2005-10-14 04:11:13 +00001737 if (!N->isLeaf())
1738 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1739 RemoveAllTypes(N->getChild(i));
1740}
Chris Lattner72fe91c2005-09-24 00:40:24 +00001741
Chris Lattner0614b622005-11-02 06:49:14 +00001742Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
1743 Record *N = Records.getDef(Name);
1744 assert(N && N->isSubClassOf("SDNode") && "Bad argument");
1745 return N;
1746}
1747
Evan Chengb915f312005-12-09 22:45:35 +00001748class PatternCodeEmitter {
1749private:
1750 DAGISelEmitter &ISE;
1751
Evan Cheng58e84a62005-12-14 22:02:59 +00001752 // Predicates.
1753 ListInit *Predicates;
1754 // Instruction selector pattern.
1755 TreePatternNode *Pattern;
1756 // Matched instruction.
1757 TreePatternNode *Instruction;
Evan Chengb915f312005-12-09 22:45:35 +00001758 unsigned PatternNo;
1759 std::ostream &OS;
1760 // Node to name mapping
1761 std::map<std::string,std::string> VariableMap;
Evan Chengb915f312005-12-09 22:45:35 +00001762 // Names of all the folded nodes which produce chains.
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001763 std::vector<std::pair<std::string, unsigned> > FoldedChains;
Evan Cheng86217892005-12-12 19:37:43 +00001764 bool FoundChain;
Evan Chengb915f312005-12-09 22:45:35 +00001765 unsigned TmpNo;
1766
1767public:
Evan Cheng58e84a62005-12-14 22:02:59 +00001768 PatternCodeEmitter(DAGISelEmitter &ise, ListInit *preds,
1769 TreePatternNode *pattern, TreePatternNode *instr,
Evan Chengb915f312005-12-09 22:45:35 +00001770 unsigned PatNum, std::ostream &os) :
Evan Cheng58e84a62005-12-14 22:02:59 +00001771 ISE(ise), Predicates(preds), Pattern(pattern), Instruction(instr),
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001772 PatternNo(PatNum), OS(os), FoundChain(false), TmpNo(0) {}
Evan Chengb915f312005-12-09 22:45:35 +00001773
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001774 /// isPredeclaredSDOperand - Return true if this is one of the predeclared
1775 /// SDOperands.
1776 bool isPredeclaredSDOperand(const std::string &OpName) const {
1777 return OpName == "N0" || OpName == "N1" || OpName == "N2" ||
1778 OpName == "N00" || OpName == "N01" ||
1779 OpName == "N10" || OpName == "N11" ||
1780 OpName == "Tmp0" || OpName == "Tmp1" ||
1781 OpName == "Tmp2" || OpName == "Tmp3";
1782 }
1783
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001784 /// DeclareSDOperand - Emit "SDOperand <opname>" or "<opname>". This works
1785 /// around an ugly GCC bug where SelectCode is using too much stack space
1786 void DeclareSDOperand(const std::string &OpName) const {
1787 // If it's one of the common cases declared at the top of SelectCode, just
1788 // use the existing declaration.
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001789 if (isPredeclaredSDOperand(OpName))
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001790 OS << OpName;
1791 else
1792 OS << "SDOperand " << OpName;
1793 }
1794
Evan Chengb915f312005-12-09 22:45:35 +00001795 /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
1796 /// if the match fails. At this point, we already know that the opcode for N
1797 /// matches, and the SDNode for the result has the RootName specified name.
1798 void EmitMatchCode(TreePatternNode *N, const std::string &RootName,
1799 bool isRoot = false) {
Evan Cheng58e84a62005-12-14 22:02:59 +00001800
1801 // Emit instruction predicates. Each predicate is just a string for now.
1802 if (isRoot) {
1803 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
1804 if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
1805 Record *Def = Pred->getDef();
1806 if (Def->isSubClassOf("Predicate")) {
1807 if (i == 0)
1808 OS << " if (";
1809 else
1810 OS << " && ";
Evan Cheng5fb5e102005-12-20 20:08:01 +00001811 OS << "!(" << Def->getValueAsString("CondString") << ")";
Evan Cheng58e84a62005-12-14 22:02:59 +00001812 if (i == e-1)
1813 OS << ") goto P" << PatternNo << "Fail;\n";
1814 } else {
1815 Def->dump();
1816 assert(0 && "Unknown predicate type!");
1817 }
1818 }
1819 }
1820 }
1821
Evan Chengb915f312005-12-09 22:45:35 +00001822 if (N->isLeaf()) {
1823 if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
1824 OS << " if (cast<ConstantSDNode>(" << RootName
1825 << ")->getSignExtended() != " << II->getValue() << ")\n"
1826 << " goto P" << PatternNo << "Fail;\n";
1827 return;
1828 } else if (!NodeIsComplexPattern(N)) {
1829 assert(0 && "Cannot match this as a leaf value!");
1830 abort();
1831 }
1832 }
1833
1834 // If this node has a name associated with it, capture it in VariableMap. If
1835 // we already saw this in the pattern, emit code to verify dagness.
1836 if (!N->getName().empty()) {
1837 std::string &VarMapEntry = VariableMap[N->getName()];
1838 if (VarMapEntry.empty()) {
1839 VarMapEntry = RootName;
1840 } else {
1841 // If we get here, this is a second reference to a specific name. Since
1842 // we already have checked that the first reference is valid, we don't
1843 // have to recursively match it, just check that it's the same as the
1844 // previously named thing.
1845 OS << " if (" << VarMapEntry << " != " << RootName
1846 << ") goto P" << PatternNo << "Fail;\n";
1847 return;
1848 }
1849 }
1850
1851
1852 // Emit code to load the child nodes and match their contents recursively.
1853 unsigned OpNo = 0;
Evan Cheng86217892005-12-12 19:37:43 +00001854 bool HasChain = NodeHasChain(N, ISE);
1855 if (HasChain) {
Evan Chengb915f312005-12-09 22:45:35 +00001856 OpNo = 1;
1857 if (!isRoot) {
Evan Cheng1129e872005-12-10 00:09:17 +00001858 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(N->getOperator());
Evan Chengb915f312005-12-09 22:45:35 +00001859 OS << " if (!" << RootName << ".hasOneUse()) goto P"
1860 << PatternNo << "Fail; // Multiple uses of actual result?\n";
1861 OS << " if (CodeGenMap.count(" << RootName
Evan Cheng1129e872005-12-10 00:09:17 +00001862 << ".getValue(" << CInfo.getNumResults() << "))) goto P"
Evan Chengb915f312005-12-09 22:45:35 +00001863 << PatternNo << "Fail; // Already selected for a chain use?\n";
1864 }
Evan Chengb915f312005-12-09 22:45:35 +00001865 }
1866
1867 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001868 OS << " ";
1869 DeclareSDOperand(RootName+utostr(OpNo));
1870 OS << " = " << RootName << ".getOperand(" << OpNo << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00001871 TreePatternNode *Child = N->getChild(i);
1872
1873 if (!Child->isLeaf()) {
1874 // If it's not a leaf, recursively match.
1875 const SDNodeInfo &CInfo = ISE.getSDNodeInfo(Child->getOperator());
1876 OS << " if (" << RootName << OpNo << ".getOpcode() != "
1877 << CInfo.getEnumName() << ") goto P" << PatternNo << "Fail;\n";
1878 EmitMatchCode(Child, RootName + utostr(OpNo));
Evan Cheng1b80f4d2005-12-19 07:18:51 +00001879 if (NodeHasChain(Child, ISE)) {
1880 FoldedChains.push_back(std::make_pair(RootName + utostr(OpNo),
1881 CInfo.getNumResults()));
1882 }
Evan Chengb915f312005-12-09 22:45:35 +00001883 } else {
1884 // If this child has a name associated with it, capture it in VarMap. If
1885 // we already saw this in the pattern, emit code to verify dagness.
1886 if (!Child->getName().empty()) {
1887 std::string &VarMapEntry = VariableMap[Child->getName()];
1888 if (VarMapEntry.empty()) {
1889 VarMapEntry = RootName + utostr(OpNo);
1890 } else {
1891 // If we get here, this is a second reference to a specific name. Since
1892 // we already have checked that the first reference is valid, we don't
1893 // have to recursively match it, just check that it's the same as the
1894 // previously named thing.
1895 OS << " if (" << VarMapEntry << " != " << RootName << OpNo
1896 << ") goto P" << PatternNo << "Fail;\n";
1897 continue;
1898 }
1899 }
1900
1901 // Handle leaves of various types.
1902 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
1903 Record *LeafRec = DI->getDef();
1904 if (LeafRec->isSubClassOf("RegisterClass")) {
1905 // Handle register references. Nothing to do here.
1906 } else if (LeafRec->isSubClassOf("Register")) {
Evan Chengb915f312005-12-09 22:45:35 +00001907 } else if (LeafRec->isSubClassOf("ComplexPattern")) {
1908 // Handle complex pattern. Nothing to do here.
Evan Cheng01f318b2005-12-14 02:21:57 +00001909 } else if (LeafRec->getName() == "srcvalue") {
1910 // Place holder for SRCVALUE nodes. Nothing to do here.
Evan Chengb915f312005-12-09 22:45:35 +00001911 } else if (LeafRec->isSubClassOf("ValueType")) {
1912 // Make sure this is the specified value type.
1913 OS << " if (cast<VTSDNode>(" << RootName << OpNo << ")->getVT() != "
1914 << "MVT::" << LeafRec->getName() << ") goto P" << PatternNo
1915 << "Fail;\n";
1916 } else if (LeafRec->isSubClassOf("CondCode")) {
1917 // Make sure this is the specified cond code.
1918 OS << " if (cast<CondCodeSDNode>(" << RootName << OpNo
1919 << ")->get() != " << "ISD::" << LeafRec->getName()
1920 << ") goto P" << PatternNo << "Fail;\n";
1921 } else {
1922 Child->dump();
1923 assert(0 && "Unknown leaf type!");
1924 }
1925 } else if (IntInit *II = dynamic_cast<IntInit*>(Child->getLeafValue())) {
1926 OS << " if (!isa<ConstantSDNode>(" << RootName << OpNo << ") ||\n"
1927 << " cast<ConstantSDNode>(" << RootName << OpNo
1928 << ")->getSignExtended() != " << II->getValue() << ")\n"
1929 << " goto P" << PatternNo << "Fail;\n";
1930 } else {
1931 Child->dump();
1932 assert(0 && "Unknown leaf type!");
1933 }
1934 }
1935 }
1936
Evan Cheng86217892005-12-12 19:37:43 +00001937 if (HasChain) {
1938 if (!FoundChain) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001939 OS << " Chain = " << RootName << ".getOperand(0);\n";
Evan Cheng86217892005-12-12 19:37:43 +00001940 FoundChain = true;
1941 }
1942 }
1943
Evan Chengb915f312005-12-09 22:45:35 +00001944 // If there is a node predicate for this, emit the call.
1945 if (!N->getPredicateFn().empty())
1946 OS << " if (!" << N->getPredicateFn() << "(" << RootName
1947 << ".Val)) goto P" << PatternNo << "Fail;\n";
1948 }
1949
1950 /// EmitResultCode - Emit the action for a pattern. Now that it has matched
1951 /// we actually have to build a DAG!
1952 std::pair<unsigned, unsigned>
1953 EmitResultCode(TreePatternNode *N, bool isRoot = false) {
1954 // This is something selected from the pattern we matched.
1955 if (!N->getName().empty()) {
1956 assert(!isRoot && "Root of pattern cannot be a leaf!");
1957 std::string &Val = VariableMap[N->getName()];
1958 assert(!Val.empty() &&
1959 "Variable referenced but not defined and not caught earlier!");
1960 if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
1961 // Already selected this operand, just return the tmpval.
1962 return std::make_pair(1, atoi(Val.c_str()+3));
1963 }
1964
1965 const ComplexPattern *CP;
1966 unsigned ResNo = TmpNo++;
1967 unsigned NumRes = 1;
1968 if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
1969 switch (N->getType()) {
1970 default: assert(0 && "Unknown type for constant node!");
1971 case MVT::i1: OS << " bool Tmp"; break;
1972 case MVT::i8: OS << " unsigned char Tmp"; break;
1973 case MVT::i16: OS << " unsigned short Tmp"; break;
1974 case MVT::i32: OS << " unsigned Tmp"; break;
1975 case MVT::i64: OS << " uint64_t Tmp"; break;
1976 }
1977 OS << ResNo << "C = cast<ConstantSDNode>(" << Val << ")->getValue();\n";
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001978 OS << " ";
1979 DeclareSDOperand("Tmp"+utostr(ResNo));
1980 OS << " = CurDAG->getTargetConstant(Tmp"
Evan Chengb915f312005-12-09 22:45:35 +00001981 << ResNo << "C, MVT::" << getEnumName(N->getType()) << ");\n";
1982 } else if (!N->isLeaf() && N->getOperator()->getName() == "tglobaladdr") {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001983 OS << " ";
1984 DeclareSDOperand("Tmp"+utostr(ResNo));
1985 OS << " = " << Val << ";\n";
Nate Begeman28a6b022005-12-10 02:36:00 +00001986 } else if (!N->isLeaf() && N->getOperator()->getName() == "tconstpool") {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001987 OS << " ";
1988 DeclareSDOperand("Tmp"+utostr(ResNo));
1989 OS << " = " << Val << ";\n";
Evan Chengb915f312005-12-09 22:45:35 +00001990 } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
1991 std::string Fn = CP->getSelectFunc();
1992 NumRes = CP->getNumOperands();
Chris Lattner2f0f9a62005-12-20 19:41:03 +00001993 for (unsigned i = 0; i != NumRes; ++i) {
Chris Lattner4e6a1d22005-12-21 05:31:05 +00001994 if (!isPredeclaredSDOperand("Tmp" + utostr(i+ResNo))) {
1995 OS << " ";
1996 DeclareSDOperand("Tmp" + utostr(i+ResNo));
1997 OS << ";\n";
1998 }
Evan Chengb915f312005-12-09 22:45:35 +00001999 }
Evan Chengb915f312005-12-09 22:45:35 +00002000 OS << " if (!" << Fn << "(" << Val;
2001 for (unsigned i = 0; i < NumRes; i++)
Evan Chengbcecf332005-12-17 01:19:28 +00002002 OS << ", Tmp" << i + ResNo;
Evan Chengb915f312005-12-09 22:45:35 +00002003 OS << ")) goto P" << PatternNo << "Fail;\n";
2004 TmpNo = ResNo + NumRes;
2005 } else {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002006 OS << " ";
2007 DeclareSDOperand("Tmp"+utostr(ResNo));
2008 OS << " = Select(" << Val << ");\n";
Evan Chengb915f312005-12-09 22:45:35 +00002009 }
2010 // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2011 // value if used multiple times by this pattern result.
2012 Val = "Tmp"+utostr(ResNo);
2013 return std::make_pair(NumRes, ResNo);
2014 }
2015
2016 if (N->isLeaf()) {
2017 // If this is an explicit register reference, handle it.
2018 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
2019 unsigned ResNo = TmpNo++;
2020 if (DI->getDef()->isSubClassOf("Register")) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002021 OS << " ";
2022 DeclareSDOperand("Tmp"+utostr(ResNo));
2023 OS << " = CurDAG->getRegister("
Evan Chengb915f312005-12-09 22:45:35 +00002024 << ISE.getQualifiedName(DI->getDef()) << ", MVT::"
2025 << getEnumName(N->getType())
2026 << ");\n";
2027 return std::make_pair(1, ResNo);
2028 }
2029 } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
2030 unsigned ResNo = TmpNo++;
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002031 OS << " ";
2032 DeclareSDOperand("Tmp"+utostr(ResNo));
2033 OS << " = CurDAG->getTargetConstant("
Evan Chengb915f312005-12-09 22:45:35 +00002034 << II->getValue() << ", MVT::"
2035 << getEnumName(N->getType())
2036 << ");\n";
2037 return std::make_pair(1, ResNo);
2038 }
2039
2040 N->dump();
2041 assert(0 && "Unknown leaf type!");
2042 return std::make_pair(1, ~0U);
2043 }
2044
2045 Record *Op = N->getOperator();
2046 if (Op->isSubClassOf("Instruction")) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002047 const DAGInstruction &Inst = ISE.getInstruction(Op);
2048 unsigned NumImpResults = Inst.getNumImpResults();
2049 unsigned NumImpOperands = Inst.getNumImpOperands();
2050 bool InFlag = NumImpOperands > 0;
2051 bool OutFlag = NumImpResults > 0;
2052 bool IsCopyFromReg = false;
2053
2054 if (InFlag || OutFlag)
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002055 OS << " InFlag = SDOperand(0, 0);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002056
Evan Chengb915f312005-12-09 22:45:35 +00002057 // Determine operand emission order. Complex pattern first.
2058 std::vector<std::pair<unsigned, TreePatternNode*> > EmitOrder;
2059 std::vector<std::pair<unsigned, TreePatternNode*> >::iterator OI;
2060 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
2061 TreePatternNode *Child = N->getChild(i);
2062 if (i == 0) {
2063 EmitOrder.push_back(std::make_pair(i, Child));
2064 OI = EmitOrder.begin();
2065 } else if (NodeIsComplexPattern(Child)) {
2066 OI = EmitOrder.insert(OI, std::make_pair(i, Child));
2067 } else {
2068 EmitOrder.push_back(std::make_pair(i, Child));
2069 }
2070 }
2071
2072 // Emit all of the operands.
2073 std::vector<std::pair<unsigned, unsigned> > NumTemps(EmitOrder.size());
2074 for (unsigned i = 0, e = EmitOrder.size(); i != e; ++i) {
2075 unsigned OpOrder = EmitOrder[i].first;
2076 TreePatternNode *Child = EmitOrder[i].second;
2077 std::pair<unsigned, unsigned> NumTemp = EmitResultCode(Child);
2078 NumTemps[OpOrder] = NumTemp;
2079 }
2080
2081 // List all the operands in the right order.
2082 std::vector<unsigned> Ops;
2083 for (unsigned i = 0, e = NumTemps.size(); i != e; i++) {
2084 for (unsigned j = 0; j < NumTemps[i].first; j++)
2085 Ops.push_back(NumTemps[i].second + j);
2086 }
2087
Evan Chengbcecf332005-12-17 01:19:28 +00002088 const CodeGenTarget &CGT = ISE.getTargetInfo();
2089 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
Evan Chengb915f312005-12-09 22:45:35 +00002090
2091 // Emit all the chain and CopyToReg stuff.
2092 if (II.hasCtrlDep)
Evan Cheng86217892005-12-12 19:37:43 +00002093 OS << " Chain = Select(Chain);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002094 if (InFlag)
2095 EmitCopyToRegs(Pattern, "N", II.hasCtrlDep);
Evan Chengb915f312005-12-09 22:45:35 +00002096
Evan Chengb915f312005-12-09 22:45:35 +00002097 unsigned NumResults = Inst.getNumResults();
2098 unsigned ResNo = TmpNo++;
2099 if (!isRoot) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002100 OS << " ";
2101 DeclareSDOperand("Tmp"+utostr(ResNo));
2102 OS << " = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002103 << II.Namespace << "::" << II.TheDef->getName();
2104 if (N->getType() != MVT::isVoid)
2105 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng4fba2812005-12-20 07:37:41 +00002106 if (OutFlag)
2107 OS << ", MVT::Flag";
Evan Chengbcecf332005-12-17 01:19:28 +00002108
Evan Chengb915f312005-12-09 22:45:35 +00002109 unsigned LastOp = 0;
2110 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
2111 LastOp = Ops[i];
2112 OS << ", Tmp" << LastOp;
2113 }
2114 OS << ");\n";
2115 if (II.hasCtrlDep) {
2116 // Must have at least one result
2117 OS << " Chain = Tmp" << LastOp << ".getValue("
2118 << NumResults << ");\n";
2119 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002120 } else if (II.hasCtrlDep || OutFlag) {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002121 OS << " Result = CurDAG->getTargetNode("
Evan Chengb915f312005-12-09 22:45:35 +00002122 << II.Namespace << "::" << II.TheDef->getName();
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002123
2124 // Output order: results, chain, flags
2125 // Result types.
Evan Chengbcecf332005-12-17 01:19:28 +00002126 if (NumResults > 0) {
2127 // TODO: multiple results?
2128 if (N->getType() != MVT::isVoid)
2129 OS << ", MVT::" << getEnumName(N->getType());
2130 }
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002131 if (II.hasCtrlDep)
2132 OS << ", MVT::Other";
Evan Cheng4fba2812005-12-20 07:37:41 +00002133 if (OutFlag)
2134 OS << ", MVT::Flag";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002135
2136 // Inputs.
Evan Chengb915f312005-12-09 22:45:35 +00002137 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2138 OS << ", Tmp" << Ops[i];
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002139 if (II.hasCtrlDep) OS << ", Chain";
2140 if (InFlag) OS << ", InFlag";
Evan Chengb915f312005-12-09 22:45:35 +00002141 OS << ");\n";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002142
2143 unsigned ValNo = 0;
Evan Chengf9fc25d2005-12-19 22:40:04 +00002144 for (unsigned i = 0; i < NumResults; i++) {
2145 OS << " CodeGenMap[N.getValue(" << ValNo << ")] = Result"
2146 << ".getValue(" << ValNo << ");\n";
2147 ValNo++;
2148 }
2149
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002150 if (II.hasCtrlDep) {
Evan Cheng4fba2812005-12-20 07:37:41 +00002151 OS << " Chain = Result.getValue(" << ValNo << ");\n";
2152 if (OutFlag)
2153 OS << " InFlag = Result.getValue(" << ValNo+1 << ");\n";
2154 } else if (OutFlag)
2155 OS << " InFlag = Result.getValue(" << ValNo << ");\n";
2156
2157 if (OutFlag)
2158 IsCopyFromReg = EmitCopyFromRegs(N, II.hasCtrlDep);
2159 if (IsCopyFromReg)
2160 OS << " CodeGenMap[N.getValue(" << ValNo++ << ")] = Result;\n";
2161
2162 if (OutFlag)
2163 OS << " CodeGenMap[N.getValue(" << ValNo++ << ")] = InFlag;\n";
2164
2165 if (IsCopyFromReg || II.hasCtrlDep) {
2166 OS << " ";
2167 if (IsCopyFromReg || NodeHasChain(Pattern, ISE))
2168 OS << "CodeGenMap[N.getValue(" << ValNo << ")] = ";
Evan Cheng1b80f4d2005-12-19 07:18:51 +00002169 for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
Evan Cheng4fba2812005-12-20 07:37:41 +00002170 OS << "CodeGenMap[" << FoldedChains[j].first << ".getValue("
2171 << FoldedChains[j].second << ")] = ";
2172 OS << "Chain;\n";
Evan Chengb915f312005-12-09 22:45:35 +00002173 }
Evan Chengf9fc25d2005-12-19 22:40:04 +00002174
Evan Chenge0870512005-12-20 00:06:17 +00002175 // FIXME: this only works because (for now) an instruction can either
2176 // produce a single result or a single flag.
Evan Cheng4fba2812005-12-20 07:37:41 +00002177 if (II.hasCtrlDep && OutFlag) {
2178 if (IsCopyFromReg)
2179 OS << " return (N.ResNo == 0) ? Result : "
2180 << "((N.ResNo == 2) ? Chain : InFlag);"
2181 << " // Chain comes before flag.\n";
2182 else
2183 OS << " return (N.ResNo) ? Chain : InFlag;"
2184 << " // Chain comes before flag.\n";
2185 } else {
Evan Chenge0870512005-12-20 00:06:17 +00002186 OS << " return Result.getValue(N.ResNo);\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002187 }
Evan Chengb915f312005-12-09 22:45:35 +00002188 } else {
2189 // If this instruction is the root, and if there is only one use of it,
2190 // use SelectNodeTo instead of getTargetNode to avoid an allocation.
2191 OS << " if (N.Val->hasOneUse()) {\n";
2192 OS << " return CurDAG->SelectNodeTo(N.Val, "
Evan Chengbcecf332005-12-17 01:19:28 +00002193 << II.Namespace << "::" << II.TheDef->getName();
2194 if (N->getType() != MVT::isVoid)
2195 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng4fba2812005-12-20 07:37:41 +00002196 if (OutFlag)
2197 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002198 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2199 OS << ", Tmp" << Ops[i];
2200 if (InFlag)
2201 OS << ", InFlag";
2202 OS << ");\n";
2203 OS << " } else {\n";
2204 OS << " return CodeGenMap[N] = CurDAG->getTargetNode("
Evan Chengbcecf332005-12-17 01:19:28 +00002205 << II.Namespace << "::" << II.TheDef->getName();
2206 if (N->getType() != MVT::isVoid)
2207 OS << ", MVT::" << getEnumName(N->getType());
Evan Cheng4fba2812005-12-20 07:37:41 +00002208 if (OutFlag)
2209 OS << ", MVT::Flag";
Evan Chengb915f312005-12-09 22:45:35 +00002210 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2211 OS << ", Tmp" << Ops[i];
2212 if (InFlag)
2213 OS << ", InFlag";
2214 OS << ");\n";
2215 OS << " }\n";
2216 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002217
Evan Chengb915f312005-12-09 22:45:35 +00002218 return std::make_pair(1, ResNo);
2219 } else if (Op->isSubClassOf("SDNodeXForm")) {
2220 assert(N->getNumChildren() == 1 && "node xform should have one child!");
Evan Cheng58e84a62005-12-14 22:02:59 +00002221 unsigned OpVal = EmitResultCode(N->getChild(0)).second;
Evan Chengb915f312005-12-09 22:45:35 +00002222 unsigned ResNo = TmpNo++;
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002223 OS << " ";
2224 DeclareSDOperand("Tmp"+utostr(ResNo));
2225 OS << " = Transform_" << Op->getName()
Evan Chengb915f312005-12-09 22:45:35 +00002226 << "(Tmp" << OpVal << ".Val);\n";
2227 if (isRoot) {
2228 OS << " CodeGenMap[N] = Tmp" << ResNo << ";\n";
2229 OS << " return Tmp" << ResNo << ";\n";
2230 }
2231 return std::make_pair(1, ResNo);
2232 } else {
2233 N->dump();
2234 assert(0 && "Unknown node in result pattern!");
2235 return std::make_pair(1, ~0U);
2236 }
2237 }
2238
2239 /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat' and
2240 /// add it to the tree. 'Pat' and 'Other' are isomorphic trees except that
2241 /// 'Pat' may be missing types. If we find an unresolved type to add a check
2242 /// for, this returns true otherwise false if Pat has all types.
2243 bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
2244 const std::string &Prefix) {
2245 // Did we find one?
2246 if (!Pat->hasTypeSet()) {
2247 // Move a type over from 'other' to 'pat'.
2248 Pat->setType(Other->getType());
2249 OS << " if (" << Prefix << ".Val->getValueType(0) != MVT::"
2250 << getName(Pat->getType()) << ") goto P" << PatternNo << "Fail;\n";
2251 return true;
Evan Chengb915f312005-12-09 22:45:35 +00002252 }
2253
2254 unsigned OpNo = (unsigned) NodeHasChain(Pat, ISE);
2255 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
2256 if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
2257 Prefix + utostr(OpNo)))
2258 return true;
2259 return false;
2260 }
2261
2262private:
2263 /// EmitCopyToRegs - Emit the flag operands for the DAG that is
2264 /// being built.
2265 void EmitCopyToRegs(TreePatternNode *N, const std::string &RootName,
2266 bool HasCtrlDep) {
2267 const CodeGenTarget &T = ISE.getTargetInfo();
2268 unsigned OpNo = (unsigned) NodeHasChain(N, ISE);
2269 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
2270 TreePatternNode *Child = N->getChild(i);
2271 if (!Child->isLeaf()) {
2272 EmitCopyToRegs(Child, RootName + utostr(OpNo), HasCtrlDep);
2273 } else {
2274 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2275 Record *RR = DI->getDef();
2276 if (RR->isSubClassOf("Register")) {
2277 MVT::ValueType RVT = getRegisterValueType(RR, T);
Evan Chengbcecf332005-12-17 01:19:28 +00002278 if (RVT == MVT::Flag) {
2279 OS << " InFlag = Select(" << RootName << OpNo << ");\n";
2280 } else if (HasCtrlDep) {
Evan Chengb915f312005-12-09 22:45:35 +00002281 OS << " SDOperand " << RootName << "CR" << i << ";\n";
2282 OS << " " << RootName << "CR" << i
2283 << " = CurDAG->getCopyToReg(Chain, CurDAG->getRegister("
2284 << ISE.getQualifiedName(RR) << ", MVT::"
2285 << getEnumName(RVT) << ")"
2286 << ", Select(" << RootName << OpNo << "), InFlag);\n";
2287 OS << " Chain = " << RootName << "CR" << i
2288 << ".getValue(0);\n";
2289 OS << " InFlag = " << RootName << "CR" << i
2290 << ".getValue(1);\n";
2291 } else {
2292 OS << " InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode()"
2293 << ", CurDAG->getRegister(" << ISE.getQualifiedName(RR)
2294 << ", MVT::" << getEnumName(RVT) << ")"
2295 << ", Select(" << RootName << OpNo
2296 << "), InFlag).getValue(1);\n";
2297 }
2298 }
2299 }
2300 }
2301 }
2302 }
Evan Cheng4fba2812005-12-20 07:37:41 +00002303
2304 /// EmitCopyFromRegs - Emit code to copy result to physical registers
2305 /// as specified by the instruction.
2306 bool EmitCopyFromRegs(TreePatternNode *N, bool HasCtrlDep) {
2307 bool RetVal = false;
2308 Record *Op = N->getOperator();
2309 if (Op->isSubClassOf("Instruction")) {
2310 const DAGInstruction &Inst = ISE.getInstruction(Op);
2311 const CodeGenTarget &CGT = ISE.getTargetInfo();
2312 CodeGenInstruction &II = CGT.getInstruction(Op->getName());
2313 unsigned NumImpResults = Inst.getNumImpResults();
2314 for (unsigned i = 0; i < NumImpResults; i++) {
2315 Record *RR = Inst.getImpResult(i);
2316 if (RR->isSubClassOf("Register")) {
2317 MVT::ValueType RVT = getRegisterValueType(RR, CGT);
2318 if (RVT != MVT::Flag) {
2319 if (HasCtrlDep) {
2320 OS << " Result = CurDAG->getCopyFromReg(Chain, "
2321 << ISE.getQualifiedName(RR)
2322 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2323 OS << " Chain = Result.getValue(1);\n";
2324 OS << " InFlag = Result.getValue(2);\n";
2325 } else {
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002326 OS << " Chain;\n";
Evan Cheng4fba2812005-12-20 07:37:41 +00002327 OS << " Result = CurDAG->getCopyFromReg("
2328 << "CurDAG->getEntryNode(), ISE.getQualifiedName(RR)"
2329 << ", MVT::" << getEnumName(RVT) << ", InFlag);\n";
2330 OS << " Chain = Result.getValue(1);\n";
2331 OS << " InFlag = Result.getValue(2);\n";
2332 }
2333 RetVal = true;
2334 }
2335 }
2336 }
2337 }
2338 return RetVal;
2339 }
Evan Chengb915f312005-12-09 22:45:35 +00002340};
2341
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002342/// EmitCodeForPattern - Given a pattern to match, emit code to the specified
2343/// stream to match the pattern, and generate the code for the match if it
2344/// succeeds.
Chris Lattner3f7e9142005-09-23 20:52:47 +00002345void DAGISelEmitter::EmitCodeForPattern(PatternToMatch &Pattern,
2346 std::ostream &OS) {
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002347 static unsigned PatternCount = 0;
2348 unsigned PatternNo = PatternCount++;
2349 OS << " { // Pattern #" << PatternNo << ": ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002350 Pattern.getSrcPattern()->print(OS);
Chris Lattner05814af2005-09-28 17:57:56 +00002351 OS << "\n // Emits: ";
Evan Cheng58e84a62005-12-14 22:02:59 +00002352 Pattern.getDstPattern()->print(OS);
Chris Lattner3f7e9142005-09-23 20:52:47 +00002353 OS << "\n";
Evan Cheng58e84a62005-12-14 22:02:59 +00002354 OS << " // Pattern complexity = "
2355 << getPatternSize(Pattern.getSrcPattern(), *this)
2356 << " cost = "
2357 << getResultPatternCost(Pattern.getDstPattern()) << "\n";
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002358
Evan Cheng58e84a62005-12-14 22:02:59 +00002359 PatternCodeEmitter Emitter(*this, Pattern.getPredicates(),
2360 Pattern.getSrcPattern(), Pattern.getDstPattern(),
2361 PatternNo, OS);
Evan Chengb915f312005-12-09 22:45:35 +00002362
Chris Lattner8fc35682005-09-23 23:16:51 +00002363 // Emit the matcher, capturing named arguments in VariableMap.
Evan Cheng58e84a62005-12-14 22:02:59 +00002364 Emitter.EmitMatchCode(Pattern.getSrcPattern(), "N", true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002365
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002366 // TP - Get *SOME* tree pattern, we don't care which.
2367 TreePattern &TP = *PatternFragments.begin()->second;
Chris Lattner296dfe32005-09-24 00:50:51 +00002368
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002369 // At this point, we know that we structurally match the pattern, but the
2370 // types of the nodes may not match. Figure out the fewest number of type
2371 // comparisons we need to emit. For example, if there is only one integer
2372 // type supported by a target, there should be no type comparisons at all for
2373 // integer patterns!
2374 //
2375 // To figure out the fewest number of type checks needed, clone the pattern,
2376 // remove the types, then perform type inference on the pattern as a whole.
2377 // If there are unresolved types, emit an explicit check for those types,
2378 // apply the type to the tree, then rerun type inference. Iterate until all
2379 // types are resolved.
2380 //
Evan Cheng58e84a62005-12-14 22:02:59 +00002381 TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002382 RemoveAllTypes(Pat);
Chris Lattner7e82f132005-10-15 21:34:21 +00002383
2384 do {
2385 // Resolve/propagate as many types as possible.
2386 try {
2387 bool MadeChange = true;
2388 while (MadeChange)
2389 MadeChange = Pat->ApplyTypeConstraints(TP,true/*Ignore reg constraints*/);
2390 } catch (...) {
2391 assert(0 && "Error: could not find consistent types for something we"
2392 " already decided was ok!");
2393 abort();
2394 }
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002395
Chris Lattner7e82f132005-10-15 21:34:21 +00002396 // Insert a check for an unresolved type and add it to the tree. If we find
2397 // an unresolved type to add a check for, this returns true and we iterate,
2398 // otherwise we are done.
Evan Cheng58e84a62005-12-14 22:02:59 +00002399 } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N"));
Evan Cheng1c3d19e2005-12-04 08:18:16 +00002400
Evan Cheng58e84a62005-12-14 22:02:59 +00002401 Emitter.EmitResultCode(Pattern.getDstPattern(), true /*the root*/);
Evan Chengb915f312005-12-09 22:45:35 +00002402
Chris Lattner0ee7cff2005-10-14 04:11:13 +00002403 delete Pat;
2404
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002405 OS << " }\n P" << PatternNo << "Fail:\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002406}
2407
Chris Lattner37481472005-09-26 21:59:35 +00002408
2409namespace {
2410 /// CompareByRecordName - An ordering predicate that implements less-than by
2411 /// comparing the names records.
2412 struct CompareByRecordName {
2413 bool operator()(const Record *LHS, const Record *RHS) const {
2414 // Sort by name first.
2415 if (LHS->getName() < RHS->getName()) return true;
2416 // If both names are equal, sort by pointer.
2417 return LHS->getName() == RHS->getName() && LHS < RHS;
2418 }
2419 };
2420}
2421
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002422void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002423 std::string InstNS = Target.inst_begin()->second.Namespace;
2424 if (!InstNS.empty()) InstNS += "::";
2425
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002426 // Emit boilerplate.
2427 OS << "// The main instruction selector code.\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002428 << "SDOperand SelectCode(SDOperand N) {\n"
2429 << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
Chris Lattnerb277cbc2005-10-18 04:41:01 +00002430 << " N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
2431 << "INSTRUCTION_LIST_END))\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002432 << " return N; // Already selected.\n\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002433 << " std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(N);\n"
Evan Cheng481c8e02005-12-12 23:22:48 +00002434 << " if (CGMI != CodeGenMap.end()) return CGMI->second;\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002435 << " // Work arounds for GCC stack overflow bugs.\n"
2436 << " SDOperand N0, N1, N2, N00, N01, N10, N11, Tmp0, Tmp1, Tmp2, Tmp3;\n"
2437 << " SDOperand Chain, InFlag, Result;\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002438 << " switch (N.getOpcode()) {\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002439 << " default: break;\n"
2440 << " case ISD::EntryToken: // These leaves remain the same.\n"
Chris Lattner5216c692005-12-18 21:05:44 +00002441 << " case ISD::BasicBlock:\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002442 << " return N;\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002443 << " case ISD::AssertSext:\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002444 << " case ISD::AssertZext: {\n"
2445 << " SDOperand Tmp0 = Select(N.getOperand(0));\n"
2446 << " if (!N.Val->hasOneUse()) CodeGenMap[N] = Tmp0;\n"
2447 << " return Tmp0;\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002448 << " }\n"
2449 << " case ISD::TokenFactor:\n"
2450 << " if (N.getNumOperands() == 2) {\n"
2451 << " SDOperand Op0 = Select(N.getOperand(0));\n"
2452 << " SDOperand Op1 = Select(N.getOperand(1));\n"
2453 << " return CodeGenMap[N] =\n"
2454 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Op0, Op1);\n"
2455 << " } else {\n"
2456 << " std::vector<SDOperand> Ops;\n"
2457 << " for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
2458 << " Ops.push_back(Select(N.getOperand(i)));\n"
2459 << " return CodeGenMap[N] = \n"
2460 << " CurDAG->getNode(ISD::TokenFactor, MVT::Other, Ops);\n"
2461 << " }\n"
2462 << " case ISD::CopyFromReg: {\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002463 << " Chain = Select(N.getOperand(0));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002464 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
2465 << " MVT::ValueType VT = N.Val->getValueType(0);\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002466 << " if (N.Val->getNumValues() == 2) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002467 << " if (Chain == N.getOperand(0)) return N; // No change\n"
2468 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT);\n"
2469 << " CodeGenMap[N.getValue(0)] = New;\n"
2470 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2471 << " return New.getValue(N.ResNo);\n"
2472 << " } else {\n"
2473 << " SDOperand Flag;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002474 << " if (N.getNumOperands() == 3) Flag = Select(N.getOperand(2));\n"
2475 << " if (Chain == N.getOperand(0) &&\n"
2476 << " (N.getNumOperands() == 2 || Flag == N.getOperand(2)))\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002477 << " return N; // No change\n"
2478 << " SDOperand New = CurDAG->getCopyFromReg(Chain, Reg, VT, Flag);\n"
2479 << " CodeGenMap[N.getValue(0)] = New;\n"
2480 << " CodeGenMap[N.getValue(1)] = New.getValue(1);\n"
2481 << " CodeGenMap[N.getValue(2)] = New.getValue(2);\n"
2482 << " return New.getValue(N.ResNo);\n"
2483 << " }\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002484 << " }\n"
2485 << " case ISD::CopyToReg: {\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002486 << " Chain = Select(N.getOperand(0));\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002487 << " unsigned Reg = cast<RegisterSDNode>(N.getOperand(1))->getReg();\n"
Chris Lattnerf071bb52005-10-25 20:35:14 +00002488 << " SDOperand Val = Select(N.getOperand(2));\n"
Chris Lattner2f0f9a62005-12-20 19:41:03 +00002489 << " Result = N;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002490 << " if (N.Val->getNumValues() == 1) {\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002491 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2))\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002492 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002493 << " return CodeGenMap[N] = Result;\n"
2494 << " } else {\n"
2495 << " SDOperand Flag;\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002496 << " if (N.getNumOperands() == 4) Flag = Select(N.getOperand(3));\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002497 << " if (Chain != N.getOperand(0) || Val != N.getOperand(2) ||\n"
Chris Lattnerdc464de2005-12-18 15:45:51 +00002498 << " (N.getNumOperands() == 4 && Flag != N.getOperand(3)))\n"
2499 << " Result = CurDAG->getCopyToReg(Chain, Reg, Val, Flag);\n"
Chris Lattner755dd092005-12-18 15:28:25 +00002500 << " CodeGenMap[N.getValue(0)] = Result;\n"
2501 << " CodeGenMap[N.getValue(1)] = Result.getValue(1);\n"
2502 << " return Result.getValue(N.ResNo);\n"
2503 << " }\n"
Chris Lattnerfab37282005-09-26 22:10:24 +00002504 << " }\n";
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002505
Chris Lattner81303322005-09-23 19:36:15 +00002506 // Group the patterns by their top-level opcodes.
Chris Lattner37481472005-09-26 21:59:35 +00002507 std::map<Record*, std::vector<PatternToMatch*>,
2508 CompareByRecordName> PatternsByOpcode;
Evan Cheng0fc71982005-12-08 02:00:36 +00002509 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002510 TreePatternNode *Node = PatternsToMatch[i].getSrcPattern();
Evan Cheng0fc71982005-12-08 02:00:36 +00002511 if (!Node->isLeaf()) {
2512 PatternsByOpcode[Node->getOperator()].push_back(&PatternsToMatch[i]);
Chris Lattner0614b622005-11-02 06:49:14 +00002513 } else {
Evan Cheng0fc71982005-12-08 02:00:36 +00002514 const ComplexPattern *CP;
Chris Lattner0614b622005-11-02 06:49:14 +00002515 if (IntInit *II =
Evan Cheng0fc71982005-12-08 02:00:36 +00002516 dynamic_cast<IntInit*>(Node->getLeafValue())) {
Chris Lattner0614b622005-11-02 06:49:14 +00002517 PatternsByOpcode[getSDNodeNamed("imm")].push_back(&PatternsToMatch[i]);
Evan Cheng0fc71982005-12-08 02:00:36 +00002518 } else if ((CP = NodeGetComplexPattern(Node, *this))) {
Evan Cheng3aa39f42005-12-08 02:14:08 +00002519 std::vector<Record*> OpNodes = CP->getRootNodes();
Evan Cheng0fc71982005-12-08 02:00:36 +00002520 for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
2521 PatternsByOpcode[OpNodes[j]].insert(PatternsByOpcode[OpNodes[j]].begin(),
2522 &PatternsToMatch[i]);
2523 }
Chris Lattner0614b622005-11-02 06:49:14 +00002524 } else {
Evan Cheng76021f02005-11-29 18:44:58 +00002525 std::cerr << "Unrecognized opcode '";
Evan Cheng0fc71982005-12-08 02:00:36 +00002526 Node->dump();
Evan Cheng76021f02005-11-29 18:44:58 +00002527 std::cerr << "' on tree pattern '";
Evan Cheng58e84a62005-12-14 22:02:59 +00002528 std::cerr << PatternsToMatch[i].getDstPattern()->getOperator()->getName();
Evan Cheng76021f02005-11-29 18:44:58 +00002529 std::cerr << "'!\n";
2530 exit(1);
Chris Lattner0614b622005-11-02 06:49:14 +00002531 }
2532 }
Evan Cheng0fc71982005-12-08 02:00:36 +00002533 }
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002534
Chris Lattner3f7e9142005-09-23 20:52:47 +00002535 // Loop over all of the case statements.
Chris Lattner37481472005-09-26 21:59:35 +00002536 for (std::map<Record*, std::vector<PatternToMatch*>,
2537 CompareByRecordName>::iterator PBOI = PatternsByOpcode.begin(),
2538 E = PatternsByOpcode.end(); PBOI != E; ++PBOI) {
Chris Lattner81303322005-09-23 19:36:15 +00002539 const SDNodeInfo &OpcodeInfo = getSDNodeInfo(PBOI->first);
2540 std::vector<PatternToMatch*> &Patterns = PBOI->second;
2541
2542 OS << " case " << OpcodeInfo.getEnumName() << ":\n";
Chris Lattner3f7e9142005-09-23 20:52:47 +00002543
2544 // We want to emit all of the matching code now. However, we want to emit
2545 // the matches in order of minimal cost. Sort the patterns so the least
2546 // cost one is at the start.
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002547 std::stable_sort(Patterns.begin(), Patterns.end(),
Evan Cheng0fc71982005-12-08 02:00:36 +00002548 PatternSortingPredicate(*this));
Chris Lattner81303322005-09-23 19:36:15 +00002549
Chris Lattner3f7e9142005-09-23 20:52:47 +00002550 for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
2551 EmitCodeForPattern(*Patterns[i], OS);
Chris Lattnerd1ff35a2005-09-23 21:33:23 +00002552 OS << " break;\n\n";
Chris Lattner81303322005-09-23 19:36:15 +00002553 }
2554
2555
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002556 OS << " } // end of big switch.\n\n"
2557 << " std::cerr << \"Cannot yet select: \";\n"
Chris Lattner547394c2005-09-23 21:53:45 +00002558 << " N.Val->dump();\n"
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002559 << " std::cerr << '\\n';\n"
2560 << " abort();\n"
2561 << "}\n";
2562}
2563
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002564void DAGISelEmitter::run(std::ostream &OS) {
2565 EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
2566 " target", OS);
2567
Chris Lattner1f39e292005-09-14 00:09:24 +00002568 OS << "// *** NOTE: This file is #included into the middle of the target\n"
2569 << "// *** instruction selector class. These functions are really "
2570 << "methods.\n\n";
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002571
Chris Lattner296dfe32005-09-24 00:50:51 +00002572 OS << "// Instance var to keep track of multiply used nodes that have \n"
2573 << "// already been selected.\n"
2574 << "std::map<SDOperand, SDOperand> CodeGenMap;\n";
2575
Chris Lattnerca559d02005-09-08 21:03:01 +00002576 ParseNodeInfo();
Chris Lattner24eeeb82005-09-13 21:51:00 +00002577 ParseNodeTransforms(OS);
Evan Cheng0fc71982005-12-08 02:00:36 +00002578 ParseComplexPatterns();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002579 ParsePatternFragments(OS);
2580 ParseInstructions();
2581 ParsePatterns();
Chris Lattner3f7e9142005-09-23 20:52:47 +00002582
Chris Lattnere97603f2005-09-28 19:27:25 +00002583 // Generate variants. For example, commutative patterns can match
Chris Lattner3f7e9142005-09-23 20:52:47 +00002584 // multiple ways. Add them to PatternsToMatch as well.
Chris Lattnere97603f2005-09-28 19:27:25 +00002585 GenerateVariants();
Chris Lattnerb39e4be2005-09-15 02:38:02 +00002586
Chris Lattnere46e17b2005-09-29 19:28:10 +00002587
2588 DEBUG(std::cerr << "\n\nALL PATTERNS TO MATCH:\n\n";
2589 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
Evan Cheng58e84a62005-12-14 22:02:59 +00002590 std::cerr << "PATTERN: "; PatternsToMatch[i].getSrcPattern()->dump();
2591 std::cerr << "\nRESULT: ";PatternsToMatch[i].getDstPattern()->dump();
Chris Lattnere46e17b2005-09-29 19:28:10 +00002592 std::cerr << "\n";
2593 });
2594
Chris Lattnerb9f01eb2005-09-16 00:29:46 +00002595 // At this point, we have full information about the 'Patterns' we need to
2596 // parse, both implicitly from instructions as well as from explicit pattern
Chris Lattnere97603f2005-09-28 19:27:25 +00002597 // definitions. Emit the resultant instruction selector.
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002598 EmitInstructionSelector(OS);
2599
2600 for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
2601 E = PatternFragments.end(); I != E; ++I)
2602 delete I->second;
2603 PatternFragments.clear();
2604
Chris Lattner54cb8fd2005-09-07 23:44:43 +00002605 Instructions.clear();
2606}