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