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