Teach Legalize how to scalarize VSETCC
[oota-llvm.git] / lib / CodeGen / SelectionDAG / ScheduleDAG.cpp
1 //===---- ScheduleDAG.cpp - Implement the ScheduleDAG class ---------------===//
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 implements a simple two pass scheduler.  The first pass attempts to push
11 // backward any lengthy instructions and critical paths.  The second pass packs
12 // instructions into semi-optimal time slots.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #define DEBUG_TYPE "pre-RA-sched"
17 #include "llvm/Constants.h"
18 #include "llvm/Type.h"
19 #include "llvm/CodeGen/ScheduleDAG.h"
20 #include "llvm/CodeGen/MachineConstantPool.h"
21 #include "llvm/CodeGen/MachineFunction.h"
22 #include "llvm/CodeGen/MachineInstrBuilder.h"
23 #include "llvm/CodeGen/MachineRegisterInfo.h"
24 #include "llvm/Target/TargetData.h"
25 #include "llvm/Target/TargetMachine.h"
26 #include "llvm/Target/TargetInstrInfo.h"
27 #include "llvm/Target/TargetLowering.h"
28 #include "llvm/ADT/Statistic.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/Debug.h"
31 #include "llvm/Support/MathExtras.h"
32 using namespace llvm;
33
34 STATISTIC(NumCommutes,   "Number of instructions commuted");
35
36 namespace {
37   static cl::opt<bool>
38   SchedLiveInCopies("schedule-livein-copies",
39                     cl::desc("Schedule copies of livein registers"),
40                     cl::init(false));
41 }
42
43 ScheduleDAG::ScheduleDAG(SelectionDAG &dag, MachineBasicBlock *bb,
44                          const TargetMachine &tm)
45   : DAG(dag), BB(bb), TM(tm), MRI(BB->getParent()->getRegInfo()) {
46   TII = TM.getInstrInfo();
47   MF  = &DAG.getMachineFunction();
48   TRI = TM.getRegisterInfo();
49   TLI = &DAG.getTargetLoweringInfo();
50   ConstPool = BB->getParent()->getConstantPool();
51 }
52
53 /// CheckForPhysRegDependency - Check if the dependency between def and use of
54 /// a specified operand is a physical register dependency. If so, returns the
55 /// register and the cost of copying the register.
56 static void CheckForPhysRegDependency(SDNode *Def, SDNode *Use, unsigned Op,
57                                       const TargetRegisterInfo *TRI, 
58                                       const TargetInstrInfo *TII,
59                                       unsigned &PhysReg, int &Cost) {
60   if (Op != 2 || Use->getOpcode() != ISD::CopyToReg)
61     return;
62
63   unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
64   if (TargetRegisterInfo::isVirtualRegister(Reg))
65     return;
66
67   unsigned ResNo = Use->getOperand(2).ResNo;
68   if (Def->isTargetOpcode()) {
69     const TargetInstrDesc &II = TII->get(Def->getTargetOpcode());
70     if (ResNo >= II.getNumDefs() &&
71         II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
72       PhysReg = Reg;
73       const TargetRegisterClass *RC =
74         TRI->getPhysicalRegisterRegClass(Reg, Def->getValueType(ResNo));
75       Cost = RC->getCopyCost();
76     }
77   }
78 }
79
80 SUnit *ScheduleDAG::Clone(SUnit *Old) {
81   SUnit *SU = NewSUnit(Old->Node);
82   SU->FlaggedNodes = Old->FlaggedNodes;
83   SU->InstanceNo = SUnitMap[Old->Node].size();
84   SU->Latency = Old->Latency;
85   SU->isTwoAddress = Old->isTwoAddress;
86   SU->isCommutable = Old->isCommutable;
87   SU->hasPhysRegDefs = Old->hasPhysRegDefs;
88   SUnitMap[Old->Node].push_back(SU);
89   return SU;
90 }
91
92
93 /// BuildSchedUnits - Build SUnits from the selection dag that we are input.
94 /// This SUnit graph is similar to the SelectionDAG, but represents flagged
95 /// together nodes with a single SUnit.
96 void ScheduleDAG::BuildSchedUnits() {
97   // Reserve entries in the vector for each of the SUnits we are creating.  This
98   // ensure that reallocation of the vector won't happen, so SUnit*'s won't get
99   // invalidated.
100   SUnits.reserve(std::distance(DAG.allnodes_begin(), DAG.allnodes_end()));
101   
102   for (SelectionDAG::allnodes_iterator NI = DAG.allnodes_begin(),
103        E = DAG.allnodes_end(); NI != E; ++NI) {
104     if (isPassiveNode(NI))  // Leaf node, e.g. a TargetImmediate.
105       continue;
106     
107     // If this node has already been processed, stop now.
108     if (SUnitMap[NI].size()) continue;
109     
110     SUnit *NodeSUnit = NewSUnit(NI);
111     
112     // See if anything is flagged to this node, if so, add them to flagged
113     // nodes.  Nodes can have at most one flag input and one flag output.  Flags
114     // are required the be the last operand and result of a node.
115     
116     // Scan up, adding flagged preds to FlaggedNodes.
117     SDNode *N = NI;
118     if (N->getNumOperands() &&
119         N->getOperand(N->getNumOperands()-1).getValueType() == MVT::Flag) {
120       do {
121         N = N->getOperand(N->getNumOperands()-1).Val;
122         NodeSUnit->FlaggedNodes.push_back(N);
123         SUnitMap[N].push_back(NodeSUnit);
124       } while (N->getNumOperands() &&
125                N->getOperand(N->getNumOperands()-1).getValueType()== MVT::Flag);
126       std::reverse(NodeSUnit->FlaggedNodes.begin(),
127                    NodeSUnit->FlaggedNodes.end());
128     }
129     
130     // Scan down, adding this node and any flagged succs to FlaggedNodes if they
131     // have a user of the flag operand.
132     N = NI;
133     while (N->getValueType(N->getNumValues()-1) == MVT::Flag) {
134       SDOperand FlagVal(N, N->getNumValues()-1);
135       
136       // There are either zero or one users of the Flag result.
137       bool HasFlagUse = false;
138       for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); 
139            UI != E; ++UI)
140         if (FlagVal.isOperandOf(UI->getUser())) {
141           HasFlagUse = true;
142           NodeSUnit->FlaggedNodes.push_back(N);
143           SUnitMap[N].push_back(NodeSUnit);
144           N = UI->getUser();
145           break;
146         }
147       if (!HasFlagUse) break;
148     }
149     
150     // Now all flagged nodes are in FlaggedNodes and N is the bottom-most node.
151     // Update the SUnit
152     NodeSUnit->Node = N;
153     SUnitMap[N].push_back(NodeSUnit);
154
155     ComputeLatency(NodeSUnit);
156   }
157   
158   // Pass 2: add the preds, succs, etc.
159   for (unsigned su = 0, e = SUnits.size(); su != e; ++su) {
160     SUnit *SU = &SUnits[su];
161     SDNode *MainNode = SU->Node;
162     
163     if (MainNode->isTargetOpcode()) {
164       unsigned Opc = MainNode->getTargetOpcode();
165       const TargetInstrDesc &TID = TII->get(Opc);
166       for (unsigned i = 0; i != TID.getNumOperands(); ++i) {
167         if (TID.getOperandConstraint(i, TOI::TIED_TO) != -1) {
168           SU->isTwoAddress = true;
169           break;
170         }
171       }
172       if (TID.isCommutable())
173         SU->isCommutable = true;
174     }
175     
176     // Find all predecessors and successors of the group.
177     // Temporarily add N to make code simpler.
178     SU->FlaggedNodes.push_back(MainNode);
179     
180     for (unsigned n = 0, e = SU->FlaggedNodes.size(); n != e; ++n) {
181       SDNode *N = SU->FlaggedNodes[n];
182       if (N->isTargetOpcode() &&
183           TII->get(N->getTargetOpcode()).getImplicitDefs() &&
184           CountResults(N) > TII->get(N->getTargetOpcode()).getNumDefs())
185         SU->hasPhysRegDefs = true;
186       
187       for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
188         SDNode *OpN = N->getOperand(i).Val;
189         if (isPassiveNode(OpN)) continue;   // Not scheduled.
190         SUnit *OpSU = SUnitMap[OpN].front();
191         assert(OpSU && "Node has no SUnit!");
192         if (OpSU == SU) continue;           // In the same group.
193
194         MVT::ValueType OpVT = N->getOperand(i).getValueType();
195         assert(OpVT != MVT::Flag && "Flagged nodes should be in same sunit!");
196         bool isChain = OpVT == MVT::Other;
197
198         unsigned PhysReg = 0;
199         int Cost = 1;
200         // Determine if this is a physical register dependency.
201         CheckForPhysRegDependency(OpN, N, i, TRI, TII, PhysReg, Cost);
202         SU->addPred(OpSU, isChain, false, PhysReg, Cost);
203       }
204     }
205     
206     // Remove MainNode from FlaggedNodes again.
207     SU->FlaggedNodes.pop_back();
208   }
209   
210   return;
211 }
212
213 void ScheduleDAG::ComputeLatency(SUnit *SU) {
214   const InstrItineraryData &InstrItins = TM.getInstrItineraryData();
215   
216   // Compute the latency for the node.  We use the sum of the latencies for
217   // all nodes flagged together into this SUnit.
218   if (InstrItins.isEmpty()) {
219     // No latency information.
220     SU->Latency = 1;
221   } else {
222     SU->Latency = 0;
223     if (SU->Node->isTargetOpcode()) {
224       unsigned SchedClass =
225         TII->get(SU->Node->getTargetOpcode()).getSchedClass();
226       const InstrStage *S = InstrItins.begin(SchedClass);
227       const InstrStage *E = InstrItins.end(SchedClass);
228       for (; S != E; ++S)
229         SU->Latency += S->Cycles;
230     }
231     for (unsigned i = 0, e = SU->FlaggedNodes.size(); i != e; ++i) {
232       SDNode *FNode = SU->FlaggedNodes[i];
233       if (FNode->isTargetOpcode()) {
234         unsigned SchedClass =TII->get(FNode->getTargetOpcode()).getSchedClass();
235         const InstrStage *S = InstrItins.begin(SchedClass);
236         const InstrStage *E = InstrItins.end(SchedClass);
237         for (; S != E; ++S)
238           SU->Latency += S->Cycles;
239       }
240     }
241   }
242 }
243
244 /// CalculateDepths - compute depths using algorithms for the longest
245 /// paths in the DAG
246 void ScheduleDAG::CalculateDepths() {
247   unsigned DAGSize = SUnits.size();
248   std::vector<unsigned> InDegree(DAGSize);
249   std::vector<SUnit*> WorkList;
250   WorkList.reserve(DAGSize);
251
252   // Initialize the data structures
253   for (unsigned i = 0, e = DAGSize; i != e; ++i) {
254     SUnit *SU = &SUnits[i];
255     int NodeNum = SU->NodeNum;
256     unsigned Degree = SU->Preds.size();
257     InDegree[NodeNum] = Degree;
258     SU->Depth = 0;
259
260     // Is it a node without dependencies?
261     if (Degree == 0) {
262         assert(SU->Preds.empty() && "SUnit should have no predecessors");
263         // Collect leaf nodes
264         WorkList.push_back(SU);
265     }
266   }
267
268   // Process nodes in the topological order
269   while (!WorkList.empty()) {
270     SUnit *SU = WorkList.back();
271     WorkList.pop_back();
272     unsigned &SUDepth  = SU->Depth;
273
274     // Use dynamic programming:
275     // When current node is being processed, all of its dependencies
276     // are already processed.
277     // So, just iterate over all predecessors and take the longest path
278     for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
279          I != E; ++I) {
280       unsigned PredDepth = I->Dep->Depth;
281       if (PredDepth+1 > SUDepth) {
282           SUDepth = PredDepth + 1;
283       }
284     }
285
286     // Update InDegrees of all nodes depending on current SUnit
287     for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
288          I != E; ++I) {
289       SUnit *SU = I->Dep;
290       if (!--InDegree[SU->NodeNum])
291         // If all dependencies of the node are processed already,
292         // then the longest path for the node can be computed now
293         WorkList.push_back(SU);
294     }
295   }
296 }
297
298 /// CalculateHeights - compute heights using algorithms for the longest
299 /// paths in the DAG
300 void ScheduleDAG::CalculateHeights() {
301   unsigned DAGSize = SUnits.size();
302   std::vector<unsigned> InDegree(DAGSize);
303   std::vector<SUnit*> WorkList;
304   WorkList.reserve(DAGSize);
305
306   // Initialize the data structures
307   for (unsigned i = 0, e = DAGSize; i != e; ++i) {
308     SUnit *SU = &SUnits[i];
309     int NodeNum = SU->NodeNum;
310     unsigned Degree = SU->Succs.size();
311     InDegree[NodeNum] = Degree;
312     SU->Height = 0;
313
314     // Is it a node without dependencies?
315     if (Degree == 0) {
316         assert(SU->Succs.empty() && "Something wrong");
317         assert(WorkList.empty() && "Should be empty");
318         // Collect leaf nodes
319         WorkList.push_back(SU);
320     }
321   }
322
323   // Process nodes in the topological order
324   while (!WorkList.empty()) {
325     SUnit *SU = WorkList.back();
326     WorkList.pop_back();
327     unsigned &SUHeight  = SU->Height;
328
329     // Use dynamic programming:
330     // When current node is being processed, all of its dependencies
331     // are already processed.
332     // So, just iterate over all successors and take the longest path
333     for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
334          I != E; ++I) {
335       unsigned SuccHeight = I->Dep->Height;
336       if (SuccHeight+1 > SUHeight) {
337           SUHeight = SuccHeight + 1;
338       }
339     }
340
341     // Update InDegrees of all nodes depending on current SUnit
342     for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
343          I != E; ++I) {
344       SUnit *SU = I->Dep;
345       if (!--InDegree[SU->NodeNum])
346         // If all dependencies of the node are processed already,
347         // then the longest path for the node can be computed now
348         WorkList.push_back(SU);
349     }
350   }
351 }
352
353 /// CountResults - The results of target nodes have register or immediate
354 /// operands first, then an optional chain, and optional flag operands (which do
355 /// not go into the resulting MachineInstr).
356 unsigned ScheduleDAG::CountResults(SDNode *Node) {
357   unsigned N = Node->getNumValues();
358   while (N && Node->getValueType(N - 1) == MVT::Flag)
359     --N;
360   if (N && Node->getValueType(N - 1) == MVT::Other)
361     --N;    // Skip over chain result.
362   return N;
363 }
364
365 /// CountOperands - The inputs to target nodes have any actual inputs first,
366 /// followed by special operands that describe memory references, then an
367 /// optional chain operand, then flag operands.  Compute the number of
368 /// actual operands that will go into the resulting MachineInstr.
369 unsigned ScheduleDAG::CountOperands(SDNode *Node) {
370   unsigned N = ComputeMemOperandsEnd(Node);
371   while (N && isa<MemOperandSDNode>(Node->getOperand(N - 1).Val))
372     --N; // Ignore MEMOPERAND nodes
373   return N;
374 }
375
376 /// ComputeMemOperandsEnd - Find the index one past the last MemOperandSDNode
377 /// operand
378 unsigned ScheduleDAG::ComputeMemOperandsEnd(SDNode *Node) {
379   unsigned N = Node->getNumOperands();
380   while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag)
381     --N;
382   if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
383     --N; // Ignore chain if it exists.
384   return N;
385 }
386
387 static const TargetRegisterClass *getInstrOperandRegClass(
388         const TargetRegisterInfo *TRI, 
389         const TargetInstrInfo *TII,
390         const TargetInstrDesc &II,
391         unsigned Op) {
392   if (Op >= II.getNumOperands()) {
393     assert(II.isVariadic() && "Invalid operand # of instruction");
394     return NULL;
395   }
396   if (II.OpInfo[Op].isLookupPtrRegClass())
397     return TII->getPointerRegClass();
398   return TRI->getRegClass(II.OpInfo[Op].RegClass);
399 }
400
401 void ScheduleDAG::EmitCopyFromReg(SDNode *Node, unsigned ResNo,
402                                   unsigned InstanceNo, unsigned SrcReg,
403                                   DenseMap<SDOperand, unsigned> &VRBaseMap) {
404   unsigned VRBase = 0;
405   if (TargetRegisterInfo::isVirtualRegister(SrcReg)) {
406     // Just use the input register directly!
407     if (InstanceNo > 0)
408       VRBaseMap.erase(SDOperand(Node, ResNo));
409     bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo),SrcReg));
410     assert(isNew && "Node emitted out of order - early");
411     return;
412   }
413
414   // If the node is only used by a CopyToReg and the dest reg is a vreg, use
415   // the CopyToReg'd destination register instead of creating a new vreg.
416   bool MatchReg = true;
417   for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
418        UI != E; ++UI) {
419     SDNode *Use = UI->getUser();
420     bool Match = true;
421     if (Use->getOpcode() == ISD::CopyToReg && 
422         Use->getOperand(2).Val == Node &&
423         Use->getOperand(2).ResNo == ResNo) {
424       unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
425       if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
426         VRBase = DestReg;
427         Match = false;
428       } else if (DestReg != SrcReg)
429         Match = false;
430     } else {
431       for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
432         SDOperand Op = Use->getOperand(i);
433         if (Op.Val != Node || Op.ResNo != ResNo)
434           continue;
435         MVT::ValueType VT = Node->getValueType(Op.ResNo);
436         if (VT != MVT::Other && VT != MVT::Flag)
437           Match = false;
438       }
439     }
440     MatchReg &= Match;
441     if (VRBase)
442       break;
443   }
444
445   const TargetRegisterClass *SrcRC = 0, *DstRC = 0;
446   SrcRC = TRI->getPhysicalRegisterRegClass(SrcReg, Node->getValueType(ResNo));
447   
448   // Figure out the register class to create for the destreg.
449   if (VRBase) {
450     DstRC = MRI.getRegClass(VRBase);
451   } else {
452     DstRC = TLI->getRegClassFor(Node->getValueType(ResNo));
453   }
454     
455   // If all uses are reading from the src physical register and copying the
456   // register is either impossible or very expensive, then don't create a copy.
457   if (MatchReg && SrcRC->getCopyCost() < 0) {
458     VRBase = SrcReg;
459   } else {
460     // Create the reg, emit the copy.
461     VRBase = MRI.createVirtualRegister(DstRC);
462     TII->copyRegToReg(*BB, BB->end(), VRBase, SrcReg, DstRC, SrcRC);
463   }
464
465   if (InstanceNo > 0)
466     VRBaseMap.erase(SDOperand(Node, ResNo));
467   bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,ResNo), VRBase));
468   assert(isNew && "Node emitted out of order - early");
469 }
470
471 /// getDstOfCopyToRegUse - If the only use of the specified result number of
472 /// node is a CopyToReg, return its destination register. Return 0 otherwise.
473 unsigned ScheduleDAG::getDstOfOnlyCopyToRegUse(SDNode *Node,
474                                                unsigned ResNo) const {
475   if (!Node->hasOneUse())
476     return 0;
477
478   SDNode *Use = Node->use_begin()->getUser();
479   if (Use->getOpcode() == ISD::CopyToReg && 
480       Use->getOperand(2).Val == Node &&
481       Use->getOperand(2).ResNo == ResNo) {
482     unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
483     if (TargetRegisterInfo::isVirtualRegister(Reg))
484       return Reg;
485   }
486   return 0;
487 }
488
489 void ScheduleDAG::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
490                                  const TargetInstrDesc &II,
491                                  DenseMap<SDOperand, unsigned> &VRBaseMap) {
492   assert(Node->getTargetOpcode() != TargetInstrInfo::IMPLICIT_DEF &&
493          "IMPLICIT_DEF should have been handled as a special case elsewhere!");
494
495   for (unsigned i = 0; i < II.getNumDefs(); ++i) {
496     // If the specific node value is only used by a CopyToReg and the dest reg
497     // is a vreg, use the CopyToReg'd destination register instead of creating
498     // a new vreg.
499     unsigned VRBase = 0;
500     for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
501          UI != E; ++UI) {
502       SDNode *Use = UI->getUser();
503       if (Use->getOpcode() == ISD::CopyToReg && 
504           Use->getOperand(2).Val == Node &&
505           Use->getOperand(2).ResNo == i) {
506         unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
507         if (TargetRegisterInfo::isVirtualRegister(Reg)) {
508           VRBase = Reg;
509           MI->addOperand(MachineOperand::CreateReg(Reg, true));
510           break;
511         }
512       }
513     }
514
515     // Create the result registers for this node and add the result regs to
516     // the machine instruction.
517     if (VRBase == 0) {
518       const TargetRegisterClass *RC = getInstrOperandRegClass(TRI, TII, II, i);
519       assert(RC && "Isn't a register operand!");
520       VRBase = MRI.createVirtualRegister(RC);
521       MI->addOperand(MachineOperand::CreateReg(VRBase, true));
522     }
523
524     bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,i), VRBase));
525     assert(isNew && "Node emitted out of order - early");
526   }
527 }
528
529 /// getVR - Return the virtual register corresponding to the specified result
530 /// of the specified node.
531 unsigned ScheduleDAG::getVR(SDOperand Op,
532                             DenseMap<SDOperand, unsigned> &VRBaseMap) {
533   if (Op.isTargetOpcode() &&
534       Op.getTargetOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
535     // Add an IMPLICIT_DEF instruction before every use.
536     unsigned VReg = getDstOfOnlyCopyToRegUse(Op.Val, Op.ResNo);
537     // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc
538     // does not include operand register class info.
539     if (!VReg) {
540       const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType());
541       VReg = MRI.createVirtualRegister(RC);
542     }
543     BuildMI(BB, TII->get(TargetInstrInfo::IMPLICIT_DEF), VReg);
544     return VReg;
545   }
546
547   DenseMap<SDOperand, unsigned>::iterator I = VRBaseMap.find(Op);
548   assert(I != VRBaseMap.end() && "Node emitted out of order - late");
549   return I->second;
550 }
551
552
553 /// AddOperand - Add the specified operand to the specified machine instr.  II
554 /// specifies the instruction information for the node, and IIOpNum is the
555 /// operand number (in the II) that we are adding. IIOpNum and II are used for 
556 /// assertions only.
557 void ScheduleDAG::AddOperand(MachineInstr *MI, SDOperand Op,
558                              unsigned IIOpNum,
559                              const TargetInstrDesc *II,
560                              DenseMap<SDOperand, unsigned> &VRBaseMap) {
561   if (Op.isTargetOpcode()) {
562     // Note that this case is redundant with the final else block, but we
563     // include it because it is the most common and it makes the logic
564     // simpler here.
565     assert(Op.getValueType() != MVT::Other &&
566            Op.getValueType() != MVT::Flag &&
567            "Chain and flag operands should occur at end of operand list!");
568     // Get/emit the operand.
569     unsigned VReg = getVR(Op, VRBaseMap);
570     const TargetInstrDesc &TID = MI->getDesc();
571     bool isOptDef = IIOpNum < TID.getNumOperands() &&
572       TID.OpInfo[IIOpNum].isOptionalDef();
573     MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef));
574     
575     // Verify that it is right.
576     assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
577 #ifndef NDEBUG
578     if (II) {
579       // There may be no register class for this operand if it is a variadic
580       // argument (RC will be NULL in this case).  In this case, we just assume
581       // the regclass is ok.
582       const TargetRegisterClass *RC =
583                           getInstrOperandRegClass(TRI, TII, *II, IIOpNum);
584       assert((RC || II->isVariadic()) && "Expected reg class info!");
585       const TargetRegisterClass *VRC = MRI.getRegClass(VReg);
586       if (RC && VRC != RC) {
587         cerr << "Register class of operand and regclass of use don't agree!\n";
588         cerr << "Operand = " << IIOpNum << "\n";
589         cerr << "Op->Val = "; Op.Val->dump(&DAG); cerr << "\n";
590         cerr << "MI = "; MI->print(cerr);
591         cerr << "VReg = " << VReg << "\n";
592         cerr << "VReg RegClass     size = " << VRC->getSize()
593              << ", align = " << VRC->getAlignment() << "\n";
594         cerr << "Expected RegClass size = " << RC->getSize()
595              << ", align = " << RC->getAlignment() << "\n";
596         cerr << "Fatal error, aborting.\n";
597         abort();
598       }
599     }
600 #endif
601   } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
602     MI->addOperand(MachineOperand::CreateImm(C->getValue()));
603   } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) {
604     ConstantFP *CFP = ConstantFP::get(F->getValueAPF());
605     MI->addOperand(MachineOperand::CreateFPImm(CFP));
606   } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) {
607     MI->addOperand(MachineOperand::CreateReg(R->getReg(), false));
608   } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) {
609     MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(),TGA->getOffset()));
610   } else if (BasicBlockSDNode *BB = dyn_cast<BasicBlockSDNode>(Op)) {
611     MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
612   } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) {
613     MI->addOperand(MachineOperand::CreateFI(FI->getIndex()));
614   } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) {
615     MI->addOperand(MachineOperand::CreateJTI(JT->getIndex()));
616   } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) {
617     int Offset = CP->getOffset();
618     unsigned Align = CP->getAlignment();
619     const Type *Type = CP->getType();
620     // MachineConstantPool wants an explicit alignment.
621     if (Align == 0) {
622       Align = TM.getTargetData()->getPreferredTypeAlignmentShift(Type);
623       if (Align == 0) {
624         // Alignment of vector types.  FIXME!
625         Align = TM.getTargetData()->getABITypeSize(Type);
626         Align = Log2_64(Align);
627       }
628     }
629     
630     unsigned Idx;
631     if (CP->isMachineConstantPoolEntry())
632       Idx = ConstPool->getConstantPoolIndex(CP->getMachineCPVal(), Align);
633     else
634       Idx = ConstPool->getConstantPoolIndex(CP->getConstVal(), Align);
635     MI->addOperand(MachineOperand::CreateCPI(Idx, Offset));
636   } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) {
637     MI->addOperand(MachineOperand::CreateES(ES->getSymbol()));
638   } else {
639     assert(Op.getValueType() != MVT::Other &&
640            Op.getValueType() != MVT::Flag &&
641            "Chain and flag operands should occur at end of operand list!");
642     unsigned VReg = getVR(Op, VRBaseMap);
643     MI->addOperand(MachineOperand::CreateReg(VReg, false));
644     
645     // Verify that it is right.  Note that the reg class of the physreg and the
646     // vreg don't necessarily need to match, but the target copy insertion has
647     // to be able to handle it.  This handles things like copies from ST(0) to
648     // an FP vreg on x86.
649     assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?");
650     if (II && !II->isVariadic()) {
651       assert(getInstrOperandRegClass(TRI, TII, *II, IIOpNum) &&
652              "Don't have operand info for this instruction!");
653     }
654   }
655   
656 }
657
658 void ScheduleDAG::AddMemOperand(MachineInstr *MI, const MachineMemOperand &MO) {
659   MI->addMemOperand(MO);
660 }
661
662 // Returns the Register Class of a subregister
663 static const TargetRegisterClass *getSubRegisterRegClass(
664         const TargetRegisterClass *TRC,
665         unsigned SubIdx) {
666   // Pick the register class of the subregister
667   TargetRegisterInfo::regclass_iterator I =
668     TRC->subregclasses_begin() + SubIdx-1;
669   assert(I < TRC->subregclasses_end() && 
670          "Invalid subregister index for register class");
671   return *I;
672 }
673
674 static const TargetRegisterClass *getSuperregRegisterClass(
675         const TargetRegisterClass *TRC,
676         unsigned SubIdx,
677         MVT::ValueType VT) {
678   // Pick the register class of the superegister for this type
679   for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(),
680          E = TRC->superregclasses_end(); I != E; ++I)
681     if ((*I)->hasType(VT) && getSubRegisterRegClass(*I, SubIdx) == TRC)
682       return *I;
683   assert(false && "Couldn't find the register class");
684   return 0;
685 }
686
687 /// EmitSubregNode - Generate machine code for subreg nodes.
688 ///
689 void ScheduleDAG::EmitSubregNode(SDNode *Node, 
690                            DenseMap<SDOperand, unsigned> &VRBaseMap) {
691   unsigned VRBase = 0;
692   unsigned Opc = Node->getTargetOpcode();
693   
694   // If the node is only used by a CopyToReg and the dest reg is a vreg, use
695   // the CopyToReg'd destination register instead of creating a new vreg.
696   for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end();
697        UI != E; ++UI) {
698     SDNode *Use = UI->getUser();
699     if (Use->getOpcode() == ISD::CopyToReg && 
700         Use->getOperand(2).Val == Node) {
701       unsigned DestReg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
702       if (TargetRegisterInfo::isVirtualRegister(DestReg)) {
703         VRBase = DestReg;
704         break;
705       }
706     }
707   }
708   
709   if (Opc == TargetInstrInfo::EXTRACT_SUBREG) {
710     unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getValue();
711
712     // Create the extract_subreg machine instruction.
713     MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::EXTRACT_SUBREG));
714
715     // Figure out the register class to create for the destreg.
716     unsigned VReg = getVR(Node->getOperand(0), VRBaseMap);
717     const TargetRegisterClass *TRC = MRI.getRegClass(VReg);
718     const TargetRegisterClass *SRC = getSubRegisterRegClass(TRC, SubIdx);
719
720     if (VRBase) {
721       // Grab the destination register
722       const TargetRegisterClass *DRC = MRI.getRegClass(VRBase);
723       assert(SRC && DRC && SRC == DRC && 
724              "Source subregister and destination must have the same class");
725     } else {
726       // Create the reg
727       assert(SRC && "Couldn't find source register class");
728       VRBase = MRI.createVirtualRegister(SRC);
729     }
730     
731     // Add def, source, and subreg index
732     MI->addOperand(MachineOperand::CreateReg(VRBase, true));
733     AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap);
734     MI->addOperand(MachineOperand::CreateImm(SubIdx));
735     BB->push_back(MI);    
736   } else if (Opc == TargetInstrInfo::INSERT_SUBREG ||
737              Opc == TargetInstrInfo::SUBREG_TO_REG) {
738     SDOperand N0 = Node->getOperand(0);
739     SDOperand N1 = Node->getOperand(1);
740     SDOperand N2 = Node->getOperand(2);
741     unsigned SubReg = getVR(N1, VRBaseMap);
742     unsigned SubIdx = cast<ConstantSDNode>(N2)->getValue();
743     
744       
745     // Figure out the register class to create for the destreg.
746     const TargetRegisterClass *TRC = 0;
747     if (VRBase) {
748       TRC = MRI.getRegClass(VRBase);
749     } else {
750       TRC = getSuperregRegisterClass(MRI.getRegClass(SubReg), SubIdx, 
751                                      Node->getValueType(0));
752       assert(TRC && "Couldn't determine register class for insert_subreg");
753       VRBase = MRI.createVirtualRegister(TRC); // Create the reg
754     }
755     
756     // Create the insert_subreg or subreg_to_reg machine instruction.
757     MachineInstr *MI = BuildMI(TII->get(Opc));
758     MI->addOperand(MachineOperand::CreateReg(VRBase, true));
759     
760     // If creating a subreg_to_reg, then the first input operand
761     // is an implicit value immediate, otherwise it's a register
762     if (Opc == TargetInstrInfo::SUBREG_TO_REG) {
763       const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
764       MI->addOperand(MachineOperand::CreateImm(SD->getValue()));
765     } else
766       AddOperand(MI, N0, 0, 0, VRBaseMap);
767     // Add the subregster being inserted
768     AddOperand(MI, N1, 0, 0, VRBaseMap);
769     MI->addOperand(MachineOperand::CreateImm(SubIdx));
770     BB->push_back(MI);
771   } else
772     assert(0 && "Node is not insert_subreg, extract_subreg, or subreg_to_reg");
773      
774   bool isNew = VRBaseMap.insert(std::make_pair(SDOperand(Node,0), VRBase));
775   assert(isNew && "Node emitted out of order - early");
776 }
777
778 /// EmitNode - Generate machine code for an node and needed dependencies.
779 ///
780 void ScheduleDAG::EmitNode(SDNode *Node, unsigned InstanceNo,
781                            DenseMap<SDOperand, unsigned> &VRBaseMap) {
782   // If machine instruction
783   if (Node->isTargetOpcode()) {
784     unsigned Opc = Node->getTargetOpcode();
785     
786     // Handle subreg insert/extract specially
787     if (Opc == TargetInstrInfo::EXTRACT_SUBREG || 
788         Opc == TargetInstrInfo::INSERT_SUBREG ||
789         Opc == TargetInstrInfo::SUBREG_TO_REG) {
790       EmitSubregNode(Node, VRBaseMap);
791       return;
792     }
793
794     if (Opc == TargetInstrInfo::IMPLICIT_DEF)
795       // We want a unique VR for each IMPLICIT_DEF use.
796       return;
797     
798     const TargetInstrDesc &II = TII->get(Opc);
799     unsigned NumResults = CountResults(Node);
800     unsigned NodeOperands = CountOperands(Node);
801     unsigned MemOperandsEnd = ComputeMemOperandsEnd(Node);
802     unsigned NumMIOperands = NodeOperands + NumResults;
803     bool HasPhysRegOuts = (NumResults > II.getNumDefs()) &&
804                           II.getImplicitDefs() != 0;
805 #ifndef NDEBUG
806     assert((II.getNumOperands() == NumMIOperands ||
807             HasPhysRegOuts || II.isVariadic()) &&
808            "#operands for dag node doesn't match .td file!"); 
809 #endif
810
811     // Create the new machine instruction.
812     MachineInstr *MI = BuildMI(II);
813     
814     // Add result register values for things that are defined by this
815     // instruction.
816     if (NumResults)
817       CreateVirtualRegisters(Node, MI, II, VRBaseMap);
818     
819     // Emit all of the actual operands of this instruction, adding them to the
820     // instruction as appropriate.
821     for (unsigned i = 0; i != NodeOperands; ++i)
822       AddOperand(MI, Node->getOperand(i), i+II.getNumDefs(), &II, VRBaseMap);
823
824     // Emit all of the memory operands of this instruction
825     for (unsigned i = NodeOperands; i != MemOperandsEnd; ++i)
826       AddMemOperand(MI, cast<MemOperandSDNode>(Node->getOperand(i))->MO);
827
828     // Commute node if it has been determined to be profitable.
829     if (CommuteSet.count(Node)) {
830       MachineInstr *NewMI = TII->commuteInstruction(MI);
831       if (NewMI == 0)
832         DOUT << "Sched: COMMUTING FAILED!\n";
833       else {
834         DOUT << "Sched: COMMUTED TO: " << *NewMI;
835         if (MI != NewMI) {
836           delete MI;
837           MI = NewMI;
838         }
839         ++NumCommutes;
840       }
841     }
842
843     if (II.usesCustomDAGSchedInsertionHook())
844       // Insert this instruction into the basic block using a target
845       // specific inserter which may returns a new basic block.
846       BB = TLI->EmitInstrWithCustomInserter(MI, BB);
847     else
848       BB->push_back(MI);
849
850     // Additional results must be an physical register def.
851     if (HasPhysRegOuts) {
852       for (unsigned i = II.getNumDefs(); i < NumResults; ++i) {
853         unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()];
854         if (Node->hasAnyUseOfValue(i))
855           EmitCopyFromReg(Node, i, InstanceNo, Reg, VRBaseMap);
856       }
857     }
858   } else {
859     switch (Node->getOpcode()) {
860     default:
861 #ifndef NDEBUG
862       Node->dump(&DAG);
863 #endif
864       assert(0 && "This target-independent node should have been selected!");
865       break;
866     case ISD::EntryToken:
867       assert(0 && "EntryToken should have been excluded from the schedule!");
868       break;
869     case ISD::TokenFactor: // fall thru
870     case ISD::LABEL:
871     case ISD::DECLARE:
872     case ISD::SRCVALUE:
873       break;
874     case ISD::CopyToReg: {
875       unsigned SrcReg;
876       SDOperand SrcVal = Node->getOperand(2);
877       if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
878         SrcReg = R->getReg();
879       else
880         SrcReg = getVR(SrcVal, VRBaseMap);
881       
882       unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
883       if (SrcReg == DestReg) // Coalesced away the copy? Ignore.
884         break;
885       
886       const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0;
887       // Get the register classes of the src/dst.
888       if (TargetRegisterInfo::isVirtualRegister(SrcReg))
889         SrcTRC = MRI.getRegClass(SrcReg);
890       else
891         SrcTRC = TRI->getPhysicalRegisterRegClass(SrcReg,SrcVal.getValueType());
892
893       if (TargetRegisterInfo::isVirtualRegister(DestReg))
894         DstTRC = MRI.getRegClass(DestReg);
895       else
896         DstTRC = TRI->getPhysicalRegisterRegClass(DestReg,
897                                             Node->getOperand(1).getValueType());
898       TII->copyRegToReg(*BB, BB->end(), DestReg, SrcReg, DstTRC, SrcTRC);
899       break;
900     }
901     case ISD::CopyFromReg: {
902       unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
903       EmitCopyFromReg(Node, 0, InstanceNo, SrcReg, VRBaseMap);
904       break;
905     }
906     case ISD::INLINEASM: {
907       unsigned NumOps = Node->getNumOperands();
908       if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag)
909         --NumOps;  // Ignore the flag operand.
910       
911       // Create the inline asm machine instruction.
912       MachineInstr *MI = BuildMI(TII->get(TargetInstrInfo::INLINEASM));
913
914       // Add the asm string as an external symbol operand.
915       const char *AsmStr =
916         cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol();
917       MI->addOperand(MachineOperand::CreateES(AsmStr));
918       
919       // Add all of the operand registers to the instruction.
920       for (unsigned i = 2; i != NumOps;) {
921         unsigned Flags = cast<ConstantSDNode>(Node->getOperand(i))->getValue();
922         unsigned NumVals = Flags >> 3;
923         
924         MI->addOperand(MachineOperand::CreateImm(Flags));
925         ++i;  // Skip the ID value.
926         
927         switch (Flags & 7) {
928         default: assert(0 && "Bad flags!");
929         case 1:  // Use of register.
930           for (; NumVals; --NumVals, ++i) {
931             unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
932             MI->addOperand(MachineOperand::CreateReg(Reg, false));
933           }
934           break;
935         case 2:   // Def of register.
936           for (; NumVals; --NumVals, ++i) {
937             unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
938             MI->addOperand(MachineOperand::CreateReg(Reg, true));
939           }
940           break;
941         case 3: { // Immediate.
942           for (; NumVals; --NumVals, ++i) {
943             if (ConstantSDNode *CS =
944                    dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
945               MI->addOperand(MachineOperand::CreateImm(CS->getValue()));
946             } else if (GlobalAddressSDNode *GA = 
947                   dyn_cast<GlobalAddressSDNode>(Node->getOperand(i))) {
948               MI->addOperand(MachineOperand::CreateGA(GA->getGlobal(),
949                                                       GA->getOffset()));
950             } else {
951               BasicBlockSDNode *BB =cast<BasicBlockSDNode>(Node->getOperand(i));
952               MI->addOperand(MachineOperand::CreateMBB(BB->getBasicBlock()));
953             }
954           }
955           break;
956         }
957         case 4:  // Addressing mode.
958           // The addressing mode has been selected, just add all of the
959           // operands to the machine instruction.
960           for (; NumVals; --NumVals, ++i)
961             AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap);
962           break;
963         }
964       }
965       BB->push_back(MI);
966       break;
967     }
968     }
969   }
970 }
971
972 void ScheduleDAG::EmitNoop() {
973   TII->insertNoop(*BB, BB->end());
974 }
975
976 void ScheduleDAG::EmitCrossRCCopy(SUnit *SU,
977                                   DenseMap<SUnit*, unsigned> &VRBaseMap) {
978   for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
979        I != E; ++I) {
980     if (I->isCtrl) continue;  // ignore chain preds
981     if (!I->Dep->Node) {
982       // Copy to physical register.
983       DenseMap<SUnit*, unsigned>::iterator VRI = VRBaseMap.find(I->Dep);
984       assert(VRI != VRBaseMap.end() && "Node emitted out of order - late");
985       // Find the destination physical register.
986       unsigned Reg = 0;
987       for (SUnit::const_succ_iterator II = SU->Succs.begin(),
988              EE = SU->Succs.end(); II != EE; ++II) {
989         if (I->Reg) {
990           Reg = I->Reg;
991           break;
992         }
993       }
994       assert(I->Reg && "Unknown physical register!");
995       TII->copyRegToReg(*BB, BB->end(), Reg, VRI->second,
996                         SU->CopyDstRC, SU->CopySrcRC);
997     } else {
998       // Copy from physical register.
999       assert(I->Reg && "Unknown physical register!");
1000       unsigned VRBase = MRI.createVirtualRegister(SU->CopyDstRC);
1001       bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase));
1002       assert(isNew && "Node emitted out of order - early");
1003       TII->copyRegToReg(*BB, BB->end(), VRBase, I->Reg,
1004                         SU->CopyDstRC, SU->CopySrcRC);
1005     }
1006     break;
1007   }
1008 }
1009
1010 /// EmitLiveInCopy - Emit a copy for a live in physical register. If the
1011 /// physical register has only a single copy use, then coalesced the copy
1012 /// if possible.
1013 void ScheduleDAG::EmitLiveInCopy(MachineBasicBlock *MBB,
1014                                  MachineBasicBlock::iterator &InsertPos,
1015                                  unsigned VirtReg, unsigned PhysReg,
1016                                  const TargetRegisterClass *RC,
1017                                  DenseMap<MachineInstr*, unsigned> &CopyRegMap){
1018   unsigned NumUses = 0;
1019   MachineInstr *UseMI = NULL;
1020   for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(VirtReg),
1021          UE = MRI.use_end(); UI != UE; ++UI) {
1022     UseMI = &*UI;
1023     if (++NumUses > 1)
1024       break;
1025   }
1026
1027   // If the number of uses is not one, or the use is not a move instruction,
1028   // don't coalesce. Also, only coalesce away a virtual register to virtual
1029   // register copy.
1030   bool Coalesced = false;
1031   unsigned SrcReg, DstReg;
1032   if (NumUses == 1 &&
1033       TII->isMoveInstr(*UseMI, SrcReg, DstReg) &&
1034       TargetRegisterInfo::isVirtualRegister(DstReg)) {
1035     VirtReg = DstReg;
1036     Coalesced = true;
1037   }
1038
1039   // Now find an ideal location to insert the copy.
1040   MachineBasicBlock::iterator Pos = InsertPos;
1041   while (Pos != MBB->begin()) {
1042     MachineInstr *PrevMI = prior(Pos);
1043     DenseMap<MachineInstr*, unsigned>::iterator RI = CopyRegMap.find(PrevMI);
1044     // copyRegToReg might emit multiple instructions to do a copy.
1045     unsigned CopyDstReg = (RI == CopyRegMap.end()) ? 0 : RI->second;
1046     if (CopyDstReg && !TRI->regsOverlap(CopyDstReg, PhysReg))
1047       // This is what the BB looks like right now:
1048       // r1024 = mov r0
1049       // ...
1050       // r1    = mov r1024
1051       //
1052       // We want to insert "r1025 = mov r1". Inserting this copy below the
1053       // move to r1024 makes it impossible for that move to be coalesced.
1054       //
1055       // r1025 = mov r1
1056       // r1024 = mov r0
1057       // ...
1058       // r1    = mov 1024
1059       // r2    = mov 1025
1060       break; // Woot! Found a good location.
1061     --Pos;
1062   }
1063
1064   TII->copyRegToReg(*MBB, Pos, VirtReg, PhysReg, RC, RC);
1065   CopyRegMap.insert(std::make_pair(prior(Pos), VirtReg));
1066   if (Coalesced) {
1067     if (&*InsertPos == UseMI) ++InsertPos;
1068     MBB->erase(UseMI);
1069   }
1070 }
1071
1072 /// EmitLiveInCopies - If this is the first basic block in the function,
1073 /// and if it has live ins that need to be copied into vregs, emit the
1074 /// copies into the top of the block.
1075 void ScheduleDAG::EmitLiveInCopies(MachineBasicBlock *MBB) {
1076   DenseMap<MachineInstr*, unsigned> CopyRegMap;
1077   MachineBasicBlock::iterator InsertPos = MBB->begin();
1078   for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1079          E = MRI.livein_end(); LI != E; ++LI)
1080     if (LI->second) {
1081       const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
1082       EmitLiveInCopy(MBB, InsertPos, LI->second, LI->first, RC, CopyRegMap);
1083     }
1084 }
1085
1086 /// EmitSchedule - Emit the machine code in scheduled order.
1087 void ScheduleDAG::EmitSchedule() {
1088   bool isEntryBB = &MF->front() == BB;
1089
1090   if (isEntryBB && !SchedLiveInCopies) {
1091     // If this is the first basic block in the function, and if it has live ins
1092     // that need to be copied into vregs, emit the copies into the top of the
1093     // block before emitting the code for the block.
1094     for (MachineRegisterInfo::livein_iterator LI = MRI.livein_begin(),
1095            E = MRI.livein_end(); LI != E; ++LI)
1096       if (LI->second) {
1097         const TargetRegisterClass *RC = MRI.getRegClass(LI->second);
1098         TII->copyRegToReg(*MF->begin(), MF->begin()->end(), LI->second,
1099                           LI->first, RC, RC);
1100       }
1101   }
1102
1103   // Finally, emit the code for all of the scheduled instructions.
1104   DenseMap<SDOperand, unsigned> VRBaseMap;
1105   DenseMap<SUnit*, unsigned> CopyVRBaseMap;
1106   for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
1107     SUnit *SU = Sequence[i];
1108     if (!SU) {
1109       // Null SUnit* is a noop.
1110       EmitNoop();
1111       continue;
1112     }
1113     for (unsigned j = 0, ee = SU->FlaggedNodes.size(); j != ee; ++j)
1114       EmitNode(SU->FlaggedNodes[j], SU->InstanceNo, VRBaseMap);
1115     if (!SU->Node)
1116       EmitCrossRCCopy(SU, CopyVRBaseMap);
1117     else
1118       EmitNode(SU->Node, SU->InstanceNo, VRBaseMap);
1119   }
1120
1121   if (isEntryBB && SchedLiveInCopies)
1122     EmitLiveInCopies(MF->begin());
1123 }
1124
1125 /// dump - dump the schedule.
1126 void ScheduleDAG::dumpSchedule() const {
1127   for (unsigned i = 0, e = Sequence.size(); i != e; i++) {
1128     if (SUnit *SU = Sequence[i])
1129       SU->dump(&DAG);
1130     else
1131       cerr << "**** NOOP ****\n";
1132   }
1133 }
1134
1135
1136 /// Run - perform scheduling.
1137 ///
1138 MachineBasicBlock *ScheduleDAG::Run() {
1139   Schedule();
1140   return BB;
1141 }
1142
1143 /// SUnit - Scheduling unit. It's an wrapper around either a single SDNode or
1144 /// a group of nodes flagged together.
1145 void SUnit::dump(const SelectionDAG *G) const {
1146   cerr << "SU(" << NodeNum << "): ";
1147   if (Node)
1148     Node->dump(G);
1149   else
1150     cerr << "CROSS RC COPY ";
1151   cerr << "\n";
1152   if (FlaggedNodes.size() != 0) {
1153     for (unsigned i = 0, e = FlaggedNodes.size(); i != e; i++) {
1154       cerr << "    ";
1155       FlaggedNodes[i]->dump(G);
1156       cerr << "\n";
1157     }
1158   }
1159 }
1160
1161 void SUnit::dumpAll(const SelectionDAG *G) const {
1162   dump(G);
1163
1164   cerr << "  # preds left       : " << NumPredsLeft << "\n";
1165   cerr << "  # succs left       : " << NumSuccsLeft << "\n";
1166   cerr << "  Latency            : " << Latency << "\n";
1167   cerr << "  Depth              : " << Depth << "\n";
1168   cerr << "  Height             : " << Height << "\n";
1169
1170   if (Preds.size() != 0) {
1171     cerr << "  Predecessors:\n";
1172     for (SUnit::const_succ_iterator I = Preds.begin(), E = Preds.end();
1173          I != E; ++I) {
1174       if (I->isCtrl)
1175         cerr << "   ch  #";
1176       else
1177         cerr << "   val #";
1178       cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1179       if (I->isSpecial)
1180         cerr << " *";
1181       cerr << "\n";
1182     }
1183   }
1184   if (Succs.size() != 0) {
1185     cerr << "  Successors:\n";
1186     for (SUnit::const_succ_iterator I = Succs.begin(), E = Succs.end();
1187          I != E; ++I) {
1188       if (I->isCtrl)
1189         cerr << "   ch  #";
1190       else
1191         cerr << "   val #";
1192       cerr << I->Dep << " - SU(" << I->Dep->NodeNum << ")";
1193       if (I->isSpecial)
1194         cerr << " *";
1195       cerr << "\n";
1196     }
1197   }
1198   cerr << "\n";
1199 }