29fec09515f5b98889495375e71b61f4db4fbef7
[oota-llvm.git] / utils / TableGen / DAGISelEmitter.cpp
1 //===- DAGISelEmitter.cpp - Generate an instruction selector --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // 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 using namespace llvm;
22
23 //===----------------------------------------------------------------------===//
24 // DAGISelEmitter Helper methods
25 //
26
27 /// NodeIsComplexPattern - return true if N is a leaf node and a subclass of
28 /// ComplexPattern.
29 static bool NodeIsComplexPattern(TreePatternNode *N) {
30   return (N->isLeaf() &&
31           dynamic_cast<DefInit*>(N->getLeafValue()) &&
32           static_cast<DefInit*>(N->getLeafValue())->getDef()->
33           isSubClassOf("ComplexPattern"));
34 }
35
36 /// NodeGetComplexPattern - return the pointer to the ComplexPattern if N
37 /// is a leaf node and a subclass of ComplexPattern, else it returns NULL.
38 static const ComplexPattern *NodeGetComplexPattern(TreePatternNode *N,
39                                                    CodeGenDAGPatterns &CGP) {
40   if (N->isLeaf() &&
41       dynamic_cast<DefInit*>(N->getLeafValue()) &&
42       static_cast<DefInit*>(N->getLeafValue())->getDef()->
43       isSubClassOf("ComplexPattern")) {
44     return &CGP.getComplexPattern(static_cast<DefInit*>(N->getLeafValue())
45                                        ->getDef());
46   }
47   return NULL;
48 }
49
50 /// getPatternSize - Return the 'size' of this pattern.  We want to match large
51 /// patterns before small ones.  This is used to determine the size of a
52 /// pattern.
53 static unsigned getPatternSize(TreePatternNode *P, CodeGenDAGPatterns &CGP) {
54   assert((MVT::isExtIntegerInVTs(P->getExtTypes()) || 
55           MVT::isExtFloatingPointInVTs(P->getExtTypes()) ||
56           P->getExtTypeNum(0) == MVT::isVoid ||
57           P->getExtTypeNum(0) == MVT::Flag ||
58           P->getExtTypeNum(0) == MVT::iPTR) && 
59          "Not a valid pattern node to size!");
60   unsigned Size = 3;  // The node itself.
61   // If the root node is a ConstantSDNode, increases its size.
62   // e.g. (set R32:$dst, 0).
63   if (P->isLeaf() && dynamic_cast<IntInit*>(P->getLeafValue()))
64     Size += 2;
65
66   // FIXME: This is a hack to statically increase the priority of patterns
67   // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD.
68   // Later we can allow complexity / cost for each pattern to be (optionally)
69   // specified. To get best possible pattern match we'll need to dynamically
70   // calculate the complexity of all patterns a dag can potentially map to.
71   const ComplexPattern *AM = NodeGetComplexPattern(P, CGP);
72   if (AM)
73     Size += AM->getNumOperands() * 3;
74
75   // If this node has some predicate function that must match, it adds to the
76   // complexity of this node.
77   if (!P->getPredicateFn().empty())
78     ++Size;
79   
80   // Count children in the count if they are also nodes.
81   for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) {
82     TreePatternNode *Child = P->getChild(i);
83     if (!Child->isLeaf() && Child->getExtTypeNum(0) != MVT::Other)
84       Size += getPatternSize(Child, CGP);
85     else if (Child->isLeaf()) {
86       if (dynamic_cast<IntInit*>(Child->getLeafValue())) 
87         Size += 5;  // Matches a ConstantSDNode (+3) and a specific value (+2).
88       else if (NodeIsComplexPattern(Child))
89         Size += getPatternSize(Child, CGP);
90       else if (!Child->getPredicateFn().empty())
91         ++Size;
92     }
93   }
94   
95   return Size;
96 }
97
98 /// getResultPatternCost - Compute the number of instructions for this pattern.
99 /// This is a temporary hack.  We should really include the instruction
100 /// latencies in this calculation.
101 static unsigned getResultPatternCost(TreePatternNode *P,
102                                      CodeGenDAGPatterns &CGP) {
103   if (P->isLeaf()) return 0;
104   
105   unsigned Cost = 0;
106   Record *Op = P->getOperator();
107   if (Op->isSubClassOf("Instruction")) {
108     Cost++;
109     CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op->getName());
110     if (II.usesCustomDAGSchedInserter)
111       Cost += 10;
112   }
113   for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
114     Cost += getResultPatternCost(P->getChild(i), CGP);
115   return Cost;
116 }
117
118 /// getResultPatternCodeSize - Compute the code size of instructions for this
119 /// pattern.
120 static unsigned getResultPatternSize(TreePatternNode *P, 
121                                      CodeGenDAGPatterns &CGP) {
122   if (P->isLeaf()) return 0;
123
124   unsigned Cost = 0;
125   Record *Op = P->getOperator();
126   if (Op->isSubClassOf("Instruction")) {
127     Cost += Op->getValueAsInt("CodeSize");
128   }
129   for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i)
130     Cost += getResultPatternSize(P->getChild(i), CGP);
131   return Cost;
132 }
133
134 // PatternSortingPredicate - return true if we prefer to match LHS before RHS.
135 // In particular, we want to match maximal patterns first and lowest cost within
136 // a particular complexity first.
137 struct PatternSortingPredicate {
138   PatternSortingPredicate(CodeGenDAGPatterns &cgp) : CGP(cgp) {}
139   CodeGenDAGPatterns &CGP;
140
141   bool operator()(const PatternToMatch *LHS,
142                   const PatternToMatch *RHS) {
143     unsigned LHSSize = getPatternSize(LHS->getSrcPattern(), CGP);
144     unsigned RHSSize = getPatternSize(RHS->getSrcPattern(), CGP);
145     LHSSize += LHS->getAddedComplexity();
146     RHSSize += RHS->getAddedComplexity();
147     if (LHSSize > RHSSize) return true;   // LHS -> bigger -> less cost
148     if (LHSSize < RHSSize) return false;
149     
150     // If the patterns have equal complexity, compare generated instruction cost
151     unsigned LHSCost = getResultPatternCost(LHS->getDstPattern(), CGP);
152     unsigned RHSCost = getResultPatternCost(RHS->getDstPattern(), CGP);
153     if (LHSCost < RHSCost) return true;
154     if (LHSCost > RHSCost) return false;
155
156     return getResultPatternSize(LHS->getDstPattern(), CGP) <
157       getResultPatternSize(RHS->getDstPattern(), CGP);
158   }
159 };
160
161 /// getRegisterValueType - Look up and return the first ValueType of specified 
162 /// RegisterClass record
163 static MVT::ValueType getRegisterValueType(Record *R, const CodeGenTarget &T) {
164   if (const CodeGenRegisterClass *RC = T.getRegisterClassForRegister(R))
165     return RC->getValueTypeNum(0);
166   return MVT::Other;
167 }
168
169
170 /// RemoveAllTypes - A quick recursive walk over a pattern which removes all
171 /// type information from it.
172 static void RemoveAllTypes(TreePatternNode *N) {
173   N->removeTypes();
174   if (!N->isLeaf())
175     for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i)
176       RemoveAllTypes(N->getChild(i));
177 }
178
179 /// NodeHasProperty - return true if TreePatternNode has the specified
180 /// property.
181 static bool NodeHasProperty(TreePatternNode *N, SDNP Property,
182                             CodeGenDAGPatterns &CGP) {
183   if (N->isLeaf()) {
184     const ComplexPattern *CP = NodeGetComplexPattern(N, CGP);
185     if (CP)
186       return CP->hasProperty(Property);
187     return false;
188   }
189   Record *Operator = N->getOperator();
190   if (!Operator->isSubClassOf("SDNode")) return false;
191
192   return CGP.getSDNodeInfo(Operator).hasProperty(Property);
193 }
194
195 static bool PatternHasProperty(TreePatternNode *N, SDNP Property,
196                                CodeGenDAGPatterns &CGP) {
197   if (NodeHasProperty(N, Property, CGP))
198     return true;
199
200   for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
201     TreePatternNode *Child = N->getChild(i);
202     if (PatternHasProperty(Child, Property, CGP))
203       return true;
204   }
205
206   return false;
207 }
208
209 //===----------------------------------------------------------------------===//
210 // Node Transformation emitter implementation.
211 //
212 void DAGISelEmitter::EmitNodeTransforms(std::ostream &OS) {
213   // Walk the pattern fragments, adding them to a map, which sorts them by
214   // name.
215   typedef std::map<std::string, CodeGenDAGPatterns::NodeXForm> NXsByNameTy;
216   NXsByNameTy NXsByName;
217
218   for (CodeGenDAGPatterns::nx_iterator I = CGP.nx_begin(), E = CGP.nx_end();
219        I != E; ++I)
220     NXsByName.insert(std::make_pair(I->first->getName(), I->second));
221   
222   OS << "\n// Node transformations.\n";
223   
224   for (NXsByNameTy::iterator I = NXsByName.begin(), E = NXsByName.end();
225        I != E; ++I) {
226     Record *SDNode = I->second.first;
227     std::string Code = I->second.second;
228     
229     if (Code.empty()) continue;  // Empty code?  Skip it.
230     
231     std::string ClassName = CGP.getSDNodeInfo(SDNode).getSDClassName();
232     const char *C2 = ClassName == "SDNode" ? "N" : "inN";
233     
234     OS << "inline SDOperand Transform_" << I->first << "(SDNode *" << C2
235        << ") {\n";
236     if (ClassName != "SDNode")
237       OS << "  " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
238     OS << Code << "\n}\n";
239   }
240 }
241
242 //===----------------------------------------------------------------------===//
243 // Predicate emitter implementation.
244 //
245
246 void DAGISelEmitter::EmitPredicateFunctions(std::ostream &OS) {
247   OS << "\n// Predicate functions.\n";
248
249   // Walk the pattern fragments, adding them to a map, which sorts them by
250   // name.
251   typedef std::map<std::string, std::pair<Record*, TreePattern*> > PFsByNameTy;
252   PFsByNameTy PFsByName;
253
254   for (CodeGenDAGPatterns::pf_iterator I = CGP.pf_begin(), E = CGP.pf_end();
255        I != E; ++I)
256     PFsByName.insert(std::make_pair(I->first->getName(), *I));
257
258   
259   for (PFsByNameTy::iterator I = PFsByName.begin(), E = PFsByName.end();
260        I != E; ++I) {
261     Record *PatFragRecord = I->second.first;// Record that derives from PatFrag.
262     TreePattern *P = I->second.second;
263     
264     // If there is a code init for this fragment, emit the predicate code.
265     std::string Code = PatFragRecord->getValueAsCode("Predicate");
266     if (Code.empty()) continue;
267     
268     if (P->getOnlyTree()->isLeaf())
269       OS << "inline bool Predicate_" << PatFragRecord->getName()
270       << "(SDNode *N) {\n";
271     else {
272       std::string ClassName =
273         CGP.getSDNodeInfo(P->getOnlyTree()->getOperator()).getSDClassName();
274       const char *C2 = ClassName == "SDNode" ? "N" : "inN";
275       
276       OS << "inline bool Predicate_" << PatFragRecord->getName()
277          << "(SDNode *" << C2 << ") {\n";
278       if (ClassName != "SDNode")
279         OS << "  " << ClassName << " *N = cast<" << ClassName << ">(inN);\n";
280     }
281     OS << Code << "\n}\n";
282   }
283   
284   OS << "\n\n";
285 }
286
287
288 //===----------------------------------------------------------------------===//
289 // PatternCodeEmitter implementation.
290 //
291 class PatternCodeEmitter {
292 private:
293   CodeGenDAGPatterns &CGP;
294
295   // Predicates.
296   ListInit *Predicates;
297   // Pattern cost.
298   unsigned Cost;
299   // Instruction selector pattern.
300   TreePatternNode *Pattern;
301   // Matched instruction.
302   TreePatternNode *Instruction;
303   
304   // Node to name mapping
305   std::map<std::string, std::string> VariableMap;
306   // Node to operator mapping
307   std::map<std::string, Record*> OperatorMap;
308   // Name of the folded node which produces a flag.
309   std::pair<std::string, unsigned> FoldedFlag;
310   // Names of all the folded nodes which produce chains.
311   std::vector<std::pair<std::string, unsigned> > FoldedChains;
312   // Original input chain(s).
313   std::vector<std::pair<std::string, std::string> > OrigChains;
314   std::set<std::string> Duplicates;
315
316   /// LSI - Load/Store information.
317   /// Save loads/stores matched by a pattern, and generate a MemOperandSDNode
318   /// for each memory access. This facilitates the use of AliasAnalysis in
319   /// the backend.
320   std::vector<std::string> LSI;
321
322   /// GeneratedCode - This is the buffer that we emit code to.  The first int
323   /// indicates whether this is an exit predicate (something that should be
324   /// tested, and if true, the match fails) [when 1], or normal code to emit
325   /// [when 0], or initialization code to emit [when 2].
326   std::vector<std::pair<unsigned, std::string> > &GeneratedCode;
327   /// GeneratedDecl - This is the set of all SDOperand declarations needed for
328   /// the set of patterns for each top-level opcode.
329   std::set<std::string> &GeneratedDecl;
330   /// TargetOpcodes - The target specific opcodes used by the resulting
331   /// instructions.
332   std::vector<std::string> &TargetOpcodes;
333   std::vector<std::string> &TargetVTs;
334   /// OutputIsVariadic - Records whether the instruction output pattern uses
335   /// variable_ops.  This requires that the Emit function be passed an
336   /// additional argument to indicate where the input varargs operands
337   /// begin.
338   bool &OutputIsVariadic;
339   /// NumInputRootOps - Records the number of operands the root node of the
340   /// input pattern has.  This information is used in the generated code to
341   /// pass to Emit functions when variable_ops processing is needed.
342   unsigned &NumInputRootOps;
343
344   std::string ChainName;
345   unsigned TmpNo;
346   unsigned OpcNo;
347   unsigned VTNo;
348   
349   void emitCheck(const std::string &S) {
350     if (!S.empty())
351       GeneratedCode.push_back(std::make_pair(1, S));
352   }
353   void emitCode(const std::string &S) {
354     if (!S.empty())
355       GeneratedCode.push_back(std::make_pair(0, S));
356   }
357   void emitInit(const std::string &S) {
358     if (!S.empty())
359       GeneratedCode.push_back(std::make_pair(2, S));
360   }
361   void emitDecl(const std::string &S) {
362     assert(!S.empty() && "Invalid declaration");
363     GeneratedDecl.insert(S);
364   }
365   void emitOpcode(const std::string &Opc) {
366     TargetOpcodes.push_back(Opc);
367     OpcNo++;
368   }
369   void emitVT(const std::string &VT) {
370     TargetVTs.push_back(VT);
371     VTNo++;
372   }
373 public:
374   PatternCodeEmitter(CodeGenDAGPatterns &cgp, ListInit *preds,
375                      TreePatternNode *pattern, TreePatternNode *instr,
376                      std::vector<std::pair<unsigned, std::string> > &gc,
377                      std::set<std::string> &gd,
378                      std::vector<std::string> &to,
379                      std::vector<std::string> &tv,
380                      bool &oiv,
381                      unsigned &niro)
382   : CGP(cgp), Predicates(preds), Pattern(pattern), Instruction(instr),
383     GeneratedCode(gc), GeneratedDecl(gd),
384     TargetOpcodes(to), TargetVTs(tv),
385     OutputIsVariadic(oiv), NumInputRootOps(niro),
386     TmpNo(0), OpcNo(0), VTNo(0) {}
387
388   /// EmitMatchCode - Emit a matcher for N, going to the label for PatternNo
389   /// if the match fails. At this point, we already know that the opcode for N
390   /// matches, and the SDNode for the result has the RootName specified name.
391   void EmitMatchCode(TreePatternNode *N, TreePatternNode *P,
392                      const std::string &RootName, const std::string &ChainSuffix,
393                      bool &FoundChain) {
394
395     // Save loads/stores matched by a pattern.
396     if (!N->isLeaf() && N->getName().empty()) {
397       std::string EnumName = N->getOperator()->getValueAsString("Opcode");
398       if (EnumName == "ISD::LOAD" ||
399           EnumName == "ISD::STORE") {
400         LSI.push_back(RootName);
401       }
402     }
403
404     bool isRoot = (P == NULL);
405     // Emit instruction predicates. Each predicate is just a string for now.
406     if (isRoot) {
407       // Record input varargs info.
408       NumInputRootOps = N->getNumChildren();
409
410       std::string PredicateCheck;
411       for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) {
412         if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) {
413           Record *Def = Pred->getDef();
414           if (!Def->isSubClassOf("Predicate")) {
415 #ifndef NDEBUG
416             Def->dump();
417 #endif
418             assert(0 && "Unknown predicate type!");
419           }
420           if (!PredicateCheck.empty())
421             PredicateCheck += " && ";
422           PredicateCheck += "(" + Def->getValueAsString("CondString") + ")";
423         }
424       }
425       
426       emitCheck(PredicateCheck);
427     }
428
429     if (N->isLeaf()) {
430       if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
431         emitCheck("cast<ConstantSDNode>(" + RootName +
432                   ")->getSignExtended() == " + itostr(II->getValue()));
433         return;
434       } else if (!NodeIsComplexPattern(N)) {
435         assert(0 && "Cannot match this as a leaf value!");
436         abort();
437       }
438     }
439   
440     // If this node has a name associated with it, capture it in VariableMap. If
441     // we already saw this in the pattern, emit code to verify dagness.
442     if (!N->getName().empty()) {
443       std::string &VarMapEntry = VariableMap[N->getName()];
444       if (VarMapEntry.empty()) {
445         VarMapEntry = RootName;
446       } else {
447         // If we get here, this is a second reference to a specific name.  Since
448         // we already have checked that the first reference is valid, we don't
449         // have to recursively match it, just check that it's the same as the
450         // previously named thing.
451         emitCheck(VarMapEntry + " == " + RootName);
452         return;
453       }
454
455       if (!N->isLeaf())
456         OperatorMap[N->getName()] = N->getOperator();
457     }
458
459
460     // Emit code to load the child nodes and match their contents recursively.
461     unsigned OpNo = 0;
462     bool NodeHasChain = NodeHasProperty   (N, SDNPHasChain, CGP);
463     bool HasChain     = PatternHasProperty(N, SDNPHasChain, CGP);
464     bool EmittedUseCheck = false;
465     if (HasChain) {
466       if (NodeHasChain)
467         OpNo = 1;
468       if (!isRoot) {
469         // Multiple uses of actual result?
470         emitCheck(RootName + ".hasOneUse()");
471         EmittedUseCheck = true;
472         if (NodeHasChain) {
473           // If the immediate use can somehow reach this node through another
474           // path, then can't fold it either or it will create a cycle.
475           // e.g. In the following diagram, XX can reach ld through YY. If
476           // ld is folded into XX, then YY is both a predecessor and a successor
477           // of XX.
478           //
479           //         [ld]
480           //         ^  ^
481           //         |  |
482           //        /   \---
483           //      /        [YY]
484           //      |         ^
485           //     [XX]-------|
486           bool NeedCheck = false;
487           if (P != Pattern)
488             NeedCheck = true;
489           else {
490             const SDNodeInfo &PInfo = CGP.getSDNodeInfo(P->getOperator());
491             NeedCheck =
492               P->getOperator() == CGP.get_intrinsic_void_sdnode() ||
493               P->getOperator() == CGP.get_intrinsic_w_chain_sdnode() ||
494               P->getOperator() == CGP.get_intrinsic_wo_chain_sdnode() ||
495               PInfo.getNumOperands() > 1 ||
496               PInfo.hasProperty(SDNPHasChain) ||
497               PInfo.hasProperty(SDNPInFlag) ||
498               PInfo.hasProperty(SDNPOptInFlag);
499           }
500
501           if (NeedCheck) {
502             std::string ParentName(RootName.begin(), RootName.end()-1);
503             emitCheck("CanBeFoldedBy(" + RootName + ".Val, " + ParentName +
504                       ".Val, N.Val)");
505           }
506         }
507       }
508
509       if (NodeHasChain) {
510         if (FoundChain) {
511           emitCheck("(" + ChainName + ".Val == " + RootName + ".Val || "
512                     "IsChainCompatible(" + ChainName + ".Val, " +
513                     RootName + ".Val))");
514           OrigChains.push_back(std::make_pair(ChainName, RootName));
515         } else
516           FoundChain = true;
517         ChainName = "Chain" + ChainSuffix;
518         emitInit("SDOperand " + ChainName + " = " + RootName +
519                  ".getOperand(0);");
520       }
521     }
522
523     // Don't fold any node which reads or writes a flag and has multiple uses.
524     // FIXME: We really need to separate the concepts of flag and "glue". Those
525     // real flag results, e.g. X86CMP output, can have multiple uses.
526     // FIXME: If the optional incoming flag does not exist. Then it is ok to
527     // fold it.
528     if (!isRoot &&
529         (PatternHasProperty(N, SDNPInFlag, CGP) ||
530          PatternHasProperty(N, SDNPOptInFlag, CGP) ||
531          PatternHasProperty(N, SDNPOutFlag, CGP))) {
532       if (!EmittedUseCheck) {
533         // Multiple uses of actual result?
534         emitCheck(RootName + ".hasOneUse()");
535       }
536     }
537
538     // If there is a node predicate for this, emit the call.
539     if (!N->getPredicateFn().empty())
540       emitCheck(N->getPredicateFn() + "(" + RootName + ".Val)");
541
542     
543     // If this is an 'and R, 1234' where the operation is AND/OR and the RHS is
544     // a constant without a predicate fn that has more that one bit set, handle
545     // this as a special case.  This is usually for targets that have special
546     // handling of certain large constants (e.g. alpha with it's 8/16/32-bit
547     // handling stuff).  Using these instructions is often far more efficient
548     // than materializing the constant.  Unfortunately, both the instcombiner
549     // and the dag combiner can often infer that bits are dead, and thus drop
550     // them from the mask in the dag.  For example, it might turn 'AND X, 255'
551     // into 'AND X, 254' if it knows the low bit is set.  Emit code that checks
552     // to handle this.
553     if (!N->isLeaf() && 
554         (N->getOperator()->getName() == "and" || 
555          N->getOperator()->getName() == "or") &&
556         N->getChild(1)->isLeaf() &&
557         N->getChild(1)->getPredicateFn().empty()) {
558       if (IntInit *II = dynamic_cast<IntInit*>(N->getChild(1)->getLeafValue())) {
559         if (!isPowerOf2_32(II->getValue())) {  // Don't bother with single bits.
560           emitInit("SDOperand " + RootName + "0" + " = " +
561                    RootName + ".getOperand(" + utostr(0) + ");");
562           emitInit("SDOperand " + RootName + "1" + " = " +
563                    RootName + ".getOperand(" + utostr(1) + ");");
564
565           emitCheck("isa<ConstantSDNode>(" + RootName + "1)");
566           const char *MaskPredicate = N->getOperator()->getName() == "or"
567             ? "CheckOrMask(" : "CheckAndMask(";
568           emitCheck(MaskPredicate + RootName + "0, cast<ConstantSDNode>(" +
569                     RootName + "1), " + itostr(II->getValue()) + ")");
570           
571           EmitChildMatchCode(N->getChild(0), N, RootName + utostr(0), RootName,
572                              ChainSuffix + utostr(0), FoundChain);
573           return;
574         }
575       }
576     }
577     
578     for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
579       emitInit("SDOperand " + RootName + utostr(OpNo) + " = " +
580                RootName + ".getOperand(" +utostr(OpNo) + ");");
581
582       EmitChildMatchCode(N->getChild(i), N, RootName + utostr(OpNo), RootName,
583                          ChainSuffix + utostr(OpNo), FoundChain);
584     }
585
586     // Handle cases when root is a complex pattern.
587     const ComplexPattern *CP;
588     if (isRoot && N->isLeaf() && (CP = NodeGetComplexPattern(N, CGP))) {
589       std::string Fn = CP->getSelectFunc();
590       unsigned NumOps = CP->getNumOperands();
591       for (unsigned i = 0; i < NumOps; ++i) {
592         emitDecl("CPTmp" + utostr(i));
593         emitCode("SDOperand CPTmp" + utostr(i) + ";");
594       }
595       if (CP->hasProperty(SDNPHasChain)) {
596         emitDecl("CPInChain");
597         emitDecl("Chain" + ChainSuffix);
598         emitCode("SDOperand CPInChain;");
599         emitCode("SDOperand Chain" + ChainSuffix + ";");
600       }
601
602       std::string Code = Fn + "(" + RootName + ", " + RootName;
603       for (unsigned i = 0; i < NumOps; i++)
604         Code += ", CPTmp" + utostr(i);
605       if (CP->hasProperty(SDNPHasChain)) {
606         ChainName = "Chain" + ChainSuffix;
607         Code += ", CPInChain, Chain" + ChainSuffix;
608       }
609       emitCheck(Code + ")");
610     }
611   }
612
613   void EmitChildMatchCode(TreePatternNode *Child, TreePatternNode *Parent,
614                           const std::string &RootName, 
615                           const std::string &ParentRootName,
616                           const std::string &ChainSuffix, bool &FoundChain) {
617     if (!Child->isLeaf()) {
618       // If it's not a leaf, recursively match.
619       const SDNodeInfo &CInfo = CGP.getSDNodeInfo(Child->getOperator());
620       emitCheck(RootName + ".getOpcode() == " +
621                 CInfo.getEnumName());
622       EmitMatchCode(Child, Parent, RootName, ChainSuffix, FoundChain);
623       bool HasChain = false;
624       if (NodeHasProperty(Child, SDNPHasChain, CGP)) {
625         HasChain = true;
626         FoldedChains.push_back(std::make_pair(RootName, CInfo.getNumResults()));
627       }
628       if (NodeHasProperty(Child, SDNPOutFlag, CGP)) {
629         assert(FoldedFlag.first == "" && FoldedFlag.second == 0 &&
630                "Pattern folded multiple nodes which produce flags?");
631         FoldedFlag = std::make_pair(RootName,
632                                     CInfo.getNumResults() + (unsigned)HasChain);
633       }
634     } else {
635       // If this child has a name associated with it, capture it in VarMap. If
636       // we already saw this in the pattern, emit code to verify dagness.
637       if (!Child->getName().empty()) {
638         std::string &VarMapEntry = VariableMap[Child->getName()];
639         if (VarMapEntry.empty()) {
640           VarMapEntry = RootName;
641         } else {
642           // If we get here, this is a second reference to a specific name.
643           // Since we already have checked that the first reference is valid,
644           // we don't have to recursively match it, just check that it's the
645           // same as the previously named thing.
646           emitCheck(VarMapEntry + " == " + RootName);
647           Duplicates.insert(RootName);
648           return;
649         }
650       }
651       
652       // Handle leaves of various types.
653       if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
654         Record *LeafRec = DI->getDef();
655         if (LeafRec->isSubClassOf("RegisterClass") || 
656             LeafRec->getName() == "ptr_rc") {
657           // Handle register references.  Nothing to do here.
658         } else if (LeafRec->isSubClassOf("Register")) {
659           // Handle register references.
660         } else if (LeafRec->isSubClassOf("ComplexPattern")) {
661           // Handle complex pattern.
662           const ComplexPattern *CP = NodeGetComplexPattern(Child, CGP);
663           std::string Fn = CP->getSelectFunc();
664           unsigned NumOps = CP->getNumOperands();
665           for (unsigned i = 0; i < NumOps; ++i) {
666             emitDecl("CPTmp" + utostr(i));
667             emitCode("SDOperand CPTmp" + utostr(i) + ";");
668           }
669           if (CP->hasProperty(SDNPHasChain)) {
670             const SDNodeInfo &PInfo = CGP.getSDNodeInfo(Parent->getOperator());
671             FoldedChains.push_back(std::make_pair("CPInChain",
672                                                   PInfo.getNumResults()));
673             ChainName = "Chain" + ChainSuffix;
674             emitDecl("CPInChain");
675             emitDecl(ChainName);
676             emitCode("SDOperand CPInChain;");
677             emitCode("SDOperand " + ChainName + ";");
678           }
679           
680           std::string Code = Fn + "(";
681           if (CP->hasAttribute(CPAttrParentAsRoot)) {
682             Code += ParentRootName + ", ";
683           } else {
684             Code += "N, ";
685           }
686           if (CP->hasProperty(SDNPHasChain)) {
687             std::string ParentName(RootName.begin(), RootName.end()-1);
688             Code += ParentName + ", ";
689           }
690           Code += RootName;
691           for (unsigned i = 0; i < NumOps; i++)
692             Code += ", CPTmp" + utostr(i);
693           if (CP->hasProperty(SDNPHasChain))
694             Code += ", CPInChain, Chain" + ChainSuffix;
695           emitCheck(Code + ")");
696         } else if (LeafRec->getName() == "srcvalue") {
697           // Place holder for SRCVALUE nodes. Nothing to do here.
698         } else if (LeafRec->isSubClassOf("ValueType")) {
699           // Make sure this is the specified value type.
700           emitCheck("cast<VTSDNode>(" + RootName +
701                     ")->getVT() == MVT::" + LeafRec->getName());
702         } else if (LeafRec->isSubClassOf("CondCode")) {
703           // Make sure this is the specified cond code.
704           emitCheck("cast<CondCodeSDNode>(" + RootName +
705                     ")->get() == ISD::" + LeafRec->getName());
706         } else {
707 #ifndef NDEBUG
708           Child->dump();
709           cerr << " ";
710 #endif
711           assert(0 && "Unknown leaf type!");
712         }
713         
714         // If there is a node predicate for this, emit the call.
715         if (!Child->getPredicateFn().empty())
716           emitCheck(Child->getPredicateFn() + "(" + RootName +
717                     ".Val)");
718       } else if (IntInit *II =
719                  dynamic_cast<IntInit*>(Child->getLeafValue())) {
720         emitCheck("isa<ConstantSDNode>(" + RootName + ")");
721         unsigned CTmp = TmpNo++;
722         emitCode("int64_t CN"+utostr(CTmp)+" = cast<ConstantSDNode>("+
723                  RootName + ")->getSignExtended();");
724         
725         emitCheck("CN" + utostr(CTmp) + " == " +itostr(II->getValue()));
726       } else {
727 #ifndef NDEBUG
728         Child->dump();
729 #endif
730         assert(0 && "Unknown leaf type!");
731       }
732     }
733   }
734
735   /// EmitResultCode - Emit the action for a pattern.  Now that it has matched
736   /// we actually have to build a DAG!
737   std::vector<std::string>
738   EmitResultCode(TreePatternNode *N, std::vector<Record*> DstRegs,
739                  bool InFlagDecled, bool ResNodeDecled,
740                  bool LikeLeaf = false, bool isRoot = false) {
741     // List of arguments of getTargetNode() or SelectNodeTo().
742     std::vector<std::string> NodeOps;
743     // This is something selected from the pattern we matched.
744     if (!N->getName().empty()) {
745       const std::string &VarName = N->getName();
746       std::string Val = VariableMap[VarName];
747       bool ModifiedVal = false;
748       if (Val.empty()) {
749         cerr << "Variable '" << VarName << " referenced but not defined "
750              << "and not caught earlier!\n";
751         abort();
752       }
753       if (Val[0] == 'T' && Val[1] == 'm' && Val[2] == 'p') {
754         // Already selected this operand, just return the tmpval.
755         NodeOps.push_back(Val);
756         return NodeOps;
757       }
758
759       const ComplexPattern *CP;
760       unsigned ResNo = TmpNo++;
761       if (!N->isLeaf() && N->getOperator()->getName() == "imm") {
762         assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
763         std::string CastType;
764         std::string TmpVar =  "Tmp" + utostr(ResNo);
765         switch (N->getTypeNum(0)) {
766         default:
767           cerr << "Cannot handle " << getEnumName(N->getTypeNum(0))
768                << " type as an immediate constant. Aborting\n";
769           abort();
770         case MVT::i1:  CastType = "bool"; break;
771         case MVT::i8:  CastType = "unsigned char"; break;
772         case MVT::i16: CastType = "unsigned short"; break;
773         case MVT::i32: CastType = "unsigned"; break;
774         case MVT::i64: CastType = "uint64_t"; break;
775         }
776         emitCode("SDOperand " + TmpVar + 
777                  " = CurDAG->getTargetConstant(((" + CastType +
778                  ") cast<ConstantSDNode>(" + Val + ")->getValue()), " +
779                  getEnumName(N->getTypeNum(0)) + ");");
780         // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
781         // value if used multiple times by this pattern result.
782         Val = TmpVar;
783         ModifiedVal = true;
784         NodeOps.push_back(Val);
785       } else if (!N->isLeaf() && N->getOperator()->getName() == "fpimm") {
786         assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
787         std::string TmpVar =  "Tmp" + utostr(ResNo);
788         emitCode("SDOperand " + TmpVar + 
789                  " = CurDAG->getTargetConstantFP(cast<ConstantFPSDNode>(" + 
790                  Val + ")->getValueAPF(), cast<ConstantFPSDNode>(" + Val +
791                  ")->getValueType(0));");
792         // Add Tmp<ResNo> to VariableMap, so that we don't multiply select this
793         // value if used multiple times by this pattern result.
794         Val = TmpVar;
795         ModifiedVal = true;
796         NodeOps.push_back(Val);
797       } else if (!N->isLeaf() && N->getOperator()->getName() == "texternalsym"){
798         Record *Op = OperatorMap[N->getName()];
799         // Transform ExternalSymbol to TargetExternalSymbol
800         if (Op && Op->getName() == "externalsym") {
801           std::string TmpVar = "Tmp"+utostr(ResNo);
802           emitCode("SDOperand " + TmpVar + " = CurDAG->getTarget"
803                    "ExternalSymbol(cast<ExternalSymbolSDNode>(" +
804                    Val + ")->getSymbol(), " +
805                    getEnumName(N->getTypeNum(0)) + ");");
806           // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
807           // this value if used multiple times by this pattern result.
808           Val = TmpVar;
809           ModifiedVal = true;
810         }
811         NodeOps.push_back(Val);
812       } else if (!N->isLeaf() && (N->getOperator()->getName() == "tglobaladdr"
813                  || N->getOperator()->getName() == "tglobaltlsaddr")) {
814         Record *Op = OperatorMap[N->getName()];
815         // Transform GlobalAddress to TargetGlobalAddress
816         if (Op && (Op->getName() == "globaladdr" ||
817                    Op->getName() == "globaltlsaddr")) {
818           std::string TmpVar = "Tmp" + utostr(ResNo);
819           emitCode("SDOperand " + TmpVar + " = CurDAG->getTarget"
820                    "GlobalAddress(cast<GlobalAddressSDNode>(" + Val +
821                    ")->getGlobal(), " + getEnumName(N->getTypeNum(0)) +
822                    ");");
823           // Add Tmp<ResNo> to VariableMap, so that we don't multiply select
824           // this value if used multiple times by this pattern result.
825           Val = TmpVar;
826           ModifiedVal = true;
827         }
828         NodeOps.push_back(Val);
829       } else if (!N->isLeaf()
830                  && (N->getOperator()->getName() == "texternalsym"
831                       || N->getOperator()->getName() == "tconstpool")) {
832         // Do not rewrite the variable name, since we don't generate a new
833         // temporary.
834         NodeOps.push_back(Val);
835       } else if (N->isLeaf() && (CP = NodeGetComplexPattern(N, CGP))) {
836         for (unsigned i = 0; i < CP->getNumOperands(); ++i) {
837           emitCode("AddToISelQueue(CPTmp" + utostr(i) + ");");
838           NodeOps.push_back("CPTmp" + utostr(i));
839         }
840       } else {
841         // This node, probably wrapped in a SDNodeXForm, behaves like a leaf
842         // node even if it isn't one. Don't select it.
843         if (!LikeLeaf) {
844           emitCode("AddToISelQueue(" + Val + ");");
845           if (isRoot && N->isLeaf()) {
846             emitCode("ReplaceUses(N, " + Val + ");");
847             emitCode("return NULL;");
848           }
849         }
850         NodeOps.push_back(Val);
851       }
852
853       if (ModifiedVal) {
854         VariableMap[VarName] = Val;
855       }
856       return NodeOps;
857     }
858     if (N->isLeaf()) {
859       // If this is an explicit register reference, handle it.
860       if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) {
861         unsigned ResNo = TmpNo++;
862         if (DI->getDef()->isSubClassOf("Register")) {
863           emitCode("SDOperand Tmp" + utostr(ResNo) + " = CurDAG->getRegister(" +
864                    getQualifiedName(DI->getDef()) + ", " +
865                    getEnumName(N->getTypeNum(0)) + ");");
866           NodeOps.push_back("Tmp" + utostr(ResNo));
867           return NodeOps;
868         } else if (DI->getDef()->getName() == "zero_reg") {
869           emitCode("SDOperand Tmp" + utostr(ResNo) +
870                    " = CurDAG->getRegister(0, " +
871                    getEnumName(N->getTypeNum(0)) + ");");
872           NodeOps.push_back("Tmp" + utostr(ResNo));
873           return NodeOps;
874         }
875       } else if (IntInit *II = dynamic_cast<IntInit*>(N->getLeafValue())) {
876         unsigned ResNo = TmpNo++;
877         assert(N->getExtTypes().size() == 1 && "Multiple types not handled!");
878         emitCode("SDOperand Tmp" + utostr(ResNo) + 
879                  " = CurDAG->getTargetConstant(0x" + itohexstr(II->getValue()) +
880                  "ULL, " + getEnumName(N->getTypeNum(0)) + ");");
881         NodeOps.push_back("Tmp" + utostr(ResNo));
882         return NodeOps;
883       }
884     
885 #ifndef NDEBUG
886       N->dump();
887 #endif
888       assert(0 && "Unknown leaf type!");
889       return NodeOps;
890     }
891
892     Record *Op = N->getOperator();
893     if (Op->isSubClassOf("Instruction")) {
894       const CodeGenTarget &CGT = CGP.getTargetInfo();
895       CodeGenInstruction &II = CGT.getInstruction(Op->getName());
896       const DAGInstruction &Inst = CGP.getInstruction(Op);
897       const TreePattern *InstPat = Inst.getPattern();
898       // FIXME: Assume actual pattern comes before "implicit".
899       TreePatternNode *InstPatNode =
900         isRoot ? (InstPat ? InstPat->getTree(0) : Pattern)
901                : (InstPat ? InstPat->getTree(0) : NULL);
902       if (InstPatNode && InstPatNode->getOperator()->getName() == "set") {
903         InstPatNode = InstPatNode->getChild(InstPatNode->getNumChildren()-1);
904       }
905       bool IsVariadic = isRoot && II.isVariadic;
906       // FIXME: fix how we deal with physical register operands.
907       bool HasImpInputs  = isRoot && Inst.getNumImpOperands() > 0;
908       bool HasImpResults = isRoot && DstRegs.size() > 0;
909       bool NodeHasOptInFlag = isRoot &&
910         PatternHasProperty(Pattern, SDNPOptInFlag, CGP);
911       bool NodeHasInFlag  = isRoot &&
912         PatternHasProperty(Pattern, SDNPInFlag, CGP);
913       bool NodeHasOutFlag = isRoot &&
914         PatternHasProperty(Pattern, SDNPOutFlag, CGP);
915       bool NodeHasChain = InstPatNode &&
916         PatternHasProperty(InstPatNode, SDNPHasChain, CGP);
917       bool InputHasChain = isRoot &&
918         NodeHasProperty(Pattern, SDNPHasChain, CGP);
919       unsigned NumResults = Inst.getNumResults();    
920       unsigned NumDstRegs = HasImpResults ? DstRegs.size() : 0;
921
922       // Record output varargs info.
923       OutputIsVariadic = IsVariadic;
924
925       if (NodeHasOptInFlag) {
926         emitCode("bool HasInFlag = "
927            "(N.getOperand(N.getNumOperands()-1).getValueType() == MVT::Flag);");
928       }
929       if (IsVariadic)
930         emitCode("SmallVector<SDOperand, 8> Ops" + utostr(OpcNo) + ";");
931
932       // How many results is this pattern expected to produce?
933       unsigned NumPatResults = 0;
934       for (unsigned i = 0, e = Pattern->getExtTypes().size(); i != e; i++) {
935         MVT::ValueType VT = Pattern->getTypeNum(i);
936         if (VT != MVT::isVoid && VT != MVT::Flag)
937           NumPatResults++;
938       }
939
940       if (OrigChains.size() > 0) {
941         // The original input chain is being ignored. If it is not just
942         // pointing to the op that's being folded, we should create a
943         // TokenFactor with it and the chain of the folded op as the new chain.
944         // We could potentially be doing multiple levels of folding, in that
945         // case, the TokenFactor can have more operands.
946         emitCode("SmallVector<SDOperand, 8> InChains;");
947         for (unsigned i = 0, e = OrigChains.size(); i < e; ++i) {
948           emitCode("if (" + OrigChains[i].first + ".Val != " +
949                    OrigChains[i].second + ".Val) {");
950           emitCode("  AddToISelQueue(" + OrigChains[i].first + ");");
951           emitCode("  InChains.push_back(" + OrigChains[i].first + ");");
952           emitCode("}");
953         }
954         emitCode("AddToISelQueue(" + ChainName + ");");
955         emitCode("InChains.push_back(" + ChainName + ");");
956         emitCode(ChainName + " = CurDAG->getNode(ISD::TokenFactor, MVT::Other, "
957                  "&InChains[0], InChains.size());");
958       }
959
960       // Loop over all of the operands of the instruction pattern, emitting code
961       // to fill them all in.  The node 'N' usually has number children equal to
962       // the number of input operands of the instruction.  However, in cases
963       // where there are predicate operands for an instruction, we need to fill
964       // in the 'execute always' values.  Match up the node operands to the
965       // instruction operands to do this.
966       std::vector<std::string> AllOps;
967       for (unsigned ChildNo = 0, InstOpNo = NumResults;
968            InstOpNo != II.OperandList.size(); ++InstOpNo) {
969         std::vector<std::string> Ops;
970         
971         // Determine what to emit for this operand.
972         Record *OperandNode = II.OperandList[InstOpNo].Rec;
973         if ((OperandNode->isSubClassOf("PredicateOperand") ||
974              OperandNode->isSubClassOf("OptionalDefOperand")) &&
975             !CGP.getDefaultOperand(OperandNode).DefaultOps.empty()) {
976           // This is a predicate or optional def operand; emit the
977           // 'default ops' operands.
978           const DAGDefaultOperand &DefaultOp =
979             CGP.getDefaultOperand(II.OperandList[InstOpNo].Rec);
980           for (unsigned i = 0, e = DefaultOp.DefaultOps.size(); i != e; ++i) {
981             Ops = EmitResultCode(DefaultOp.DefaultOps[i], DstRegs,
982                                  InFlagDecled, ResNodeDecled);
983             AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
984           }
985         } else {
986           // Otherwise this is a normal operand or a predicate operand without
987           // 'execute always'; emit it.
988           Ops = EmitResultCode(N->getChild(ChildNo), DstRegs,
989                                InFlagDecled, ResNodeDecled);
990           AllOps.insert(AllOps.end(), Ops.begin(), Ops.end());
991           ++ChildNo;
992         }
993       }
994
995       // Generate MemOperandSDNodes nodes for each memory accesses covered by 
996       // this pattern.
997       if (II.isSimpleLoad | II.mayLoad | II.mayStore) {
998         std::vector<std::string>::const_iterator mi, mie;
999         for (mi = LSI.begin(), mie = LSI.end(); mi != mie; ++mi) {
1000           emitCode("SDOperand LSI_" + *mi + " = "
1001                    "CurDAG->getMemOperand(cast<LSBaseSDNode>(" +
1002                    *mi + ")->getMemOperand());");
1003           AllOps.push_back("LSI_" + *mi);
1004         }
1005       }
1006
1007       // Emit all the chain and CopyToReg stuff.
1008       bool ChainEmitted = NodeHasChain;
1009       if (NodeHasChain)
1010         emitCode("AddToISelQueue(" + ChainName + ");");
1011       if (NodeHasInFlag || HasImpInputs)
1012         EmitInFlagSelectCode(Pattern, "N", ChainEmitted,
1013                              InFlagDecled, ResNodeDecled, true);
1014       if (NodeHasOptInFlag || NodeHasInFlag || HasImpInputs) {
1015         if (!InFlagDecled) {
1016           emitCode("SDOperand InFlag(0, 0);");
1017           InFlagDecled = true;
1018         }
1019         if (NodeHasOptInFlag) {
1020           emitCode("if (HasInFlag) {");
1021           emitCode("  InFlag = N.getOperand(N.getNumOperands()-1);");
1022           emitCode("  AddToISelQueue(InFlag);");
1023           emitCode("}");
1024         }
1025       }
1026
1027       unsigned ResNo = TmpNo++;
1028       if (!isRoot || InputHasChain || NodeHasChain || NodeHasOutFlag ||
1029           NodeHasOptInFlag || HasImpResults) {
1030         std::string Code;
1031         std::string Code2;
1032         std::string NodeName;
1033         if (!isRoot) {
1034           NodeName = "Tmp" + utostr(ResNo);
1035           Code2 = "SDOperand " + NodeName + "(";
1036         } else {
1037           NodeName = "ResNode";
1038           if (!ResNodeDecled) {
1039             Code2 = "SDNode *" + NodeName + " = ";
1040             ResNodeDecled = true;
1041           } else
1042             Code2 = NodeName + " = ";
1043         }
1044
1045         Code += "CurDAG->getTargetNode(Opc" + utostr(OpcNo);
1046         unsigned OpsNo = OpcNo;
1047         emitOpcode(II.Namespace + "::" + II.TheDef->getName());
1048
1049         // Output order: results, chain, flags
1050         // Result types.
1051         if (NumResults > 0 && N->getTypeNum(0) != MVT::isVoid) {
1052           Code += ", VT" + utostr(VTNo);
1053           emitVT(getEnumName(N->getTypeNum(0)));
1054         }
1055         // Add types for implicit results in physical registers, scheduler will
1056         // care of adding copyfromreg nodes.
1057         for (unsigned i = 0; i < NumDstRegs; i++) {
1058           Record *RR = DstRegs[i];
1059           if (RR->isSubClassOf("Register")) {
1060             MVT::ValueType RVT = getRegisterValueType(RR, CGT);
1061             Code += ", " + getEnumName(RVT);
1062           }
1063         }
1064         if (NodeHasChain)
1065           Code += ", MVT::Other";
1066         if (NodeHasOutFlag)
1067           Code += ", MVT::Flag";
1068
1069         // Inputs.
1070         if (IsVariadic) {
1071           for (unsigned i = 0, e = AllOps.size(); i != e; ++i)
1072             emitCode("Ops" + utostr(OpsNo) + ".push_back(" + AllOps[i] + ");");
1073           AllOps.clear();
1074
1075           // Figure out whether any operands at the end of the op list are not
1076           // part of the variable section.
1077           std::string EndAdjust;
1078           if (NodeHasInFlag || HasImpInputs)
1079             EndAdjust = "-1";  // Always has one flag.
1080           else if (NodeHasOptInFlag)
1081             EndAdjust = "-(HasInFlag?1:0)"; // May have a flag.
1082
1083           emitCode("for (unsigned i = NumInputRootOps + " + utostr(NodeHasChain) +
1084                    ", e = N.getNumOperands()" + EndAdjust + "; i != e; ++i) {");
1085
1086           emitCode("  AddToISelQueue(N.getOperand(i));");
1087           emitCode("  Ops" + utostr(OpsNo) + ".push_back(N.getOperand(i));");
1088           emitCode("}");
1089         }
1090
1091         if (NodeHasChain) {
1092           if (IsVariadic)
1093             emitCode("Ops" + utostr(OpsNo) + ".push_back(" + ChainName + ");");
1094           else
1095             AllOps.push_back(ChainName);
1096         }
1097
1098         if (IsVariadic) {
1099           if (NodeHasInFlag || HasImpInputs)
1100             emitCode("Ops" + utostr(OpsNo) + ".push_back(InFlag);");
1101           else if (NodeHasOptInFlag) {
1102             emitCode("if (HasInFlag)");
1103             emitCode("  Ops" + utostr(OpsNo) + ".push_back(InFlag);");
1104           }
1105           Code += ", &Ops" + utostr(OpsNo) + "[0], Ops" + utostr(OpsNo) +
1106             ".size()";
1107         } else if (NodeHasInFlag || NodeHasOptInFlag || HasImpInputs)
1108           AllOps.push_back("InFlag");
1109
1110         unsigned NumOps = AllOps.size();
1111         if (NumOps) {
1112           if (!NodeHasOptInFlag && NumOps < 4) {
1113             for (unsigned i = 0; i != NumOps; ++i)
1114               Code += ", " + AllOps[i];
1115           } else {
1116             std::string OpsCode = "SDOperand Ops" + utostr(OpsNo) + "[] = { ";
1117             for (unsigned i = 0; i != NumOps; ++i) {
1118               OpsCode += AllOps[i];
1119               if (i != NumOps-1)
1120                 OpsCode += ", ";
1121             }
1122             emitCode(OpsCode + " };");
1123             Code += ", Ops" + utostr(OpsNo) + ", ";
1124             if (NodeHasOptInFlag) {
1125               Code += "HasInFlag ? ";
1126               Code += utostr(NumOps) + " : " + utostr(NumOps-1);
1127             } else
1128               Code += utostr(NumOps);
1129           }
1130         }
1131             
1132         if (!isRoot)
1133           Code += "), 0";
1134         emitCode(Code2 + Code + ");");
1135
1136         if (NodeHasChain) {
1137           // Remember which op produces the chain.
1138           if (!isRoot)
1139             emitCode(ChainName + " = SDOperand(" + NodeName +
1140                      ".Val, " + utostr(NumResults+NumDstRegs) + ");");
1141           else
1142             emitCode(ChainName + " = SDOperand(" + NodeName +
1143                      ", " + utostr(NumResults+NumDstRegs) + ");");
1144         }
1145
1146         if (!isRoot) {
1147           NodeOps.push_back("Tmp" + utostr(ResNo));
1148           return NodeOps;
1149         }
1150
1151         bool NeedReplace = false;
1152         if (NodeHasOutFlag) {
1153           if (!InFlagDecled) {
1154             emitCode("SDOperand InFlag(ResNode, " + 
1155                    utostr(NumResults+NumDstRegs+(unsigned)NodeHasChain) + ");");
1156             InFlagDecled = true;
1157           } else
1158             emitCode("InFlag = SDOperand(ResNode, " + 
1159                    utostr(NumResults+NumDstRegs+(unsigned)NodeHasChain) + ");");
1160         }
1161
1162         if (FoldedChains.size() > 0) {
1163           std::string Code;
1164           for (unsigned j = 0, e = FoldedChains.size(); j < e; j++)
1165             emitCode("ReplaceUses(SDOperand(" +
1166                      FoldedChains[j].first + ".Val, " + 
1167                      utostr(FoldedChains[j].second) + "), SDOperand(ResNode, " +
1168                      utostr(NumResults+NumDstRegs) + "));");
1169           NeedReplace = true;
1170         }
1171
1172         if (NodeHasOutFlag) {
1173           if (FoldedFlag.first != "") {
1174             emitCode("ReplaceUses(SDOperand(" + FoldedFlag.first + ".Val, " +
1175                      utostr(FoldedFlag.second) + "), InFlag);");
1176           } else {
1177             assert(NodeHasProperty(Pattern, SDNPOutFlag, CGP));
1178             emitCode("ReplaceUses(SDOperand(N.Val, " +
1179                      utostr(NumPatResults + (unsigned)InputHasChain)
1180                      +"), InFlag);");
1181           }
1182           NeedReplace = true;
1183         }
1184
1185         if (NeedReplace && InputHasChain)
1186           emitCode("ReplaceUses(SDOperand(N.Val, " + 
1187                    utostr(NumPatResults) + "), SDOperand(" + ChainName
1188                    + ".Val, " + ChainName + ".ResNo" + "));");
1189
1190         // User does not expect the instruction would produce a chain!
1191         if ((!InputHasChain && NodeHasChain) && NodeHasOutFlag) {
1192           ;
1193         } else if (InputHasChain && !NodeHasChain) {
1194           // One of the inner node produces a chain.
1195           if (NodeHasOutFlag)
1196             emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(NumPatResults+1) +
1197                      "), SDOperand(ResNode, N.ResNo-1));");
1198           emitCode("ReplaceUses(SDOperand(N.Val, " + utostr(NumPatResults) +
1199                    "), " + ChainName + ");");
1200         }
1201
1202         emitCode("return ResNode;");
1203       } else {
1204         std::string Code = "return CurDAG->SelectNodeTo(N.Val, Opc" +
1205           utostr(OpcNo);
1206         if (N->getTypeNum(0) != MVT::isVoid)
1207           Code += ", VT" + utostr(VTNo);
1208         if (NodeHasOutFlag)
1209           Code += ", MVT::Flag";
1210
1211         if (NodeHasInFlag || NodeHasOptInFlag || HasImpInputs)
1212           AllOps.push_back("InFlag");
1213
1214         unsigned NumOps = AllOps.size();
1215         if (NumOps) {
1216           if (!NodeHasOptInFlag && NumOps < 4) {
1217             for (unsigned i = 0; i != NumOps; ++i)
1218               Code += ", " + AllOps[i];
1219           } else {
1220             std::string OpsCode = "SDOperand Ops" + utostr(OpcNo) + "[] = { ";
1221             for (unsigned i = 0; i != NumOps; ++i) {
1222               OpsCode += AllOps[i];
1223               if (i != NumOps-1)
1224                 OpsCode += ", ";
1225             }
1226             emitCode(OpsCode + " };");
1227             Code += ", Ops" + utostr(OpcNo) + ", ";
1228             Code += utostr(NumOps);
1229           }
1230         }
1231         emitCode(Code + ");");
1232         emitOpcode(II.Namespace + "::" + II.TheDef->getName());
1233         if (N->getTypeNum(0) != MVT::isVoid)
1234           emitVT(getEnumName(N->getTypeNum(0)));
1235       }
1236
1237       return NodeOps;
1238     } else if (Op->isSubClassOf("SDNodeXForm")) {
1239       assert(N->getNumChildren() == 1 && "node xform should have one child!");
1240       // PatLeaf node - the operand may or may not be a leaf node. But it should
1241       // behave like one.
1242       std::vector<std::string> Ops =
1243         EmitResultCode(N->getChild(0), DstRegs, InFlagDecled,
1244                        ResNodeDecled, true);
1245       unsigned ResNo = TmpNo++;
1246       emitCode("SDOperand Tmp" + utostr(ResNo) + " = Transform_" + Op->getName()
1247                + "(" + Ops.back() + ".Val);");
1248       NodeOps.push_back("Tmp" + utostr(ResNo));
1249       if (isRoot)
1250         emitCode("return Tmp" + utostr(ResNo) + ".Val;");
1251       return NodeOps;
1252     } else {
1253       N->dump();
1254       cerr << "\n";
1255       throw std::string("Unknown node in result pattern!");
1256     }
1257   }
1258
1259   /// InsertOneTypeCheck - Insert a type-check for an unresolved type in 'Pat'
1260   /// and add it to the tree. 'Pat' and 'Other' are isomorphic trees except that 
1261   /// 'Pat' may be missing types.  If we find an unresolved type to add a check
1262   /// for, this returns true otherwise false if Pat has all types.
1263   bool InsertOneTypeCheck(TreePatternNode *Pat, TreePatternNode *Other,
1264                           const std::string &Prefix, bool isRoot = false) {
1265     // Did we find one?
1266     if (Pat->getExtTypes() != Other->getExtTypes()) {
1267       // Move a type over from 'other' to 'pat'.
1268       Pat->setTypes(Other->getExtTypes());
1269       // The top level node type is checked outside of the select function.
1270       if (!isRoot)
1271         emitCheck(Prefix + ".Val->getValueType(0) == " +
1272                   getName(Pat->getTypeNum(0)));
1273       return true;
1274     }
1275   
1276     unsigned OpNo =
1277       (unsigned) NodeHasProperty(Pat, SDNPHasChain, CGP);
1278     for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i, ++OpNo)
1279       if (InsertOneTypeCheck(Pat->getChild(i), Other->getChild(i),
1280                              Prefix + utostr(OpNo)))
1281         return true;
1282     return false;
1283   }
1284
1285 private:
1286   /// EmitInFlagSelectCode - Emit the flag operands for the DAG that is
1287   /// being built.
1288   void EmitInFlagSelectCode(TreePatternNode *N, const std::string &RootName,
1289                             bool &ChainEmitted, bool &InFlagDecled,
1290                             bool &ResNodeDecled, bool isRoot = false) {
1291     const CodeGenTarget &T = CGP.getTargetInfo();
1292     unsigned OpNo =
1293       (unsigned) NodeHasProperty(N, SDNPHasChain, CGP);
1294     bool HasInFlag = NodeHasProperty(N, SDNPInFlag, CGP);
1295     for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i, ++OpNo) {
1296       TreePatternNode *Child = N->getChild(i);
1297       if (!Child->isLeaf()) {
1298         EmitInFlagSelectCode(Child, RootName + utostr(OpNo), ChainEmitted,
1299                              InFlagDecled, ResNodeDecled);
1300       } else {
1301         if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) {
1302           if (!Child->getName().empty()) {
1303             std::string Name = RootName + utostr(OpNo);
1304             if (Duplicates.find(Name) != Duplicates.end())
1305               // A duplicate! Do not emit a copy for this node.
1306               continue;
1307           }
1308
1309           Record *RR = DI->getDef();
1310           if (RR->isSubClassOf("Register")) {
1311             MVT::ValueType RVT = getRegisterValueType(RR, T);
1312             if (RVT == MVT::Flag) {
1313               if (!InFlagDecled) {
1314                 emitCode("SDOperand InFlag = " + RootName + utostr(OpNo) + ";");
1315                 InFlagDecled = true;
1316               } else
1317                 emitCode("InFlag = " + RootName + utostr(OpNo) + ";");
1318               emitCode("AddToISelQueue(InFlag);");
1319             } else {
1320               if (!ChainEmitted) {
1321                 emitCode("SDOperand Chain = CurDAG->getEntryNode();");
1322                 ChainName = "Chain";
1323                 ChainEmitted = true;
1324               }
1325               emitCode("AddToISelQueue(" + RootName + utostr(OpNo) + ");");
1326               if (!InFlagDecled) {
1327                 emitCode("SDOperand InFlag(0, 0);");
1328                 InFlagDecled = true;
1329               }
1330               std::string Decl = (!ResNodeDecled) ? "SDNode *" : "";
1331               emitCode(Decl + "ResNode = CurDAG->getCopyToReg(" + ChainName +
1332                        ", " + getQualifiedName(RR) +
1333                        ", " +  RootName + utostr(OpNo) + ", InFlag).Val;");
1334               ResNodeDecled = true;
1335               emitCode(ChainName + " = SDOperand(ResNode, 0);");
1336               emitCode("InFlag = SDOperand(ResNode, 1);");
1337             }
1338           }
1339         }
1340       }
1341     }
1342
1343     if (HasInFlag) {
1344       if (!InFlagDecled) {
1345         emitCode("SDOperand InFlag = " + RootName +
1346                ".getOperand(" + utostr(OpNo) + ");");
1347         InFlagDecled = true;
1348       } else
1349         emitCode("InFlag = " + RootName +
1350                ".getOperand(" + utostr(OpNo) + ");");
1351       emitCode("AddToISelQueue(InFlag);");
1352     }
1353   }
1354 };
1355
1356 /// EmitCodeForPattern - Given a pattern to match, emit code to the specified
1357 /// stream to match the pattern, and generate the code for the match if it
1358 /// succeeds.  Returns true if the pattern is not guaranteed to match.
1359 void DAGISelEmitter::GenerateCodeForPattern(const PatternToMatch &Pattern,
1360                   std::vector<std::pair<unsigned, std::string> > &GeneratedCode,
1361                                            std::set<std::string> &GeneratedDecl,
1362                                         std::vector<std::string> &TargetOpcodes,
1363                                             std::vector<std::string> &TargetVTs,
1364                                             bool &OutputIsVariadic,
1365                                             unsigned &NumInputRootOps) {
1366   OutputIsVariadic = false;
1367   NumInputRootOps = 0;
1368
1369   PatternCodeEmitter Emitter(CGP, Pattern.getPredicates(),
1370                              Pattern.getSrcPattern(), Pattern.getDstPattern(),
1371                              GeneratedCode, GeneratedDecl,
1372                              TargetOpcodes, TargetVTs,
1373                              OutputIsVariadic, NumInputRootOps);
1374
1375   // Emit the matcher, capturing named arguments in VariableMap.
1376   bool FoundChain = false;
1377   Emitter.EmitMatchCode(Pattern.getSrcPattern(), NULL, "N", "", FoundChain);
1378
1379   // TP - Get *SOME* tree pattern, we don't care which.
1380   TreePattern &TP = *CGP.pf_begin()->second;
1381   
1382   // At this point, we know that we structurally match the pattern, but the
1383   // types of the nodes may not match.  Figure out the fewest number of type 
1384   // comparisons we need to emit.  For example, if there is only one integer
1385   // type supported by a target, there should be no type comparisons at all for
1386   // integer patterns!
1387   //
1388   // To figure out the fewest number of type checks needed, clone the pattern,
1389   // remove the types, then perform type inference on the pattern as a whole.
1390   // If there are unresolved types, emit an explicit check for those types,
1391   // apply the type to the tree, then rerun type inference.  Iterate until all
1392   // types are resolved.
1393   //
1394   TreePatternNode *Pat = Pattern.getSrcPattern()->clone();
1395   RemoveAllTypes(Pat);
1396   
1397   do {
1398     // Resolve/propagate as many types as possible.
1399     try {
1400       bool MadeChange = true;
1401       while (MadeChange)
1402         MadeChange = Pat->ApplyTypeConstraints(TP,
1403                                                true/*Ignore reg constraints*/);
1404     } catch (...) {
1405       assert(0 && "Error: could not find consistent types for something we"
1406              " already decided was ok!");
1407       abort();
1408     }
1409
1410     // Insert a check for an unresolved type and add it to the tree.  If we find
1411     // an unresolved type to add a check for, this returns true and we iterate,
1412     // otherwise we are done.
1413   } while (Emitter.InsertOneTypeCheck(Pat, Pattern.getSrcPattern(), "N", true));
1414
1415   Emitter.EmitResultCode(Pattern.getDstPattern(), Pattern.getDstRegs(),
1416                          false, false, false, true);
1417   delete Pat;
1418 }
1419
1420 /// EraseCodeLine - Erase one code line from all of the patterns.  If removing
1421 /// a line causes any of them to be empty, remove them and return true when
1422 /// done.
1423 static bool EraseCodeLine(std::vector<std::pair<const PatternToMatch*, 
1424                           std::vector<std::pair<unsigned, std::string> > > >
1425                           &Patterns) {
1426   bool ErasedPatterns = false;
1427   for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
1428     Patterns[i].second.pop_back();
1429     if (Patterns[i].second.empty()) {
1430       Patterns.erase(Patterns.begin()+i);
1431       --i; --e;
1432       ErasedPatterns = true;
1433     }
1434   }
1435   return ErasedPatterns;
1436 }
1437
1438 /// EmitPatterns - Emit code for at least one pattern, but try to group common
1439 /// code together between the patterns.
1440 void DAGISelEmitter::EmitPatterns(std::vector<std::pair<const PatternToMatch*, 
1441                               std::vector<std::pair<unsigned, std::string> > > >
1442                                   &Patterns, unsigned Indent,
1443                                   std::ostream &OS) {
1444   typedef std::pair<unsigned, std::string> CodeLine;
1445   typedef std::vector<CodeLine> CodeList;
1446   typedef std::vector<std::pair<const PatternToMatch*, CodeList> > PatternList;
1447   
1448   if (Patterns.empty()) return;
1449   
1450   // Figure out how many patterns share the next code line.  Explicitly copy
1451   // FirstCodeLine so that we don't invalidate a reference when changing
1452   // Patterns.
1453   const CodeLine FirstCodeLine = Patterns.back().second.back();
1454   unsigned LastMatch = Patterns.size()-1;
1455   while (LastMatch != 0 && Patterns[LastMatch-1].second.back() == FirstCodeLine)
1456     --LastMatch;
1457   
1458   // If not all patterns share this line, split the list into two pieces.  The
1459   // first chunk will use this line, the second chunk won't.
1460   if (LastMatch != 0) {
1461     PatternList Shared(Patterns.begin()+LastMatch, Patterns.end());
1462     PatternList Other(Patterns.begin(), Patterns.begin()+LastMatch);
1463     
1464     // FIXME: Emit braces?
1465     if (Shared.size() == 1) {
1466       const PatternToMatch &Pattern = *Shared.back().first;
1467       OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
1468       Pattern.getSrcPattern()->print(OS);
1469       OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
1470       Pattern.getDstPattern()->print(OS);
1471       OS << "\n";
1472       unsigned AddedComplexity = Pattern.getAddedComplexity();
1473       OS << std::string(Indent, ' ') << "// Pattern complexity = "
1474          << getPatternSize(Pattern.getSrcPattern(), CGP) + AddedComplexity
1475          << "  cost = "
1476          << getResultPatternCost(Pattern.getDstPattern(), CGP)
1477          << "  size = "
1478          << getResultPatternSize(Pattern.getDstPattern(), CGP) << "\n";
1479     }
1480     if (FirstCodeLine.first != 1) {
1481       OS << std::string(Indent, ' ') << "{\n";
1482       Indent += 2;
1483     }
1484     EmitPatterns(Shared, Indent, OS);
1485     if (FirstCodeLine.first != 1) {
1486       Indent -= 2;
1487       OS << std::string(Indent, ' ') << "}\n";
1488     }
1489     
1490     if (Other.size() == 1) {
1491       const PatternToMatch &Pattern = *Other.back().first;
1492       OS << "\n" << std::string(Indent, ' ') << "// Pattern: ";
1493       Pattern.getSrcPattern()->print(OS);
1494       OS << "\n" << std::string(Indent, ' ') << "// Emits: ";
1495       Pattern.getDstPattern()->print(OS);
1496       OS << "\n";
1497       unsigned AddedComplexity = Pattern.getAddedComplexity();
1498       OS << std::string(Indent, ' ') << "// Pattern complexity = "
1499          << getPatternSize(Pattern.getSrcPattern(), CGP) + AddedComplexity
1500          << "  cost = "
1501          << getResultPatternCost(Pattern.getDstPattern(), CGP)
1502          << "  size = "
1503          << getResultPatternSize(Pattern.getDstPattern(), CGP) << "\n";
1504     }
1505     EmitPatterns(Other, Indent, OS);
1506     return;
1507   }
1508   
1509   // Remove this code from all of the patterns that share it.
1510   bool ErasedPatterns = EraseCodeLine(Patterns);
1511   
1512   bool isPredicate = FirstCodeLine.first == 1;
1513   
1514   // Otherwise, every pattern in the list has this line.  Emit it.
1515   if (!isPredicate) {
1516     // Normal code.
1517     OS << std::string(Indent, ' ') << FirstCodeLine.second << "\n";
1518   } else {
1519     OS << std::string(Indent, ' ') << "if (" << FirstCodeLine.second;
1520     
1521     // If the next code line is another predicate, and if all of the pattern
1522     // in this group share the same next line, emit it inline now.  Do this
1523     // until we run out of common predicates.
1524     while (!ErasedPatterns && Patterns.back().second.back().first == 1) {
1525       // Check that all of fhe patterns in Patterns end with the same predicate.
1526       bool AllEndWithSamePredicate = true;
1527       for (unsigned i = 0, e = Patterns.size(); i != e; ++i)
1528         if (Patterns[i].second.back() != Patterns.back().second.back()) {
1529           AllEndWithSamePredicate = false;
1530           break;
1531         }
1532       // If all of the predicates aren't the same, we can't share them.
1533       if (!AllEndWithSamePredicate) break;
1534       
1535       // Otherwise we can.  Emit it shared now.
1536       OS << " &&\n" << std::string(Indent+4, ' ')
1537          << Patterns.back().second.back().second;
1538       ErasedPatterns = EraseCodeLine(Patterns);
1539     }
1540     
1541     OS << ") {\n";
1542     Indent += 2;
1543   }
1544   
1545   EmitPatterns(Patterns, Indent, OS);
1546   
1547   if (isPredicate)
1548     OS << std::string(Indent-2, ' ') << "}\n";
1549 }
1550
1551 static std::string getOpcodeName(Record *Op, CodeGenDAGPatterns &CGP) {
1552   return CGP.getSDNodeInfo(Op).getEnumName();
1553 }
1554
1555 static std::string getLegalCName(std::string OpName) {
1556   std::string::size_type pos = OpName.find("::");
1557   if (pos != std::string::npos)
1558     OpName.replace(pos, 2, "_");
1559   return OpName;
1560 }
1561
1562 void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
1563   const CodeGenTarget &Target = CGP.getTargetInfo();
1564   
1565   // Get the namespace to insert instructions into.  Make sure not to pick up
1566   // "TargetInstrInfo" by accidentally getting the namespace off the PHI
1567   // instruction or something.
1568   std::string InstNS;
1569   for (CodeGenTarget::inst_iterator i = Target.inst_begin(),
1570        e = Target.inst_end(); i != e; ++i) {
1571     InstNS = i->second.Namespace;
1572     if (InstNS != "TargetInstrInfo")
1573       break;
1574   }
1575   
1576   if (!InstNS.empty()) InstNS += "::";
1577   
1578   // Group the patterns by their top-level opcodes.
1579   std::map<std::string, std::vector<const PatternToMatch*> > PatternsByOpcode;
1580   // All unique target node emission functions.
1581   std::map<std::string, unsigned> EmitFunctions;
1582   for (CodeGenDAGPatterns::ptm_iterator I = CGP.ptm_begin(),
1583        E = CGP.ptm_end(); I != E; ++I) {
1584     const PatternToMatch &Pattern = *I;
1585
1586     TreePatternNode *Node = Pattern.getSrcPattern();
1587     if (!Node->isLeaf()) {
1588       PatternsByOpcode[getOpcodeName(Node->getOperator(), CGP)].
1589         push_back(&Pattern);
1590     } else {
1591       const ComplexPattern *CP;
1592       if (dynamic_cast<IntInit*>(Node->getLeafValue())) {
1593         PatternsByOpcode[getOpcodeName(CGP.getSDNodeNamed("imm"), CGP)].
1594           push_back(&Pattern);
1595       } else if ((CP = NodeGetComplexPattern(Node, CGP))) {
1596         std::vector<Record*> OpNodes = CP->getRootNodes();
1597         for (unsigned j = 0, e = OpNodes.size(); j != e; j++) {
1598           PatternsByOpcode[getOpcodeName(OpNodes[j], CGP)]
1599             .insert(PatternsByOpcode[getOpcodeName(OpNodes[j], CGP)].begin(),
1600                     &Pattern);
1601         }
1602       } else {
1603         cerr << "Unrecognized opcode '";
1604         Node->dump();
1605         cerr << "' on tree pattern '";
1606         cerr << Pattern.getDstPattern()->getOperator()->getName() << "'!\n";
1607         exit(1);
1608       }
1609     }
1610   }
1611
1612   // For each opcode, there might be multiple select functions, one per
1613   // ValueType of the node (or its first operand if it doesn't produce a
1614   // non-chain result.
1615   std::map<std::string, std::vector<std::string> > OpcodeVTMap;
1616
1617   // Emit one Select_* method for each top-level opcode.  We do this instead of
1618   // emitting one giant switch statement to support compilers where this will
1619   // result in the recursive functions taking less stack space.
1620   for (std::map<std::string, std::vector<const PatternToMatch*> >::iterator
1621          PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
1622        PBOI != E; ++PBOI) {
1623     const std::string &OpName = PBOI->first;
1624     std::vector<const PatternToMatch*> &PatternsOfOp = PBOI->second;
1625     assert(!PatternsOfOp.empty() && "No patterns but map has entry?");
1626
1627     // We want to emit all of the matching code now.  However, we want to emit
1628     // the matches in order of minimal cost.  Sort the patterns so the least
1629     // cost one is at the start.
1630     std::stable_sort(PatternsOfOp.begin(), PatternsOfOp.end(),
1631                      PatternSortingPredicate(CGP));
1632
1633     // Split them into groups by type.
1634     std::map<MVT::ValueType, std::vector<const PatternToMatch*> >PatternsByType;
1635     for (unsigned i = 0, e = PatternsOfOp.size(); i != e; ++i) {
1636       const PatternToMatch *Pat = PatternsOfOp[i];
1637       TreePatternNode *SrcPat = Pat->getSrcPattern();
1638       MVT::ValueType VT = SrcPat->getTypeNum(0);
1639       std::map<MVT::ValueType, 
1640                std::vector<const PatternToMatch*> >::iterator TI = 
1641         PatternsByType.find(VT);
1642       if (TI != PatternsByType.end())
1643         TI->second.push_back(Pat);
1644       else {
1645         std::vector<const PatternToMatch*> PVec;
1646         PVec.push_back(Pat);
1647         PatternsByType.insert(std::make_pair(VT, PVec));
1648       }
1649     }
1650
1651     for (std::map<MVT::ValueType, std::vector<const PatternToMatch*> >::iterator
1652            II = PatternsByType.begin(), EE = PatternsByType.end(); II != EE;
1653          ++II) {
1654       MVT::ValueType OpVT = II->first;
1655       std::vector<const PatternToMatch*> &Patterns = II->second;
1656       typedef std::vector<std::pair<unsigned,std::string> > CodeList;
1657       typedef std::vector<std::pair<unsigned,std::string> >::iterator CodeListI;
1658     
1659       std::vector<std::pair<const PatternToMatch*, CodeList> > CodeForPatterns;
1660       std::vector<std::vector<std::string> > PatternOpcodes;
1661       std::vector<std::vector<std::string> > PatternVTs;
1662       std::vector<std::set<std::string> > PatternDecls;
1663       std::vector<bool> OutputIsVariadicFlags;
1664       std::vector<unsigned> NumInputRootOpsCounts;
1665       for (unsigned i = 0, e = Patterns.size(); i != e; ++i) {
1666         CodeList GeneratedCode;
1667         std::set<std::string> GeneratedDecl;
1668         std::vector<std::string> TargetOpcodes;
1669         std::vector<std::string> TargetVTs;
1670         bool OutputIsVariadic;
1671         unsigned NumInputRootOps;
1672         GenerateCodeForPattern(*Patterns[i], GeneratedCode, GeneratedDecl,
1673                                TargetOpcodes, TargetVTs,
1674                                OutputIsVariadic, NumInputRootOps);
1675         CodeForPatterns.push_back(std::make_pair(Patterns[i], GeneratedCode));
1676         PatternDecls.push_back(GeneratedDecl);
1677         PatternOpcodes.push_back(TargetOpcodes);
1678         PatternVTs.push_back(TargetVTs);
1679         OutputIsVariadicFlags.push_back(OutputIsVariadic);
1680         NumInputRootOpsCounts.push_back(NumInputRootOps);
1681       }
1682     
1683       // Scan the code to see if all of the patterns are reachable and if it is
1684       // possible that the last one might not match.
1685       bool mightNotMatch = true;
1686       for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
1687         CodeList &GeneratedCode = CodeForPatterns[i].second;
1688         mightNotMatch = false;
1689
1690         for (unsigned j = 0, e = GeneratedCode.size(); j != e; ++j) {
1691           if (GeneratedCode[j].first == 1) { // predicate.
1692             mightNotMatch = true;
1693             break;
1694           }
1695         }
1696       
1697         // If this pattern definitely matches, and if it isn't the last one, the
1698         // patterns after it CANNOT ever match.  Error out.
1699         if (mightNotMatch == false && i != CodeForPatterns.size()-1) {
1700           cerr << "Pattern '";
1701           CodeForPatterns[i].first->getSrcPattern()->print(*cerr.stream());
1702           cerr << "' is impossible to select!\n";
1703           exit(1);
1704         }
1705       }
1706
1707       // Factor target node emission code (emitted by EmitResultCode) into
1708       // separate functions. Uniquing and share them among all instruction
1709       // selection routines.
1710       for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
1711         CodeList &GeneratedCode = CodeForPatterns[i].second;
1712         std::vector<std::string> &TargetOpcodes = PatternOpcodes[i];
1713         std::vector<std::string> &TargetVTs = PatternVTs[i];
1714         std::set<std::string> Decls = PatternDecls[i];
1715         bool OutputIsVariadic = OutputIsVariadicFlags[i];
1716         unsigned NumInputRootOps = NumInputRootOpsCounts[i];
1717         std::vector<std::string> AddedInits;
1718         int CodeSize = (int)GeneratedCode.size();
1719         int LastPred = -1;
1720         for (int j = CodeSize-1; j >= 0; --j) {
1721           if (LastPred == -1 && GeneratedCode[j].first == 1)
1722             LastPred = j;
1723           else if (LastPred != -1 && GeneratedCode[j].first == 2)
1724             AddedInits.push_back(GeneratedCode[j].second);
1725         }
1726
1727         std::string CalleeCode = "(const SDOperand &N";
1728         std::string CallerCode = "(N";
1729         for (unsigned j = 0, e = TargetOpcodes.size(); j != e; ++j) {
1730           CalleeCode += ", unsigned Opc" + utostr(j);
1731           CallerCode += ", " + TargetOpcodes[j];
1732         }
1733         for (unsigned j = 0, e = TargetVTs.size(); j != e; ++j) {
1734           CalleeCode += ", MVT::ValueType VT" + utostr(j);
1735           CallerCode += ", " + TargetVTs[j];
1736         }
1737         for (std::set<std::string>::iterator
1738                I = Decls.begin(), E = Decls.end(); I != E; ++I) {
1739           std::string Name = *I;
1740           CalleeCode += ", SDOperand &" + Name;
1741           CallerCode += ", " + Name;
1742         }
1743
1744         if (OutputIsVariadic) {
1745           CalleeCode += ", unsigned NumInputRootOps";
1746           CallerCode += ", " + utostr(NumInputRootOps);
1747         }
1748
1749         CallerCode += ");";
1750         CalleeCode += ") ";
1751         // Prevent emission routines from being inlined to reduce selection
1752         // routines stack frame sizes.
1753         CalleeCode += "DISABLE_INLINE ";
1754         CalleeCode += "{\n";
1755
1756         for (std::vector<std::string>::const_reverse_iterator
1757                I = AddedInits.rbegin(), E = AddedInits.rend(); I != E; ++I)
1758           CalleeCode += "  " + *I + "\n";
1759
1760         for (int j = LastPred+1; j < CodeSize; ++j)
1761           CalleeCode += "  " + GeneratedCode[j].second + "\n";
1762         for (int j = LastPred+1; j < CodeSize; ++j)
1763           GeneratedCode.pop_back();
1764         CalleeCode += "}\n";
1765
1766         // Uniquing the emission routines.
1767         unsigned EmitFuncNum;
1768         std::map<std::string, unsigned>::iterator EFI =
1769           EmitFunctions.find(CalleeCode);
1770         if (EFI != EmitFunctions.end()) {
1771           EmitFuncNum = EFI->second;
1772         } else {
1773           EmitFuncNum = EmitFunctions.size();
1774           EmitFunctions.insert(std::make_pair(CalleeCode, EmitFuncNum));
1775           OS << "SDNode *Emit_" << utostr(EmitFuncNum) << CalleeCode;
1776         }
1777
1778         // Replace the emission code within selection routines with calls to the
1779         // emission functions.
1780         CallerCode = "return Emit_" + utostr(EmitFuncNum) + CallerCode;
1781         GeneratedCode.push_back(std::make_pair(false, CallerCode));
1782       }
1783
1784       // Print function.
1785       std::string OpVTStr;
1786       if (OpVT == MVT::iPTR) {
1787         OpVTStr = "_iPTR";
1788       } else if (OpVT == MVT::isVoid) {
1789         // Nodes with a void result actually have a first result type of either
1790         // Other (a chain) or Flag.  Since there is no one-to-one mapping from
1791         // void to this case, we handle it specially here.
1792       } else {
1793         OpVTStr = "_" + getEnumName(OpVT).substr(5);  // Skip 'MVT::'
1794       }
1795       std::map<std::string, std::vector<std::string> >::iterator OpVTI =
1796         OpcodeVTMap.find(OpName);
1797       if (OpVTI == OpcodeVTMap.end()) {
1798         std::vector<std::string> VTSet;
1799         VTSet.push_back(OpVTStr);
1800         OpcodeVTMap.insert(std::make_pair(OpName, VTSet));
1801       } else
1802         OpVTI->second.push_back(OpVTStr);
1803
1804       OS << "SDNode *Select_" << getLegalCName(OpName)
1805          << OpVTStr << "(const SDOperand &N) {\n";    
1806
1807       // Loop through and reverse all of the CodeList vectors, as we will be
1808       // accessing them from their logical front, but accessing the end of a
1809       // vector is more efficient.
1810       for (unsigned i = 0, e = CodeForPatterns.size(); i != e; ++i) {
1811         CodeList &GeneratedCode = CodeForPatterns[i].second;
1812         std::reverse(GeneratedCode.begin(), GeneratedCode.end());
1813       }
1814     
1815       // Next, reverse the list of patterns itself for the same reason.
1816       std::reverse(CodeForPatterns.begin(), CodeForPatterns.end());
1817     
1818       // Emit all of the patterns now, grouped together to share code.
1819       EmitPatterns(CodeForPatterns, 2, OS);
1820     
1821       // If the last pattern has predicates (which could fail) emit code to
1822       // catch the case where nothing handles a pattern.
1823       if (mightNotMatch) {
1824         OS << "  cerr << \"Cannot yet select: \";\n";
1825         if (OpName != "ISD::INTRINSIC_W_CHAIN" &&
1826             OpName != "ISD::INTRINSIC_WO_CHAIN" &&
1827             OpName != "ISD::INTRINSIC_VOID") {
1828           OS << "  N.Val->dump(CurDAG);\n";
1829         } else {
1830           OS << "  unsigned iid = cast<ConstantSDNode>(N.getOperand("
1831             "N.getOperand(0).getValueType() == MVT::Other))->getValue();\n"
1832              << "  cerr << \"intrinsic %\"<< "
1833             "Intrinsic::getName((Intrinsic::ID)iid);\n";
1834         }
1835         OS << "  cerr << '\\n';\n"
1836            << "  abort();\n"
1837            << "  return NULL;\n";
1838       }
1839       OS << "}\n\n";
1840     }
1841   }
1842   
1843   // Emit boilerplate.
1844   OS << "SDNode *Select_INLINEASM(SDOperand N) {\n"
1845      << "  std::vector<SDOperand> Ops(N.Val->op_begin(), N.Val->op_end());\n"
1846      << "  SelectInlineAsmMemoryOperands(Ops, *CurDAG);\n\n"
1847     
1848      << "  // Ensure that the asm operands are themselves selected.\n"
1849      << "  for (unsigned j = 0, e = Ops.size(); j != e; ++j)\n"
1850      << "    AddToISelQueue(Ops[j]);\n\n"
1851     
1852      << "  std::vector<MVT::ValueType> VTs;\n"
1853      << "  VTs.push_back(MVT::Other);\n"
1854      << "  VTs.push_back(MVT::Flag);\n"
1855      << "  SDOperand New = CurDAG->getNode(ISD::INLINEASM, VTs, &Ops[0], "
1856                  "Ops.size());\n"
1857      << "  return New.Val;\n"
1858      << "}\n\n";
1859
1860   OS << "SDNode *Select_UNDEF(const SDOperand &N) {\n"
1861      << "  return CurDAG->getTargetNode(TargetInstrInfo::IMPLICIT_DEF,\n"
1862      << "                               N.getValueType());\n"
1863      << "}\n\n";
1864
1865   OS << "SDNode *Select_LABEL(const SDOperand &N) {\n"
1866      << "  SDOperand Chain = N.getOperand(0);\n"
1867      << "  SDOperand N1 = N.getOperand(1);\n"
1868      << "  SDOperand N2 = N.getOperand(2);\n"
1869      << "  unsigned C1 = cast<ConstantSDNode>(N1)->getValue();\n"
1870      << "  unsigned C2 = cast<ConstantSDNode>(N2)->getValue();\n"
1871      << "  SDOperand Tmp1 = CurDAG->getTargetConstant(C1, MVT::i32);\n"
1872      << "  SDOperand Tmp2 = CurDAG->getTargetConstant(C2, MVT::i32);\n"
1873      << "  AddToISelQueue(Chain);\n"
1874      << "  SDOperand Ops[] = { Tmp1, Tmp2, Chain };\n"
1875      << "  return CurDAG->getTargetNode(TargetInstrInfo::LABEL,\n"
1876      << "                               MVT::Other, Ops, 3);\n"
1877      << "}\n\n";
1878
1879   OS << "SDNode *Select_DECLARE(const SDOperand &N) {\n"
1880      << "  SDOperand Chain = N.getOperand(0);\n"
1881      << "  SDOperand N1 = N.getOperand(1);\n"
1882      << "  SDOperand N2 = N.getOperand(2);\n"
1883      << "  if (!isa<FrameIndexSDNode>(N1) || !isa<GlobalAddressSDNode>(N2)) {\n"
1884      << "    cerr << \"Cannot yet select llvm.dbg.declare: \";\n"
1885      << "    N.Val->dump(CurDAG);\n"
1886      << "    abort();\n"
1887      << "  }\n"
1888      << "  int FI = cast<FrameIndexSDNode>(N1)->getIndex();\n"
1889      << "  GlobalValue *GV = cast<GlobalAddressSDNode>(N2)->getGlobal();\n"
1890      << "  SDOperand Tmp1 = "
1891      << "CurDAG->getTargetFrameIndex(FI, TLI.getPointerTy());\n"
1892      << "  SDOperand Tmp2 = "
1893      << "CurDAG->getTargetGlobalAddress(GV, TLI.getPointerTy());\n"
1894      << "  AddToISelQueue(Chain);\n"
1895      << "  SDOperand Ops[] = { Tmp1, Tmp2, Chain };\n"
1896      << "  return CurDAG->getTargetNode(TargetInstrInfo::DECLARE,\n"
1897      << "                               MVT::Other, Ops, 3);\n"
1898      << "}\n\n";
1899
1900   OS << "SDNode *Select_EXTRACT_SUBREG(const SDOperand &N) {\n"
1901      << "  SDOperand N0 = N.getOperand(0);\n"
1902      << "  SDOperand N1 = N.getOperand(1);\n"
1903      << "  unsigned C = cast<ConstantSDNode>(N1)->getValue();\n"
1904      << "  SDOperand Tmp = CurDAG->getTargetConstant(C, MVT::i32);\n"
1905      << "  AddToISelQueue(N0);\n"
1906      << "  SDOperand Ops[] = { N0, Tmp };\n"
1907      << "  return CurDAG->getTargetNode(TargetInstrInfo::EXTRACT_SUBREG,\n"
1908      << "                               N.getValueType(), Ops, 2);\n"
1909      << "}\n\n";
1910
1911   OS << "SDNode *Select_INSERT_SUBREG(const SDOperand &N) {\n"
1912      << "  SDOperand N0 = N.getOperand(0);\n"
1913      << "  SDOperand N1 = N.getOperand(1);\n"
1914      << "  SDOperand N2 = N.getOperand(2);\n"
1915      << "  unsigned C = cast<ConstantSDNode>(N2)->getValue();\n"
1916      << "  SDOperand Tmp = CurDAG->getTargetConstant(C, MVT::i32);\n"
1917      << "  AddToISelQueue(N1);\n"
1918      << "  SDOperand Ops[] = { N0, N1, Tmp };\n"
1919      << "  AddToISelQueue(N0);\n"
1920      << "  return CurDAG->getTargetNode(TargetInstrInfo::INSERT_SUBREG,\n"
1921      << "                               N.getValueType(), Ops, 3);\n"
1922      << "}\n\n";
1923
1924   OS << "// The main instruction selector code.\n"
1925      << "SDNode *SelectCode(SDOperand N) {\n"
1926      << "  if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n"
1927      << "      N.getOpcode() < (ISD::BUILTIN_OP_END+" << InstNS
1928      << "INSTRUCTION_LIST_END)) {\n"
1929      << "    return NULL;   // Already selected.\n"
1930      << "  }\n\n"
1931      << "  MVT::ValueType NVT = N.Val->getValueType(0);\n"
1932      << "  switch (N.getOpcode()) {\n"
1933      << "  default: break;\n"
1934      << "  case ISD::EntryToken:       // These leaves remain the same.\n"
1935      << "  case ISD::BasicBlock:\n"
1936      << "  case ISD::Register:\n"
1937      << "  case ISD::HANDLENODE:\n"
1938      << "  case ISD::TargetConstant:\n"
1939      << "  case ISD::TargetConstantFP:\n"
1940      << "  case ISD::TargetConstantPool:\n"
1941      << "  case ISD::TargetFrameIndex:\n"
1942      << "  case ISD::TargetExternalSymbol:\n"
1943      << "  case ISD::TargetJumpTable:\n"
1944      << "  case ISD::TargetGlobalTLSAddress:\n"
1945      << "  case ISD::TargetGlobalAddress: {\n"
1946      << "    return NULL;\n"
1947      << "  }\n"
1948      << "  case ISD::AssertSext:\n"
1949      << "  case ISD::AssertZext: {\n"
1950      << "    AddToISelQueue(N.getOperand(0));\n"
1951      << "    ReplaceUses(N, N.getOperand(0));\n"
1952      << "    return NULL;\n"
1953      << "  }\n"
1954      << "  case ISD::TokenFactor:\n"
1955      << "  case ISD::CopyFromReg:\n"
1956      << "  case ISD::CopyToReg: {\n"
1957      << "    for (unsigned i = 0, e = N.getNumOperands(); i != e; ++i)\n"
1958      << "      AddToISelQueue(N.getOperand(i));\n"
1959      << "    return NULL;\n"
1960      << "  }\n"
1961      << "  case ISD::INLINEASM: return Select_INLINEASM(N);\n"
1962      << "  case ISD::LABEL: return Select_LABEL(N);\n"
1963      << "  case ISD::DECLARE: return Select_DECLARE(N);\n"
1964      << "  case ISD::EXTRACT_SUBREG: return Select_EXTRACT_SUBREG(N);\n"
1965      << "  case ISD::INSERT_SUBREG: return Select_INSERT_SUBREG(N);\n"
1966      << "  case ISD::UNDEF: return Select_UNDEF(N);\n";
1967
1968     
1969   // Loop over all of the case statements, emiting a call to each method we
1970   // emitted above.
1971   for (std::map<std::string, std::vector<const PatternToMatch*> >::iterator
1972          PBOI = PatternsByOpcode.begin(), E = PatternsByOpcode.end();
1973        PBOI != E; ++PBOI) {
1974     const std::string &OpName = PBOI->first;
1975     // Potentially multiple versions of select for this opcode. One for each
1976     // ValueType of the node (or its first true operand if it doesn't produce a
1977     // result.
1978     std::map<std::string, std::vector<std::string> >::iterator OpVTI =
1979       OpcodeVTMap.find(OpName);
1980     std::vector<std::string> &OpVTs = OpVTI->second;
1981     OS << "  case " << OpName << ": {\n";
1982     // Keep track of whether we see a pattern that has an iPtr result.
1983     bool HasPtrPattern = false;
1984     bool HasDefaultPattern = false;
1985       
1986     OS << "    switch (NVT) {\n";
1987     for (unsigned i = 0, e = OpVTs.size(); i < e; ++i) {
1988       std::string &VTStr = OpVTs[i];
1989       if (VTStr.empty()) {
1990         HasDefaultPattern = true;
1991         continue;
1992       }
1993
1994       // If this is a match on iPTR: don't emit it directly, we need special
1995       // code.
1996       if (VTStr == "_iPTR") {
1997         HasPtrPattern = true;
1998         continue;
1999       }
2000       OS << "    case MVT::" << VTStr.substr(1) << ":\n"
2001          << "      return Select_" << getLegalCName(OpName)
2002          << VTStr << "(N);\n";
2003     }
2004     OS << "    default:\n";
2005       
2006     // If there is an iPTR result version of this pattern, emit it here.
2007     if (HasPtrPattern) {
2008       OS << "      if (NVT == TLI.getPointerTy())\n";
2009       OS << "        return Select_" << getLegalCName(OpName) <<"_iPTR(N);\n";
2010     }
2011     if (HasDefaultPattern) {
2012       OS << "      return Select_" << getLegalCName(OpName) << "(N);\n";
2013     }
2014     OS << "      break;\n";
2015     OS << "    }\n";
2016     OS << "    break;\n";
2017     OS << "  }\n";
2018   }
2019
2020   OS << "  } // end of big switch.\n\n"
2021      << "  cerr << \"Cannot yet select: \";\n"
2022      << "  if (N.getOpcode() != ISD::INTRINSIC_W_CHAIN &&\n"
2023      << "      N.getOpcode() != ISD::INTRINSIC_WO_CHAIN &&\n"
2024      << "      N.getOpcode() != ISD::INTRINSIC_VOID) {\n"
2025      << "    N.Val->dump(CurDAG);\n"
2026      << "  } else {\n"
2027      << "    unsigned iid = cast<ConstantSDNode>(N.getOperand("
2028                "N.getOperand(0).getValueType() == MVT::Other))->getValue();\n"
2029      << "    cerr << \"intrinsic %\"<< "
2030                "Intrinsic::getName((Intrinsic::ID)iid);\n"
2031      << "  }\n"
2032      << "  cerr << '\\n';\n"
2033      << "  abort();\n"
2034      << "  return NULL;\n"
2035      << "}\n";
2036 }
2037
2038 void DAGISelEmitter::run(std::ostream &OS) {
2039   EmitSourceFileHeader("DAG Instruction Selector for the " +
2040                        CGP.getTargetInfo().getName() + " target", OS);
2041   
2042   OS << "// *** NOTE: This file is #included into the middle of the target\n"
2043      << "// *** instruction selector class.  These functions are really "
2044      << "methods.\n\n";
2045
2046   OS << "// Include standard, target-independent definitions and methods used\n"
2047      << "// by the instruction selector.\n";
2048   OS << "#include <llvm/CodeGen/DAGISelHeader.h>\n\n";
2049   
2050   EmitNodeTransforms(OS);
2051   EmitPredicateFunctions(OS);
2052   
2053   DOUT << "\n\nALL PATTERNS TO MATCH:\n\n";
2054   for (CodeGenDAGPatterns::ptm_iterator I = CGP.ptm_begin(), E = CGP.ptm_end();
2055        I != E; ++I) {
2056     DOUT << "PATTERN: ";   DEBUG(I->getSrcPattern()->dump());
2057     DOUT << "\nRESULT:  "; DEBUG(I->getDstPattern()->dump());
2058     DOUT << "\n";
2059   }
2060   
2061   // At this point, we have full information about the 'Patterns' we need to
2062   // parse, both implicitly from instructions as well as from explicit pattern
2063   // definitions.  Emit the resultant instruction selector.
2064   EmitInstructionSelector(OS);  
2065   
2066 }