4f67dd4a2275552961709548aa4bafe9edd3ab41
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SelectionDAGISel.cpp
1 //===-- SelectionDAGISel.cpp - Implement the SelectionDAGISel 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 the SelectionDAGISel class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "isel"
15 #include "llvm/ADT/BitVector.h"
16 #include "llvm/Analysis/AliasAnalysis.h"
17 #include "llvm/CodeGen/SelectionDAGISel.h"
18 #include "llvm/CodeGen/ScheduleDAG.h"
19 #include "llvm/Constants.h"
20 #include "llvm/CallingConv.h"
21 #include "llvm/DerivedTypes.h"
22 #include "llvm/Function.h"
23 #include "llvm/GlobalVariable.h"
24 #include "llvm/InlineAsm.h"
25 #include "llvm/Instructions.h"
26 #include "llvm/Intrinsics.h"
27 #include "llvm/IntrinsicInst.h"
28 #include "llvm/ParameterAttributes.h"
29 #include "llvm/CodeGen/Collector.h"
30 #include "llvm/CodeGen/MachineDebugInfoDesc.h"
31 #include "llvm/CodeGen/MachineFunction.h"
32 #include "llvm/CodeGen/MachineFrameInfo.h"
33 #include "llvm/CodeGen/MachineInstrBuilder.h"
34 #include "llvm/CodeGen/MachineJumpTableInfo.h"
35 #include "llvm/CodeGen/MachineModuleInfo.h"
36 #include "llvm/CodeGen/MachineRegisterInfo.h"
37 #include "llvm/CodeGen/SchedulerRegistry.h"
38 #include "llvm/CodeGen/SelectionDAG.h"
39 #include "llvm/Target/TargetRegisterInfo.h"
40 #include "llvm/Target/TargetData.h"
41 #include "llvm/Target/TargetFrameInfo.h"
42 #include "llvm/Target/TargetInstrInfo.h"
43 #include "llvm/Target/TargetLowering.h"
44 #include "llvm/Target/TargetMachine.h"
45 #include "llvm/Target/TargetOptions.h"
46 #include "llvm/Support/Compiler.h"
47 #include "llvm/Support/Debug.h"
48 #include "llvm/Support/MathExtras.h"
49 #include "llvm/Support/Timer.h"
50 #include <algorithm>
51 using namespace llvm;
52
53 static cl::opt<bool>
54 EnableValueProp("enable-value-prop", cl::Hidden, cl::init(false));
55
56
57 #ifndef NDEBUG
58 static cl::opt<bool>
59 ViewISelDAGs("view-isel-dags", cl::Hidden,
60           cl::desc("Pop up a window to show isel dags as they are selected"));
61 static cl::opt<bool>
62 ViewSchedDAGs("view-sched-dags", cl::Hidden,
63           cl::desc("Pop up a window to show sched dags as they are processed"));
64 static cl::opt<bool>
65 ViewSUnitDAGs("view-sunit-dags", cl::Hidden,
66       cl::desc("Pop up a window to show SUnit dags after they are processed"));
67 #else
68 static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0, ViewSUnitDAGs = 0;
69 #endif
70
71 //===---------------------------------------------------------------------===//
72 ///
73 /// RegisterScheduler class - Track the registration of instruction schedulers.
74 ///
75 //===---------------------------------------------------------------------===//
76 MachinePassRegistry RegisterScheduler::Registry;
77
78 //===---------------------------------------------------------------------===//
79 ///
80 /// ISHeuristic command line option for instruction schedulers.
81 ///
82 //===---------------------------------------------------------------------===//
83 static cl::opt<RegisterScheduler::FunctionPassCtor, false,
84                RegisterPassParser<RegisterScheduler> >
85 ISHeuristic("pre-RA-sched",
86             cl::init(&createDefaultScheduler),
87             cl::desc("Instruction schedulers available (before register"
88                      " allocation):"));
89
90 static RegisterScheduler
91 defaultListDAGScheduler("default", "  Best scheduler for the target",
92                         createDefaultScheduler);
93
94 namespace { struct SDISelAsmOperandInfo; }
95
96 /// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
97 /// insertvalue or extractvalue indices that identify a member, return
98 /// the linearized index of the start of the member.
99 ///
100 static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
101                                    const unsigned *Indices,
102                                    const unsigned *IndicesEnd,
103                                    unsigned CurIndex = 0) {
104   // Base case: We're done.
105   if (Indices && Indices == IndicesEnd)
106     return CurIndex;
107
108   // Given a struct type, recursively traverse the elements.
109   if (const StructType *STy = dyn_cast<StructType>(Ty)) {
110     for (StructType::element_iterator EB = STy->element_begin(),
111                                       EI = EB,
112                                       EE = STy->element_end();
113         EI != EE; ++EI) {
114       if (Indices && *Indices == unsigned(EI - EB))
115         return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
116       CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
117     }
118   }
119   // Given an array type, recursively traverse the elements.
120   else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
121     const Type *EltTy = ATy->getElementType();
122     for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
123       if (Indices && *Indices == i)
124         return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
125       CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
126     }
127   }
128   // We haven't found the type we're looking for, so keep searching.
129   return CurIndex + 1;
130 }
131
132 /// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
133 /// MVTs that represent all the individual underlying
134 /// non-aggregate types that comprise it.
135 ///
136 /// If Offsets is non-null, it points to a vector to be filled in
137 /// with the in-memory offsets of each of the individual values.
138 ///
139 static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
140                             SmallVectorImpl<MVT> &ValueVTs,
141                             SmallVectorImpl<uint64_t> *Offsets = 0,
142                             uint64_t StartingOffset = 0) {
143   // Given a struct type, recursively traverse the elements.
144   if (const StructType *STy = dyn_cast<StructType>(Ty)) {
145     const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
146     for (StructType::element_iterator EB = STy->element_begin(),
147                                       EI = EB,
148                                       EE = STy->element_end();
149          EI != EE; ++EI)
150       ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
151                       StartingOffset + SL->getElementOffset(EI - EB));
152     return;
153   }
154   // Given an array type, recursively traverse the elements.
155   if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
156     const Type *EltTy = ATy->getElementType();
157     uint64_t EltSize = TLI.getTargetData()->getABITypeSize(EltTy);
158     for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
159       ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
160                       StartingOffset + i * EltSize);
161     return;
162   }
163   // Base case: we can get an MVT for this LLVM IR type.
164   ValueVTs.push_back(TLI.getValueType(Ty));
165   if (Offsets)
166     Offsets->push_back(StartingOffset);
167 }
168
169 namespace {
170   /// RegsForValue - This struct represents the registers (physical or virtual)
171   /// that a particular set of values is assigned, and the type information about
172   /// the value. The most common situation is to represent one value at a time,
173   /// but struct or array values are handled element-wise as multiple values.
174   /// The splitting of aggregates is performed recursively, so that we never
175   /// have aggregate-typed registers. The values at this point do not necessarily
176   /// have legal types, so each value may require one or more registers of some
177   /// legal type.
178   /// 
179   struct VISIBILITY_HIDDEN RegsForValue {
180     /// TLI - The TargetLowering object.
181     ///
182     const TargetLowering *TLI;
183
184     /// ValueVTs - The value types of the values, which may not be legal, and
185     /// may need be promoted or synthesized from one or more registers.
186     ///
187     SmallVector<MVT, 4> ValueVTs;
188     
189     /// RegVTs - The value types of the registers. This is the same size as
190     /// ValueVTs and it records, for each value, what the type of the assigned
191     /// register or registers are. (Individual values are never synthesized
192     /// from more than one type of register.)
193     ///
194     /// With virtual registers, the contents of RegVTs is redundant with TLI's
195     /// getRegisterType member function, however when with physical registers
196     /// it is necessary to have a separate record of the types.
197     ///
198     SmallVector<MVT, 4> RegVTs;
199     
200     /// Regs - This list holds the registers assigned to the values.
201     /// Each legal or promoted value requires one register, and each
202     /// expanded value requires multiple registers.
203     ///
204     SmallVector<unsigned, 4> Regs;
205     
206     RegsForValue() : TLI(0) {}
207     
208     RegsForValue(const TargetLowering &tli,
209                  const SmallVector<unsigned, 4> &regs, 
210                  MVT regvt, MVT valuevt)
211       : TLI(&tli),  ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
212     RegsForValue(const TargetLowering &tli,
213                  const SmallVector<unsigned, 4> &regs, 
214                  const SmallVector<MVT, 4> &regvts,
215                  const SmallVector<MVT, 4> &valuevts)
216       : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
217     RegsForValue(const TargetLowering &tli,
218                  unsigned Reg, const Type *Ty) : TLI(&tli) {
219       ComputeValueVTs(tli, Ty, ValueVTs);
220
221       for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
222         MVT ValueVT = ValueVTs[Value];
223         unsigned NumRegs = TLI->getNumRegisters(ValueVT);
224         MVT RegisterVT = TLI->getRegisterType(ValueVT);
225         for (unsigned i = 0; i != NumRegs; ++i)
226           Regs.push_back(Reg + i);
227         RegVTs.push_back(RegisterVT);
228         Reg += NumRegs;
229       }
230     }
231     
232     /// append - Add the specified values to this one.
233     void append(const RegsForValue &RHS) {
234       TLI = RHS.TLI;
235       ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
236       RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
237       Regs.append(RHS.Regs.begin(), RHS.Regs.end());
238     }
239     
240     
241     /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
242     /// this value and returns the result as a ValueVTs value.  This uses 
243     /// Chain/Flag as the input and updates them for the output Chain/Flag.
244     /// If the Flag pointer is NULL, no flag is used.
245     SDOperand getCopyFromRegs(SelectionDAG &DAG,
246                               SDOperand &Chain, SDOperand *Flag) const;
247
248     /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
249     /// specified value into the registers specified by this object.  This uses 
250     /// Chain/Flag as the input and updates them for the output Chain/Flag.
251     /// If the Flag pointer is NULL, no flag is used.
252     void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
253                        SDOperand &Chain, SDOperand *Flag) const;
254     
255     /// AddInlineAsmOperands - Add this value to the specified inlineasm node
256     /// operand list.  This adds the code marker and includes the number of 
257     /// values added into it.
258     void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
259                               std::vector<SDOperand> &Ops) const;
260   };
261 }
262
263 namespace llvm {
264   //===--------------------------------------------------------------------===//
265   /// createDefaultScheduler - This creates an instruction scheduler appropriate
266   /// for the target.
267   ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
268                                       SelectionDAG *DAG,
269                                       MachineBasicBlock *BB,
270                                       bool Fast) {
271     TargetLowering &TLI = IS->getTargetLowering();
272     
273     if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
274       return createTDListDAGScheduler(IS, DAG, BB, Fast);
275     } else {
276       assert(TLI.getSchedulingPreference() ==
277            TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
278       return createBURRListDAGScheduler(IS, DAG, BB, Fast);
279     }
280   }
281
282
283   //===--------------------------------------------------------------------===//
284   /// FunctionLoweringInfo - This contains information that is global to a
285   /// function that is used when lowering a region of the function.
286   class FunctionLoweringInfo {
287   public:
288     TargetLowering &TLI;
289     Function &Fn;
290     MachineFunction &MF;
291     MachineRegisterInfo &RegInfo;
292
293     FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
294
295     /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
296     std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
297
298     /// ValueMap - Since we emit code for the function a basic block at a time,
299     /// we must remember which virtual registers hold the values for
300     /// cross-basic-block values.
301     DenseMap<const Value*, unsigned> ValueMap;
302
303     /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
304     /// the entry block.  This allows the allocas to be efficiently referenced
305     /// anywhere in the function.
306     std::map<const AllocaInst*, int> StaticAllocaMap;
307
308 #ifndef NDEBUG
309     SmallSet<Instruction*, 8> CatchInfoLost;
310     SmallSet<Instruction*, 8> CatchInfoFound;
311 #endif
312
313     unsigned MakeReg(MVT VT) {
314       return RegInfo.createVirtualRegister(TLI.getRegClassFor(VT));
315     }
316     
317     /// isExportedInst - Return true if the specified value is an instruction
318     /// exported from its block.
319     bool isExportedInst(const Value *V) {
320       return ValueMap.count(V);
321     }
322
323     unsigned CreateRegForValue(const Value *V);
324     
325     unsigned InitializeRegForValue(const Value *V) {
326       unsigned &R = ValueMap[V];
327       assert(R == 0 && "Already initialized this value register!");
328       return R = CreateRegForValue(V);
329     }
330     
331     struct LiveOutInfo {
332       unsigned NumSignBits;
333       APInt KnownOne, KnownZero;
334       LiveOutInfo() : NumSignBits(0) {}
335     };
336     
337     /// LiveOutRegInfo - Information about live out vregs, indexed by their
338     /// register number offset by 'FirstVirtualRegister'.
339     std::vector<LiveOutInfo> LiveOutRegInfo;
340   };
341 }
342
343 /// isSelector - Return true if this instruction is a call to the
344 /// eh.selector intrinsic.
345 static bool isSelector(Instruction *I) {
346   if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
347     return (II->getIntrinsicID() == Intrinsic::eh_selector_i32 ||
348             II->getIntrinsicID() == Intrinsic::eh_selector_i64);
349   return false;
350 }
351
352 /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
353 /// PHI nodes or outside of the basic block that defines it, or used by a 
354 /// switch or atomic instruction, which may expand to multiple basic blocks.
355 static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
356   if (isa<PHINode>(I)) return true;
357   BasicBlock *BB = I->getParent();
358   for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
359     if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
360         // FIXME: Remove switchinst special case.
361         isa<SwitchInst>(*UI))
362       return true;
363   return false;
364 }
365
366 /// isOnlyUsedInEntryBlock - If the specified argument is only used in the
367 /// entry block, return true.  This includes arguments used by switches, since
368 /// the switch may expand into multiple basic blocks.
369 static bool isOnlyUsedInEntryBlock(Argument *A) {
370   BasicBlock *Entry = A->getParent()->begin();
371   for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
372     if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
373       return false;  // Use not in entry block.
374   return true;
375 }
376
377 FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
378                                            Function &fn, MachineFunction &mf)
379     : TLI(tli), Fn(fn), MF(mf), RegInfo(MF.getRegInfo()) {
380
381   // Create a vreg for each argument register that is not dead and is used
382   // outside of the entry block for the function.
383   for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
384        AI != E; ++AI)
385     if (!isOnlyUsedInEntryBlock(AI))
386       InitializeRegForValue(AI);
387
388   // Initialize the mapping of values to registers.  This is only set up for
389   // instruction values that are used outside of the block that defines
390   // them.
391   Function::iterator BB = Fn.begin(), EB = Fn.end();
392   for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
393     if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
394       if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
395         const Type *Ty = AI->getAllocatedType();
396         uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
397         unsigned Align = 
398           std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
399                    AI->getAlignment());
400
401         TySize *= CUI->getZExtValue();   // Get total allocated size.
402         if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
403         StaticAllocaMap[AI] =
404           MF.getFrameInfo()->CreateStackObject(TySize, Align);
405       }
406
407   for (; BB != EB; ++BB)
408     for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
409       if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
410         if (!isa<AllocaInst>(I) ||
411             !StaticAllocaMap.count(cast<AllocaInst>(I)))
412           InitializeRegForValue(I);
413
414   // Create an initial MachineBasicBlock for each LLVM BasicBlock in F.  This
415   // also creates the initial PHI MachineInstrs, though none of the input
416   // operands are populated.
417   for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
418     MachineBasicBlock *MBB = new MachineBasicBlock(BB);
419     MBBMap[BB] = MBB;
420     MF.getBasicBlockList().push_back(MBB);
421
422     // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
423     // appropriate.
424     PHINode *PN;
425     for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
426       if (PN->use_empty()) continue;
427       
428       MVT VT = TLI.getValueType(PN->getType());
429       unsigned NumRegisters = TLI.getNumRegisters(VT);
430       unsigned PHIReg = ValueMap[PN];
431       assert(PHIReg && "PHI node does not have an assigned virtual register!");
432       const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
433       for (unsigned i = 0; i != NumRegisters; ++i)
434         BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
435     }
436   }
437 }
438
439 /// CreateRegForValue - Allocate the appropriate number of virtual registers of
440 /// the correctly promoted or expanded types.  Assign these registers
441 /// consecutive vreg numbers and return the first assigned number.
442 ///
443 /// In the case that the given value has struct or array type, this function
444 /// will assign registers for each member or element.
445 ///
446 unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
447   SmallVector<MVT, 4> ValueVTs;
448   ComputeValueVTs(TLI, V->getType(), ValueVTs);
449
450   unsigned FirstReg = 0;
451   for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
452     MVT ValueVT = ValueVTs[Value];
453     MVT RegisterVT = TLI.getRegisterType(ValueVT);
454
455     unsigned NumRegs = TLI.getNumRegisters(ValueVT);
456     for (unsigned i = 0; i != NumRegs; ++i) {
457       unsigned R = MakeReg(RegisterVT);
458       if (!FirstReg) FirstReg = R;
459     }
460   }
461   return FirstReg;
462 }
463
464 //===----------------------------------------------------------------------===//
465 /// SelectionDAGLowering - This is the common target-independent lowering
466 /// implementation that is parameterized by a TargetLowering object.
467 /// Also, targets can overload any lowering method.
468 ///
469 namespace llvm {
470 class SelectionDAGLowering {
471   MachineBasicBlock *CurMBB;
472
473   DenseMap<const Value*, SDOperand> NodeMap;
474
475   /// PendingLoads - Loads are not emitted to the program immediately.  We bunch
476   /// them up and then emit token factor nodes when possible.  This allows us to
477   /// get simple disambiguation between loads without worrying about alias
478   /// analysis.
479   SmallVector<SDOperand, 8> PendingLoads;
480
481   /// PendingExports - CopyToReg nodes that copy values to virtual registers
482   /// for export to other blocks need to be emitted before any terminator
483   /// instruction, but they have no other ordering requirements. We bunch them
484   /// up and the emit a single tokenfactor for them just before terminator
485   /// instructions.
486   std::vector<SDOperand> PendingExports;
487
488   /// Case - A struct to record the Value for a switch case, and the
489   /// case's target basic block.
490   struct Case {
491     Constant* Low;
492     Constant* High;
493     MachineBasicBlock* BB;
494
495     Case() : Low(0), High(0), BB(0) { }
496     Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
497       Low(low), High(high), BB(bb) { }
498     uint64_t size() const {
499       uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
500       uint64_t rLow  = cast<ConstantInt>(Low)->getSExtValue();
501       return (rHigh - rLow + 1ULL);
502     }
503   };
504
505   struct CaseBits {
506     uint64_t Mask;
507     MachineBasicBlock* BB;
508     unsigned Bits;
509
510     CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
511       Mask(mask), BB(bb), Bits(bits) { }
512   };
513
514   typedef std::vector<Case>           CaseVector;
515   typedef std::vector<CaseBits>       CaseBitsVector;
516   typedef CaseVector::iterator        CaseItr;
517   typedef std::pair<CaseItr, CaseItr> CaseRange;
518
519   /// CaseRec - A struct with ctor used in lowering switches to a binary tree
520   /// of conditional branches.
521   struct CaseRec {
522     CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
523     CaseBB(bb), LT(lt), GE(ge), Range(r) {}
524
525     /// CaseBB - The MBB in which to emit the compare and branch
526     MachineBasicBlock *CaseBB;
527     /// LT, GE - If nonzero, we know the current case value must be less-than or
528     /// greater-than-or-equal-to these Constants.
529     Constant *LT;
530     Constant *GE;
531     /// Range - A pair of iterators representing the range of case values to be
532     /// processed at this point in the binary search tree.
533     CaseRange Range;
534   };
535
536   typedef std::vector<CaseRec> CaseRecVector;
537
538   /// The comparison function for sorting the switch case values in the vector.
539   /// WARNING: Case ranges should be disjoint!
540   struct CaseCmp {
541     bool operator () (const Case& C1, const Case& C2) {
542       assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
543       const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
544       const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
545       return CI1->getValue().slt(CI2->getValue());
546     }
547   };
548
549   struct CaseBitsCmp {
550     bool operator () (const CaseBits& C1, const CaseBits& C2) {
551       return C1.Bits > C2.Bits;
552     }
553   };
554
555   unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
556   
557 public:
558   // TLI - This is information that describes the available target features we
559   // need for lowering.  This indicates when operations are unavailable,
560   // implemented with a libcall, etc.
561   TargetLowering &TLI;
562   SelectionDAG &DAG;
563   const TargetData *TD;
564   AliasAnalysis &AA;
565
566   /// SwitchCases - Vector of CaseBlock structures used to communicate
567   /// SwitchInst code generation information.
568   std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
569   /// JTCases - Vector of JumpTable structures used to communicate
570   /// SwitchInst code generation information.
571   std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
572   std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
573   
574   /// FuncInfo - Information about the function as a whole.
575   ///
576   FunctionLoweringInfo &FuncInfo;
577   
578   /// GCI - Garbage collection metadata for the function.
579   CollectorMetadata *GCI;
580
581   SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
582                        AliasAnalysis &aa,
583                        FunctionLoweringInfo &funcinfo,
584                        CollectorMetadata *gci)
585     : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
586       FuncInfo(funcinfo), GCI(gci) {
587   }
588
589   /// getRoot - Return the current virtual root of the Selection DAG,
590   /// flushing any PendingLoad items. This must be done before emitting
591   /// a store or any other node that may need to be ordered after any
592   /// prior load instructions.
593   ///
594   SDOperand getRoot() {
595     if (PendingLoads.empty())
596       return DAG.getRoot();
597
598     if (PendingLoads.size() == 1) {
599       SDOperand Root = PendingLoads[0];
600       DAG.setRoot(Root);
601       PendingLoads.clear();
602       return Root;
603     }
604
605     // Otherwise, we have to make a token factor node.
606     SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
607                                  &PendingLoads[0], PendingLoads.size());
608     PendingLoads.clear();
609     DAG.setRoot(Root);
610     return Root;
611   }
612
613   /// getControlRoot - Similar to getRoot, but instead of flushing all the
614   /// PendingLoad items, flush all the PendingExports items. It is necessary
615   /// to do this before emitting a terminator instruction.
616   ///
617   SDOperand getControlRoot() {
618     SDOperand Root = DAG.getRoot();
619
620     if (PendingExports.empty())
621       return Root;
622
623     // Turn all of the CopyToReg chains into one factored node.
624     if (Root.getOpcode() != ISD::EntryToken) {
625       unsigned i = 0, e = PendingExports.size();
626       for (; i != e; ++i) {
627         assert(PendingExports[i].Val->getNumOperands() > 1);
628         if (PendingExports[i].Val->getOperand(0) == Root)
629           break;  // Don't add the root if we already indirectly depend on it.
630       }
631         
632       if (i == e)
633         PendingExports.push_back(Root);
634     }
635
636     Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
637                        &PendingExports[0],
638                        PendingExports.size());
639     PendingExports.clear();
640     DAG.setRoot(Root);
641     return Root;
642   }
643
644   void CopyValueToVirtualRegister(Value *V, unsigned Reg);
645
646   void visit(Instruction &I) { visit(I.getOpcode(), I); }
647
648   void visit(unsigned Opcode, User &I) {
649     // Note: this doesn't use InstVisitor, because it has to work with
650     // ConstantExpr's in addition to instructions.
651     switch (Opcode) {
652     default: assert(0 && "Unknown instruction type encountered!");
653              abort();
654       // Build the switch statement using the Instruction.def file.
655 #define HANDLE_INST(NUM, OPCODE, CLASS) \
656     case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
657 #include "llvm/Instruction.def"
658     }
659   }
660
661   void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
662
663   SDOperand getValue(const Value *V);
664
665   void setValue(const Value *V, SDOperand NewN) {
666     SDOperand &N = NodeMap[V];
667     assert(N.Val == 0 && "Already set a value for this node!");
668     N = NewN;
669   }
670   
671   void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
672                             std::set<unsigned> &OutputRegs, 
673                             std::set<unsigned> &InputRegs);
674
675   void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
676                             MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
677                             unsigned Opc);
678   bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
679   void ExportFromCurrentBlock(Value *V);
680   void LowerCallTo(CallSite CS, SDOperand Callee, bool IsTailCall,
681                    MachineBasicBlock *LandingPad = NULL);
682
683   // Terminator instructions.
684   void visitRet(ReturnInst &I);
685   void visitBr(BranchInst &I);
686   void visitSwitch(SwitchInst &I);
687   void visitUnreachable(UnreachableInst &I) { /* noop */ }
688
689   // Helpers for visitSwitch
690   bool handleSmallSwitchRange(CaseRec& CR,
691                               CaseRecVector& WorkList,
692                               Value* SV,
693                               MachineBasicBlock* Default);
694   bool handleJTSwitchCase(CaseRec& CR,
695                           CaseRecVector& WorkList,
696                           Value* SV,
697                           MachineBasicBlock* Default);
698   bool handleBTSplitSwitchCase(CaseRec& CR,
699                                CaseRecVector& WorkList,
700                                Value* SV,
701                                MachineBasicBlock* Default);
702   bool handleBitTestsSwitchCase(CaseRec& CR,
703                                 CaseRecVector& WorkList,
704                                 Value* SV,
705                                 MachineBasicBlock* Default);  
706   void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
707   void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
708   void visitBitTestCase(MachineBasicBlock* NextMBB,
709                         unsigned Reg,
710                         SelectionDAGISel::BitTestCase &B);
711   void visitJumpTable(SelectionDAGISel::JumpTable &JT);
712   void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
713                             SelectionDAGISel::JumpTableHeader &JTH);
714   
715   // These all get lowered before this pass.
716   void visitInvoke(InvokeInst &I);
717   void visitUnwind(UnwindInst &I);
718
719   void visitBinary(User &I, unsigned OpCode);
720   void visitShift(User &I, unsigned Opcode);
721   void visitAdd(User &I) { 
722     if (I.getType()->isFPOrFPVector())
723       visitBinary(I, ISD::FADD);
724     else
725       visitBinary(I, ISD::ADD);
726   }
727   void visitSub(User &I);
728   void visitMul(User &I) {
729     if (I.getType()->isFPOrFPVector())
730       visitBinary(I, ISD::FMUL);
731     else
732       visitBinary(I, ISD::MUL);
733   }
734   void visitURem(User &I) { visitBinary(I, ISD::UREM); }
735   void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
736   void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
737   void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
738   void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
739   void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
740   void visitAnd (User &I) { visitBinary(I, ISD::AND); }
741   void visitOr  (User &I) { visitBinary(I, ISD::OR); }
742   void visitXor (User &I) { visitBinary(I, ISD::XOR); }
743   void visitShl (User &I) { visitShift(I, ISD::SHL); }
744   void visitLShr(User &I) { visitShift(I, ISD::SRL); }
745   void visitAShr(User &I) { visitShift(I, ISD::SRA); }
746   void visitICmp(User &I);
747   void visitFCmp(User &I);
748   void visitVICmp(User &I);
749   void visitVFCmp(User &I);
750   // Visit the conversion instructions
751   void visitTrunc(User &I);
752   void visitZExt(User &I);
753   void visitSExt(User &I);
754   void visitFPTrunc(User &I);
755   void visitFPExt(User &I);
756   void visitFPToUI(User &I);
757   void visitFPToSI(User &I);
758   void visitUIToFP(User &I);
759   void visitSIToFP(User &I);
760   void visitPtrToInt(User &I);
761   void visitIntToPtr(User &I);
762   void visitBitCast(User &I);
763
764   void visitExtractElement(User &I);
765   void visitInsertElement(User &I);
766   void visitShuffleVector(User &I);
767
768   void visitExtractValue(ExtractValueInst &I);
769   void visitInsertValue(InsertValueInst &I);
770
771   void visitGetElementPtr(User &I);
772   void visitSelect(User &I);
773
774   void visitMalloc(MallocInst &I);
775   void visitFree(FreeInst &I);
776   void visitAlloca(AllocaInst &I);
777   void visitLoad(LoadInst &I);
778   void visitStore(StoreInst &I);
779   void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
780   void visitCall(CallInst &I);
781   void visitInlineAsm(CallSite CS);
782   const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
783   void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
784
785   void visitVAStart(CallInst &I);
786   void visitVAArg(VAArgInst &I);
787   void visitVAEnd(CallInst &I);
788   void visitVACopy(CallInst &I);
789
790   void visitGetResult(GetResultInst &I);
791
792   void visitUserOp1(Instruction &I) {
793     assert(0 && "UserOp1 should not exist at instruction selection time!");
794     abort();
795   }
796   void visitUserOp2(Instruction &I) {
797     assert(0 && "UserOp2 should not exist at instruction selection time!");
798     abort();
799   }
800   
801 private:
802   inline const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
803
804 };
805 } // end namespace llvm
806
807
808 /// getCopyFromParts - Create a value that contains the specified legal parts
809 /// combined into the value they represent.  If the parts combine to a type
810 /// larger then ValueVT then AssertOp can be used to specify whether the extra
811 /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
812 /// (ISD::AssertSext).
813 static SDOperand getCopyFromParts(SelectionDAG &DAG,
814                                   const SDOperand *Parts,
815                                   unsigned NumParts,
816                                   MVT PartVT,
817                                   MVT ValueVT,
818                                   ISD::NodeType AssertOp = ISD::DELETED_NODE) {
819   assert(NumParts > 0 && "No parts to assemble!");
820   TargetLowering &TLI = DAG.getTargetLoweringInfo();
821   SDOperand Val = Parts[0];
822
823   if (NumParts > 1) {
824     // Assemble the value from multiple parts.
825     if (!ValueVT.isVector()) {
826       unsigned PartBits = PartVT.getSizeInBits();
827       unsigned ValueBits = ValueVT.getSizeInBits();
828
829       // Assemble the power of 2 part.
830       unsigned RoundParts = NumParts & (NumParts - 1) ?
831         1 << Log2_32(NumParts) : NumParts;
832       unsigned RoundBits = PartBits * RoundParts;
833       MVT RoundVT = RoundBits == ValueBits ?
834         ValueVT : MVT::getIntegerVT(RoundBits);
835       SDOperand Lo, Hi;
836
837       if (RoundParts > 2) {
838         MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
839         Lo = getCopyFromParts(DAG, Parts, RoundParts/2, PartVT, HalfVT);
840         Hi = getCopyFromParts(DAG, Parts+RoundParts/2, RoundParts/2,
841                               PartVT, HalfVT);
842       } else {
843         Lo = Parts[0];
844         Hi = Parts[1];
845       }
846       if (TLI.isBigEndian())
847         std::swap(Lo, Hi);
848       Val = DAG.getNode(ISD::BUILD_PAIR, RoundVT, Lo, Hi);
849
850       if (RoundParts < NumParts) {
851         // Assemble the trailing non-power-of-2 part.
852         unsigned OddParts = NumParts - RoundParts;
853         MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
854         Hi = getCopyFromParts(DAG, Parts+RoundParts, OddParts, PartVT, OddVT);
855
856         // Combine the round and odd parts.
857         Lo = Val;
858         if (TLI.isBigEndian())
859           std::swap(Lo, Hi);
860         MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
861         Hi = DAG.getNode(ISD::ANY_EXTEND, TotalVT, Hi);
862         Hi = DAG.getNode(ISD::SHL, TotalVT, Hi,
863                          DAG.getConstant(Lo.getValueType().getSizeInBits(),
864                                          TLI.getShiftAmountTy()));
865         Lo = DAG.getNode(ISD::ZERO_EXTEND, TotalVT, Lo);
866         Val = DAG.getNode(ISD::OR, TotalVT, Lo, Hi);
867       }
868     } else {
869       // Handle a multi-element vector.
870       MVT IntermediateVT, RegisterVT;
871       unsigned NumIntermediates;
872       unsigned NumRegs =
873         TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
874                                    RegisterVT);
875       assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
876       NumParts = NumRegs; // Silence a compiler warning.
877       assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
878       assert(RegisterVT == Parts[0].getValueType() &&
879              "Part type doesn't match part!");
880
881       // Assemble the parts into intermediate operands.
882       SmallVector<SDOperand, 8> Ops(NumIntermediates);
883       if (NumIntermediates == NumParts) {
884         // If the register was not expanded, truncate or copy the value,
885         // as appropriate.
886         for (unsigned i = 0; i != NumParts; ++i)
887           Ops[i] = getCopyFromParts(DAG, &Parts[i], 1,
888                                     PartVT, IntermediateVT);
889       } else if (NumParts > 0) {
890         // If the intermediate type was expanded, build the intermediate operands
891         // from the parts.
892         assert(NumParts % NumIntermediates == 0 &&
893                "Must expand into a divisible number of parts!");
894         unsigned Factor = NumParts / NumIntermediates;
895         for (unsigned i = 0; i != NumIntermediates; ++i)
896           Ops[i] = getCopyFromParts(DAG, &Parts[i * Factor], Factor,
897                                     PartVT, IntermediateVT);
898       }
899
900       // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
901       // operands.
902       Val = DAG.getNode(IntermediateVT.isVector() ?
903                         ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR,
904                         ValueVT, &Ops[0], NumIntermediates);
905     }
906   }
907
908   // There is now one part, held in Val.  Correct it to match ValueVT.
909   PartVT = Val.getValueType();
910
911   if (PartVT == ValueVT)
912     return Val;
913
914   if (PartVT.isVector()) {
915     assert(ValueVT.isVector() && "Unknown vector conversion!");
916     return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
917   }
918
919   if (ValueVT.isVector()) {
920     assert(ValueVT.getVectorElementType() == PartVT &&
921            ValueVT.getVectorNumElements() == 1 &&
922            "Only trivial scalar-to-vector conversions should get here!");
923     return DAG.getNode(ISD::BUILD_VECTOR, ValueVT, Val);
924   }
925
926   if (PartVT.isInteger() &&
927       ValueVT.isInteger()) {
928     if (ValueVT.bitsLT(PartVT)) {
929       // For a truncate, see if we have any information to
930       // indicate whether the truncated bits will always be
931       // zero or sign-extension.
932       if (AssertOp != ISD::DELETED_NODE)
933         Val = DAG.getNode(AssertOp, PartVT, Val,
934                           DAG.getValueType(ValueVT));
935       return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
936     } else {
937       return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
938     }
939   }
940
941   if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
942     if (ValueVT.bitsLT(Val.getValueType()))
943       // FP_ROUND's are always exact here.
944       return DAG.getNode(ISD::FP_ROUND, ValueVT, Val,
945                          DAG.getIntPtrConstant(1));
946     return DAG.getNode(ISD::FP_EXTEND, ValueVT, Val);
947   }
948
949   if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
950     return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
951
952   assert(0 && "Unknown mismatch!");
953   return SDOperand();
954 }
955
956 /// getCopyToParts - Create a series of nodes that contain the specified value
957 /// split into legal parts.  If the parts contain more bits than Val, then, for
958 /// integers, ExtendKind can be used to specify how to generate the extra bits.
959 static void getCopyToParts(SelectionDAG &DAG,
960                            SDOperand Val,
961                            SDOperand *Parts,
962                            unsigned NumParts,
963                            MVT PartVT,
964                            ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
965   TargetLowering &TLI = DAG.getTargetLoweringInfo();
966   MVT PtrVT = TLI.getPointerTy();
967   MVT ValueVT = Val.getValueType();
968   unsigned PartBits = PartVT.getSizeInBits();
969   assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
970
971   if (!NumParts)
972     return;
973
974   if (!ValueVT.isVector()) {
975     if (PartVT == ValueVT) {
976       assert(NumParts == 1 && "No-op copy with multiple parts!");
977       Parts[0] = Val;
978       return;
979     }
980
981     if (NumParts * PartBits > ValueVT.getSizeInBits()) {
982       // If the parts cover more bits than the value has, promote the value.
983       if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
984         assert(NumParts == 1 && "Do not know what to promote to!");
985         Val = DAG.getNode(ISD::FP_EXTEND, PartVT, Val);
986       } else if (PartVT.isInteger() && ValueVT.isInteger()) {
987         ValueVT = MVT::getIntegerVT(NumParts * PartBits);
988         Val = DAG.getNode(ExtendKind, ValueVT, Val);
989       } else {
990         assert(0 && "Unknown mismatch!");
991       }
992     } else if (PartBits == ValueVT.getSizeInBits()) {
993       // Different types of the same size.
994       assert(NumParts == 1 && PartVT != ValueVT);
995       Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
996     } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
997       // If the parts cover less bits than value has, truncate the value.
998       if (PartVT.isInteger() && ValueVT.isInteger()) {
999         ValueVT = MVT::getIntegerVT(NumParts * PartBits);
1000         Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1001       } else {
1002         assert(0 && "Unknown mismatch!");
1003       }
1004     }
1005
1006     // The value may have changed - recompute ValueVT.
1007     ValueVT = Val.getValueType();
1008     assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
1009            "Failed to tile the value with PartVT!");
1010
1011     if (NumParts == 1) {
1012       assert(PartVT == ValueVT && "Type conversion failed!");
1013       Parts[0] = Val;
1014       return;
1015     }
1016
1017     // Expand the value into multiple parts.
1018     if (NumParts & (NumParts - 1)) {
1019       // The number of parts is not a power of 2.  Split off and copy the tail.
1020       assert(PartVT.isInteger() && ValueVT.isInteger() &&
1021              "Do not know what to expand to!");
1022       unsigned RoundParts = 1 << Log2_32(NumParts);
1023       unsigned RoundBits = RoundParts * PartBits;
1024       unsigned OddParts = NumParts - RoundParts;
1025       SDOperand OddVal = DAG.getNode(ISD::SRL, ValueVT, Val,
1026                                      DAG.getConstant(RoundBits,
1027                                                      TLI.getShiftAmountTy()));
1028       getCopyToParts(DAG, OddVal, Parts + RoundParts, OddParts, PartVT);
1029       if (TLI.isBigEndian())
1030         // The odd parts were reversed by getCopyToParts - unreverse them.
1031         std::reverse(Parts + RoundParts, Parts + NumParts);
1032       NumParts = RoundParts;
1033       ValueVT = MVT::getIntegerVT(NumParts * PartBits);
1034       Val = DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1035     }
1036
1037     // The number of parts is a power of 2.  Repeatedly bisect the value using
1038     // EXTRACT_ELEMENT.
1039     Parts[0] = DAG.getNode(ISD::BIT_CONVERT,
1040                            MVT::getIntegerVT(ValueVT.getSizeInBits()),
1041                            Val);
1042     for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
1043       for (unsigned i = 0; i < NumParts; i += StepSize) {
1044         unsigned ThisBits = StepSize * PartBits / 2;
1045         MVT ThisVT = MVT::getIntegerVT (ThisBits);
1046         SDOperand &Part0 = Parts[i];
1047         SDOperand &Part1 = Parts[i+StepSize/2];
1048
1049         Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1050                             DAG.getConstant(1, PtrVT));
1051         Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, ThisVT, Part0,
1052                             DAG.getConstant(0, PtrVT));
1053
1054         if (ThisBits == PartBits && ThisVT != PartVT) {
1055           Part0 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part0);
1056           Part1 = DAG.getNode(ISD::BIT_CONVERT, PartVT, Part1);
1057         }
1058       }
1059     }
1060
1061     if (TLI.isBigEndian())
1062       std::reverse(Parts, Parts + NumParts);
1063
1064     return;
1065   }
1066
1067   // Vector ValueVT.
1068   if (NumParts == 1) {
1069     if (PartVT != ValueVT) {
1070       if (PartVT.isVector()) {
1071         Val = DAG.getNode(ISD::BIT_CONVERT, PartVT, Val);
1072       } else {
1073         assert(ValueVT.getVectorElementType() == PartVT &&
1074                ValueVT.getVectorNumElements() == 1 &&
1075                "Only trivial vector-to-scalar conversions should get here!");
1076         Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, PartVT, Val,
1077                           DAG.getConstant(0, PtrVT));
1078       }
1079     }
1080
1081     Parts[0] = Val;
1082     return;
1083   }
1084
1085   // Handle a multi-element vector.
1086   MVT IntermediateVT, RegisterVT;
1087   unsigned NumIntermediates;
1088   unsigned NumRegs =
1089     DAG.getTargetLoweringInfo()
1090       .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
1091                               RegisterVT);
1092   unsigned NumElements = ValueVT.getVectorNumElements();
1093
1094   assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
1095   NumParts = NumRegs; // Silence a compiler warning.
1096   assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
1097
1098   // Split the vector into intermediate operands.
1099   SmallVector<SDOperand, 8> Ops(NumIntermediates);
1100   for (unsigned i = 0; i != NumIntermediates; ++i)
1101     if (IntermediateVT.isVector())
1102       Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR,
1103                            IntermediateVT, Val,
1104                            DAG.getConstant(i * (NumElements / NumIntermediates),
1105                                            PtrVT));
1106     else
1107       Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
1108                            IntermediateVT, Val, 
1109                            DAG.getConstant(i, PtrVT));
1110
1111   // Split the intermediate operands into legal parts.
1112   if (NumParts == NumIntermediates) {
1113     // If the register was not expanded, promote or copy the value,
1114     // as appropriate.
1115     for (unsigned i = 0; i != NumParts; ++i)
1116       getCopyToParts(DAG, Ops[i], &Parts[i], 1, PartVT);
1117   } else if (NumParts > 0) {
1118     // If the intermediate type was expanded, split each the value into
1119     // legal parts.
1120     assert(NumParts % NumIntermediates == 0 &&
1121            "Must expand into a divisible number of parts!");
1122     unsigned Factor = NumParts / NumIntermediates;
1123     for (unsigned i = 0; i != NumIntermediates; ++i)
1124       getCopyToParts(DAG, Ops[i], &Parts[i * Factor], Factor, PartVT);
1125   }
1126 }
1127
1128
1129 SDOperand SelectionDAGLowering::getValue(const Value *V) {
1130   SDOperand &N = NodeMap[V];
1131   if (N.Val) return N;
1132   
1133   if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
1134     MVT VT = TLI.getValueType(V->getType(), true);
1135     
1136     if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
1137       return N = DAG.getConstant(CI->getValue(), VT);
1138
1139     if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
1140       return N = DAG.getGlobalAddress(GV, VT);
1141     
1142     if (isa<ConstantPointerNull>(C))
1143       return N = DAG.getConstant(0, TLI.getPointerTy());
1144     
1145     if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
1146       return N = DAG.getConstantFP(CFP->getValueAPF(), VT);
1147     
1148     if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
1149         !V->getType()->isAggregateType())
1150       return N = DAG.getNode(ISD::UNDEF, VT);
1151
1152     if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1153       visit(CE->getOpcode(), *CE);
1154       SDOperand N1 = NodeMap[V];
1155       assert(N1.Val && "visit didn't populate the ValueMap!");
1156       return N1;
1157     }
1158     
1159     if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
1160       SmallVector<SDOperand, 4> Constants;
1161       for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
1162            OI != OE; ++OI) {
1163         SDNode *Val = getValue(*OI).Val;
1164         for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
1165           Constants.push_back(SDOperand(Val, i));
1166       }
1167       return DAG.getMergeValues(&Constants[0], Constants.size());
1168     }
1169
1170     if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
1171       assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1172              "Unknown array constant!");
1173       unsigned NumElts = ATy->getNumElements();
1174       if (NumElts == 0)
1175         return SDOperand(); // empty array
1176       MVT EltVT = TLI.getValueType(ATy->getElementType());
1177       SmallVector<SDOperand, 4> Constants(NumElts);
1178       for (unsigned i = 0, e = NumElts; i != e; ++i) {
1179         if (isa<UndefValue>(C))
1180           Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1181         else if (EltVT.isFloatingPoint())
1182           Constants[i] = DAG.getConstantFP(0, EltVT);
1183         else
1184           Constants[i] = DAG.getConstant(0, EltVT);
1185       }
1186       return DAG.getMergeValues(&Constants[0], Constants.size());
1187     }
1188
1189     if (const StructType *STy = dyn_cast<StructType>(C->getType())) {
1190       assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1191              "Unknown struct constant!");
1192       unsigned NumElts = STy->getNumElements();
1193       if (NumElts == 0)
1194         return SDOperand(); // empty struct
1195       SmallVector<SDOperand, 4> Constants(NumElts);
1196       for (unsigned i = 0, e = NumElts; i != e; ++i) {
1197         MVT EltVT = TLI.getValueType(STy->getElementType(i));
1198         if (isa<UndefValue>(C))
1199           Constants[i] = DAG.getNode(ISD::UNDEF, EltVT);
1200         else if (EltVT.isFloatingPoint())
1201           Constants[i] = DAG.getConstantFP(0, EltVT);
1202         else
1203           Constants[i] = DAG.getConstant(0, EltVT);
1204       }
1205       return DAG.getMergeValues(&Constants[0], Constants.size());
1206     }
1207
1208     const VectorType *VecTy = cast<VectorType>(V->getType());
1209     unsigned NumElements = VecTy->getNumElements();
1210     
1211     // Now that we know the number and type of the elements, get that number of
1212     // elements into the Ops array based on what kind of constant it is.
1213     SmallVector<SDOperand, 16> Ops;
1214     if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
1215       for (unsigned i = 0; i != NumElements; ++i)
1216         Ops.push_back(getValue(CP->getOperand(i)));
1217     } else {
1218       assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
1219              "Unknown vector constant!");
1220       MVT EltVT = TLI.getValueType(VecTy->getElementType());
1221
1222       SDOperand Op;
1223       if (isa<UndefValue>(C))
1224         Op = DAG.getNode(ISD::UNDEF, EltVT);
1225       else if (EltVT.isFloatingPoint())
1226         Op = DAG.getConstantFP(0, EltVT);
1227       else
1228         Op = DAG.getConstant(0, EltVT);
1229       Ops.assign(NumElements, Op);
1230     }
1231     
1232     // Create a BUILD_VECTOR node.
1233     return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
1234   }
1235       
1236   // If this is a static alloca, generate it as the frameindex instead of
1237   // computation.
1238   if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1239     std::map<const AllocaInst*, int>::iterator SI =
1240       FuncInfo.StaticAllocaMap.find(AI);
1241     if (SI != FuncInfo.StaticAllocaMap.end())
1242       return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
1243   }
1244       
1245   unsigned InReg = FuncInfo.ValueMap[V];
1246   assert(InReg && "Value not in map!");
1247   
1248   RegsForValue RFV(TLI, InReg, V->getType());
1249   SDOperand Chain = DAG.getEntryNode();
1250   return RFV.getCopyFromRegs(DAG, Chain, NULL);
1251 }
1252
1253
1254 void SelectionDAGLowering::visitRet(ReturnInst &I) {
1255   if (I.getNumOperands() == 0) {
1256     DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getControlRoot()));
1257     return;
1258   }
1259   
1260   SmallVector<SDOperand, 8> NewValues;
1261   NewValues.push_back(getControlRoot());
1262   for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {  
1263     SDOperand RetOp = getValue(I.getOperand(i));
1264
1265     SmallVector<MVT, 4> ValueVTs;
1266     ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
1267     for (unsigned j = 0, f = ValueVTs.size(); j != f; ++j) {
1268       MVT VT = ValueVTs[j];
1269
1270       // FIXME: C calling convention requires the return type to be promoted to
1271       // at least 32-bit. But this is not necessary for non-C calling conventions.
1272       if (VT.isInteger()) {
1273         MVT MinVT = TLI.getRegisterType(MVT::i32);
1274         if (VT.bitsLT(MinVT))
1275           VT = MinVT;
1276       }
1277
1278       unsigned NumParts = TLI.getNumRegisters(VT);
1279       MVT PartVT = TLI.getRegisterType(VT);
1280       SmallVector<SDOperand, 4> Parts(NumParts);
1281       ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
1282   
1283       const Function *F = I.getParent()->getParent();
1284       if (F->paramHasAttr(0, ParamAttr::SExt))
1285         ExtendKind = ISD::SIGN_EXTEND;
1286       else if (F->paramHasAttr(0, ParamAttr::ZExt))
1287         ExtendKind = ISD::ZERO_EXTEND;
1288
1289       getCopyToParts(DAG, SDOperand(RetOp.Val, RetOp.ResNo + j),
1290                      &Parts[0], NumParts, PartVT, ExtendKind);
1291
1292       for (unsigned i = 0; i < NumParts; ++i) {
1293         NewValues.push_back(Parts[i]);
1294         NewValues.push_back(DAG.getArgFlags(ISD::ArgFlagsTy()));
1295       }
1296     }
1297   }
1298   DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
1299                           &NewValues[0], NewValues.size()));
1300 }
1301
1302 /// ExportFromCurrentBlock - If this condition isn't known to be exported from
1303 /// the current basic block, add it to ValueMap now so that we'll get a
1304 /// CopyTo/FromReg.
1305 void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1306   // No need to export constants.
1307   if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
1308   
1309   // Already exported?
1310   if (FuncInfo.isExportedInst(V)) return;
1311
1312   unsigned Reg = FuncInfo.InitializeRegForValue(V);
1313   CopyValueToVirtualRegister(V, Reg);
1314 }
1315
1316 bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1317                                                     const BasicBlock *FromBB) {
1318   // The operands of the setcc have to be in this block.  We don't know
1319   // how to export them from some other block.
1320   if (Instruction *VI = dyn_cast<Instruction>(V)) {
1321     // Can export from current BB.
1322     if (VI->getParent() == FromBB)
1323       return true;
1324     
1325     // Is already exported, noop.
1326     return FuncInfo.isExportedInst(V);
1327   }
1328   
1329   // If this is an argument, we can export it if the BB is the entry block or
1330   // if it is already exported.
1331   if (isa<Argument>(V)) {
1332     if (FromBB == &FromBB->getParent()->getEntryBlock())
1333       return true;
1334
1335     // Otherwise, can only export this if it is already exported.
1336     return FuncInfo.isExportedInst(V);
1337   }
1338   
1339   // Otherwise, constants can always be exported.
1340   return true;
1341 }
1342
1343 static bool InBlock(const Value *V, const BasicBlock *BB) {
1344   if (const Instruction *I = dyn_cast<Instruction>(V))
1345     return I->getParent() == BB;
1346   return true;
1347 }
1348
1349 /// FindMergedConditions - If Cond is an expression like 
1350 void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1351                                                 MachineBasicBlock *TBB,
1352                                                 MachineBasicBlock *FBB,
1353                                                 MachineBasicBlock *CurBB,
1354                                                 unsigned Opc) {
1355   // If this node is not part of the or/and tree, emit it as a branch.
1356   Instruction *BOp = dyn_cast<Instruction>(Cond);
1357
1358   if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || 
1359       (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1360       BOp->getParent() != CurBB->getBasicBlock() ||
1361       !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1362       !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1363     const BasicBlock *BB = CurBB->getBasicBlock();
1364     
1365     // If the leaf of the tree is a comparison, merge the condition into 
1366     // the caseblock.
1367     if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
1368         // The operands of the cmp have to be in this block.  We don't know
1369         // how to export them from some other block.  If this is the first block
1370         // of the sequence, no exporting is needed.
1371         (CurBB == CurMBB ||
1372          (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1373           isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
1374       BOp = cast<Instruction>(Cond);
1375       ISD::CondCode Condition;
1376       if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
1377         switch (IC->getPredicate()) {
1378         default: assert(0 && "Unknown icmp predicate opcode!");
1379         case ICmpInst::ICMP_EQ:  Condition = ISD::SETEQ;  break;
1380         case ICmpInst::ICMP_NE:  Condition = ISD::SETNE;  break;
1381         case ICmpInst::ICMP_SLE: Condition = ISD::SETLE;  break;
1382         case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
1383         case ICmpInst::ICMP_SGE: Condition = ISD::SETGE;  break;
1384         case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
1385         case ICmpInst::ICMP_SLT: Condition = ISD::SETLT;  break;
1386         case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
1387         case ICmpInst::ICMP_SGT: Condition = ISD::SETGT;  break;
1388         case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
1389         }
1390       } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
1391         ISD::CondCode FPC, FOC;
1392         switch (FC->getPredicate()) {
1393         default: assert(0 && "Unknown fcmp predicate opcode!");
1394         case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1395         case FCmpInst::FCMP_OEQ:   FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1396         case FCmpInst::FCMP_OGT:   FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1397         case FCmpInst::FCMP_OGE:   FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1398         case FCmpInst::FCMP_OLT:   FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1399         case FCmpInst::FCMP_OLE:   FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1400         case FCmpInst::FCMP_ONE:   FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1401         case FCmpInst::FCMP_ORD:   FOC = FPC = ISD::SETO;   break;
1402         case FCmpInst::FCMP_UNO:   FOC = FPC = ISD::SETUO;  break;
1403         case FCmpInst::FCMP_UEQ:   FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1404         case FCmpInst::FCMP_UGT:   FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1405         case FCmpInst::FCMP_UGE:   FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1406         case FCmpInst::FCMP_ULT:   FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1407         case FCmpInst::FCMP_ULE:   FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1408         case FCmpInst::FCMP_UNE:   FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1409         case FCmpInst::FCMP_TRUE:  FOC = FPC = ISD::SETTRUE; break;
1410         }
1411         if (FiniteOnlyFPMath())
1412           Condition = FOC;
1413         else 
1414           Condition = FPC;
1415       } else {
1416         Condition = ISD::SETEQ; // silence warning.
1417         assert(0 && "Unknown compare instruction");
1418       }
1419       
1420       SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0), 
1421                                      BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1422       SwitchCases.push_back(CB);
1423       return;
1424     }
1425     
1426     // Create a CaseBlock record representing this branch.
1427     SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1428                                    NULL, TBB, FBB, CurBB);
1429     SwitchCases.push_back(CB);
1430     return;
1431   }
1432   
1433   
1434   //  Create TmpBB after CurBB.
1435   MachineFunction::iterator BBI = CurBB;
1436   MachineBasicBlock *TmpBB = new MachineBasicBlock(CurBB->getBasicBlock());
1437   CurBB->getParent()->getBasicBlockList().insert(++BBI, TmpBB);
1438   
1439   if (Opc == Instruction::Or) {
1440     // Codegen X | Y as:
1441     //   jmp_if_X TBB
1442     //   jmp TmpBB
1443     // TmpBB:
1444     //   jmp_if_Y TBB
1445     //   jmp FBB
1446     //
1447   
1448     // Emit the LHS condition.
1449     FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
1450   
1451     // Emit the RHS condition into TmpBB.
1452     FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1453   } else {
1454     assert(Opc == Instruction::And && "Unknown merge op!");
1455     // Codegen X & Y as:
1456     //   jmp_if_X TmpBB
1457     //   jmp FBB
1458     // TmpBB:
1459     //   jmp_if_Y TBB
1460     //   jmp FBB
1461     //
1462     //  This requires creation of TmpBB after CurBB.
1463     
1464     // Emit the LHS condition.
1465     FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1466     
1467     // Emit the RHS condition into TmpBB.
1468     FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1469   }
1470 }
1471
1472 /// If the set of cases should be emitted as a series of branches, return true.
1473 /// If we should emit this as a bunch of and/or'd together conditions, return
1474 /// false.
1475 static bool 
1476 ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1477   if (Cases.size() != 2) return true;
1478   
1479   // If this is two comparisons of the same values or'd or and'd together, they
1480   // will get folded into a single comparison, so don't emit two blocks.
1481   if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1482        Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1483       (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1484        Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1485     return false;
1486   }
1487   
1488   return true;
1489 }
1490
1491 void SelectionDAGLowering::visitBr(BranchInst &I) {
1492   // Update machine-CFG edges.
1493   MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1494
1495   // Figure out which block is immediately after the current one.
1496   MachineBasicBlock *NextBlock = 0;
1497   MachineFunction::iterator BBI = CurMBB;
1498   if (++BBI != CurMBB->getParent()->end())
1499     NextBlock = BBI;
1500
1501   if (I.isUnconditional()) {
1502     // Update machine-CFG edges.
1503     CurMBB->addSuccessor(Succ0MBB);
1504     
1505     // If this is not a fall-through branch, emit the branch.
1506     if (Succ0MBB != NextBlock)
1507       DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1508                               DAG.getBasicBlock(Succ0MBB)));
1509     return;
1510   }
1511
1512   // If this condition is one of the special cases we handle, do special stuff
1513   // now.
1514   Value *CondVal = I.getCondition();
1515   MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1516
1517   // If this is a series of conditions that are or'd or and'd together, emit
1518   // this as a sequence of branches instead of setcc's with and/or operations.
1519   // For example, instead of something like:
1520   //     cmp A, B
1521   //     C = seteq 
1522   //     cmp D, E
1523   //     F = setle 
1524   //     or C, F
1525   //     jnz foo
1526   // Emit:
1527   //     cmp A, B
1528   //     je foo
1529   //     cmp D, E
1530   //     jle foo
1531   //
1532   if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1533     if (BOp->hasOneUse() && 
1534         (BOp->getOpcode() == Instruction::And ||
1535          BOp->getOpcode() == Instruction::Or)) {
1536       FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1537       // If the compares in later blocks need to use values not currently
1538       // exported from this block, export them now.  This block should always
1539       // be the first entry.
1540       assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1541       
1542       // Allow some cases to be rejected.
1543       if (ShouldEmitAsBranches(SwitchCases)) {
1544         for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1545           ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1546           ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1547         }
1548         
1549         // Emit the branch for this block.
1550         visitSwitchCase(SwitchCases[0]);
1551         SwitchCases.erase(SwitchCases.begin());
1552         return;
1553       }
1554       
1555       // Okay, we decided not to do this, remove any inserted MBB's and clear
1556       // SwitchCases.
1557       for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1558         CurMBB->getParent()->getBasicBlockList().erase(SwitchCases[i].ThisBB);
1559       
1560       SwitchCases.clear();
1561     }
1562   }
1563   
1564   // Create a CaseBlock record representing this branch.
1565   SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1566                                  NULL, Succ0MBB, Succ1MBB, CurMBB);
1567   // Use visitSwitchCase to actually insert the fast branch sequence for this
1568   // cond branch.
1569   visitSwitchCase(CB);
1570 }
1571
1572 /// visitSwitchCase - Emits the necessary code to represent a single node in
1573 /// the binary search tree resulting from lowering a switch instruction.
1574 void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
1575   SDOperand Cond;
1576   SDOperand CondLHS = getValue(CB.CmpLHS);
1577   
1578   // Build the setcc now. 
1579   if (CB.CmpMHS == NULL) {
1580     // Fold "(X == true)" to X and "(X == false)" to !X to
1581     // handle common cases produced by branch lowering.
1582     if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1583       Cond = CondLHS;
1584     else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1585       SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1586       Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1587     } else
1588       Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1589   } else {
1590     assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1591
1592     uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1593     uint64_t High  = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1594
1595     SDOperand CmpOp = getValue(CB.CmpMHS);
1596     MVT VT = CmpOp.getValueType();
1597
1598     if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1599       Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1600     } else {
1601       SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1602       Cond = DAG.getSetCC(MVT::i1, SUB,
1603                           DAG.getConstant(High-Low, VT), ISD::SETULE);
1604     }
1605   }
1606   
1607   // Update successor info
1608   CurMBB->addSuccessor(CB.TrueBB);
1609   CurMBB->addSuccessor(CB.FalseBB);
1610   
1611   // Set NextBlock to be the MBB immediately after the current one, if any.
1612   // This is used to avoid emitting unnecessary branches to the next block.
1613   MachineBasicBlock *NextBlock = 0;
1614   MachineFunction::iterator BBI = CurMBB;
1615   if (++BBI != CurMBB->getParent()->end())
1616     NextBlock = BBI;
1617   
1618   // If the lhs block is the next block, invert the condition so that we can
1619   // fall through to the lhs instead of the rhs block.
1620   if (CB.TrueBB == NextBlock) {
1621     std::swap(CB.TrueBB, CB.FalseBB);
1622     SDOperand True = DAG.getConstant(1, Cond.getValueType());
1623     Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1624   }
1625   SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(), Cond,
1626                                  DAG.getBasicBlock(CB.TrueBB));
1627   if (CB.FalseBB == NextBlock)
1628     DAG.setRoot(BrCond);
1629   else
1630     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond, 
1631                             DAG.getBasicBlock(CB.FalseBB)));
1632 }
1633
1634 /// visitJumpTable - Emit JumpTable node in the current MBB
1635 void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
1636   // Emit the code for the jump table
1637   assert(JT.Reg != -1U && "Should lower JT Header first!");
1638   MVT PTy = TLI.getPointerTy();
1639   SDOperand Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
1640   SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1641   DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1642                           Table, Index));
1643   return;
1644 }
1645
1646 /// visitJumpTableHeader - This function emits necessary code to produce index
1647 /// in the JumpTable from switch case.
1648 void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1649                                          SelectionDAGISel::JumpTableHeader &JTH) {
1650   // Subtract the lowest switch case value from the value being switched on
1651   // and conditional branch to default mbb if the result is greater than the
1652   // difference between smallest and largest cases.
1653   SDOperand SwitchOp = getValue(JTH.SValue);
1654   MVT VT = SwitchOp.getValueType();
1655   SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1656                               DAG.getConstant(JTH.First, VT));
1657   
1658   // The SDNode we just created, which holds the value being switched on
1659   // minus the the smallest case value, needs to be copied to a virtual
1660   // register so it can be used as an index into the jump table in a 
1661   // subsequent basic block.  This value may be smaller or larger than the
1662   // target's pointer type, and therefore require extension or truncating.
1663   if (VT.bitsGT(TLI.getPointerTy()))
1664     SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1665   else
1666     SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1667   
1668   unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
1669   SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
1670   JT.Reg = JumpTableReg;
1671
1672   // Emit the range check for the jump table, and branch to the default
1673   // block for the switch statement if the value being switched on exceeds
1674   // the largest case in the switch.
1675   SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
1676                                DAG.getConstant(JTH.Last-JTH.First,VT),
1677                                ISD::SETUGT);
1678
1679   // Set NextBlock to be the MBB immediately after the current one, if any.
1680   // This is used to avoid emitting unnecessary branches to the next block.
1681   MachineBasicBlock *NextBlock = 0;
1682   MachineFunction::iterator BBI = CurMBB;
1683   if (++BBI != CurMBB->getParent()->end())
1684     NextBlock = BBI;
1685
1686   SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1687                                  DAG.getBasicBlock(JT.Default));
1688
1689   if (JT.MBB == NextBlock)
1690     DAG.setRoot(BrCond);
1691   else
1692     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond, 
1693                             DAG.getBasicBlock(JT.MBB)));
1694
1695   return;
1696 }
1697
1698 /// visitBitTestHeader - This function emits necessary code to produce value
1699 /// suitable for "bit tests"
1700 void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1701   // Subtract the minimum value
1702   SDOperand SwitchOp = getValue(B.SValue);
1703   MVT VT = SwitchOp.getValueType();
1704   SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1705                               DAG.getConstant(B.First, VT));
1706
1707   // Check range
1708   SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB), SUB,
1709                                     DAG.getConstant(B.Range, VT),
1710                                     ISD::SETUGT);
1711
1712   SDOperand ShiftOp;
1713   if (VT.bitsGT(TLI.getShiftAmountTy()))
1714     ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1715   else
1716     ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1717
1718   // Make desired shift
1719   SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1720                                     DAG.getConstant(1, TLI.getPointerTy()),
1721                                     ShiftOp);
1722
1723   unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
1724   SDOperand CopyTo = DAG.getCopyToReg(getControlRoot(), SwitchReg, SwitchVal);
1725   B.Reg = SwitchReg;
1726
1727   // Set NextBlock to be the MBB immediately after the current one, if any.
1728   // This is used to avoid emitting unnecessary branches to the next block.
1729   MachineBasicBlock *NextBlock = 0;
1730   MachineFunction::iterator BBI = CurMBB;
1731   if (++BBI != CurMBB->getParent()->end())
1732     NextBlock = BBI;
1733
1734   MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1735
1736   CurMBB->addSuccessor(B.Default);
1737   CurMBB->addSuccessor(MBB);
1738
1739   SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1740                                   DAG.getBasicBlock(B.Default));
1741   
1742   if (MBB == NextBlock)
1743     DAG.setRoot(BrRange);
1744   else
1745     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1746                             DAG.getBasicBlock(MBB)));
1747
1748   return;
1749 }
1750
1751 /// visitBitTestCase - this function produces one "bit test"
1752 void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1753                                             unsigned Reg,
1754                                             SelectionDAGISel::BitTestCase &B) {
1755   // Emit bit tests and jumps
1756   SDOperand SwitchVal = DAG.getCopyFromReg(getControlRoot(), Reg, 
1757                                            TLI.getPointerTy());
1758   
1759   SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(), SwitchVal,
1760                                 DAG.getConstant(B.Mask, TLI.getPointerTy()));
1761   SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp), AndOp,
1762                                   DAG.getConstant(0, TLI.getPointerTy()),
1763                                   ISD::SETNE);
1764
1765   CurMBB->addSuccessor(B.TargetBB);
1766   CurMBB->addSuccessor(NextMBB);
1767   
1768   SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getControlRoot(),
1769                                 AndCmp, DAG.getBasicBlock(B.TargetBB));
1770
1771   // Set NextBlock to be the MBB immediately after the current one, if any.
1772   // This is used to avoid emitting unnecessary branches to the next block.
1773   MachineBasicBlock *NextBlock = 0;
1774   MachineFunction::iterator BBI = CurMBB;
1775   if (++BBI != CurMBB->getParent()->end())
1776     NextBlock = BBI;
1777
1778   if (NextMBB == NextBlock)
1779     DAG.setRoot(BrAnd);
1780   else
1781     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1782                             DAG.getBasicBlock(NextMBB)));
1783
1784   return;
1785 }
1786
1787 void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1788   // Retrieve successors.
1789   MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1790   MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1791
1792   if (isa<InlineAsm>(I.getCalledValue()))
1793     visitInlineAsm(&I);
1794   else
1795     LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
1796
1797   // If the value of the invoke is used outside of its defining block, make it
1798   // available as a virtual register.
1799   if (!I.use_empty()) {
1800     DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1801     if (VMI != FuncInfo.ValueMap.end())
1802       CopyValueToVirtualRegister(&I, VMI->second);
1803   }
1804
1805   // Update successor info
1806   CurMBB->addSuccessor(Return);
1807   CurMBB->addSuccessor(LandingPad);
1808
1809   // Drop into normal successor.
1810   DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
1811                           DAG.getBasicBlock(Return)));
1812 }
1813
1814 void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1815 }
1816
1817 /// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1818 /// small case ranges).
1819 bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1820                                                   CaseRecVector& WorkList,
1821                                                   Value* SV,
1822                                                   MachineBasicBlock* Default) {
1823   Case& BackCase  = *(CR.Range.second-1);
1824   
1825   // Size is the number of Cases represented by this range.
1826   unsigned Size = CR.Range.second - CR.Range.first;
1827   if (Size > 3)
1828     return false;  
1829   
1830   // Get the MachineFunction which holds the current MBB.  This is used when
1831   // inserting any additional MBBs necessary to represent the switch.
1832   MachineFunction *CurMF = CurMBB->getParent();  
1833
1834   // Figure out which block is immediately after the current one.
1835   MachineBasicBlock *NextBlock = 0;
1836   MachineFunction::iterator BBI = CR.CaseBB;
1837
1838   if (++BBI != CurMBB->getParent()->end())
1839     NextBlock = BBI;
1840
1841   // TODO: If any two of the cases has the same destination, and if one value
1842   // is the same as the other, but has one bit unset that the other has set,
1843   // use bit manipulation to do two compares at once.  For example:
1844   // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1845     
1846   // Rearrange the case blocks so that the last one falls through if possible.
1847   if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1848     // The last case block won't fall through into 'NextBlock' if we emit the
1849     // branches in this order.  See if rearranging a case value would help.
1850     for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1851       if (I->BB == NextBlock) {
1852         std::swap(*I, BackCase);
1853         break;
1854       }
1855     }
1856   }
1857   
1858   // Create a CaseBlock record representing a conditional branch to
1859   // the Case's target mbb if the value being switched on SV is equal
1860   // to C.
1861   MachineBasicBlock *CurBlock = CR.CaseBB;
1862   for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1863     MachineBasicBlock *FallThrough;
1864     if (I != E-1) {
1865       FallThrough = new MachineBasicBlock(CurBlock->getBasicBlock());
1866       CurMF->getBasicBlockList().insert(BBI, FallThrough);
1867     } else {
1868       // If the last case doesn't match, go to the default block.
1869       FallThrough = Default;
1870     }
1871
1872     Value *RHS, *LHS, *MHS;
1873     ISD::CondCode CC;
1874     if (I->High == I->Low) {
1875       // This is just small small case range :) containing exactly 1 case
1876       CC = ISD::SETEQ;
1877       LHS = SV; RHS = I->High; MHS = NULL;
1878     } else {
1879       CC = ISD::SETLE;
1880       LHS = I->Low; MHS = SV; RHS = I->High;
1881     }
1882     SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1883                                    I->BB, FallThrough, CurBlock);
1884     
1885     // If emitting the first comparison, just call visitSwitchCase to emit the
1886     // code into the current block.  Otherwise, push the CaseBlock onto the
1887     // vector to be later processed by SDISel, and insert the node's MBB
1888     // before the next MBB.
1889     if (CurBlock == CurMBB)
1890       visitSwitchCase(CB);
1891     else
1892       SwitchCases.push_back(CB);
1893     
1894     CurBlock = FallThrough;
1895   }
1896
1897   return true;
1898 }
1899
1900 static inline bool areJTsAllowed(const TargetLowering &TLI) {
1901   return (TLI.isOperationLegal(ISD::BR_JT, MVT::Other) ||
1902           TLI.isOperationLegal(ISD::BRIND, MVT::Other));
1903 }
1904   
1905 /// handleJTSwitchCase - Emit jumptable for current switch case range
1906 bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1907                                               CaseRecVector& WorkList,
1908                                               Value* SV,
1909                                               MachineBasicBlock* Default) {
1910   Case& FrontCase = *CR.Range.first;
1911   Case& BackCase  = *(CR.Range.second-1);
1912
1913   int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1914   int64_t Last  = cast<ConstantInt>(BackCase.High)->getSExtValue();
1915
1916   uint64_t TSize = 0;
1917   for (CaseItr I = CR.Range.first, E = CR.Range.second;
1918        I!=E; ++I)
1919     TSize += I->size();
1920
1921   if (!areJTsAllowed(TLI) || TSize <= 3)
1922     return false;
1923   
1924   double Density = (double)TSize / (double)((Last - First) + 1ULL);  
1925   if (Density < 0.4)
1926     return false;
1927
1928   DOUT << "Lowering jump table\n"
1929        << "First entry: " << First << ". Last entry: " << Last << "\n"
1930        << "Size: " << TSize << ". Density: " << Density << "\n\n";
1931
1932   // Get the MachineFunction which holds the current MBB.  This is used when
1933   // inserting any additional MBBs necessary to represent the switch.
1934   MachineFunction *CurMF = CurMBB->getParent();
1935
1936   // Figure out which block is immediately after the current one.
1937   MachineBasicBlock *NextBlock = 0;
1938   MachineFunction::iterator BBI = CR.CaseBB;
1939
1940   if (++BBI != CurMBB->getParent()->end())
1941     NextBlock = BBI;
1942
1943   const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1944
1945   // Create a new basic block to hold the code for loading the address
1946   // of the jump table, and jumping to it.  Update successor information;
1947   // we will either branch to the default case for the switch, or the jump
1948   // table.
1949   MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
1950   CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
1951   CR.CaseBB->addSuccessor(Default);
1952   CR.CaseBB->addSuccessor(JumpTableBB);
1953                 
1954   // Build a vector of destination BBs, corresponding to each target
1955   // of the jump table. If the value of the jump table slot corresponds to
1956   // a case statement, push the case's BB onto the vector, otherwise, push
1957   // the default BB.
1958   std::vector<MachineBasicBlock*> DestBBs;
1959   int64_t TEI = First;
1960   for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1961     int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1962     int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1963     
1964     if ((Low <= TEI) && (TEI <= High)) {
1965       DestBBs.push_back(I->BB);
1966       if (TEI==High)
1967         ++I;
1968     } else {
1969       DestBBs.push_back(Default);
1970     }
1971   }
1972   
1973   // Update successor info. Add one edge to each unique successor.
1974   BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());  
1975   for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), 
1976          E = DestBBs.end(); I != E; ++I) {
1977     if (!SuccsHandled[(*I)->getNumber()]) {
1978       SuccsHandled[(*I)->getNumber()] = true;
1979       JumpTableBB->addSuccessor(*I);
1980     }
1981   }
1982       
1983   // Create a jump table index for this jump table, or return an existing
1984   // one.
1985   unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1986   
1987   // Set the jump table information so that we can codegen it as a second
1988   // MachineBasicBlock
1989   SelectionDAGISel::JumpTable JT(-1U, JTI, JumpTableBB, Default);
1990   SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
1991                                         (CR.CaseBB == CurMBB));
1992   if (CR.CaseBB == CurMBB)
1993     visitJumpTableHeader(JT, JTH);
1994         
1995   JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
1996
1997   return true;
1998 }
1999
2000 /// handleBTSplitSwitchCase - emit comparison and split binary search tree into
2001 /// 2 subtrees.
2002 bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
2003                                                    CaseRecVector& WorkList,
2004                                                    Value* SV,
2005                                                    MachineBasicBlock* Default) {
2006   // Get the MachineFunction which holds the current MBB.  This is used when
2007   // inserting any additional MBBs necessary to represent the switch.
2008   MachineFunction *CurMF = CurMBB->getParent();  
2009
2010   // Figure out which block is immediately after the current one.
2011   MachineBasicBlock *NextBlock = 0;
2012   MachineFunction::iterator BBI = CR.CaseBB;
2013
2014   if (++BBI != CurMBB->getParent()->end())
2015     NextBlock = BBI;
2016
2017   Case& FrontCase = *CR.Range.first;
2018   Case& BackCase  = *(CR.Range.second-1);
2019   const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2020
2021   // Size is the number of Cases represented by this range.
2022   unsigned Size = CR.Range.second - CR.Range.first;
2023
2024   int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
2025   int64_t Last  = cast<ConstantInt>(BackCase.High)->getSExtValue();
2026   double FMetric = 0;
2027   CaseItr Pivot = CR.Range.first + Size/2;
2028
2029   // Select optimal pivot, maximizing sum density of LHS and RHS. This will
2030   // (heuristically) allow us to emit JumpTable's later.
2031   uint64_t TSize = 0;
2032   for (CaseItr I = CR.Range.first, E = CR.Range.second;
2033        I!=E; ++I)
2034     TSize += I->size();
2035
2036   uint64_t LSize = FrontCase.size();
2037   uint64_t RSize = TSize-LSize;
2038   DOUT << "Selecting best pivot: \n"
2039        << "First: " << First << ", Last: " << Last <<"\n"
2040        << "LSize: " << LSize << ", RSize: " << RSize << "\n";
2041   for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
2042        J!=E; ++I, ++J) {
2043     int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
2044     int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
2045     assert((RBegin-LEnd>=1) && "Invalid case distance");
2046     double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
2047     double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
2048     double Metric = Log2_64(RBegin-LEnd)*(LDensity+RDensity);
2049     // Should always split in some non-trivial place
2050     DOUT <<"=>Step\n"
2051          << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
2052          << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
2053          << "Metric: " << Metric << "\n"; 
2054     if (FMetric < Metric) {
2055       Pivot = J;
2056       FMetric = Metric;
2057       DOUT << "Current metric set to: " << FMetric << "\n";
2058     }
2059
2060     LSize += J->size();
2061     RSize -= J->size();
2062   }
2063   if (areJTsAllowed(TLI)) {
2064     // If our case is dense we *really* should handle it earlier!
2065     assert((FMetric > 0) && "Should handle dense range earlier!");
2066   } else {
2067     Pivot = CR.Range.first + Size/2;
2068   }
2069   
2070   CaseRange LHSR(CR.Range.first, Pivot);
2071   CaseRange RHSR(Pivot, CR.Range.second);
2072   Constant *C = Pivot->Low;
2073   MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
2074       
2075   // We know that we branch to the LHS if the Value being switched on is
2076   // less than the Pivot value, C.  We use this to optimize our binary 
2077   // tree a bit, by recognizing that if SV is greater than or equal to the
2078   // LHS's Case Value, and that Case Value is exactly one less than the 
2079   // Pivot's Value, then we can branch directly to the LHS's Target,
2080   // rather than creating a leaf node for it.
2081   if ((LHSR.second - LHSR.first) == 1 &&
2082       LHSR.first->High == CR.GE &&
2083       cast<ConstantInt>(C)->getSExtValue() ==
2084       (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
2085     TrueBB = LHSR.first->BB;
2086   } else {
2087     TrueBB = new MachineBasicBlock(LLVMBB);
2088     CurMF->getBasicBlockList().insert(BBI, TrueBB);
2089     WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
2090   }
2091   
2092   // Similar to the optimization above, if the Value being switched on is
2093   // known to be less than the Constant CR.LT, and the current Case Value
2094   // is CR.LT - 1, then we can branch directly to the target block for
2095   // the current Case Value, rather than emitting a RHS leaf node for it.
2096   if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
2097       cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
2098       (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
2099     FalseBB = RHSR.first->BB;
2100   } else {
2101     FalseBB = new MachineBasicBlock(LLVMBB);
2102     CurMF->getBasicBlockList().insert(BBI, FalseBB);
2103     WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
2104   }
2105
2106   // Create a CaseBlock record representing a conditional branch to
2107   // the LHS node if the value being switched on SV is less than C. 
2108   // Otherwise, branch to LHS.
2109   SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
2110                                  TrueBB, FalseBB, CR.CaseBB);
2111
2112   if (CR.CaseBB == CurMBB)
2113     visitSwitchCase(CB);
2114   else
2115     SwitchCases.push_back(CB);
2116
2117   return true;
2118 }
2119
2120 /// handleBitTestsSwitchCase - if current case range has few destination and
2121 /// range span less, than machine word bitwidth, encode case range into series
2122 /// of masks and emit bit tests with these masks.
2123 bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
2124                                                     CaseRecVector& WorkList,
2125                                                     Value* SV,
2126                                                     MachineBasicBlock* Default){
2127   unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
2128
2129   Case& FrontCase = *CR.Range.first;
2130   Case& BackCase  = *(CR.Range.second-1);
2131
2132   // Get the MachineFunction which holds the current MBB.  This is used when
2133   // inserting any additional MBBs necessary to represent the switch.
2134   MachineFunction *CurMF = CurMBB->getParent();  
2135
2136   unsigned numCmps = 0;
2137   for (CaseItr I = CR.Range.first, E = CR.Range.second;
2138        I!=E; ++I) {
2139     // Single case counts one, case range - two.
2140     if (I->Low == I->High)
2141       numCmps +=1;
2142     else
2143       numCmps +=2;
2144   }
2145     
2146   // Count unique destinations
2147   SmallSet<MachineBasicBlock*, 4> Dests;
2148   for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2149     Dests.insert(I->BB);
2150     if (Dests.size() > 3)
2151       // Don't bother the code below, if there are too much unique destinations
2152       return false;
2153   }
2154   DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
2155        << "Total number of comparisons: " << numCmps << "\n";
2156   
2157   // Compute span of values.
2158   Constant* minValue = FrontCase.Low;
2159   Constant* maxValue = BackCase.High;
2160   uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
2161                    cast<ConstantInt>(minValue)->getSExtValue();
2162   DOUT << "Compare range: " << range << "\n"
2163        << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
2164        << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
2165   
2166   if (range>=IntPtrBits ||
2167       (!(Dests.size() == 1 && numCmps >= 3) &&
2168        !(Dests.size() == 2 && numCmps >= 5) &&
2169        !(Dests.size() >= 3 && numCmps >= 6)))
2170     return false;
2171   
2172   DOUT << "Emitting bit tests\n";
2173   int64_t lowBound = 0;
2174     
2175   // Optimize the case where all the case values fit in a
2176   // word without having to subtract minValue. In this case,
2177   // we can optimize away the subtraction.
2178   if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
2179       cast<ConstantInt>(maxValue)->getSExtValue() <  IntPtrBits) {
2180     range = cast<ConstantInt>(maxValue)->getSExtValue();
2181   } else {
2182     lowBound = cast<ConstantInt>(minValue)->getSExtValue();
2183   }
2184     
2185   CaseBitsVector CasesBits;
2186   unsigned i, count = 0;
2187
2188   for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
2189     MachineBasicBlock* Dest = I->BB;
2190     for (i = 0; i < count; ++i)
2191       if (Dest == CasesBits[i].BB)
2192         break;
2193     
2194     if (i == count) {
2195       assert((count < 3) && "Too much destinations to test!");
2196       CasesBits.push_back(CaseBits(0, Dest, 0));
2197       count++;
2198     }
2199     
2200     uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
2201     uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
2202     
2203     for (uint64_t j = lo; j <= hi; j++) {
2204       CasesBits[i].Mask |=  1ULL << j;
2205       CasesBits[i].Bits++;
2206     }
2207       
2208   }
2209   std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
2210   
2211   SelectionDAGISel::BitTestInfo BTC;
2212
2213   // Figure out which block is immediately after the current one.
2214   MachineFunction::iterator BBI = CR.CaseBB;
2215   ++BBI;
2216
2217   const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2218
2219   DOUT << "Cases:\n";
2220   for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
2221     DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
2222          << ", BB: " << CasesBits[i].BB << "\n";
2223
2224     MachineBasicBlock *CaseBB = new MachineBasicBlock(LLVMBB);
2225     CurMF->getBasicBlockList().insert(BBI, CaseBB);
2226     BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
2227                                                 CaseBB,
2228                                                 CasesBits[i].BB));
2229   }
2230   
2231   SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
2232                                      -1U, (CR.CaseBB == CurMBB),
2233                                      CR.CaseBB, Default, BTC);
2234
2235   if (CR.CaseBB == CurMBB)
2236     visitBitTestHeader(BTB);
2237   
2238   BitTestCases.push_back(BTB);
2239
2240   return true;
2241 }
2242
2243
2244 /// Clusterify - Transform simple list of Cases into list of CaseRange's
2245 unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
2246                                           const SwitchInst& SI) {
2247   unsigned numCmps = 0;
2248
2249   // Start with "simple" cases
2250   for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
2251     MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2252     Cases.push_back(Case(SI.getSuccessorValue(i),
2253                          SI.getSuccessorValue(i),
2254                          SMBB));
2255   }
2256   std::sort(Cases.begin(), Cases.end(), CaseCmp());
2257
2258   // Merge case into clusters
2259   if (Cases.size()>=2)
2260     // Must recompute end() each iteration because it may be
2261     // invalidated by erase if we hold on to it
2262     for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
2263       int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
2264       int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
2265       MachineBasicBlock* nextBB = J->BB;
2266       MachineBasicBlock* currentBB = I->BB;
2267
2268       // If the two neighboring cases go to the same destination, merge them
2269       // into a single case.
2270       if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
2271         I->High = J->High;
2272         J = Cases.erase(J);
2273       } else {
2274         I = J++;
2275       }
2276     }
2277
2278   for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2279     if (I->Low != I->High)
2280       // A range counts double, since it requires two compares.
2281       ++numCmps;
2282   }
2283
2284   return numCmps;
2285 }
2286
2287 void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {  
2288   // Figure out which block is immediately after the current one.
2289   MachineBasicBlock *NextBlock = 0;
2290   MachineFunction::iterator BBI = CurMBB;
2291
2292   MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2293
2294   // If there is only the default destination, branch to it if it is not the
2295   // next basic block.  Otherwise, just fall through.
2296   if (SI.getNumOperands() == 2) {
2297     // Update machine-CFG edges.
2298
2299     // If this is not a fall-through branch, emit the branch.
2300     CurMBB->addSuccessor(Default);
2301     if (Default != NextBlock)
2302       DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getControlRoot(),
2303                               DAG.getBasicBlock(Default)));
2304     
2305     return;
2306   }
2307   
2308   // If there are any non-default case statements, create a vector of Cases
2309   // representing each one, and sort the vector so that we can efficiently
2310   // create a binary search tree from them.
2311   CaseVector Cases;
2312   unsigned numCmps = Clusterify(Cases, SI);
2313   DOUT << "Clusterify finished. Total clusters: " << Cases.size()
2314        << ". Total compares: " << numCmps << "\n";
2315
2316   // Get the Value to be switched on and default basic blocks, which will be
2317   // inserted into CaseBlock records, representing basic blocks in the binary
2318   // search tree.
2319   Value *SV = SI.getOperand(0);
2320
2321   // Push the initial CaseRec onto the worklist
2322   CaseRecVector WorkList;
2323   WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2324
2325   while (!WorkList.empty()) {
2326     // Grab a record representing a case range to process off the worklist
2327     CaseRec CR = WorkList.back();
2328     WorkList.pop_back();
2329
2330     if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2331       continue;
2332     
2333     // If the range has few cases (two or less) emit a series of specific
2334     // tests.
2335     if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2336       continue;
2337     
2338     // If the switch has more than 5 blocks, and at least 40% dense, and the 
2339     // target supports indirect branches, then emit a jump table rather than 
2340     // lowering the switch to a binary tree of conditional branches.
2341     if (handleJTSwitchCase(CR, WorkList, SV, Default))
2342       continue;
2343           
2344     // Emit binary tree. We need to pick a pivot, and push left and right ranges
2345     // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2346     handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2347   }
2348 }
2349
2350
2351 void SelectionDAGLowering::visitSub(User &I) {
2352   // -0.0 - X --> fneg
2353   const Type *Ty = I.getType();
2354   if (isa<VectorType>(Ty)) {
2355     if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2356       const VectorType *DestTy = cast<VectorType>(I.getType());
2357       const Type *ElTy = DestTy->getElementType();
2358       if (ElTy->isFloatingPoint()) {
2359         unsigned VL = DestTy->getNumElements();
2360         std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2361         Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2362         if (CV == CNZ) {
2363           SDOperand Op2 = getValue(I.getOperand(1));
2364           setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2365           return;
2366         }
2367       }
2368     }
2369   }
2370   if (Ty->isFloatingPoint()) {
2371     if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2372       if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2373         SDOperand Op2 = getValue(I.getOperand(1));
2374         setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
2375         return;
2376       }
2377   }
2378
2379   visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2380 }
2381
2382 void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2383   SDOperand Op1 = getValue(I.getOperand(0));
2384   SDOperand Op2 = getValue(I.getOperand(1));
2385   
2386   setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
2387 }
2388
2389 void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2390   SDOperand Op1 = getValue(I.getOperand(0));
2391   SDOperand Op2 = getValue(I.getOperand(1));
2392   
2393   if (TLI.getShiftAmountTy().bitsLT(Op2.getValueType()))
2394     Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
2395   else if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2396     Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
2397   
2398   setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
2399 }
2400
2401 void SelectionDAGLowering::visitICmp(User &I) {
2402   ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2403   if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2404     predicate = IC->getPredicate();
2405   else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2406     predicate = ICmpInst::Predicate(IC->getPredicate());
2407   SDOperand Op1 = getValue(I.getOperand(0));
2408   SDOperand Op2 = getValue(I.getOperand(1));
2409   ISD::CondCode Opcode;
2410   switch (predicate) {
2411     case ICmpInst::ICMP_EQ  : Opcode = ISD::SETEQ; break;
2412     case ICmpInst::ICMP_NE  : Opcode = ISD::SETNE; break;
2413     case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2414     case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2415     case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2416     case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2417     case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2418     case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2419     case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2420     case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2421     default:
2422       assert(!"Invalid ICmp predicate value");
2423       Opcode = ISD::SETEQ;
2424       break;
2425   }
2426   setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2427 }
2428
2429 void SelectionDAGLowering::visitFCmp(User &I) {
2430   FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2431   if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2432     predicate = FC->getPredicate();
2433   else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2434     predicate = FCmpInst::Predicate(FC->getPredicate());
2435   SDOperand Op1 = getValue(I.getOperand(0));
2436   SDOperand Op2 = getValue(I.getOperand(1));
2437   ISD::CondCode Condition, FOC, FPC;
2438   switch (predicate) {
2439     case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2440     case FCmpInst::FCMP_OEQ:   FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2441     case FCmpInst::FCMP_OGT:   FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2442     case FCmpInst::FCMP_OGE:   FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2443     case FCmpInst::FCMP_OLT:   FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2444     case FCmpInst::FCMP_OLE:   FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2445     case FCmpInst::FCMP_ONE:   FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2446     case FCmpInst::FCMP_ORD:   FOC = FPC = ISD::SETO;   break;
2447     case FCmpInst::FCMP_UNO:   FOC = FPC = ISD::SETUO;  break;
2448     case FCmpInst::FCMP_UEQ:   FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2449     case FCmpInst::FCMP_UGT:   FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2450     case FCmpInst::FCMP_UGE:   FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2451     case FCmpInst::FCMP_ULT:   FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2452     case FCmpInst::FCMP_ULE:   FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2453     case FCmpInst::FCMP_UNE:   FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2454     case FCmpInst::FCMP_TRUE:  FOC = FPC = ISD::SETTRUE; break;
2455     default:
2456       assert(!"Invalid FCmp predicate value");
2457       FOC = FPC = ISD::SETFALSE;
2458       break;
2459   }
2460   if (FiniteOnlyFPMath())
2461     Condition = FOC;
2462   else 
2463     Condition = FPC;
2464   setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
2465 }
2466
2467 void SelectionDAGLowering::visitVICmp(User &I) {
2468   ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2469   if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2470     predicate = IC->getPredicate();
2471   else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2472     predicate = ICmpInst::Predicate(IC->getPredicate());
2473   SDOperand Op1 = getValue(I.getOperand(0));
2474   SDOperand Op2 = getValue(I.getOperand(1));
2475   ISD::CondCode Opcode;
2476   switch (predicate) {
2477     case ICmpInst::ICMP_EQ  : Opcode = ISD::SETEQ; break;
2478     case ICmpInst::ICMP_NE  : Opcode = ISD::SETNE; break;
2479     case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
2480     case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
2481     case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
2482     case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
2483     case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
2484     case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
2485     case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
2486     case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
2487     default:
2488       assert(!"Invalid ICmp predicate value");
2489       Opcode = ISD::SETEQ;
2490       break;
2491   }
2492   setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2493 }
2494
2495 void SelectionDAGLowering::visitVFCmp(User &I) {
2496   FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2497   if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2498     predicate = FC->getPredicate();
2499   else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2500     predicate = FCmpInst::Predicate(FC->getPredicate());
2501   SDOperand Op1 = getValue(I.getOperand(0));
2502   SDOperand Op2 = getValue(I.getOperand(1));
2503   ISD::CondCode Condition, FOC, FPC;
2504   switch (predicate) {
2505     case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
2506     case FCmpInst::FCMP_OEQ:   FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2507     case FCmpInst::FCMP_OGT:   FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2508     case FCmpInst::FCMP_OGE:   FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2509     case FCmpInst::FCMP_OLT:   FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2510     case FCmpInst::FCMP_OLE:   FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2511     case FCmpInst::FCMP_ONE:   FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2512     case FCmpInst::FCMP_ORD:   FOC = FPC = ISD::SETO;   break;
2513     case FCmpInst::FCMP_UNO:   FOC = FPC = ISD::SETUO;  break;
2514     case FCmpInst::FCMP_UEQ:   FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2515     case FCmpInst::FCMP_UGT:   FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2516     case FCmpInst::FCMP_UGE:   FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2517     case FCmpInst::FCMP_ULT:   FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2518     case FCmpInst::FCMP_ULE:   FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2519     case FCmpInst::FCMP_UNE:   FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2520     case FCmpInst::FCMP_TRUE:  FOC = FPC = ISD::SETTRUE; break;
2521     default:
2522       assert(!"Invalid VFCmp predicate value");
2523       FOC = FPC = ISD::SETFALSE;
2524       break;
2525   }
2526   if (FiniteOnlyFPMath())
2527     Condition = FOC;
2528   else 
2529     Condition = FPC;
2530     
2531   MVT DestVT = TLI.getValueType(I.getType());
2532     
2533   setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2534 }
2535
2536 void SelectionDAGLowering::visitSelect(User &I) {
2537   SDOperand Cond     = getValue(I.getOperand(0));
2538   SDOperand TrueVal  = getValue(I.getOperand(1));
2539   SDOperand FalseVal = getValue(I.getOperand(2));
2540   setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2541                            TrueVal, FalseVal));
2542 }
2543
2544
2545 void SelectionDAGLowering::visitTrunc(User &I) {
2546   // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2547   SDOperand N = getValue(I.getOperand(0));
2548   MVT DestVT = TLI.getValueType(I.getType());
2549   setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2550 }
2551
2552 void SelectionDAGLowering::visitZExt(User &I) {
2553   // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2554   // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2555   SDOperand N = getValue(I.getOperand(0));
2556   MVT DestVT = TLI.getValueType(I.getType());
2557   setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2558 }
2559
2560 void SelectionDAGLowering::visitSExt(User &I) {
2561   // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2562   // SExt also can't be a cast to bool for same reason. So, nothing much to do
2563   SDOperand N = getValue(I.getOperand(0));
2564   MVT DestVT = TLI.getValueType(I.getType());
2565   setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2566 }
2567
2568 void SelectionDAGLowering::visitFPTrunc(User &I) {
2569   // FPTrunc is never a no-op cast, no need to check
2570   SDOperand N = getValue(I.getOperand(0));
2571   MVT DestVT = TLI.getValueType(I.getType());
2572   setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N, DAG.getIntPtrConstant(0)));
2573 }
2574
2575 void SelectionDAGLowering::visitFPExt(User &I){ 
2576   // FPTrunc is never a no-op cast, no need to check
2577   SDOperand N = getValue(I.getOperand(0));
2578   MVT DestVT = TLI.getValueType(I.getType());
2579   setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2580 }
2581
2582 void SelectionDAGLowering::visitFPToUI(User &I) { 
2583   // FPToUI is never a no-op cast, no need to check
2584   SDOperand N = getValue(I.getOperand(0));
2585   MVT DestVT = TLI.getValueType(I.getType());
2586   setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2587 }
2588
2589 void SelectionDAGLowering::visitFPToSI(User &I) {
2590   // FPToSI is never a no-op cast, no need to check
2591   SDOperand N = getValue(I.getOperand(0));
2592   MVT DestVT = TLI.getValueType(I.getType());
2593   setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2594 }
2595
2596 void SelectionDAGLowering::visitUIToFP(User &I) { 
2597   // UIToFP is never a no-op cast, no need to check
2598   SDOperand N = getValue(I.getOperand(0));
2599   MVT DestVT = TLI.getValueType(I.getType());
2600   setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2601 }
2602
2603 void SelectionDAGLowering::visitSIToFP(User &I){ 
2604   // UIToFP is never a no-op cast, no need to check
2605   SDOperand N = getValue(I.getOperand(0));
2606   MVT DestVT = TLI.getValueType(I.getType());
2607   setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2608 }
2609
2610 void SelectionDAGLowering::visitPtrToInt(User &I) {
2611   // What to do depends on the size of the integer and the size of the pointer.
2612   // We can either truncate, zero extend, or no-op, accordingly.
2613   SDOperand N = getValue(I.getOperand(0));
2614   MVT SrcVT = N.getValueType();
2615   MVT DestVT = TLI.getValueType(I.getType());
2616   SDOperand Result;
2617   if (DestVT.bitsLT(SrcVT))
2618     Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2619   else 
2620     // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2621     Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2622   setValue(&I, Result);
2623 }
2624
2625 void SelectionDAGLowering::visitIntToPtr(User &I) {
2626   // What to do depends on the size of the integer and the size of the pointer.
2627   // We can either truncate, zero extend, or no-op, accordingly.
2628   SDOperand N = getValue(I.getOperand(0));
2629   MVT SrcVT = N.getValueType();
2630   MVT DestVT = TLI.getValueType(I.getType());
2631   if (DestVT.bitsLT(SrcVT))
2632     setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2633   else 
2634     // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2635     setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2636 }
2637
2638 void SelectionDAGLowering::visitBitCast(User &I) { 
2639   SDOperand N = getValue(I.getOperand(0));
2640   MVT DestVT = TLI.getValueType(I.getType());
2641
2642   // BitCast assures us that source and destination are the same size so this 
2643   // is either a BIT_CONVERT or a no-op.
2644   if (DestVT != N.getValueType())
2645     setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2646   else
2647     setValue(&I, N); // noop cast.
2648 }
2649
2650 void SelectionDAGLowering::visitInsertElement(User &I) {
2651   SDOperand InVec = getValue(I.getOperand(0));
2652   SDOperand InVal = getValue(I.getOperand(1));
2653   SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2654                                 getValue(I.getOperand(2)));
2655
2656   setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT,
2657                            TLI.getValueType(I.getType()),
2658                            InVec, InVal, InIdx));
2659 }
2660
2661 void SelectionDAGLowering::visitExtractElement(User &I) {
2662   SDOperand InVec = getValue(I.getOperand(0));
2663   SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2664                                 getValue(I.getOperand(1)));
2665   setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
2666                            TLI.getValueType(I.getType()), InVec, InIdx));
2667 }
2668
2669 void SelectionDAGLowering::visitShuffleVector(User &I) {
2670   SDOperand V1   = getValue(I.getOperand(0));
2671   SDOperand V2   = getValue(I.getOperand(1));
2672   SDOperand Mask = getValue(I.getOperand(2));
2673
2674   setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE,
2675                            TLI.getValueType(I.getType()),
2676                            V1, V2, Mask));
2677 }
2678
2679 void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2680   const Value *Op0 = I.getOperand(0);
2681   const Value *Op1 = I.getOperand(1);
2682   const Type *AggTy = I.getType();
2683   const Type *ValTy = Op1->getType();
2684   bool IntoUndef = isa<UndefValue>(Op0);
2685   bool FromUndef = isa<UndefValue>(Op1);
2686
2687   unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2688                                             I.idx_begin(), I.idx_end());
2689
2690   SmallVector<MVT, 4> AggValueVTs;
2691   ComputeValueVTs(TLI, AggTy, AggValueVTs);
2692   SmallVector<MVT, 4> ValValueVTs;
2693   ComputeValueVTs(TLI, ValTy, ValValueVTs);
2694
2695   unsigned NumAggValues = AggValueVTs.size();
2696   unsigned NumValValues = ValValueVTs.size();
2697   SmallVector<SDOperand, 4> Values(NumAggValues);
2698
2699   SDOperand Agg = getValue(Op0);
2700   SDOperand Val = getValue(Op1);
2701   unsigned i = 0;
2702   // Copy the beginning value(s) from the original aggregate.
2703   for (; i != LinearIndex; ++i)
2704     Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2705                 SDOperand(Agg.Val, Agg.ResNo + i);
2706   // Copy values from the inserted value(s).
2707   for (; i != LinearIndex + NumValValues; ++i)
2708     Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2709                 SDOperand(Val.Val, Val.ResNo + i - LinearIndex);
2710   // Copy remaining value(s) from the original aggregate.
2711   for (; i != NumAggValues; ++i)
2712     Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, AggValueVTs[i]) :
2713                 SDOperand(Agg.Val, Agg.ResNo + i);
2714
2715   setValue(&I, DAG.getMergeValues(DAG.getVTList(&AggValueVTs[0], NumAggValues),
2716                                   &Values[0], NumAggValues));
2717 }
2718
2719 void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2720   const Value *Op0 = I.getOperand(0);
2721   const Type *AggTy = Op0->getType();
2722   const Type *ValTy = I.getType();
2723   bool OutOfUndef = isa<UndefValue>(Op0);
2724
2725   unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2726                                             I.idx_begin(), I.idx_end());
2727
2728   SmallVector<MVT, 4> ValValueVTs;
2729   ComputeValueVTs(TLI, ValTy, ValValueVTs);
2730
2731   unsigned NumValValues = ValValueVTs.size();
2732   SmallVector<SDOperand, 4> Values(NumValValues);
2733
2734   SDOperand Agg = getValue(Op0);
2735   // Copy out the selected value(s).
2736   for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2737     Values[i - LinearIndex] =
2738       OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
2739                    SDOperand(Agg.Val, Agg.ResNo + i);
2740
2741   setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
2742                                   &Values[0], NumValValues));
2743 }
2744
2745
2746 void SelectionDAGLowering::visitGetElementPtr(User &I) {
2747   SDOperand N = getValue(I.getOperand(0));
2748   const Type *Ty = I.getOperand(0)->getType();
2749
2750   for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2751        OI != E; ++OI) {
2752     Value *Idx = *OI;
2753     if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2754       unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2755       if (Field) {
2756         // N = N + Offset
2757         uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
2758         N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2759                         DAG.getIntPtrConstant(Offset));
2760       }
2761       Ty = StTy->getElementType(Field);
2762     } else {
2763       Ty = cast<SequentialType>(Ty)->getElementType();
2764
2765       // If this is a constant subscript, handle it quickly.
2766       if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2767         if (CI->getZExtValue() == 0) continue;
2768         uint64_t Offs = 
2769             TD->getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
2770         N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2771                         DAG.getIntPtrConstant(Offs));
2772         continue;
2773       }
2774       
2775       // N = N + Idx * ElementSize;
2776       uint64_t ElementSize = TD->getABITypeSize(Ty);
2777       SDOperand IdxN = getValue(Idx);
2778
2779       // If the index is smaller or larger than intptr_t, truncate or extend
2780       // it.
2781       if (IdxN.getValueType().bitsLT(N.getValueType())) {
2782         IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
2783       } else if (IdxN.getValueType().bitsGT(N.getValueType()))
2784         IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2785
2786       // If this is a multiply by a power of two, turn it into a shl
2787       // immediately.  This is a very common case.
2788       if (isPowerOf2_64(ElementSize)) {
2789         unsigned Amt = Log2_64(ElementSize);
2790         IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
2791                            DAG.getConstant(Amt, TLI.getShiftAmountTy()));
2792         N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2793         continue;
2794       }
2795       
2796       SDOperand Scale = DAG.getIntPtrConstant(ElementSize);
2797       IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2798       N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2799     }
2800   }
2801   setValue(&I, N);
2802 }
2803
2804 void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2805   // If this is a fixed sized alloca in the entry block of the function,
2806   // allocate it statically on the stack.
2807   if (FuncInfo.StaticAllocaMap.count(&I))
2808     return;   // getValue will auto-populate this.
2809
2810   const Type *Ty = I.getAllocatedType();
2811   uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
2812   unsigned Align =
2813     std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2814              I.getAlignment());
2815
2816   SDOperand AllocSize = getValue(I.getArraySize());
2817   MVT IntPtr = TLI.getPointerTy();
2818   if (IntPtr.bitsLT(AllocSize.getValueType()))
2819     AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
2820   else if (IntPtr.bitsGT(AllocSize.getValueType()))
2821     AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
2822
2823   AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
2824                           DAG.getIntPtrConstant(TySize));
2825
2826   // Handle alignment.  If the requested alignment is less than or equal to
2827   // the stack alignment, ignore it.  If the size is greater than or equal to
2828   // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2829   unsigned StackAlign =
2830     TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2831   if (Align <= StackAlign)
2832     Align = 0;
2833
2834   // Round the size of the allocation up to the stack alignment size
2835   // by add SA-1 to the size.
2836   AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
2837                           DAG.getIntPtrConstant(StackAlign-1));
2838   // Mask out the low bits for alignment purposes.
2839   AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
2840                           DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2841
2842   SDOperand Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
2843   const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2844                                                     MVT::Other);
2845   SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
2846   setValue(&I, DSA);
2847   DAG.setRoot(DSA.getValue(1));
2848
2849   // Inform the Frame Information that we have just allocated a variable-sized
2850   // object.
2851   CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2852 }
2853
2854 void SelectionDAGLowering::visitLoad(LoadInst &I) {
2855   const Value *SV = I.getOperand(0);
2856   SDOperand Ptr = getValue(SV);
2857
2858   const Type *Ty = I.getType();
2859   bool isVolatile = I.isVolatile();
2860   unsigned Alignment = I.getAlignment();
2861
2862   SmallVector<MVT, 4> ValueVTs;
2863   SmallVector<uint64_t, 4> Offsets;
2864   ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2865   unsigned NumValues = ValueVTs.size();
2866   if (NumValues == 0)
2867     return;
2868
2869   SDOperand Root;
2870   if (I.isVolatile())
2871     Root = getRoot();
2872   else {
2873     // Do not serialize non-volatile loads against each other.
2874     Root = DAG.getRoot();
2875   }
2876
2877   SmallVector<SDOperand, 4> Values(NumValues);
2878   SmallVector<SDOperand, 4> Chains(NumValues);
2879   MVT PtrVT = Ptr.getValueType();
2880   for (unsigned i = 0; i != NumValues; ++i) {
2881     SDOperand L = DAG.getLoad(ValueVTs[i], Root,
2882                               DAG.getNode(ISD::ADD, PtrVT, Ptr,
2883                                           DAG.getConstant(Offsets[i], PtrVT)),
2884                               SV, Offsets[i],
2885                               isVolatile, Alignment);
2886     Values[i] = L;
2887     Chains[i] = L.getValue(1);
2888   }
2889   
2890   SDOperand Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
2891                                 &Chains[0], NumValues);
2892   if (isVolatile)
2893     DAG.setRoot(Chain);
2894   else
2895     PendingLoads.push_back(Chain);
2896
2897   setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], NumValues),
2898                                   &Values[0], NumValues));
2899 }
2900
2901
2902 void SelectionDAGLowering::visitStore(StoreInst &I) {
2903   Value *SrcV = I.getOperand(0);
2904   SDOperand Src = getValue(SrcV);
2905   Value *PtrV = I.getOperand(1);
2906   SDOperand Ptr = getValue(PtrV);
2907
2908   SmallVector<MVT, 4> ValueVTs;
2909   SmallVector<uint64_t, 4> Offsets;
2910   ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2911   unsigned NumValues = ValueVTs.size();
2912   if (NumValues == 0)
2913     return;
2914
2915   SDOperand Root = getRoot();
2916   SmallVector<SDOperand, 4> Chains(NumValues);
2917   MVT PtrVT = Ptr.getValueType();
2918   bool isVolatile = I.isVolatile();
2919   unsigned Alignment = I.getAlignment();
2920   for (unsigned i = 0; i != NumValues; ++i)
2921     Chains[i] = DAG.getStore(Root, SDOperand(Src.Val, Src.ResNo + i),
2922                              DAG.getNode(ISD::ADD, PtrVT, Ptr,
2923                                          DAG.getConstant(Offsets[i], PtrVT)),
2924                              PtrV, Offsets[i],
2925                              isVolatile, Alignment);
2926
2927   DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumValues));
2928 }
2929
2930 /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2931 /// node.
2932 void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, 
2933                                                 unsigned Intrinsic) {
2934   bool HasChain = !I.doesNotAccessMemory();
2935   bool OnlyLoad = HasChain && I.onlyReadsMemory();
2936
2937   // Build the operand list.
2938   SmallVector<SDOperand, 8> Ops;
2939   if (HasChain) {  // If this intrinsic has side-effects, chainify it.
2940     if (OnlyLoad) {
2941       // We don't need to serialize loads against other loads.
2942       Ops.push_back(DAG.getRoot());
2943     } else { 
2944       Ops.push_back(getRoot());
2945     }
2946   }
2947   
2948   // Add the intrinsic ID as an integer operand.
2949   Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2950
2951   // Add all operands of the call to the operand list.
2952   for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2953     SDOperand Op = getValue(I.getOperand(i));
2954     assert(TLI.isTypeLegal(Op.getValueType()) &&
2955            "Intrinsic uses a non-legal type?");
2956     Ops.push_back(Op);
2957   }
2958
2959   std::vector<MVT> VTs;
2960   if (I.getType() != Type::VoidTy) {
2961     MVT VT = TLI.getValueType(I.getType());
2962     if (VT.isVector()) {
2963       const VectorType *DestTy = cast<VectorType>(I.getType());
2964       MVT EltVT = TLI.getValueType(DestTy->getElementType());
2965       
2966       VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2967       assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2968     }
2969     
2970     assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2971     VTs.push_back(VT);
2972   }
2973   if (HasChain)
2974     VTs.push_back(MVT::Other);
2975
2976   const MVT *VTList = DAG.getNodeValueTypes(VTs);
2977
2978   // Create the node.
2979   SDOperand Result;
2980   if (!HasChain)
2981     Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2982                          &Ops[0], Ops.size());
2983   else if (I.getType() != Type::VoidTy)
2984     Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2985                          &Ops[0], Ops.size());
2986   else
2987     Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
2988                          &Ops[0], Ops.size());
2989
2990   if (HasChain) {
2991     SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
2992     if (OnlyLoad)
2993       PendingLoads.push_back(Chain);
2994     else
2995       DAG.setRoot(Chain);
2996   }
2997   if (I.getType() != Type::VoidTy) {
2998     if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2999       MVT VT = TLI.getValueType(PTy);
3000       Result = DAG.getNode(ISD::BIT_CONVERT, VT, Result);
3001     } 
3002     setValue(&I, Result);
3003   }
3004 }
3005
3006 /// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
3007 static GlobalVariable *ExtractTypeInfo (Value *V) {
3008   V = V->stripPointerCasts();
3009   GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
3010   assert ((GV || isa<ConstantPointerNull>(V)) &&
3011           "TypeInfo must be a global variable or NULL");
3012   return GV;
3013 }
3014
3015 /// addCatchInfo - Extract the personality and type infos from an eh.selector
3016 /// call, and add them to the specified machine basic block.
3017 static void addCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3018                          MachineBasicBlock *MBB) {
3019   // Inform the MachineModuleInfo of the personality for this landing pad.
3020   ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3021   assert(CE->getOpcode() == Instruction::BitCast &&
3022          isa<Function>(CE->getOperand(0)) &&
3023          "Personality should be a function");
3024   MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3025
3026   // Gather all the type infos for this landing pad and pass them along to
3027   // MachineModuleInfo.
3028   std::vector<GlobalVariable *> TyInfo;
3029   unsigned N = I.getNumOperands();
3030
3031   for (unsigned i = N - 1; i > 2; --i) {
3032     if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3033       unsigned FilterLength = CI->getZExtValue();
3034       unsigned FirstCatch = i + FilterLength + !FilterLength;
3035       assert (FirstCatch <= N && "Invalid filter length");
3036
3037       if (FirstCatch < N) {
3038         TyInfo.reserve(N - FirstCatch);
3039         for (unsigned j = FirstCatch; j < N; ++j)
3040           TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3041         MMI->addCatchTypeInfo(MBB, TyInfo);
3042         TyInfo.clear();
3043       }
3044
3045       if (!FilterLength) {
3046         // Cleanup.
3047         MMI->addCleanup(MBB);
3048       } else {
3049         // Filter.
3050         TyInfo.reserve(FilterLength - 1);
3051         for (unsigned j = i + 1; j < FirstCatch; ++j)
3052           TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3053         MMI->addFilterTypeInfo(MBB, TyInfo);
3054         TyInfo.clear();
3055       }
3056
3057       N = i;
3058     }
3059   }
3060
3061   if (N > 3) {
3062     TyInfo.reserve(N - 3);
3063     for (unsigned j = 3; j < N; ++j)
3064       TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3065     MMI->addCatchTypeInfo(MBB, TyInfo);
3066   }
3067 }
3068
3069
3070 /// Inlined utility function to implement binary input atomic intrinsics for 
3071 // visitIntrinsicCall: I is a call instruction
3072 //                     Op is the associated NodeType for I
3073 const char *
3074 SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
3075   SDOperand Root = getRoot();   
3076   SDOperand L = DAG.getAtomic(Op, Root, 
3077                               getValue(I.getOperand(1)), 
3078                               getValue(I.getOperand(2)),
3079                               I.getOperand(1));
3080   setValue(&I, L);
3081   DAG.setRoot(L.getValue(1));
3082   return 0;
3083 }
3084
3085 /// visitIntrinsicCall - Lower the call to the specified intrinsic function.  If
3086 /// we want to emit this as a call to a named external function, return the name
3087 /// otherwise lower it and return null.
3088 const char *
3089 SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
3090   switch (Intrinsic) {
3091   default:
3092     // By default, turn this into a target intrinsic node.
3093     visitTargetIntrinsic(I, Intrinsic);
3094     return 0;
3095   case Intrinsic::vastart:  visitVAStart(I); return 0;
3096   case Intrinsic::vaend:    visitVAEnd(I); return 0;
3097   case Intrinsic::vacopy:   visitVACopy(I); return 0;
3098   case Intrinsic::returnaddress:
3099     setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
3100                              getValue(I.getOperand(1))));
3101     return 0;
3102   case Intrinsic::frameaddress:
3103     setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
3104                              getValue(I.getOperand(1))));
3105     return 0;
3106   case Intrinsic::setjmp:
3107     return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3108     break;
3109   case Intrinsic::longjmp:
3110     return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3111     break;
3112   case Intrinsic::memcpy_i32:
3113   case Intrinsic::memcpy_i64: {
3114     SDOperand Op1 = getValue(I.getOperand(1));
3115     SDOperand Op2 = getValue(I.getOperand(2));
3116     SDOperand Op3 = getValue(I.getOperand(3));
3117     unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3118     DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3119                               I.getOperand(1), 0, I.getOperand(2), 0));
3120     return 0;
3121   }
3122   case Intrinsic::memset_i32:
3123   case Intrinsic::memset_i64: {
3124     SDOperand Op1 = getValue(I.getOperand(1));
3125     SDOperand Op2 = getValue(I.getOperand(2));
3126     SDOperand Op3 = getValue(I.getOperand(3));
3127     unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3128     DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3129                               I.getOperand(1), 0));
3130     return 0;
3131   }
3132   case Intrinsic::memmove_i32:
3133   case Intrinsic::memmove_i64: {
3134     SDOperand Op1 = getValue(I.getOperand(1));
3135     SDOperand Op2 = getValue(I.getOperand(2));
3136     SDOperand Op3 = getValue(I.getOperand(3));
3137     unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3138
3139     // If the source and destination are known to not be aliases, we can
3140     // lower memmove as memcpy.
3141     uint64_t Size = -1ULL;
3142     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
3143       Size = C->getValue();
3144     if (AA.alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3145         AliasAnalysis::NoAlias) {
3146       DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3147                                 I.getOperand(1), 0, I.getOperand(2), 0));
3148       return 0;
3149     }
3150
3151     DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3152                                I.getOperand(1), 0, I.getOperand(2), 0));
3153     return 0;
3154   }
3155   case Intrinsic::dbg_stoppoint: {
3156     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3157     DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
3158     if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
3159       DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
3160       assert(DD && "Not a debug information descriptor");
3161       DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3162                                       SPI.getLine(),
3163                                       SPI.getColumn(),
3164                                       cast<CompileUnitDesc>(DD)));
3165     }
3166
3167     return 0;
3168   }
3169   case Intrinsic::dbg_region_start: {
3170     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3171     DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
3172     if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
3173       unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
3174       DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
3175     }
3176
3177     return 0;
3178   }
3179   case Intrinsic::dbg_region_end: {
3180     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3181     DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
3182     if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
3183       unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
3184       DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
3185     }
3186
3187     return 0;
3188   }
3189   case Intrinsic::dbg_func_start: {
3190     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3191     if (!MMI) return 0;
3192     DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
3193     Value *SP = FSI.getSubprogram();
3194     if (SP && MMI->Verify(SP)) {
3195       // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3196       // what (most?) gdb expects.
3197       DebugInfoDesc *DD = MMI->getDescFor(SP);
3198       assert(DD && "Not a debug information descriptor");
3199       SubprogramDesc *Subprogram = cast<SubprogramDesc>(DD);
3200       const CompileUnitDesc *CompileUnit = Subprogram->getFile();
3201       unsigned SrcFile = MMI->RecordSource(CompileUnit);
3202       // Record the source line but does create a label. It will be emitted
3203       // at asm emission time.
3204       MMI->RecordSourceLine(Subprogram->getLine(), 0, SrcFile);
3205     }
3206
3207     return 0;
3208   }
3209   case Intrinsic::dbg_declare: {
3210     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3211     DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3212     Value *Variable = DI.getVariable();
3213     if (MMI && Variable && MMI->Verify(Variable))
3214       DAG.setRoot(DAG.getNode(ISD::DECLARE, MVT::Other, getRoot(),
3215                               getValue(DI.getAddress()), getValue(Variable)));
3216     return 0;
3217   }
3218     
3219   case Intrinsic::eh_exception: {
3220     if (!CurMBB->isLandingPad()) {
3221       // FIXME: Mark exception register as live in.  Hack for PR1508.
3222       unsigned Reg = TLI.getExceptionAddressRegister();
3223       if (Reg) CurMBB->addLiveIn(Reg);
3224     }
3225     // Insert the EXCEPTIONADDR instruction.
3226     SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3227     SDOperand Ops[1];
3228     Ops[0] = DAG.getRoot();
3229     SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
3230     setValue(&I, Op);
3231     DAG.setRoot(Op.getValue(1));
3232     return 0;
3233   }
3234
3235   case Intrinsic::eh_selector_i32:
3236   case Intrinsic::eh_selector_i64: {
3237     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3238     MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
3239                          MVT::i32 : MVT::i64);
3240     
3241     if (MMI) {
3242       if (CurMBB->isLandingPad())
3243         addCatchInfo(I, MMI, CurMBB);
3244       else {
3245 #ifndef NDEBUG
3246         FuncInfo.CatchInfoLost.insert(&I);
3247 #endif
3248         // FIXME: Mark exception selector register as live in.  Hack for PR1508.
3249         unsigned Reg = TLI.getExceptionSelectorRegister();
3250         if (Reg) CurMBB->addLiveIn(Reg);
3251       }
3252
3253       // Insert the EHSELECTION instruction.
3254       SDVTList VTs = DAG.getVTList(VT, MVT::Other);
3255       SDOperand Ops[2];
3256       Ops[0] = getValue(I.getOperand(1));
3257       Ops[1] = getRoot();
3258       SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
3259       setValue(&I, Op);
3260       DAG.setRoot(Op.getValue(1));
3261     } else {
3262       setValue(&I, DAG.getConstant(0, VT));
3263     }
3264     
3265     return 0;
3266   }
3267
3268   case Intrinsic::eh_typeid_for_i32:
3269   case Intrinsic::eh_typeid_for_i64: {
3270     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3271     MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
3272                          MVT::i32 : MVT::i64);
3273     
3274     if (MMI) {
3275       // Find the type id for the given typeinfo.
3276       GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
3277
3278       unsigned TypeID = MMI->getTypeIDFor(GV);
3279       setValue(&I, DAG.getConstant(TypeID, VT));
3280     } else {
3281       // Return something different to eh_selector.
3282       setValue(&I, DAG.getConstant(1, VT));
3283     }
3284
3285     return 0;
3286   }
3287
3288   case Intrinsic::eh_return: {
3289     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3290
3291     if (MMI) {
3292       MMI->setCallsEHReturn(true);
3293       DAG.setRoot(DAG.getNode(ISD::EH_RETURN,
3294                               MVT::Other,
3295                               getControlRoot(),
3296                               getValue(I.getOperand(1)),
3297                               getValue(I.getOperand(2))));
3298     } else {
3299       setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
3300     }
3301
3302     return 0;
3303   }
3304
3305    case Intrinsic::eh_unwind_init: {    
3306      if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
3307        MMI->setCallsUnwindInit(true);
3308      }
3309
3310      return 0;
3311    }
3312
3313    case Intrinsic::eh_dwarf_cfa: {
3314      MVT VT = getValue(I.getOperand(1)).getValueType();
3315      SDOperand CfaArg;
3316      if (VT.bitsGT(TLI.getPointerTy()))
3317        CfaArg = DAG.getNode(ISD::TRUNCATE,
3318                             TLI.getPointerTy(), getValue(I.getOperand(1)));
3319      else
3320        CfaArg = DAG.getNode(ISD::SIGN_EXTEND,
3321                             TLI.getPointerTy(), getValue(I.getOperand(1)));
3322
3323      SDOperand Offset = DAG.getNode(ISD::ADD,
3324                                     TLI.getPointerTy(),
3325                                     DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET,
3326                                                 TLI.getPointerTy()),
3327                                     CfaArg);
3328      setValue(&I, DAG.getNode(ISD::ADD,
3329                               TLI.getPointerTy(),
3330                               DAG.getNode(ISD::FRAMEADDR,
3331                                           TLI.getPointerTy(),
3332                                           DAG.getConstant(0,
3333                                                           TLI.getPointerTy())),
3334                               Offset));
3335      return 0;
3336   }
3337
3338   case Intrinsic::sqrt:
3339     setValue(&I, DAG.getNode(ISD::FSQRT,
3340                              getValue(I.getOperand(1)).getValueType(),
3341                              getValue(I.getOperand(1))));
3342     return 0;
3343   case Intrinsic::powi:
3344     setValue(&I, DAG.getNode(ISD::FPOWI,
3345                              getValue(I.getOperand(1)).getValueType(),
3346                              getValue(I.getOperand(1)),
3347                              getValue(I.getOperand(2))));
3348     return 0;
3349   case Intrinsic::sin:
3350     setValue(&I, DAG.getNode(ISD::FSIN,
3351                              getValue(I.getOperand(1)).getValueType(),
3352                              getValue(I.getOperand(1))));
3353     return 0;
3354   case Intrinsic::cos:
3355     setValue(&I, DAG.getNode(ISD::FCOS,
3356                              getValue(I.getOperand(1)).getValueType(),
3357                              getValue(I.getOperand(1))));
3358     return 0;
3359   case Intrinsic::pow:
3360     setValue(&I, DAG.getNode(ISD::FPOW,
3361                              getValue(I.getOperand(1)).getValueType(),
3362                              getValue(I.getOperand(1)),
3363                              getValue(I.getOperand(2))));
3364     return 0;
3365   case Intrinsic::pcmarker: {
3366     SDOperand Tmp = getValue(I.getOperand(1));
3367     DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
3368     return 0;
3369   }
3370   case Intrinsic::readcyclecounter: {
3371     SDOperand Op = getRoot();
3372     SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
3373                                 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
3374                                 &Op, 1);
3375     setValue(&I, Tmp);
3376     DAG.setRoot(Tmp.getValue(1));
3377     return 0;
3378   }
3379   case Intrinsic::part_select: {
3380     // Currently not implemented: just abort
3381     assert(0 && "part_select intrinsic not implemented");
3382     abort();
3383   }
3384   case Intrinsic::part_set: {
3385     // Currently not implemented: just abort
3386     assert(0 && "part_set intrinsic not implemented");
3387     abort();
3388   }
3389   case Intrinsic::bswap:
3390     setValue(&I, DAG.getNode(ISD::BSWAP,
3391                              getValue(I.getOperand(1)).getValueType(),
3392                              getValue(I.getOperand(1))));
3393     return 0;
3394   case Intrinsic::cttz: {
3395     SDOperand Arg = getValue(I.getOperand(1));
3396     MVT Ty = Arg.getValueType();
3397     SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
3398     setValue(&I, result);
3399     return 0;
3400   }
3401   case Intrinsic::ctlz: {
3402     SDOperand Arg = getValue(I.getOperand(1));
3403     MVT Ty = Arg.getValueType();
3404     SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
3405     setValue(&I, result);
3406     return 0;
3407   }
3408   case Intrinsic::ctpop: {
3409     SDOperand Arg = getValue(I.getOperand(1));
3410     MVT Ty = Arg.getValueType();
3411     SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
3412     setValue(&I, result);
3413     return 0;
3414   }
3415   case Intrinsic::stacksave: {
3416     SDOperand Op = getRoot();
3417     SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
3418               DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
3419     setValue(&I, Tmp);
3420     DAG.setRoot(Tmp.getValue(1));
3421     return 0;
3422   }
3423   case Intrinsic::stackrestore: {
3424     SDOperand Tmp = getValue(I.getOperand(1));
3425     DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
3426     return 0;
3427   }
3428   case Intrinsic::var_annotation:
3429     // Discard annotate attributes
3430     return 0;
3431
3432   case Intrinsic::init_trampoline: {
3433     const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
3434
3435     SDOperand Ops[6];
3436     Ops[0] = getRoot();
3437     Ops[1] = getValue(I.getOperand(1));
3438     Ops[2] = getValue(I.getOperand(2));
3439     Ops[3] = getValue(I.getOperand(3));
3440     Ops[4] = DAG.getSrcValue(I.getOperand(1));
3441     Ops[5] = DAG.getSrcValue(F);
3442
3443     SDOperand Tmp = DAG.getNode(ISD::TRAMPOLINE,
3444                                 DAG.getNodeValueTypes(TLI.getPointerTy(),
3445                                                       MVT::Other), 2,
3446                                 Ops, 6);
3447
3448     setValue(&I, Tmp);
3449     DAG.setRoot(Tmp.getValue(1));
3450     return 0;
3451   }
3452
3453   case Intrinsic::gcroot:
3454     if (GCI) {
3455       Value *Alloca = I.getOperand(1);
3456       Constant *TypeMap = cast<Constant>(I.getOperand(2));
3457       
3458       FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
3459       GCI->addStackRoot(FI->getIndex(), TypeMap);
3460     }
3461     return 0;
3462
3463   case Intrinsic::gcread:
3464   case Intrinsic::gcwrite:
3465     assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
3466     return 0;
3467
3468   case Intrinsic::flt_rounds: {
3469     setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32));
3470     return 0;
3471   }
3472
3473   case Intrinsic::trap: {
3474     DAG.setRoot(DAG.getNode(ISD::TRAP, MVT::Other, getRoot()));
3475     return 0;
3476   }
3477   case Intrinsic::prefetch: {
3478     SDOperand Ops[4];
3479     Ops[0] = getRoot();
3480     Ops[1] = getValue(I.getOperand(1));
3481     Ops[2] = getValue(I.getOperand(2));
3482     Ops[3] = getValue(I.getOperand(3));
3483     DAG.setRoot(DAG.getNode(ISD::PREFETCH, MVT::Other, &Ops[0], 4));
3484     return 0;
3485   }
3486   
3487   case Intrinsic::memory_barrier: {
3488     SDOperand Ops[6];
3489     Ops[0] = getRoot();
3490     for (int x = 1; x < 6; ++x)
3491       Ops[x] = getValue(I.getOperand(x));
3492
3493     DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, MVT::Other, &Ops[0], 6));
3494     return 0;
3495   }
3496   case Intrinsic::atomic_cmp_swap: {
3497     SDOperand Root = getRoot();   
3498     SDOperand L = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, Root, 
3499                                 getValue(I.getOperand(1)), 
3500                                 getValue(I.getOperand(2)),
3501                                 getValue(I.getOperand(3)),
3502                                 I.getOperand(1));
3503     setValue(&I, L);
3504     DAG.setRoot(L.getValue(1));
3505     return 0;
3506   }
3507   case Intrinsic::atomic_load_add:
3508     return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
3509   case Intrinsic::atomic_load_sub:
3510     return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
3511   case Intrinsic::atomic_load_and:
3512     return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
3513   case Intrinsic::atomic_load_or:
3514     return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
3515   case Intrinsic::atomic_load_xor:
3516     return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
3517   case Intrinsic::atomic_load_nand:
3518     return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
3519   case Intrinsic::atomic_load_min:
3520     return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
3521   case Intrinsic::atomic_load_max:
3522     return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
3523   case Intrinsic::atomic_load_umin:
3524     return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
3525   case Intrinsic::atomic_load_umax:
3526       return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);                                              
3527   case Intrinsic::atomic_swap:
3528     return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
3529   }
3530 }
3531
3532
3533 void SelectionDAGLowering::LowerCallTo(CallSite CS, SDOperand Callee,
3534                                        bool IsTailCall,
3535                                        MachineBasicBlock *LandingPad) {
3536   const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
3537   const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
3538   MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3539   unsigned BeginLabel = 0, EndLabel = 0;
3540
3541   TargetLowering::ArgListTy Args;
3542   TargetLowering::ArgListEntry Entry;
3543   Args.reserve(CS.arg_size());
3544   for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
3545        i != e; ++i) {
3546     SDOperand ArgNode = getValue(*i);
3547     Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
3548
3549     unsigned attrInd = i - CS.arg_begin() + 1;
3550     Entry.isSExt  = CS.paramHasAttr(attrInd, ParamAttr::SExt);
3551     Entry.isZExt  = CS.paramHasAttr(attrInd, ParamAttr::ZExt);
3552     Entry.isInReg = CS.paramHasAttr(attrInd, ParamAttr::InReg);
3553     Entry.isSRet  = CS.paramHasAttr(attrInd, ParamAttr::StructRet);
3554     Entry.isNest  = CS.paramHasAttr(attrInd, ParamAttr::Nest);
3555     Entry.isByVal = CS.paramHasAttr(attrInd, ParamAttr::ByVal);
3556     Entry.Alignment = CS.getParamAlignment(attrInd);
3557     Args.push_back(Entry);
3558   }
3559
3560   if (LandingPad && MMI) {
3561     // Insert a label before the invoke call to mark the try range.  This can be
3562     // used to detect deletion of the invoke via the MachineModuleInfo.
3563     BeginLabel = MMI->NextLabelID();
3564     // Both PendingLoads and PendingExports must be flushed here;
3565     // this call might not return.
3566     (void)getRoot();
3567     DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
3568   }
3569
3570   std::pair<SDOperand,SDOperand> Result =
3571     TLI.LowerCallTo(getRoot(), CS.getType(),
3572                     CS.paramHasAttr(0, ParamAttr::SExt),
3573                     CS.paramHasAttr(0, ParamAttr::ZExt),
3574                     FTy->isVarArg(), CS.getCallingConv(), IsTailCall,
3575                     Callee, Args, DAG);
3576   if (CS.getType() != Type::VoidTy)
3577     setValue(CS.getInstruction(), Result.first);
3578   DAG.setRoot(Result.second);
3579
3580   if (LandingPad && MMI) {
3581     // Insert a label at the end of the invoke call to mark the try range.  This
3582     // can be used to detect deletion of the invoke via the MachineModuleInfo.
3583     EndLabel = MMI->NextLabelID();
3584     DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
3585
3586     // Inform MachineModuleInfo of range.
3587     MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
3588   }
3589 }
3590
3591
3592 void SelectionDAGLowering::visitCall(CallInst &I) {
3593   const char *RenameFn = 0;
3594   if (Function *F = I.getCalledFunction()) {
3595     if (F->isDeclaration()) {
3596       if (unsigned IID = F->getIntrinsicID()) {
3597         RenameFn = visitIntrinsicCall(I, IID);
3598         if (!RenameFn)
3599           return;
3600       }
3601     }
3602
3603     // Check for well-known libc/libm calls.  If the function is internal, it
3604     // can't be a library call.
3605     unsigned NameLen = F->getNameLen();
3606     if (!F->hasInternalLinkage() && NameLen) {
3607       const char *NameStr = F->getNameStart();
3608       if (NameStr[0] == 'c' &&
3609           ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
3610            (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
3611         if (I.getNumOperands() == 3 &&   // Basic sanity checks.
3612             I.getOperand(1)->getType()->isFloatingPoint() &&
3613             I.getType() == I.getOperand(1)->getType() &&
3614             I.getType() == I.getOperand(2)->getType()) {
3615           SDOperand LHS = getValue(I.getOperand(1));
3616           SDOperand RHS = getValue(I.getOperand(2));
3617           setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
3618                                    LHS, RHS));
3619           return;
3620         }
3621       } else if (NameStr[0] == 'f' &&
3622                  ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
3623                   (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
3624                   (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
3625         if (I.getNumOperands() == 2 &&   // Basic sanity checks.
3626             I.getOperand(1)->getType()->isFloatingPoint() &&
3627             I.getType() == I.getOperand(1)->getType()) {
3628           SDOperand Tmp = getValue(I.getOperand(1));
3629           setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
3630           return;
3631         }
3632       } else if (NameStr[0] == 's' && 
3633                  ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
3634                   (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
3635                   (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
3636         if (I.getNumOperands() == 2 &&   // Basic sanity checks.
3637             I.getOperand(1)->getType()->isFloatingPoint() &&
3638             I.getType() == I.getOperand(1)->getType()) {
3639           SDOperand Tmp = getValue(I.getOperand(1));
3640           setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
3641           return;
3642         }
3643       } else if (NameStr[0] == 'c' &&
3644                  ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
3645                   (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
3646                   (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
3647         if (I.getNumOperands() == 2 &&   // Basic sanity checks.
3648             I.getOperand(1)->getType()->isFloatingPoint() &&
3649             I.getType() == I.getOperand(1)->getType()) {
3650           SDOperand Tmp = getValue(I.getOperand(1));
3651           setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
3652           return;
3653         }
3654       }
3655     }
3656   } else if (isa<InlineAsm>(I.getOperand(0))) {
3657     visitInlineAsm(&I);
3658     return;
3659   }
3660
3661   SDOperand Callee;
3662   if (!RenameFn)
3663     Callee = getValue(I.getOperand(0));
3664   else
3665     Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
3666
3667   LowerCallTo(&I, Callee, I.isTailCall());
3668 }
3669
3670
3671 void SelectionDAGLowering::visitGetResult(GetResultInst &I) {
3672   if (isa<UndefValue>(I.getOperand(0))) {
3673     SDOperand Undef = DAG.getNode(ISD::UNDEF, TLI.getValueType(I.getType()));
3674     setValue(&I, Undef);
3675     return;
3676   }
3677   
3678   // To add support for individual return values with aggregate types,
3679   // we'd need a way to take a getresult index and determine which
3680   // values of the Call SDNode are associated with it.
3681   assert(TLI.getValueType(I.getType(), true) != MVT::Other &&
3682          "Individual return values must not be aggregates!");
3683
3684   SDOperand Call = getValue(I.getOperand(0));
3685   setValue(&I, SDOperand(Call.Val, I.getIndex()));
3686 }
3687
3688
3689 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
3690 /// this value and returns the result as a ValueVT value.  This uses 
3691 /// Chain/Flag as the input and updates them for the output Chain/Flag.
3692 /// If the Flag pointer is NULL, no flag is used.
3693 SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG, 
3694                                         SDOperand &Chain,
3695                                         SDOperand *Flag) const {
3696   // Assemble the legal parts into the final values.
3697   SmallVector<SDOperand, 4> Values(ValueVTs.size());
3698   SmallVector<SDOperand, 8> Parts;
3699   for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
3700     // Copy the legal parts from the registers.
3701     MVT ValueVT = ValueVTs[Value];
3702     unsigned NumRegs = TLI->getNumRegisters(ValueVT);
3703     MVT RegisterVT = RegVTs[Value];
3704
3705     Parts.resize(NumRegs);
3706     for (unsigned i = 0; i != NumRegs; ++i) {
3707       SDOperand P;
3708       if (Flag == 0)
3709         P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
3710       else {
3711         P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
3712         *Flag = P.getValue(2);
3713       }
3714       Chain = P.getValue(1);
3715       
3716       // If the source register was virtual and if we know something about it,
3717       // add an assert node.
3718       if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
3719           RegisterVT.isInteger() && !RegisterVT.isVector()) {
3720         unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
3721         FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
3722         if (FLI.LiveOutRegInfo.size() > SlotNo) {
3723           FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
3724           
3725           unsigned RegSize = RegisterVT.getSizeInBits();
3726           unsigned NumSignBits = LOI.NumSignBits;
3727           unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
3728           
3729           // FIXME: We capture more information than the dag can represent.  For
3730           // now, just use the tightest assertzext/assertsext possible.
3731           bool isSExt = true;
3732           MVT FromVT(MVT::Other);
3733           if (NumSignBits == RegSize)
3734             isSExt = true, FromVT = MVT::i1;   // ASSERT SEXT 1
3735           else if (NumZeroBits >= RegSize-1)
3736             isSExt = false, FromVT = MVT::i1;  // ASSERT ZEXT 1
3737           else if (NumSignBits > RegSize-8)
3738             isSExt = true, FromVT = MVT::i8;   // ASSERT SEXT 8
3739           else if (NumZeroBits >= RegSize-9)
3740             isSExt = false, FromVT = MVT::i8;  // ASSERT ZEXT 8
3741           else if (NumSignBits > RegSize-16)
3742             isSExt = true, FromVT = MVT::i16;   // ASSERT SEXT 16
3743           else if (NumZeroBits >= RegSize-17)
3744             isSExt = false, FromVT = MVT::i16;  // ASSERT ZEXT 16
3745           else if (NumSignBits > RegSize-32)
3746             isSExt = true, FromVT = MVT::i32;   // ASSERT SEXT 32
3747           else if (NumZeroBits >= RegSize-33)
3748             isSExt = false, FromVT = MVT::i32;  // ASSERT ZEXT 32
3749           
3750           if (FromVT != MVT::Other) {
3751             P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext,
3752                             RegisterVT, P, DAG.getValueType(FromVT));
3753
3754           }
3755         }
3756       }
3757       
3758       Parts[Part+i] = P;
3759     }
3760   
3761     Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT,
3762                                      ValueVT);
3763     Part += NumRegs;
3764   }
3765
3766   return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
3767                             &Values[0], ValueVTs.size());
3768 }
3769
3770 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
3771 /// specified value into the registers specified by this object.  This uses 
3772 /// Chain/Flag as the input and updates them for the output Chain/Flag.
3773 /// If the Flag pointer is NULL, no flag is used.
3774 void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
3775                                  SDOperand &Chain, SDOperand *Flag) const {
3776   // Get the list of the values's legal parts.
3777   unsigned NumRegs = Regs.size();
3778   SmallVector<SDOperand, 8> Parts(NumRegs);
3779   for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
3780     MVT ValueVT = ValueVTs[Value];
3781     unsigned NumParts = TLI->getNumRegisters(ValueVT);
3782     MVT RegisterVT = RegVTs[Value];
3783
3784     getCopyToParts(DAG, Val.getValue(Val.ResNo + Value),
3785                    &Parts[Part], NumParts, RegisterVT);
3786     Part += NumParts;
3787   }
3788
3789   // Copy the parts into the registers.
3790   SmallVector<SDOperand, 8> Chains(NumRegs);
3791   for (unsigned i = 0; i != NumRegs; ++i) {
3792     SDOperand Part;
3793     if (Flag == 0)
3794       Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
3795     else {
3796       Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
3797       *Flag = Part.getValue(1);
3798     }
3799     Chains[i] = Part.getValue(0);
3800   }
3801   
3802   if (NumRegs == 1 || Flag)
3803     // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is 
3804     // flagged to it. That is the CopyToReg nodes and the user are considered
3805     // a single scheduling unit. If we create a TokenFactor and return it as
3806     // chain, then the TokenFactor is both a predecessor (operand) of the
3807     // user as well as a successor (the TF operands are flagged to the user).
3808     // c1, f1 = CopyToReg
3809     // c2, f2 = CopyToReg
3810     // c3     = TokenFactor c1, c2
3811     // ...
3812     //        = op c3, ..., f2
3813     Chain = Chains[NumRegs-1];
3814   else
3815     Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Chains[0], NumRegs);
3816 }
3817
3818 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
3819 /// operand list.  This adds the code marker and includes the number of 
3820 /// values added into it.
3821 void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
3822                                         std::vector<SDOperand> &Ops) const {
3823   MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
3824   Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
3825   for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
3826     unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
3827     MVT RegisterVT = RegVTs[Value];
3828     for (unsigned i = 0; i != NumRegs; ++i)
3829       Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
3830   }
3831 }
3832
3833 /// isAllocatableRegister - If the specified register is safe to allocate, 
3834 /// i.e. it isn't a stack pointer or some other special register, return the
3835 /// register class for the register.  Otherwise, return null.
3836 static const TargetRegisterClass *
3837 isAllocatableRegister(unsigned Reg, MachineFunction &MF,
3838                       const TargetLowering &TLI,
3839                       const TargetRegisterInfo *TRI) {
3840   MVT FoundVT = MVT::Other;
3841   const TargetRegisterClass *FoundRC = 0;
3842   for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
3843        E = TRI->regclass_end(); RCI != E; ++RCI) {
3844     MVT ThisVT = MVT::Other;
3845
3846     const TargetRegisterClass *RC = *RCI;
3847     // If none of the the value types for this register class are valid, we 
3848     // can't use it.  For example, 64-bit reg classes on 32-bit targets.
3849     for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
3850          I != E; ++I) {
3851       if (TLI.isTypeLegal(*I)) {
3852         // If we have already found this register in a different register class,
3853         // choose the one with the largest VT specified.  For example, on
3854         // PowerPC, we favor f64 register classes over f32.
3855         if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
3856           ThisVT = *I;
3857           break;
3858         }
3859       }
3860     }
3861     
3862     if (ThisVT == MVT::Other) continue;
3863     
3864     // NOTE: This isn't ideal.  In particular, this might allocate the
3865     // frame pointer in functions that need it (due to them not being taken
3866     // out of allocation, because a variable sized allocation hasn't been seen
3867     // yet).  This is a slight code pessimization, but should still work.
3868     for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
3869          E = RC->allocation_order_end(MF); I != E; ++I)
3870       if (*I == Reg) {
3871         // We found a matching register class.  Keep looking at others in case
3872         // we find one with larger registers that this physreg is also in.
3873         FoundRC = RC;
3874         FoundVT = ThisVT;
3875         break;
3876       }
3877   }
3878   return FoundRC;
3879 }    
3880
3881
3882 namespace {
3883 /// AsmOperandInfo - This contains information for each constraint that we are
3884 /// lowering.
3885 struct SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo {
3886   /// CallOperand - If this is the result output operand or a clobber
3887   /// this is null, otherwise it is the incoming operand to the CallInst.
3888   /// This gets modified as the asm is processed.
3889   SDOperand CallOperand;
3890
3891   /// AssignedRegs - If this is a register or register class operand, this
3892   /// contains the set of register corresponding to the operand.
3893   RegsForValue AssignedRegs;
3894   
3895   explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
3896     : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
3897   }
3898   
3899   /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
3900   /// busy in OutputRegs/InputRegs.
3901   void MarkAllocatedRegs(bool isOutReg, bool isInReg,
3902                          std::set<unsigned> &OutputRegs, 
3903                          std::set<unsigned> &InputRegs,
3904                          const TargetRegisterInfo &TRI) const {
3905     if (isOutReg) {
3906       for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3907         MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
3908     }
3909     if (isInReg) {
3910       for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
3911         MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
3912     }
3913   }
3914   
3915 private:
3916   /// MarkRegAndAliases - Mark the specified register and all aliases in the
3917   /// specified set.
3918   static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs, 
3919                                 const TargetRegisterInfo &TRI) {
3920     assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
3921     Regs.insert(Reg);
3922     if (const unsigned *Aliases = TRI.getAliasSet(Reg))
3923       for (; *Aliases; ++Aliases)
3924         Regs.insert(*Aliases);
3925   }
3926 };
3927 } // end anon namespace.
3928
3929
3930 /// GetRegistersForValue - Assign registers (virtual or physical) for the
3931 /// specified operand.  We prefer to assign virtual registers, to allow the
3932 /// register allocator handle the assignment process.  However, if the asm uses
3933 /// features that we can't model on machineinstrs, we have SDISel do the
3934 /// allocation.  This produces generally horrible, but correct, code.
3935 ///
3936 ///   OpInfo describes the operand.
3937 ///   HasEarlyClobber is true if there are any early clobber constraints (=&r)
3938 ///     or any explicitly clobbered registers.
3939 ///   Input and OutputRegs are the set of already allocated physical registers.
3940 ///
3941 void SelectionDAGLowering::
3942 GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, bool HasEarlyClobber,
3943                      std::set<unsigned> &OutputRegs, 
3944                      std::set<unsigned> &InputRegs) {
3945   // Compute whether this value requires an input register, an output register,
3946   // or both.
3947   bool isOutReg = false;
3948   bool isInReg = false;
3949   switch (OpInfo.Type) {
3950   case InlineAsm::isOutput:
3951     isOutReg = true;
3952     
3953     // If this is an early-clobber output, or if there is an input
3954     // constraint that matches this, we need to reserve the input register
3955     // so no other inputs allocate to it.
3956     isInReg = OpInfo.isEarlyClobber || OpInfo.hasMatchingInput;
3957     break;
3958   case InlineAsm::isInput:
3959     isInReg = true;
3960     isOutReg = false;
3961     break;
3962   case InlineAsm::isClobber:
3963     isOutReg = true;
3964     isInReg = true;
3965     break;
3966   }
3967   
3968   
3969   MachineFunction &MF = DAG.getMachineFunction();
3970   SmallVector<unsigned, 4> Regs;
3971   
3972   // If this is a constraint for a single physreg, or a constraint for a
3973   // register class, find it.
3974   std::pair<unsigned, const TargetRegisterClass*> PhysReg = 
3975     TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
3976                                      OpInfo.ConstraintVT);
3977
3978   unsigned NumRegs = 1;
3979   if (OpInfo.ConstraintVT != MVT::Other)
3980     NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
3981   MVT RegVT;
3982   MVT ValueVT = OpInfo.ConstraintVT;
3983   
3984
3985   // If this is a constraint for a specific physical register, like {r17},
3986   // assign it now.
3987   if (PhysReg.first) {
3988     if (OpInfo.ConstraintVT == MVT::Other)
3989       ValueVT = *PhysReg.second->vt_begin();
3990     
3991     // Get the actual register value type.  This is important, because the user
3992     // may have asked for (e.g.) the AX register in i32 type.  We need to
3993     // remember that AX is actually i16 to get the right extension.
3994     RegVT = *PhysReg.second->vt_begin();
3995     
3996     // This is a explicit reference to a physical register.
3997     Regs.push_back(PhysReg.first);
3998
3999     // If this is an expanded reference, add the rest of the regs to Regs.
4000     if (NumRegs != 1) {
4001       TargetRegisterClass::iterator I = PhysReg.second->begin();
4002       for (; *I != PhysReg.first; ++I)
4003         assert(I != PhysReg.second->end() && "Didn't find reg!"); 
4004       
4005       // Already added the first reg.
4006       --NumRegs; ++I;
4007       for (; NumRegs; --NumRegs, ++I) {
4008         assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
4009         Regs.push_back(*I);
4010       }
4011     }
4012     OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4013     const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4014     OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4015     return;
4016   }
4017   
4018   // Otherwise, if this was a reference to an LLVM register class, create vregs
4019   // for this reference.
4020   std::vector<unsigned> RegClassRegs;
4021   const TargetRegisterClass *RC = PhysReg.second;
4022   if (RC) {
4023     // If this is an early clobber or tied register, our regalloc doesn't know
4024     // how to maintain the constraint.  If it isn't, go ahead and create vreg
4025     // and let the regalloc do the right thing.
4026     if (!OpInfo.hasMatchingInput && !OpInfo.isEarlyClobber &&
4027         // If there is some other early clobber and this is an input register,
4028         // then we are forced to pre-allocate the input reg so it doesn't
4029         // conflict with the earlyclobber.
4030         !(OpInfo.Type == InlineAsm::isInput && HasEarlyClobber)) {
4031       RegVT = *PhysReg.second->vt_begin();
4032       
4033       if (OpInfo.ConstraintVT == MVT::Other)
4034         ValueVT = RegVT;
4035
4036       // Create the appropriate number of virtual registers.
4037       MachineRegisterInfo &RegInfo = MF.getRegInfo();
4038       for (; NumRegs; --NumRegs)
4039         Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
4040       
4041       OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4042       return;
4043     }
4044     
4045     // Otherwise, we can't allocate it.  Let the code below figure out how to
4046     // maintain these constraints.
4047     RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
4048     
4049   } else {
4050     // This is a reference to a register class that doesn't directly correspond
4051     // to an LLVM register class.  Allocate NumRegs consecutive, available,
4052     // registers from the class.
4053     RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4054                                                          OpInfo.ConstraintVT);
4055   }
4056   
4057   const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4058   unsigned NumAllocated = 0;
4059   for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4060     unsigned Reg = RegClassRegs[i];
4061     // See if this register is available.
4062     if ((isOutReg && OutputRegs.count(Reg)) ||   // Already used.
4063         (isInReg  && InputRegs.count(Reg))) {    // Already used.
4064       // Make sure we find consecutive registers.
4065       NumAllocated = 0;
4066       continue;
4067     }
4068     
4069     // Check to see if this register is allocatable (i.e. don't give out the
4070     // stack pointer).
4071     if (RC == 0) {
4072       RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4073       if (!RC) {        // Couldn't allocate this register.
4074         // Reset NumAllocated to make sure we return consecutive registers.
4075         NumAllocated = 0;
4076         continue;
4077       }
4078     }
4079     
4080     // Okay, this register is good, we can use it.
4081     ++NumAllocated;
4082
4083     // If we allocated enough consecutive registers, succeed.
4084     if (NumAllocated == NumRegs) {
4085       unsigned RegStart = (i-NumAllocated)+1;
4086       unsigned RegEnd   = i+1;
4087       // Mark all of the allocated registers used.
4088       for (unsigned i = RegStart; i != RegEnd; ++i)
4089         Regs.push_back(RegClassRegs[i]);
4090       
4091       OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(), 
4092                                          OpInfo.ConstraintVT);
4093       OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4094       return;
4095     }
4096   }
4097   
4098   // Otherwise, we couldn't allocate enough registers for this.
4099 }
4100
4101
4102 /// visitInlineAsm - Handle a call to an InlineAsm object.
4103 ///
4104 void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4105   InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
4106
4107   /// ConstraintOperands - Information about all of the constraints.
4108   std::vector<SDISelAsmOperandInfo> ConstraintOperands;
4109   
4110   SDOperand Chain = getRoot();
4111   SDOperand Flag;
4112   
4113   std::set<unsigned> OutputRegs, InputRegs;
4114
4115   // Do a prepass over the constraints, canonicalizing them, and building up the
4116   // ConstraintOperands list.
4117   std::vector<InlineAsm::ConstraintInfo>
4118     ConstraintInfos = IA->ParseConstraints();
4119
4120   // SawEarlyClobber - Keep track of whether we saw an earlyclobber output
4121   // constraint.  If so, we can't let the register allocator allocate any input
4122   // registers, because it will not know to avoid the earlyclobbered output reg.
4123   bool SawEarlyClobber = false;
4124   
4125   unsigned ArgNo = 0;   // ArgNo - The argument of the CallInst.
4126   unsigned ResNo = 0;   // ResNo - The result number of the next output.
4127   for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
4128     ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
4129     SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
4130     
4131     MVT OpVT = MVT::Other;
4132
4133     // Compute the value type for each operand.
4134     switch (OpInfo.Type) {
4135     case InlineAsm::isOutput:
4136       // Indirect outputs just consume an argument.
4137       if (OpInfo.isIndirect) {
4138         OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
4139         break;
4140       }
4141       // The return value of the call is this value.  As such, there is no
4142       // corresponding argument.
4143       assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4144       if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
4145         OpVT = TLI.getValueType(STy->getElementType(ResNo));
4146       } else {
4147         assert(ResNo == 0 && "Asm only has one result!");
4148         OpVT = TLI.getValueType(CS.getType());
4149       }
4150       ++ResNo;
4151       break;
4152     case InlineAsm::isInput:
4153       OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
4154       break;
4155     case InlineAsm::isClobber:
4156       // Nothing to do.
4157       break;
4158     }
4159
4160     // If this is an input or an indirect output, process the call argument.
4161     // BasicBlocks are labels, currently appearing only in asm's.
4162     if (OpInfo.CallOperandVal) {
4163       if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal))
4164         OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
4165       else {
4166         OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
4167         const Type *OpTy = OpInfo.CallOperandVal->getType();
4168         // If this is an indirect operand, the operand is a pointer to the
4169         // accessed type.
4170         if (OpInfo.isIndirect)
4171           OpTy = cast<PointerType>(OpTy)->getElementType();
4172
4173         // If OpTy is not a single value, it may be a struct/union that we
4174         // can tile with integers.
4175         if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4176           unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4177           switch (BitSize) {
4178           default: break;
4179           case 1:
4180           case 8:
4181           case 16:
4182           case 32:
4183           case 64:
4184             OpTy = IntegerType::get(BitSize);
4185             break;
4186           }
4187         }
4188
4189         OpVT = TLI.getValueType(OpTy, true);
4190       }
4191     }
4192     
4193     OpInfo.ConstraintVT = OpVT;
4194     
4195     // Compute the constraint code and ConstraintType to use.
4196     TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG);
4197
4198     // Keep track of whether we see an earlyclobber.
4199     SawEarlyClobber |= OpInfo.isEarlyClobber;
4200     
4201     // If we see a clobber of a register, it is an early clobber.
4202     if (!SawEarlyClobber &&
4203         OpInfo.Type == InlineAsm::isClobber &&
4204         OpInfo.ConstraintType == TargetLowering::C_Register) {
4205       // Note that we want to ignore things that we don't trick here, like
4206       // dirflag, fpsr, flags, etc.
4207       std::pair<unsigned, const TargetRegisterClass*> PhysReg = 
4208         TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4209                                          OpInfo.ConstraintVT);
4210       if (PhysReg.first || PhysReg.second) {
4211         // This is a register we know of.
4212         SawEarlyClobber = true;
4213       }
4214     }
4215     
4216     // If this is a memory input, and if the operand is not indirect, do what we
4217     // need to to provide an address for the memory input.
4218     if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
4219         !OpInfo.isIndirect) {
4220       assert(OpInfo.Type == InlineAsm::isInput &&
4221              "Can only indirectify direct input operands!");
4222       
4223       // Memory operands really want the address of the value.  If we don't have
4224       // an indirect input, put it in the constpool if we can, otherwise spill
4225       // it to a stack slot.
4226       
4227       // If the operand is a float, integer, or vector constant, spill to a
4228       // constant pool entry to get its address.
4229       Value *OpVal = OpInfo.CallOperandVal;
4230       if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
4231           isa<ConstantVector>(OpVal)) {
4232         OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
4233                                                  TLI.getPointerTy());
4234       } else {
4235         // Otherwise, create a stack slot and emit a store to it before the
4236         // asm.
4237         const Type *Ty = OpVal->getType();
4238         uint64_t TySize = TLI.getTargetData()->getABITypeSize(Ty);
4239         unsigned Align  = TLI.getTargetData()->getPrefTypeAlignment(Ty);
4240         MachineFunction &MF = DAG.getMachineFunction();
4241         int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
4242         SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4243         Chain = DAG.getStore(Chain, OpInfo.CallOperand, StackSlot, NULL, 0);
4244         OpInfo.CallOperand = StackSlot;
4245       }
4246      
4247       // There is no longer a Value* corresponding to this operand.
4248       OpInfo.CallOperandVal = 0;
4249       // It is now an indirect operand.
4250       OpInfo.isIndirect = true;
4251     }
4252     
4253     // If this constraint is for a specific register, allocate it before
4254     // anything else.
4255     if (OpInfo.ConstraintType == TargetLowering::C_Register)
4256       GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4257   }
4258   ConstraintInfos.clear();
4259   
4260   
4261   // Second pass - Loop over all of the operands, assigning virtual or physregs
4262   // to registerclass operands.
4263   for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
4264     SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
4265     
4266     // C_Register operands have already been allocated, Other/Memory don't need
4267     // to be.
4268     if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
4269       GetRegistersForValue(OpInfo, SawEarlyClobber, OutputRegs, InputRegs);
4270   }    
4271   
4272   // AsmNodeOperands - The operands for the ISD::INLINEASM node.
4273   std::vector<SDOperand> AsmNodeOperands;
4274   AsmNodeOperands.push_back(SDOperand());  // reserve space for input chain
4275   AsmNodeOperands.push_back(
4276           DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
4277   
4278   
4279   // Loop over all of the inputs, copying the operand values into the
4280   // appropriate registers and processing the output regs.
4281   RegsForValue RetValRegs;
4282  
4283   // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
4284   std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
4285   
4286   for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
4287     SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
4288
4289     switch (OpInfo.Type) {
4290     case InlineAsm::isOutput: {
4291       if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
4292           OpInfo.ConstraintType != TargetLowering::C_Register) {
4293         // Memory output, or 'other' output (e.g. 'X' constraint).
4294         assert(OpInfo.isIndirect && "Memory output must be indirect operand");
4295
4296         // Add information to the INLINEASM node to know about this output.
4297         unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4298         AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, 
4299                                                         TLI.getPointerTy()));
4300         AsmNodeOperands.push_back(OpInfo.CallOperand);
4301         break;
4302       }
4303
4304       // Otherwise, this is a register or register class output.
4305
4306       // Copy the output from the appropriate register.  Find a register that
4307       // we can use.
4308       if (OpInfo.AssignedRegs.Regs.empty()) {
4309         cerr << "Couldn't allocate output reg for constraint '"
4310              << OpInfo.ConstraintCode << "'!\n";
4311         exit(1);
4312       }
4313
4314       // If this is an indirect operand, store through the pointer after the
4315       // asm.
4316       if (OpInfo.isIndirect) {
4317         IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
4318                                                       OpInfo.CallOperandVal));
4319       } else {
4320         // This is the result value of the call.
4321         assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
4322         // Concatenate this output onto the outputs list.
4323         RetValRegs.append(OpInfo.AssignedRegs);
4324       }
4325       
4326       // Add information to the INLINEASM node to know that this register is
4327       // set.
4328       OpInfo.AssignedRegs.AddInlineAsmOperands(2 /*REGDEF*/, DAG,
4329                                                AsmNodeOperands);
4330       break;
4331     }
4332     case InlineAsm::isInput: {
4333       SDOperand InOperandVal = OpInfo.CallOperand;
4334       
4335       if (isdigit(OpInfo.ConstraintCode[0])) {    // Matching constraint?
4336         // If this is required to match an output register we have already set,
4337         // just use its register.
4338         unsigned OperandNo = atoi(OpInfo.ConstraintCode.c_str());
4339         
4340         // Scan until we find the definition we already emitted of this operand.
4341         // When we find it, create a RegsForValue operand.
4342         unsigned CurOp = 2;  // The first operand.
4343         for (; OperandNo; --OperandNo) {
4344           // Advance to the next operand.
4345           unsigned NumOps = 
4346             cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
4347           assert(((NumOps & 7) == 2 /*REGDEF*/ ||
4348                   (NumOps & 7) == 4 /*MEM*/) &&
4349                  "Skipped past definitions?");
4350           CurOp += (NumOps>>3)+1;
4351         }
4352
4353         unsigned NumOps = 
4354           cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
4355         if ((NumOps & 7) == 2 /*REGDEF*/) {
4356           // Add NumOps>>3 registers to MatchedRegs.
4357           RegsForValue MatchedRegs;
4358           MatchedRegs.TLI = &TLI;
4359           MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
4360           MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
4361           for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
4362             unsigned Reg =
4363               cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
4364             MatchedRegs.Regs.push_back(Reg);
4365           }
4366         
4367           // Use the produced MatchedRegs object to 
4368           MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
4369           MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
4370           break;
4371         } else {
4372           assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
4373           assert((NumOps >> 3) == 1 && "Unexpected number of operands"); 
4374           // Add information to the INLINEASM node to know about this input.
4375           unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4376           AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4377                                                           TLI.getPointerTy()));
4378           AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
4379           break;
4380         }
4381       }
4382       
4383       if (OpInfo.ConstraintType == TargetLowering::C_Other) {
4384         assert(!OpInfo.isIndirect && 
4385                "Don't know how to handle indirect other inputs yet!");
4386         
4387         std::vector<SDOperand> Ops;
4388         TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
4389                                          Ops, DAG);
4390         if (Ops.empty()) {
4391           cerr << "Invalid operand for inline asm constraint '"
4392                << OpInfo.ConstraintCode << "'!\n";
4393           exit(1);
4394         }
4395         
4396         // Add information to the INLINEASM node to know about this input.
4397         unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
4398         AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, 
4399                                                         TLI.getPointerTy()));
4400         AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
4401         break;
4402       } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
4403         assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
4404         assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
4405                "Memory operands expect pointer values");
4406                
4407         // Add information to the INLINEASM node to know about this input.
4408         unsigned ResOpType = 4/*MEM*/ | (1 << 3);
4409         AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
4410                                                         TLI.getPointerTy()));
4411         AsmNodeOperands.push_back(InOperandVal);
4412         break;
4413       }
4414         
4415       assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
4416               OpInfo.ConstraintType == TargetLowering::C_Register) &&
4417              "Unknown constraint type!");
4418       assert(!OpInfo.isIndirect && 
4419              "Don't know how to handle indirect register inputs yet!");
4420
4421       // Copy the input into the appropriate registers.
4422       assert(!OpInfo.AssignedRegs.Regs.empty() &&
4423              "Couldn't allocate input reg!");
4424
4425       OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, Chain, &Flag);
4426       
4427       OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG,
4428                                                AsmNodeOperands);
4429       break;
4430     }
4431     case InlineAsm::isClobber: {
4432       // Add the clobbered value to the operand list, so that the register
4433       // allocator is aware that the physreg got clobbered.
4434       if (!OpInfo.AssignedRegs.Regs.empty())
4435         OpInfo.AssignedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG,
4436                                                  AsmNodeOperands);
4437       break;
4438     }
4439     }
4440   }
4441   
4442   // Finish up input operands.
4443   AsmNodeOperands[0] = Chain;
4444   if (Flag.Val) AsmNodeOperands.push_back(Flag);
4445   
4446   Chain = DAG.getNode(ISD::INLINEASM, 
4447                       DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
4448                       &AsmNodeOperands[0], AsmNodeOperands.size());
4449   Flag = Chain.getValue(1);
4450
4451   // If this asm returns a register value, copy the result from that register
4452   // and set it as the value of the call.
4453   if (!RetValRegs.Regs.empty()) {
4454     SDOperand Val = RetValRegs.getCopyFromRegs(DAG, Chain, &Flag);
4455
4456     // If any of the results of the inline asm is a vector, it may have the
4457     // wrong width/num elts.  This can happen for register classes that can
4458     // contain multiple different value types.  The preg or vreg allocated may
4459     // not have the same VT as was expected.  Convert it to the right type with
4460     // bit_convert.
4461     if (const StructType *ResSTy = dyn_cast<StructType>(CS.getType())) {
4462       for (unsigned i = 0, e = ResSTy->getNumElements(); i != e; ++i) {
4463         if (Val.Val->getValueType(i).isVector())
4464           Val = DAG.getNode(ISD::BIT_CONVERT,
4465                             TLI.getValueType(ResSTy->getElementType(i)), Val);
4466       }
4467     } else {
4468       if (Val.getValueType().isVector())
4469         Val = DAG.getNode(ISD::BIT_CONVERT, TLI.getValueType(CS.getType()),
4470                           Val);
4471     }
4472
4473     setValue(CS.getInstruction(), Val);
4474   }
4475   
4476   std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
4477   
4478   // Process indirect outputs, first output all of the flagged copies out of
4479   // physregs.
4480   for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
4481     RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
4482     Value *Ptr = IndirectStoresToEmit[i].second;
4483     SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, &Flag);
4484     StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
4485   }
4486   
4487   // Emit the non-flagged stores from the physregs.
4488   SmallVector<SDOperand, 8> OutChains;
4489   for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
4490     OutChains.push_back(DAG.getStore(Chain, StoresToEmit[i].first,
4491                                     getValue(StoresToEmit[i].second),
4492                                     StoresToEmit[i].second, 0));
4493   if (!OutChains.empty())
4494     Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4495                         &OutChains[0], OutChains.size());
4496   DAG.setRoot(Chain);
4497 }
4498
4499
4500 void SelectionDAGLowering::visitMalloc(MallocInst &I) {
4501   SDOperand Src = getValue(I.getOperand(0));
4502
4503   MVT IntPtr = TLI.getPointerTy();
4504
4505   if (IntPtr.bitsLT(Src.getValueType()))
4506     Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
4507   else if (IntPtr.bitsGT(Src.getValueType()))
4508     Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
4509
4510   // Scale the source by the type size.
4511   uint64_t ElementSize = TD->getABITypeSize(I.getType()->getElementType());
4512   Src = DAG.getNode(ISD::MUL, Src.getValueType(),
4513                     Src, DAG.getIntPtrConstant(ElementSize));
4514
4515   TargetLowering::ArgListTy Args;
4516   TargetLowering::ArgListEntry Entry;
4517   Entry.Node = Src;
4518   Entry.Ty = TLI.getTargetData()->getIntPtrType();
4519   Args.push_back(Entry);
4520
4521   std::pair<SDOperand,SDOperand> Result =
4522     TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, CallingConv::C,
4523                     true, DAG.getExternalSymbol("malloc", IntPtr), Args, DAG);
4524   setValue(&I, Result.first);  // Pointers always fit in registers
4525   DAG.setRoot(Result.second);
4526 }
4527
4528 void SelectionDAGLowering::visitFree(FreeInst &I) {
4529   TargetLowering::ArgListTy Args;
4530   TargetLowering::ArgListEntry Entry;
4531   Entry.Node = getValue(I.getOperand(0));
4532   Entry.Ty = TLI.getTargetData()->getIntPtrType();
4533   Args.push_back(Entry);
4534   MVT IntPtr = TLI.getPointerTy();
4535   std::pair<SDOperand,SDOperand> Result =
4536     TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false,
4537                     CallingConv::C, true,
4538                     DAG.getExternalSymbol("free", IntPtr), Args, DAG);
4539   DAG.setRoot(Result.second);
4540 }
4541
4542 // EmitInstrWithCustomInserter - This method should be implemented by targets
4543 // that mark instructions with the 'usesCustomDAGSchedInserter' flag.  These
4544 // instructions are special in various ways, which require special support to
4545 // insert.  The specified MachineInstr is created but not inserted into any
4546 // basic blocks, and the scheduler passes ownership of it to this method.
4547 MachineBasicBlock *TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
4548                                                        MachineBasicBlock *MBB) {
4549   cerr << "If a target marks an instruction with "
4550        << "'usesCustomDAGSchedInserter', it must implement "
4551        << "TargetLowering::EmitInstrWithCustomInserter!\n";
4552   abort();
4553   return 0;  
4554 }
4555
4556 void SelectionDAGLowering::visitVAStart(CallInst &I) {
4557   DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(), 
4558                           getValue(I.getOperand(1)), 
4559                           DAG.getSrcValue(I.getOperand(1))));
4560 }
4561
4562 void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
4563   SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
4564                              getValue(I.getOperand(0)),
4565                              DAG.getSrcValue(I.getOperand(0)));
4566   setValue(&I, V);
4567   DAG.setRoot(V.getValue(1));
4568 }
4569
4570 void SelectionDAGLowering::visitVAEnd(CallInst &I) {
4571   DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
4572                           getValue(I.getOperand(1)), 
4573                           DAG.getSrcValue(I.getOperand(1))));
4574 }
4575
4576 void SelectionDAGLowering::visitVACopy(CallInst &I) {
4577   DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(), 
4578                           getValue(I.getOperand(1)), 
4579                           getValue(I.getOperand(2)),
4580                           DAG.getSrcValue(I.getOperand(1)),
4581                           DAG.getSrcValue(I.getOperand(2))));
4582 }
4583
4584 /// TargetLowering::LowerArguments - This is the default LowerArguments
4585 /// implementation, which just inserts a FORMAL_ARGUMENTS node.  FIXME: When all
4586 /// targets are migrated to using FORMAL_ARGUMENTS, this hook should be 
4587 /// integrated into SDISel.
4588 void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
4589                                     SmallVectorImpl<SDOperand> &ArgValues) {
4590   // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
4591   SmallVector<SDOperand, 3+16> Ops;
4592   Ops.push_back(DAG.getRoot());
4593   Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
4594   Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
4595
4596   // Add one result value for each formal argument.
4597   SmallVector<MVT, 16> RetVals;
4598   unsigned j = 1;
4599   for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
4600        I != E; ++I, ++j) {
4601     SmallVector<MVT, 4> ValueVTs;
4602     ComputeValueVTs(*this, I->getType(), ValueVTs);
4603     for (unsigned Value = 0, NumValues = ValueVTs.size();
4604          Value != NumValues; ++Value) {
4605       MVT VT = ValueVTs[Value];
4606       const Type *ArgTy = VT.getTypeForMVT();
4607       ISD::ArgFlagsTy Flags;
4608       unsigned OriginalAlignment =
4609         getTargetData()->getABITypeAlignment(ArgTy);
4610
4611       if (F.paramHasAttr(j, ParamAttr::ZExt))
4612         Flags.setZExt();
4613       if (F.paramHasAttr(j, ParamAttr::SExt))
4614         Flags.setSExt();
4615       if (F.paramHasAttr(j, ParamAttr::InReg))
4616         Flags.setInReg();
4617       if (F.paramHasAttr(j, ParamAttr::StructRet))
4618         Flags.setSRet();
4619       if (F.paramHasAttr(j, ParamAttr::ByVal)) {
4620         Flags.setByVal();
4621         const PointerType *Ty = cast<PointerType>(I->getType());
4622         const Type *ElementTy = Ty->getElementType();
4623         unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4624         unsigned FrameSize  = getTargetData()->getABITypeSize(ElementTy);
4625         // For ByVal, alignment should be passed from FE.  BE will guess if
4626         // this info is not there but there are cases it cannot get right.
4627         if (F.getParamAlignment(j))
4628           FrameAlign = F.getParamAlignment(j);
4629         Flags.setByValAlign(FrameAlign);
4630         Flags.setByValSize(FrameSize);
4631       }
4632       if (F.paramHasAttr(j, ParamAttr::Nest))
4633         Flags.setNest();
4634       Flags.setOrigAlign(OriginalAlignment);
4635
4636       MVT RegisterVT = getRegisterType(VT);
4637       unsigned NumRegs = getNumRegisters(VT);
4638       for (unsigned i = 0; i != NumRegs; ++i) {
4639         RetVals.push_back(RegisterVT);
4640         ISD::ArgFlagsTy MyFlags = Flags;
4641         if (NumRegs > 1 && i == 0)
4642           MyFlags.setSplit();
4643         // if it isn't first piece, alignment must be 1
4644         else if (i > 0)
4645           MyFlags.setOrigAlign(1);
4646         Ops.push_back(DAG.getArgFlags(MyFlags));
4647       }
4648     }
4649   }
4650
4651   RetVals.push_back(MVT::Other);
4652   
4653   // Create the node.
4654   SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
4655                                DAG.getVTList(&RetVals[0], RetVals.size()),
4656                                &Ops[0], Ops.size()).Val;
4657   
4658   // Prelower FORMAL_ARGUMENTS.  This isn't required for functionality, but
4659   // allows exposing the loads that may be part of the argument access to the
4660   // first DAGCombiner pass.
4661   SDOperand TmpRes = LowerOperation(SDOperand(Result, 0), DAG);
4662   
4663   // The number of results should match up, except that the lowered one may have
4664   // an extra flag result.
4665   assert((Result->getNumValues() == TmpRes.Val->getNumValues() ||
4666           (Result->getNumValues()+1 == TmpRes.Val->getNumValues() &&
4667            TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
4668          && "Lowering produced unexpected number of results!");
4669   Result = TmpRes.Val;
4670   
4671   unsigned NumArgRegs = Result->getNumValues() - 1;
4672   DAG.setRoot(SDOperand(Result, NumArgRegs));
4673
4674   // Set up the return result vector.
4675   unsigned i = 0;
4676   unsigned Idx = 1;
4677   for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; 
4678       ++I, ++Idx) {
4679     SmallVector<MVT, 4> ValueVTs;
4680     ComputeValueVTs(*this, I->getType(), ValueVTs);
4681     for (unsigned Value = 0, NumValues = ValueVTs.size();
4682          Value != NumValues; ++Value) {
4683       MVT VT = ValueVTs[Value];
4684       MVT PartVT = getRegisterType(VT);
4685
4686       unsigned NumParts = getNumRegisters(VT);
4687       SmallVector<SDOperand, 4> Parts(NumParts);
4688       for (unsigned j = 0; j != NumParts; ++j)
4689         Parts[j] = SDOperand(Result, i++);
4690
4691       ISD::NodeType AssertOp = ISD::DELETED_NODE;
4692       if (F.paramHasAttr(Idx, ParamAttr::SExt))
4693         AssertOp = ISD::AssertSext;
4694       else if (F.paramHasAttr(Idx, ParamAttr::ZExt))
4695         AssertOp = ISD::AssertZext;
4696
4697       ArgValues.push_back(getCopyFromParts(DAG, &Parts[0], NumParts, PartVT, VT,
4698                                            AssertOp));
4699     }
4700   }
4701   assert(i == NumArgRegs && "Argument register count mismatch!");
4702 }
4703
4704
4705 /// TargetLowering::LowerCallTo - This is the default LowerCallTo
4706 /// implementation, which just inserts an ISD::CALL node, which is later custom
4707 /// lowered by the target to something concrete.  FIXME: When all targets are
4708 /// migrated to using ISD::CALL, this hook should be integrated into SDISel.
4709 std::pair<SDOperand, SDOperand>
4710 TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
4711                             bool RetSExt, bool RetZExt, bool isVarArg,
4712                             unsigned CallingConv, bool isTailCall,
4713                             SDOperand Callee,
4714                             ArgListTy &Args, SelectionDAG &DAG) {
4715   SmallVector<SDOperand, 32> Ops;
4716   Ops.push_back(Chain);   // Op#0 - Chain
4717   Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
4718   Ops.push_back(DAG.getConstant(isVarArg, getPointerTy()));    // Op#2 - VarArg
4719   Ops.push_back(DAG.getConstant(isTailCall, getPointerTy()));  // Op#3 - Tail
4720   Ops.push_back(Callee);
4721   
4722   // Handle all of the outgoing arguments.
4723   for (unsigned i = 0, e = Args.size(); i != e; ++i) {
4724     SmallVector<MVT, 4> ValueVTs;
4725     ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
4726     for (unsigned Value = 0, NumValues = ValueVTs.size();
4727          Value != NumValues; ++Value) {
4728       MVT VT = ValueVTs[Value];
4729       const Type *ArgTy = VT.getTypeForMVT();
4730       SDOperand Op = SDOperand(Args[i].Node.Val, Args[i].Node.ResNo + Value);
4731       ISD::ArgFlagsTy Flags;
4732       unsigned OriginalAlignment =
4733         getTargetData()->getABITypeAlignment(ArgTy);
4734
4735       if (Args[i].isZExt)
4736         Flags.setZExt();
4737       if (Args[i].isSExt)
4738         Flags.setSExt();
4739       if (Args[i].isInReg)
4740         Flags.setInReg();
4741       if (Args[i].isSRet)
4742         Flags.setSRet();
4743       if (Args[i].isByVal) {
4744         Flags.setByVal();
4745         const PointerType *Ty = cast<PointerType>(Args[i].Ty);
4746         const Type *ElementTy = Ty->getElementType();
4747         unsigned FrameAlign = getByValTypeAlignment(ElementTy);
4748         unsigned FrameSize  = getTargetData()->getABITypeSize(ElementTy);
4749         // For ByVal, alignment should come from FE.  BE will guess if this
4750         // info is not there but there are cases it cannot get right.
4751         if (Args[i].Alignment)
4752           FrameAlign = Args[i].Alignment;
4753         Flags.setByValAlign(FrameAlign);
4754         Flags.setByValSize(FrameSize);
4755       }
4756       if (Args[i].isNest)
4757         Flags.setNest();
4758       Flags.setOrigAlign(OriginalAlignment);
4759
4760       MVT PartVT = getRegisterType(VT);
4761       unsigned NumParts = getNumRegisters(VT);
4762       SmallVector<SDOperand, 4> Parts(NumParts);
4763       ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
4764
4765       if (Args[i].isSExt)
4766         ExtendKind = ISD::SIGN_EXTEND;
4767       else if (Args[i].isZExt)
4768         ExtendKind = ISD::ZERO_EXTEND;
4769
4770       getCopyToParts(DAG, Op, &Parts[0], NumParts, PartVT, ExtendKind);
4771
4772       for (unsigned i = 0; i != NumParts; ++i) {
4773         // if it isn't first piece, alignment must be 1
4774         ISD::ArgFlagsTy MyFlags = Flags;
4775         if (NumParts > 1 && i == 0)
4776           MyFlags.setSplit();
4777         else if (i != 0)
4778           MyFlags.setOrigAlign(1);
4779
4780         Ops.push_back(Parts[i]);
4781         Ops.push_back(DAG.getArgFlags(MyFlags));
4782       }
4783     }
4784   }
4785   
4786   // Figure out the result value types. We start by making a list of
4787   // the potentially illegal return value types.
4788   SmallVector<MVT, 4> LoweredRetTys;
4789   SmallVector<MVT, 4> RetTys;
4790   ComputeValueVTs(*this, RetTy, RetTys);
4791
4792   // Then we translate that to a list of legal types.
4793   for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
4794     MVT VT = RetTys[I];
4795     MVT RegisterVT = getRegisterType(VT);
4796     unsigned NumRegs = getNumRegisters(VT);
4797     for (unsigned i = 0; i != NumRegs; ++i)
4798       LoweredRetTys.push_back(RegisterVT);
4799   }
4800   
4801   LoweredRetTys.push_back(MVT::Other);  // Always has a chain.
4802   
4803   // Create the CALL node.
4804   SDOperand Res = DAG.getNode(ISD::CALL,
4805                               DAG.getVTList(&LoweredRetTys[0],
4806                                             LoweredRetTys.size()),
4807                               &Ops[0], Ops.size());
4808   Chain = Res.getValue(LoweredRetTys.size() - 1);
4809
4810   // Gather up the call result into a single value.
4811   if (RetTy != Type::VoidTy) {
4812     ISD::NodeType AssertOp = ISD::DELETED_NODE;
4813
4814     if (RetSExt)
4815       AssertOp = ISD::AssertSext;
4816     else if (RetZExt)
4817       AssertOp = ISD::AssertZext;
4818
4819     SmallVector<SDOperand, 4> ReturnValues;
4820     unsigned RegNo = 0;
4821     for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
4822       MVT VT = RetTys[I];
4823       MVT RegisterVT = getRegisterType(VT);
4824       unsigned NumRegs = getNumRegisters(VT);
4825       unsigned RegNoEnd = NumRegs + RegNo;
4826       SmallVector<SDOperand, 4> Results;
4827       for (; RegNo != RegNoEnd; ++RegNo)
4828         Results.push_back(Res.getValue(RegNo));
4829       SDOperand ReturnValue =
4830         getCopyFromParts(DAG, &Results[0], NumRegs, RegisterVT, VT,
4831                          AssertOp);
4832       ReturnValues.push_back(ReturnValue);
4833     }
4834     Res = DAG.getMergeValues(DAG.getVTList(&RetTys[0], RetTys.size()),
4835                              &ReturnValues[0], ReturnValues.size());
4836   }
4837
4838   return std::make_pair(Res, Chain);
4839 }
4840
4841 SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
4842   assert(0 && "LowerOperation not implemented for this target!");
4843   abort();
4844   return SDOperand();
4845 }
4846
4847 SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
4848                                                  SelectionDAG &DAG) {
4849   assert(0 && "CustomPromoteOperation not implemented for this target!");
4850   abort();
4851   return SDOperand();
4852 }
4853
4854 //===----------------------------------------------------------------------===//
4855 // SelectionDAGISel code
4856 //===----------------------------------------------------------------------===//
4857
4858 unsigned SelectionDAGISel::MakeReg(MVT VT) {
4859   return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
4860 }
4861
4862 void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
4863   AU.addRequired<AliasAnalysis>();
4864   AU.addRequired<CollectorModuleMetadata>();
4865   AU.setPreservesAll();
4866 }
4867
4868 bool SelectionDAGISel::runOnFunction(Function &Fn) {
4869   // Get alias analysis for load/store combining.
4870   AA = &getAnalysis<AliasAnalysis>();
4871
4872   MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
4873   if (MF.getFunction()->hasCollector())
4874     GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
4875   else
4876     GCI = 0;
4877   RegInfo = &MF.getRegInfo();
4878   DOUT << "\n\n\n=== " << Fn.getName() << "\n";
4879
4880   FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4881
4882   for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4883     if (InvokeInst *Invoke = dyn_cast<InvokeInst>(I->getTerminator()))
4884       // Mark landing pad.
4885       FuncInfo.MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
4886
4887   for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4888     SelectBasicBlock(I, MF, FuncInfo);
4889
4890   // Add function live-ins to entry block live-in set.
4891   BasicBlock *EntryBB = &Fn.getEntryBlock();
4892   BB = FuncInfo.MBBMap[EntryBB];
4893   if (!RegInfo->livein_empty())
4894     for (MachineRegisterInfo::livein_iterator I = RegInfo->livein_begin(),
4895            E = RegInfo->livein_end(); I != E; ++I)
4896       BB->addLiveIn(I->first);
4897
4898 #ifndef NDEBUG
4899   assert(FuncInfo.CatchInfoFound.size() == FuncInfo.CatchInfoLost.size() &&
4900          "Not all catch info was assigned to a landing pad!");
4901 #endif
4902
4903   return true;
4904 }
4905
4906 void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
4907   SDOperand Op = getValue(V);
4908   assert((Op.getOpcode() != ISD::CopyFromReg ||
4909           cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
4910          "Copy from a reg to the same reg!");
4911   assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
4912
4913   RegsForValue RFV(TLI, Reg, V->getType());
4914   SDOperand Chain = DAG.getEntryNode();
4915   RFV.getCopyToRegs(Op, DAG, Chain, 0);
4916   PendingExports.push_back(Chain);
4917 }
4918
4919 void SelectionDAGISel::
4920 LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL) {
4921   // If this is the entry block, emit arguments.
4922   Function &F = *LLVMBB->getParent();
4923   FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
4924   SDOperand OldRoot = SDL.DAG.getRoot();
4925   SmallVector<SDOperand, 16> Args;
4926   TLI.LowerArguments(F, SDL.DAG, Args);
4927
4928   unsigned a = 0;
4929   for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
4930        AI != E; ++AI) {
4931     SmallVector<MVT, 4> ValueVTs;
4932     ComputeValueVTs(TLI, AI->getType(), ValueVTs);
4933     unsigned NumValues = ValueVTs.size();
4934     if (!AI->use_empty()) {
4935       SDL.setValue(AI, SDL.DAG.getMergeValues(&Args[a], NumValues));
4936       // If this argument is live outside of the entry block, insert a copy from
4937       // whereever we got it to the vreg that other BB's will reference it as.
4938       DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4939       if (VMI != FuncInfo.ValueMap.end()) {
4940         SDL.CopyValueToVirtualRegister(AI, VMI->second);
4941       }
4942     }
4943     a += NumValues;
4944   }
4945
4946   // Finally, if the target has anything special to do, allow it to do so.
4947   // FIXME: this should insert code into the DAG!
4948   EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
4949 }
4950
4951 static void copyCatchInfo(BasicBlock *SrcBB, BasicBlock *DestBB,
4952                           MachineModuleInfo *MMI, FunctionLoweringInfo &FLI) {
4953   for (BasicBlock::iterator I = SrcBB->begin(), E = --SrcBB->end(); I != E; ++I)
4954     if (isSelector(I)) {
4955       // Apply the catch info to DestBB.
4956       addCatchInfo(cast<CallInst>(*I), MMI, FLI.MBBMap[DestBB]);
4957 #ifndef NDEBUG
4958       if (!FLI.MBBMap[SrcBB]->isLandingPad())
4959         FLI.CatchInfoFound.insert(I);
4960 #endif
4961     }
4962 }
4963
4964 /// IsFixedFrameObjectWithPosOffset - Check if object is a fixed frame object and
4965 /// whether object offset >= 0.
4966 static bool
4967 IsFixedFrameObjectWithPosOffset(MachineFrameInfo * MFI, SDOperand Op) {
4968   if (!isa<FrameIndexSDNode>(Op)) return false;
4969
4970   FrameIndexSDNode * FrameIdxNode = dyn_cast<FrameIndexSDNode>(Op);
4971   int FrameIdx =  FrameIdxNode->getIndex();
4972   return MFI->isFixedObjectIndex(FrameIdx) &&
4973     MFI->getObjectOffset(FrameIdx) >= 0;
4974 }
4975
4976 /// IsPossiblyOverwrittenArgumentOfTailCall - Check if the operand could
4977 /// possibly be overwritten when lowering the outgoing arguments in a tail
4978 /// call. Currently the implementation of this call is very conservative and
4979 /// assumes all arguments sourcing from FORMAL_ARGUMENTS or a CopyFromReg with
4980 /// virtual registers would be overwritten by direct lowering.
4981 static bool IsPossiblyOverwrittenArgumentOfTailCall(SDOperand Op,
4982                                                     MachineFrameInfo * MFI) {
4983   RegisterSDNode * OpReg = NULL;
4984   if (Op.getOpcode() == ISD::FORMAL_ARGUMENTS ||
4985       (Op.getOpcode()== ISD::CopyFromReg &&
4986        (OpReg = dyn_cast<RegisterSDNode>(Op.getOperand(1))) &&
4987        (OpReg->getReg() >= TargetRegisterInfo::FirstVirtualRegister)) ||
4988       (Op.getOpcode() == ISD::LOAD &&
4989        IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(1))) ||
4990       (Op.getOpcode() == ISD::MERGE_VALUES &&
4991        Op.getOperand(Op.ResNo).getOpcode() == ISD::LOAD &&
4992        IsFixedFrameObjectWithPosOffset(MFI, Op.getOperand(Op.ResNo).
4993                                        getOperand(1))))
4994     return true;
4995   return false;
4996 }
4997
4998 /// CheckDAGForTailCallsAndFixThem - This Function looks for CALL nodes in the
4999 /// DAG and fixes their tailcall attribute operand.
5000 static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG, 
5001                                            TargetLowering& TLI) {
5002   SDNode * Ret = NULL;
5003   SDOperand Terminator = DAG.getRoot();
5004
5005   // Find RET node.
5006   if (Terminator.getOpcode() == ISD::RET) {
5007     Ret = Terminator.Val;
5008   }
5009  
5010   // Fix tail call attribute of CALL nodes.
5011   for (SelectionDAG::allnodes_iterator BE = DAG.allnodes_begin(),
5012          BI = prior(DAG.allnodes_end()); BI != BE; --BI) {
5013     if (BI->getOpcode() == ISD::CALL) {
5014       SDOperand OpRet(Ret, 0);
5015       SDOperand OpCall(static_cast<SDNode*>(BI), 0);
5016       bool isMarkedTailCall = 
5017         cast<ConstantSDNode>(OpCall.getOperand(3))->getValue() != 0;
5018       // If CALL node has tail call attribute set to true and the call is not
5019       // eligible (no RET or the target rejects) the attribute is fixed to
5020       // false. The TargetLowering::IsEligibleForTailCallOptimization function
5021       // must correctly identify tail call optimizable calls.
5022       if (!isMarkedTailCall) continue;
5023       if (Ret==NULL ||
5024           !TLI.IsEligibleForTailCallOptimization(OpCall, OpRet, DAG)) {
5025         // Not eligible. Mark CALL node as non tail call.
5026         SmallVector<SDOperand, 32> Ops;
5027         unsigned idx=0;
5028         for(SDNode::op_iterator I =OpCall.Val->op_begin(),
5029               E = OpCall.Val->op_end(); I != E; I++, idx++) {
5030           if (idx!=3)
5031             Ops.push_back(*I);
5032           else
5033             Ops.push_back(DAG.getConstant(false, TLI.getPointerTy()));
5034         }
5035         DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
5036       } else {
5037         // Look for tail call clobbered arguments. Emit a series of
5038         // copyto/copyfrom virtual register nodes to protect them.
5039         SmallVector<SDOperand, 32> Ops;
5040         SDOperand Chain = OpCall.getOperand(0), InFlag;
5041         unsigned idx=0;
5042         for(SDNode::op_iterator I = OpCall.Val->op_begin(),
5043               E = OpCall.Val->op_end(); I != E; I++, idx++) {
5044           SDOperand Arg = *I;
5045           if (idx > 4 && (idx % 2)) {
5046             bool isByVal = cast<ARG_FLAGSSDNode>(OpCall.getOperand(idx+1))->
5047               getArgFlags().isByVal();
5048             MachineFunction &MF = DAG.getMachineFunction();
5049             MachineFrameInfo *MFI = MF.getFrameInfo();
5050             if (!isByVal &&
5051                 IsPossiblyOverwrittenArgumentOfTailCall(Arg, MFI)) {
5052               MVT VT = Arg.getValueType();
5053               unsigned VReg = MF.getRegInfo().
5054                 createVirtualRegister(TLI.getRegClassFor(VT));
5055               Chain = DAG.getCopyToReg(Chain, VReg, Arg, InFlag);
5056               InFlag = Chain.getValue(1);
5057               Arg = DAG.getCopyFromReg(Chain, VReg, VT, InFlag);
5058               Chain = Arg.getValue(1);
5059               InFlag = Arg.getValue(2);
5060             }
5061           }
5062           Ops.push_back(Arg);
5063         }
5064         // Link in chain of CopyTo/CopyFromReg.
5065         Ops[0] = Chain;
5066         DAG.UpdateNodeOperands(OpCall, Ops.begin(), Ops.size());
5067       }
5068     }
5069   }
5070 }
5071
5072 void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
5073        std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
5074                                          FunctionLoweringInfo &FuncInfo) {
5075   SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
5076
5077   // Lower any arguments needed in this block if this is the entry block.
5078   if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
5079     LowerArguments(LLVMBB, SDL);
5080
5081   BB = FuncInfo.MBBMap[LLVMBB];
5082   SDL.setCurrentBasicBlock(BB);
5083
5084   MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
5085
5086   if (MMI && BB->isLandingPad()) {
5087     // Add a label to mark the beginning of the landing pad.  Deletion of the
5088     // landing pad can thus be detected via the MachineModuleInfo.
5089     unsigned LabelID = MMI->addLandingPad(BB);
5090     DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, DAG.getEntryNode(), LabelID));
5091
5092     // Mark exception register as live in.
5093     unsigned Reg = TLI.getExceptionAddressRegister();
5094     if (Reg) BB->addLiveIn(Reg);
5095
5096     // Mark exception selector register as live in.
5097     Reg = TLI.getExceptionSelectorRegister();
5098     if (Reg) BB->addLiveIn(Reg);
5099
5100     // FIXME: Hack around an exception handling flaw (PR1508): the personality
5101     // function and list of typeids logically belong to the invoke (or, if you
5102     // like, the basic block containing the invoke), and need to be associated
5103     // with it in the dwarf exception handling tables.  Currently however the
5104     // information is provided by an intrinsic (eh.selector) that can be moved
5105     // to unexpected places by the optimizers: if the unwind edge is critical,
5106     // then breaking it can result in the intrinsics being in the successor of
5107     // the landing pad, not the landing pad itself.  This results in exceptions
5108     // not being caught because no typeids are associated with the invoke.
5109     // This may not be the only way things can go wrong, but it is the only way
5110     // we try to work around for the moment.
5111     BranchInst *Br = dyn_cast<BranchInst>(LLVMBB->getTerminator());
5112
5113     if (Br && Br->isUnconditional()) { // Critical edge?
5114       BasicBlock::iterator I, E;
5115       for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
5116         if (isSelector(I))
5117           break;
5118
5119       if (I == E)
5120         // No catch info found - try to extract some from the successor.
5121         copyCatchInfo(Br->getSuccessor(0), LLVMBB, MMI, FuncInfo);
5122     }
5123   }
5124
5125   // Lower all of the non-terminator instructions.
5126   for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
5127        I != E; ++I)
5128     SDL.visit(*I);
5129
5130   // Ensure that all instructions which are used outside of their defining
5131   // blocks are available as virtual registers.  Invoke is handled elsewhere.
5132   for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
5133     if (!I->use_empty() && !isa<PHINode>(I) && !isa<InvokeInst>(I)) {
5134       DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
5135       if (VMI != FuncInfo.ValueMap.end())
5136         SDL.CopyValueToVirtualRegister(I, VMI->second);
5137     }
5138
5139   // Handle PHI nodes in successor blocks.  Emit code into the SelectionDAG to
5140   // ensure constants are generated when needed.  Remember the virtual registers
5141   // that need to be added to the Machine PHI nodes as input.  We cannot just
5142   // directly add them, because expansion might result in multiple MBB's for one
5143   // BB.  As such, the start of the BB might correspond to a different MBB than
5144   // the end.
5145   //
5146   TerminatorInst *TI = LLVMBB->getTerminator();
5147
5148   // Emit constants only once even if used by multiple PHI nodes.
5149   std::map<Constant*, unsigned> ConstantsOut;
5150   
5151   // Vector bool would be better, but vector<bool> is really slow.
5152   std::vector<unsigned char> SuccsHandled;
5153   if (TI->getNumSuccessors())
5154     SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
5155     
5156   // Check successor nodes' PHI nodes that expect a constant to be available
5157   // from this block.
5158   for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5159     BasicBlock *SuccBB = TI->getSuccessor(succ);
5160     if (!isa<PHINode>(SuccBB->begin())) continue;
5161     MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
5162     
5163     // If this terminator has multiple identical successors (common for
5164     // switches), only handle each succ once.
5165     unsigned SuccMBBNo = SuccMBB->getNumber();
5166     if (SuccsHandled[SuccMBBNo]) continue;
5167     SuccsHandled[SuccMBBNo] = true;
5168     
5169     MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5170     PHINode *PN;
5171
5172     // At this point we know that there is a 1-1 correspondence between LLVM PHI
5173     // nodes and Machine PHI nodes, but the incoming operands have not been
5174     // emitted yet.
5175     for (BasicBlock::iterator I = SuccBB->begin();
5176          (PN = dyn_cast<PHINode>(I)); ++I) {
5177       // Ignore dead phi's.
5178       if (PN->use_empty()) continue;
5179       
5180       unsigned Reg;
5181       Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5182       
5183       if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5184         unsigned &RegOut = ConstantsOut[C];
5185         if (RegOut == 0) {
5186           RegOut = FuncInfo.CreateRegForValue(C);
5187           SDL.CopyValueToVirtualRegister(C, RegOut);
5188         }
5189         Reg = RegOut;
5190       } else {
5191         Reg = FuncInfo.ValueMap[PHIOp];
5192         if (Reg == 0) {
5193           assert(isa<AllocaInst>(PHIOp) &&
5194                  FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5195                  "Didn't codegen value into a register!??");
5196           Reg = FuncInfo.CreateRegForValue(PHIOp);
5197           SDL.CopyValueToVirtualRegister(PHIOp, Reg);
5198         }
5199       }
5200
5201       // Remember that this register needs to added to the machine PHI node as
5202       // the input for this MBB.
5203       MVT VT = TLI.getValueType(PN->getType());
5204       unsigned NumRegisters = TLI.getNumRegisters(VT);
5205       for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5206         PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5207     }
5208   }
5209   ConstantsOut.clear();
5210
5211   // Lower the terminator after the copies are emitted.
5212   SDL.visit(*LLVMBB->getTerminator());
5213
5214   // Copy over any CaseBlock records that may now exist due to SwitchInst
5215   // lowering, as well as any jump table information.
5216   SwitchCases.clear();
5217   SwitchCases = SDL.SwitchCases;
5218   JTCases.clear();
5219   JTCases = SDL.JTCases;
5220   BitTestCases.clear();
5221   BitTestCases = SDL.BitTestCases;
5222     
5223   // Make sure the root of the DAG is up-to-date.
5224   DAG.setRoot(SDL.getControlRoot());
5225
5226   // Check whether calls in this block are real tail calls. Fix up CALL nodes
5227   // with correct tailcall attribute so that the target can rely on the tailcall
5228   // attribute indicating whether the call is really eligible for tail call
5229   // optimization.
5230   CheckDAGForTailCallsAndFixThem(DAG, TLI);
5231 }
5232
5233 void SelectionDAGISel::ComputeLiveOutVRegInfo(SelectionDAG &DAG) {
5234   SmallPtrSet<SDNode*, 128> VisitedNodes;
5235   SmallVector<SDNode*, 128> Worklist;
5236   
5237   Worklist.push_back(DAG.getRoot().Val);
5238   
5239   APInt Mask;
5240   APInt KnownZero;
5241   APInt KnownOne;
5242   
5243   while (!Worklist.empty()) {
5244     SDNode *N = Worklist.back();
5245     Worklist.pop_back();
5246     
5247     // If we've already seen this node, ignore it.
5248     if (!VisitedNodes.insert(N))
5249       continue;
5250     
5251     // Otherwise, add all chain operands to the worklist.
5252     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5253       if (N->getOperand(i).getValueType() == MVT::Other)
5254         Worklist.push_back(N->getOperand(i).Val);
5255     
5256     // If this is a CopyToReg with a vreg dest, process it.
5257     if (N->getOpcode() != ISD::CopyToReg)
5258       continue;
5259     
5260     unsigned DestReg = cast<RegisterSDNode>(N->getOperand(1))->getReg();
5261     if (!TargetRegisterInfo::isVirtualRegister(DestReg))
5262       continue;
5263     
5264     // Ignore non-scalar or non-integer values.
5265     SDOperand Src = N->getOperand(2);
5266     MVT SrcVT = Src.getValueType();
5267     if (!SrcVT.isInteger() || SrcVT.isVector())
5268       continue;
5269     
5270     unsigned NumSignBits = DAG.ComputeNumSignBits(Src);
5271     Mask = APInt::getAllOnesValue(SrcVT.getSizeInBits());
5272     DAG.ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
5273     
5274     // Only install this information if it tells us something.
5275     if (NumSignBits != 1 || KnownZero != 0 || KnownOne != 0) {
5276       DestReg -= TargetRegisterInfo::FirstVirtualRegister;
5277       FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
5278       if (DestReg >= FLI.LiveOutRegInfo.size())
5279         FLI.LiveOutRegInfo.resize(DestReg+1);
5280       FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
5281       LOI.NumSignBits = NumSignBits;
5282       LOI.KnownOne = NumSignBits;
5283       LOI.KnownZero = NumSignBits;
5284     }
5285   }
5286 }
5287
5288 void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
5289   DOUT << "Lowered selection DAG:\n";
5290   DEBUG(DAG.dump());
5291
5292   // Run the DAG combiner in pre-legalize mode.
5293   if (TimePassesIsEnabled) {
5294     NamedRegionTimer T("DAG Combining 1");
5295     DAG.Combine(false, *AA);
5296   } else {
5297     DAG.Combine(false, *AA);
5298   }
5299   
5300   DOUT << "Optimized lowered selection DAG:\n";
5301   DEBUG(DAG.dump());
5302   
5303   // Second step, hack on the DAG until it only uses operations and types that
5304   // the target supports.
5305 #if 0  // Enable this some day.
5306   DAG.LegalizeTypes();
5307   // Someday even later, enable a dag combine pass here.
5308 #endif
5309   if (TimePassesIsEnabled) {
5310     NamedRegionTimer T("DAG Legalization");
5311     DAG.Legalize();
5312   } else {
5313     DAG.Legalize();
5314   }
5315   
5316   DOUT << "Legalized selection DAG:\n";
5317   DEBUG(DAG.dump());
5318   
5319   // Run the DAG combiner in post-legalize mode.
5320   if (TimePassesIsEnabled) {
5321     NamedRegionTimer T("DAG Combining 2");
5322     DAG.Combine(true, *AA);
5323   } else {
5324     DAG.Combine(true, *AA);
5325   }
5326   
5327   DOUT << "Optimized legalized selection DAG:\n";
5328   DEBUG(DAG.dump());
5329
5330   if (ViewISelDAGs) DAG.viewGraph();
5331   
5332   if (!FastISel && EnableValueProp)
5333     ComputeLiveOutVRegInfo(DAG);
5334
5335   // Third, instruction select all of the operations to machine code, adding the
5336   // code to the MachineBasicBlock.
5337   if (TimePassesIsEnabled) {
5338     NamedRegionTimer T("Instruction Selection");
5339     InstructionSelect(DAG);
5340   } else {
5341     InstructionSelect(DAG);
5342   }
5343
5344   // Emit machine code to BB.  This can change 'BB' to the last block being 
5345   // inserted into.
5346   if (TimePassesIsEnabled) {
5347     NamedRegionTimer T("Instruction Scheduling");
5348     ScheduleAndEmitDAG(DAG);
5349   } else {
5350     ScheduleAndEmitDAG(DAG);
5351   }
5352
5353   // Perform target specific isel post processing.
5354   if (TimePassesIsEnabled) {
5355     NamedRegionTimer T("Instruction Selection Post Processing");
5356     InstructionSelectPostProcessing(DAG);
5357   } else {
5358     InstructionSelectPostProcessing(DAG);
5359   }
5360   
5361   DOUT << "Selected machine code:\n";
5362   DEBUG(BB->dump());
5363 }  
5364
5365 void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
5366                                         FunctionLoweringInfo &FuncInfo) {
5367   std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
5368   {
5369     SelectionDAG DAG(TLI, MF, FuncInfo, 
5370                      getAnalysisToUpdate<MachineModuleInfo>());
5371     CurDAG = &DAG;
5372   
5373     // First step, lower LLVM code to some DAG.  This DAG may use operations and
5374     // types that are not supported by the target.
5375     BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
5376
5377     // Second step, emit the lowered DAG as machine code.
5378     CodeGenAndEmitDAG(DAG);
5379   }
5380
5381   DOUT << "Total amount of phi nodes to update: "
5382        << PHINodesToUpdate.size() << "\n";
5383   DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
5384           DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
5385                << ", " << PHINodesToUpdate[i].second << ")\n";);
5386   
5387   // Next, now that we know what the last MBB the LLVM BB expanded is, update
5388   // PHI nodes in successors.
5389   if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
5390     for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5391       MachineInstr *PHI = PHINodesToUpdate[i].first;
5392       assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5393              "This is not a machine PHI node that we are updating!");
5394       PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5395                                                 false));
5396       PHI->addOperand(MachineOperand::CreateMBB(BB));
5397     }
5398     return;
5399   }
5400
5401   for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
5402     // Lower header first, if it wasn't already lowered
5403     if (!BitTestCases[i].Emitted) {
5404       SelectionDAG HSDAG(TLI, MF, FuncInfo, 
5405                          getAnalysisToUpdate<MachineModuleInfo>());
5406       CurDAG = &HSDAG;
5407       SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
5408       // Set the current basic block to the mbb we wish to insert the code into
5409       BB = BitTestCases[i].Parent;
5410       HSDL.setCurrentBasicBlock(BB);
5411       // Emit the code
5412       HSDL.visitBitTestHeader(BitTestCases[i]);
5413       HSDAG.setRoot(HSDL.getRoot());
5414       CodeGenAndEmitDAG(HSDAG);
5415     }    
5416
5417     for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5418       SelectionDAG BSDAG(TLI, MF, FuncInfo, 
5419                          getAnalysisToUpdate<MachineModuleInfo>());
5420       CurDAG = &BSDAG;
5421       SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
5422       // Set the current basic block to the mbb we wish to insert the code into
5423       BB = BitTestCases[i].Cases[j].ThisBB;
5424       BSDL.setCurrentBasicBlock(BB);
5425       // Emit the code
5426       if (j+1 != ej)
5427         BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
5428                               BitTestCases[i].Reg,
5429                               BitTestCases[i].Cases[j]);
5430       else
5431         BSDL.visitBitTestCase(BitTestCases[i].Default,
5432                               BitTestCases[i].Reg,
5433                               BitTestCases[i].Cases[j]);
5434         
5435         
5436       BSDAG.setRoot(BSDL.getRoot());
5437       CodeGenAndEmitDAG(BSDAG);
5438     }
5439
5440     // Update PHI Nodes
5441     for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5442       MachineInstr *PHI = PHINodesToUpdate[pi].first;
5443       MachineBasicBlock *PHIBB = PHI->getParent();
5444       assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5445              "This is not a machine PHI node that we are updating!");
5446       // This is "default" BB. We have two jumps to it. From "header" BB and
5447       // from last "case" BB.
5448       if (PHIBB == BitTestCases[i].Default) {
5449         PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5450                                                   false));
5451         PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Parent));
5452         PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5453                                                   false));
5454         PHI->addOperand(MachineOperand::CreateMBB(BitTestCases[i].Cases.
5455                                                   back().ThisBB));
5456       }
5457       // One of "cases" BB.
5458       for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
5459         MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
5460         if (cBB->succ_end() !=
5461             std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
5462           PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5463                                                     false));
5464           PHI->addOperand(MachineOperand::CreateMBB(cBB));
5465         }
5466       }
5467     }
5468   }
5469
5470   // If the JumpTable record is filled in, then we need to emit a jump table.
5471   // Updating the PHI nodes is tricky in this case, since we need to determine
5472   // whether the PHI is a successor of the range check MBB or the jump table MBB
5473   for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
5474     // Lower header first, if it wasn't already lowered
5475     if (!JTCases[i].first.Emitted) {
5476       SelectionDAG HSDAG(TLI, MF, FuncInfo, 
5477                          getAnalysisToUpdate<MachineModuleInfo>());
5478       CurDAG = &HSDAG;
5479       SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
5480       // Set the current basic block to the mbb we wish to insert the code into
5481       BB = JTCases[i].first.HeaderBB;
5482       HSDL.setCurrentBasicBlock(BB);
5483       // Emit the code
5484       HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
5485       HSDAG.setRoot(HSDL.getRoot());
5486       CodeGenAndEmitDAG(HSDAG);
5487     }
5488     
5489     SelectionDAG JSDAG(TLI, MF, FuncInfo, 
5490                        getAnalysisToUpdate<MachineModuleInfo>());
5491     CurDAG = &JSDAG;
5492     SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
5493     // Set the current basic block to the mbb we wish to insert the code into
5494     BB = JTCases[i].second.MBB;
5495     JSDL.setCurrentBasicBlock(BB);
5496     // Emit the code
5497     JSDL.visitJumpTable(JTCases[i].second);
5498     JSDAG.setRoot(JSDL.getRoot());
5499     CodeGenAndEmitDAG(JSDAG);
5500     
5501     // Update PHI Nodes
5502     for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
5503       MachineInstr *PHI = PHINodesToUpdate[pi].first;
5504       MachineBasicBlock *PHIBB = PHI->getParent();
5505       assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5506              "This is not a machine PHI node that we are updating!");
5507       // "default" BB. We can go there only from header BB.
5508       if (PHIBB == JTCases[i].second.Default) {
5509         PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5510                                                   false));
5511         PHI->addOperand(MachineOperand::CreateMBB(JTCases[i].first.HeaderBB));
5512       }
5513       // JT BB. Just iterate over successors here
5514       if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
5515         PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pi].second,
5516                                                   false));
5517         PHI->addOperand(MachineOperand::CreateMBB(BB));
5518       }
5519     }
5520   }
5521   
5522   // If the switch block involved a branch to one of the actual successors, we
5523   // need to update PHI nodes in that block.
5524   for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
5525     MachineInstr *PHI = PHINodesToUpdate[i].first;
5526     assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
5527            "This is not a machine PHI node that we are updating!");
5528     if (BB->isSuccessor(PHI->getParent())) {
5529       PHI->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[i].second,
5530                                                 false));
5531       PHI->addOperand(MachineOperand::CreateMBB(BB));
5532     }
5533   }
5534   
5535   // If we generated any switch lowering information, build and codegen any
5536   // additional DAGs necessary.
5537   for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
5538     SelectionDAG SDAG(TLI, MF, FuncInfo, 
5539                       getAnalysisToUpdate<MachineModuleInfo>());
5540     CurDAG = &SDAG;
5541     SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
5542     
5543     // Set the current basic block to the mbb we wish to insert the code into
5544     BB = SwitchCases[i].ThisBB;
5545     SDL.setCurrentBasicBlock(BB);
5546     
5547     // Emit the code
5548     SDL.visitSwitchCase(SwitchCases[i]);
5549     SDAG.setRoot(SDL.getRoot());
5550     CodeGenAndEmitDAG(SDAG);
5551     
5552     // Handle any PHI nodes in successors of this chunk, as if we were coming
5553     // from the original BB before switch expansion.  Note that PHI nodes can
5554     // occur multiple times in PHINodesToUpdate.  We have to be very careful to
5555     // handle them the right number of times.
5556     while ((BB = SwitchCases[i].TrueBB)) {  // Handle LHS and RHS.
5557       for (MachineBasicBlock::iterator Phi = BB->begin();
5558            Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
5559         // This value for this PHI node is recorded in PHINodesToUpdate, get it.
5560         for (unsigned pn = 0; ; ++pn) {
5561           assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
5562           if (PHINodesToUpdate[pn].first == Phi) {
5563             Phi->addOperand(MachineOperand::CreateReg(PHINodesToUpdate[pn].
5564                                                       second, false));
5565             Phi->addOperand(MachineOperand::CreateMBB(SwitchCases[i].ThisBB));
5566             break;
5567           }
5568         }
5569       }
5570       
5571       // Don't process RHS if same block as LHS.
5572       if (BB == SwitchCases[i].FalseBB)
5573         SwitchCases[i].FalseBB = 0;
5574       
5575       // If we haven't handled the RHS, do so now.  Otherwise, we're done.
5576       SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
5577       SwitchCases[i].FalseBB = 0;
5578     }
5579     assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
5580   }
5581 }
5582
5583
5584 //===----------------------------------------------------------------------===//
5585 /// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
5586 /// target node in the graph.
5587 void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
5588   if (ViewSchedDAGs) DAG.viewGraph();
5589
5590   RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
5591   
5592   if (!Ctor) {
5593     Ctor = ISHeuristic;
5594     RegisterScheduler::setDefault(Ctor);
5595   }
5596   
5597   ScheduleDAG *SL = Ctor(this, &DAG, BB, FastISel);
5598   BB = SL->Run();
5599
5600   if (ViewSUnitDAGs) SL->viewGraph();
5601
5602   delete SL;
5603 }
5604
5605
5606 HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
5607   return new HazardRecognizer();
5608 }
5609
5610 //===----------------------------------------------------------------------===//
5611 // Helper functions used by the generated instruction selector.
5612 //===----------------------------------------------------------------------===//
5613 // Calls to these methods are generated by tblgen.
5614
5615 /// CheckAndMask - The isel is trying to match something like (and X, 255).  If
5616 /// the dag combiner simplified the 255, we still want to match.  RHS is the
5617 /// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
5618 /// specified in the .td file (e.g. 255).
5619 bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS, 
5620                                     int64_t DesiredMaskS) const {
5621   const APInt &ActualMask = RHS->getAPIntValue();
5622   const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
5623   
5624   // If the actual mask exactly matches, success!
5625   if (ActualMask == DesiredMask)
5626     return true;
5627   
5628   // If the actual AND mask is allowing unallowed bits, this doesn't match.
5629   if (ActualMask.intersects(~DesiredMask))
5630     return false;
5631   
5632   // Otherwise, the DAG Combiner may have proven that the value coming in is
5633   // either already zero or is not demanded.  Check for known zero input bits.
5634   APInt NeededMask = DesiredMask & ~ActualMask;
5635   if (CurDAG->MaskedValueIsZero(LHS, NeededMask))
5636     return true;
5637   
5638   // TODO: check to see if missing bits are just not demanded.
5639
5640   // Otherwise, this pattern doesn't match.
5641   return false;
5642 }
5643
5644 /// CheckOrMask - The isel is trying to match something like (or X, 255).  If
5645 /// the dag combiner simplified the 255, we still want to match.  RHS is the
5646 /// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
5647 /// specified in the .td file (e.g. 255).
5648 bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS, 
5649                                    int64_t DesiredMaskS) const {
5650   const APInt &ActualMask = RHS->getAPIntValue();
5651   const APInt &DesiredMask = APInt(LHS.getValueSizeInBits(), DesiredMaskS);
5652   
5653   // If the actual mask exactly matches, success!
5654   if (ActualMask == DesiredMask)
5655     return true;
5656   
5657   // If the actual AND mask is allowing unallowed bits, this doesn't match.
5658   if (ActualMask.intersects(~DesiredMask))
5659     return false;
5660   
5661   // Otherwise, the DAG Combiner may have proven that the value coming in is
5662   // either already zero or is not demanded.  Check for known zero input bits.
5663   APInt NeededMask = DesiredMask & ~ActualMask;
5664   
5665   APInt KnownZero, KnownOne;
5666   CurDAG->ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
5667   
5668   // If all the missing bits in the or are already known to be set, match!
5669   if ((NeededMask & KnownOne) == NeededMask)
5670     return true;
5671   
5672   // TODO: check to see if missing bits are just not demanded.
5673   
5674   // Otherwise, this pattern doesn't match.
5675   return false;
5676 }
5677
5678
5679 /// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
5680 /// by tblgen.  Others should not call it.
5681 void SelectionDAGISel::
5682 SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
5683   std::vector<SDOperand> InOps;
5684   std::swap(InOps, Ops);
5685
5686   Ops.push_back(InOps[0]);  // input chain.
5687   Ops.push_back(InOps[1]);  // input asm string.
5688
5689   unsigned i = 2, e = InOps.size();
5690   if (InOps[e-1].getValueType() == MVT::Flag)
5691     --e;  // Don't process a flag operand if it is here.
5692   
5693   while (i != e) {
5694     unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
5695     if ((Flags & 7) != 4 /*MEM*/) {
5696       // Just skip over this operand, copying the operands verbatim.
5697       Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
5698       i += (Flags >> 3) + 1;
5699     } else {
5700       assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
5701       // Otherwise, this is a memory operand.  Ask the target to select it.
5702       std::vector<SDOperand> SelOps;
5703       if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
5704         cerr << "Could not match memory address.  Inline asm failure!\n";
5705         exit(1);
5706       }
5707       
5708       // Add this to the output node.
5709       MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
5710       Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
5711                                           IntPtrTy));
5712       Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
5713       i += 2;
5714     }
5715   }
5716   
5717   // Add the flag input back if present.
5718   if (e != InOps.size())
5719     Ops.push_back(InOps.back());
5720 }
5721
5722 char SelectionDAGISel::ID = 0;