1926359c43fab9a053d95f5be29543b158042ebc
[oota-llvm.git] / utils / TableGen / DAGISelEmitter.cpp
1 //===- 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"
18 #include "llvm/Support/MathExtras.h"
19 #include "llvm/Support/Streams.h"
20 #include <algorithm>
21 #include <set>
22 using namespace llvm;
23
24 //===----------------------------------------------------------------------===//
25 // Helpers for working with extended types.
26
27 /// FilterVTs - Filter a list of VT's according to a predicate.
28 ///
29 template<typename T>
30 static std::vector<MVT::ValueType> 
31 FilterVTs(const std::vector<MVT::ValueType> &InVTs, T Filter) {
32   std::vector<MVT::ValueType> Result;
33   for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
34     if (Filter(InVTs[i]))
35       Result.push_back(InVTs[i]);
36   return Result;
37 }
38
39 template<typename T>
40 static std::vector<unsigned char> 
41 FilterEVTs(const std::vector<unsigned char> &InVTs, T Filter) {
42   std::vector<unsigned char> Result;
43   for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
44     if (Filter((MVT::ValueType)InVTs[i]))
45       Result.push_back(InVTs[i]);
46   return Result;
47 }
48
49 static std::vector<unsigned char>
50 ConvertVTs(const std::vector<MVT::ValueType> &InVTs) {
51   std::vector<unsigned char> Result;
52   for (unsigned i = 0, e = InVTs.size(); i != e; ++i)
53       Result.push_back(InVTs[i]);
54   return Result;
55 }
56
57 static bool LHSIsSubsetOfRHS(const std::vector<unsigned char> &LHS,
58                              const std::vector<unsigned char> &RHS) {
59   if (LHS.size() > RHS.size()) return false;
60   for (unsigned i = 0, e = LHS.size(); i != e; ++i)
61     if (std::find(RHS.begin(), RHS.end(), LHS[i]) == RHS.end())
62       return false;
63   return true;
64 }
65
66 /// isExtIntegerVT - Return true if the specified extended value type vector
67 /// contains isInt or an integer value type.
68 static bool isExtIntegerInVTs(const std::vector<unsigned char> &EVTs) {
69   assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");
70   return EVTs[0] == MVT::isInt || !(FilterEVTs(EVTs, MVT::isInteger).empty());
71 }
72
73 /// isExtFloatingPointVT - Return true if the specified extended value type 
74 /// vector contains isFP or a FP value type.
75 static bool isExtFloatingPointInVTs(const std::vector<unsigned char> &EVTs) {
76   assert(!EVTs.empty() && "Cannot check for integer in empty ExtVT list!");
77   return EVTs[0] == MVT::isFP ||
78          !(FilterEVTs(EVTs, MVT::isFloatingPoint).empty());
79 }
80
81 //===----------------------------------------------------------------------===//
82 // SDTypeConstraint implementation
83 //
84
85 SDTypeConstraint::SDTypeConstraint(Record *R) {
86   OperandNo = R->getValueAsInt("OperandNum");
87   
88   if (R->isSubClassOf("SDTCisVT")) {
89     ConstraintType = SDTCisVT;
90     x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT"));
91   } else if (R->isSubClassOf("SDTCisPtrTy")) {
92     ConstraintType = SDTCisPtrTy;
93   } else if (R->isSubClassOf("SDTCisInt")) {
94     ConstraintType = SDTCisInt;
95   } else if (R->isSubClassOf("SDTCisFP")) {
96     ConstraintType = SDTCisFP;
97   } else if (R->isSubClassOf("SDTCisSameAs")) {
98     ConstraintType = SDTCisSameAs;
99     x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum");
100   } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) {
101     ConstraintType = SDTCisVTSmallerThanOp;
102     x.SDTCisVTSmallerThanOp_Info.OtherOperandNum = 
103       R->getValueAsInt("OtherOperandNum");
104   } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) {
105     ConstraintType = SDTCisOpSmallerThanOp;
106     x.SDTCisOpSmallerThanOp_Info.BigOperandNum = 
107       R->getValueAsInt("BigOperandNum");
108   } else if (R->isSubClassOf("SDTCisIntVectorOfSameSize")) {
109     ConstraintType = SDTCisIntVectorOfSameSize;
110     x.SDTCisIntVectorOfSameSize_Info.OtherOperandNum =
111       R->getValueAsInt("OtherOpNum");
112   } else {
113     cerr << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n";
114     exit(1);
115   }
116 }
117
118 /// getOperandNum - Return the node corresponding to operand #OpNo in tree
119 /// N, which has NumResults results.
120 TreePatternNode *SDTypeConstraint::getOperandNum(unsigned OpNo,
121                                                  TreePatternNode *N,
122                                                  unsigned NumResults) const {
123   assert(NumResults <= 1 &&
124          "We only work with nodes with zero or one result so far!");
125   
126   if (OpNo >= (NumResults + N->getNumChildren())) {
127     cerr << "Invalid operand number " << OpNo << " ";
128     N->dump();
129     cerr << '\n';
130     exit(1);
131   }
132
133   if (OpNo < NumResults)
134     return N;  // FIXME: need value #
135   else
136     return N->getChild(OpNo-NumResults);
137 }
138
139 /// ApplyTypeConstraint - Given a node in a pattern, apply this type
140 /// constraint to the nodes operands.  This returns true if it makes a
141 /// change, false otherwise.  If a type contradiction is found, throw an
142 /// exception.
143 bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N,
144                                            const SDNodeInfo &NodeInfo,
145                                            TreePattern &TP) const {
146   unsigned NumResults = NodeInfo.getNumResults();
147   assert(NumResults <= 1 &&
148          "We only work with nodes with zero or one result so far!");
149   
150   // Check that the number of operands is sane.  Negative operands -> varargs.
151   if (NodeInfo.getNumOperands() >= 0) {
152     if (N->getNumChildren() != (unsigned)NodeInfo.getNumOperands())
153       TP.error(N->getOperator()->getName() + " node requires exactly " +
154                itostr(NodeInfo.getNumOperands()) + " operands!");
155   }
156
157   const CodeGenTarget &CGT = TP.getDAGISelEmitter().getTargetInfo();
158   
159   TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NumResults);
160   
161   switch (ConstraintType) {
162   default: assert(0 && "Unknown constraint type!");
163   case SDTCisVT:
164     // Operand must be a particular type.
165     return NodeToApply->UpdateNodeType(x.SDTCisVT_Info.VT, TP);
166   case SDTCisPtrTy: {
167     // Operand must be same as target pointer type.
168     return NodeToApply->UpdateNodeType(MVT::iPTR, TP);
169   }
170   case SDTCisInt: {
171     // If there is only one integer type supported, this must be it.
172     std::vector<MVT::ValueType> IntVTs =
173       FilterVTs(CGT.getLegalValueTypes(), MVT::isInteger);
174
175     // If we found exactly one supported integer type, apply it.
176     if (IntVTs.size() == 1)
177       return NodeToApply->UpdateNodeType(IntVTs[0], TP);
178     return NodeToApply->UpdateNodeType(MVT::isInt, TP);
179   }
180   case SDTCisFP: {
181     // If there is only one FP type supported, this must be it.
182     std::vector<MVT::ValueType> FPVTs =
183       FilterVTs(CGT.getLegalValueTypes(), MVT::isFloatingPoint);
184         
185     // If we found exactly one supported FP type, apply it.
186     if (FPVTs.size() == 1)
187       return NodeToApply->UpdateNodeType(FPVTs[0], TP);
188     return NodeToApply->UpdateNodeType(MVT::isFP, TP);
189   }
190   case SDTCisSameAs: {
191     TreePatternNode *OtherNode =
192       getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NumResults);
193     return NodeToApply->UpdateNodeType(OtherNode->getExtTypes(), TP) |
194            OtherNode->UpdateNodeType(NodeToApply->getExtTypes(), TP);
195   }
196   case SDTCisVTSmallerThanOp: {
197     // The NodeToApply must be a leaf node that is a VT.  OtherOperandNum must
198     // have an integer type that is smaller than the VT.
199     if (!NodeToApply->isLeaf() ||
200         !dynamic_cast<DefInit*>(NodeToApply->getLeafValue()) ||
201         !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()
202                ->isSubClassOf("ValueType"))
203       TP.error(N->getOperator()->getName() + " expects a VT operand!");
204     MVT::ValueType VT =
205      getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef());
206     if (!MVT::isInteger(VT))
207       TP.error(N->getOperator()->getName() + " VT operand must be integer!");
208     
209     TreePatternNode *OtherNode =
210       getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N,NumResults);
211     
212     // It must be integer.
213     bool MadeChange = false;
214     MadeChange |= OtherNode->UpdateNodeType(MVT::isInt, TP);
215     
216     // This code only handles nodes that have one type set.  Assert here so
217     // that we can change this if we ever need to deal with multiple value
218     // types at this point.
219     assert(OtherNode->getExtTypes().size() == 1 && "Node has too many types!");
220     if (OtherNode->hasTypeSet() && OtherNode->getTypeNum(0) <= VT)
221       OtherNode->UpdateNodeType(MVT::Other, TP);  // Throw an error.
222     return false;
223   }
224   case SDTCisOpSmallerThanOp: {
225     TreePatternNode *BigOperand =
226       getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NumResults);
227
228     // Both operands must be integer or FP, but we don't care which.
229     bool MadeChange = false;
230     
231     // This code does not currently handle nodes which have multiple types,
232     // where some types are integer, and some are fp.  Assert that this is not
233     // the case.
234     assert(!(isExtIntegerInVTs(NodeToApply->getExtTypes()) &&
235              isExtFloatingPointInVTs(NodeToApply->getExtTypes())) &&
236            !(isExtIntegerInVTs(BigOperand->getExtTypes()) &&
237              isExtFloatingPointInVTs(BigOperand->getExtTypes())) &&
238            "SDTCisOpSmallerThanOp does not handle mixed int/fp types!");
239     if (isExtIntegerInVTs(NodeToApply->getExtTypes()))
240       MadeChange |= BigOperand->UpdateNodeType(MVT::isInt, TP);
241     else if (isExtFloatingPointInVTs(NodeToApply->getExtTypes()))
242       MadeChange |= BigOperand->UpdateNodeType(MVT::isFP, TP);
243     if (isExtIntegerInVTs(BigOperand->getExtTypes()))
244       MadeChange |= NodeToApply->UpdateNodeType(MVT::isInt, TP);
245     else if (isExtFloatingPointInVTs(BigOperand->getExtTypes()))
246       MadeChange |= NodeToApply->UpdateNodeType(MVT::isFP, TP);
247
248     std::vector<MVT::ValueType> VTs = CGT.getLegalValueTypes();
249     
250     if (isExtIntegerInVTs(NodeToApply->getExtTypes())) {
251       VTs = FilterVTs(VTs, MVT::isInteger);
252     } else if (isExtFloatingPointInVTs(NodeToApply->getExtTypes())) {
253       VTs = FilterVTs(VTs, MVT::isFloatingPoint);
254     } else {
255       VTs.clear();
256     }
257
258     switch (VTs.size()) {
259     default:         // Too many VT's to pick from.
260     case 0: break;   // No info yet.
261     case 1: 
262       // Only one VT of this flavor.  Cannot ever satisify the constraints.
263       return NodeToApply->UpdateNodeType(MVT::Other, TP);  // throw
264     case 2:
265       // If we have exactly two possible types, the little operand must be the
266       // small one, the big operand should be the big one.  Common with 
267       // float/double for example.
268       assert(VTs[0] < VTs[1] && "Should be sorted!");
269       MadeChange |= NodeToApply->UpdateNodeType(VTs[0], TP);
270       MadeChange |= BigOperand->UpdateNodeType(VTs[1], TP);
271       break;
272     }    
273     return MadeChange;
274   }
275   case SDTCisIntVectorOfSameSize: {
276     TreePatternNode *OtherOperand =
277       getOperandNum(x.SDTCisIntVectorOfSameSize_Info.OtherOperandNum,
278                     N, NumResults);
279     if (OtherOperand->hasTypeSet()) {
280       if (!MVT::isVector(OtherOperand->getTypeNum(0)))
281         TP.error(N->getOperator()->getName() + " VT operand must be a vector!");
282       MVT::ValueType IVT = OtherOperand->getTypeNum(0);
283       IVT = MVT::getIntVectorWithNumElements(MVT::getVectorNumElements(IVT));
284       return NodeToApply->UpdateNodeType(IVT, TP);
285     }
286     return false;
287   }
288   }  
289   return false;
290 }
291
292
293 //===----------------------------------------------------------------------===//
294 // SDNodeInfo implementation
295 //
296 SDNodeInfo::SDNodeInfo(Record *R) : Def(R) {
297   EnumName    = R->getValueAsString("Opcode");
298   SDClassName = R->getValueAsString("SDClass");
299   Record *TypeProfile = R->getValueAsDef("TypeProfile");
300   NumResults = TypeProfile->getValueAsInt("NumResults");
301   NumOperands = TypeProfile->getValueAsInt("NumOperands");
302   
303   // Parse the properties.
304   Properties = 0;
305   std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties");
306   for (unsigned i = 0, e = PropList.size(); i != e; ++i) {
307     if (PropList[i]->getName() == "SDNPCommutative") {
308       Properties |= 1 << SDNPCommutative;
309     } else if (PropList[i]->getName() == "SDNPAssociative") {
310       Properties |= 1 << SDNPAssociative;
311     } else if (PropList[i]->getName() == "SDNPHasChain") {
312       Properties |= 1 << SDNPHasChain;
313     } else if (PropList[i]->getName() == "SDNPOutFlag") {
314       Properties |= 1 << SDNPOutFlag;
315     } else if (PropList[i]->getName() == "SDNPInFlag") {
316       Properties |= 1 << SDNPInFlag;
317     } else if (PropList[i]->getName() == "SDNPOptInFlag") {
318       Properties |= 1 << SDNPOptInFlag;
319     } else {
320       cerr << "Unknown SD Node property '" << PropList[i]->getName()
321            << "' on node '" << R->getName() << "'!\n";
322       exit(1);
323     }
324   }
325   
326   
327   // Parse the type constraints.
328   std::vector<Record*> ConstraintList =
329     TypeProfile->getValueAsListOfDefs("Constraints");
330   TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end());
331 }
332
333 //===----------------------------------------------------------------------===//
334 // TreePatternNode implementation
335 //
336
337 TreePatternNode::~TreePatternNode() {
338 #if 0 // FIXME: implement refcounted tree nodes!
339   for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
340     delete getChild(i);
341 #endif
342 }
343
344 /// UpdateNodeType - Set the node type of N to VT if VT contains
345 /// information.  If N already contains a conflicting type, then throw an
346 /// exception.  This returns true if any information was updated.
347 ///
348 bool TreePatternNode::UpdateNodeType(const std::vector<unsigned char> &ExtVTs,
349                                      TreePattern &TP) {
350   assert(!ExtVTs.empty() && "Cannot update node type with empty type vector!");
351   
352   if (ExtVTs[0] == MVT::isUnknown || LHSIsSubsetOfRHS(getExtTypes(), ExtVTs)) 
353     return false;
354   if (isTypeCompletelyUnknown() || LHSIsSubsetOfRHS(ExtVTs, getExtTypes())) {
355     setTypes(ExtVTs);
356     return true;
357   }
358
359   if (getExtTypeNum(0) == MVT::iPTR) {
360     if (ExtVTs[0] == MVT::iPTR || ExtVTs[0] == MVT::isInt)
361       return false;
362     if (isExtIntegerInVTs(ExtVTs)) {
363       std::vector<unsigned char> FVTs = FilterEVTs(ExtVTs, MVT::isInteger);
364       if (FVTs.size()) {
365         setTypes(ExtVTs);
366         return true;
367       }
368     }
369   }
370   
371   if (ExtVTs[0] == MVT::isInt && isExtIntegerInVTs(getExtTypes())) {
372     assert(hasTypeSet() && "should be handled above!");
373     std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), MVT::isInteger);
374     if (getExtTypes() == FVTs)
375       return false;
376     setTypes(FVTs);
377     return true;
378   }
379   if (ExtVTs[0] == MVT::iPTR && isExtIntegerInVTs(getExtTypes())) {
380     //assert(hasTypeSet() && "should be handled above!");
381     std::vector<unsigned char> FVTs = FilterEVTs(getExtTypes(), MVT::isInteger);
382     if (getExtTypes() == FVTs)
383       return false;
384     if (FVTs.size()) {
385       setTypes(FVTs);
386       return true;
387     }
388   }      
389   if (ExtVTs[0] == MVT::isFP  && isExtFloatingPointInVTs(getExtTypes())) {
390     assert(hasTypeSet() && "should be handled above!");
391     std::vector<unsigned char> FVTs =
392       FilterEVTs(getExtTypes(), MVT::isFloatingPoint);
393     if (getExtTypes() == FVTs)
394       return false;
395     setTypes(FVTs);
396     return true;
397   }
398       
399   // If we know this is an int or fp type, and we are told it is a specific one,
400   // take the advice.
401   //
402   // Similarly, we should probably set the type here to the intersection of
403   // {isInt|isFP} and ExtVTs
404   if ((getExtTypeNum(0) == MVT::isInt && isExtIntegerInVTs(ExtVTs)) ||
405       (getExtTypeNum(0) == MVT::isFP  && isExtFloatingPointInVTs(ExtVTs))) {
406     setTypes(ExtVTs);
407     return true;
408   }
409   if (getExtTypeNum(0) == MVT::isInt && ExtVTs[0] == MVT::iPTR) {
410     setTypes(ExtVTs);
411     return true;
412   }
413
414   if (isLeaf()) {
415     dump();
416     cerr << " ";
417     TP.error("Type inference contradiction found in node!");
418   } else {
419     TP.error("Type inference contradiction found in node " + 
420              getOperator()->getName() + "!");
421   }
422   return true; // unreachable
423 }
424
425
426 void TreePatternNode::print(std::ostream &OS) const {
427   if (isLeaf()) {
428     OS << *getLeafValue();
429   } else {
430     OS << "(" << getOperator()->getName();
431   }
432   
433   // FIXME: At some point we should handle printing all the value types for 
434   // nodes that are multiply typed.
435   switch (getExtTypeNum(0)) {
436   case MVT::Other: OS << ":Other"; break;
437   case MVT::isInt: OS << ":isInt"; break;
438   case MVT::isFP : OS << ":isFP"; break;
439   case MVT::isUnknown: ; /*OS << ":?";*/ break;
440   case MVT::iPTR:  OS << ":iPTR"; break;
441   default: {
442     std::string VTName = llvm::getName(getTypeNum(0));
443     // Strip off MVT:: prefix if present.
444     if (VTName.substr(0,5) == "MVT::")
445       VTName = VTName.substr(5);
446     OS << ":" << VTName;
447     break;
448   }
449   }
450
451   if (!isLeaf()) {
452     if (getNumChildren() != 0) {
453       OS << " ";
454       getChild(0)->print(OS);
455       for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
456         OS << ", ";
457         getChild(i)->print(OS);
458       }
459     }
460     OS << ")";
461   }
462   
463   if (!PredicateFn.empty())
464     OS << "<<P:" << PredicateFn << ">>";
465   if (TransformFn)
466     OS << "<<X:" << TransformFn->getName() << ">>";
467   if (!getName().empty())
468     OS << ":$" << getName();
469
470 }
471 void TreePatternNode::dump() const {
472   print(*cerr.stream());
473 }
474
475 /// isIsomorphicTo - Return true if this node is recursively isomorphic to
476 /// the specified node.  For this comparison, all of the state of the node
477 /// is considered, except for the assigned name.  Nodes with differing names
478 /// that are otherwise identical are considered isomorphic.
479 bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N) const {
480   if (N == this) return true;
481   if (N->isLeaf() != isLeaf() || getExtTypes() != N->getExtTypes() ||
482       getPredicateFn() != N->getPredicateFn() ||
483       getTransformFn() != N->getTransformFn())
484     return false;
485
486   if (isLeaf()) {
487     if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue()))
488       if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue()))
489         return DI->getDef() == NDI->getDef();
490     return getLeafValue() == N->getLeafValue();
491   }
492   
493   if (N->getOperator() != getOperator() ||
494       N->getNumChildren() != getNumChildren()) return false;
495   for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
496     if (!getChild(i)->isIsomorphicTo(N->getChild(i)))
497       return false;
498   return true;
499 }
500
501 /// clone - Make a copy of this tree and all of its children.
502 ///
503 TreePatternNode *TreePatternNode::clone() const {
504   TreePatternNode *New;
505   if (isLeaf()) {
506     New = new TreePatternNode(getLeafValue());
507   } else {
508     std::vector<TreePatternNode*> CChildren;
509     CChildren.reserve(Children.size());
510     for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
511       CChildren.push_back(getChild(i)->clone());
512     New = new TreePatternNode(getOperator(), CChildren);
513   }
514   New->setName(getName());
515   New->setTypes(getExtTypes());
516   New->setPredicateFn(getPredicateFn());
517   New->setTransformFn(getTransformFn());
518   return New;
519 }
520
521 /// SubstituteFormalArguments - Replace the formal arguments in this tree
522 /// with actual values specified by ArgMap.
523 void TreePatternNode::
524 SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) {
525   if (isLeaf()) return;
526   
527   for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
528     TreePatternNode *Child = getChild(i);
529     if (Child->isLeaf()) {
530       Init *Val = Child->getLeafValue();
531       if (dynamic_cast<DefInit*>(Val) &&
532           static_cast<DefInit*>(Val)->getDef()->getName() == "node") {
533         // We found a use of a formal argument, replace it with its value.
534         Child = ArgMap[Child->getName()];
535         assert(Child && "Couldn't find formal argument!");
536         setChild(i, Child);
537       }
538     } else {
539       getChild(i)->SubstituteFormalArguments(ArgMap);
540     }
541   }
542 }
543
544
545 /// InlinePatternFragments - If this pattern refers to any pattern
546 /// fragments, inline them into place, giving us a pattern without any
547 /// PatFrag references.
548 TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
549   if (isLeaf()) return this;  // nothing to do.
550   Record *Op = getOperator();
551   
552   if (!Op->isSubClassOf("PatFrag")) {
553     // Just recursively inline children nodes.
554     for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
555       setChild(i, getChild(i)->InlinePatternFragments(TP));
556     return this;
557   }
558
559   // Otherwise, we found a reference to a fragment.  First, look up its
560   // TreePattern record.
561   TreePattern *Frag = TP.getDAGISelEmitter().getPatternFragment(Op);
562   
563   // Verify that we are passing the right number of operands.
564   if (Frag->getNumArgs() != Children.size())
565     TP.error("'" + Op->getName() + "' fragment requires " +
566              utostr(Frag->getNumArgs()) + " operands!");
567
568   TreePatternNode *FragTree = Frag->getOnlyTree()->clone();
569
570   // Resolve formal arguments to their actual value.
571   if (Frag->getNumArgs()) {
572     // Compute the map of formal to actual arguments.
573     std::map<std::string, TreePatternNode*> ArgMap;
574     for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i)
575       ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP);
576   
577     FragTree->SubstituteFormalArguments(ArgMap);
578   }
579   
580   FragTree->setName(getName());
581   FragTree->UpdateNodeType(getExtTypes(), TP);
582   
583   // Get a new copy of this fragment to stitch into here.
584   //delete this;    // FIXME: implement refcounting!
585   return FragTree;
586 }
587
588 /// getImplicitType - Check to see if the specified record has an implicit
589 /// type which should be applied to it.  This infer the type of register
590 /// references from the register file information, for example.
591 ///
592 static std::vector<unsigned char> getImplicitType(Record *R, bool NotRegisters,
593                                       TreePattern &TP) {
594   // Some common return values
595   std::vector<unsigned char> Unknown(1, MVT::isUnknown);
596   std::vector<unsigned char> Other(1, MVT::Other);
597
598   // Check to see if this is a register or a register class...
599   if (R->isSubClassOf("RegisterClass")) {
600     if (NotRegisters) 
601       return Unknown;
602     const CodeGenRegisterClass &RC = 
603       TP.getDAGISelEmitter().getTargetInfo().getRegisterClass(R);
604     return ConvertVTs(RC.getValueTypes());
605   } else if (R->isSubClassOf("PatFrag")) {
606     // Pattern fragment types will be resolved when they are inlined.
607     return Unknown;
608   } else if (R->isSubClassOf("Register")) {
609     if (NotRegisters) 
610       return Unknown;
611     const CodeGenTarget &T = TP.getDAGISelEmitter().getTargetInfo();
612     return T.getRegisterVTs(R);
613   } else if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) {
614     // Using a VTSDNode or CondCodeSDNode.
615     return Other;
616   } else if (R->isSubClassOf("ComplexPattern")) {
617     if (NotRegisters) 
618       return Unknown;
619     std::vector<unsigned char>
620     ComplexPat(1, TP.getDAGISelEmitter().getComplexPattern(R).getValueType());
621     return ComplexPat;
622   } else if (R->getName() == "ptr_rc") {
623     Other[0] = MVT::iPTR;
624     return Other;
625   } else if (R->getName() == "node" || R->getName() == "srcvalue") {
626     // Placeholder.
627     return Unknown;
628   }
629   
630   TP.error("Unknown node flavor used in pattern: " + R->getName());
631   return Other;
632 }
633
634 /// ApplyTypeConstraints - Apply all of the type constraints relevent to
635 /// this node and its children in the tree.  This returns true if it makes a
636 /// change, false otherwise.  If a type contradiction is found, throw an
637 /// exception.
638 bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
639   DAGISelEmitter &ISE = TP.getDAGISelEmitter();
640   if (isLeaf()) {
641     if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
642       // If it's a regclass or something else known, include the type.
643       return UpdateNodeType(getImplicitType(DI->getDef(), NotRegisters, TP),TP);
644     } else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
645       // Int inits are always integers. :)
646       bool MadeChange = UpdateNodeType(MVT::isInt, TP);
647       
648       if (hasTypeSet()) {
649         // At some point, it may make sense for this tree pattern to have
650         // multiple types.  Assert here that it does not, so we revisit this
651         // code when appropriate.
652         assert(getExtTypes().size() >= 1 && "TreePattern doesn't have a type!");
653         MVT::ValueType VT = getTypeNum(0);
654         for (unsigned i = 1, e = getExtTypes().size(); i != e; ++i)
655           assert(getTypeNum(i) == VT && "TreePattern has too many types!");
656         
657         VT = getTypeNum(0);
658         if (VT != MVT::iPTR) {
659           unsigned Size = MVT::getSizeInBits(VT);
660           // Make sure that the value is representable for this type.
661           if (Size < 32) {
662             int Val = (II->getValue() << (32-Size)) >> (32-Size);
663             if (Val != II->getValue())
664               TP.error("Sign-extended integer value '" + itostr(II->getValue())+
665                        "' is out of range for type '" + 
666                        getEnumName(getTypeNum(0)) + "'!");
667           }
668         }
669       }
670       
671       return MadeChange;
672     }
673     return false;
674   }
675   
676   // special handling for set, which isn't really an SDNode.
677   if (getOperator()->getName() == "set") {
678     assert (getNumChildren() == 2 && "Only handle 2 operand set's for now!");
679     bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters);
680     MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters);
681     
682     // Types of operands must match.
683     MadeChange |= getChild(0)->UpdateNodeType(getChild(1)->getExtTypes(), TP);
684     MadeChange |= getChild(1)->UpdateNodeType(getChild(0)->getExtTypes(), TP);
685     MadeChange |= UpdateNodeType(MVT::isVoid, TP);
686     return MadeChange;
687   } else if (getOperator() == ISE.get_intrinsic_void_sdnode() ||
688              getOperator() == ISE.get_intrinsic_w_chain_sdnode() ||
689              getOperator() == ISE.get_intrinsic_wo_chain_sdnode()) {
690     unsigned IID = 
691     dynamic_cast<IntInit*>(getChild(0)->getLeafValue())->getValue();
692     const CodeGenIntrinsic &Int = ISE.getIntrinsicInfo(IID);
693     bool MadeChange = false;
694     
695     // Apply the result type to the node.
696     MadeChange = UpdateNodeType(Int.ArgVTs[0], TP);
697     
698     if (getNumChildren() != Int.ArgVTs.size())
699       TP.error("Intrinsic '" + Int.Name + "' expects " +
700                utostr(Int.ArgVTs.size()-1) + " operands, not " +
701                utostr(getNumChildren()-1) + " operands!");
702
703     // Apply type info to the intrinsic ID.
704     MadeChange |= getChild(0)->UpdateNodeType(MVT::iPTR, TP);
705     
706     for (unsigned i = 1, e = getNumChildren(); i != e; ++i) {
707       MVT::ValueType OpVT = Int.ArgVTs[i];
708       MadeChange |= getChild(i)->UpdateNodeType(OpVT, TP);
709       MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
710     }
711     return MadeChange;
712   } else if (getOperator()->isSubClassOf("SDNode")) {
713     const SDNodeInfo &NI = ISE.getSDNodeInfo(getOperator());
714     
715     bool MadeChange = NI.ApplyTypeConstraints(this, TP);
716     for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
717       MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters);
718     // Branch, etc. do not produce results and top-level forms in instr pattern
719     // must have void types.
720     if (NI.getNumResults() == 0)
721       MadeChange |= UpdateNodeType(MVT::isVoid, TP);
722     
723     // If this is a vector_shuffle operation, apply types to the build_vector
724     // operation.  The types of the integers don't matter, but this ensures they
725     // won't get checked.
726     if (getOperator()->getName() == "vector_shuffle" &&
727         getChild(2)->getOperator()->getName() == "build_vector") {
728       TreePatternNode *BV = getChild(2);
729       const std::vector<MVT::ValueType> &LegalVTs
730         = ISE.getTargetInfo().getLegalValueTypes();
731       MVT::ValueType LegalIntVT = MVT::Other;
732       for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
733         if (MVT::isInteger(LegalVTs[i]) && !MVT::isVector(LegalVTs[i])) {
734           LegalIntVT = LegalVTs[i];
735           break;
736         }
737       assert(LegalIntVT != MVT::Other && "No legal integer VT?");
738             
739       for (unsigned i = 0, e = BV->getNumChildren(); i != e; ++i)
740         MadeChange |= BV->getChild(i)->UpdateNodeType(LegalIntVT, TP);
741     }
742     return MadeChange;  
743   } else if (getOperator()->isSubClassOf("Instruction")) {
744     const DAGInstruction &Inst = ISE.getInstruction(getOperator());
745     bool MadeChange = false;
746     unsigned NumResults = Inst.getNumResults();
747     
748     assert(NumResults <= 1 &&
749            "Only supports zero or one result instrs!");
750
751     CodeGenInstruction &InstInfo =
752       ISE.getTargetInfo().getInstruction(getOperator()->getName());
753     // Apply the result type to the node
754     if (NumResults == 0 || InstInfo.noResults) { // FIXME: temporary hack.
755       MadeChange = UpdateNodeType(MVT::isVoid, TP);
756     } else {
757       Record *ResultNode = Inst.getResult(0);
758       
759       if (ResultNode->getName() == "ptr_rc") {
760         std::vector<unsigned char> VT;
761         VT.push_back(MVT::iPTR);
762         MadeChange = UpdateNodeType(VT, TP);
763       } else {
764         assert(ResultNode->isSubClassOf("RegisterClass") &&
765                "Operands should be register classes!");
766
767         const CodeGenRegisterClass &RC = 
768           ISE.getTargetInfo().getRegisterClass(ResultNode);
769         MadeChange = UpdateNodeType(ConvertVTs(RC.getValueTypes()), TP);
770       }
771     }
772
773     unsigned ChildNo = 0;
774     for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i) {
775       Record *OperandNode = Inst.getOperand(i);
776       
777       // If the instruction expects a predicate operand, we codegen this by
778       // setting the predicate to it's "execute always" value if it has a
779       // non-empty ExecuteAlways field.
780       if (OperandNode->isSubClassOf("PredicateOperand") &&
781           !ISE.getPredicateOperand(OperandNode).AlwaysOps.empty())
782         continue;
783        
784       // Verify that we didn't run out of provided operands.
785       if (ChildNo >= getNumChildren())
786         TP.error("Instruction '" + getOperator()->getName() +
787                  "' expects more operands than were provided.");
788       
789       MVT::ValueType VT;
790       TreePatternNode *Child = getChild(ChildNo++);
791       if (OperandNode->isSubClassOf("RegisterClass")) {
792         const CodeGenRegisterClass &RC = 
793           ISE.getTargetInfo().getRegisterClass(OperandNode);
794         MadeChange |= Child->UpdateNodeType(ConvertVTs(RC.getValueTypes()), TP);
795       } else if (OperandNode->isSubClassOf("Operand")) {
796         VT = getValueType(OperandNode->getValueAsDef("Type"));
797         MadeChange |= Child->UpdateNodeType(VT, TP);
798       } else if (OperandNode->getName() == "ptr_rc") {
799         MadeChange |= Child->UpdateNodeType(MVT::iPTR, TP);
800       } else {
801         assert(0 && "Unknown operand type!");
802         abort();
803       }
804       MadeChange |= Child->ApplyTypeConstraints(TP, NotRegisters);
805     }
806     
807     if (ChildNo != getNumChildren())
808       TP.error("Instruction '" + getOperator()->getName() +
809                "' was provided too many operands!");
810     
811     return MadeChange;
812   } else {
813     assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!");
814     
815     // Node transforms always take one operand.
816     if (getNumChildren() != 1)
817       TP.error("Node transform '" + getOperator()->getName() +
818                "' requires one operand!");
819
820     // If either the output or input of the xform does not have exact
821     // type info. We assume they must be the same. Otherwise, it is perfectly
822     // legal to transform from one type to a completely different type.
823     if (!hasTypeSet() || !getChild(0)->hasTypeSet()) {
824       bool MadeChange = UpdateNodeType(getChild(0)->getExtTypes(), TP);
825       MadeChange |= getChild(0)->UpdateNodeType(getExtTypes(), TP);
826       return MadeChange;
827     }
828     return false;
829   }
830 }
831
832 /// OnlyOnRHSOfCommutative - Return true if this value is only allowed on the
833 /// RHS of a commutative operation, not the on LHS.
834 static bool OnlyOnRHSOfCommutative(TreePatternNode *N) {
835   if (!N->isLeaf() && N->getOperator()->getName() == "imm")
836     return true;
837   if (N->isLeaf() && dynamic_cast<IntInit*>(N->getLeafValue()))
838     return true;
839   return false;
840 }
841
842
843 /// canPatternMatch - If it is impossible for this pattern to match on this
844 /// target, fill in Reason and return false.  Otherwise, return true.  This is
845 /// used as a santity check for .td files (to prevent people from writing stuff
846 /// that can never possibly work), and to prevent the pattern permuter from
847 /// generating stuff that is useless.
848 bool TreePatternNode::canPatternMatch(std::string &Reason, DAGISelEmitter &ISE){
849   if (isLeaf()) return true;
850
851   for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
852     if (!getChild(i)->canPatternMatch(Reason, ISE))
853       return false;
854
855   // If this is an intrinsic, handle cases that would make it not match.  For
856   // example, if an operand is required to be an immediate.
857   if (getOperator()->isSubClassOf("Intrinsic")) {
858     // TODO:
859     return true;
860   }
861   
862   // If this node is a commutative operator, check that the LHS isn't an
863   // immediate.
864   const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(getOperator());
865   if (NodeInfo.hasProperty(SDNPCommutative)) {
866     // Scan all of the operands of the node and make sure that only the last one
867     // is a constant node, unless the RHS also is.
868     if (!OnlyOnRHSOfCommutative(getChild(getNumChildren()-1))) {
869       for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i)
870         if (OnlyOnRHSOfCommutative(getChild(i))) {
871           Reason="Immediate value must be on the RHS of commutative operators!";
872           return false;
873         }
874     }
875   }
876   
877   return true;
878 }
879
880 //===----------------------------------------------------------------------===//
881 // TreePattern implementation
882 //
883
884 TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput,
885                          DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
886    isInputPattern = isInput;
887    for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i)
888      Trees.push_back(ParseTreePattern((DagInit*)RawPat->getElement(i)));
889 }
890
891 TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput,
892                          DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
893   isInputPattern = isInput;
894   Trees.push_back(ParseTreePattern(Pat));
895 }
896
897 TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput,
898                          DAGISelEmitter &ise) : TheRecord(TheRec), ISE(ise) {
899   isInputPattern = isInput;
900   Trees.push_back(Pat);
901 }
902
903
904
905 void TreePattern::error(const std::string &Msg) const {
906   dump();
907   throw "In " + TheRecord->getName() + ": " + Msg;
908 }
909
910 TreePatternNode *TreePattern::ParseTreePattern(DagInit *Dag) {
911   DefInit *OpDef = dynamic_cast<DefInit*>(Dag->getOperator());
912   if (!OpDef) error("Pattern has unexpected operator type!");
913   Record *Operator = OpDef->getDef();
914   
915   if (Operator->isSubClassOf("ValueType")) {
916     // If the operator is a ValueType, then this must be "type cast" of a leaf
917     // node.
918     if (Dag->getNumArgs() != 1)
919       error("Type cast only takes one operand!");
920     
921     Init *Arg = Dag->getArg(0);
922     TreePatternNode *New;
923     if (DefInit *DI = dynamic_cast<DefInit*>(Arg)) {
924       Record *R = DI->getDef();
925       if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
926         Dag->setArg(0, new DagInit(DI,
927                                 std::vector<std::pair<Init*, std::string> >()));
928         return ParseTreePattern(Dag);
929       }
930       New = new TreePatternNode(DI);
931     } else if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
932       New = ParseTreePattern(DI);
933     } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
934       New = new TreePatternNode(II);
935       if (!Dag->getArgName(0).empty())
936         error("Constant int argument should not have a name!");
937     } else if (BitsInit *BI = dynamic_cast<BitsInit*>(Arg)) {
938       // Turn this into an IntInit.
939       Init *II = BI->convertInitializerTo(new IntRecTy());
940       if (II == 0 || !dynamic_cast<IntInit*>(II))
941         error("Bits value must be constants!");
942       
943       New = new TreePatternNode(dynamic_cast<IntInit*>(II));
944       if (!Dag->getArgName(0).empty())
945         error("Constant int argument should not have a name!");
946     } else {
947       Arg->dump();
948       error("Unknown leaf value for tree pattern!");
949       return 0;
950     }
951     
952     // Apply the type cast.
953     New->UpdateNodeType(getValueType(Operator), *this);
954     New->setName(Dag->getArgName(0));
955     return New;
956   }
957   
958   // Verify that this is something that makes sense for an operator.
959   if (!Operator->isSubClassOf("PatFrag") && !Operator->isSubClassOf("SDNode") &&
960       !Operator->isSubClassOf("Instruction") && 
961       !Operator->isSubClassOf("SDNodeXForm") &&
962       !Operator->isSubClassOf("Intrinsic") &&
963       Operator->getName() != "set")
964     error("Unrecognized node '" + Operator->getName() + "'!");
965   
966   //  Check to see if this is something that is illegal in an input pattern.
967   if (isInputPattern && (Operator->isSubClassOf("Instruction") ||
968                          Operator->isSubClassOf("SDNodeXForm")))
969     error("Cannot use '" + Operator->getName() + "' in an input pattern!");
970   
971   std::vector<TreePatternNode*> Children;
972   
973   for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) {
974     Init *Arg = Dag->getArg(i);
975     if (DagInit *DI = dynamic_cast<DagInit*>(Arg)) {
976       Children.push_back(ParseTreePattern(DI));
977       if (Children.back()->getName().empty())
978         Children.back()->setName(Dag->getArgName(i));
979     } else if (DefInit *DefI = dynamic_cast<DefInit*>(Arg)) {
980       Record *R = DefI->getDef();
981       // Direct reference to a leaf DagNode or PatFrag?  Turn it into a
982       // TreePatternNode if its own.
983       if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) {
984         Dag->setArg(i, new DagInit(DefI,
985                               std::vector<std::pair<Init*, std::string> >()));
986         --i;  // Revisit this node...
987       } else {
988         TreePatternNode *Node = new TreePatternNode(DefI);
989         Node->setName(Dag->getArgName(i));
990         Children.push_back(Node);
991         
992         // Input argument?
993         if (R->getName() == "node") {
994           if (Dag->getArgName(i).empty())
995             error("'node' argument requires a name to match with operand list");
996           Args.push_back(Dag->getArgName(i));
997         }
998       }
999     } else if (IntInit *II = dynamic_cast<IntInit*>(Arg)) {
1000       TreePatternNode *Node = new TreePatternNode(II);
1001       if (!Dag->getArgName(i).empty())
1002         error("Constant int argument should not have a name!");
1003       Children.push_back(Node);
1004     } else if (BitsInit *BI = dynamic_cast<BitsInit*>(Arg)) {
1005       // Turn this into an IntInit.
1006       Init *II = BI->convertInitializerTo(new IntRecTy());
1007       if (II == 0 || !dynamic_cast<IntInit*>(II))
1008         error("Bits value must be constants!");
1009       
1010       TreePatternNode *Node = new TreePatternNode(dynamic_cast<IntInit*>(II));
1011       if (!Dag->getArgName(i).empty())
1012         error("Constant int argument should not have a name!");
1013       Children.push_back(Node);
1014     } else {
1015       cerr << '"';
1016       Arg->dump();
1017       cerr << "\": ";
1018       error("Unknown leaf value for tree pattern!");
1019     }
1020   }
1021   
1022   // If the operator is an intrinsic, then this is just syntactic sugar for for
1023   // (intrinsic_* <number>, ..children..).  Pick the right intrinsic node, and 
1024   // convert the intrinsic name to a number.
1025   if (Operator->isSubClassOf("Intrinsic")) {
1026     const CodeGenIntrinsic &Int = getDAGISelEmitter().getIntrinsic(Operator);
1027     unsigned IID = getDAGISelEmitter().getIntrinsicID(Operator)+1;
1028
1029     // If this intrinsic returns void, it must have side-effects and thus a
1030     // chain.
1031     if (Int.ArgVTs[0] == MVT::isVoid) {
1032       Operator = getDAGISelEmitter().get_intrinsic_void_sdnode();
1033     } else if (Int.ModRef != CodeGenIntrinsic::NoMem) {
1034       // Has side-effects, requires chain.
1035       Operator = getDAGISelEmitter().get_intrinsic_w_chain_sdnode();
1036     } else {
1037       // Otherwise, no chain.
1038       Operator = getDAGISelEmitter().get_intrinsic_wo_chain_sdnode();
1039     }
1040     
1041     TreePatternNode *IIDNode = new TreePatternNode(new IntInit(IID));
1042     Children.insert(Children.begin(), IIDNode);
1043   }
1044   
1045   return new TreePatternNode(Operator, Children);
1046 }
1047
1048 /// InferAllTypes - Infer/propagate as many types throughout the expression
1049 /// patterns as possible.  Return true if all types are infered, false
1050 /// otherwise.  Throw an exception if a type contradiction is found.
1051 bool TreePattern::InferAllTypes() {
1052   bool MadeChange = true;
1053   while (MadeChange) {
1054     MadeChange = false;
1055     for (unsigned i = 0, e = Trees.size(); i != e; ++i)
1056       MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false);
1057   }
1058   
1059   bool HasUnresolvedTypes = false;
1060   for (unsigned i = 0, e = Trees.size(); i != e; ++i)
1061     HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType();
1062   return !HasUnresolvedTypes;
1063 }
1064
1065 void TreePattern::print(std::ostream &OS) const {
1066   OS << getRecord()->getName();
1067   if (!Args.empty()) {
1068     OS << "(" << Args[0];
1069     for (unsigned i = 1, e = Args.size(); i != e; ++i)
1070       OS << ", " << Args[i];
1071     OS << ")";
1072   }
1073   OS << ": ";
1074   
1075   if (Trees.size() > 1)
1076     OS << "[\n";
1077   for (unsigned i = 0, e = Trees.size(); i != e; ++i) {
1078     OS << "\t";
1079     Trees[i]->print(OS);
1080     OS << "\n";
1081   }
1082
1083   if (Trees.size() > 1)
1084     OS << "]\n";
1085 }
1086
1087 void TreePattern::dump() const { print(*cerr.stream()); }
1088
1089
1090
1091 //===----------------------------------------------------------------------===//
1092 // DAGISelEmitter implementation
1093 //
1094
1095 // Parse all of the SDNode definitions for the target, populating SDNodes.
1096 void DAGISelEmitter::ParseNodeInfo() {
1097   std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode");
1098   while (!Nodes.empty()) {
1099     SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back()));
1100     Nodes.pop_back();
1101   }
1102
1103   // Get the buildin intrinsic nodes.
1104   intrinsic_void_sdnode     = getSDNodeNamed("intrinsic_void");
1105   intrinsic_w_chain_sdnode  = getSDNodeNamed("intrinsic_w_chain");
1106   intrinsic_wo_chain_sdnode = getSDNodeNamed("intrinsic_wo_chain");
1107 }
1108
1109 /// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms
1110 /// map, and emit them to the file as functions.
1111 void DAGISelEmitter::ParseNodeTransforms(std::ostream &OS) {
1112   OS << "\n// Node transformations.\n";
1113   std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm");
1114   while (!Xforms.empty()) {
1115     Record *XFormNode = Xforms.back();
1116     Record *SDNode = XFormNode->getValueAsDef("Opcode");
1117     std::string Code = XFormNode->getValueAsCode("XFormFunction");
1118     SDNodeXForms.insert(std::make_pair(XFormNode,
1119                                        std::make_pair(SDNode, Code)));
1120
1121     if (!Code.empty()) {
1122       std::string ClassName = getSDNodeInfo(SDNode).getSDClassName();
1123       const char *C2 = ClassName == "SDNode" ? "N" : "inN";
1124
1125       OS << "inline SDOperand Transform_" << XFormNode->getName()
1126          << "(SDNode *" << C2 << ") {\n";
1127       if (ClassName != "SDNode")
1128         OS << "  " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
1129       OS << Code << "\n}\n";
1130     }
1131
1132     Xforms.pop_back();
1133   }
1134 }
1135
1136 void DAGISelEmitter::ParseComplexPatterns() {
1137   std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern");
1138   while (!AMs.empty()) {
1139     ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back()));
1140     AMs.pop_back();
1141   }
1142 }
1143
1144
1145 /// ParsePatternFragments - Parse all of the PatFrag definitions in the .td
1146 /// file, building up the PatternFragments map.  After we've collected them all,
1147 /// inline fragments together as necessary, so that there are no references left
1148 /// inside a pattern fragment to a pattern fragment.
1149 ///
1150 /// This also emits all of the predicate functions to the output file.
1151 ///
1152 void DAGISelEmitter::ParsePatternFragments(std::ostream &OS) {
1153   std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag");
1154   
1155   // First step, parse all of the fragments and emit predicate functions.
1156   OS << "\n// Predicate functions.\n";
1157   for (unsigned i = 0, e = Fragments.size(); i != e; ++i) {
1158     DagInit *Tree = Fragments[i]->getValueAsDag("Fragment");
1159     TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this);
1160     PatternFragments[Fragments[i]] = P;
1161     
1162     // Validate the argument list, converting it to map, to discard duplicates.
1163     std::vector<std::string> &Args = P->getArgList();
1164     std::set<std::string> OperandsMap(Args.begin(), Args.end());
1165     
1166     if (OperandsMap.count(""))
1167       P->error("Cannot have unnamed 'node' values in pattern fragment!");
1168     
1169     // Parse the operands list.
1170     DagInit *OpsList = Fragments[i]->getValueAsDag("Operands");
1171     DefInit *OpsOp = dynamic_cast<DefInit*>(OpsList->getOperator());
1172     if (!OpsOp || OpsOp->getDef()->getName() != "ops")
1173       P->error("Operands list should start with '(ops ... '!");
1174     
1175     // Copy over the arguments.       
1176     Args.clear();
1177     for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) {
1178       if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) ||
1179           static_cast<DefInit*>(OpsList->getArg(j))->
1180           getDef()->getName() != "node")
1181         P->error("Operands list should all be 'node' values.");
1182       if (OpsList->getArgName(j).empty())
1183         P->error("Operands list should have names for each operand!");
1184       if (!OperandsMap.count(OpsList->getArgName(j)))
1185         P->error("'" + OpsList->getArgName(j) +
1186                  "' does not occur in pattern or was multiply specified!");
1187       OperandsMap.erase(OpsList->getArgName(j));
1188       Args.push_back(OpsList->getArgName(j));
1189     }
1190     
1191     if (!OperandsMap.empty())
1192       P->error("Operands list does not contain an entry for operand '" +
1193                *OperandsMap.begin() + "'!");
1194
1195     // If there is a code init for this fragment, emit the predicate code and
1196     // keep track of the fact that this fragment uses it.
1197     std::string Code = Fragments[i]->getValueAsCode("Predicate");
1198     if (!Code.empty()) {
1199       if (P->getOnlyTree()->isLeaf())
1200         OS << "inline bool Predicate_" << Fragments[i]->getName()
1201            << "(SDNode *N) {\n";
1202       else {
1203         std::string ClassName =
1204           getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
1205         const char *C2 = ClassName == "SDNode" ? "N" : "inN";
1206       
1207         OS << "inline bool Predicate_" << Fragments[i]->getName()
1208            << "(SDNode *" << C2 << ") {\n";
1209         if (ClassName != "SDNode")
1210           OS << "  " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
1211       }
1212       OS << Code << "\n}\n";
1213       P->getOnlyTree()->setPredicateFn("Predicate_"+Fragments[i]->getName());
1214     }
1215     
1216     // If there is a node transformation corresponding to this, keep track of
1217     // it.
1218     Record *Transform = Fragments[i]->getValueAsDef("OperandTransform");
1219     if (!getSDNodeTransform(Transform).second.empty())    // not noop xform?
1220       P->getOnlyTree()->setTransformFn(Transform);
1221   }
1222   
1223   OS << "\n\n";
1224
1225   // Now that we've parsed all of the tree fragments, do a closure on them so
1226   // that there are not references to PatFrags left inside of them.
1227   for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
1228        E = PatternFragments.end(); I != E; ++I) {
1229     TreePattern *ThePat = I->second;
1230     ThePat->InlinePatternFragments();
1231         
1232     // Infer as many types as possible.  Don't worry about it if we don't infer
1233     // all of them, some may depend on the inputs of the pattern.
1234     try {
1235       ThePat->InferAllTypes();
1236     } catch (...) {
1237       // If this pattern fragment is not supported by this target (no types can
1238       // satisfy its constraints), just ignore it.  If the bogus pattern is
1239       // actually used by instructions, the type consistency error will be
1240       // reported there.
1241     }
1242     
1243     // If debugging, print out the pattern fragment result.
1244     DEBUG(ThePat->dump());
1245   }
1246 }
1247
1248 void DAGISelEmitter::ParsePredicateOperands() {
1249   std::vector<Record*> PredOps =
1250     Records.getAllDerivedDefinitions("PredicateOperand");
1251
1252   // Find some SDNode.
1253   assert(!SDNodes.empty() && "No SDNodes parsed?");
1254   Init *SomeSDNode = new DefInit(SDNodes.begin()->first);
1255   
1256   for (unsigned i = 0, e = PredOps.size(); i != e; ++i) {
1257     DagInit *AlwaysInfo = PredOps[i]->getValueAsDag("ExecuteAlways");
1258     
1259     // Clone the AlwaysInfo dag node, changing the operator from 'ops' to
1260     // SomeSDnode so that we can parse this.
1261     std::vector<std::pair<Init*, std::string> > Ops;
1262     for (unsigned op = 0, e = AlwaysInfo->getNumArgs(); op != e; ++op)
1263       Ops.push_back(std::make_pair(AlwaysInfo->getArg(op),
1264                                    AlwaysInfo->getArgName(op)));
1265     DagInit *DI = new DagInit(SomeSDNode, Ops);
1266     
1267     // Create a TreePattern to parse this.
1268     TreePattern P(PredOps[i], DI, false, *this);
1269     assert(P.getNumTrees() == 1 && "This ctor can only produce one tree!");
1270
1271     // Copy the operands over into a DAGPredicateOperand.
1272     DAGPredicateOperand PredOpInfo;
1273     
1274     TreePatternNode *T = P.getTree(0);
1275     for (unsigned op = 0, e = T->getNumChildren(); op != e; ++op) {
1276       TreePatternNode *TPN = T->getChild(op);
1277       while (TPN->ApplyTypeConstraints(P, false))
1278         /* Resolve all types */;
1279       
1280       if (TPN->ContainsUnresolvedType())
1281         throw "Value #" + utostr(i) + " of PredicateOperand '" +
1282               PredOps[i]->getName() + "' doesn't have a concrete type!";
1283       
1284       PredOpInfo.AlwaysOps.push_back(TPN);
1285     }
1286
1287     // Insert it into the PredicateOperands map so we can find it later.
1288     PredicateOperands[PredOps[i]] = PredOpInfo;
1289   }
1290 }
1291
1292 /// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
1293 /// instruction input.  Return true if this is a real use.
1294 static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
1295                       std::map<std::string, TreePatternNode*> &InstInputs,
1296                       std::vector<Record*> &InstImpInputs) {
1297   // No name -> not interesting.
1298   if (Pat->getName().empty()) {
1299     if (Pat->isLeaf()) {
1300       DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1301       if (DI && DI->getDef()->isSubClassOf("RegisterClass"))
1302         I->error("Input " + DI->getDef()->getName() + " must be named!");
1303       else if (DI && DI->getDef()->isSubClassOf("Register")) 
1304         InstImpInputs.push_back(DI->getDef());
1305     }
1306     return false;
1307   }
1308
1309   Record *Rec;
1310   if (Pat->isLeaf()) {
1311     DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue());
1312     if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!");
1313     Rec = DI->getDef();
1314   } else {
1315     assert(Pat->getNumChildren() == 0 && "can't be a use with children!");
1316     Rec = Pat->getOperator();
1317   }
1318
1319   // SRCVALUE nodes are ignored.
1320   if (Rec->getName() == "srcvalue")
1321     return false;
1322
1323   TreePatternNode *&Slot = InstInputs[Pat->getName()];
1324   if (!Slot) {
1325     Slot = Pat;
1326   } else {
1327     Record *SlotRec;
1328     if (Slot->isLeaf()) {
1329       SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef();
1330     } else {
1331       assert(Slot->getNumChildren() == 0 && "can't be a use with children!");
1332       SlotRec = Slot->getOperator();
1333     }
1334     
1335     // Ensure that the inputs agree if we've already seen this input.
1336     if (Rec != SlotRec)
1337       I->error("All $" + Pat->getName() + " inputs must agree with each other");
1338     if (Slot->getExtTypes() != Pat->getExtTypes())
1339       I->error("All $" + Pat->getName() + " inputs must agree with each other");
1340   }
1341   return true;
1342 }
1343
1344 /// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
1345 /// part of "I", the instruction), computing the set of inputs and outputs of
1346 /// the pattern.  Report errors if we see anything naughty.
1347 void DAGISelEmitter::
1348 FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat,
1349                             std::map<std::string, TreePatternNode*> &InstInputs,
1350                             std::map<std::string, TreePatternNode*>&InstResults,
1351                             std::vector<Record*> &InstImpInputs,
1352                             std::vector<Record*> &InstImpResults) {
1353   if (Pat->isLeaf()) {
1354     bool isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
1355     if (!isUse && Pat->getTransformFn())
1356       I->error("Cannot specify a transform function for a non-input value!");
1357     return;
1358   } else if (Pat->getOperator()->getName() != "set") {
1359     // If this is not a set, verify that the children nodes are not void typed,
1360     // and recurse.
1361     for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) {
1362       if (Pat->getChild(i)->getExtTypeNum(0) == MVT::isVoid)
1363         I->error("Cannot have void nodes inside of patterns!");
1364       FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults,
1365                                   InstImpInputs, InstImpResults);
1366     }
1367     
1368     // If this is a non-leaf node with no children, treat it basically as if
1369     // it were a leaf.  This handles nodes like (imm).
1370     bool isUse = false;
1371     if (Pat->getNumChildren() == 0)
1372       isUse = HandleUse(I, Pat, InstInputs, InstImpInputs);
1373     
1374     if (!isUse && Pat->getTransformFn())
1375       I->error("Cannot specify a transform function for a non-input value!");
1376     return;
1377   } 
1378   
1379   // Otherwise, this is a set, validate and collect instruction results.
1380   if (Pat->getNumChildren() == 0)
1381     I->error("set requires operands!");
1382   else if (Pat->getNumChildren() & 1)
1383     I->error("set requires an even number of operands");
1384   
1385   if (Pat->getTransformFn())
1386     I->error("Cannot specify a transform function on a set node!");
1387   
1388   // Check the set destinations.
1389   unsigned NumValues = Pat->getNumChildren()/2;
1390   for (unsigned i = 0; i != NumValues; ++i) {
1391     TreePatternNode *Dest = Pat->getChild(i);
1392     if (!Dest->isLeaf())
1393       I->error("set destination should be a register!");
1394     
1395     DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue());
1396     if (!Val)
1397       I->error("set destination should be a register!");
1398
1399     if (Val->getDef()->isSubClassOf("RegisterClass") ||
1400         Val->getDef()->getName() == "ptr_rc") {
1401       if (Dest->getName().empty())
1402         I->error("set destination must have a name!");
1403       if (InstResults.count(Dest->getName()))
1404         I->error("cannot set '" + Dest->getName() +"' multiple times");
1405       InstResults[Dest->getName()] = Dest;
1406     } else if (Val->getDef()->isSubClassOf("Register")) {
1407       InstImpResults.push_back(Val->getDef());
1408     } else {
1409       I->error("set destination should be a register!");
1410     }
1411     
1412     // Verify and collect info from the computation.
1413     FindPatternInputsAndOutputs(I, Pat->getChild(i+NumValues),
1414                                 InstInputs, InstResults,
1415                                 InstImpInputs, InstImpResults);
1416   }
1417 }
1418
1419 /// ParseInstructions - Parse all of the instructions, inlining and resolving
1420 /// any fragments involved.  This populates the Instructions list with fully
1421 /// resolved instructions.
1422 void DAGISelEmitter::ParseInstructions() {
1423   std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction");
1424   
1425   for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
1426     ListInit *LI = 0;
1427     
1428     if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern")))
1429       LI = Instrs[i]->getValueAsListInit("Pattern");
1430     
1431     // If there is no pattern, only collect minimal information about the
1432     // instruction for its operand list.  We have to assume that there is one
1433     // result, as we have no detailed info.
1434     if (!LI || LI->getSize() == 0) {
1435       std::vector<Record*> Results;
1436       std::vector<Record*> Operands;
1437       
1438       CodeGenInstruction &InstInfo =Target.getInstruction(Instrs[i]->getName());
1439
1440       if (InstInfo.OperandList.size() != 0) {
1441         // FIXME: temporary hack...
1442         if (InstInfo.noResults) {
1443           // These produce no results
1444           for (unsigned j = 0, e = InstInfo.OperandList.size(); j < e; ++j)
1445             Operands.push_back(InstInfo.OperandList[j].Rec);
1446         } else {
1447           // Assume the first operand is the result.
1448           Results.push_back(InstInfo.OperandList[0].Rec);
1449       
1450           // The rest are inputs.
1451           for (unsigned j = 1, e = InstInfo.OperandList.size(); j < e; ++j)
1452             Operands.push_back(InstInfo.OperandList[j].Rec);
1453         }
1454       }
1455       
1456       // Create and insert the instruction.
1457       std::vector<Record*> ImpResults;
1458       std::vector<Record*> ImpOperands;
1459       Instructions.insert(std::make_pair(Instrs[i], 
1460                           DAGInstruction(0, Results, Operands, ImpResults,
1461                                          ImpOperands)));
1462       continue;  // no pattern.
1463     }
1464     
1465     // Parse the instruction.
1466     TreePattern *I = new TreePattern(Instrs[i], LI, true, *this);
1467     // Inline pattern fragments into it.
1468     I->InlinePatternFragments();
1469     
1470     // Infer as many types as possible.  If we cannot infer all of them, we can
1471     // never do anything with this instruction pattern: report it to the user.
1472     if (!I->InferAllTypes())
1473       I->error("Could not infer all types in pattern!");
1474     
1475     // InstInputs - Keep track of all of the inputs of the instruction, along 
1476     // with the record they are declared as.
1477     std::map<std::string, TreePatternNode*> InstInputs;
1478     
1479     // InstResults - Keep track of all the virtual registers that are 'set'
1480     // in the instruction, including what reg class they are.
1481     std::map<std::string, TreePatternNode*> InstResults;
1482
1483     std::vector<Record*> InstImpInputs;
1484     std::vector<Record*> InstImpResults;
1485     
1486     // Verify that the top-level forms in the instruction are of void type, and
1487     // fill in the InstResults map.
1488     for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) {
1489       TreePatternNode *Pat = I->getTree(j);
1490       if (Pat->getExtTypeNum(0) != MVT::isVoid)
1491         I->error("Top-level forms in instruction pattern should have"
1492                  " void types");
1493
1494       // Find inputs and outputs, and verify the structure of the uses/defs.
1495       FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults,
1496                                   InstImpInputs, InstImpResults);
1497     }
1498
1499     // Now that we have inputs and outputs of the pattern, inspect the operands
1500     // list for the instruction.  This determines the order that operands are
1501     // added to the machine instruction the node corresponds to.
1502     unsigned NumResults = InstResults.size();
1503
1504     // Parse the operands list from the (ops) list, validating it.
1505     std::vector<std::string> &Args = I->getArgList();
1506     assert(Args.empty() && "Args list should still be empty here!");
1507     CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
1508
1509     // Check that all of the results occur first in the list.
1510     std::vector<Record*> Results;
1511     TreePatternNode *Res0Node = NULL;
1512     for (unsigned i = 0; i != NumResults; ++i) {
1513       if (i == CGI.OperandList.size())
1514         I->error("'" + InstResults.begin()->first +
1515                  "' set but does not appear in operand list!");
1516       const std::string &OpName = CGI.OperandList[i].Name;
1517       
1518       // Check that it exists in InstResults.
1519       TreePatternNode *RNode = InstResults[OpName];
1520       if (RNode == 0)
1521         I->error("Operand $" + OpName + " does not exist in operand list!");
1522         
1523       if (i == 0)
1524         Res0Node = RNode;
1525       Record *R = dynamic_cast<DefInit*>(RNode->getLeafValue())->getDef();
1526       if (R == 0)
1527         I->error("Operand $" + OpName + " should be a set destination: all "
1528                  "outputs must occur before inputs in operand list!");
1529       
1530       if (CGI.OperandList[i].Rec != R)
1531         I->error("Operand $" + OpName + " class mismatch!");
1532       
1533       // Remember the return type.
1534       Results.push_back(CGI.OperandList[i].Rec);
1535       
1536       // Okay, this one checks out.
1537       InstResults.erase(OpName);
1538     }
1539
1540     // Loop over the inputs next.  Make a copy of InstInputs so we can destroy
1541     // the copy while we're checking the inputs.
1542     std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs);
1543
1544     std::vector<TreePatternNode*> ResultNodeOperands;
1545     std::vector<Record*> Operands;
1546     for (unsigned i = NumResults, e = CGI.OperandList.size(); i != e; ++i) {
1547       CodeGenInstruction::OperandInfo &Op = CGI.OperandList[i];
1548       const std::string &OpName = Op.Name;
1549       if (OpName.empty())
1550         I->error("Operand #" + utostr(i) + " in operands list has no name!");
1551
1552       if (!InstInputsCheck.count(OpName)) {
1553         // If this is an predicate operand with an ExecuteAlways set filled in,
1554         // we can ignore this.  When we codegen it, we will do so as always
1555         // executed.
1556         if (Op.Rec->isSubClassOf("PredicateOperand")) {
1557           // Does it have a non-empty ExecuteAlways field?  If so, ignore this
1558           // operand.
1559           if (!getPredicateOperand(Op.Rec).AlwaysOps.empty())
1560             continue;
1561         }
1562         I->error("Operand $" + OpName +
1563                  " does not appear in the instruction pattern");
1564       }
1565       TreePatternNode *InVal = InstInputsCheck[OpName];
1566       InstInputsCheck.erase(OpName);   // It occurred, remove from map.
1567       
1568       if (InVal->isLeaf() &&
1569           dynamic_cast<DefInit*>(InVal->getLeafValue())) {
1570         Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef();
1571         if (Op.Rec != InRec && !InRec->isSubClassOf("ComplexPattern"))
1572           I->error("Operand $" + OpName + "'s register class disagrees"
1573                    " between the operand and pattern");
1574       }
1575       Operands.push_back(Op.Rec);
1576       
1577       // Construct the result for the dest-pattern operand list.
1578       TreePatternNode *OpNode = InVal->clone();
1579       
1580       // No predicate is useful on the result.
1581       OpNode->setPredicateFn("");
1582       
1583       // Promote the xform function to be an explicit node if set.
1584       if (Record *Xform = OpNode->getTransformFn()) {
1585         OpNode->setTransformFn(0);
1586         std::vector<TreePatternNode*> Children;
1587         Children.push_back(OpNode);
1588         OpNode = new TreePatternNode(Xform, Children);
1589       }
1590       
1591       ResultNodeOperands.push_back(OpNode);
1592     }
1593     
1594     if (!InstInputsCheck.empty())
1595       I->error("Input operand $" + InstInputsCheck.begin()->first +
1596                " occurs in pattern but not in operands list!");
1597
1598     TreePatternNode *ResultPattern =
1599       new TreePatternNode(I->getRecord(), ResultNodeOperands);
1600     // Copy fully inferred output node type to instruction result pattern.
1601     if (NumResults > 0)
1602       ResultPattern->setTypes(Res0Node->getExtTypes());
1603
1604     // Create and insert the instruction.
1605     DAGInstruction TheInst(I, Results, Operands, InstImpResults, InstImpInputs);
1606     Instructions.insert(std::make_pair(I->getRecord(), TheInst));
1607
1608     // Use a temporary tree pattern to infer all types and make sure that the
1609     // constructed result is correct.  This depends on the instruction already
1610     // being inserted into the Instructions map.
1611     TreePattern Temp(I->getRecord(), ResultPattern, false, *this);
1612     Temp.InferAllTypes();
1613
1614     DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second;
1615     TheInsertedInst.setResultPattern(Temp.getOnlyTree());
1616     
1617     DEBUG(I->dump());
1618   }
1619    
1620   // If we can, convert the instructions to be patterns that are matched!
1621   for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
1622        E = Instructions.end(); II != E; ++II) {
1623     DAGInstruction &TheInst = II->second;
1624     TreePattern *I = TheInst.getPattern();
1625     if (I == 0) continue;  // No pattern.
1626
1627     if (I->getNumTrees() != 1) {
1628       cerr << "CANNOT HANDLE: " << I->getRecord()->getName() << " yet!";
1629       continue;
1630     }
1631     TreePatternNode *Pattern = I->getTree(0);
1632     TreePatternNode *SrcPattern;
1633     if (Pattern->getOperator()->getName() == "set") {
1634       if (Pattern->getNumChildren() != 2)
1635         continue;  // Not a set of a single value (not handled so far)
1636
1637       SrcPattern = Pattern->getChild(1)->clone();    
1638     } else{
1639       // Not a set (store or something?)
1640       SrcPattern = Pattern;
1641     }
1642     
1643     std::string Reason;
1644     if (!SrcPattern->canPatternMatch(Reason, *this))
1645       I->error("Instruction can never match: " + Reason);
1646     
1647     Record *Instr = II->first;
1648     TreePatternNode *DstPattern = TheInst.getResultPattern();
1649     PatternsToMatch.
1650       push_back(PatternToMatch(Instr->getValueAsListInit("Predicates"),
1651                                SrcPattern, DstPattern,
1652                                Instr->getValueAsInt("AddedComplexity")));
1653   }
1654 }
1655
1656 void DAGISelEmitter::ParsePatterns() {
1657   std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern");
1658
1659   for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
1660     DagInit *Tree = Patterns[i]->getValueAsDag("PatternToMatch");
1661     TreePattern *Pattern = new TreePattern(Patterns[i], Tree, true, *this);
1662
1663     // Inline pattern fragments into it.
1664     Pattern->InlinePatternFragments();
1665     
1666     ListInit *LI = Patterns[i]->getValueAsListInit("ResultInstrs");
1667     if (LI->getSize() == 0) continue;  // no pattern.
1668     
1669     // Parse the instruction.
1670     TreePattern *Result = new TreePattern(Patterns[i], LI, false, *this);
1671     
1672     // Inline pattern fragments into it.
1673     Result->InlinePatternFragments();
1674
1675     if (Result->getNumTrees() != 1)
1676       Result->error("Cannot handle instructions producing instructions "
1677                     "with temporaries yet!");
1678     
1679     bool IterateInference;
1680     bool InferredAllPatternTypes, InferredAllResultTypes;
1681     do {
1682       // Infer as many types as possible.  If we cannot infer all of them, we
1683       // can never do anything with this pattern: report it to the user.
1684       InferredAllPatternTypes = Pattern->InferAllTypes();
1685       
1686       // Infer as many types as possible.  If we cannot infer all of them, we
1687       // can never do anything with this pattern: report it to the user.
1688       InferredAllResultTypes = Result->InferAllTypes();
1689
1690       // Apply the type of the result to the source pattern.  This helps us
1691       // resolve cases where the input type is known to be a pointer type (which
1692       // is considered resolved), but the result knows it needs to be 32- or
1693       // 64-bits.  Infer the other way for good measure.
1694       IterateInference = Pattern->getOnlyTree()->
1695         UpdateNodeType(Result->getOnlyTree()->getExtTypes(), *Result);
1696       IterateInference |= Result->getOnlyTree()->
1697         UpdateNodeType(Pattern->getOnlyTree()->getExtTypes(), *Result);
1698     } while (IterateInference);
1699
1700     // Verify that we inferred enough types that we can do something with the
1701     // pattern and result.  If these fire the user has to add type casts.
1702     if (!InferredAllPatternTypes)
1703       Pattern->error("Could not infer all types in pattern!");
1704     if (!InferredAllResultTypes)
1705       Result->error("Could not infer all types in pattern result!");
1706     
1707     // Validate that the input pattern is correct.
1708     {
1709       std::map<std::string, TreePatternNode*> InstInputs;
1710       std::map<std::string, TreePatternNode*> InstResults;
1711       std::vector<Record*> InstImpInputs;
1712       std::vector<Record*> InstImpResults;
1713       FindPatternInputsAndOutputs(Pattern, Pattern->getOnlyTree(),
1714                                   InstInputs, InstResults,
1715                                   InstImpInputs, InstImpResults);
1716     }
1717
1718     // Promote the xform function to be an explicit node if set.
1719     std::vector<TreePatternNode*> ResultNodeOperands;
1720     TreePatternNode *DstPattern = Result->getOnlyTree();
1721     for (unsigned ii = 0, ee = DstPattern->getNumChildren(); ii != ee; ++ii) {
1722       TreePatternNode *OpNode = DstPattern->getChild(ii);
1723       if (Record *Xform = OpNode->getTransformFn()) {
1724         OpNode->setTransformFn(0);
1725         std::vector<TreePatternNode*> Children;
1726         Children.push_back(OpNode);
1727         OpNode = new TreePatternNode(Xform, Children);
1728       }
1729       ResultNodeOperands.push_back(OpNode);
1730     }
1731     DstPattern = Result->getOnlyTree();
1732     if (!DstPattern->isLeaf())
1733       DstPattern = new TreePatternNode(DstPattern->getOperator(),
1734                                        ResultNodeOperands);
1735     DstPattern->setTypes(Result->getOnlyTree()->getExtTypes());
1736     TreePattern Temp(Result->getRecord(), DstPattern, false, *this);
1737     Temp.InferAllTypes();
1738
1739     std::string Reason;
1740     if (!Pattern->getOnlyTree()->canPatternMatch(Reason, *this))
1741       Pattern->error("Pattern can never match: " + Reason);
1742     
1743     PatternsToMatch.
1744       push_back(PatternToMatch(Patterns[i]->getValueAsListInit("Predicates"),
1745                                Pattern->getOnlyTree(),
1746                                Temp.getOnlyTree(),
1747                                Patterns[i]->getValueAsInt("AddedComplexity")));
1748   }
1749 }
1750
1751 /// CombineChildVariants - Given a bunch of permutations of each child of the
1752 /// 'operator' node, put them together in all possible ways.
1753 static void CombineChildVariants(TreePatternNode *Orig, 
1754                const std::vector<std::vector<TreePatternNode*> > &ChildVariants,
1755                                  std::vector<TreePatternNode*> &OutVariants,
1756                                  DAGISelEmitter &ISE) {
1757   // Make sure that each operand has at least one variant to choose from.
1758   for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1759     if (ChildVariants[i].empty())
1760       return;
1761         
1762   // The end result is an all-pairs construction of the resultant pattern.
1763   std::vector<unsigned> Idxs;
1764   Idxs.resize(ChildVariants.size());
1765   bool NotDone = true;
1766   while (NotDone) {
1767     // Create the variant and add it to the output list.
1768     std::vector<TreePatternNode*> NewChildren;
1769     for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i)
1770       NewChildren.push_back(ChildVariants[i][Idxs[i]]);
1771     TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren);
1772     
1773     // Copy over properties.
1774     R->setName(Orig->getName());
1775     R->setPredicateFn(Orig->getPredicateFn());
1776     R->setTransformFn(Orig->getTransformFn());
1777     R->setTypes(Orig->getExtTypes());
1778     
1779     // If this pattern cannot every match, do not include it as a variant.
1780     std::string ErrString;
1781     if (!R->canPatternMatch(ErrString, ISE)) {
1782       delete R;
1783     } else {
1784       bool AlreadyExists = false;
1785       
1786       // Scan to see if this pattern has already been emitted.  We can get
1787       // duplication due to things like commuting:
1788       //   (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a)
1789       // which are the same pattern.  Ignore the dups.
1790       for (unsigned i = 0, e = OutVariants.size(); i != e; ++i)
1791         if (R->isIsomorphicTo(OutVariants[i])) {
1792           AlreadyExists = true;
1793           break;
1794         }
1795       
1796       if (AlreadyExists)
1797         delete R;
1798       else
1799         OutVariants.push_back(R);
1800     }
1801     
1802     // Increment indices to the next permutation.
1803     NotDone = false;
1804     // Look for something we can increment without causing a wrap-around.
1805     for (unsigned IdxsIdx = 0; IdxsIdx != Idxs.size(); ++IdxsIdx) {
1806       if (++Idxs[IdxsIdx] < ChildVariants[IdxsIdx].size()) {
1807         NotDone = true;   // Found something to increment.
1808         break;
1809       }
1810       Idxs[IdxsIdx] = 0;
1811     }
1812   }
1813 }
1814
1815 /// CombineChildVariants - A helper function for binary operators.
1816 ///
1817 static void CombineChildVariants(TreePatternNode *Orig, 
1818                                  const std::vector<TreePatternNode*> &LHS,
1819                                  const std::vector<TreePatternNode*> &RHS,
1820                                  std::vector<TreePatternNode*> &OutVariants,
1821                                  DAGISelEmitter &ISE) {
1822   std::vector<std::vector<TreePatternNode*> > ChildVariants;
1823   ChildVariants.push_back(LHS);
1824   ChildVariants.push_back(RHS);
1825   CombineChildVariants(Orig, ChildVariants, OutVariants, ISE);
1826 }  
1827
1828
1829 static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N,
1830                                      std::vector<TreePatternNode *> &Children) {
1831   assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!");
1832   Record *Operator = N->getOperator();
1833   
1834   // Only permit raw nodes.
1835   if (!N->getName().empty() || !N->getPredicateFn().empty() ||
1836       N->getTransformFn()) {
1837     Children.push_back(N);
1838     return;
1839   }
1840
1841   if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator)
1842     Children.push_back(N->getChild(0));
1843   else
1844     GatherChildrenOfAssociativeOpcode(N->getChild(0), Children);
1845
1846   if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator)
1847     Children.push_back(N->getChild(1));
1848   else
1849     GatherChildrenOfAssociativeOpcode(N->getChild(1), Children);
1850 }
1851
1852 /// GenerateVariantsOf - Given a pattern N, generate all permutations we can of
1853 /// the (potentially recursive) pattern by using algebraic laws.
1854 ///
1855 static void GenerateVariantsOf(TreePatternNode *N,
1856                                std::vector<TreePatternNode*> &OutVariants,
1857                                DAGISelEmitter &ISE) {
1858   // We cannot permute leaves.
1859   if (N->isLeaf()) {
1860     OutVariants.push_back(N);
1861     return;
1862   }
1863
1864   // Look up interesting info about the node.
1865   const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(N->getOperator());
1866
1867   // If this node is associative, reassociate.
1868   if (NodeInfo.hasProperty(SDNPAssociative)) {
1869     // Reassociate by pulling together all of the linked operators 
1870     std::vector<TreePatternNode*> MaximalChildren;
1871     GatherChildrenOfAssociativeOpcode(N, MaximalChildren);
1872
1873     // Only handle child sizes of 3.  Otherwise we'll end up trying too many
1874     // permutations.
1875     if (MaximalChildren.size() == 3) {
1876       // Find the variants of all of our maximal children.
1877       std::vector<TreePatternNode*> AVariants, BVariants, CVariants;
1878       GenerateVariantsOf(MaximalChildren[0], AVariants, ISE);
1879       GenerateVariantsOf(MaximalChildren[1], BVariants, ISE);
1880       GenerateVariantsOf(MaximalChildren[2], CVariants, ISE);
1881       
1882       // There are only two ways we can permute the tree:
1883       //   (A op B) op C    and    A op (B op C)
1884       // Within these forms, we can also permute A/B/C.
1885       
1886       // Generate legal pair permutations of A/B/C.
1887       std::vector<TreePatternNode*> ABVariants;
1888       std::vector<TreePatternNode*> BAVariants;
1889       std::vector<TreePatternNode*> ACVariants;
1890       std::vector<TreePatternNode*> CAVariants;
1891       std::vector<TreePatternNode*> BCVariants;
1892       std::vector<TreePatternNode*> CBVariants;
1893       CombineChildVariants(N, AVariants, BVariants, ABVariants, ISE);
1894       CombineChildVariants(N, BVariants, AVariants, BAVariants, ISE);
1895       CombineChildVariants(N, AVariants, CVariants, ACVariants, ISE);
1896       CombineChildVariants(N, CVariants, AVariants, CAVariants, ISE);
1897       CombineChildVariants(N, BVariants, CVariants, BCVariants, ISE);
1898       CombineChildVariants(N, CVariants, BVariants, CBVariants, ISE);
1899
1900       // Combine those into the result: (x op x) op x
1901       CombineChildVariants(N, ABVariants, CVariants, OutVariants, ISE);
1902       CombineChildVariants(N, BAVariants, CVariants, OutVariants, ISE);
1903       CombineChildVariants(N, ACVariants, BVariants, OutVariants, ISE);
1904       CombineChildVariants(N, CAVariants, BVariants, OutVariants, ISE);
1905       CombineChildVariants(N, BCVariants, AVariants, OutVariants, ISE);
1906       CombineChildVariants(N, CBVariants, AVariants, OutVariants, ISE);
1907
1908       // Combine those into the result: x op (x op x)
1909       CombineChildVariants(N, CVariants, ABVariants, OutVariants, ISE);
1910       CombineChildVariants(N, CVariants, BAVariants, OutVariants, ISE);
1911       CombineChildVariants(N, BVariants, ACVariants, OutVariants, ISE);
1912       CombineChildVariants(N, BVariants, CAVariants, OutVariants, ISE);
1913       CombineChildVariants(N, AVariants, BCVariants, OutVariants, ISE);
1914       CombineChildVariants(N, AVariants, CBVariants, OutVariants, ISE);
1915       return;
1916     }
1917   }
1918   
1919   // Compute permutations of all children.
1920   std::vector<std::vector<TreePatternNode*> > ChildVariants;
1921   ChildVariants.resize(N->getNumChildren());
1922   for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
1923     GenerateVariantsOf(N->getChild(i), ChildVariants[i], ISE);
1924
1925   // Build all permutations based on how the children were formed.
1926   CombineChildVariants(N, ChildVariants, OutVariants, ISE);
1927
1928   // If this node is commutative, consider the commuted order.
1929   if (NodeInfo.hasProperty(SDNPCommutative)) {
1930     assert(N->getNumChildren()==2 &&"Commutative but doesn't have 2 children!");
1931     // Don't count children which are actually register references.
1932     unsigned NC = 0;
1933     for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
1934       TreePatternNode *Child = N->getChild(i);
1935       if (Child->isLeaf())
1936         if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
1937           Record *RR = DI->getDef();
1938           if (RR->isSubClassOf("Register"))
1939             continue;
1940         }
1941       NC++;
1942     }
1943     // Consider the commuted order.
1944     if (NC == 2)
1945       CombineChildVariants(N, ChildVariants[1], ChildVariants[0],
1946                            OutVariants, ISE);
1947   }
1948 }
1949
1950
1951 // GenerateVariants - Generate variants.  For example, commutative patterns can
1952 // match multiple ways.  Add them to PatternsToMatch as well.
1953 void DAGISelEmitter::GenerateVariants() {
1954   
1955   DOUT << "Generating instruction variants.\n";
1956   
1957   // Loop over all of the patterns we've collected, checking to see if we can
1958   // generate variants of the instruction, through the exploitation of
1959   // identities.  This permits the target to provide agressive matching without
1960   // the .td file having to contain tons of variants of instructions.
1961   //
1962   // Note that this loop adds new patterns to the PatternsToMatch list, but we
1963   // intentionally do not reconsider these.  Any variants of added patterns have
1964   // already been added.
1965   //
1966   for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
1967     std::vector<TreePatternNode*> Variants;
1968     GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this);
1969
1970     assert(!Variants.empty() && "Must create at least original variant!");
1971     Variants.erase(Variants.begin());  // Remove the original pattern.
1972
1973     if (Variants.empty())  // No variants for this pattern.
1974       continue;
1975
1976     DOUT << "FOUND VARIANTS OF: ";
1977     DEBUG(PatternsToMatch[i].getSrcPattern()->dump());
1978     DOUT << "\n";
1979
1980     for (unsigned v = 0, e = Variants.size(); v != e; ++v) {
1981       TreePatternNode *Variant = Variants[v];
1982
1983       DOUT << "  VAR#" << v <<  ": ";
1984       DEBUG(Variant->dump());
1985       DOUT << "\n";
1986       
1987       // Scan to see if an instruction or explicit pattern already matches this.
1988       bool AlreadyExists = false;
1989       for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) {
1990         // Check to see if this variant already exists.
1991         if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern())) {
1992           DOUT << "  *** ALREADY EXISTS, ignoring variant.\n";
1993           AlreadyExists = true;
1994           break;
1995         }
1996       }
1997       // If we already have it, ignore the variant.
1998       if (AlreadyExists) continue;
1999
2000       // Otherwise, add it to the list of patterns we have.
2001       PatternsToMatch.
2002         push_back(PatternToMatch(PatternsToMatch[i].getPredicates(),
2003                                  Variant, PatternsToMatch[i].getDstPattern(),
2004                                  PatternsToMatch[i].getAddedComplexity()));
2005     }
2006
2007     DOUT << "\n";
2008   }
2009 }
2010
2011 // NodeIsComplexPattern - return true if N is a leaf node and a subclass of
2012 // ComplexPattern.
2013 static bool NodeIsComplexPattern(TreePatternNode *N)
2014 {
2015   return (N->isLeaf() &&
2016           dynamic_cast<DefInit*>(N->getLeafValue()) &&
2017           static_cast<DefInit*>(N->getLeafValue())->getDef()->
2018           isSubClassOf("ComplexPattern"));
2019 }
2020
2021 // NodeGetComplexPattern - return the pointer to the ComplexPattern if N
2022 // is a leaf node and a subclass of ComplexPattern, else it returns NULL.
2023 static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
2024                                                    DAGISelEmitter &ISE)
2025 {
2026   if (N->isLeaf() &&
2027       dynamic_cast<DefInit*>(N->getLeafValue()) &&
2028       static_cast<DefInit*>(N->getLeafValue())->getDef()->
2029       isSubClassOf("ComplexPattern")) {
2030     return &ISE.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
2031                                   ->getDef());
2032   }
2033   return NULL;
2034 }
2035
2036 /// getPatternSize - Return the 'size' of this pattern.  We want to match large
2037 /// patterns before small ones.  This is used to determine the size of a
2038 /// pattern.
2039 static unsigned getPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
2040   assert((isExtIntegerInVTs(P->getExtTypes()) || 
2041           isExtFloatingPointInVTs(P->getExtTypes()) ||
2042           P->getExtTypeNum(0) == MVT::isVoid ||
2043           P->getExtTypeNum(0) == MVT::Flag ||
2044           P->getExtTypeNum(0) == MVT::iPTR) && 
2045          "Not a valid pattern node to size!");
2046   unsigned Size = 3;  // The node itself.
2047   // If the root node is a ConstantSDNode, increases its size.
2048   // e.g. (set R32:$dst, 0).
2049   if (P->isLeaf() && dynamic_cast<IntInit*>(P->getLeafValue()))
2050     Size += 2;
2051
2052   // FIXME: This is a hack to statically increase the priority of patterns
2053   // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
2054   // Later we can allow complexity / cost for each pattern to be (optionally)
2055   // specified. To get best possible pattern match we'll need to dynamically
2056   // calculate the complexity of all patterns a dag can potentially map to.
2057   const ComplexPattern *AM = NodeGetComplexPattern(P, ISE);
2058   if (AM)
2059     Size += AM->getNumOperands() * 3;
2060
2061   // If this node has some predicate function that must match, it adds to the
2062   // complexity of this node.
2063   if (!P->getPredicateFn().empty())
2064     ++Size;
2065   
2066   // Count children in the count if they are also nodes.
2067   for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
2068     TreePatternNode *Child = P->getChild(i);
2069     if (!Child->isLeaf() && Child->getExtTypeNum(0) != MVT::Other)
2070       Size += getPatternSize(Child, ISE);
2071     else if (Child->isLeaf()) {
2072       if (dynamic_cast<IntInit*>(Child->getLeafValue())) 
2073         Size += 5;  // Matches a ConstantSDNode (+3) and a specific value (+2).
2074       else if (NodeIsComplexPattern(Child))
2075         Size += getPatternSize(Child, ISE);
2076       else if (!Child->getPredicateFn().empty())
2077         ++Size;
2078     }
2079   }
2080   
2081   return Size;
2082 }
2083
2084 /// getResultPatternCost - Compute the number of instructions for this pattern.
2085 /// This is a temporary hack.  We should really include the instruction
2086 /// latencies in this calculation.
2087 static unsigned getResultPatternCost(TreePatternNode *P, DAGISelEmitter &ISE) {
2088   if (P->isLeaf()) return 0;
2089   
2090   unsigned Cost = 0;
2091   Record *Op = P->getOperator();
2092   if (Op->isSubClassOf("Instruction")) {
2093     Cost++;
2094     CodeGenInstruction &II = ISE.getTargetInfo().getInstruction(Op->getName());
2095     if (II.usesCustomDAGSchedInserter)
2096       Cost += 10;
2097   }
2098   for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
2099     Cost += getResultPatternCost(P->getChild(i), ISE);
2100   return Cost;
2101 }
2102
2103 /// getResultPatternCodeSize - Compute the code size of instructions for this
2104 /// pattern.
2105 static unsigned getResultPatternSize(TreePatternNode *P, DAGISelEmitter &ISE) {
2106   if (P->isLeaf()) return 0;
2107
2108   unsigned Cost = 0;
2109   Record *Op = P->getOperator();
2110   if (Op->isSubClassOf("Instruction")) {
2111     Cost += Op->getValueAsInt("CodeSize");
2112   }
2113   for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
2114     Cost += getResultPatternSize(P->getChild(i), ISE);
2115   return Cost;
2116 }
2117
2118 // PatternSortingPredicate - return true if we prefer to match LHS before RHS.
2119 // In particular, we want to match maximal patterns first and lowest cost within
2120 // a particular complexity first.
2121 struct PatternSortingPredicate {
2122   PatternSortingPredicate(DAGISelEmitter &ise) : ISE(ise) {};
2123   DAGISelEmitter &ISE;
2124
2125   bool operator()(PatternToMatch *LHS,
2126                   PatternToMatch *RHS) {
2127     unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), ISE);
2128     unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), ISE);
2129     LHSSize += LHS->getAddedComplexity();
2130     RHSSize += RHS->getAddedComplexity();
2131     if (LHSSize > RHSSize) return true;   // LHS -> bigger -> less cost
2132     if (LHSSize < RHSSize) return false;
2133     
2134     // If the patterns have equal complexity, compare generated instruction cost
2135     unsigned LHSCost = getResultPatternCost(LHS->getDstPattern(), ISE);
2136     unsigned RHSCost = getResultPatternCost(RHS->getDstPattern(), ISE);
2137     if (LHSCost < RHSCost) return true;
2138     if (LHSCost > RHSCost) return false;
2139
2140     return getResultPatternSize(LHS->getDstPattern(), ISE) <
2141       getResultPatternSize(RHS->getDstPattern(), ISE);
2142   }
2143 };
2144
2145 /// getRegisterValueType - Look up and return the first ValueType of specified 
2146 /// RegisterClass record
2147 static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
2148   if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
2149     return RC->getValueTypeNum(0);
2150   return MVT::Other;
2151 }
2152
2153
2154 /// RemoveAllTypes - A quick recursive walk over a pattern which removes all
2155 /// type information from it.
2156 static void RemoveAllTypes(TreePatternNode *N) {
2157   N->removeTypes();
2158   if (!N->isLeaf())
2159     for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
2160       RemoveAllTypes(N->getChild(i));
2161 }
2162
2163 Record *DAGISelEmitter::getSDNodeNamed(const std::string &Name) const {
2164   Record *N = Records.getDef(Name);
2165   if (!N || !N->isSubClassOf("SDNode")) {
2166     cerr << "Error getting SDNode '" << Name << "'!\n";
2167     exit(1);
2168   }
2169   return N;
2170 }
2171
2172 /// NodeHasProperty - return true if TreePatternNode has the specified
2173 /// property.
2174 static bool NodeHasProperty(TreePatternNode *N, SDNP Property,
2175                             DAGISelEmitter &ISE)
2176 {
2177   if (N->isLeaf()) {
2178     const ComplexPattern *CP = NodeGetComplexPattern(N, ISE);
2179     if (CP)
2180       return CP->hasProperty(Property);
2181     return false;
2182   }
2183   Record *Operator = N->getOperator();
2184   if (!Operator->isSubClassOf("SDNode")) return false;
2185
2186   const SDNodeInfo &NodeInfo = ISE.getSDNodeInfo(Operator);
2187   return NodeInfo.hasProperty(Property);
2188 }
2189
2190 static bool PatternHasProperty(TreePatternNode *N, SDNP Property,
2191                                DAGISelEmitter &ISE)
2192 {
2193   if (NodeHasProperty(N, Property, ISE))
2194     return true;
2195
2196   for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
2197     TreePatternNode *Child = N->getChild(i);
2198     if (PatternHasProperty(Child, Property, ISE))
2199       return true;
2200   }
2201
2202   return false;
2203 }
2204
2205 class PatternCodeEmitter {
2206 private:
2207   DAGISelEmitter &ISE;
2208
2209   // Predicates.
2210   ListInit *Predicates;
2211   // Pattern cost.
2212   unsigned Cost;
2213   // Instruction selector pattern.
2214   TreePatternNode *Pattern;
2215   // Matched instruction.
2216   TreePatternNode *Instruction;
2217   
2218   // Node to name mapping
2219   std::map<std::string, std::string> VariableMap;
2220   // Node to operator mapping
2221   std::map<std::string, Record*> OperatorMap;
2222   // Names of all the folded nodes which produce chains.
2223   std::vector<std::pair<std::string, unsigned> > FoldedChains;
2224   // Original input chain(s).
2225   std::vector<std::pair<std::string, std::string> > OrigChains;
2226   std::set<std::string> Duplicates;
2227
2228   /// GeneratedCode - This is the buffer that we emit code to.  The first int
2229   /// indicates whether this is an exit predicate (something that should be
2230   /// tested, and if true, the match fails) [when 1], or normal code to emit
2231   /// [when 0], or initialization code to emit [when 2].
2232   std::vector<std::pair<unsigned, std::string> > &GeneratedCode;
2233   /// GeneratedDecl - This is the set of all SDOperand declarations needed for
2234   /// the set of patterns for each top-level opcode.
2235   std::set<std::string> &GeneratedDecl;
2236   /// TargetOpcodes - The target specific opcodes used by the resulting
2237   /// instructions.
2238   std::vector<std::string> &TargetOpcodes;
2239   std::vector<std::string> &TargetVTs;
2240
2241   std::string ChainName;
2242   unsigned TmpNo;
2243   unsigned OpcNo;
2244   unsigned VTNo;
2245   
2246   void emitCheck(const std::string &S) {
2247     if (!S.empty())
2248       GeneratedCode.push_back(std::make_pair(1, S));
2249   }
2250   void emitCode(const std::string &S) {
2251     if (!S.empty())
2252       GeneratedCode.push_back(std::make_pair(0, S));
2253   }
2254   void emitInit(const std::string &S) {
2255     if (!S.empty())
2256       GeneratedCode.push_back(std::make_pair(2, S));
2257   }
2258   void emitDecl(const std::string &S) {
2259     assert(!S.empty() && "Invalid declaration");
2260     GeneratedDecl.insert(S);
2261   }
2262   void emitOpcode(const std::string &Opc) {
2263     TargetOpcodes.push_back(Opc);
2264     OpcNo++;
2265   }
2266   void emitVT(const std::string &VT) {
2267     TargetVTs.push_back(VT);
2268     VTNo++;
2269   }
2270 public:
2271   PatternCodeEmitter(DAGISelEmitter &ise, ListInit *preds,
2272                      TreePatternNode *pattern, TreePatternNode *instr,
2273                      std::vector<std::pair<unsigned, std::string> > &gc,
2274                      std::set<std::string> &gd,
2275                      std::vector<std::string> &to,
2276                      std::vector<std::string> &tv)
2277   : ISE(ise), Predicates(preds), Pattern(pattern), Instruction(instr),
2278     GeneratedCode(gc), GeneratedDecl(gd),
2279     TargetOpcodes(to), TargetVTs(tv),
2280     TmpNo(0), OpcNo(0), VTNo(0) {}
2281
2282   /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
2283   /// if the match fails. At this point, we already know that the opcode for N
2284   /// matches, and the SDNode for the result has the RootName specified name.
2285   void EmitMatchCode(TreePatternNode *N, TreePatternNode *P,
2286                      const std::string &RootName, const std::string &ChainSuffix,
2287                      bool &FoundChain) {
2288     bool isRoot = (P == NULL);
2289     // Emit instruction predicates. Each predicate is just a string for now.
2290     if (isRoot) {
2291       std::string PredicateCheck;
2292       for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
2293         if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
2294           Record *Def = Pred->getDef();
2295           if (!Def->isSubClassOf("Predicate")) {
2296 #ifndef NDEBUG
2297             Def->dump();
2298 #endif
2299             assert(0 && "Unknown predicate type!");
2300           }
2301           if (!PredicateCheck.empty())
2302             PredicateCheck += " && ";
2303           PredicateCheck += "(" + Def->getValueAsString("CondString") + ")";
2304         }
2305       }
2306       
2307       emitCheck(PredicateCheck);
2308     }
2309
2310     if (N->isLeaf()) {
2311       if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
2312         emitCheck("cast<ConstantSDNode>(" + RootName +
2313                   ")->getSignExtended() == " + itostr(II->getValue()));
2314         return;
2315       } else if (!NodeIsComplexPattern(N)) {
2316         assert(0 && "Cannot match this as a leaf value!");
2317         abort();
2318       }
2319     }
2320   
2321     // If this node has a name associated with it, capture it in VariableMap. If
2322     // we already saw this in the pattern, emit code to verify dagness.
2323     if (!N->getName().empty()) {
2324       std::string &VarMapEntry = VariableMap[N->getName()];
2325       if (VarMapEntry.empty()) {
2326         VarMapEntry = RootName;
2327       } else {
2328         // If we get here, this is a second reference to a specific name.  Since
2329         // we already have checked that the first reference is valid, we don't
2330         // have to recursively match it, just check that it's the same as the
2331         // previously named thing.
2332         emitCheck(VarMapEntry + " == " + RootName);
2333         return;
2334       }
2335
2336       if (!N->isLeaf())
2337         OperatorMap[N->getName()] = N->getOperator();
2338     }
2339
2340
2341     // Emit code to load the child nodes and match their contents recursively.
2342     unsigned OpNo = 0;
2343     bool NodeHasChain = NodeHasProperty   (N, SDNPHasChain, ISE);
2344     bool HasChain     = PatternHasProperty(N, SDNPHasChain, ISE);
2345     bool EmittedUseCheck = false;
2346     if (HasChain) {
2347       if (NodeHasChain)
2348         OpNo = 1;
2349       if (!isRoot) {
2350         // Multiple uses of actual result?
2351         emitCheck(RootName + ".hasOneUse()");
2352         EmittedUseCheck = true;
2353         if (NodeHasChain) {
2354           // If the immediate use can somehow reach this node through another
2355           // path, then can't fold it either or it will create a cycle.
2356           // e.g. In the following diagram, XX can reach ld through YY. If
2357           // ld is folded into XX, then YY is both a predecessor and a successor
2358           // of XX.
2359           //
2360           //         [ld]
2361           //         ^  ^
2362           //         |  |
2363           //        /   \---
2364           //      /        [YY]
2365           //      |         ^
2366           //     [XX]-------|
2367           bool NeedCheck = false;
2368           if (P != Pattern)
2369             NeedCheck = true;
2370           else {
2371             const SDNodeInfo &PInfo = ISE.getSDNodeInfo(P->getOperator());
2372             NeedCheck =
2373               P->getOperator() == ISE.get_intrinsic_void_sdnode() ||
2374               P->getOperator() == ISE.get_intrinsic_w_chain_sdnode() ||
2375               P->getOperator() == ISE.get_intrinsic_wo_chain_sdnode() ||
2376               PInfo.getNumOperands() > 1 ||
2377               PInfo.hasProperty(SDNPHasChain) ||
2378               PInfo.hasProperty(SDNPInFlag) ||
2379               PInfo.hasProperty(SDNPOptInFlag);
2380           }
2381
2382           if (NeedCheck) {
2383             std::string ParentName(RootName.begin(), RootName.end()-1);
2384             emitCheck("CanBeFoldedBy(" + RootName + ".Val, " + ParentName +
2385                       ".Val, N.Val)");
2386           }
2387         }
2388       }
2389
2390       if (NodeHasChain) {
2391         if (FoundChain) {
2392           emitCheck("(" + ChainName + ".Val == " + RootName + ".Val || "
2393                     "IsChainCompatible(" + ChainName + ".Val, " +
2394                     RootName + ".Val))");
2395           OrigChains.push_back(std::make_pair(ChainName, RootName));
2396         } else
2397           FoundChain = true;
2398         ChainName = "Chain" + ChainSuffix;
2399         emitInit("SDOperand " + ChainName + " = " + RootName +
2400                  ".getOperand(0);");
2401       }
2402     }
2403
2404     // Don't fold any node which reads or writes a flag and has multiple uses.
2405     // FIXME: We really need to separate the concepts of flag and "glue". Those
2406     // real flag results, e.g. X86CMP output, can have multiple uses.
2407     // FIXME: If the optional incoming flag does not exist. Then it is ok to
2408     // fold it.
2409     if (!isRoot &&
2410         (PatternHasProperty(N, SDNPInFlag, ISE) ||
2411          PatternHasProperty(N, SDNPOptInFlag, ISE) ||
2412          PatternHasProperty(N, SDNPOutFlag, ISE))) {
2413       if (!EmittedUseCheck) {
2414         // Multiple uses of actual result?
2415         emitCheck(RootName + ".hasOneUse()");
2416       }
2417     }
2418
2419     // If there is a node predicate for this, emit the call.
2420     if (!N->getPredicateFn().empty())
2421       emitCheck(N->getPredicateFn() + "(" + RootName + ".Val)");
2422
2423     
2424     // If this is an 'and R, 1234' where the operation is AND/OR and the RHS is
2425     // a constant without a predicate fn that has more that one bit set, handle
2426     // this as a special case.  This is usually for targets that have special
2427     // handling of certain large constants (e.g. alpha with it's 8/16/32-bit
2428     // handling stuff).  Using these instructions is often far more efficient
2429     // than materializing the constant.  Unfortunately, both the instcombiner
2430     // and the dag combiner can often infer that bits are dead, and thus drop
2431     // them from the mask in the dag.  For example, it might turn 'AND X, 255'
2432     // into 'AND X, 254' if it knows the low bit is set.  Emit code that checks
2433     // to handle this.
2434     if (!N->isLeaf() && 
2435         (N->getOperator()->getName() == "and" || 
2436          N->getOperator()->getName() == "or") &&
2437         N->getChild(1)->isLeaf() &&
2438         N->getChild(1)->getPredicateFn().empty()) {
2439       if (IntInit *II = dynamic_cast<IntInit*>(N->getChild(1)->getLeafValue())) {
2440         if (!isPowerOf2_32(II->getValue())) {  // Don't bother with single bits.
2441           emitInit("SDOperand " + RootName + "0" + " = " +
2442                    RootName + ".getOperand(" + utostr(0) + ");");
2443           emitInit("SDOperand " + RootName + "1" + " = " +
2444                    RootName + ".getOperand(" + utostr(1) + ");");
2445
2446           emitCheck("isa<ConstantSDNode>(" + RootName + "1)");
2447           const char *MaskPredicate = N->getOperator()->getName() == "or"
2448             ? "CheckOrMask(" : "CheckAndMask(";
2449           emitCheck(MaskPredicate + RootName + "0, cast<ConstantSDNode>(" +
2450                     RootName + "1), " + itostr(II->getValue()) + ")");
2451           
2452           EmitChildMatchCode(N->getChild(0), N, RootName + utostr(0),
2453                              ChainSuffix + utostr(0), FoundChain);
2454           return;
2455         }
2456       }
2457     }
2458     
2459     for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
2460       emitInit("SDOperand " + RootName + utostr(OpNo) + " = " +
2461                RootName + ".getOperand(" +utostr(OpNo) + ");");
2462
2463       EmitChildMatchCode(N->getChild(i), N, RootName + utostr(OpNo),
2464                          ChainSuffix + utostr(OpNo), FoundChain);
2465     }
2466
2467     // Handle cases when root is a complex pattern.
2468     const ComplexPattern *CP;
2469     if (isRoot && N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
2470       std::string Fn = CP->getSelectFunc();
2471       unsigned NumOps = CP->getNumOperands();
2472       for (unsigned i = 0; i < NumOps; ++i) {
2473         emitDecl("CPTmp" + utostr(i));
2474         emitCode("SDOperand CPTmp" + utostr(i) + ";");
2475       }
2476       if (CP->hasProperty(SDNPHasChain)) {
2477         emitDecl("CPInChain");
2478         emitDecl("Chain" + ChainSuffix);
2479         emitCode("SDOperand CPInChain;");
2480         emitCode("SDOperand Chain" + ChainSuffix + ";");
2481       }
2482
2483       std::string Code = Fn + "(" + RootName + ", " + RootName;
2484       for (unsigned i = 0; i < NumOps; i++)
2485         Code += ", CPTmp" + utostr(i);
2486       if (CP->hasProperty(SDNPHasChain)) {
2487         ChainName = "Chain" + ChainSuffix;
2488         Code += ", CPInChain, Chain" + ChainSuffix;
2489       }
2490       emitCheck(Code + ")");
2491     }
2492   }
2493
2494   void EmitChildMatchCode(TreePatternNode *Child, TreePatternNode *Parent,
2495                           const std::string &RootName,
2496                           const std::string &ChainSuffix, bool &FoundChain) {
2497     if (!Child->isLeaf()) {
2498       // If it's not a leaf, recursively match.
2499       const SDNodeInfo &CInfo = ISE.getSDNodeInfo(Child->getOperator());
2500       emitCheck(RootName + ".getOpcode() == " +
2501                 CInfo.getEnumName());
2502       EmitMatchCode(Child, Parent, RootName, ChainSuffix, FoundChain);
2503       if (NodeHasProperty(Child, SDNPHasChain, ISE))
2504         FoldedChains.push_back(std::make_pair(RootName, CInfo.getNumResults()));
2505     } else {
2506       // If this child has a name associated with it, capture it in VarMap. If
2507       // we already saw this in the pattern, emit code to verify dagness.
2508       if (!Child->getName().empty()) {
2509         std::string &VarMapEntry = VariableMap[Child->getName()];
2510         if (VarMapEntry.empty()) {
2511           VarMapEntry = RootName;
2512         } else {
2513           // If we get here, this is a second reference to a specific name.
2514           // Since we already have checked that the first reference is valid,
2515           // we don't have to recursively match it, just check that it's the
2516           // same as the previously named thing.
2517           emitCheck(VarMapEntry + " == " + RootName);
2518           Duplicates.insert(RootName);
2519           return;
2520         }
2521       }
2522       
2523       // Handle leaves of various types.
2524       if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
2525         Record *LeafRec = DI->getDef();
2526         if (LeafRec->isSubClassOf("RegisterClass") || 
2527             LeafRec->getName() == "ptr_rc") {
2528           // Handle register references.  Nothing to do here.
2529         } else if (LeafRec->isSubClassOf("Register")) {
2530           // Handle register references.
2531         } else if (LeafRec->isSubClassOf("ComplexPattern")) {
2532           // Handle complex pattern.
2533           const ComplexPattern *CP = NodeGetComplexPattern(Child, ISE);
2534           std::string Fn = CP->getSelectFunc();
2535           unsigned NumOps = CP->getNumOperands();
2536           for (unsigned i = 0; i < NumOps; ++i) {
2537             emitDecl("CPTmp" + utostr(i));
2538             emitCode("SDOperand CPTmp" + utostr(i) + ";");
2539           }
2540           if (CP->hasProperty(SDNPHasChain)) {
2541             const SDNodeInfo &PInfo = ISE.getSDNodeInfo(Parent->getOperator());
2542             FoldedChains.push_back(std::make_pair("CPInChain",
2543                                                   PInfo.getNumResults()));
2544             ChainName = "Chain" + ChainSuffix;
2545             emitDecl("CPInChain");
2546             emitDecl(ChainName);
2547             emitCode("SDOperand CPInChain;");
2548             emitCode("SDOperand " + ChainName + ";");
2549           }
2550           
2551           std::string Code = Fn + "(N, ";
2552           if (CP->hasProperty(SDNPHasChain)) {
2553             std::string ParentName(RootName.begin(), RootName.end()-1);
2554             Code += ParentName + ", ";
2555           }
2556           Code += RootName;
2557           for (unsigned i = 0; i < NumOps; i++)
2558             Code += ", CPTmp" + utostr(i);
2559           if (CP->hasProperty(SDNPHasChain))
2560             Code += ", CPInChain, Chain" + ChainSuffix;
2561           emitCheck(Code + ")");
2562         } else if (LeafRec->getName() == "srcvalue") {
2563           // Place holder for SRCVALUE nodes. Nothing to do here.
2564         } else if (LeafRec->isSubClassOf("ValueType")) {
2565           // Make sure this is the specified value type.
2566           emitCheck("cast<VTSDNode>(" + RootName +
2567                     ")->getVT() == MVT::" + LeafRec->getName());
2568         } else if (LeafRec->isSubClassOf("CondCode")) {
2569           // Make sure this is the specified cond code.
2570           emitCheck("cast<CondCodeSDNode>(" + RootName +
2571                     ")->get() == ISD::" + LeafRec->getName());
2572         } else {
2573 #ifndef NDEBUG
2574           Child->dump();
2575           cerr << " ";
2576 #endif
2577           assert(0 && "Unknown leaf type!");
2578         }
2579         
2580         // If there is a node predicate for this, emit the call.
2581         if (!Child->getPredicateFn().empty())
2582           emitCheck(Child->getPredicateFn() + "(" + RootName +
2583                     ".Val)");
2584       } else if (IntInit *II =
2585                  dynamic_cast<IntInit*>(Child->getLeafValue())) {
2586         emitCheck("isa<ConstantSDNode>(" + RootName + ")");
2587         unsigned CTmp = TmpNo++;
2588         emitCode("int64_t CN"+utostr(CTmp)+" = cast<ConstantSDNode>("+
2589                  RootName + ")->getSignExtended();");
2590         
2591         emitCheck("CN" + utostr(CTmp) + " == " +itostr(II->getValue()));
2592       } else {
2593 #ifndef NDEBUG
2594         Child->dump();
2595 #endif
2596         assert(0 && "Unknown leaf type!");
2597       }
2598     }
2599   }
2600
2601   /// EmitResultCode - Emit the action for a pattern.  Now that it has matched
2602   /// we actually have to build a DAG!
2603   std::vector<std::string>
2604   EmitResultCode(TreePatternNode *N, bool RetSelected,
2605                  bool InFlagDecled, bool ResNodeDecled,
2606                  bool LikeLeaf = false, bool isRoot = false) {
2607     // List of arguments of getTargetNode() or SelectNodeTo().
2608     std::vector<std::string> NodeOps;
2609     // This is something selected from the pattern we matched.
2610     if (!N->getName().empty()) {
2611       std::string &Val = VariableMap[N->getName()];
2612       assert(!Val.empty() &&
2613              "Variable referenced but not defined and not caught earlier!");
2614       if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
2615         // Already selected this operand, just return the tmpval.
2616         NodeOps.push_back(Val);
2617         return NodeOps;
2618       }
2619
2620       const ComplexPattern *CP;
2621       unsigned ResNo = TmpNo++;
2622       if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
2623         assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
2624         std::string CastType;
2625         switch (N->getTypeNum(0)) {
2626         default:
2627           cerr << "Cannot handle " << getEnumName(N->getTypeNum(0))
2628                << " type as an immediate constant. Aborting\n";
2629           abort();
2630         case MVT::i1:  CastType = "bool"; break;
2631         case MVT::i8:  CastType = "unsigned char"; break;
2632         case MVT::i16: CastType = "unsigned short"; break;
2633         case MVT::i32: CastType = "unsigned"; break;
2634         case MVT::i64: CastType = "uint64_t"; break;
2635         }
2636         emitCode("SDOperand Tmp" + utostr(ResNo) + 
2637                  " = CurDAG->getTargetConstant(((" + CastType +
2638                  ") cast<ConstantSDNode>(" + Val + ")->getValue()), " +
2639                  getEnumName(N->getTypeNum(0)) + ");");
2640         NodeOps.push_back("Tmp" + utostr(ResNo));
2641         // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2642         // value if used multiple times by this pattern result.
2643         Val = "Tmp"+utostr(ResNo);
2644       } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
2645         Record *Op = OperatorMap[N->getName()];
2646         // Transform ExternalSymbol to TargetExternalSymbol
2647         if (Op && Op->getName() == "externalsym") {
2648           emitCode("SDOperand Tmp" + utostr(ResNo) + " = CurDAG->getTarget"
2649                    "ExternalSymbol(cast<ExternalSymbolSDNode>(" +
2650                    Val + ")->getSymbol(), " +
2651                    getEnumName(N->getTypeNum(0)) + ");");
2652           NodeOps.push_back("Tmp" + utostr(ResNo));
2653           // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
2654           // this value if used multiple times by this pattern result.
2655           Val = "Tmp"+utostr(ResNo);
2656         } else {
2657           NodeOps.push_back(Val);
2658         }
2659       } else if (!N->isLeaf() && (N->getOperator()->getName() == "tglobaladdr"
2660                  || N->getOperator()->getName() == "tglobaltlsaddr")) {
2661         Record *Op = OperatorMap[N->getName()];
2662         // Transform GlobalAddress to TargetGlobalAddress
2663         if (Op && (Op->getName() == "globaladdr" ||
2664                    Op->getName() == "globaltlsaddr")) {
2665           emitCode("SDOperand Tmp" + utostr(ResNo) + " = CurDAG->getTarget"
2666                    "GlobalAddress(cast<GlobalAddressSDNode>(" + Val +
2667                    ")->getGlobal(), " + getEnumName(N->getTypeNum(0)) +
2668                    ");");
2669           NodeOps.push_back("Tmp" + utostr(ResNo));
2670           // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
2671           // this value if used multiple times by this pattern result.
2672           Val = "Tmp"+utostr(ResNo);
2673         } else {
2674           NodeOps.push_back(Val);
2675         }
2676       } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
2677         NodeOps.push_back(Val);
2678         // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2679         // value if used multiple times by this pattern result.
2680         Val = "Tmp"+utostr(ResNo);
2681       } else if (!N->isLeaf() && N->getOperator()->getName() == "tconstpool") {
2682         NodeOps.push_back(Val);
2683         // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
2684         // value if used multiple times by this pattern result.
2685         Val = "Tmp"+utostr(ResNo);
2686       } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, ISE))) {
2687         for (unsigned i = 0; i < CP->getNumOperands(); ++i) {
2688           emitCode("AddToISelQueue(CPTmp" + utostr(i) + ");");
2689           NodeOps.push_back("CPTmp" + utostr(i));
2690         }
2691       } else {
2692         // This node, probably wrapped in a SDNodeXForm, behaves like a leaf
2693         // node even if it isn't one. Don't select it.
2694         if (!LikeLeaf) {
2695           emitCode("AddToISelQueue(" + Val + ");");
2696           if (isRoot && N->isLeaf()) {
2697             emitCode("ReplaceUses(N, " + Val + ");");
2698             emitCode("return NULL;");
2699           }
2700         }
2701         NodeOps.push_back(Val);
2702       }
2703       return NodeOps;
2704     }
2705     if (N->isLeaf()) {
2706       // If this is an explicit register reference, handle it.
2707       if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
2708         unsigned ResNo = TmpNo++;
2709         if (DI->getDef()->isSubClassOf("Register")) {
2710           emitCode("SDOperand Tmp" + utostr(ResNo) + " = CurDAG->getRegister(" +
2711                    ISE.getQualifiedName(DI->getDef()) + ", " +
2712                    getEnumName(N->getTypeNum(0)) + ");");
2713           NodeOps.push_back("Tmp" + utostr(ResNo));
2714           return NodeOps;
2715         }
2716       } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
2717         unsigned ResNo = TmpNo++;
2718         assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
2719         emitCode("SDOperand Tmp" + utostr(ResNo) + 
2720                  " = CurDAG->getTargetConstant(" + itostr(II->getValue()) +
2721                  ", " + getEnumName(N->getTypeNum(0)) + ");");
2722         NodeOps.push_back("Tmp" + utostr(ResNo));
2723         return NodeOps;
2724       }
2725     
2726 #ifndef NDEBUG
2727       N->dump();
2728 #endif
2729       assert(0 && "Unknown leaf type!");
2730       return NodeOps;
2731     }
2732
2733     Record *Op = N->getOperator();
2734     if (Op->isSubClassOf("Instruction")) {
2735       const CodeGenTarget &CGT = ISE.getTargetInfo();
2736       CodeGenInstruction &II = CGT.getInstruction(Op->getName());
2737       const DAGInstruction &Inst = ISE.getInstruction(Op);
2738       TreePattern *InstPat = Inst.getPattern();
2739       TreePatternNode *InstPatNode =
2740         isRoot ? (InstPat ? InstPat->getOnlyTree() : Pattern)
2741                : (InstPat ? InstPat->getOnlyTree() : NULL);
2742       if (InstPatNode && InstPatNode->getOperator()->getName() == "set") {
2743         InstPatNode = InstPatNode->getChild(1);
2744       }
2745       bool HasVarOps     = isRoot && II.hasVariableNumberOfOperands;
2746       bool HasImpInputs  = isRoot && Inst.getNumImpOperands() > 0;
2747       bool HasImpResults = isRoot && Inst.getNumImpResults() > 0;
2748       bool NodeHasOptInFlag = isRoot &&
2749         PatternHasProperty(Pattern, SDNPOptInFlag, ISE);
2750       bool NodeHasInFlag  = isRoot &&
2751         PatternHasProperty(Pattern, SDNPInFlag, ISE);
2752       bool NodeHasOutFlag = HasImpResults || (isRoot &&
2753         PatternHasProperty(Pattern, SDNPOutFlag, ISE));
2754       bool NodeHasChain = InstPatNode &&
2755         PatternHasProperty(InstPatNode, SDNPHasChain, ISE);
2756       bool InputHasChain = isRoot &&
2757         NodeHasProperty(Pattern, SDNPHasChain, ISE);
2758       unsigned NumResults = Inst.getNumResults();    
2759
2760       if (NodeHasOptInFlag) {
2761         emitCode("bool HasInFlag = "
2762            "(N.getOperand(N.getNumOperands()-1).getValueType() == MVT::Flag);");
2763       }
2764       if (HasVarOps)
2765         emitCode("SmallVector<SDOperand, 8> Ops" + utostr(OpcNo) + ";");
2766
2767       // How many results is this pattern expected to produce?
2768       unsigned PatResults = 0;
2769       for (unsigned i = 0, e = Pattern->getExtTypes().size(); i != e; i++) {
2770         MVT::ValueType VT = Pattern->getTypeNum(i);
2771         if (VT != MVT::isVoid && VT != MVT::Flag)
2772           PatResults++;
2773       }
2774
2775       if (OrigChains.size() > 0) {
2776         // The original input chain is being ignored. If it is not just
2777         // pointing to the op that's being folded, we should create a
2778         // TokenFactor with it and the chain of the folded op as the new chain.
2779         // We could potentially be doing multiple levels of folding, in that
2780         // case, the TokenFactor can have more operands.
2781         emitCode("SmallVector<SDOperand, 8> InChains;");
2782         for (unsigned i = 0, e = OrigChains.size(); i < e; ++i) {
2783           emitCode("if (" + OrigChains[i].first + ".Val != " +
2784                    OrigChains[i].second + ".Val) {");
2785           emitCode("  AddToISelQueue(" + OrigChains[i].first + ");");
2786           emitCode("  InChains.push_back(" + OrigChains[i].first + ");");
2787           emitCode("}");
2788         }
2789         emitCode("AddToISelQueue(" + ChainName + ");");
2790         emitCode("InChains.push_back(" + ChainName + ");");
2791         emitCode(ChainName + " = CurDAG->getNode(ISD::TokenFactor, MVT::Other, "
2792                  "&InChains[0], InChains.size());");
2793       }
2794
2795       // Loop over all of the operands of the instruction pattern, emitting code
2796       // to fill them all in.  The node 'N' usually has number children equal to
2797       // the number of input operands of the instruction.  However, in cases
2798       // where there are predicate operands for an instruction, we need to fill
2799       // in the 'execute always' values.  Match up the node operands to the
2800       // instruction operands to do this.
2801       std::vector<std::string> AllOps;
2802       unsigned NumEAInputs = 0; // # of synthesized 'execute always' inputs.
2803       for (unsigned ChildNo = 0, InstOpNo = NumResults;
2804            InstOpNo != II.OperandList.size(); ++InstOpNo) {
2805         std::vector<std::string> Ops;
2806         
2807         // If this is a normal operand or a predicate operand without
2808         // 'execute always', emit it.
2809         Record *OperandNode = II.OperandList[InstOpNo].Rec;
2810         if (!OperandNode->isSubClassOf("PredicateOperand") ||
2811             ISE.getPredicateOperand(OperandNode).AlwaysOps.empty()) {
2812           Ops = EmitResultCode(N->getChild(ChildNo), RetSelected, 
2813                                InFlagDecled, ResNodeDecled);
2814           AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
2815           ++ChildNo;
2816         } else {
2817           // Otherwise, this is a predicate operand, emit the 'execute always'
2818           // operands.
2819           const DAGPredicateOperand &Pred =
2820             ISE.getPredicateOperand(II.OperandList[InstOpNo].Rec);
2821           for (unsigned i = 0, e = Pred.AlwaysOps.size(); i != e; ++i) {
2822             Ops = EmitResultCode(Pred.AlwaysOps[i], RetSelected, 
2823                                  InFlagDecled, ResNodeDecled);
2824             AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
2825             NumEAInputs += Ops.size();
2826           }
2827         }
2828       }
2829
2830       // Emit all the chain and CopyToReg stuff.
2831       bool ChainEmitted = NodeHasChain;
2832       if (NodeHasChain)
2833         emitCode("AddToISelQueue(" + ChainName + ");");
2834       if (NodeHasInFlag || HasImpInputs)
2835         EmitInFlagSelectCode(Pattern, "N", ChainEmitted,
2836                              InFlagDecled, ResNodeDecled, true);
2837       if (NodeHasOptInFlag || NodeHasInFlag || HasImpInputs) {
2838         if (!InFlagDecled) {
2839           emitCode("SDOperand InFlag(0, 0);");
2840           InFlagDecled = true;
2841         }
2842         if (NodeHasOptInFlag) {
2843           emitCode("if (HasInFlag) {");
2844           emitCode("  InFlag = N.getOperand(N.getNumOperands()-1);");
2845           emitCode("  AddToISelQueue(InFlag);");
2846           emitCode("}");
2847         }
2848       }
2849
2850       unsigned ResNo = TmpNo++;
2851       if (!isRoot || InputHasChain || NodeHasChain || NodeHasOutFlag ||
2852           NodeHasOptInFlag) {
2853         std::string Code;
2854         std::string Code2;
2855         std::string NodeName;
2856         if (!isRoot) {
2857           NodeName = "Tmp" + utostr(ResNo);
2858           Code2 = "SDOperand " + NodeName + " = SDOperand(";
2859         } else {
2860           NodeName = "ResNode";
2861           if (!ResNodeDecled) {
2862             Code2 = "SDNode *" + NodeName + " = ";
2863             ResNodeDecled = true;
2864           } else
2865             Code2 = NodeName + " = ";
2866         }
2867
2868         Code = "CurDAG->getTargetNode(Opc" + utostr(OpcNo);
2869         unsigned OpsNo = OpcNo;
2870         emitOpcode(II.Namespace + "::" + II.TheDef->getName());
2871
2872         // Output order: results, chain, flags
2873         // Result types.
2874         if (NumResults > 0 && N->getTypeNum(0) != MVT::isVoid) {
2875           Code += ", VT" + utostr(VTNo);
2876           emitVT(getEnumName(N->getTypeNum(0)));
2877         }
2878         if (NodeHasChain)
2879           Code += ", MVT::Other";
2880         if (NodeHasOutFlag)
2881           Code += ", MVT::Flag";
2882
2883         // Figure out how many fixed inputs the node has.  This is important to
2884         // know which inputs are the variable ones if present.
2885         unsigned NumInputs = AllOps.size();
2886         NumInputs += NodeHasChain;
2887         
2888         // Inputs.
2889         if (HasVarOps) {
2890           for (unsigned i = 0, e = AllOps.size(); i != e; ++i)
2891             emitCode("Ops" + utostr(OpsNo) + ".push_back(" + AllOps[i] + ");");
2892           AllOps.clear();
2893         }
2894
2895         if (HasVarOps) {
2896           // Figure out whether any operands at the end of the op list are not
2897           // part of the variable section.
2898           std::string EndAdjust;
2899           if (NodeHasInFlag || HasImpInputs)
2900             EndAdjust = "-1";  // Always has one flag.
2901           else if (NodeHasOptInFlag)
2902             EndAdjust = "-(HasInFlag?1:0)"; // May have a flag.
2903
2904           emitCode("for (unsigned i = " + utostr(NumInputs - NumEAInputs) +
2905                    ", e = N.getNumOperands()" + EndAdjust + "; i != e; ++i) {");
2906
2907           emitCode("  AddToISelQueue(N.getOperand(i));");
2908           emitCode("  Ops" + utostr(OpsNo) + ".push_back(N.getOperand(i));");
2909           emitCode("}");
2910         }
2911
2912         if (NodeHasChain) {
2913           if (HasVarOps)
2914             emitCode("Ops" + utostr(OpsNo) + ".push_back(" + ChainName + ");");
2915           else
2916             AllOps.push_back(ChainName);
2917         }
2918
2919         if (HasVarOps) {
2920           if (NodeHasInFlag || HasImpInputs)
2921             emitCode("Ops" + utostr(OpsNo) + ".push_back(InFlag);");
2922           else if (NodeHasOptInFlag) {
2923             emitCode("if (HasInFlag)");
2924             emitCode("  Ops" + utostr(OpsNo) + ".push_back(InFlag);");
2925           }
2926           Code += ", &Ops" + utostr(OpsNo) + "[0], Ops" + utostr(OpsNo) +
2927             ".size()";
2928         } else if (NodeHasInFlag || NodeHasOptInFlag || HasImpInputs)
2929             AllOps.push_back("InFlag");
2930
2931         unsigned NumOps = AllOps.size();
2932         if (NumOps) {
2933           if (!NodeHasOptInFlag && NumOps < 4) {
2934             for (unsigned i = 0; i != NumOps; ++i)
2935               Code += ", " + AllOps[i];
2936           } else {
2937             std::string OpsCode = "SDOperand Ops" + utostr(OpsNo) + "[] = { ";
2938             for (unsigned i = 0; i != NumOps; ++i) {
2939               OpsCode += AllOps[i];
2940               if (i != NumOps-1)
2941                 OpsCode += ", ";
2942             }
2943             emitCode(OpsCode + " };");
2944             Code += ", Ops" + utostr(OpsNo) + ", ";
2945             if (NodeHasOptInFlag) {
2946               Code += "HasInFlag ? ";
2947               Code += utostr(NumOps) + " : " + utostr(NumOps-1);
2948             } else
2949               Code += utostr(NumOps);
2950           }
2951         }
2952             
2953         if (!isRoot)
2954           Code += "), 0";
2955         emitCode(Code2 + Code + ");");
2956
2957         if (NodeHasChain)
2958           // Remember which op produces the chain.
2959           if (!isRoot)
2960             emitCode(ChainName + " = SDOperand(" + NodeName +
2961                      ".Val, " + utostr(PatResults) + ");");
2962           else
2963             emitCode(ChainName + " = SDOperand(" + NodeName +
2964                      ", " + utostr(PatResults) + ");");
2965
2966         if (!isRoot) {
2967           NodeOps.push_back("Tmp" + utostr(ResNo));
2968           return NodeOps;
2969         }
2970
2971         bool NeedReplace = false;
2972         if (NodeHasOutFlag) {
2973           if (!InFlagDecled) {
2974             emitCode("SDOperand InFlag = SDOperand(ResNode, " + 
2975                      utostr(NumResults + (unsigned)NodeHasChain) + ");");
2976             InFlagDecled = true;
2977           } else
2978             emitCode("InFlag = SDOperand(ResNode, " + 
2979                      utostr(NumResults + (unsigned)NodeHasChain) + ");");
2980         }
2981
2982         if (HasImpResults && EmitCopyFromRegs(N, ResNodeDecled, ChainEmitted)) {
2983           emitCode("ReplaceUses(SDOperand(N.Val, 0), SDOperand(ResNode, 0));");
2984           NumResults = 1;
2985         }
2986
2987         if (FoldedChains.size() > 0) {
2988           std::string Code;
2989           for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
2990             emitCode("ReplaceUses(SDOperand(" +
2991                      FoldedChains[j].first + ".Val, " + 
2992                      utostr(FoldedChains[j].second) + "), SDOperand(ResNode, " +
2993                      utostr(NumResults) + "));");
2994           NeedReplace = true;
2995         }
2996
2997         if (NodeHasOutFlag) {
2998           emitCode("ReplaceUses(SDOperand(N.Val, " +
2999                    utostr(PatResults + (unsigned)InputHasChain) +"), InFlag);");
3000           NeedReplace = true;
3001         }
3002
3003         if (NeedReplace) {
3004           for (unsigned i = 0; i < NumResults; i++)
3005             emitCode("ReplaceUses(SDOperand(N.Val, " +
3006                      utostr(i) + "), SDOperand(ResNode, " + utostr(i) + "));");
3007           if (InputHasChain)
3008             emitCode("ReplaceUses(SDOperand(N.Val, " + 
3009                      utostr(PatResults) + "), SDOperand(" + ChainName + ".Val, "
3010                      + ChainName + ".ResNo" + "));");
3011         } else
3012           RetSelected = true;
3013
3014         // User does not expect the instruction would produce a chain!
3015         if ((!InputHasChain && NodeHasChain) && NodeHasOutFlag) {
3016           ;
3017         } else if (InputHasChain && !NodeHasChain) {
3018           // One of the inner node produces a chain.
3019           if (NodeHasOutFlag)
3020             emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(PatResults+1) +
3021                      "), SDOperand(ResNode, N.ResNo-1));");
3022           for (unsigned i = 0; i < PatResults; ++i)
3023             emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(i) +
3024                      "), SDOperand(ResNode, " + utostr(i) + "));");
3025           emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(PatResults) +
3026                    "), " + ChainName + ");");
3027           RetSelected = false;
3028         }
3029
3030         if (RetSelected)
3031           emitCode("return ResNode;");
3032         else
3033           emitCode("return NULL;");
3034       } else {
3035         std::string Code = "return CurDAG->SelectNodeTo(N.Val, Opc" +
3036           utostr(OpcNo);
3037         if (N->getTypeNum(0) != MVT::isVoid)
3038           Code += ", VT" + utostr(VTNo);
3039         if (NodeHasOutFlag)
3040           Code += ", MVT::Flag";
3041
3042         if (NodeHasInFlag || NodeHasOptInFlag || HasImpInputs)
3043           AllOps.push_back("InFlag");
3044
3045         unsigned NumOps = AllOps.size();
3046         if (NumOps) {
3047           if (!NodeHasOptInFlag && NumOps < 4) {
3048             for (unsigned i = 0; i != NumOps; ++i)
3049               Code += ", " + AllOps[i];
3050           } else {
3051             std::string OpsCode = "SDOperand Ops" + utostr(OpcNo) + "[] = { ";
3052             for (unsigned i = 0; i != NumOps; ++i) {
3053               OpsCode += AllOps[i];
3054               if (i != NumOps-1)
3055                 OpsCode += ", ";
3056             }
3057             emitCode(OpsCode + " };");
3058             Code += ", Ops" + utostr(OpcNo) + ", ";
3059             Code += utostr(NumOps);
3060           }
3061         }
3062         emitCode(Code + ");");
3063         emitOpcode(II.Namespace + "::" + II.TheDef->getName());
3064         if (N->getTypeNum(0) != MVT::isVoid)
3065           emitVT(getEnumName(N->getTypeNum(0)));
3066       }
3067
3068       return NodeOps;
3069     } else if (Op->isSubClassOf("SDNodeXForm")) {
3070       assert(N->getNumChildren() == 1 && "node xform should have one child!");
3071       // PatLeaf node - the operand may or may not be a leaf node. But it should
3072       // behave like one.
3073       std::vector<std::string> Ops =
3074         EmitResultCode(N->getChild(0), RetSelected, InFlagDecled,
3075                        ResNodeDecled, true);
3076       unsigned ResNo = TmpNo++;
3077       emitCode("SDOperand Tmp" + utostr(ResNo) + " = Transform_" + Op->getName()
3078                + "(" + Ops.back() + ".Val);");
3079       NodeOps.push_back("Tmp" + utostr(ResNo));
3080       if (isRoot)
3081         emitCode("return Tmp" + utostr(ResNo) + ".Val;");
3082       return NodeOps;
3083     } else {
3084       N->dump();
3085       cerr << "\n";
3086       throw std::string("Unknown node in result pattern!");
3087     }
3088   }
3089
3090   /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat'
3091   /// and add it to the tree. 'Pat' and 'Other' are isomorphic trees except that 
3092   /// 'Pat' may be missing types.  If we find an unresolved type to add a check
3093   /// for, this returns true otherwise false if Pat has all types.
3094   bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
3095                           const std::string &Prefix, bool isRoot = false) {
3096     // Did we find one?
3097     if (Pat->getExtTypes() != Other->getExtTypes()) {
3098       // Move a type over from 'other' to 'pat'.
3099       Pat->setTypes(Other->getExtTypes());
3100       // The top level node type is checked outside of the select function.
3101       if (!isRoot)
3102         emitCheck(Prefix + ".Val->getValueType(0) == " +
3103                   getName(Pat->getTypeNum(0)));
3104       return true;
3105     }
3106   
3107     unsigned OpNo =
3108       (unsigned) NodeHasProperty(Pat, SDNPHasChain, ISE);
3109     for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
3110       if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
3111                              Prefix + utostr(OpNo)))
3112         return true;
3113     return false;
3114   }
3115
3116 private:
3117   /// EmitInFlagSelectCode - Emit the flag operands for the DAG that is
3118   /// being built.
3119   void EmitInFlagSelectCode(TreePatternNode *N, const std::string &RootName,
3120                             bool &ChainEmitted, bool &InFlagDecled,
3121                             bool &ResNodeDecled, bool isRoot = false) {
3122     const CodeGenTarget &T = ISE.getTargetInfo();
3123     unsigned OpNo =
3124       (unsigned) NodeHasProperty(N, SDNPHasChain, ISE);
3125     bool HasInFlag = NodeHasProperty(N, SDNPInFlag, ISE);
3126     for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
3127       TreePatternNode *Child = N->getChild(i);
3128       if (!Child->isLeaf()) {
3129         EmitInFlagSelectCode(Child, RootName + utostr(OpNo), ChainEmitted,
3130                              InFlagDecled, ResNodeDecled);
3131       } else {
3132         if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
3133           if (!Child->getName().empty()) {
3134             std::string Name = RootName + utostr(OpNo);
3135             if (Duplicates.find(Name) != Duplicates.end())
3136               // A duplicate! Do not emit a copy for this node.
3137               continue;
3138           }
3139
3140           Record *RR = DI->getDef();
3141           if (RR->isSubClassOf("Register")) {
3142             MVT::ValueType RVT = getRegisterValueType(RR, T);
3143             if (RVT == MVT::Flag) {
3144               if (!InFlagDecled) {
3145                 emitCode("SDOperand InFlag = " + RootName + utostr(OpNo) + ";");
3146                 InFlagDecled = true;
3147               } else
3148                 emitCode("InFlag = " + RootName + utostr(OpNo) + ";");
3149               emitCode("AddToISelQueue(InFlag);");
3150             } else {
3151               if (!ChainEmitted) {
3152                 emitCode("SDOperand Chain = CurDAG->getEntryNode();");
3153                 ChainName = "Chain";
3154                 ChainEmitted = true;
3155               }
3156               emitCode("AddToISelQueue(" + RootName + utostr(OpNo) + ");");
3157               if (!InFlagDecled) {
3158                 emitCode("SDOperand InFlag(0, 0);");
3159                 InFlagDecled = true;
3160               }
3161               std::string Decl = (!ResNodeDecled) ? "SDNode *" : "";
3162               emitCode(Decl + "ResNode = CurDAG->getCopyToReg(" + ChainName +
3163                        ", " + ISE.getQualifiedName(RR) +
3164                        ", " +  RootName + utostr(OpNo) + ", InFlag).Val;");
3165               ResNodeDecled = true;
3166               emitCode(ChainName + " = SDOperand(ResNode, 0);");
3167               emitCode("InFlag = SDOperand(ResNode, 1);");
3168             }
3169           }
3170         }
3171       }
3172     }
3173
3174     if (HasInFlag) {
3175       if (!InFlagDecled) {
3176         emitCode("SDOperand InFlag = " + RootName +
3177                ".getOperand(" + utostr(OpNo) + ");");
3178         InFlagDecled = true;
3179       } else
3180         emitCode("InFlag = " + RootName +
3181                ".getOperand(" + utostr(OpNo) + ");");
3182       emitCode("AddToISelQueue(InFlag);");
3183     }
3184   }
3185
3186   /// EmitCopyFromRegs - Emit code to copy result to physical registers
3187   /// as specified by the instruction. It returns true if any copy is
3188   /// emitted.
3189   bool EmitCopyFromRegs(TreePatternNode *N, bool &ResNodeDecled,
3190                         bool &ChainEmitted) {
3191     bool RetVal = false;
3192     Record *Op = N->getOperator();
3193     if (Op->isSubClassOf("Instruction")) {
3194       const DAGInstruction &Inst = ISE.getInstruction(Op);
3195       const CodeGenTarget &CGT = ISE.getTargetInfo();
3196       unsigned NumImpResults  = Inst.getNumImpResults();
3197       for (unsigned i = 0; i < NumImpResults; i++) {
3198         Record *RR = Inst.getImpResult(i);
3199         if (RR->isSubClassOf("Register")) {
3200           MVT::ValueType RVT = getRegisterValueType(RR, CGT);
3201           if (RVT != MVT::Flag) {
3202             if (!ChainEmitted) {
3203               emitCode("SDOperand Chain = CurDAG->getEntryNode();");
3204               ChainEmitted = true;
3205               ChainName = "Chain";
3206             }
3207             std::string Decl = (!ResNodeDecled) ? "SDNode *" : "";
3208             emitCode(Decl + "ResNode = CurDAG->getCopyFromReg(" + ChainName +
3209                      ", " + ISE.getQualifiedName(RR) + ", " + getEnumName(RVT) +
3210                      ", InFlag).Val;");
3211             ResNodeDecled = true;
3212             emitCode(ChainName + " = SDOperand(ResNode, 1);");
3213             emitCode("InFlag = SDOperand(ResNode, 2);");
3214             RetVal = true;
3215           }
3216         }
3217       }
3218     }
3219     return RetVal;
3220   }
3221 };
3222
3223 /// EmitCodeForPattern - Given a pattern to match, emit code to the specified
3224 /// stream to match the pattern, and generate the code for the match if it
3225 /// succeeds.  Returns true if the pattern is not guaranteed to match.
3226 void DAGISelEmitter::GenerateCodeForPattern(PatternToMatch &Pattern,
3227                   std::vector<std::pair<unsigned, std::string> > &GeneratedCode,
3228                                            std::set<std::string> &GeneratedDecl,
3229                                         std::vector<std::string> &TargetOpcodes,
3230                                           std::vector<std::string> &TargetVTs) {
3231   PatternCodeEmitter Emitter(*this, Pattern.getPredicates(),
3232                              Pattern.getSrcPattern(), Pattern.getDstPattern(),
3233                              GeneratedCode, GeneratedDecl,
3234                              TargetOpcodes, TargetVTs);
3235
3236   // Emit the matcher, capturing named arguments in VariableMap.
3237   bool FoundChain = false;
3238   Emitter.EmitMatchCode(Pattern.getSrcPattern(), NULL, "N", "", FoundChain);
3239
3240   // TP - Get *SOME* tree pattern, we don't care which.
3241   TreePattern &TP = *PatternFragments.begin()->second;
3242   
3243   // At this point, we know that we structurally match the pattern, but the
3244   // types of the nodes may not match.  Figure out the fewest number of type 
3245   // comparisons we need to emit.  For example, if there is only one integer
3246   // type supported by a target, there should be no type comparisons at all for
3247   // integer patterns!
3248   //
3249   // To figure out the fewest number of type checks needed, clone the pattern,
3250   // remove the types, then perform type inference on the pattern as a whole.
3251   // If there are unresolved types, emit an explicit check for those types,
3252   // apply the type to the tree, then rerun type inference.  Iterate until all
3253   // types are resolved.
3254   //
3255   TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
3256   RemoveAllTypes(Pat);
3257   
3258   do {
3259     // Resolve/propagate as many types as possible.
3260     try {
3261       bool MadeChange = true;
3262       while (MadeChange)
3263         MadeChange = Pat->ApplyTypeConstraints(TP,
3264                                                true/*Ignore reg constraints*/);
3265     } catch (...) {
3266       assert(0 && "Error: could not find consistent types for something we"
3267              " already decided was ok!");
3268       abort();
3269     }
3270
3271     // Insert a check for an unresolved type and add it to the tree.  If we find
3272     // an unresolved type to add a check for, this returns true and we iterate,
3273     // otherwise we are done.
3274   } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N", true));
3275
3276   Emitter.EmitResultCode(Pattern.getDstPattern(),
3277                          false, false, false, false, true);
3278   delete Pat;
3279 }
3280
3281 /// EraseCodeLine - Erase one code line from all of the patterns.  If removing
3282 /// a line causes any of them to be empty, remove them and return true when
3283 /// done.
3284 static bool EraseCodeLine(std::vector<std::pair<PatternToMatch*, 
3285                           std::vector<std::pair<unsigned, std::string> > > >
3286                           &Patterns) {
3287   bool ErasedPatterns = false;
3288   for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
3289     Patterns[i].second.pop_back();
3290     if (Patterns[i].second.empty()) {
3291       Patterns.erase(Patterns.begin()+i);
3292       --i; --e;
3293       ErasedPatterns = true;
3294     }
3295   }
3296   return ErasedPatterns;
3297 }
3298
3299 /// EmitPatterns - Emit code for at least one pattern, but try to group common
3300 /// code together between the patterns.
3301 void DAGISelEmitter::EmitPatterns(std::vector<std::pair<PatternToMatch*, 
3302                               std::vector<std::pair<unsigned, std::string> > > >
3303                                   &Patterns, unsigned Indent,
3304                                   std::ostream &OS) {
3305   typedef std::pair<unsigned, std::string> CodeLine;
3306   typedef std::vector<CodeLine> CodeList;
3307   typedef std::vector<std::pair<PatternToMatch*, CodeList> > PatternList;
3308   
3309   if (Patterns.empty()) return;
3310   
3311   // Figure out how many patterns share the next code line.  Explicitly copy
3312   // FirstCodeLine so that we don't invalidate a reference when changing
3313   // Patterns.
3314   const CodeLine FirstCodeLine = Patterns.back().second.back();
3315   unsigned LastMatch = Patterns.size()-1;
3316   while (LastMatch != 0 && Patterns[LastMatch-1].second.back() == FirstCodeLine)
3317     --LastMatch;
3318   
3319   // If not all patterns share this line, split the list into two pieces.  The
3320   // first chunk will use this line, the second chunk won't.
3321   if (LastMatch != 0) {
3322     PatternList Shared(Patterns.begin()+LastMatch, Patterns.end());
3323     PatternList Other(Patterns.begin(), Patterns.begin()+LastMatch);
3324     
3325     // FIXME: Emit braces?
3326     if (Shared.size() == 1) {
3327       PatternToMatch &Pattern = *Shared.back().first;
3328       OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
3329       Pattern.getSrcPattern()->print(OS);
3330       OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
3331       Pattern.getDstPattern()->print(OS);
3332       OS << "\n";
3333       unsigned AddedComplexity = Pattern.getAddedComplexity();
3334       OS << std::string(Indent, ' ') << "// Pattern complexity = "
3335          << getPatternSize(Pattern.getSrcPattern(), *this) + AddedComplexity
3336          << "  cost = "
3337          << getResultPatternCost(Pattern.getDstPattern(), *this)
3338          << "  size = "
3339          << getResultPatternSize(Pattern.getDstPattern(), *this) << "\n";
3340     }
3341     if (FirstCodeLine.first != 1) {
3342       OS << std::string(Indent, ' ') << "{\n";
3343       Indent += 2;
3344     }
3345     EmitPatterns(Shared, Indent, OS);
3346     if (FirstCodeLine.first != 1) {
3347       Indent -= 2;
3348       OS << std::string(Indent, ' ') << "}\n";
3349     }
3350     
3351     if (Other.size() == 1) {
3352       PatternToMatch &Pattern = *Other.back().first;
3353       OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
3354       Pattern.getSrcPattern()->print(OS);
3355       OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
3356       Pattern.getDstPattern()->print(OS);
3357       OS << "\n";
3358       unsigned AddedComplexity = Pattern.getAddedComplexity();
3359       OS << std::string(Indent, ' ') << "// Pattern complexity = "
3360          << getPatternSize(Pattern.getSrcPattern(), *this) + AddedComplexity
3361          << "  cost = "
3362          << getResultPatternCost(Pattern.getDstPattern(), *this)
3363          << "  size = "
3364          << getResultPatternSize(Pattern.getDstPattern(), *this) << "\n";
3365     }
3366     EmitPatterns(Other, Indent, OS);
3367     return;
3368   }
3369   
3370   // Remove this code from all of the patterns that share it.
3371   bool ErasedPatterns = EraseCodeLine(Patterns);
3372   
3373   bool isPredicate = FirstCodeLine.first == 1;
3374   
3375   // Otherwise, every pattern in the list has this line.  Emit it.
3376   if (!isPredicate) {
3377     // Normal code.
3378     OS << std::string(Indent, ' ') << FirstCodeLine.second << "\n";
3379   } else {
3380     OS << std::string(Indent, ' ') << "if (" << FirstCodeLine.second;
3381     
3382     // If the next code line is another predicate, and if all of the pattern
3383     // in this group share the same next line, emit it inline now.  Do this
3384     // until we run out of common predicates.
3385     while (!ErasedPatterns && Patterns.back().second.back().first == 1) {
3386       // Check that all of fhe patterns in Patterns end with the same predicate.
3387       bool AllEndWithSamePredicate = true;
3388       for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
3389         if (Patterns[i].second.back() != Patterns.back().second.back()) {
3390           AllEndWithSamePredicate = false;
3391           break;
3392         }
3393       // If all of the predicates aren't the same, we can't share them.
3394       if (!AllEndWithSamePredicate) break;
3395       
3396       // Otherwise we can.  Emit it shared now.
3397       OS << " &&\n" << std::string(Indent+4, ' ')
3398          << Patterns.back().second.back().second;
3399       ErasedPatterns = EraseCodeLine(Patterns);
3400     }
3401     
3402     OS << ") {\n";
3403     Indent += 2;
3404   }
3405   
3406   EmitPatterns(Patterns, Indent, OS);
3407   
3408   if (isPredicate)
3409     OS << std::string(Indent-2, ' ') << "}\n";
3410 }
3411
3412 static std::string getOpcodeName(Record *Op, DAGISelEmitter &ISE) {
3413   const SDNodeInfo &OpcodeInfo = ISE.getSDNodeInfo(Op);
3414   return OpcodeInfo.getEnumName();
3415 }
3416
3417 static std::string getLegalCName(std::string OpName) {
3418   std::string::size_type pos = OpName.find("::");
3419   if (pos != std::string::npos)
3420     OpName.replace(pos, 2, "_");
3421   return OpName;
3422 }
3423
3424 void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
3425   // Get the namespace to insert instructions into.  Make sure not to pick up
3426   // "TargetInstrInfo" by accidentally getting the namespace off the PHI
3427   // instruction or something.
3428   std::string InstNS;
3429   for (CodeGenTarget::inst_iterator i = Target.inst_begin(),
3430        e = Target.inst_end(); i != e; ++i) {
3431     InstNS = i->second.Namespace;
3432     if (InstNS != "TargetInstrInfo")
3433       break;
3434   }
3435   
3436   if (!InstNS.empty()) InstNS += "::";
3437   
3438   // Group the patterns by their top-level opcodes.
3439   std::map<std::string, std::vector<PatternToMatch*> > PatternsByOpcode;
3440   // All unique target node emission functions.
3441   std::map<std::string, unsigned> EmitFunctions;
3442   for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
3443     TreePatternNode *Node = PatternsToMatch[i].getSrcPattern();
3444     if (!Node->isLeaf()) {
3445       PatternsByOpcode[getOpcodeName(Node->getOperator(), *this)].
3446         push_back(&PatternsToMatch[i]);
3447     } else {
3448       const ComplexPattern *CP;
3449       if (dynamic_cast<IntInit*>(Node->getLeafValue())) {
3450         PatternsByOpcode[getOpcodeName(getSDNodeNamed("imm"), *this)].
3451           push_back(&PatternsToMatch[i]);
3452       } else if ((CP = NodeGetComplexPattern(Node, *this))) {
3453         std::vector<Record*> OpNodes = CP->getRootNodes();
3454         for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
3455           PatternsByOpcode[getOpcodeName(OpNodes[j], *this)]
3456             .insert(PatternsByOpcode[getOpcodeName(OpNodes[j], *this)].begin(),
3457                     &PatternsToMatch[i]);
3458         }
3459       } else {
3460         cerr << "Unrecognized opcode '";
3461         Node->dump();
3462         cerr << "' on tree pattern '";
3463         cerr << PatternsToMatch[i].getDstPattern()->getOperator()->getName();
3464         cerr << "'!\n";
3465         exit(1);
3466       }
3467     }
3468   }
3469
3470   // For each opcode, there might be multiple select functions, one per
3471   // ValueType of the node (or its first operand if it doesn't produce a
3472   // non-chain result.
3473   std::map<std::string, std::vector<std::string> > OpcodeVTMap;
3474
3475   // Emit one Select_* method for each top-level opcode.  We do this instead of
3476   // emitting one giant switch statement to support compilers where this will
3477   // result in the recursive functions taking less stack space.
3478   for (std::map<std::string, std::vector<PatternToMatch*> >::iterator
3479          PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
3480        PBOI != E; ++PBOI) {
3481     const std::string &OpName = PBOI->first;
3482     std::vector<PatternToMatch*> &PatternsOfOp = PBOI->second;
3483     assert(!PatternsOfOp.empty() && "No patterns but map has entry?");
3484
3485     // We want to emit all of the matching code now.  However, we want to emit
3486     // the matches in order of minimal cost.  Sort the patterns so the least
3487     // cost one is at the start.
3488     std::stable_sort(PatternsOfOp.begin(), PatternsOfOp.end(),
3489                      PatternSortingPredicate(*this));
3490
3491     // Split them into groups by type.
3492     std::map<MVT::ValueType, std::vector<PatternToMatch*> > PatternsByType;
3493     for (unsigned i = 0, e = PatternsOfOp.size(); i != e; ++i) {
3494       PatternToMatch *Pat = PatternsOfOp[i];
3495       TreePatternNode *SrcPat = Pat->getSrcPattern();
3496       MVT::ValueType VT = SrcPat->getTypeNum(0);
3497       std::map<MVT::ValueType, std::vector<PatternToMatch*> >::iterator TI = 
3498         PatternsByType.find(VT);
3499       if (TI != PatternsByType.end())
3500         TI->second.push_back(Pat);
3501       else {
3502         std::vector<PatternToMatch*> PVec;
3503         PVec.push_back(Pat);
3504         PatternsByType.insert(std::make_pair(VT, PVec));
3505       }
3506     }
3507
3508     for (std::map<MVT::ValueType, std::vector<PatternToMatch*> >::iterator
3509            II = PatternsByType.begin(), EE = PatternsByType.end(); II != EE;
3510          ++II) {
3511       MVT::ValueType OpVT = II->first;
3512       std::vector<PatternToMatch*> &Patterns = II->second;
3513       typedef std::vector<std::pair<unsigned,std::string> > CodeList;
3514       typedef std::vector<std::pair<unsigned,std::string> >::iterator CodeListI;
3515     
3516       std::vector<std::pair<PatternToMatch*, CodeList> > CodeForPatterns;
3517       std::vector<std::vector<std::string> > PatternOpcodes;
3518       std::vector<std::vector<std::string> > PatternVTs;
3519       std::vector<std::set<std::string> > PatternDecls;
3520       for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
3521         CodeList GeneratedCode;
3522         std::set<std::string> GeneratedDecl;
3523         std::vector<std::string> TargetOpcodes;
3524         std::vector<std::string> TargetVTs;
3525         GenerateCodeForPattern(*Patterns[i], GeneratedCode, GeneratedDecl,
3526                                TargetOpcodes, TargetVTs);
3527         CodeForPatterns.push_back(std::make_pair(Patterns[i], GeneratedCode));
3528         PatternDecls.push_back(GeneratedDecl);
3529         PatternOpcodes.push_back(TargetOpcodes);
3530         PatternVTs.push_back(TargetVTs);
3531       }
3532     
3533       // Scan the code to see if all of the patterns are reachable and if it is
3534       // possible that the last one might not match.
3535       bool mightNotMatch = true;
3536       for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
3537         CodeList &GeneratedCode = CodeForPatterns[i].second;
3538         mightNotMatch = false;
3539
3540         for (unsigned j = 0, e = GeneratedCode.size(); j != e; ++j) {
3541           if (GeneratedCode[j].first == 1) { // predicate.
3542             mightNotMatch = true;
3543             break;
3544           }
3545         }
3546       
3547         // If this pattern definitely matches, and if it isn't the last one, the
3548         // patterns after it CANNOT ever match.  Error out.
3549         if (mightNotMatch == false && i != CodeForPatterns.size()-1) {
3550           cerr << "Pattern '";
3551           CodeForPatterns[i].first->getSrcPattern()->print(*cerr.stream());
3552           cerr << "' is impossible to select!\n";
3553           exit(1);
3554         }
3555       }
3556
3557       // Factor target node emission code (emitted by EmitResultCode) into
3558       // separate functions. Uniquing and share them among all instruction
3559       // selection routines.
3560       for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
3561         CodeList &GeneratedCode = CodeForPatterns[i].second;
3562         std::vector<std::string> &TargetOpcodes = PatternOpcodes[i];
3563         std::vector<std::string> &TargetVTs = PatternVTs[i];
3564         std::set<std::string> Decls = PatternDecls[i];
3565         std::vector<std::string> AddedInits;
3566         int CodeSize = (int)GeneratedCode.size();
3567         int LastPred = -1;
3568         for (int j = CodeSize-1; j >= 0; --j) {
3569           if (LastPred == -1 && GeneratedCode[j].first == 1)
3570             LastPred = j;
3571           else if (LastPred != -1 && GeneratedCode[j].first == 2)
3572             AddedInits.push_back(GeneratedCode[j].second);
3573         }
3574
3575         std::string CalleeCode = "(const SDOperand &N";
3576         std::string CallerCode = "(N";
3577         for (unsigned j = 0, e = TargetOpcodes.size(); j != e; ++j) {
3578           CalleeCode += ", unsigned Opc" + utostr(j);
3579           CallerCode += ", " + TargetOpcodes[j];
3580         }
3581         for (unsigned j = 0, e = TargetVTs.size(); j != e; ++j) {
3582           CalleeCode += ", MVT::ValueType VT" + utostr(j);
3583           CallerCode += ", " + TargetVTs[j];
3584         }
3585         for (std::set<std::string>::iterator
3586                I = Decls.begin(), E = Decls.end(); I != E; ++I) {
3587           std::string Name = *I;
3588           CalleeCode += ", SDOperand &" + Name;
3589           CallerCode += ", " + Name;
3590         }
3591         CallerCode += ");";
3592         CalleeCode += ") ";
3593         // Prevent emission routines from being inlined to reduce selection
3594         // routines stack frame sizes.
3595         CalleeCode += "DISABLE_INLINE ";
3596         CalleeCode += "{\n";
3597
3598         for (std::vector<std::string>::const_reverse_iterator
3599                I = AddedInits.rbegin(), E = AddedInits.rend(); I != E; ++I)
3600           CalleeCode += "  " + *I + "\n";
3601
3602         for (int j = LastPred+1; j < CodeSize; ++j)
3603           CalleeCode += "  " + GeneratedCode[j].second + "\n";
3604         for (int j = LastPred+1; j < CodeSize; ++j)
3605           GeneratedCode.pop_back();
3606         CalleeCode += "}\n";
3607
3608         // Uniquing the emission routines.
3609         unsigned EmitFuncNum;
3610         std::map<std::string, unsigned>::iterator EFI =
3611           EmitFunctions.find(CalleeCode);
3612         if (EFI != EmitFunctions.end()) {
3613           EmitFuncNum = EFI->second;
3614         } else {
3615           EmitFuncNum = EmitFunctions.size();
3616           EmitFunctions.insert(std::make_pair(CalleeCode, EmitFuncNum));
3617           OS << "SDNode *Emit_" << utostr(EmitFuncNum) << CalleeCode;
3618         }
3619
3620         // Replace the emission code within selection routines with calls to the
3621         // emission functions.
3622         CallerCode = "return Emit_" + utostr(EmitFuncNum) + CallerCode;
3623         GeneratedCode.push_back(std::make_pair(false, CallerCode));
3624       }
3625
3626       // Print function.
3627       std::string OpVTStr;
3628       if (OpVT == MVT::iPTR) {
3629         OpVTStr = "_iPTR";
3630       } else if (OpVT == MVT::isVoid) {
3631         // Nodes with a void result actually have a first result type of either
3632         // Other (a chain) or Flag.  Since there is no one-to-one mapping from
3633         // void to this case, we handle it specially here.
3634       } else {
3635         OpVTStr = "_" + getEnumName(OpVT).substr(5);  // Skip 'MVT::'
3636       }
3637       std::map<std::string, std::vector<std::string> >::iterator OpVTI =
3638         OpcodeVTMap.find(OpName);
3639       if (OpVTI == OpcodeVTMap.end()) {
3640         std::vector<std::string> VTSet;
3641         VTSet.push_back(OpVTStr);
3642         OpcodeVTMap.insert(std::make_pair(OpName, VTSet));
3643       } else
3644         OpVTI->second.push_back(OpVTStr);
3645
3646       OS << "SDNode *Select_" << getLegalCName(OpName)
3647          << OpVTStr << "(const SDOperand &N) {\n";    
3648
3649       // Loop through and reverse all of the CodeList vectors, as we will be
3650       // accessing them from their logical front, but accessing the end of a
3651       // vector is more efficient.
3652       for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
3653         CodeList &GeneratedCode = CodeForPatterns[i].second;
3654         std::reverse(GeneratedCode.begin(), GeneratedCode.end());
3655       }
3656     
3657       // Next, reverse the list of patterns itself for the same reason.
3658       std::reverse(CodeForPatterns.begin(), CodeForPatterns.end());
3659     
3660       // Emit all of the patterns now, grouped together to share code.
3661       EmitPatterns(CodeForPatterns, 2, OS);
3662     
3663       // If the last pattern has predicates (which could fail) emit code to
3664       // catch the case where nothing handles a pattern.
3665       if (mightNotMatch) {
3666         OS << "  cerr << \"Cannot yet select: \";\n";
3667         if (OpName != "ISD::INTRINSIC_W_CHAIN" &&
3668             OpName != "ISD::INTRINSIC_WO_CHAIN" &&
3669             OpName != "ISD::INTRINSIC_VOID") {
3670           OS << "  N.Val->dump(CurDAG);\n";
3671         } else {
3672           OS << "  unsigned iid = cast<ConstantSDNode>(N.getOperand("
3673             "N.getOperand(0).getValueType() == MVT::Other))->getValue();\n"
3674              << "  cerr << \"intrinsic %\"<< "
3675             "Intrinsic::getName((Intrinsic::ID)iid);\n";
3676         }
3677         OS << "  cerr << '\\n';\n"
3678            << "  abort();\n"
3679            << "  return NULL;\n";
3680       }
3681       OS << "}\n\n";
3682     }
3683   }
3684   
3685   // Emit boilerplate.
3686   OS << "SDNode *Select_INLINEASM(SDOperand N) {\n"
3687      << "  std::vector<SDOperand> Ops(N.Val->op_begin(), N.Val->op_end());\n"
3688      << "  AddToISelQueue(N.getOperand(0)); // Select the chain.\n\n"
3689      << "  // Select the flag operand.\n"
3690      << "  if (Ops.back().getValueType() == MVT::Flag)\n"
3691      << "    AddToISelQueue(Ops.back());\n"
3692      << "  SelectInlineAsmMemoryOperands(Ops, *CurDAG);\n"
3693      << "  std::vector<MVT::ValueType> VTs;\n"
3694      << "  VTs.push_back(MVT::Other);\n"
3695      << "  VTs.push_back(MVT::Flag);\n"
3696      << "  SDOperand New = CurDAG->getNode(ISD::INLINEASM, VTs, &Ops[0], "
3697                  "Ops.size());\n"
3698      << "  return New.Val;\n"
3699      << "}\n\n";
3700   
3701   OS << "SDNode *Select_LABEL(const SDOperand &N) {\n"
3702      << "  SDOperand Chain = N.getOperand(0);\n"
3703      << "  SDOperand N1 = N.getOperand(1);\n"
3704      << "  unsigned C = cast<ConstantSDNode>(N1)->getValue();\n"
3705      << "  SDOperand Tmp = CurDAG->getTargetConstant(C, MVT::i32);\n"
3706      << "  AddToISelQueue(Chain);\n"
3707      << "  return CurDAG->getTargetNode(TargetInstrInfo::LABEL,\n"
3708      << "                               MVT::Other, Tmp, Chain);\n"
3709      << "}\n\n";
3710
3711   OS << "// The main instruction selector code.\n"
3712      << "SDNode *SelectCode(SDOperand N) {\n"
3713      << "  if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
3714      << "      N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
3715      << "INSTRUCTION_LIST_END)) {\n"
3716      << "    return NULL;   // Already selected.\n"
3717      << "  }\n\n"
3718      << "  MVT::ValueType NVT = N.Val->getValueType(0);\n"
3719      << "  switch (N.getOpcode()) {\n"
3720      << "  default: break;\n"
3721      << "  case ISD::EntryToken:       // These leaves remain the same.\n"
3722      << "  case ISD::BasicBlock:\n"
3723      << "  case ISD::Register:\n"
3724      << "  case ISD::HANDLENODE:\n"
3725      << "  case ISD::TargetConstant:\n"
3726      << "  case ISD::TargetConstantPool:\n"
3727      << "  case ISD::TargetFrameIndex:\n"
3728      << "  case ISD::TargetJumpTable:\n"
3729      << "  case ISD::TargetGlobalTLSAddress:\n"
3730      << "  case ISD::TargetGlobalAddress: {\n"
3731      << "    return NULL;\n"
3732      << "  }\n"
3733      << "  case ISD::AssertSext:\n"
3734      << "  case ISD::AssertZext: {\n"
3735      << "    AddToISelQueue(N.getOperand(0));\n"
3736      << "    ReplaceUses(N, N.getOperand(0));\n"
3737      << "    return NULL;\n"
3738      << "  }\n"
3739      << "  case ISD::TokenFactor:\n"
3740      << "  case ISD::CopyFromReg:\n"
3741      << "  case ISD::CopyToReg: {\n"
3742      << "    for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
3743      << "      AddToISelQueue(N.getOperand(i));\n"
3744      << "    return NULL;\n"
3745      << "  }\n"
3746      << "  case ISD::INLINEASM: return Select_INLINEASM(N);\n"
3747      << "  case ISD::LABEL: return Select_LABEL(N);\n";
3748
3749     
3750   // Loop over all of the case statements, emiting a call to each method we
3751   // emitted above.
3752   for (std::map<std::string, std::vector<PatternToMatch*> >::iterator
3753          PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
3754        PBOI != E; ++PBOI) {
3755     const std::string &OpName = PBOI->first;
3756     // Potentially multiple versions of select for this opcode. One for each
3757     // ValueType of the node (or its first true operand if it doesn't produce a
3758     // result.
3759     std::map<std::string, std::vector<std::string> >::iterator OpVTI =
3760       OpcodeVTMap.find(OpName);
3761     std::vector<std::string> &OpVTs = OpVTI->second;
3762     OS << "  case " << OpName << ": {\n";
3763     if (OpVTs.size() == 1) {
3764       std::string &VTStr = OpVTs[0];
3765       OS << "    return Select_" << getLegalCName(OpName)
3766          << VTStr << "(N);\n";
3767     } else {
3768       // Keep track of whether we see a pattern that has an iPtr result.
3769       bool HasPtrPattern = false;
3770       bool HasDefaultPattern = false;
3771       
3772       OS << "    switch (NVT) {\n";
3773       for (unsigned i = 0, e = OpVTs.size(); i < e; ++i) {
3774         std::string &VTStr = OpVTs[i];
3775         if (VTStr.empty()) {
3776           HasDefaultPattern = true;
3777           continue;
3778         }
3779
3780         // If this is a match on iPTR: don't emit it directly, we need special
3781         // code.
3782         if (VTStr == "_iPTR") {
3783           HasPtrPattern = true;
3784           continue;
3785         }
3786         OS << "    case MVT::" << VTStr.substr(1) << ":\n"
3787            << "      return Select_" << getLegalCName(OpName)
3788            << VTStr << "(N);\n";
3789       }
3790       OS << "    default:\n";
3791       
3792       // If there is an iPTR result version of this pattern, emit it here.
3793       if (HasPtrPattern) {
3794         OS << "      if (NVT == TLI.getPointerTy())\n";
3795         OS << "        return Select_" << getLegalCName(OpName) <<"_iPTR(N);\n";
3796       }
3797       if (HasDefaultPattern) {
3798         OS << "      return Select_" << getLegalCName(OpName) << "(N);\n";
3799       }
3800       OS << "      break;\n";
3801       OS << "    }\n";
3802       OS << "    break;\n";
3803     }
3804     OS << "  }\n";
3805   }
3806
3807   OS << "  } // end of big switch.\n\n"
3808      << "  cerr << \"Cannot yet select: \";\n"
3809      << "  if (N.getOpcode() != ISD::INTRINSIC_W_CHAIN &&\n"
3810      << "      N.getOpcode() != ISD::INTRINSIC_WO_CHAIN &&\n"
3811      << "      N.getOpcode() != ISD::INTRINSIC_VOID) {\n"
3812      << "    N.Val->dump(CurDAG);\n"
3813      << "  } else {\n"
3814      << "    unsigned iid = cast<ConstantSDNode>(N.getOperand("
3815                "N.getOperand(0).getValueType() == MVT::Other))->getValue();\n"
3816      << "    cerr << \"intrinsic %\"<< "
3817                "Intrinsic::getName((Intrinsic::ID)iid);\n"
3818      << "  }\n"
3819      << "  cerr << '\\n';\n"
3820      << "  abort();\n"
3821      << "  return NULL;\n"
3822      << "}\n";
3823 }
3824
3825 void DAGISelEmitter::run(std::ostream &OS) {
3826   EmitSourceFileHeader("DAG Instruction Selector for the " + Target.getName() +
3827                        " target", OS);
3828   
3829   OS << "// *** NOTE: This file is #included into the middle of the target\n"
3830      << "// *** instruction selector class.  These functions are really "
3831      << "methods.\n\n";
3832   
3833   OS << "#include \"llvm/Support/Compiler.h\"\n";
3834
3835   OS << "// Instruction selector priority queue:\n"
3836      << "std::vector<SDNode*> ISelQueue;\n";
3837   OS << "/// Keep track of nodes which have already been added to queue.\n"
3838      << "unsigned char *ISelQueued;\n";
3839   OS << "/// Keep track of nodes which have already been selected.\n"
3840      << "unsigned char *ISelSelected;\n";
3841   OS << "/// Dummy parameter to ReplaceAllUsesOfValueWith().\n"
3842      << "std::vector<SDNode*> ISelKilled;\n\n";
3843
3844   OS << "/// IsChainCompatible - Returns true if Chain is Op or Chain does\n";
3845   OS << "/// not reach Op.\n";
3846   OS << "static bool IsChainCompatible(SDNode *Chain, SDNode *Op) {\n";
3847   OS << "  if (Chain->getOpcode() == ISD::EntryToken)\n";
3848   OS << "    return true;\n";
3849   OS << "  else if (Chain->getOpcode() == ISD::TokenFactor)\n";
3850   OS << "    return false;\n";
3851   OS << "  else if (Chain->getNumOperands() > 0) {\n";
3852   OS << "    SDOperand C0 = Chain->getOperand(0);\n";
3853   OS << "    if (C0.getValueType() == MVT::Other)\n";
3854   OS << "      return C0.Val != Op && IsChainCompatible(C0.Val, Op);\n";
3855   OS << "  }\n";
3856   OS << "  return true;\n";
3857   OS << "}\n";
3858
3859   OS << "/// Sorting functions for the selection queue.\n"
3860      << "struct isel_sort : public std::binary_function"
3861      << "<SDNode*, SDNode*, bool> {\n"
3862      << "  bool operator()(const SDNode* left, const SDNode* right) "
3863      << "const {\n"
3864      << "    return (left->getNodeId() > right->getNodeId());\n"
3865      << "  }\n"
3866      << "};\n\n";
3867
3868   OS << "inline void setQueued(int Id) {\n";
3869   OS << "  ISelQueued[Id / 8] |= 1 << (Id % 8);\n";
3870   OS << "}\n";
3871   OS << "inline bool isQueued(int Id) {\n";
3872   OS << "  return ISelQueued[Id / 8] & (1 << (Id % 8));\n";
3873   OS << "}\n";
3874   OS << "inline void setSelected(int Id) {\n";
3875   OS << "  ISelSelected[Id / 8] |= 1 << (Id % 8);\n";
3876   OS << "}\n";
3877   OS << "inline bool isSelected(int Id) {\n";
3878   OS << "  return ISelSelected[Id / 8] & (1 << (Id % 8));\n";
3879   OS << "}\n\n";
3880
3881   OS << "void AddToISelQueue(SDOperand N) DISABLE_INLINE {\n";
3882   OS << "  int Id = N.Val->getNodeId();\n";
3883   OS << "  if (Id != -1 && !isQueued(Id)) {\n";
3884   OS << "    ISelQueue.push_back(N.Val);\n";
3885  OS << "    std::push_heap(ISelQueue.begin(), ISelQueue.end(), isel_sort());\n";
3886   OS << "    setQueued(Id);\n";
3887   OS << "  }\n";
3888   OS << "}\n\n";
3889
3890   OS << "inline void RemoveKilled() {\n";
3891 OS << "  unsigned NumKilled = ISelKilled.size();\n";
3892   OS << "  if (NumKilled) {\n";
3893   OS << "    for (unsigned i = 0; i != NumKilled; ++i) {\n";
3894   OS << "      SDNode *Temp = ISelKilled[i];\n";
3895   OS << "      ISelQueue.erase(std::remove(ISelQueue.begin(), ISelQueue.end(), "
3896      << "Temp), ISelQueue.end());\n";
3897   OS << "    };\n";
3898  OS << "    std::make_heap(ISelQueue.begin(), ISelQueue.end(), isel_sort());\n";
3899   OS << "    ISelKilled.clear();\n";
3900   OS << "  }\n";
3901   OS << "}\n\n";
3902
3903   OS << "void ReplaceUses(SDOperand F, SDOperand T) DISABLE_INLINE {\n";
3904   OS << "  CurDAG->ReplaceAllUsesOfValueWith(F, T, ISelKilled);\n";
3905   OS << "  setSelected(F.Val->getNodeId());\n";
3906   OS << "  RemoveKilled();\n";
3907   OS << "}\n";
3908   OS << "inline void ReplaceUses(SDNode *F, SDNode *T) {\n";
3909   OS << "  CurDAG->ReplaceAllUsesWith(F, T, &ISelKilled);\n";
3910   OS << "  setSelected(F->getNodeId());\n";
3911   OS << "  RemoveKilled();\n";
3912   OS << "}\n\n";
3913
3914   OS << "// SelectRoot - Top level entry to DAG isel.\n";
3915   OS << "SDOperand SelectRoot(SDOperand Root) {\n";
3916   OS << "  SelectRootInit();\n";
3917   OS << "  unsigned NumBytes = (DAGSize + 7) / 8;\n";
3918   OS << "  ISelQueued   = new unsigned char[NumBytes];\n";
3919   OS << "  ISelSelected = new unsigned char[NumBytes];\n";
3920   OS << "  memset(ISelQueued,   0, NumBytes);\n";
3921   OS << "  memset(ISelSelected, 0, NumBytes);\n";
3922   OS << "\n";
3923   OS << "  // Create a dummy node (which is not added to allnodes), that adds\n"
3924      << "  // a reference to the root node, preventing it from being deleted,\n"
3925      << "  // and tracking any changes of the root.\n"
3926      << "  HandleSDNode Dummy(CurDAG->getRoot());\n"
3927      << "  ISelQueue.push_back(CurDAG->getRoot().Val);\n";
3928   OS << "  while (!ISelQueue.empty()) {\n";
3929   OS << "    SDNode *Node = ISelQueue.front();\n";
3930   OS << "    std::pop_heap(ISelQueue.begin(), ISelQueue.end(), isel_sort());\n";
3931   OS << "    ISelQueue.pop_back();\n";
3932   OS << "    if (!isSelected(Node->getNodeId())) {\n";
3933   OS << "      SDNode *ResNode = Select(SDOperand(Node, 0));\n";
3934   OS << "      if (ResNode != Node) {\n";
3935   OS << "        if (ResNode)\n";
3936   OS << "          ReplaceUses(Node, ResNode);\n";
3937   OS << "        if (Node->use_empty()) { // Don't delete EntryToken, etc.\n";
3938   OS << "          CurDAG->RemoveDeadNode(Node, ISelKilled);\n";
3939   OS << "          RemoveKilled();\n";
3940   OS << "        }\n";
3941   OS << "      }\n";
3942   OS << "    }\n";
3943   OS << "  }\n";
3944   OS << "\n";
3945   OS << "  delete[] ISelQueued;\n";
3946   OS << "  ISelQueued = NULL;\n";
3947   OS << "  delete[] ISelSelected;\n";
3948   OS << "  ISelSelected = NULL;\n";
3949   OS << "  return Dummy.getValue();\n";
3950   OS << "}\n";
3951   
3952   Intrinsics = LoadIntrinsics(Records);
3953   ParseNodeInfo();
3954   ParseNodeTransforms(OS);
3955   ParseComplexPatterns();
3956   ParsePatternFragments(OS);
3957   ParsePredicateOperands();
3958   ParseInstructions();
3959   ParsePatterns();
3960   
3961   // Generate variants.  For example, commutative patterns can match
3962   // multiple ways.  Add them to PatternsToMatch as well.
3963   GenerateVariants();
3964
3965   DOUT << "\n\nALL PATTERNS TO MATCH:\n\n";
3966   for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) {
3967     DOUT << "PATTERN: ";   DEBUG(PatternsToMatch[i].getSrcPattern()->dump());
3968     DOUT << "\nRESULT:  "; DEBUG(PatternsToMatch[i].getDstPattern()->dump());
3969     DOUT << "\n";
3970   }
3971   
3972   // At this point, we have full information about the 'Patterns' we need to
3973   // parse, both implicitly from instructions as well as from explicit pattern
3974   // definitions.  Emit the resultant instruction selector.
3975   EmitInstructionSelector(OS);  
3976   
3977   for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
3978        E = PatternFragments.end(); I != E; ++I)
3979     delete I->second;
3980   PatternFragments.clear();
3981
3982   Instructions.clear();
3983 }