Next stage into switch lowering refactoring
[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 was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source 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/MachineModuleInfo.h"
30 #include "llvm/CodeGen/MachineFunction.h"
31 #include "llvm/CodeGen/MachineFrameInfo.h"
32 #include "llvm/CodeGen/MachineJumpTableInfo.h"
33 #include "llvm/CodeGen/MachineInstrBuilder.h"
34 #include "llvm/CodeGen/SchedulerRegistry.h"
35 #include "llvm/CodeGen/SelectionDAG.h"
36 #include "llvm/CodeGen/SSARegMap.h"
37 #include "llvm/Target/MRegisterInfo.h"
38 #include "llvm/Target/TargetData.h"
39 #include "llvm/Target/TargetFrameInfo.h"
40 #include "llvm/Target/TargetInstrInfo.h"
41 #include "llvm/Target/TargetLowering.h"
42 #include "llvm/Target/TargetMachine.h"
43 #include "llvm/Target/TargetOptions.h"
44 #include "llvm/Support/MathExtras.h"
45 #include "llvm/Support/Debug.h"
46 #include "llvm/Support/Compiler.h"
47 #include <algorithm>
48 using namespace llvm;
49
50 #ifndef NDEBUG
51 static cl::opt<bool>
52 ViewISelDAGs("view-isel-dags", cl::Hidden,
53           cl::desc("Pop up a window to show isel dags as they are selected"));
54 static cl::opt<bool>
55 ViewSchedDAGs("view-sched-dags", cl::Hidden,
56           cl::desc("Pop up a window to show sched dags as they are processed"));
57 #else
58 static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
59 #endif
60
61 //===---------------------------------------------------------------------===//
62 ///
63 /// RegisterScheduler class - Track the registration of instruction schedulers.
64 ///
65 //===---------------------------------------------------------------------===//
66 MachinePassRegistry RegisterScheduler::Registry;
67
68 //===---------------------------------------------------------------------===//
69 ///
70 /// ISHeuristic command line option for instruction schedulers.
71 ///
72 //===---------------------------------------------------------------------===//
73 namespace {
74   cl::opt<RegisterScheduler::FunctionPassCtor, false,
75           RegisterPassParser<RegisterScheduler> >
76   ISHeuristic("sched",
77               cl::init(&createDefaultScheduler),
78               cl::desc("Instruction schedulers available:"));
79
80   static RegisterScheduler
81   defaultListDAGScheduler("default", "  Best scheduler for the target",
82                           createDefaultScheduler);
83 } // namespace
84
85 namespace {
86   /// RegsForValue - This struct represents the physical registers that a
87   /// particular value is assigned and the type information about the value.
88   /// This is needed because values can be promoted into larger registers and
89   /// expanded into multiple smaller registers than the value.
90   struct VISIBILITY_HIDDEN RegsForValue {
91     /// Regs - This list hold the register (for legal and promoted values)
92     /// or register set (for expanded values) that the value should be assigned
93     /// to.
94     std::vector<unsigned> Regs;
95     
96     /// RegVT - The value type of each register.
97     ///
98     MVT::ValueType RegVT;
99     
100     /// ValueVT - The value type of the LLVM value, which may be promoted from
101     /// RegVT or made from merging the two expanded parts.
102     MVT::ValueType ValueVT;
103     
104     RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
105     
106     RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
107       : RegVT(regvt), ValueVT(valuevt) {
108         Regs.push_back(Reg);
109     }
110     RegsForValue(const std::vector<unsigned> &regs, 
111                  MVT::ValueType regvt, MVT::ValueType valuevt)
112       : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
113     }
114     
115     /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
116     /// this value and returns the result as a ValueVT value.  This uses 
117     /// Chain/Flag as the input and updates them for the output Chain/Flag.
118     SDOperand getCopyFromRegs(SelectionDAG &DAG,
119                               SDOperand &Chain, SDOperand &Flag) const;
120
121     /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
122     /// specified value into the registers specified by this object.  This uses 
123     /// Chain/Flag as the input and updates them for the output Chain/Flag.
124     void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
125                        SDOperand &Chain, SDOperand &Flag,
126                        MVT::ValueType PtrVT) const;
127     
128     /// AddInlineAsmOperands - Add this value to the specified inlineasm node
129     /// operand list.  This adds the code marker and includes the number of 
130     /// values added into it.
131     void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
132                               std::vector<SDOperand> &Ops) const;
133   };
134 }
135
136 namespace llvm {
137   //===--------------------------------------------------------------------===//
138   /// createDefaultScheduler - This creates an instruction scheduler appropriate
139   /// for the target.
140   ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
141                                       SelectionDAG *DAG,
142                                       MachineBasicBlock *BB) {
143     TargetLowering &TLI = IS->getTargetLowering();
144     
145     if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency) {
146       return createTDListDAGScheduler(IS, DAG, BB);
147     } else {
148       assert(TLI.getSchedulingPreference() ==
149            TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
150       return createBURRListDAGScheduler(IS, DAG, BB);
151     }
152   }
153
154
155   //===--------------------------------------------------------------------===//
156   /// FunctionLoweringInfo - This contains information that is global to a
157   /// function that is used when lowering a region of the function.
158   class FunctionLoweringInfo {
159   public:
160     TargetLowering &TLI;
161     Function &Fn;
162     MachineFunction &MF;
163     SSARegMap *RegMap;
164
165     FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
166
167     /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
168     std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
169
170     /// ValueMap - Since we emit code for the function a basic block at a time,
171     /// we must remember which virtual registers hold the values for
172     /// cross-basic-block values.
173     DenseMap<const Value*, unsigned> ValueMap;
174
175     /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
176     /// the entry block.  This allows the allocas to be efficiently referenced
177     /// anywhere in the function.
178     std::map<const AllocaInst*, int> StaticAllocaMap;
179
180     unsigned MakeReg(MVT::ValueType VT) {
181       return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
182     }
183     
184     /// isExportedInst - Return true if the specified value is an instruction
185     /// exported from its block.
186     bool isExportedInst(const Value *V) {
187       return ValueMap.count(V);
188     }
189
190     unsigned CreateRegForValue(const Value *V);
191     
192     unsigned InitializeRegForValue(const Value *V) {
193       unsigned &R = ValueMap[V];
194       assert(R == 0 && "Already initialized this value register!");
195       return R = CreateRegForValue(V);
196     }
197   };
198 }
199
200 /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
201 /// PHI nodes or outside of the basic block that defines it, or used by a 
202 /// switch instruction, which may expand to multiple basic blocks.
203 static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
204   if (isa<PHINode>(I)) return true;
205   BasicBlock *BB = I->getParent();
206   for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
207     if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
208         // FIXME: Remove switchinst special case.
209         isa<SwitchInst>(*UI))
210       return true;
211   return false;
212 }
213
214 /// isOnlyUsedInEntryBlock - If the specified argument is only used in the
215 /// entry block, return true.  This includes arguments used by switches, since
216 /// the switch may expand into multiple basic blocks.
217 static bool isOnlyUsedInEntryBlock(Argument *A) {
218   BasicBlock *Entry = A->getParent()->begin();
219   for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
220     if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
221       return false;  // Use not in entry block.
222   return true;
223 }
224
225 FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
226                                            Function &fn, MachineFunction &mf)
227     : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
228
229   // Create a vreg for each argument register that is not dead and is used
230   // outside of the entry block for the function.
231   for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
232        AI != E; ++AI)
233     if (!isOnlyUsedInEntryBlock(AI))
234       InitializeRegForValue(AI);
235
236   // Initialize the mapping of values to registers.  This is only set up for
237   // instruction values that are used outside of the block that defines
238   // them.
239   Function::iterator BB = Fn.begin(), EB = Fn.end();
240   for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
241     if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
242       if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
243         const Type *Ty = AI->getAllocatedType();
244         uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
245         unsigned Align = 
246           std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
247                    AI->getAlignment());
248
249         TySize *= CUI->getZExtValue();   // Get total allocated size.
250         if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
251         StaticAllocaMap[AI] =
252           MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
253       }
254
255   for (; BB != EB; ++BB)
256     for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
257       if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
258         if (!isa<AllocaInst>(I) ||
259             !StaticAllocaMap.count(cast<AllocaInst>(I)))
260           InitializeRegForValue(I);
261
262   // Create an initial MachineBasicBlock for each LLVM BasicBlock in F.  This
263   // also creates the initial PHI MachineInstrs, though none of the input
264   // operands are populated.
265   for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
266     MachineBasicBlock *MBB = new MachineBasicBlock(BB);
267     MBBMap[BB] = MBB;
268     MF.getBasicBlockList().push_back(MBB);
269
270     // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
271     // appropriate.
272     PHINode *PN;
273     for (BasicBlock::iterator I = BB->begin();(PN = dyn_cast<PHINode>(I)); ++I){
274       if (PN->use_empty()) continue;
275       
276       MVT::ValueType VT = TLI.getValueType(PN->getType());
277       unsigned NumElements;
278       if (VT != MVT::Vector)
279         NumElements = TLI.getNumElements(VT);
280       else {
281         MVT::ValueType VT1,VT2;
282         NumElements = 
283           TLI.getVectorTypeBreakdown(cast<VectorType>(PN->getType()),
284                                      VT1, VT2);
285       }
286       unsigned PHIReg = ValueMap[PN];
287       assert(PHIReg && "PHI node does not have an assigned virtual register!");
288       const TargetInstrInfo *TII = TLI.getTargetMachine().getInstrInfo();
289       for (unsigned i = 0; i != NumElements; ++i)
290         BuildMI(MBB, TII->get(TargetInstrInfo::PHI), PHIReg+i);
291     }
292   }
293 }
294
295 /// CreateRegForValue - Allocate the appropriate number of virtual registers of
296 /// the correctly promoted or expanded types.  Assign these registers
297 /// consecutive vreg numbers and return the first assigned number.
298 unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
299   MVT::ValueType VT = TLI.getValueType(V->getType());
300   
301   // The number of multiples of registers that we need, to, e.g., split up
302   // a <2 x int64> -> 4 x i32 registers.
303   unsigned NumVectorRegs = 1;
304   
305   // If this is a vector type, figure out what type it will decompose into
306   // and how many of the elements it will use.
307   if (VT == MVT::Vector) {
308     const VectorType *PTy = cast<VectorType>(V->getType());
309     unsigned NumElts = PTy->getNumElements();
310     MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType());
311     
312     // Divide the input until we get to a supported size.  This will always
313     // end with a scalar if the target doesn't support vectors.
314     while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) {
315       NumElts >>= 1;
316       NumVectorRegs <<= 1;
317     }
318     if (NumElts == 1)
319       VT = EltTy;
320     else
321       VT = getVectorType(EltTy, NumElts);
322   }
323   
324   // The common case is that we will only create one register for this
325   // value.  If we have that case, create and return the virtual register.
326   unsigned NV = TLI.getNumElements(VT);
327   if (NV == 1) {
328     // If we are promoting this value, pick the next largest supported type.
329     MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT);
330     unsigned Reg = MakeReg(PromotedType);
331     // If this is a vector of supported or promoted types (e.g. 4 x i16),
332     // create all of the registers.
333     for (unsigned i = 1; i != NumVectorRegs; ++i)
334       MakeReg(PromotedType);
335     return Reg;
336   }
337   
338   // If this value is represented with multiple target registers, make sure
339   // to create enough consecutive registers of the right (smaller) type.
340   VT = TLI.getTypeToExpandTo(VT);
341   unsigned R = MakeReg(VT);
342   for (unsigned i = 1; i != NV*NumVectorRegs; ++i)
343     MakeReg(VT);
344   return R;
345 }
346
347 //===----------------------------------------------------------------------===//
348 /// SelectionDAGLowering - This is the common target-independent lowering
349 /// implementation that is parameterized by a TargetLowering object.
350 /// Also, targets can overload any lowering method.
351 ///
352 namespace llvm {
353 class SelectionDAGLowering {
354   MachineBasicBlock *CurMBB;
355
356   DenseMap<const Value*, SDOperand> NodeMap;
357
358   /// PendingLoads - Loads are not emitted to the program immediately.  We bunch
359   /// them up and then emit token factor nodes when possible.  This allows us to
360   /// get simple disambiguation between loads without worrying about alias
361   /// analysis.
362   std::vector<SDOperand> PendingLoads;
363
364   /// Case - A struct to record the Value for a switch case, and the
365   /// case's target basic block.
366   struct Case {
367     Constant* Low;
368     Constant* High;
369     MachineBasicBlock* BB;
370
371     Case() : Low(0), High(0), BB(0) { }
372     Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
373       Low(low), High(high), BB(bb) { }
374     uint64_t size() const {
375       uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
376       uint64_t rLow  = cast<ConstantInt>(Low)->getSExtValue();
377       return (rHigh - rLow + 1ULL);
378     }
379   };
380
381   struct CaseBits {
382     uint64_t Mask;
383     MachineBasicBlock* BB;
384     unsigned Bits;
385
386     CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
387       Mask(mask), BB(bb), Bits(bits) { }
388   };
389
390   typedef std::vector<Case>           CaseVector;
391   typedef std::vector<CaseBits>       CaseBitsVector;
392   typedef CaseVector::iterator        CaseItr;
393   typedef std::pair<CaseItr, CaseItr> CaseRange;
394
395   /// CaseRec - A struct with ctor used in lowering switches to a binary tree
396   /// of conditional branches.
397   struct CaseRec {
398     CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
399     CaseBB(bb), LT(lt), GE(ge), Range(r) {}
400
401     /// CaseBB - The MBB in which to emit the compare and branch
402     MachineBasicBlock *CaseBB;
403     /// LT, GE - If nonzero, we know the current case value must be less-than or
404     /// greater-than-or-equal-to these Constants.
405     Constant *LT;
406     Constant *GE;
407     /// Range - A pair of iterators representing the range of case values to be
408     /// processed at this point in the binary search tree.
409     CaseRange Range;
410   };
411
412   typedef std::vector<CaseRec> CaseRecVector;
413
414   /// The comparison function for sorting the switch case values in the vector.
415   /// WARNING: Case ranges should be disjoint!
416   struct CaseCmp {
417     bool operator () (const Case& C1, const Case& C2) {
418       assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
419       const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
420       const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
421       return CI1->getValue().slt(CI2->getValue());
422     }
423   };
424
425   struct CaseBitsCmp {
426     bool operator () (const CaseBits& C1, const CaseBits& C2) {
427       return C1.Bits > C2.Bits;
428     }
429   };
430
431   unsigned Clusterify(CaseVector& Cases, const SwitchInst &SI);
432   
433 public:
434   // TLI - This is information that describes the available target features we
435   // need for lowering.  This indicates when operations are unavailable,
436   // implemented with a libcall, etc.
437   TargetLowering &TLI;
438   SelectionDAG &DAG;
439   const TargetData *TD;
440
441   /// SwitchCases - Vector of CaseBlock structures used to communicate
442   /// SwitchInst code generation information.
443   std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
444   /// JTCases - Vector of JumpTable structures used to communicate
445   /// SwitchInst code generation information.
446   std::vector<SelectionDAGISel::JumpTableBlock> JTCases;
447   std::vector<SelectionDAGISel::BitTestBlock> BitTestCases;
448   
449   /// FuncInfo - Information about the function as a whole.
450   ///
451   FunctionLoweringInfo &FuncInfo;
452
453   SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
454                        FunctionLoweringInfo &funcinfo)
455     : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
456       FuncInfo(funcinfo) {
457   }
458
459   /// getRoot - Return the current virtual root of the Selection DAG.
460   ///
461   SDOperand getRoot() {
462     if (PendingLoads.empty())
463       return DAG.getRoot();
464
465     if (PendingLoads.size() == 1) {
466       SDOperand Root = PendingLoads[0];
467       DAG.setRoot(Root);
468       PendingLoads.clear();
469       return Root;
470     }
471
472     // Otherwise, we have to make a token factor node.
473     SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
474                                  &PendingLoads[0], PendingLoads.size());
475     PendingLoads.clear();
476     DAG.setRoot(Root);
477     return Root;
478   }
479
480   SDOperand CopyValueToVirtualRegister(Value *V, unsigned Reg);
481
482   void visit(Instruction &I) { visit(I.getOpcode(), I); }
483
484   void visit(unsigned Opcode, User &I) {
485     // Note: this doesn't use InstVisitor, because it has to work with
486     // ConstantExpr's in addition to instructions.
487     switch (Opcode) {
488     default: assert(0 && "Unknown instruction type encountered!");
489              abort();
490       // Build the switch statement using the Instruction.def file.
491 #define HANDLE_INST(NUM, OPCODE, CLASS) \
492     case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
493 #include "llvm/Instruction.def"
494     }
495   }
496
497   void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
498
499   SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
500                         const Value *SV, SDOperand Root,
501                         bool isVolatile);
502
503   SDOperand getIntPtrConstant(uint64_t Val) {
504     return DAG.getConstant(Val, TLI.getPointerTy());
505   }
506
507   SDOperand getValue(const Value *V);
508
509   void setValue(const Value *V, SDOperand NewN) {
510     SDOperand &N = NodeMap[V];
511     assert(N.Val == 0 && "Already set a value for this node!");
512     N = NewN;
513   }
514   
515   RegsForValue GetRegistersForValue(const std::string &ConstrCode,
516                                     MVT::ValueType VT,
517                                     bool OutReg, bool InReg,
518                                     std::set<unsigned> &OutputRegs, 
519                                     std::set<unsigned> &InputRegs);
520
521   void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
522                             MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
523                             unsigned Opc);
524   bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
525   void ExportFromCurrentBlock(Value *V);
526   void LowerCallTo(Instruction &I,
527                    const Type *CalledValueTy, unsigned CallingConv,
528                    bool IsTailCall, SDOperand Callee, unsigned OpIdx);
529                                          
530   // Terminator instructions.
531   void visitRet(ReturnInst &I);
532   void visitBr(BranchInst &I);
533   void visitSwitch(SwitchInst &I);
534   void visitUnreachable(UnreachableInst &I) { /* noop */ }
535
536   // Helpers for visitSwitch
537   bool handleSmallSwitchRange(CaseRec& CR,
538                               CaseRecVector& WorkList,
539                               Value* SV,
540                               MachineBasicBlock* Default);
541   bool handleJTSwitchCase(CaseRec& CR,
542                           CaseRecVector& WorkList,
543                           Value* SV,
544                           MachineBasicBlock* Default);
545   bool handleBTSplitSwitchCase(CaseRec& CR,
546                                CaseRecVector& WorkList,
547                                Value* SV,
548                                MachineBasicBlock* Default);
549   bool handleBitTestsSwitchCase(CaseRec& CR,
550                                 CaseRecVector& WorkList,
551                                 Value* SV,
552                                 MachineBasicBlock* Default);  
553   void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
554   void visitBitTestHeader(SelectionDAGISel::BitTestBlock &B);
555   void visitBitTestCase(MachineBasicBlock* NextMBB,
556                         unsigned Reg,
557                         SelectionDAGISel::BitTestCase &B);
558   void visitJumpTable(SelectionDAGISel::JumpTable &JT);
559   void visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
560                             SelectionDAGISel::JumpTableHeader &JTH);
561   
562   // These all get lowered before this pass.
563   void visitInvoke(InvokeInst &I);
564   void visitInvoke(InvokeInst &I, bool AsTerminator);
565   void visitUnwind(UnwindInst &I);
566
567   void visitScalarBinary(User &I, unsigned OpCode);
568   void visitVectorBinary(User &I, unsigned OpCode);
569   void visitEitherBinary(User &I, unsigned ScalarOp, unsigned VectorOp);
570   void visitShift(User &I, unsigned Opcode);
571   void visitAdd(User &I) { 
572     if (isa<VectorType>(I.getType()))
573       visitVectorBinary(I, ISD::VADD);
574     else if (I.getType()->isFloatingPoint())
575       visitScalarBinary(I, ISD::FADD);
576     else
577       visitScalarBinary(I, ISD::ADD);
578   }
579   void visitSub(User &I);
580   void visitMul(User &I) {
581     if (isa<VectorType>(I.getType()))
582       visitVectorBinary(I, ISD::VMUL);
583     else if (I.getType()->isFloatingPoint())
584       visitScalarBinary(I, ISD::FMUL);
585     else
586       visitScalarBinary(I, ISD::MUL);
587   }
588   void visitURem(User &I) { visitScalarBinary(I, ISD::UREM); }
589   void visitSRem(User &I) { visitScalarBinary(I, ISD::SREM); }
590   void visitFRem(User &I) { visitScalarBinary(I, ISD::FREM); }
591   void visitUDiv(User &I) { visitEitherBinary(I, ISD::UDIV, ISD::VUDIV); }
592   void visitSDiv(User &I) { visitEitherBinary(I, ISD::SDIV, ISD::VSDIV); }
593   void visitFDiv(User &I) { visitEitherBinary(I, ISD::FDIV, ISD::VSDIV); }
594   void visitAnd (User &I) { visitEitherBinary(I, ISD::AND,  ISD::VAND ); }
595   void visitOr  (User &I) { visitEitherBinary(I, ISD::OR,   ISD::VOR  ); }
596   void visitXor (User &I) { visitEitherBinary(I, ISD::XOR,  ISD::VXOR ); }
597   void visitShl (User &I) { visitShift(I, ISD::SHL); }
598   void visitLShr(User &I) { visitShift(I, ISD::SRL); }
599   void visitAShr(User &I) { visitShift(I, ISD::SRA); }
600   void visitICmp(User &I);
601   void visitFCmp(User &I);
602   // Visit the conversion instructions
603   void visitTrunc(User &I);
604   void visitZExt(User &I);
605   void visitSExt(User &I);
606   void visitFPTrunc(User &I);
607   void visitFPExt(User &I);
608   void visitFPToUI(User &I);
609   void visitFPToSI(User &I);
610   void visitUIToFP(User &I);
611   void visitSIToFP(User &I);
612   void visitPtrToInt(User &I);
613   void visitIntToPtr(User &I);
614   void visitBitCast(User &I);
615
616   void visitExtractElement(User &I);
617   void visitInsertElement(User &I);
618   void visitShuffleVector(User &I);
619
620   void visitGetElementPtr(User &I);
621   void visitSelect(User &I);
622
623   void visitMalloc(MallocInst &I);
624   void visitFree(FreeInst &I);
625   void visitAlloca(AllocaInst &I);
626   void visitLoad(LoadInst &I);
627   void visitStore(StoreInst &I);
628   void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
629   void visitCall(CallInst &I);
630   void visitInlineAsm(CallInst &I);
631   const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
632   void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
633
634   void visitVAStart(CallInst &I);
635   void visitVAArg(VAArgInst &I);
636   void visitVAEnd(CallInst &I);
637   void visitVACopy(CallInst &I);
638
639   void visitMemIntrinsic(CallInst &I, unsigned Op);
640
641   void visitUserOp1(Instruction &I) {
642     assert(0 && "UserOp1 should not exist at instruction selection time!");
643     abort();
644   }
645   void visitUserOp2(Instruction &I) {
646     assert(0 && "UserOp2 should not exist at instruction selection time!");
647     abort();
648   }
649 };
650 } // end namespace llvm
651
652 SDOperand SelectionDAGLowering::getValue(const Value *V) {
653   SDOperand &N = NodeMap[V];
654   if (N.Val) return N;
655   
656   const Type *VTy = V->getType();
657   MVT::ValueType VT = TLI.getValueType(VTy);
658   if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
659     if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
660       visit(CE->getOpcode(), *CE);
661       SDOperand N1 = NodeMap[V];
662       assert(N1.Val && "visit didn't populate the ValueMap!");
663       return N1;
664     } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
665       return N = DAG.getGlobalAddress(GV, VT);
666     } else if (isa<ConstantPointerNull>(C)) {
667       return N = DAG.getConstant(0, TLI.getPointerTy());
668     } else if (isa<UndefValue>(C)) {
669       if (!isa<VectorType>(VTy))
670         return N = DAG.getNode(ISD::UNDEF, VT);
671
672       // Create a VBUILD_VECTOR of undef nodes.
673       const VectorType *PTy = cast<VectorType>(VTy);
674       unsigned NumElements = PTy->getNumElements();
675       MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
676
677       SmallVector<SDOperand, 8> Ops;
678       Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
679       
680       // Create a VConstant node with generic Vector type.
681       Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
682       Ops.push_back(DAG.getValueType(PVT));
683       return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector,
684                              &Ops[0], Ops.size());
685     } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
686       return N = DAG.getConstantFP(CFP->getValue(), VT);
687     } else if (const VectorType *PTy = dyn_cast<VectorType>(VTy)) {
688       unsigned NumElements = PTy->getNumElements();
689       MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
690       
691       // Now that we know the number and type of the elements, push a
692       // Constant or ConstantFP node onto the ops list for each element of
693       // the packed constant.
694       SmallVector<SDOperand, 8> Ops;
695       if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
696         for (unsigned i = 0; i != NumElements; ++i)
697           Ops.push_back(getValue(CP->getOperand(i)));
698       } else {
699         assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!");
700         SDOperand Op;
701         if (MVT::isFloatingPoint(PVT))
702           Op = DAG.getConstantFP(0, PVT);
703         else
704           Op = DAG.getConstant(0, PVT);
705         Ops.assign(NumElements, Op);
706       }
707       
708       // Create a VBUILD_VECTOR node with generic Vector type.
709       Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
710       Ops.push_back(DAG.getValueType(PVT));
711       return NodeMap[V] = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &Ops[0],
712                                       Ops.size());
713     } else {
714       // Canonicalize all constant ints to be unsigned.
715       return N = DAG.getConstant(cast<ConstantInt>(C)->getZExtValue(),VT);
716     }
717   }
718       
719   if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
720     std::map<const AllocaInst*, int>::iterator SI =
721     FuncInfo.StaticAllocaMap.find(AI);
722     if (SI != FuncInfo.StaticAllocaMap.end())
723       return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
724   }
725       
726   unsigned InReg = FuncInfo.ValueMap[V];
727   assert(InReg && "Value not in map!");
728   
729   // If this type is not legal, make it so now.
730   if (VT != MVT::Vector) {
731     if (TLI.getTypeAction(VT) == TargetLowering::Expand) {
732       // Source must be expanded.  This input value is actually coming from the
733       // register pair InReg and InReg+1.
734       MVT::ValueType DestVT = TLI.getTypeToExpandTo(VT);
735       unsigned NumVals = TLI.getNumElements(VT);
736       N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
737       if (NumVals == 1)
738         N = DAG.getNode(ISD::BIT_CONVERT, VT, N);
739       else {
740         assert(NumVals == 2 && "1 to 4 (and more) expansion not implemented!");
741         N = DAG.getNode(ISD::BUILD_PAIR, VT, N,
742                        DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT));
743       }
744     } else {
745       MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
746       N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
747       if (TLI.getTypeAction(VT) == TargetLowering::Promote) // Promotion case
748         N = MVT::isFloatingPoint(VT)
749           ? DAG.getNode(ISD::FP_ROUND, VT, N)
750           : DAG.getNode(ISD::TRUNCATE, VT, N);
751     }
752   } else {
753     // Otherwise, if this is a vector, make it available as a generic vector
754     // here.
755     MVT::ValueType PTyElementVT, PTyLegalElementVT;
756     const VectorType *PTy = cast<VectorType>(VTy);
757     unsigned NE = TLI.getVectorTypeBreakdown(PTy, PTyElementVT,
758                                              PTyLegalElementVT);
759
760     // Build a VBUILD_VECTOR with the input registers.
761     SmallVector<SDOperand, 8> Ops;
762     if (PTyElementVT == PTyLegalElementVT) {
763       // If the value types are legal, just VBUILD the CopyFromReg nodes.
764       for (unsigned i = 0; i != NE; ++i)
765         Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, 
766                                          PTyElementVT));
767     } else if (PTyElementVT < PTyLegalElementVT) {
768       // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate.
769       for (unsigned i = 0; i != NE; ++i) {
770         SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, 
771                                           PTyElementVT);
772         if (MVT::isFloatingPoint(PTyElementVT))
773           Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op);
774         else
775           Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op);
776         Ops.push_back(Op);
777       }
778     } else {
779       // If the register was expanded, use BUILD_PAIR.
780       assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!");
781       for (unsigned i = 0; i != NE/2; ++i) {
782         SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, 
783                                            PTyElementVT);
784         SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, 
785                                            PTyElementVT);
786         Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1));
787       }
788     }
789     
790     Ops.push_back(DAG.getConstant(NE, MVT::i32));
791     Ops.push_back(DAG.getValueType(PTyLegalElementVT));
792     N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &Ops[0], Ops.size());
793     
794     // Finally, use a VBIT_CONVERT to make this available as the appropriate
795     // vector type.
796     N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N, 
797                     DAG.getConstant(PTy->getNumElements(),
798                                     MVT::i32),
799                     DAG.getValueType(TLI.getValueType(PTy->getElementType())));
800   }
801   
802   return N;
803 }
804
805
806 void SelectionDAGLowering::visitRet(ReturnInst &I) {
807   if (I.getNumOperands() == 0) {
808     DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
809     return;
810   }
811   SmallVector<SDOperand, 8> NewValues;
812   NewValues.push_back(getRoot());
813   for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
814     SDOperand RetOp = getValue(I.getOperand(i));
815     
816     // If this is an integer return value, we need to promote it ourselves to
817     // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
818     // than sign/zero.
819     // FIXME: C calling convention requires the return type to be promoted to
820     // at least 32-bit. But this is not necessary for non-C calling conventions.
821     if (MVT::isInteger(RetOp.getValueType()) && 
822         RetOp.getValueType() < MVT::i64) {
823       MVT::ValueType TmpVT;
824       if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
825         TmpVT = TLI.getTypeToTransformTo(MVT::i32);
826       else
827         TmpVT = MVT::i32;
828       const FunctionType *FTy = I.getParent()->getParent()->getFunctionType();
829       const ParamAttrsList *Attrs = FTy->getParamAttrs();
830       ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
831       if (Attrs && Attrs->paramHasAttr(0, SExtAttribute))
832         ExtendKind = ISD::SIGN_EXTEND;
833       if (Attrs && Attrs->paramHasAttr(0, ZExtAttribute))
834         ExtendKind = ISD::ZERO_EXTEND;
835       RetOp = DAG.getNode(ExtendKind, TmpVT, RetOp);
836     }
837     NewValues.push_back(RetOp);
838     NewValues.push_back(DAG.getConstant(false, MVT::i32));
839   }
840   DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other,
841                           &NewValues[0], NewValues.size()));
842 }
843
844 /// ExportFromCurrentBlock - If this condition isn't known to be exported from
845 /// the current basic block, add it to ValueMap now so that we'll get a
846 /// CopyTo/FromReg.
847 void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
848   // No need to export constants.
849   if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
850   
851   // Already exported?
852   if (FuncInfo.isExportedInst(V)) return;
853
854   unsigned Reg = FuncInfo.InitializeRegForValue(V);
855   PendingLoads.push_back(CopyValueToVirtualRegister(V, Reg));
856 }
857
858 bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
859                                                     const BasicBlock *FromBB) {
860   // The operands of the setcc have to be in this block.  We don't know
861   // how to export them from some other block.
862   if (Instruction *VI = dyn_cast<Instruction>(V)) {
863     // Can export from current BB.
864     if (VI->getParent() == FromBB)
865       return true;
866     
867     // Is already exported, noop.
868     return FuncInfo.isExportedInst(V);
869   }
870   
871   // If this is an argument, we can export it if the BB is the entry block or
872   // if it is already exported.
873   if (isa<Argument>(V)) {
874     if (FromBB == &FromBB->getParent()->getEntryBlock())
875       return true;
876
877     // Otherwise, can only export this if it is already exported.
878     return FuncInfo.isExportedInst(V);
879   }
880   
881   // Otherwise, constants can always be exported.
882   return true;
883 }
884
885 static bool InBlock(const Value *V, const BasicBlock *BB) {
886   if (const Instruction *I = dyn_cast<Instruction>(V))
887     return I->getParent() == BB;
888   return true;
889 }
890
891 /// FindMergedConditions - If Cond is an expression like 
892 void SelectionDAGLowering::FindMergedConditions(Value *Cond,
893                                                 MachineBasicBlock *TBB,
894                                                 MachineBasicBlock *FBB,
895                                                 MachineBasicBlock *CurBB,
896                                                 unsigned Opc) {
897   // If this node is not part of the or/and tree, emit it as a branch.
898   Instruction *BOp = dyn_cast<Instruction>(Cond);
899
900   if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || 
901       (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
902       BOp->getParent() != CurBB->getBasicBlock() ||
903       !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
904       !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
905     const BasicBlock *BB = CurBB->getBasicBlock();
906     
907     // If the leaf of the tree is a comparison, merge the condition into 
908     // the caseblock.
909     if ((isa<ICmpInst>(Cond) || isa<FCmpInst>(Cond)) &&
910         // The operands of the cmp have to be in this block.  We don't know
911         // how to export them from some other block.  If this is the first block
912         // of the sequence, no exporting is needed.
913         (CurBB == CurMBB ||
914          (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
915           isExportableFromCurrentBlock(BOp->getOperand(1), BB)))) {
916       BOp = cast<Instruction>(Cond);
917       ISD::CondCode Condition;
918       if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
919         switch (IC->getPredicate()) {
920         default: assert(0 && "Unknown icmp predicate opcode!");
921         case ICmpInst::ICMP_EQ:  Condition = ISD::SETEQ;  break;
922         case ICmpInst::ICMP_NE:  Condition = ISD::SETNE;  break;
923         case ICmpInst::ICMP_SLE: Condition = ISD::SETLE;  break;
924         case ICmpInst::ICMP_ULE: Condition = ISD::SETULE; break;
925         case ICmpInst::ICMP_SGE: Condition = ISD::SETGE;  break;
926         case ICmpInst::ICMP_UGE: Condition = ISD::SETUGE; break;
927         case ICmpInst::ICMP_SLT: Condition = ISD::SETLT;  break;
928         case ICmpInst::ICMP_ULT: Condition = ISD::SETULT; break;
929         case ICmpInst::ICMP_SGT: Condition = ISD::SETGT;  break;
930         case ICmpInst::ICMP_UGT: Condition = ISD::SETUGT; break;
931         }
932       } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
933         ISD::CondCode FPC, FOC;
934         switch (FC->getPredicate()) {
935         default: assert(0 && "Unknown fcmp predicate opcode!");
936         case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
937         case FCmpInst::FCMP_OEQ:   FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
938         case FCmpInst::FCMP_OGT:   FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
939         case FCmpInst::FCMP_OGE:   FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
940         case FCmpInst::FCMP_OLT:   FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
941         case FCmpInst::FCMP_OLE:   FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
942         case FCmpInst::FCMP_ONE:   FOC = ISD::SETNE; FPC = ISD::SETONE; break;
943         case FCmpInst::FCMP_ORD:   FOC = ISD::SETEQ; FPC = ISD::SETO;   break;
944         case FCmpInst::FCMP_UNO:   FOC = ISD::SETNE; FPC = ISD::SETUO;  break;
945         case FCmpInst::FCMP_UEQ:   FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
946         case FCmpInst::FCMP_UGT:   FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
947         case FCmpInst::FCMP_UGE:   FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
948         case FCmpInst::FCMP_ULT:   FOC = ISD::SETLT; FPC = ISD::SETULT; break;
949         case FCmpInst::FCMP_ULE:   FOC = ISD::SETLE; FPC = ISD::SETULE; break;
950         case FCmpInst::FCMP_UNE:   FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
951         case FCmpInst::FCMP_TRUE:  FOC = FPC = ISD::SETTRUE; break;
952         }
953         if (FiniteOnlyFPMath())
954           Condition = FOC;
955         else 
956           Condition = FPC;
957       } else {
958         Condition = ISD::SETEQ; // silence warning.
959         assert(0 && "Unknown compare instruction");
960       }
961       
962       SelectionDAGISel::CaseBlock CB(Condition, BOp->getOperand(0), 
963                                      BOp->getOperand(1), NULL, TBB, FBB, CurBB);
964       SwitchCases.push_back(CB);
965       return;
966     }
967     
968     // Create a CaseBlock record representing this branch.
969     SelectionDAGISel::CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
970                                    NULL, TBB, FBB, CurBB);
971     SwitchCases.push_back(CB);
972     return;
973   }
974   
975   
976   //  Create TmpBB after CurBB.
977   MachineFunction::iterator BBI = CurBB;
978   MachineBasicBlock *TmpBB = new MachineBasicBlock(CurBB->getBasicBlock());
979   CurBB->getParent()->getBasicBlockList().insert(++BBI, TmpBB);
980   
981   if (Opc == Instruction::Or) {
982     // Codegen X | Y as:
983     //   jmp_if_X TBB
984     //   jmp TmpBB
985     // TmpBB:
986     //   jmp_if_Y TBB
987     //   jmp FBB
988     //
989   
990     // Emit the LHS condition.
991     FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
992   
993     // Emit the RHS condition into TmpBB.
994     FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
995   } else {
996     assert(Opc == Instruction::And && "Unknown merge op!");
997     // Codegen X & Y as:
998     //   jmp_if_X TmpBB
999     //   jmp FBB
1000     // TmpBB:
1001     //   jmp_if_Y TBB
1002     //   jmp FBB
1003     //
1004     //  This requires creation of TmpBB after CurBB.
1005     
1006     // Emit the LHS condition.
1007     FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
1008     
1009     // Emit the RHS condition into TmpBB.
1010     FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1011   }
1012 }
1013
1014 /// If the set of cases should be emitted as a series of branches, return true.
1015 /// If we should emit this as a bunch of and/or'd together conditions, return
1016 /// false.
1017 static bool 
1018 ShouldEmitAsBranches(const std::vector<SelectionDAGISel::CaseBlock> &Cases) {
1019   if (Cases.size() != 2) return true;
1020   
1021   // If this is two comparisons of the same values or'd or and'd together, they
1022   // will get folded into a single comparison, so don't emit two blocks.
1023   if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1024        Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1025       (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1026        Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1027     return false;
1028   }
1029   
1030   return true;
1031 }
1032
1033 void SelectionDAGLowering::visitBr(BranchInst &I) {
1034   // Update machine-CFG edges.
1035   MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1036
1037   // Figure out which block is immediately after the current one.
1038   MachineBasicBlock *NextBlock = 0;
1039   MachineFunction::iterator BBI = CurMBB;
1040   if (++BBI != CurMBB->getParent()->end())
1041     NextBlock = BBI;
1042
1043   if (I.isUnconditional()) {
1044     // If this is not a fall-through branch, emit the branch.
1045     if (Succ0MBB != NextBlock)
1046       DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
1047                               DAG.getBasicBlock(Succ0MBB)));
1048
1049     // Update machine-CFG edges.
1050     CurMBB->addSuccessor(Succ0MBB);
1051
1052     return;
1053   }
1054
1055   // If this condition is one of the special cases we handle, do special stuff
1056   // now.
1057   Value *CondVal = I.getCondition();
1058   MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1059
1060   // If this is a series of conditions that are or'd or and'd together, emit
1061   // this as a sequence of branches instead of setcc's with and/or operations.
1062   // For example, instead of something like:
1063   //     cmp A, B
1064   //     C = seteq 
1065   //     cmp D, E
1066   //     F = setle 
1067   //     or C, F
1068   //     jnz foo
1069   // Emit:
1070   //     cmp A, B
1071   //     je foo
1072   //     cmp D, E
1073   //     jle foo
1074   //
1075   if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1076     if (BOp->hasOneUse() && 
1077         (BOp->getOpcode() == Instruction::And ||
1078          BOp->getOpcode() == Instruction::Or)) {
1079       FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1080       // If the compares in later blocks need to use values not currently
1081       // exported from this block, export them now.  This block should always
1082       // be the first entry.
1083       assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
1084       
1085       // Allow some cases to be rejected.
1086       if (ShouldEmitAsBranches(SwitchCases)) {
1087         for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1088           ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1089           ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1090         }
1091         
1092         // Emit the branch for this block.
1093         visitSwitchCase(SwitchCases[0]);
1094         SwitchCases.erase(SwitchCases.begin());
1095         return;
1096       }
1097       
1098       // Okay, we decided not to do this, remove any inserted MBB's and clear
1099       // SwitchCases.
1100       for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1101         CurMBB->getParent()->getBasicBlockList().erase(SwitchCases[i].ThisBB);
1102       
1103       SwitchCases.clear();
1104     }
1105   }
1106   
1107   // Create a CaseBlock record representing this branch.
1108   SelectionDAGISel::CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1109                                  NULL, Succ0MBB, Succ1MBB, CurMBB);
1110   // Use visitSwitchCase to actually insert the fast branch sequence for this
1111   // cond branch.
1112   visitSwitchCase(CB);
1113 }
1114
1115 /// visitSwitchCase - Emits the necessary code to represent a single node in
1116 /// the binary search tree resulting from lowering a switch instruction.
1117 void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
1118   SDOperand Cond;
1119   SDOperand CondLHS = getValue(CB.CmpLHS);
1120   
1121   // Build the setcc now. 
1122   if (CB.CmpMHS == NULL) {
1123     // Fold "(X == true)" to X and "(X == false)" to !X to
1124     // handle common cases produced by branch lowering.
1125     if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1126       Cond = CondLHS;
1127     else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1128       SDOperand True = DAG.getConstant(1, CondLHS.getValueType());
1129       Cond = DAG.getNode(ISD::XOR, CondLHS.getValueType(), CondLHS, True);
1130     } else
1131       Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1132   } else {
1133     assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1134
1135     uint64_t Low = cast<ConstantInt>(CB.CmpLHS)->getSExtValue();
1136     uint64_t High  = cast<ConstantInt>(CB.CmpRHS)->getSExtValue();
1137
1138     SDOperand CmpOp = getValue(CB.CmpMHS);
1139     MVT::ValueType VT = CmpOp.getValueType();
1140
1141     if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1142       Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1143     } else {
1144       SDOperand SUB = DAG.getNode(ISD::SUB, VT, CmpOp, DAG.getConstant(Low, VT));
1145       Cond = DAG.getSetCC(MVT::i1, SUB,
1146                           DAG.getConstant(High-Low, VT), ISD::SETULE);
1147     }
1148     
1149   }
1150   
1151   // Set NextBlock to be the MBB immediately after the current one, if any.
1152   // This is used to avoid emitting unnecessary branches to the next block.
1153   MachineBasicBlock *NextBlock = 0;
1154   MachineFunction::iterator BBI = CurMBB;
1155   if (++BBI != CurMBB->getParent()->end())
1156     NextBlock = BBI;
1157   
1158   // If the lhs block is the next block, invert the condition so that we can
1159   // fall through to the lhs instead of the rhs block.
1160   if (CB.TrueBB == NextBlock) {
1161     std::swap(CB.TrueBB, CB.FalseBB);
1162     SDOperand True = DAG.getConstant(1, Cond.getValueType());
1163     Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
1164   }
1165   SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
1166                                  DAG.getBasicBlock(CB.TrueBB));
1167   if (CB.FalseBB == NextBlock)
1168     DAG.setRoot(BrCond);
1169   else
1170     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond, 
1171                             DAG.getBasicBlock(CB.FalseBB)));
1172   // Update successor info
1173   CurMBB->addSuccessor(CB.TrueBB);
1174   CurMBB->addSuccessor(CB.FalseBB);
1175 }
1176
1177 /// visitJumpTable - Emit JumpTable node in the current MBB
1178 void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
1179   // Emit the code for the jump table
1180   assert(JT.Reg != -1UL && "Should lower JT Header first!");
1181   MVT::ValueType PTy = TLI.getPointerTy();
1182   SDOperand Index = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
1183   SDOperand Table = DAG.getJumpTable(JT.JTI, PTy);
1184   DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
1185                           Table, Index));
1186   return;
1187 }
1188
1189 /// visitJumpTableHeader - This function emits necessary code to produce index
1190 /// in the JumpTable from switch case.
1191 void SelectionDAGLowering::visitJumpTableHeader(SelectionDAGISel::JumpTable &JT,
1192                                          SelectionDAGISel::JumpTableHeader &JTH) {
1193   // Subtract the lowest switch case value from the value being switched on
1194   // and conditional branch to default mbb if the result is greater than the
1195   // difference between smallest and largest cases.
1196   SDOperand SwitchOp = getValue(JTH.SValue);
1197   MVT::ValueType VT = SwitchOp.getValueType();
1198   SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1199                               DAG.getConstant(JTH.First, VT));
1200   
1201   // The SDNode we just created, which holds the value being switched on
1202   // minus the the smallest case value, needs to be copied to a virtual
1203   // register so it can be used as an index into the jump table in a 
1204   // subsequent basic block.  This value may be smaller or larger than the
1205   // target's pointer type, and therefore require extension or truncating.
1206   if (VT > TLI.getPointerTy())
1207     SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
1208   else
1209     SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
1210   
1211   unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
1212   SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
1213   JT.Reg = JumpTableReg;
1214
1215   // Emit the range check for the jump table, and branch to the default
1216   // block for the switch statement if the value being switched on exceeds
1217   // the largest case in the switch.
1218   SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
1219                                DAG.getConstant(JTH.Last-JTH.First,VT),
1220                                ISD::SETUGT);
1221
1222   // Set NextBlock to be the MBB immediately after the current one, if any.
1223   // This is used to avoid emitting unnecessary branches to the next block.
1224   MachineBasicBlock *NextBlock = 0;
1225   MachineFunction::iterator BBI = CurMBB;
1226   if (++BBI != CurMBB->getParent()->end())
1227     NextBlock = BBI;
1228
1229   SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP,
1230                                  DAG.getBasicBlock(JT.Default));
1231
1232   if (JT.MBB == NextBlock)
1233     DAG.setRoot(BrCond);
1234   else
1235     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond, 
1236                             DAG.getBasicBlock(JT.MBB)));
1237
1238   return;
1239 }
1240
1241 /// visitBitTestHeader - This function emits necessary code to produce value
1242 /// suitable for "bit tests"
1243 void SelectionDAGLowering::visitBitTestHeader(SelectionDAGISel::BitTestBlock &B) {
1244   // Subtract the minimum value
1245   SDOperand SwitchOp = getValue(B.SValue);
1246   MVT::ValueType VT = SwitchOp.getValueType();
1247   SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp,
1248                               DAG.getConstant(B.First, VT));
1249
1250   // Check range
1251   SDOperand RangeCmp = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
1252                                     DAG.getConstant(B.Range, VT),
1253                                     ISD::SETUGT);
1254
1255   SDOperand ShiftOp;
1256   if (VT > TLI.getShiftAmountTy())
1257     ShiftOp = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), SUB);
1258   else
1259     ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getShiftAmountTy(), SUB);
1260
1261   // Make desired shift
1262   SDOperand SwitchVal = DAG.getNode(ISD::SHL, TLI.getPointerTy(),
1263                                     DAG.getConstant(1, TLI.getPointerTy()),
1264                                     ShiftOp);
1265
1266   unsigned SwitchReg = FuncInfo.MakeReg(TLI.getPointerTy());
1267   SDOperand CopyTo = DAG.getCopyToReg(getRoot(), SwitchReg, SwitchVal);
1268   B.Reg = SwitchReg;
1269
1270   SDOperand BrRange = DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, RangeCmp,
1271                                   DAG.getBasicBlock(B.Default));
1272
1273   // Set NextBlock to be the MBB immediately after the current one, if any.
1274   // This is used to avoid emitting unnecessary branches to the next block.
1275   MachineBasicBlock *NextBlock = 0;
1276   MachineFunction::iterator BBI = CurMBB;
1277   if (++BBI != CurMBB->getParent()->end())
1278     NextBlock = BBI;
1279
1280   MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1281   if (MBB == NextBlock)
1282     DAG.setRoot(BrRange);
1283   else
1284     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
1285                             DAG.getBasicBlock(MBB)));
1286
1287   CurMBB->addSuccessor(B.Default);
1288   CurMBB->addSuccessor(MBB);
1289
1290   return;
1291 }
1292
1293 /// visitBitTestCase - this function produces one "bit test"
1294 void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1295                                             unsigned Reg,
1296                                             SelectionDAGISel::BitTestCase &B) {
1297   // Emit bit tests and jumps
1298   SDOperand SwitchVal = DAG.getCopyFromReg(getRoot(), Reg, TLI.getPointerTy());
1299   
1300   SDOperand AndOp = DAG.getNode(ISD::AND, TLI.getPointerTy(),
1301                                 SwitchVal,
1302                                 DAG.getConstant(B.Mask,
1303                                                 TLI.getPointerTy()));
1304   SDOperand AndCmp = DAG.getSetCC(TLI.getSetCCResultTy(), AndOp,
1305                                   DAG.getConstant(0, TLI.getPointerTy()),
1306                                   ISD::SETNE);
1307   SDOperand BrAnd = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
1308                                 AndCmp, DAG.getBasicBlock(B.TargetBB));
1309
1310   // Set NextBlock to be the MBB immediately after the current one, if any.
1311   // This is used to avoid emitting unnecessary branches to the next block.
1312   MachineBasicBlock *NextBlock = 0;
1313   MachineFunction::iterator BBI = CurMBB;
1314   if (++BBI != CurMBB->getParent()->end())
1315     NextBlock = BBI;
1316
1317   if (NextMBB == NextBlock)
1318     DAG.setRoot(BrAnd);
1319   else
1320     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
1321                             DAG.getBasicBlock(NextMBB)));
1322
1323   CurMBB->addSuccessor(B.TargetBB);
1324   CurMBB->addSuccessor(NextMBB);
1325
1326   return;
1327 }
1328
1329 void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1330   assert(0 && "Should never be visited directly");
1331 }
1332 void SelectionDAGLowering::visitInvoke(InvokeInst &I, bool AsTerminator) {
1333   // Retrieve successors.
1334   MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1335   MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1336   
1337   if (!AsTerminator) {
1338     // Mark landing pad so that it doesn't get deleted in branch folding.
1339     LandingPad->setIsLandingPad();
1340     
1341     // Insert a label before the invoke call to mark the try range.
1342     // This can be used to detect deletion of the invoke via the
1343     // MachineModuleInfo.
1344     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
1345     unsigned BeginLabel = MMI->NextLabelID();
1346     DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
1347                             DAG.getConstant(BeginLabel, MVT::i32)));
1348
1349     LowerCallTo(I, I.getCalledValue()->getType(),
1350                    I.getCallingConv(),
1351                    false,
1352                    getValue(I.getOperand(0)),
1353                    3);
1354
1355     // Insert a label before the invoke call to mark the try range.
1356     // This can be used to detect deletion of the invoke via the
1357     // MachineModuleInfo.
1358     unsigned EndLabel = MMI->NextLabelID();
1359     DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
1360                             DAG.getConstant(EndLabel, MVT::i32)));
1361                             
1362     // Inform MachineModuleInfo of range.    
1363     MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
1364                             
1365     // Update successor info
1366     CurMBB->addSuccessor(Return);
1367     CurMBB->addSuccessor(LandingPad);
1368   } else {
1369     // Drop into normal successor.
1370     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(), 
1371                             DAG.getBasicBlock(Return)));
1372   }
1373 }
1374
1375 void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1376 }
1377
1378 /// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1379 /// small case ranges).
1380 bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1381                                                   CaseRecVector& WorkList,
1382                                                   Value* SV,
1383                                                   MachineBasicBlock* Default) {
1384   Case& BackCase  = *(CR.Range.second-1);
1385   
1386   // Size is the number of Cases represented by this range.
1387   unsigned Size = CR.Range.second - CR.Range.first;
1388   if (Size > 3)
1389     return false;  
1390   
1391   // Get the MachineFunction which holds the current MBB.  This is used when
1392   // inserting any additional MBBs necessary to represent the switch.
1393   MachineFunction *CurMF = CurMBB->getParent();  
1394
1395   // Figure out which block is immediately after the current one.
1396   MachineBasicBlock *NextBlock = 0;
1397   MachineFunction::iterator BBI = CR.CaseBB;
1398
1399   if (++BBI != CurMBB->getParent()->end())
1400     NextBlock = BBI;
1401
1402   // TODO: If any two of the cases has the same destination, and if one value
1403   // is the same as the other, but has one bit unset that the other has set,
1404   // use bit manipulation to do two compares at once.  For example:
1405   // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
1406     
1407   // Rearrange the case blocks so that the last one falls through if possible.
1408   if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1409     // The last case block won't fall through into 'NextBlock' if we emit the
1410     // branches in this order.  See if rearranging a case value would help.
1411     for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1412       if (I->BB == NextBlock) {
1413         std::swap(*I, BackCase);
1414         break;
1415       }
1416     }
1417   }
1418   
1419   // Create a CaseBlock record representing a conditional branch to
1420   // the Case's target mbb if the value being switched on SV is equal
1421   // to C.
1422   MachineBasicBlock *CurBlock = CR.CaseBB;
1423   for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1424     MachineBasicBlock *FallThrough;
1425     if (I != E-1) {
1426       FallThrough = new MachineBasicBlock(CurBlock->getBasicBlock());
1427       CurMF->getBasicBlockList().insert(BBI, FallThrough);
1428     } else {
1429       // If the last case doesn't match, go to the default block.
1430       FallThrough = Default;
1431     }
1432
1433     Value *RHS, *LHS, *MHS;
1434     ISD::CondCode CC;
1435     if (I->High == I->Low) {
1436       // This is just small small case range :) containing exactly 1 case
1437       CC = ISD::SETEQ;
1438       LHS = SV; RHS = I->High; MHS = NULL;
1439     } else {
1440       CC = ISD::SETLE;
1441       LHS = I->Low; MHS = SV; RHS = I->High;
1442     }
1443     SelectionDAGISel::CaseBlock CB(CC, LHS, RHS, MHS,
1444                                    I->BB, FallThrough, CurBlock);
1445     
1446     // If emitting the first comparison, just call visitSwitchCase to emit the
1447     // code into the current block.  Otherwise, push the CaseBlock onto the
1448     // vector to be later processed by SDISel, and insert the node's MBB
1449     // before the next MBB.
1450     if (CurBlock == CurMBB)
1451       visitSwitchCase(CB);
1452     else
1453       SwitchCases.push_back(CB);
1454     
1455     CurBlock = FallThrough;
1456   }
1457
1458   return true;
1459 }
1460
1461 /// handleJTSwitchCase - Emit jumptable for current switch case range
1462 bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1463                                               CaseRecVector& WorkList,
1464                                               Value* SV,
1465                                               MachineBasicBlock* Default) {
1466   Case& FrontCase = *CR.Range.first;
1467   Case& BackCase  = *(CR.Range.second-1);
1468
1469   int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1470   int64_t Last  = cast<ConstantInt>(BackCase.High)->getSExtValue();
1471
1472   uint64_t TSize = 0;
1473   for (CaseItr I = CR.Range.first, E = CR.Range.second;
1474        I!=E; ++I)
1475     TSize += I->size();
1476
1477   if ((!TLI.isOperationLegal(ISD::BR_JT, MVT::Other) &&
1478        !TLI.isOperationLegal(ISD::BRIND, MVT::Other)) ||
1479       TSize <= 3)
1480     return false;
1481   
1482   double Density = (double)TSize / (double)((Last - First) + 1ULL);  
1483   if (Density < 0.4)
1484     return false;
1485
1486   DOUT << "Lowering jump table\n"
1487        << "First entry: " << First << ". Last entry: " << Last << "\n"
1488        << "Size: " << TSize << ". Density: " << Density << "\n\n";
1489
1490   // Get the MachineFunction which holds the current MBB.  This is used when
1491   // inserting any additional MBBs necessary to represent the switch.
1492   MachineFunction *CurMF = CurMBB->getParent();
1493
1494   // Figure out which block is immediately after the current one.
1495   MachineBasicBlock *NextBlock = 0;
1496   MachineFunction::iterator BBI = CR.CaseBB;
1497
1498   if (++BBI != CurMBB->getParent()->end())
1499     NextBlock = BBI;
1500
1501   const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1502
1503   // Create a new basic block to hold the code for loading the address
1504   // of the jump table, and jumping to it.  Update successor information;
1505   // we will either branch to the default case for the switch, or the jump
1506   // table.
1507   MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
1508   CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
1509   CR.CaseBB->addSuccessor(Default);
1510   CR.CaseBB->addSuccessor(JumpTableBB);
1511                 
1512   // Build a vector of destination BBs, corresponding to each target
1513   // of the jump table. If the value of the jump table slot corresponds to
1514   // a case statement, push the case's BB onto the vector, otherwise, push
1515   // the default BB.
1516   std::vector<MachineBasicBlock*> DestBBs;
1517   int64_t TEI = First;
1518   for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
1519     int64_t Low = cast<ConstantInt>(I->Low)->getSExtValue();
1520     int64_t High = cast<ConstantInt>(I->High)->getSExtValue();
1521     
1522     if ((Low <= TEI) && (TEI <= High)) {
1523       DestBBs.push_back(I->BB);
1524       if (TEI==High)
1525         ++I;
1526     } else {
1527       DestBBs.push_back(Default);
1528     }
1529   }
1530   
1531   // Update successor info. Add one edge to each unique successor.
1532   BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());  
1533   for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), 
1534          E = DestBBs.end(); I != E; ++I) {
1535     if (!SuccsHandled[(*I)->getNumber()]) {
1536       SuccsHandled[(*I)->getNumber()] = true;
1537       JumpTableBB->addSuccessor(*I);
1538     }
1539   }
1540       
1541   // Create a jump table index for this jump table, or return an existing
1542   // one.
1543   unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
1544   
1545   // Set the jump table information so that we can codegen it as a second
1546   // MachineBasicBlock
1547   SelectionDAGISel::JumpTable JT(-1UL, JTI, JumpTableBB, Default);
1548   SelectionDAGISel::JumpTableHeader JTH(First, Last, SV, CR.CaseBB,
1549                                         (CR.CaseBB == CurMBB));
1550   if (CR.CaseBB == CurMBB)
1551     visitJumpTableHeader(JT, JTH);
1552         
1553   JTCases.push_back(SelectionDAGISel::JumpTableBlock(JTH, JT));
1554
1555   return true;
1556 }
1557
1558 /// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1559 /// 2 subtrees.
1560 bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1561                                                    CaseRecVector& WorkList,
1562                                                    Value* SV,
1563                                                    MachineBasicBlock* Default) {
1564   // Get the MachineFunction which holds the current MBB.  This is used when
1565   // inserting any additional MBBs necessary to represent the switch.
1566   MachineFunction *CurMF = CurMBB->getParent();  
1567
1568   // Figure out which block is immediately after the current one.
1569   MachineBasicBlock *NextBlock = 0;
1570   MachineFunction::iterator BBI = CR.CaseBB;
1571
1572   if (++BBI != CurMBB->getParent()->end())
1573     NextBlock = BBI;
1574
1575   Case& FrontCase = *CR.Range.first;
1576   Case& BackCase  = *(CR.Range.second-1);
1577   const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1578
1579   // Size is the number of Cases represented by this range.
1580   unsigned Size = CR.Range.second - CR.Range.first;
1581
1582   int64_t First = cast<ConstantInt>(FrontCase.Low)->getSExtValue();
1583   int64_t Last  = cast<ConstantInt>(BackCase.High)->getSExtValue();
1584   double FMetric = 0;
1585   CaseItr Pivot = CR.Range.first + Size/2;
1586
1587   // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1588   // (heuristically) allow us to emit JumpTable's later.
1589   uint64_t TSize = 0;
1590   for (CaseItr I = CR.Range.first, E = CR.Range.second;
1591        I!=E; ++I)
1592     TSize += I->size();
1593
1594   uint64_t LSize = FrontCase.size();
1595   uint64_t RSize = TSize-LSize;
1596   DOUT << "Selecting best pivot: \n"
1597        << "First: " << First << ", Last: " << Last <<"\n"
1598        << "LSize: " << LSize << ", RSize: " << RSize << "\n";
1599   for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1600        J!=E; ++I, ++J) {
1601     int64_t LEnd = cast<ConstantInt>(I->High)->getSExtValue();
1602     int64_t RBegin = cast<ConstantInt>(J->Low)->getSExtValue();
1603     assert((RBegin-LEnd>=1) && "Invalid case distance");
1604     double LDensity = (double)LSize / (double)((LEnd - First) + 1ULL);
1605     double RDensity = (double)RSize / (double)((Last - RBegin) + 1ULL);
1606     double Metric = log(RBegin-LEnd)*(LDensity+RDensity);
1607     // Should always split in some non-trivial place
1608     DOUT <<"=>Step\n"
1609          << "LEnd: " << LEnd << ", RBegin: " << RBegin << "\n"
1610          << "LDensity: " << LDensity << ", RDensity: " << RDensity << "\n"
1611          << "Metric: " << Metric << "\n"; 
1612     if (FMetric < Metric) {
1613       Pivot = J;
1614       FMetric = Metric;
1615       DOUT << "Current metric set to: " << FMetric << "\n";
1616     }
1617
1618     LSize += J->size();
1619     RSize -= J->size();
1620   }
1621   // If our case is dense we *really* should handle it earlier!
1622   assert((FMetric != 0) && "Should handle dense range earlier!");
1623   
1624   CaseRange LHSR(CR.Range.first, Pivot);
1625   CaseRange RHSR(Pivot, CR.Range.second);
1626   Constant *C = Pivot->Low;
1627   MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
1628       
1629   // We know that we branch to the LHS if the Value being switched on is
1630   // less than the Pivot value, C.  We use this to optimize our binary 
1631   // tree a bit, by recognizing that if SV is greater than or equal to the
1632   // LHS's Case Value, and that Case Value is exactly one less than the 
1633   // Pivot's Value, then we can branch directly to the LHS's Target,
1634   // rather than creating a leaf node for it.
1635   if ((LHSR.second - LHSR.first) == 1 &&
1636       LHSR.first->High == CR.GE &&
1637       cast<ConstantInt>(C)->getSExtValue() ==
1638       (cast<ConstantInt>(CR.GE)->getSExtValue() + 1LL)) {
1639     TrueBB = LHSR.first->BB;
1640   } else {
1641     TrueBB = new MachineBasicBlock(LLVMBB);
1642     CurMF->getBasicBlockList().insert(BBI, TrueBB);
1643     WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
1644   }
1645   
1646   // Similar to the optimization above, if the Value being switched on is
1647   // known to be less than the Constant CR.LT, and the current Case Value
1648   // is CR.LT - 1, then we can branch directly to the target block for
1649   // the current Case Value, rather than emitting a RHS leaf node for it.
1650   if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1651       cast<ConstantInt>(RHSR.first->Low)->getSExtValue() ==
1652       (cast<ConstantInt>(CR.LT)->getSExtValue() - 1LL)) {
1653     FalseBB = RHSR.first->BB;
1654   } else {
1655     FalseBB = new MachineBasicBlock(LLVMBB);
1656     CurMF->getBasicBlockList().insert(BBI, FalseBB);
1657     WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
1658   }
1659
1660   // Create a CaseBlock record representing a conditional branch to
1661   // the LHS node if the value being switched on SV is less than C. 
1662   // Otherwise, branch to LHS.
1663   SelectionDAGISel::CaseBlock CB(ISD::SETLT, SV, C, NULL,
1664                                  TrueBB, FalseBB, CR.CaseBB);
1665
1666   if (CR.CaseBB == CurMBB)
1667     visitSwitchCase(CB);
1668   else
1669     SwitchCases.push_back(CB);
1670
1671   return true;
1672 }
1673
1674 /// handleBitTestsSwitchCase - if current case range has few destination and
1675 /// range span less, than machine word bitwidth, encode case range into series
1676 /// of masks and emit bit tests with these masks.
1677 bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1678                                                     CaseRecVector& WorkList,
1679                                                     Value* SV,
1680                                                     MachineBasicBlock* Default) {
1681   unsigned IntPtrBits = getSizeInBits(TLI.getPointerTy());
1682
1683   Case& FrontCase = *CR.Range.first;
1684   Case& BackCase  = *(CR.Range.second-1);
1685
1686   // Get the MachineFunction which holds the current MBB.  This is used when
1687   // inserting any additional MBBs necessary to represent the switch.
1688   MachineFunction *CurMF = CurMBB->getParent();  
1689
1690   unsigned numCmps = 0;
1691   for (CaseItr I = CR.Range.first, E = CR.Range.second;
1692        I!=E; ++I) {
1693     // Single case counts one, case range - two.
1694     if (I->Low == I->High)
1695       numCmps +=1;
1696     else
1697       numCmps +=2;
1698   }
1699     
1700   // Count unique destinations
1701   SmallSet<MachineBasicBlock*, 4> Dests;
1702   for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1703     Dests.insert(I->BB);
1704     if (Dests.size() > 3)
1705       // Don't bother the code below, if there are too much unique destinations
1706       return false;
1707   }
1708   DOUT << "Total number of unique destinations: " << Dests.size() << "\n"
1709        << "Total number of comparisons: " << numCmps << "\n";
1710   
1711   // Compute span of values.
1712   Constant* minValue = FrontCase.Low;
1713   Constant* maxValue = BackCase.High;
1714   uint64_t range = cast<ConstantInt>(maxValue)->getSExtValue() -
1715                    cast<ConstantInt>(minValue)->getSExtValue();
1716   DOUT << "Compare range: " << range << "\n"
1717        << "Low bound: " << cast<ConstantInt>(minValue)->getSExtValue() << "\n"
1718        << "High bound: " << cast<ConstantInt>(maxValue)->getSExtValue() << "\n";
1719   
1720   if (range>IntPtrBits ||
1721       (!(Dests.size() == 1 && numCmps >= 3) &&
1722        !(Dests.size() == 2 && numCmps >= 5) &&
1723        !(Dests.size() >= 3 && numCmps >= 6)))
1724     return false;
1725   
1726   DOUT << "Emitting bit tests\n";
1727   int64_t lowBound = 0;
1728     
1729   // Optimize the case where all the case values fit in a
1730   // word without having to subtract minValue. In this case,
1731   // we can optimize away the subtraction.
1732   if (cast<ConstantInt>(minValue)->getSExtValue() >= 0 &&
1733       cast<ConstantInt>(maxValue)->getSExtValue() <= IntPtrBits) {
1734     range = cast<ConstantInt>(maxValue)->getSExtValue();
1735   } else {
1736     lowBound = cast<ConstantInt>(minValue)->getSExtValue();
1737   }
1738     
1739   CaseBitsVector CasesBits;
1740   unsigned i, count = 0;
1741
1742   for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1743     MachineBasicBlock* Dest = I->BB;
1744     for (i = 0; i < count; ++i)
1745       if (Dest == CasesBits[i].BB)
1746         break;
1747     
1748     if (i == count) {
1749       assert((count < 3) && "Too much destinations to test!");
1750       CasesBits.push_back(CaseBits(0, Dest, 0));
1751       count++;
1752     }
1753     
1754     uint64_t lo = cast<ConstantInt>(I->Low)->getSExtValue() - lowBound;
1755     uint64_t hi = cast<ConstantInt>(I->High)->getSExtValue() - lowBound;
1756     
1757     for (uint64_t j = lo; j <= hi; j++) {
1758       CasesBits[i].Mask |=  1 << j;
1759       CasesBits[i].Bits++;
1760     }
1761       
1762   }
1763   std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
1764   
1765   SelectionDAGISel::BitTestInfo BTC;
1766
1767   // Figure out which block is immediately after the current one.
1768   MachineFunction::iterator BBI = CR.CaseBB;
1769   ++BBI;
1770
1771   const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1772
1773   DOUT << "Cases:\n";
1774   for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
1775     DOUT << "Mask: " << CasesBits[i].Mask << ", Bits: " << CasesBits[i].Bits
1776          << ", BB: " << CasesBits[i].BB << "\n";
1777
1778     MachineBasicBlock *CaseBB = new MachineBasicBlock(LLVMBB);
1779     CurMF->getBasicBlockList().insert(BBI, CaseBB);
1780     BTC.push_back(SelectionDAGISel::BitTestCase(CasesBits[i].Mask,
1781                                                 CaseBB,
1782                                                 CasesBits[i].BB));
1783   }
1784   
1785   SelectionDAGISel::BitTestBlock BTB(lowBound, range, SV,
1786                                      -1ULL, (CR.CaseBB == CurMBB),
1787                                      CR.CaseBB, Default, BTC);
1788
1789   if (CR.CaseBB == CurMBB)
1790     visitBitTestHeader(BTB);
1791   
1792   BitTestCases.push_back(BTB);
1793
1794   return true;
1795 }
1796
1797
1798 // Clusterify - Transform simple list of Cases into list of CaseRange's
1799 unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
1800                                           const SwitchInst& SI) {
1801   unsigned numCmps = 0;
1802
1803   // Start with "simple" cases
1804   for (unsigned i = 1; i < SI.getNumSuccessors(); ++i) {
1805     MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
1806     Cases.push_back(Case(SI.getSuccessorValue(i),
1807                          SI.getSuccessorValue(i),
1808                          SMBB));
1809   }
1810   sort(Cases.begin(), Cases.end(), CaseCmp());
1811
1812   // Merge case into clusters
1813   if (Cases.size()>=2)
1814     for (CaseItr I=Cases.begin(), J=++(Cases.begin()), E=Cases.end(); J!=E; ) {
1815       int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
1816       int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
1817       MachineBasicBlock* nextBB = J->BB;
1818       MachineBasicBlock* currentBB = I->BB;
1819
1820       // If the two neighboring cases go to the same destination, merge them
1821       // into a single case.
1822       if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
1823         I->High = J->High;
1824         J = Cases.erase(J);
1825       } else {
1826         I = J++;
1827       }
1828     }
1829
1830   for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
1831     if (I->Low != I->High)
1832       // A range counts double, since it requires two compares.
1833       ++numCmps;
1834   }
1835
1836   return numCmps;
1837 }
1838
1839 void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {  
1840   // Figure out which block is immediately after the current one.
1841   MachineBasicBlock *NextBlock = 0;
1842   MachineFunction::iterator BBI = CurMBB;
1843
1844   MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
1845
1846   // If there is only the default destination, branch to it if it is not the
1847   // next basic block.  Otherwise, just fall through.
1848   if (SI.getNumOperands() == 2) {
1849     // Update machine-CFG edges.
1850
1851     // If this is not a fall-through branch, emit the branch.
1852     if (Default != NextBlock)
1853       DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
1854                               DAG.getBasicBlock(Default)));
1855
1856     CurMBB->addSuccessor(Default);
1857     return;
1858   }
1859   
1860   // If there are any non-default case statements, create a vector of Cases
1861   // representing each one, and sort the vector so that we can efficiently
1862   // create a binary search tree from them.
1863   CaseVector Cases;
1864   unsigned numCmps = Clusterify(Cases, SI);
1865   DOUT << "Clusterify finished. Total clusters: " << Cases.size()
1866        << ". Total compares: " << numCmps << "\n";
1867
1868   // Get the Value to be switched on and default basic blocks, which will be
1869   // inserted into CaseBlock records, representing basic blocks in the binary
1870   // search tree.
1871   Value *SV = SI.getOperand(0);
1872
1873   // Push the initial CaseRec onto the worklist
1874   CaseRecVector WorkList;
1875   WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
1876
1877   while (!WorkList.empty()) {
1878     // Grab a record representing a case range to process off the worklist
1879     CaseRec CR = WorkList.back();
1880     WorkList.pop_back();
1881
1882     if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
1883       continue;
1884     
1885     // If the range has few cases (two or less) emit a series of specific
1886     // tests.
1887     if (handleSmallSwitchRange(CR, WorkList, SV, Default))
1888       continue;
1889     
1890     // If the switch has more than 5 blocks, and at least 40% dense, and the 
1891     // target supports indirect branches, then emit a jump table rather than 
1892     // lowering the switch to a binary tree of conditional branches.
1893     if (handleJTSwitchCase(CR, WorkList, SV, Default))
1894       continue;
1895           
1896     // Emit binary tree. We need to pick a pivot, and push left and right ranges
1897     // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
1898     handleBTSplitSwitchCase(CR, WorkList, SV, Default);
1899   }
1900 }
1901
1902
1903 void SelectionDAGLowering::visitSub(User &I) {
1904   // -0.0 - X --> fneg
1905   const Type *Ty = I.getType();
1906   if (isa<VectorType>(Ty)) {
1907     visitVectorBinary(I, ISD::VSUB);
1908   } else if (Ty->isFloatingPoint()) {
1909     if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1910       if (CFP->isExactlyValue(-0.0)) {
1911         SDOperand Op2 = getValue(I.getOperand(1));
1912         setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1913         return;
1914       }
1915     visitScalarBinary(I, ISD::FSUB);
1916   } else 
1917     visitScalarBinary(I, ISD::SUB);
1918 }
1919
1920 void SelectionDAGLowering::visitScalarBinary(User &I, unsigned OpCode) {
1921   SDOperand Op1 = getValue(I.getOperand(0));
1922   SDOperand Op2 = getValue(I.getOperand(1));
1923   
1924   setValue(&I, DAG.getNode(OpCode, Op1.getValueType(), Op1, Op2));
1925 }
1926
1927 void
1928 SelectionDAGLowering::visitVectorBinary(User &I, unsigned OpCode) {
1929   assert(isa<VectorType>(I.getType()));
1930   const VectorType *Ty = cast<VectorType>(I.getType());
1931   SDOperand Typ = DAG.getValueType(TLI.getValueType(Ty->getElementType()));
1932
1933   setValue(&I, DAG.getNode(OpCode, MVT::Vector,
1934                            getValue(I.getOperand(0)),
1935                            getValue(I.getOperand(1)),
1936                            DAG.getConstant(Ty->getNumElements(), MVT::i32),
1937                            Typ));
1938 }
1939
1940 void SelectionDAGLowering::visitEitherBinary(User &I, unsigned ScalarOp,
1941                                              unsigned VectorOp) {
1942   if (isa<VectorType>(I.getType()))
1943     visitVectorBinary(I, VectorOp);
1944   else
1945     visitScalarBinary(I, ScalarOp);
1946 }
1947
1948 void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1949   SDOperand Op1 = getValue(I.getOperand(0));
1950   SDOperand Op2 = getValue(I.getOperand(1));
1951   
1952   if (TLI.getShiftAmountTy() < Op2.getValueType())
1953     Op2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Op2);
1954   else if (TLI.getShiftAmountTy() > Op2.getValueType())
1955     Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1956   
1957   setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1958 }
1959
1960 void SelectionDAGLowering::visitICmp(User &I) {
1961   ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
1962   if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
1963     predicate = IC->getPredicate();
1964   else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
1965     predicate = ICmpInst::Predicate(IC->getPredicate());
1966   SDOperand Op1 = getValue(I.getOperand(0));
1967   SDOperand Op2 = getValue(I.getOperand(1));
1968   ISD::CondCode Opcode;
1969   switch (predicate) {
1970     case ICmpInst::ICMP_EQ  : Opcode = ISD::SETEQ; break;
1971     case ICmpInst::ICMP_NE  : Opcode = ISD::SETNE; break;
1972     case ICmpInst::ICMP_UGT : Opcode = ISD::SETUGT; break;
1973     case ICmpInst::ICMP_UGE : Opcode = ISD::SETUGE; break;
1974     case ICmpInst::ICMP_ULT : Opcode = ISD::SETULT; break;
1975     case ICmpInst::ICMP_ULE : Opcode = ISD::SETULE; break;
1976     case ICmpInst::ICMP_SGT : Opcode = ISD::SETGT; break;
1977     case ICmpInst::ICMP_SGE : Opcode = ISD::SETGE; break;
1978     case ICmpInst::ICMP_SLT : Opcode = ISD::SETLT; break;
1979     case ICmpInst::ICMP_SLE : Opcode = ISD::SETLE; break;
1980     default:
1981       assert(!"Invalid ICmp predicate value");
1982       Opcode = ISD::SETEQ;
1983       break;
1984   }
1985   setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
1986 }
1987
1988 void SelectionDAGLowering::visitFCmp(User &I) {
1989   FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
1990   if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
1991     predicate = FC->getPredicate();
1992   else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
1993     predicate = FCmpInst::Predicate(FC->getPredicate());
1994   SDOperand Op1 = getValue(I.getOperand(0));
1995   SDOperand Op2 = getValue(I.getOperand(1));
1996   ISD::CondCode Condition, FOC, FPC;
1997   switch (predicate) {
1998     case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1999     case FCmpInst::FCMP_OEQ:   FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
2000     case FCmpInst::FCMP_OGT:   FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
2001     case FCmpInst::FCMP_OGE:   FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
2002     case FCmpInst::FCMP_OLT:   FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
2003     case FCmpInst::FCMP_OLE:   FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
2004     case FCmpInst::FCMP_ONE:   FOC = ISD::SETNE; FPC = ISD::SETONE; break;
2005     case FCmpInst::FCMP_ORD:   FOC = ISD::SETEQ; FPC = ISD::SETO;   break;
2006     case FCmpInst::FCMP_UNO:   FOC = ISD::SETNE; FPC = ISD::SETUO;  break;
2007     case FCmpInst::FCMP_UEQ:   FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
2008     case FCmpInst::FCMP_UGT:   FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
2009     case FCmpInst::FCMP_UGE:   FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
2010     case FCmpInst::FCMP_ULT:   FOC = ISD::SETLT; FPC = ISD::SETULT; break;
2011     case FCmpInst::FCMP_ULE:   FOC = ISD::SETLE; FPC = ISD::SETULE; break;
2012     case FCmpInst::FCMP_UNE:   FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
2013     case FCmpInst::FCMP_TRUE:  FOC = FPC = ISD::SETTRUE; break;
2014     default:
2015       assert(!"Invalid FCmp predicate value");
2016       FOC = FPC = ISD::SETFALSE;
2017       break;
2018   }
2019   if (FiniteOnlyFPMath())
2020     Condition = FOC;
2021   else 
2022     Condition = FPC;
2023   setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
2024 }
2025
2026 void SelectionDAGLowering::visitSelect(User &I) {
2027   SDOperand Cond     = getValue(I.getOperand(0));
2028   SDOperand TrueVal  = getValue(I.getOperand(1));
2029   SDOperand FalseVal = getValue(I.getOperand(2));
2030   if (!isa<VectorType>(I.getType())) {
2031     setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
2032                              TrueVal, FalseVal));
2033   } else {
2034     setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
2035                              *(TrueVal.Val->op_end()-2),
2036                              *(TrueVal.Val->op_end()-1)));
2037   }
2038 }
2039
2040
2041 void SelectionDAGLowering::visitTrunc(User &I) {
2042   // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2043   SDOperand N = getValue(I.getOperand(0));
2044   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2045   setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2046 }
2047
2048 void SelectionDAGLowering::visitZExt(User &I) {
2049   // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2050   // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2051   SDOperand N = getValue(I.getOperand(0));
2052   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2053   setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2054 }
2055
2056 void SelectionDAGLowering::visitSExt(User &I) {
2057   // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2058   // SExt also can't be a cast to bool for same reason. So, nothing much to do
2059   SDOperand N = getValue(I.getOperand(0));
2060   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2061   setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
2062 }
2063
2064 void SelectionDAGLowering::visitFPTrunc(User &I) {
2065   // FPTrunc is never a no-op cast, no need to check
2066   SDOperand N = getValue(I.getOperand(0));
2067   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2068   setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
2069 }
2070
2071 void SelectionDAGLowering::visitFPExt(User &I){ 
2072   // FPTrunc is never a no-op cast, no need to check
2073   SDOperand N = getValue(I.getOperand(0));
2074   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2075   setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
2076 }
2077
2078 void SelectionDAGLowering::visitFPToUI(User &I) { 
2079   // FPToUI is never a no-op cast, no need to check
2080   SDOperand N = getValue(I.getOperand(0));
2081   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2082   setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
2083 }
2084
2085 void SelectionDAGLowering::visitFPToSI(User &I) {
2086   // FPToSI is never a no-op cast, no need to check
2087   SDOperand N = getValue(I.getOperand(0));
2088   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2089   setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
2090 }
2091
2092 void SelectionDAGLowering::visitUIToFP(User &I) { 
2093   // UIToFP is never a no-op cast, no need to check
2094   SDOperand N = getValue(I.getOperand(0));
2095   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2096   setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
2097 }
2098
2099 void SelectionDAGLowering::visitSIToFP(User &I){ 
2100   // UIToFP is never a no-op cast, no need to check
2101   SDOperand N = getValue(I.getOperand(0));
2102   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2103   setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
2104 }
2105
2106 void SelectionDAGLowering::visitPtrToInt(User &I) {
2107   // What to do depends on the size of the integer and the size of the pointer.
2108   // We can either truncate, zero extend, or no-op, accordingly.
2109   SDOperand N = getValue(I.getOperand(0));
2110   MVT::ValueType SrcVT = N.getValueType();
2111   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2112   SDOperand Result;
2113   if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(SrcVT))
2114     Result = DAG.getNode(ISD::TRUNCATE, DestVT, N);
2115   else 
2116     // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2117     Result = DAG.getNode(ISD::ZERO_EXTEND, DestVT, N);
2118   setValue(&I, Result);
2119 }
2120
2121 void SelectionDAGLowering::visitIntToPtr(User &I) {
2122   // What to do depends on the size of the integer and the size of the pointer.
2123   // We can either truncate, zero extend, or no-op, accordingly.
2124   SDOperand N = getValue(I.getOperand(0));
2125   MVT::ValueType SrcVT = N.getValueType();
2126   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2127   if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(SrcVT))
2128     setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
2129   else 
2130     // Note: ZERO_EXTEND can handle cases where the sizes are equal too
2131     setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
2132 }
2133
2134 void SelectionDAGLowering::visitBitCast(User &I) { 
2135   SDOperand N = getValue(I.getOperand(0));
2136   MVT::ValueType DestVT = TLI.getValueType(I.getType());
2137   if (DestVT == MVT::Vector) {
2138     // This is a cast to a vector from something else.  
2139     // Get information about the output vector.
2140     const VectorType *DestTy = cast<VectorType>(I.getType());
2141     MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
2142     setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N, 
2143                              DAG.getConstant(DestTy->getNumElements(),MVT::i32),
2144                              DAG.getValueType(EltVT)));
2145     return;
2146   } 
2147   MVT::ValueType SrcVT = N.getValueType();
2148   if (SrcVT == MVT::Vector) {
2149     // This is a cast from a vctor to something else. 
2150     // Get information about the input vector.
2151     setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
2152     return;
2153   }
2154
2155   // BitCast assures us that source and destination are the same size so this 
2156   // is either a BIT_CONVERT or a no-op.
2157   if (DestVT != N.getValueType())
2158     setValue(&I, DAG.getNode(ISD::BIT_CONVERT, DestVT, N)); // convert types
2159   else
2160     setValue(&I, N); // noop cast.
2161 }
2162
2163 void SelectionDAGLowering::visitInsertElement(User &I) {
2164   SDOperand InVec = getValue(I.getOperand(0));
2165   SDOperand InVal = getValue(I.getOperand(1));
2166   SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2167                                 getValue(I.getOperand(2)));
2168
2169   SDOperand Num = *(InVec.Val->op_end()-2);
2170   SDOperand Typ = *(InVec.Val->op_end()-1);
2171   setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
2172                            InVec, InVal, InIdx, Num, Typ));
2173 }
2174
2175 void SelectionDAGLowering::visitExtractElement(User &I) {
2176   SDOperand InVec = getValue(I.getOperand(0));
2177   SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
2178                                 getValue(I.getOperand(1)));
2179   SDOperand Typ = *(InVec.Val->op_end()-1);
2180   setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
2181                            TLI.getValueType(I.getType()), InVec, InIdx));
2182 }
2183
2184 void SelectionDAGLowering::visitShuffleVector(User &I) {
2185   SDOperand V1   = getValue(I.getOperand(0));
2186   SDOperand V2   = getValue(I.getOperand(1));
2187   SDOperand Mask = getValue(I.getOperand(2));
2188
2189   SDOperand Num = *(V1.Val->op_end()-2);
2190   SDOperand Typ = *(V2.Val->op_end()-1);
2191   setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
2192                            V1, V2, Mask, Num, Typ));
2193 }
2194
2195
2196 void SelectionDAGLowering::visitGetElementPtr(User &I) {
2197   SDOperand N = getValue(I.getOperand(0));
2198   const Type *Ty = I.getOperand(0)->getType();
2199
2200   for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2201        OI != E; ++OI) {
2202     Value *Idx = *OI;
2203     if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2204       unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2205       if (Field) {
2206         // N = N + Offset
2207         uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
2208         N = DAG.getNode(ISD::ADD, N.getValueType(), N,
2209                         getIntPtrConstant(Offset));
2210       }
2211       Ty = StTy->getElementType(Field);
2212     } else {
2213       Ty = cast<SequentialType>(Ty)->getElementType();
2214
2215       // If this is a constant subscript, handle it quickly.
2216       if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2217         if (CI->getZExtValue() == 0) continue;
2218         uint64_t Offs = 
2219             TD->getTypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
2220         N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
2221         continue;
2222       }
2223       
2224       // N = N + Idx * ElementSize;
2225       uint64_t ElementSize = TD->getTypeSize(Ty);
2226       SDOperand IdxN = getValue(Idx);
2227
2228       // If the index is smaller or larger than intptr_t, truncate or extend
2229       // it.
2230       if (IdxN.getValueType() < N.getValueType()) {
2231         IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
2232       } else if (IdxN.getValueType() > N.getValueType())
2233         IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
2234
2235       // If this is a multiply by a power of two, turn it into a shl
2236       // immediately.  This is a very common case.
2237       if (isPowerOf2_64(ElementSize)) {
2238         unsigned Amt = Log2_64(ElementSize);
2239         IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
2240                            DAG.getConstant(Amt, TLI.getShiftAmountTy()));
2241         N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2242         continue;
2243       }
2244       
2245       SDOperand Scale = getIntPtrConstant(ElementSize);
2246       IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
2247       N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
2248     }
2249   }
2250   setValue(&I, N);
2251 }
2252
2253 void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2254   // If this is a fixed sized alloca in the entry block of the function,
2255   // allocate it statically on the stack.
2256   if (FuncInfo.StaticAllocaMap.count(&I))
2257     return;   // getValue will auto-populate this.
2258
2259   const Type *Ty = I.getAllocatedType();
2260   uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
2261   unsigned Align =
2262     std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2263              I.getAlignment());
2264
2265   SDOperand AllocSize = getValue(I.getArraySize());
2266   MVT::ValueType IntPtr = TLI.getPointerTy();
2267   if (IntPtr < AllocSize.getValueType())
2268     AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
2269   else if (IntPtr > AllocSize.getValueType())
2270     AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
2271
2272   AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
2273                           getIntPtrConstant(TySize));
2274
2275   // Handle alignment.  If the requested alignment is less than or equal to the
2276   // stack alignment, ignore it and round the size of the allocation up to the
2277   // stack alignment size.  If the size is greater than the stack alignment, we
2278   // note this in the DYNAMIC_STACKALLOC node.
2279   unsigned StackAlign =
2280     TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2281   if (Align <= StackAlign) {
2282     Align = 0;
2283     // Add SA-1 to the size.
2284     AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
2285                             getIntPtrConstant(StackAlign-1));
2286     // Mask out the low bits for alignment purposes.
2287     AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
2288                             getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2289   }
2290
2291   SDOperand Ops[] = { getRoot(), AllocSize, getIntPtrConstant(Align) };
2292   const MVT::ValueType *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2293                                                     MVT::Other);
2294   SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, 2, Ops, 3);
2295   setValue(&I, DSA);
2296   DAG.setRoot(DSA.getValue(1));
2297
2298   // Inform the Frame Information that we have just allocated a variable-sized
2299   // object.
2300   CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2301 }
2302
2303 void SelectionDAGLowering::visitLoad(LoadInst &I) {
2304   SDOperand Ptr = getValue(I.getOperand(0));
2305
2306   SDOperand Root;
2307   if (I.isVolatile())
2308     Root = getRoot();
2309   else {
2310     // Do not serialize non-volatile loads against each other.
2311     Root = DAG.getRoot();
2312   }
2313
2314   setValue(&I, getLoadFrom(I.getType(), Ptr, I.getOperand(0),
2315                            Root, I.isVolatile()));
2316 }
2317
2318 SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
2319                                             const Value *SV, SDOperand Root,
2320                                             bool isVolatile) {
2321   SDOperand L;
2322   if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) {
2323     MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
2324     L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr,
2325                        DAG.getSrcValue(SV));
2326   } else {
2327     L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SV, 0, isVolatile);
2328   }
2329
2330   if (isVolatile)
2331     DAG.setRoot(L.getValue(1));
2332   else
2333     PendingLoads.push_back(L.getValue(1));
2334   
2335   return L;
2336 }
2337
2338
2339 void SelectionDAGLowering::visitStore(StoreInst &I) {
2340   Value *SrcV = I.getOperand(0);
2341   SDOperand Src = getValue(SrcV);
2342   SDOperand Ptr = getValue(I.getOperand(1));
2343   DAG.setRoot(DAG.getStore(getRoot(), Src, Ptr, I.getOperand(1), 0,
2344                            I.isVolatile()));
2345 }
2346
2347 /// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
2348 /// access memory and has no other side effects at all.
2349 static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
2350 #define GET_NO_MEMORY_INTRINSICS
2351 #include "llvm/Intrinsics.gen"
2352 #undef GET_NO_MEMORY_INTRINSICS
2353   return false;
2354 }
2355
2356 // IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
2357 // have any side-effects or if it only reads memory.
2358 static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
2359 #define GET_SIDE_EFFECT_INFO
2360 #include "llvm/Intrinsics.gen"
2361 #undef GET_SIDE_EFFECT_INFO
2362   return false;
2363 }
2364
2365 /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2366 /// node.
2367 void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, 
2368                                                 unsigned Intrinsic) {
2369   bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
2370   bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
2371   
2372   // Build the operand list.
2373   SmallVector<SDOperand, 8> Ops;
2374   if (HasChain) {  // If this intrinsic has side-effects, chainify it.
2375     if (OnlyLoad) {
2376       // We don't need to serialize loads against other loads.
2377       Ops.push_back(DAG.getRoot());
2378     } else { 
2379       Ops.push_back(getRoot());
2380     }
2381   }
2382   
2383   // Add the intrinsic ID as an integer operand.
2384   Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
2385
2386   // Add all operands of the call to the operand list.
2387   for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2388     SDOperand Op = getValue(I.getOperand(i));
2389     
2390     // If this is a vector type, force it to the right vector type.
2391     if (Op.getValueType() == MVT::Vector) {
2392       const VectorType *OpTy = cast<VectorType>(I.getOperand(i)->getType());
2393       MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
2394       
2395       MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
2396       assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
2397       Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
2398     }
2399     
2400     assert(TLI.isTypeLegal(Op.getValueType()) &&
2401            "Intrinsic uses a non-legal type?");
2402     Ops.push_back(Op);
2403   }
2404
2405   std::vector<MVT::ValueType> VTs;
2406   if (I.getType() != Type::VoidTy) {
2407     MVT::ValueType VT = TLI.getValueType(I.getType());
2408     if (VT == MVT::Vector) {
2409       const VectorType *DestTy = cast<VectorType>(I.getType());
2410       MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
2411       
2412       VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
2413       assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2414     }
2415     
2416     assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2417     VTs.push_back(VT);
2418   }
2419   if (HasChain)
2420     VTs.push_back(MVT::Other);
2421
2422   const MVT::ValueType *VTList = DAG.getNodeValueTypes(VTs);
2423
2424   // Create the node.
2425   SDOperand Result;
2426   if (!HasChain)
2427     Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTList, VTs.size(),
2428                          &Ops[0], Ops.size());
2429   else if (I.getType() != Type::VoidTy)
2430     Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTList, VTs.size(),
2431                          &Ops[0], Ops.size());
2432   else
2433     Result = DAG.getNode(ISD::INTRINSIC_VOID, VTList, VTs.size(),
2434                          &Ops[0], Ops.size());
2435
2436   if (HasChain) {
2437     SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
2438     if (OnlyLoad)
2439       PendingLoads.push_back(Chain);
2440     else
2441       DAG.setRoot(Chain);
2442   }
2443   if (I.getType() != Type::VoidTy) {
2444     if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2445       MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
2446       Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
2447                            DAG.getConstant(PTy->getNumElements(), MVT::i32),
2448                            DAG.getValueType(EVT));
2449     } 
2450     setValue(&I, Result);
2451   }
2452 }
2453
2454 /// visitIntrinsicCall - Lower the call to the specified intrinsic function.  If
2455 /// we want to emit this as a call to a named external function, return the name
2456 /// otherwise lower it and return null.
2457 const char *
2458 SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
2459   switch (Intrinsic) {
2460   default:
2461     // By default, turn this into a target intrinsic node.
2462     visitTargetIntrinsic(I, Intrinsic);
2463     return 0;
2464   case Intrinsic::vastart:  visitVAStart(I); return 0;
2465   case Intrinsic::vaend:    visitVAEnd(I); return 0;
2466   case Intrinsic::vacopy:   visitVACopy(I); return 0;
2467   case Intrinsic::returnaddress:
2468     setValue(&I, DAG.getNode(ISD::RETURNADDR, TLI.getPointerTy(),
2469                              getValue(I.getOperand(1))));
2470     return 0;
2471   case Intrinsic::frameaddress:
2472     setValue(&I, DAG.getNode(ISD::FRAMEADDR, TLI.getPointerTy(),
2473                              getValue(I.getOperand(1))));
2474     return 0;
2475   case Intrinsic::setjmp:
2476     return "_setjmp"+!TLI.usesUnderscoreSetJmp();
2477     break;
2478   case Intrinsic::longjmp:
2479     return "_longjmp"+!TLI.usesUnderscoreLongJmp();
2480     break;
2481   case Intrinsic::memcpy_i32:
2482   case Intrinsic::memcpy_i64:
2483     visitMemIntrinsic(I, ISD::MEMCPY);
2484     return 0;
2485   case Intrinsic::memset_i32:
2486   case Intrinsic::memset_i64:
2487     visitMemIntrinsic(I, ISD::MEMSET);
2488     return 0;
2489   case Intrinsic::memmove_i32:
2490   case Intrinsic::memmove_i64:
2491     visitMemIntrinsic(I, ISD::MEMMOVE);
2492     return 0;
2493     
2494   case Intrinsic::dbg_stoppoint: {
2495     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2496     DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
2497     if (MMI && SPI.getContext() && MMI->Verify(SPI.getContext())) {
2498       SDOperand Ops[5];
2499
2500       Ops[0] = getRoot();
2501       Ops[1] = getValue(SPI.getLineValue());
2502       Ops[2] = getValue(SPI.getColumnValue());
2503
2504       DebugInfoDesc *DD = MMI->getDescFor(SPI.getContext());
2505       assert(DD && "Not a debug information descriptor");
2506       CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
2507       
2508       Ops[3] = DAG.getString(CompileUnit->getFileName());
2509       Ops[4] = DAG.getString(CompileUnit->getDirectory());
2510       
2511       DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops, 5));
2512     }
2513
2514     return 0;
2515   }
2516   case Intrinsic::dbg_region_start: {
2517     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2518     DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
2519     if (MMI && RSI.getContext() && MMI->Verify(RSI.getContext())) {
2520       unsigned LabelID = MMI->RecordRegionStart(RSI.getContext());
2521       DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, getRoot(),
2522                               DAG.getConstant(LabelID, MVT::i32)));
2523     }
2524
2525     return 0;
2526   }
2527   case Intrinsic::dbg_region_end: {
2528     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2529     DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
2530     if (MMI && REI.getContext() && MMI->Verify(REI.getContext())) {
2531       unsigned LabelID = MMI->RecordRegionEnd(REI.getContext());
2532       DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other,
2533                               getRoot(), DAG.getConstant(LabelID, MVT::i32)));
2534     }
2535
2536     return 0;
2537   }
2538   case Intrinsic::dbg_func_start: {
2539     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2540     DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
2541     if (MMI && FSI.getSubprogram() &&
2542         MMI->Verify(FSI.getSubprogram())) {
2543       unsigned LabelID = MMI->RecordRegionStart(FSI.getSubprogram());
2544       DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other,
2545                   getRoot(), DAG.getConstant(LabelID, MVT::i32)));
2546     }
2547
2548     return 0;
2549   }
2550   case Intrinsic::dbg_declare: {
2551     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2552     DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
2553     if (MMI && DI.getVariable() && MMI->Verify(DI.getVariable())) {
2554       SDOperand AddressOp  = getValue(DI.getAddress());
2555       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp))
2556         MMI->RecordVariable(DI.getVariable(), FI->getIndex());
2557     }
2558
2559     return 0;
2560   }
2561     
2562   case Intrinsic::eh_exception: {
2563     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2564     
2565     if (MMI) {
2566       // Add a label to mark the beginning of the landing pad.  Deletion of the
2567       // landing pad can thus be detected via the MachineModuleInfo.
2568       unsigned LabelID = MMI->addLandingPad(CurMBB);
2569       DAG.setRoot(DAG.getNode(ISD::LABEL, MVT::Other, DAG.getEntryNode(),
2570                               DAG.getConstant(LabelID, MVT::i32)));
2571       
2572       // Mark exception register as live in.
2573       unsigned Reg = TLI.getExceptionAddressRegister();
2574       if (Reg) CurMBB->addLiveIn(Reg);
2575       
2576       // Insert the EXCEPTIONADDR instruction.
2577       SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
2578       SDOperand Ops[1];
2579       Ops[0] = DAG.getRoot();
2580       SDOperand Op = DAG.getNode(ISD::EXCEPTIONADDR, VTs, Ops, 1);
2581       setValue(&I, Op);
2582       DAG.setRoot(Op.getValue(1));
2583     } else {
2584       setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
2585     }
2586     return 0;
2587   }
2588
2589   case Intrinsic::eh_selector:
2590   case Intrinsic::eh_filter:{
2591     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2592     
2593     if (MMI) {
2594       // Inform the MachineModuleInfo of the personality for this landing pad.
2595       ConstantExpr *CE = dyn_cast<ConstantExpr>(I.getOperand(2));
2596       assert(CE && CE->getOpcode() == Instruction::BitCast &&
2597              isa<Function>(CE->getOperand(0)) &&
2598              "Personality should be a function");
2599       MMI->addPersonality(CurMBB, cast<Function>(CE->getOperand(0)));
2600       if (Intrinsic == Intrinsic::eh_filter)
2601         MMI->setIsFilterLandingPad(CurMBB);
2602
2603       // Gather all the type infos for this landing pad and pass them along to
2604       // MachineModuleInfo.
2605       std::vector<GlobalVariable *> TyInfo;
2606       for (unsigned i = 3, N = I.getNumOperands(); i < N; ++i) {
2607         ConstantExpr *CE = dyn_cast<ConstantExpr>(I.getOperand(i));
2608         if (CE && CE->getOpcode() == Instruction::BitCast &&
2609             isa<GlobalVariable>(CE->getOperand(0))) {
2610           TyInfo.push_back(cast<GlobalVariable>(CE->getOperand(0)));
2611         } else {
2612           ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i));
2613           assert(CI && CI->getZExtValue() == 0 &&
2614             "TypeInfo must be a global variable typeinfo or NULL");
2615           TyInfo.push_back(NULL);
2616         }
2617       }
2618       MMI->addCatchTypeInfo(CurMBB, TyInfo);
2619       
2620       // Mark exception selector register as live in.
2621       unsigned Reg = TLI.getExceptionSelectorRegister();
2622       if (Reg) CurMBB->addLiveIn(Reg);
2623
2624       // Insert the EHSELECTION instruction.
2625       SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Other);
2626       SDOperand Ops[2];
2627       Ops[0] = getValue(I.getOperand(1));
2628       Ops[1] = getRoot();
2629       SDOperand Op = DAG.getNode(ISD::EHSELECTION, VTs, Ops, 2);
2630       setValue(&I, Op);
2631       DAG.setRoot(Op.getValue(1));
2632     } else {
2633       setValue(&I, DAG.getConstant(0, MVT::i32));
2634     }
2635     
2636     return 0;
2637   }
2638   
2639   case Intrinsic::eh_typeid_for: {
2640     MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
2641     
2642     if (MMI) {
2643       // Find the type id for the given typeinfo.
2644       GlobalVariable *GV = NULL;
2645       ConstantExpr *CE = dyn_cast<ConstantExpr>(I.getOperand(1));
2646       if (CE && CE->getOpcode() == Instruction::BitCast &&
2647           isa<GlobalVariable>(CE->getOperand(0))) {
2648         GV = cast<GlobalVariable>(CE->getOperand(0));
2649       } else {
2650         ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(1));
2651         assert(CI && CI->getZExtValue() == 0 &&
2652           "TypeInfo must be a global variable typeinfo or NULL");
2653         GV = NULL;
2654       }
2655       
2656       unsigned TypeID = MMI->getTypeIDFor(GV);
2657       setValue(&I, DAG.getConstant(TypeID, MVT::i32));
2658     } else {
2659       setValue(&I, DAG.getConstant(0, MVT::i32));
2660     }
2661
2662     return 0;
2663   }
2664
2665   case Intrinsic::sqrt_f32:
2666   case Intrinsic::sqrt_f64:
2667     setValue(&I, DAG.getNode(ISD::FSQRT,
2668                              getValue(I.getOperand(1)).getValueType(),
2669                              getValue(I.getOperand(1))));
2670     return 0;
2671   case Intrinsic::powi_f32:
2672   case Intrinsic::powi_f64:
2673     setValue(&I, DAG.getNode(ISD::FPOWI,
2674                              getValue(I.getOperand(1)).getValueType(),
2675                              getValue(I.getOperand(1)),
2676                              getValue(I.getOperand(2))));
2677     return 0;
2678   case Intrinsic::pcmarker: {
2679     SDOperand Tmp = getValue(I.getOperand(1));
2680     DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
2681     return 0;
2682   }
2683   case Intrinsic::readcyclecounter: {
2684     SDOperand Op = getRoot();
2685     SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER,
2686                                 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
2687                                 &Op, 1);
2688     setValue(&I, Tmp);
2689     DAG.setRoot(Tmp.getValue(1));
2690     return 0;
2691   }
2692   case Intrinsic::bit_part_select: {
2693     // Currently not implemented: just abort
2694     assert(0 && "bit_part_select intrinsic not implemented");
2695     abort();
2696   }
2697   case Intrinsic::bswap:
2698     setValue(&I, DAG.getNode(ISD::BSWAP,
2699                              getValue(I.getOperand(1)).getValueType(),
2700                              getValue(I.getOperand(1))));
2701     return 0;
2702   case Intrinsic::cttz: {
2703     SDOperand Arg = getValue(I.getOperand(1));
2704     MVT::ValueType Ty = Arg.getValueType();
2705     SDOperand result = DAG.getNode(ISD::CTTZ, Ty, Arg);
2706     if (Ty < MVT::i32)
2707       result = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, result);
2708     else if (Ty > MVT::i32)
2709       result = DAG.getNode(ISD::TRUNCATE, MVT::i32, result);
2710     setValue(&I, result);
2711     return 0;
2712   }
2713   case Intrinsic::ctlz: {
2714     SDOperand Arg = getValue(I.getOperand(1));
2715     MVT::ValueType Ty = Arg.getValueType();
2716     SDOperand result = DAG.getNode(ISD::CTLZ, Ty, Arg);
2717     if (Ty < MVT::i32)
2718       result = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, result);
2719     else if (Ty > MVT::i32)
2720       result = DAG.getNode(ISD::TRUNCATE, MVT::i32, result);
2721     setValue(&I, result);
2722     return 0;
2723   }
2724   case Intrinsic::ctpop: {
2725     SDOperand Arg = getValue(I.getOperand(1));
2726     MVT::ValueType Ty = Arg.getValueType();
2727     SDOperand result = DAG.getNode(ISD::CTPOP, Ty, Arg);
2728     if (Ty < MVT::i32)
2729       result = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, result);
2730     else if (Ty > MVT::i32)
2731       result = DAG.getNode(ISD::TRUNCATE, MVT::i32, result);
2732     setValue(&I, result);
2733     return 0;
2734   }
2735   case Intrinsic::stacksave: {
2736     SDOperand Op = getRoot();
2737     SDOperand Tmp = DAG.getNode(ISD::STACKSAVE,
2738               DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
2739     setValue(&I, Tmp);
2740     DAG.setRoot(Tmp.getValue(1));
2741     return 0;
2742   }
2743   case Intrinsic::stackrestore: {
2744     SDOperand Tmp = getValue(I.getOperand(1));
2745     DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
2746     return 0;
2747   }
2748   case Intrinsic::prefetch:
2749     // FIXME: Currently discarding prefetches.
2750     return 0;
2751   }
2752 }
2753
2754
2755 void SelectionDAGLowering::LowerCallTo(Instruction &I,
2756                                        const Type *CalledValueTy,
2757                                        unsigned CallingConv,
2758                                        bool IsTailCall,
2759                                        SDOperand Callee, unsigned OpIdx) {
2760   const PointerType *PT = cast<PointerType>(CalledValueTy);
2761   const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
2762   const ParamAttrsList *Attrs = FTy->getParamAttrs();
2763
2764   TargetLowering::ArgListTy Args;
2765   TargetLowering::ArgListEntry Entry;
2766   Args.reserve(I.getNumOperands());
2767   for (unsigned i = OpIdx, e = I.getNumOperands(); i != e; ++i) {
2768     Value *Arg = I.getOperand(i);
2769     SDOperand ArgNode = getValue(Arg);
2770     Entry.Node = ArgNode; Entry.Ty = Arg->getType();
2771     Entry.isSExt   = Attrs && Attrs->paramHasAttr(i, SExtAttribute);
2772     Entry.isZExt   = Attrs && Attrs->paramHasAttr(i, ZExtAttribute);
2773     Entry.isInReg  = Attrs && Attrs->paramHasAttr(i, InRegAttribute);
2774     Entry.isSRet   = Attrs && Attrs->paramHasAttr(i, StructRetAttribute);
2775     Args.push_back(Entry);
2776   }
2777
2778   std::pair<SDOperand,SDOperand> Result =
2779     TLI.LowerCallTo(getRoot(), I.getType(), 
2780                     Attrs && Attrs->paramHasAttr(0, SExtAttribute),
2781                     FTy->isVarArg(), CallingConv, IsTailCall, 
2782                     Callee, Args, DAG);
2783   if (I.getType() != Type::VoidTy)
2784     setValue(&I, Result.first);
2785   DAG.setRoot(Result.second);
2786 }
2787
2788
2789 void SelectionDAGLowering::visitCall(CallInst &I) {
2790   const char *RenameFn = 0;
2791   if (Function *F = I.getCalledFunction()) {
2792     if (F->isDeclaration())
2793       if (unsigned IID = F->getIntrinsicID()) {
2794         RenameFn = visitIntrinsicCall(I, IID);
2795         if (!RenameFn)
2796           return;
2797       } else {    // Not an LLVM intrinsic.
2798         const std::string &Name = F->getName();
2799         if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
2800           if (I.getNumOperands() == 3 &&   // Basic sanity checks.
2801               I.getOperand(1)->getType()->isFloatingPoint() &&
2802               I.getType() == I.getOperand(1)->getType() &&
2803               I.getType() == I.getOperand(2)->getType()) {
2804             SDOperand LHS = getValue(I.getOperand(1));
2805             SDOperand RHS = getValue(I.getOperand(2));
2806             setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
2807                                      LHS, RHS));
2808             return;
2809           }
2810         } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
2811           if (I.getNumOperands() == 2 &&   // Basic sanity checks.
2812               I.getOperand(1)->getType()->isFloatingPoint() &&
2813               I.getType() == I.getOperand(1)->getType()) {
2814             SDOperand Tmp = getValue(I.getOperand(1));
2815             setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
2816             return;
2817           }
2818         } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
2819           if (I.getNumOperands() == 2 &&   // Basic sanity checks.
2820               I.getOperand(1)->getType()->isFloatingPoint() &&
2821               I.getType() == I.getOperand(1)->getType()) {
2822             SDOperand Tmp = getValue(I.getOperand(1));
2823             setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
2824             return;
2825           }
2826         } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
2827           if (I.getNumOperands() == 2 &&   // Basic sanity checks.
2828               I.getOperand(1)->getType()->isFloatingPoint() &&
2829               I.getType() == I.getOperand(1)->getType()) {
2830             SDOperand Tmp = getValue(I.getOperand(1));
2831             setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
2832             return;
2833           }
2834         }
2835       }
2836   } else if (isa<InlineAsm>(I.getOperand(0))) {
2837     visitInlineAsm(I);
2838     return;
2839   }
2840
2841   SDOperand Callee;
2842   if (!RenameFn)
2843     Callee = getValue(I.getOperand(0));
2844   else
2845     Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
2846     
2847   LowerCallTo(I, I.getCalledValue()->getType(),
2848                  I.getCallingConv(),
2849                  I.isTailCall(),
2850                  Callee,
2851                  1);
2852 }
2853
2854
2855 SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
2856                                         SDOperand &Chain, SDOperand &Flag)const{
2857   SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
2858   Chain = Val.getValue(1);
2859   Flag  = Val.getValue(2);
2860   
2861   // If the result was expanded, copy from the top part.
2862   if (Regs.size() > 1) {
2863     assert(Regs.size() == 2 &&
2864            "Cannot expand to more than 2 elts yet!");
2865     SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
2866     Chain = Hi.getValue(1);
2867     Flag  = Hi.getValue(2);
2868     if (DAG.getTargetLoweringInfo().isLittleEndian())
2869       return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
2870     else
2871       return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
2872   }
2873
2874   // Otherwise, if the return value was promoted or extended, truncate it to the
2875   // appropriate type.
2876   if (RegVT == ValueVT)
2877     return Val;
2878   
2879   if (MVT::isVector(RegVT)) {
2880     assert(ValueVT == MVT::Vector && "Unknown vector conversion!");
2881     return DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Val, 
2882                        DAG.getConstant(MVT::getVectorNumElements(RegVT),
2883                                        MVT::i32),
2884                        DAG.getValueType(MVT::getVectorBaseType(RegVT)));
2885   }
2886   
2887   if (MVT::isInteger(RegVT)) {
2888     if (ValueVT < RegVT)
2889       return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
2890     else
2891       return DAG.getNode(ISD::ANY_EXTEND, ValueVT, Val);
2892   }
2893   
2894   assert(MVT::isFloatingPoint(RegVT) && MVT::isFloatingPoint(ValueVT));
2895   return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
2896 }
2897
2898 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
2899 /// specified value into the registers specified by this object.  This uses 
2900 /// Chain/Flag as the input and updates them for the output Chain/Flag.
2901 void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
2902                                  SDOperand &Chain, SDOperand &Flag,
2903                                  MVT::ValueType PtrVT) const {
2904   if (Regs.size() == 1) {
2905     // If there is a single register and the types differ, this must be
2906     // a promotion.
2907     if (RegVT != ValueVT) {
2908       if (MVT::isVector(RegVT)) {
2909         assert(Val.getValueType() == MVT::Vector &&"Not a vector-vector cast?");
2910         Val = DAG.getNode(ISD::VBIT_CONVERT, RegVT, Val);
2911       } else if (MVT::isInteger(RegVT) && MVT::isInteger(Val.getValueType())) {
2912         if (RegVT < ValueVT)
2913           Val = DAG.getNode(ISD::TRUNCATE, RegVT, Val);
2914         else
2915           Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
2916       } else if (MVT::isFloatingPoint(RegVT) &&
2917                  MVT::isFloatingPoint(Val.getValueType())) {
2918         Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
2919       } else if (MVT::getSizeInBits(RegVT) == 
2920                  MVT::getSizeInBits(Val.getValueType())) {
2921         Val = DAG.getNode(ISD::BIT_CONVERT, RegVT, Val);
2922       } else {
2923         assert(0 && "Unknown mismatch!");
2924       }
2925     }
2926     Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
2927     Flag = Chain.getValue(1);
2928   } else {
2929     std::vector<unsigned> R(Regs);
2930     if (!DAG.getTargetLoweringInfo().isLittleEndian())
2931       std::reverse(R.begin(), R.end());
2932     
2933     for (unsigned i = 0, e = R.size(); i != e; ++i) {
2934       SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val, 
2935                                    DAG.getConstant(i, PtrVT));
2936       Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
2937       Flag = Chain.getValue(1);
2938     }
2939   }
2940 }
2941
2942 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
2943 /// operand list.  This adds the code marker and includes the number of 
2944 /// values added into it.
2945 void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
2946                                         std::vector<SDOperand> &Ops) const {
2947   MVT::ValueType IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
2948   Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
2949   for (unsigned i = 0, e = Regs.size(); i != e; ++i)
2950     Ops.push_back(DAG.getRegister(Regs[i], RegVT));
2951 }
2952
2953 /// isAllocatableRegister - If the specified register is safe to allocate, 
2954 /// i.e. it isn't a stack pointer or some other special register, return the
2955 /// register class for the register.  Otherwise, return null.
2956 static const TargetRegisterClass *
2957 isAllocatableRegister(unsigned Reg, MachineFunction &MF,
2958                       const TargetLowering &TLI, const MRegisterInfo *MRI) {
2959   MVT::ValueType FoundVT = MVT::Other;
2960   const TargetRegisterClass *FoundRC = 0;
2961   for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
2962        E = MRI->regclass_end(); RCI != E; ++RCI) {
2963     MVT::ValueType ThisVT = MVT::Other;
2964
2965     const TargetRegisterClass *RC = *RCI;
2966     // If none of the the value types for this register class are valid, we 
2967     // can't use it.  For example, 64-bit reg classes on 32-bit targets.
2968     for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
2969          I != E; ++I) {
2970       if (TLI.isTypeLegal(*I)) {
2971         // If we have already found this register in a different register class,
2972         // choose the one with the largest VT specified.  For example, on
2973         // PowerPC, we favor f64 register classes over f32.
2974         if (FoundVT == MVT::Other || 
2975             MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
2976           ThisVT = *I;
2977           break;
2978         }
2979       }
2980     }
2981     
2982     if (ThisVT == MVT::Other) continue;
2983     
2984     // NOTE: This isn't ideal.  In particular, this might allocate the
2985     // frame pointer in functions that need it (due to them not being taken
2986     // out of allocation, because a variable sized allocation hasn't been seen
2987     // yet).  This is a slight code pessimization, but should still work.
2988     for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
2989          E = RC->allocation_order_end(MF); I != E; ++I)
2990       if (*I == Reg) {
2991         // We found a matching register class.  Keep looking at others in case
2992         // we find one with larger registers that this physreg is also in.
2993         FoundRC = RC;
2994         FoundVT = ThisVT;
2995         break;
2996       }
2997   }
2998   return FoundRC;
2999 }    
3000
3001 RegsForValue SelectionDAGLowering::
3002 GetRegistersForValue(const std::string &ConstrCode,
3003                      MVT::ValueType VT, bool isOutReg, bool isInReg,
3004                      std::set<unsigned> &OutputRegs, 
3005                      std::set<unsigned> &InputRegs) {
3006   std::pair<unsigned, const TargetRegisterClass*> PhysReg = 
3007     TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
3008   std::vector<unsigned> Regs;
3009
3010   unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
3011   MVT::ValueType RegVT;
3012   MVT::ValueType ValueVT = VT;
3013   
3014   // If this is a constraint for a specific physical register, like {r17},
3015   // assign it now.
3016   if (PhysReg.first) {
3017     if (VT == MVT::Other)
3018       ValueVT = *PhysReg.second->vt_begin();
3019     
3020     // Get the actual register value type.  This is important, because the user
3021     // may have asked for (e.g.) the AX register in i32 type.  We need to
3022     // remember that AX is actually i16 to get the right extension.
3023     RegVT = *PhysReg.second->vt_begin();
3024     
3025     // This is a explicit reference to a physical register.
3026     Regs.push_back(PhysReg.first);
3027
3028     // If this is an expanded reference, add the rest of the regs to Regs.
3029     if (NumRegs != 1) {
3030       TargetRegisterClass::iterator I = PhysReg.second->begin();
3031       TargetRegisterClass::iterator E = PhysReg.second->end();
3032       for (; *I != PhysReg.first; ++I)
3033         assert(I != E && "Didn't find reg!"); 
3034       
3035       // Already added the first reg.
3036       --NumRegs; ++I;
3037       for (; NumRegs; --NumRegs, ++I) {
3038         assert(I != E && "Ran out of registers to allocate!");
3039         Regs.push_back(*I);
3040       }
3041     }
3042     return RegsForValue(Regs, RegVT, ValueVT);
3043   }
3044   
3045   // Otherwise, if this was a reference to an LLVM register class, create vregs
3046   // for this reference.
3047   std::vector<unsigned> RegClassRegs;
3048   if (PhysReg.second) {
3049     // If this is an early clobber or tied register, our regalloc doesn't know
3050     // how to maintain the constraint.  If it isn't, go ahead and create vreg
3051     // and let the regalloc do the right thing.
3052     if (!isOutReg || !isInReg) {
3053       if (VT == MVT::Other)
3054         ValueVT = *PhysReg.second->vt_begin();
3055       RegVT = *PhysReg.second->vt_begin();
3056
3057       // Create the appropriate number of virtual registers.
3058       SSARegMap *RegMap = DAG.getMachineFunction().getSSARegMap();
3059       for (; NumRegs; --NumRegs)
3060         Regs.push_back(RegMap->createVirtualRegister(PhysReg.second));
3061       
3062       return RegsForValue(Regs, RegVT, ValueVT);
3063     }
3064     
3065     // Otherwise, we can't allocate it.  Let the code below figure out how to
3066     // maintain these constraints.
3067     RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
3068     
3069   } else {
3070     // This is a reference to a register class that doesn't directly correspond
3071     // to an LLVM register class.  Allocate NumRegs consecutive, available,
3072     // registers from the class.
3073     RegClassRegs = TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
3074   }
3075
3076   const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
3077   MachineFunction &MF = *CurMBB->getParent();
3078   unsigned NumAllocated = 0;
3079   for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
3080     unsigned Reg = RegClassRegs[i];
3081     // See if this register is available.
3082     if ((isOutReg && OutputRegs.count(Reg)) ||   // Already used.
3083         (isInReg  && InputRegs.count(Reg))) {    // Already used.
3084       // Make sure we find consecutive registers.
3085       NumAllocated = 0;
3086       continue;
3087     }
3088     
3089     // Check to see if this register is allocatable (i.e. don't give out the
3090     // stack pointer).
3091     const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
3092     if (!RC) {
3093       // Make sure we find consecutive registers.
3094       NumAllocated = 0;
3095       continue;
3096     }
3097     
3098     // Okay, this register is good, we can use it.
3099     ++NumAllocated;
3100
3101     // If we allocated enough consecutive registers, succeed.
3102     if (NumAllocated == NumRegs) {
3103       unsigned RegStart = (i-NumAllocated)+1;
3104       unsigned RegEnd   = i+1;
3105       // Mark all of the allocated registers used.
3106       for (unsigned i = RegStart; i != RegEnd; ++i) {
3107         unsigned Reg = RegClassRegs[i];
3108         Regs.push_back(Reg);
3109         if (isOutReg) OutputRegs.insert(Reg);    // Mark reg used.
3110         if (isInReg)  InputRegs.insert(Reg);     // Mark reg used.
3111       }
3112       
3113       return RegsForValue(Regs, *RC->vt_begin(), VT);
3114     }
3115   }
3116   
3117   // Otherwise, we couldn't allocate enough registers for this.
3118   return RegsForValue();
3119 }
3120
3121 /// getConstraintGenerality - Return an integer indicating how general CT is.
3122 static unsigned getConstraintGenerality(TargetLowering::ConstraintType CT) {
3123   switch (CT) {
3124   default: assert(0 && "Unknown constraint type!");
3125   case TargetLowering::C_Other:
3126   case TargetLowering::C_Unknown:
3127     return 0;
3128   case TargetLowering::C_Register:
3129     return 1;
3130   case TargetLowering::C_RegisterClass:
3131     return 2;
3132   case TargetLowering::C_Memory:
3133     return 3;
3134   }
3135 }
3136
3137 static std::string GetMostGeneralConstraint(std::vector<std::string> &C,
3138                                             const TargetLowering &TLI) {
3139   assert(!C.empty() && "Must have at least one constraint");
3140   if (C.size() == 1) return C[0];
3141     
3142   std::string *Current = &C[0];
3143   // If we have multiple constraints, try to pick the most general one ahead
3144   // of time.  This isn't a wonderful solution, but handles common cases.
3145   TargetLowering::ConstraintType Flavor = TLI.getConstraintType(Current[0]);
3146   for (unsigned j = 1, e = C.size(); j != e; ++j) {
3147     TargetLowering::ConstraintType ThisFlavor = TLI.getConstraintType(C[j]);
3148     if (getConstraintGenerality(ThisFlavor) > 
3149         getConstraintGenerality(Flavor)) {
3150       // This constraint letter is more general than the previous one,
3151       // use it.
3152       Flavor = ThisFlavor;
3153       Current = &C[j];
3154     }
3155   }
3156   return *Current;
3157 }
3158
3159
3160 /// visitInlineAsm - Handle a call to an InlineAsm object.
3161 ///
3162 void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
3163   InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
3164   
3165   SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
3166                                                  MVT::Other);
3167
3168   std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
3169   std::vector<MVT::ValueType> ConstraintVTs;
3170   
3171   /// AsmNodeOperands - A list of pairs.  The first element is a register, the
3172   /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
3173   /// if it is a def of that register.
3174   std::vector<SDOperand> AsmNodeOperands;
3175   AsmNodeOperands.push_back(SDOperand());  // reserve space for input chain
3176   AsmNodeOperands.push_back(AsmStr);
3177   
3178   SDOperand Chain = getRoot();
3179   SDOperand Flag;
3180   
3181   // We fully assign registers here at isel time.  This is not optimal, but
3182   // should work.  For register classes that correspond to LLVM classes, we
3183   // could let the LLVM RA do its thing, but we currently don't.  Do a prepass
3184   // over the constraints, collecting fixed registers that we know we can't use.
3185   std::set<unsigned> OutputRegs, InputRegs;
3186   unsigned OpNum = 1;
3187   for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
3188     std::string ConstraintCode =
3189       GetMostGeneralConstraint(Constraints[i].Codes, TLI);
3190     
3191     MVT::ValueType OpVT;
3192
3193     // Compute the value type for each operand and add it to ConstraintVTs.
3194     switch (Constraints[i].Type) {
3195     case InlineAsm::isOutput:
3196       if (!Constraints[i].isIndirectOutput) {
3197         assert(I.getType() != Type::VoidTy && "Bad inline asm!");
3198         OpVT = TLI.getValueType(I.getType());
3199       } else {
3200         const Type *OpTy = I.getOperand(OpNum)->getType();
3201         OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
3202         OpNum++;  // Consumes a call operand.
3203       }
3204       break;
3205     case InlineAsm::isInput:
3206       OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
3207       OpNum++;  // Consumes a call operand.
3208       break;
3209     case InlineAsm::isClobber:
3210       OpVT = MVT::Other;
3211       break;
3212     }
3213     
3214     ConstraintVTs.push_back(OpVT);
3215
3216     if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
3217       continue;  // Not assigned a fixed reg.
3218     
3219     // Build a list of regs that this operand uses.  This always has a single
3220     // element for promoted/expanded operands.
3221     RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
3222                                              false, false,
3223                                              OutputRegs, InputRegs);
3224     
3225     switch (Constraints[i].Type) {
3226     case InlineAsm::isOutput:
3227       // We can't assign any other output to this register.
3228       OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
3229       // If this is an early-clobber output, it cannot be assigned to the same
3230       // value as the input reg.
3231       if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
3232         InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
3233       break;
3234     case InlineAsm::isInput:
3235       // We can't assign any other input to this register.
3236       InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
3237       break;
3238     case InlineAsm::isClobber:
3239       // Clobbered regs cannot be used as inputs or outputs.
3240       InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
3241       OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
3242       break;
3243     }
3244   }      
3245   
3246   // Loop over all of the inputs, copying the operand values into the
3247   // appropriate registers and processing the output regs.
3248   RegsForValue RetValRegs;
3249   std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
3250   OpNum = 1;
3251   
3252   for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
3253     std::string ConstraintCode =
3254       GetMostGeneralConstraint(Constraints[i].Codes, TLI);
3255
3256     switch (Constraints[i].Type) {
3257     case InlineAsm::isOutput: {
3258       TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
3259       if (ConstraintCode.size() == 1)   // not a physreg name.
3260         CTy = TLI.getConstraintType(ConstraintCode);
3261       
3262       if (CTy == TargetLowering::C_Memory) {
3263         // Memory output.
3264         SDOperand InOperandVal = getValue(I.getOperand(OpNum));
3265         
3266         // Check that the operand (the address to store to) isn't a float.
3267         if (!MVT::isInteger(InOperandVal.getValueType()))
3268           assert(0 && "MATCH FAIL!");
3269         
3270         if (!Constraints[i].isIndirectOutput)
3271           assert(0 && "MATCH FAIL!");
3272
3273         OpNum++;  // Consumes a call operand.
3274         
3275         // Extend/truncate to the right pointer type if needed.
3276         MVT::ValueType PtrType = TLI.getPointerTy();
3277         if (InOperandVal.getValueType() < PtrType)
3278           InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
3279         else if (InOperandVal.getValueType() > PtrType)
3280           InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
3281         
3282         // Add information to the INLINEASM node to know about this output.
3283         unsigned ResOpType = 4/*MEM*/ | (1 << 3);
3284         AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
3285         AsmNodeOperands.push_back(InOperandVal);
3286         break;
3287       }
3288
3289       // Otherwise, this is a register output.
3290       assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
3291
3292       // If this is an early-clobber output, or if there is an input
3293       // constraint that matches this, we need to reserve the input register
3294       // so no other inputs allocate to it.
3295       bool UsesInputRegister = false;
3296       if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
3297         UsesInputRegister = true;
3298       
3299       // Copy the output from the appropriate register.  Find a register that
3300       // we can use.
3301       RegsForValue Regs =
3302         GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
3303                              true, UsesInputRegister, 
3304                              OutputRegs, InputRegs);
3305       if (Regs.Regs.empty()) {
3306         cerr << "Couldn't allocate output reg for contraint '"
3307              << ConstraintCode << "'!\n";
3308         exit(1);
3309       }
3310
3311       if (!Constraints[i].isIndirectOutput) {
3312         assert(RetValRegs.Regs.empty() &&
3313                "Cannot have multiple output constraints yet!");
3314         assert(I.getType() != Type::VoidTy && "Bad inline asm!");
3315         RetValRegs = Regs;
3316       } else {
3317         IndirectStoresToEmit.push_back(std::make_pair(Regs, 
3318                                                       I.getOperand(OpNum)));
3319         OpNum++;  // Consumes a call operand.
3320       }
3321       
3322       // Add information to the INLINEASM node to know that this register is
3323       // set.
3324       Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
3325       break;
3326     }
3327     case InlineAsm::isInput: {
3328       SDOperand InOperandVal = getValue(I.getOperand(OpNum));
3329       OpNum++;  // Consumes a call operand.
3330       
3331       if (isdigit(ConstraintCode[0])) {    // Matching constraint?
3332         // If this is required to match an output register we have already set,
3333         // just use its register.
3334         unsigned OperandNo = atoi(ConstraintCode.c_str());
3335         
3336         // Scan until we find the definition we already emitted of this operand.
3337         // When we find it, create a RegsForValue operand.
3338         unsigned CurOp = 2;  // The first operand.
3339         for (; OperandNo; --OperandNo) {
3340           // Advance to the next operand.
3341           unsigned NumOps = 
3342             cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
3343           assert(((NumOps & 7) == 2 /*REGDEF*/ ||
3344                   (NumOps & 7) == 4 /*MEM*/) &&
3345                  "Skipped past definitions?");
3346           CurOp += (NumOps>>3)+1;
3347         }
3348
3349         unsigned NumOps = 
3350           cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
3351         if ((NumOps & 7) == 2 /*REGDEF*/) {
3352           // Add NumOps>>3 registers to MatchedRegs.
3353           RegsForValue MatchedRegs;
3354           MatchedRegs.ValueVT = InOperandVal.getValueType();
3355           MatchedRegs.RegVT   = AsmNodeOperands[CurOp+1].getValueType();
3356           for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
3357             unsigned Reg =
3358               cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
3359             MatchedRegs.Regs.push_back(Reg);
3360           }
3361         
3362           // Use the produced MatchedRegs object to 
3363           MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag,
3364                                     TLI.getPointerTy());
3365           MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
3366           break;
3367         } else {
3368           assert((NumOps & 7) == 4/*MEM*/ && "Unknown matching constraint!");
3369           assert(0 && "matching constraints for memory operands unimp");
3370         }
3371       }
3372       
3373       TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
3374       if (ConstraintCode.size() == 1)   // not a physreg name.
3375         CTy = TLI.getConstraintType(ConstraintCode);
3376         
3377       if (CTy == TargetLowering::C_Other) {
3378         InOperandVal = TLI.isOperandValidForConstraint(InOperandVal,
3379                                                        ConstraintCode[0], DAG);
3380         if (!InOperandVal.Val) {
3381           cerr << "Invalid operand for inline asm constraint '"
3382                << ConstraintCode << "'!\n";
3383           exit(1);
3384         }
3385         
3386         // Add information to the INLINEASM node to know about this input.
3387         unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
3388         AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
3389         AsmNodeOperands.push_back(InOperandVal);
3390         break;
3391       } else if (CTy == TargetLowering::C_Memory) {
3392         // Memory input.
3393         
3394         // If the operand is a float, spill to a constant pool entry to get its
3395         // address.
3396         if (ConstantFP *Val = dyn_cast<ConstantFP>(I.getOperand(OpNum-1)))
3397           InOperandVal = DAG.getConstantPool(Val, TLI.getPointerTy());
3398         
3399         if (!MVT::isInteger(InOperandVal.getValueType())) {
3400           cerr << "Match failed, cannot handle this yet!\n";
3401           InOperandVal.Val->dump();
3402           exit(1);
3403         }
3404         
3405         // Extend/truncate to the right pointer type if needed.
3406         MVT::ValueType PtrType = TLI.getPointerTy();
3407         if (InOperandVal.getValueType() < PtrType)
3408           InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
3409         else if (InOperandVal.getValueType() > PtrType)
3410           InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
3411
3412         // Add information to the INLINEASM node to know about this input.
3413         unsigned ResOpType = 4/*MEM*/ | (1 << 3);
3414         AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
3415         AsmNodeOperands.push_back(InOperandVal);
3416         break;
3417       }
3418         
3419       assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
3420
3421       // Copy the input into the appropriate registers.
3422       RegsForValue InRegs =
3423         GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
3424                              false, true, OutputRegs, InputRegs);
3425       // FIXME: should be match fail.
3426       assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
3427
3428       InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag, TLI.getPointerTy());
3429       
3430       InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
3431       break;
3432     }
3433     case InlineAsm::isClobber: {
3434       RegsForValue ClobberedRegs =
3435         GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
3436                              OutputRegs, InputRegs);
3437       // Add the clobbered value to the operand list, so that the register
3438       // allocator is aware that the physreg got clobbered.
3439       if (!ClobberedRegs.Regs.empty())
3440         ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
3441       break;
3442     }
3443     }
3444   }
3445   
3446   // Finish up input operands.
3447   AsmNodeOperands[0] = Chain;
3448   if (Flag.Val) AsmNodeOperands.push_back(Flag);
3449   
3450   Chain = DAG.getNode(ISD::INLINEASM, 
3451                       DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
3452                       &AsmNodeOperands[0], AsmNodeOperands.size());
3453   Flag = Chain.getValue(1);
3454
3455   // If this asm returns a register value, copy the result from that register
3456   // and set it as the value of the call.
3457   if (!RetValRegs.Regs.empty())
3458     setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
3459   
3460   std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
3461   
3462   // Process indirect outputs, first output all of the flagged copies out of
3463   // physregs.
3464   for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
3465     RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
3466     Value *Ptr = IndirectStoresToEmit[i].second;
3467     SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
3468     StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
3469   }
3470   
3471   // Emit the non-flagged stores from the physregs.
3472   SmallVector<SDOperand, 8> OutChains;
3473   for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
3474     OutChains.push_back(DAG.getStore(Chain,  StoresToEmit[i].first,
3475                                     getValue(StoresToEmit[i].second),
3476                                     StoresToEmit[i].second, 0));
3477   if (!OutChains.empty())
3478     Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3479                         &OutChains[0], OutChains.size());
3480   DAG.setRoot(Chain);
3481 }
3482
3483
3484 void SelectionDAGLowering::visitMalloc(MallocInst &I) {
3485   SDOperand Src = getValue(I.getOperand(0));
3486
3487   MVT::ValueType IntPtr = TLI.getPointerTy();
3488
3489   if (IntPtr < Src.getValueType())
3490     Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
3491   else if (IntPtr > Src.getValueType())
3492     Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
3493
3494   // Scale the source by the type size.
3495   uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
3496   Src = DAG.getNode(ISD::MUL, Src.getValueType(),
3497                     Src, getIntPtrConstant(ElementSize));
3498
3499   TargetLowering::ArgListTy Args;
3500   TargetLowering::ArgListEntry Entry;
3501   Entry.Node = Src;
3502   Entry.Ty = TLI.getTargetData()->getIntPtrType();
3503   Args.push_back(Entry);
3504
3505   std::pair<SDOperand,SDOperand> Result =
3506     TLI.LowerCallTo(getRoot(), I.getType(), false, false, CallingConv::C, true,
3507                     DAG.getExternalSymbol("malloc", IntPtr),
3508                     Args, DAG);
3509   setValue(&I, Result.first);  // Pointers always fit in registers
3510   DAG.setRoot(Result.second);
3511 }
3512
3513 void SelectionDAGLowering::visitFree(FreeInst &I) {
3514   TargetLowering::ArgListTy Args;
3515   TargetLowering::ArgListEntry Entry;
3516   Entry.Node = getValue(I.getOperand(0));
3517   Entry.Ty = TLI.getTargetData()->getIntPtrType();
3518   Args.push_back(Entry);
3519   MVT::ValueType IntPtr = TLI.getPointerTy();
3520   std::pair<SDOperand,SDOperand> Result =
3521     TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, CallingConv::C, true,
3522                     DAG.getExternalSymbol("free", IntPtr), Args, DAG);
3523   DAG.setRoot(Result.second);
3524 }
3525
3526 // InsertAtEndOfBasicBlock - This method should be implemented by targets that
3527 // mark instructions with the 'usesCustomDAGSchedInserter' flag.  These
3528 // instructions are special in various ways, which require special support to
3529 // insert.  The specified MachineInstr is created but not inserted into any
3530 // basic blocks, and the scheduler passes ownership of it to this method.
3531 MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
3532                                                        MachineBasicBlock *MBB) {
3533   cerr << "If a target marks an instruction with "
3534        << "'usesCustomDAGSchedInserter', it must implement "
3535        << "TargetLowering::InsertAtEndOfBasicBlock!\n";
3536   abort();
3537   return 0;  
3538 }
3539
3540 void SelectionDAGLowering::visitVAStart(CallInst &I) {
3541   DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(), 
3542                           getValue(I.getOperand(1)), 
3543                           DAG.getSrcValue(I.getOperand(1))));
3544 }
3545
3546 void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
3547   SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
3548                              getValue(I.getOperand(0)),
3549                              DAG.getSrcValue(I.getOperand(0)));
3550   setValue(&I, V);
3551   DAG.setRoot(V.getValue(1));
3552 }
3553
3554 void SelectionDAGLowering::visitVAEnd(CallInst &I) {
3555   DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
3556                           getValue(I.getOperand(1)), 
3557                           DAG.getSrcValue(I.getOperand(1))));
3558 }
3559
3560 void SelectionDAGLowering::visitVACopy(CallInst &I) {
3561   DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(), 
3562                           getValue(I.getOperand(1)), 
3563                           getValue(I.getOperand(2)),
3564                           DAG.getSrcValue(I.getOperand(1)),
3565                           DAG.getSrcValue(I.getOperand(2))));
3566 }
3567
3568 /// ExpandScalarFormalArgs - Recursively expand the formal_argument node, either
3569 /// bit_convert it or join a pair of them with a BUILD_PAIR when appropriate.
3570 static SDOperand ExpandScalarFormalArgs(MVT::ValueType VT, SDNode *Arg,
3571                                         unsigned &i, SelectionDAG &DAG,
3572                                         TargetLowering &TLI) {
3573   if (TLI.getTypeAction(VT) != TargetLowering::Expand)
3574     return SDOperand(Arg, i++);
3575
3576   MVT::ValueType EVT = TLI.getTypeToTransformTo(VT);
3577   unsigned NumVals = MVT::getSizeInBits(VT) / MVT::getSizeInBits(EVT);
3578   if (NumVals == 1) {
3579     return DAG.getNode(ISD::BIT_CONVERT, VT,
3580                        ExpandScalarFormalArgs(EVT, Arg, i, DAG, TLI));
3581   } else if (NumVals == 2) {
3582     SDOperand Lo = ExpandScalarFormalArgs(EVT, Arg, i, DAG, TLI);
3583     SDOperand Hi = ExpandScalarFormalArgs(EVT, Arg, i, DAG, TLI);
3584     if (!TLI.isLittleEndian())
3585       std::swap(Lo, Hi);
3586     return DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
3587   } else {
3588     // Value scalarized into many values.  Unimp for now.
3589     assert(0 && "Cannot expand i64 -> i16 yet!");
3590   }
3591   return SDOperand();
3592 }
3593
3594 /// TargetLowering::LowerArguments - This is the default LowerArguments
3595 /// implementation, which just inserts a FORMAL_ARGUMENTS node.  FIXME: When all
3596 /// targets are migrated to using FORMAL_ARGUMENTS, this hook should be 
3597 /// integrated into SDISel.
3598 std::vector<SDOperand> 
3599 TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
3600   const FunctionType *FTy = F.getFunctionType();
3601   const ParamAttrsList *Attrs = FTy->getParamAttrs();
3602   // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
3603   std::vector<SDOperand> Ops;
3604   Ops.push_back(DAG.getRoot());
3605   Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
3606   Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
3607
3608   // Add one result value for each formal argument.
3609   std::vector<MVT::ValueType> RetVals;
3610   unsigned j = 1;
3611   for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
3612        I != E; ++I, ++j) {
3613     MVT::ValueType VT = getValueType(I->getType());
3614     unsigned Flags = ISD::ParamFlags::NoFlagSet;
3615     unsigned OriginalAlignment =
3616       getTargetData()->getABITypeAlignment(I->getType());
3617
3618     // FIXME: Distinguish between a formal with no [sz]ext attribute from one
3619     // that is zero extended!
3620     if (Attrs && Attrs->paramHasAttr(j, ZExtAttribute))
3621       Flags &= ~(ISD::ParamFlags::SExt);
3622     if (Attrs && Attrs->paramHasAttr(j, SExtAttribute))
3623       Flags |= ISD::ParamFlags::SExt;
3624     if (Attrs && Attrs->paramHasAttr(j, InRegAttribute))
3625       Flags |= ISD::ParamFlags::InReg;
3626     if (Attrs && Attrs->paramHasAttr(j, StructRetAttribute))
3627       Flags |= ISD::ParamFlags::StructReturn;
3628     Flags |= (OriginalAlignment << ISD::ParamFlags::OrigAlignmentOffs);
3629     
3630     switch (getTypeAction(VT)) {
3631     default: assert(0 && "Unknown type action!");
3632     case Legal: 
3633       RetVals.push_back(VT);
3634       Ops.push_back(DAG.getConstant(Flags, MVT::i32));
3635       break;
3636     case Promote:
3637       RetVals.push_back(getTypeToTransformTo(VT));
3638       Ops.push_back(DAG.getConstant(Flags, MVT::i32));
3639       break;
3640     case Expand:
3641       if (VT != MVT::Vector) {
3642         // If this is a large integer, it needs to be broken up into small
3643         // integers.  Figure out what the destination type is and how many small
3644         // integers it turns into.
3645         MVT::ValueType NVT = getTypeToExpandTo(VT);
3646         unsigned NumVals = getNumElements(VT);
3647         for (unsigned i = 0; i != NumVals; ++i) {
3648           RetVals.push_back(NVT);
3649           // if it isn't first piece, alignment must be 1
3650           if (i > 0)
3651             Flags = (Flags & (~ISD::ParamFlags::OrigAlignment)) |
3652               (1 << ISD::ParamFlags::OrigAlignmentOffs);
3653           Ops.push_back(DAG.getConstant(Flags, MVT::i32));
3654         }
3655       } else {
3656         // Otherwise, this is a vector type.  We only support legal vectors
3657         // right now.
3658         unsigned NumElems = cast<VectorType>(I->getType())->getNumElements();
3659         const Type *EltTy = cast<VectorType>(I->getType())->getElementType();
3660
3661         // Figure out if there is a Packed type corresponding to this Vector
3662         // type.  If so, convert to the vector type.
3663         MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
3664         if (TVT != MVT::Other && isTypeLegal(TVT)) {
3665           RetVals.push_back(TVT);
3666           Ops.push_back(DAG.getConstant(Flags, MVT::i32));
3667         } else {
3668           assert(0 && "Don't support illegal by-val vector arguments yet!");
3669         }
3670       }
3671       break;
3672     }
3673   }
3674
3675   RetVals.push_back(MVT::Other);
3676   
3677   // Create the node.
3678   SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS,
3679                                DAG.getNodeValueTypes(RetVals), RetVals.size(),
3680                                &Ops[0], Ops.size()).Val;
3681   
3682   DAG.setRoot(SDOperand(Result, Result->getNumValues()-1));
3683
3684   // Set up the return result vector.
3685   Ops.clear();
3686   unsigned i = 0;
3687   unsigned Idx = 1;
3688   for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; 
3689       ++I, ++Idx) {
3690     MVT::ValueType VT = getValueType(I->getType());
3691     
3692     switch (getTypeAction(VT)) {
3693     default: assert(0 && "Unknown type action!");
3694     case Legal: 
3695       Ops.push_back(SDOperand(Result, i++));
3696       break;
3697     case Promote: {
3698       SDOperand Op(Result, i++);
3699       if (MVT::isInteger(VT)) {
3700         if (Attrs && Attrs->paramHasAttr(Idx, SExtAttribute))
3701           Op = DAG.getNode(ISD::AssertSext, Op.getValueType(), Op,
3702                            DAG.getValueType(VT));
3703         else if (Attrs && Attrs->paramHasAttr(Idx, ZExtAttribute))
3704           Op = DAG.getNode(ISD::AssertZext, Op.getValueType(), Op,
3705                            DAG.getValueType(VT));
3706         Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
3707       } else {
3708         assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
3709         Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
3710       }
3711       Ops.push_back(Op);
3712       break;
3713     }
3714     case Expand:
3715       if (VT != MVT::Vector) {
3716         // If this is a large integer or a floating point node that needs to be
3717         // expanded, it needs to be reassembled from small integers.  Figure out
3718         // what the source elt type is and how many small integers it is.
3719         Ops.push_back(ExpandScalarFormalArgs(VT, Result, i, DAG, *this));
3720       } else {
3721         // Otherwise, this is a vector type.  We only support legal vectors
3722         // right now.
3723         const VectorType *PTy = cast<VectorType>(I->getType());
3724         unsigned NumElems = PTy->getNumElements();
3725         const Type *EltTy = PTy->getElementType();
3726
3727         // Figure out if there is a Packed type corresponding to this Vector
3728         // type.  If so, convert to the vector type.
3729         MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
3730         if (TVT != MVT::Other && isTypeLegal(TVT)) {
3731           SDOperand N = SDOperand(Result, i++);
3732           // Handle copies from generic vectors to registers.
3733           N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
3734                           DAG.getConstant(NumElems, MVT::i32), 
3735                           DAG.getValueType(getValueType(EltTy)));
3736           Ops.push_back(N);
3737         } else {
3738           assert(0 && "Don't support illegal by-val vector arguments yet!");
3739           abort();
3740         }
3741       }
3742       break;
3743     }
3744   }
3745   return Ops;
3746 }
3747
3748
3749 /// ExpandScalarCallArgs - Recursively expand call argument node by
3750 /// bit_converting it or extract a pair of elements from the larger  node.
3751 static void ExpandScalarCallArgs(MVT::ValueType VT, SDOperand Arg,
3752                                  unsigned Flags,
3753                                  SmallVector<SDOperand, 32> &Ops,
3754                                  SelectionDAG &DAG,
3755                                  TargetLowering &TLI,
3756                                  bool isFirst = true) {
3757
3758   if (TLI.getTypeAction(VT) != TargetLowering::Expand) {
3759     // if it isn't first piece, alignment must be 1
3760     if (!isFirst)
3761       Flags = (Flags & (~ISD::ParamFlags::OrigAlignment)) |
3762         (1 << ISD::ParamFlags::OrigAlignmentOffs);
3763     Ops.push_back(Arg);
3764     Ops.push_back(DAG.getConstant(Flags, MVT::i32));
3765     return;
3766   }
3767
3768   MVT::ValueType EVT = TLI.getTypeToTransformTo(VT);
3769   unsigned NumVals = MVT::getSizeInBits(VT) / MVT::getSizeInBits(EVT);
3770   if (NumVals == 1) {
3771     Arg = DAG.getNode(ISD::BIT_CONVERT, EVT, Arg);
3772     ExpandScalarCallArgs(EVT, Arg, Flags, Ops, DAG, TLI, isFirst);
3773   } else if (NumVals == 2) {
3774     SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, EVT, Arg,
3775                                DAG.getConstant(0, TLI.getPointerTy()));
3776     SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, EVT, Arg,
3777                                DAG.getConstant(1, TLI.getPointerTy()));
3778     if (!TLI.isLittleEndian())
3779       std::swap(Lo, Hi);
3780     ExpandScalarCallArgs(EVT, Lo, Flags, Ops, DAG, TLI, isFirst);
3781     ExpandScalarCallArgs(EVT, Hi, Flags, Ops, DAG, TLI, false);
3782   } else {
3783     // Value scalarized into many values.  Unimp for now.
3784     assert(0 && "Cannot expand i64 -> i16 yet!");
3785   }
3786 }
3787
3788 /// TargetLowering::LowerCallTo - This is the default LowerCallTo
3789 /// implementation, which just inserts an ISD::CALL node, which is later custom
3790 /// lowered by the target to something concrete.  FIXME: When all targets are
3791 /// migrated to using ISD::CALL, this hook should be integrated into SDISel.
3792 std::pair<SDOperand, SDOperand>
3793 TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, 
3794                             bool RetTyIsSigned, bool isVarArg,
3795                             unsigned CallingConv, bool isTailCall, 
3796                             SDOperand Callee,
3797                             ArgListTy &Args, SelectionDAG &DAG) {
3798   SmallVector<SDOperand, 32> Ops;
3799   Ops.push_back(Chain);   // Op#0 - Chain
3800   Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
3801   Ops.push_back(DAG.getConstant(isVarArg, getPointerTy()));    // Op#2 - VarArg
3802   Ops.push_back(DAG.getConstant(isTailCall, getPointerTy()));  // Op#3 - Tail
3803   Ops.push_back(Callee);
3804   
3805   // Handle all of the outgoing arguments.
3806   for (unsigned i = 0, e = Args.size(); i != e; ++i) {
3807     MVT::ValueType VT = getValueType(Args[i].Ty);
3808     SDOperand Op = Args[i].Node;
3809     unsigned Flags = ISD::ParamFlags::NoFlagSet;
3810     unsigned OriginalAlignment =
3811       getTargetData()->getABITypeAlignment(Args[i].Ty);
3812     
3813     if (Args[i].isSExt)
3814       Flags |= ISD::ParamFlags::SExt;
3815     if (Args[i].isZExt)
3816       Flags |= ISD::ParamFlags::ZExt;
3817     if (Args[i].isInReg)
3818       Flags |= ISD::ParamFlags::InReg;
3819     if (Args[i].isSRet)
3820       Flags |= ISD::ParamFlags::StructReturn;
3821     Flags |= OriginalAlignment << ISD::ParamFlags::OrigAlignmentOffs;
3822     
3823     switch (getTypeAction(VT)) {
3824     default: assert(0 && "Unknown type action!");
3825     case Legal:
3826       Ops.push_back(Op);
3827       Ops.push_back(DAG.getConstant(Flags, MVT::i32));
3828       break;
3829     case Promote:
3830       if (MVT::isInteger(VT)) {
3831         unsigned ExtOp;
3832         if (Args[i].isSExt)
3833           ExtOp = ISD::SIGN_EXTEND;
3834         else if (Args[i].isZExt)
3835           ExtOp = ISD::ZERO_EXTEND;
3836         else
3837           ExtOp = ISD::ANY_EXTEND;
3838         Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
3839       } else {
3840         assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
3841         Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
3842       }
3843       Ops.push_back(Op);
3844       Ops.push_back(DAG.getConstant(Flags, MVT::i32));
3845       break;
3846     case Expand:
3847       if (VT != MVT::Vector) {
3848         // If this is a large integer, it needs to be broken down into small
3849         // integers.  Figure out what the source elt type is and how many small
3850         // integers it is.
3851         ExpandScalarCallArgs(VT, Op, Flags, Ops, DAG, *this);
3852       } else {
3853         // Otherwise, this is a vector type.  We only support legal vectors
3854         // right now.
3855         const VectorType *PTy = cast<VectorType>(Args[i].Ty);
3856         unsigned NumElems = PTy->getNumElements();
3857         const Type *EltTy = PTy->getElementType();
3858         
3859         // Figure out if there is a Packed type corresponding to this Vector
3860         // type.  If so, convert to the vector type.
3861         MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
3862         if (TVT != MVT::Other && isTypeLegal(TVT)) {
3863           // Insert a VBIT_CONVERT of the MVT::Vector type to the vector type.
3864           Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op);
3865           Ops.push_back(Op);
3866           Ops.push_back(DAG.getConstant(Flags, MVT::i32));
3867         } else {
3868           assert(0 && "Don't support illegal by-val vector call args yet!");
3869           abort();
3870         }
3871       }
3872       break;
3873     }
3874   }
3875   
3876   // Figure out the result value types.
3877   SmallVector<MVT::ValueType, 4> RetTys;
3878
3879   if (RetTy != Type::VoidTy) {
3880     MVT::ValueType VT = getValueType(RetTy);
3881     switch (getTypeAction(VT)) {
3882     default: assert(0 && "Unknown type action!");
3883     case Legal:
3884       RetTys.push_back(VT);
3885       break;
3886     case Promote:
3887       RetTys.push_back(getTypeToTransformTo(VT));
3888       break;
3889     case Expand:
3890       if (VT != MVT::Vector) {
3891         // If this is a large integer, it needs to be reassembled from small
3892         // integers.  Figure out what the source elt type is and how many small
3893         // integers it is.
3894         MVT::ValueType NVT = getTypeToExpandTo(VT);
3895         unsigned NumVals = getNumElements(VT);
3896         for (unsigned i = 0; i != NumVals; ++i)
3897           RetTys.push_back(NVT);
3898       } else {
3899         // Otherwise, this is a vector type.  We only support legal vectors
3900         // right now.
3901         const VectorType *PTy = cast<VectorType>(RetTy);
3902         unsigned NumElems = PTy->getNumElements();
3903         const Type *EltTy = PTy->getElementType();
3904         
3905         // Figure out if there is a Packed type corresponding to this Vector
3906         // type.  If so, convert to the vector type.
3907         MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
3908         if (TVT != MVT::Other && isTypeLegal(TVT)) {
3909           RetTys.push_back(TVT);
3910         } else {
3911           assert(0 && "Don't support illegal by-val vector call results yet!");
3912           abort();
3913         }
3914       }
3915     }    
3916   }
3917   
3918   RetTys.push_back(MVT::Other);  // Always has a chain.
3919   
3920   // Finally, create the CALL node.
3921   SDOperand Res = DAG.getNode(ISD::CALL,
3922                               DAG.getVTList(&RetTys[0], RetTys.size()),
3923                               &Ops[0], Ops.size());
3924   
3925   // This returns a pair of operands.  The first element is the
3926   // return value for the function (if RetTy is not VoidTy).  The second
3927   // element is the outgoing token chain.
3928   SDOperand ResVal;
3929   if (RetTys.size() != 1) {
3930     MVT::ValueType VT = getValueType(RetTy);
3931     if (RetTys.size() == 2) {
3932       ResVal = Res;
3933       
3934       // If this value was promoted, truncate it down.
3935       if (ResVal.getValueType() != VT) {
3936         if (VT == MVT::Vector) {
3937           // Insert a VBIT_CONVERT to convert from the packed result type to the
3938           // MVT::Vector type.
3939           unsigned NumElems = cast<VectorType>(RetTy)->getNumElements();
3940           const Type *EltTy = cast<VectorType>(RetTy)->getElementType();
3941           
3942           // Figure out if there is a Packed type corresponding to this Vector
3943           // type.  If so, convert to the vector type.
3944           MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy),NumElems);
3945           if (TVT != MVT::Other && isTypeLegal(TVT)) {
3946             // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
3947             // "N x PTyElementVT" MVT::Vector type.
3948             ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal,
3949                                  DAG.getConstant(NumElems, MVT::i32), 
3950                                  DAG.getValueType(getValueType(EltTy)));
3951           } else {
3952             abort();
3953           }
3954         } else if (MVT::isInteger(VT)) {
3955           unsigned AssertOp = ISD::AssertSext;
3956           if (!RetTyIsSigned)
3957             AssertOp = ISD::AssertZext;
3958           ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal, 
3959                                DAG.getValueType(VT));
3960           ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal);
3961         } else {
3962           assert(MVT::isFloatingPoint(VT));
3963           if (getTypeAction(VT) == Expand)
3964             ResVal = DAG.getNode(ISD::BIT_CONVERT, VT, ResVal);
3965           else
3966             ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal);
3967         }
3968       }
3969     } else if (RetTys.size() == 3) {
3970       ResVal = DAG.getNode(ISD::BUILD_PAIR, VT, 
3971                            Res.getValue(0), Res.getValue(1));
3972       
3973     } else {
3974       assert(0 && "Case not handled yet!");
3975     }
3976   }
3977   
3978   return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1));
3979 }
3980
3981 SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
3982   assert(0 && "LowerOperation not implemented for this target!");
3983   abort();
3984   return SDOperand();
3985 }
3986
3987 SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
3988                                                  SelectionDAG &DAG) {
3989   assert(0 && "CustomPromoteOperation not implemented for this target!");
3990   abort();
3991   return SDOperand();
3992 }
3993
3994 /// getMemsetValue - Vectorized representation of the memset value
3995 /// operand.
3996 static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
3997                                 SelectionDAG &DAG) {
3998   MVT::ValueType CurVT = VT;
3999   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
4000     uint64_t Val   = C->getValue() & 255;
4001     unsigned Shift = 8;
4002     while (CurVT != MVT::i8) {
4003       Val = (Val << Shift) | Val;
4004       Shift <<= 1;
4005       CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
4006     }
4007     return DAG.getConstant(Val, VT);
4008   } else {
4009     Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
4010     unsigned Shift = 8;
4011     while (CurVT != MVT::i8) {
4012       Value =
4013         DAG.getNode(ISD::OR, VT,
4014                     DAG.getNode(ISD::SHL, VT, Value,
4015                                 DAG.getConstant(Shift, MVT::i8)), Value);
4016       Shift <<= 1;
4017       CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
4018     }
4019
4020     return Value;
4021   }
4022 }
4023
4024 /// getMemsetStringVal - Similar to getMemsetValue. Except this is only
4025 /// used when a memcpy is turned into a memset when the source is a constant
4026 /// string ptr.
4027 static SDOperand getMemsetStringVal(MVT::ValueType VT,
4028                                     SelectionDAG &DAG, TargetLowering &TLI,
4029                                     std::string &Str, unsigned Offset) {
4030   uint64_t Val = 0;
4031   unsigned MSB = getSizeInBits(VT) / 8;
4032   if (TLI.isLittleEndian())
4033     Offset = Offset + MSB - 1;
4034   for (unsigned i = 0; i != MSB; ++i) {
4035     Val = (Val << 8) | (unsigned char)Str[Offset];
4036     Offset += TLI.isLittleEndian() ? -1 : 1;
4037   }
4038   return DAG.getConstant(Val, VT);
4039 }
4040
4041 /// getMemBasePlusOffset - Returns base and offset node for the 
4042 static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
4043                                       SelectionDAG &DAG, TargetLowering &TLI) {
4044   MVT::ValueType VT = Base.getValueType();
4045   return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
4046 }
4047
4048 /// MeetsMaxMemopRequirement - Determines if the number of memory ops required
4049 /// to replace the memset / memcpy is below the threshold. It also returns the
4050 /// types of the sequence of  memory ops to perform memset / memcpy.
4051 static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
4052                                      unsigned Limit, uint64_t Size,
4053                                      unsigned Align, TargetLowering &TLI) {
4054   MVT::ValueType VT;
4055
4056   if (TLI.allowsUnalignedMemoryAccesses()) {
4057     VT = MVT::i64;
4058   } else {
4059     switch (Align & 7) {
4060     case 0:
4061       VT = MVT::i64;
4062       break;
4063     case 4:
4064       VT = MVT::i32;
4065       break;
4066     case 2:
4067       VT = MVT::i16;
4068       break;
4069     default:
4070       VT = MVT::i8;
4071       break;
4072     }
4073   }
4074
4075   MVT::ValueType LVT = MVT::i64;
4076   while (!TLI.isTypeLegal(LVT))
4077     LVT = (MVT::ValueType)((unsigned)LVT - 1);
4078   assert(MVT::isInteger(LVT));
4079
4080   if (VT > LVT)
4081     VT = LVT;
4082
4083   unsigned NumMemOps = 0;
4084   while (Size != 0) {
4085     unsigned VTSize = getSizeInBits(VT) / 8;
4086     while (VTSize > Size) {
4087       VT = (MVT::ValueType)((unsigned)VT - 1);
4088       VTSize >>= 1;
4089     }
4090     assert(MVT::isInteger(VT));
4091
4092     if (++NumMemOps > Limit)
4093       return false;
4094     MemOps.push_back(VT);
4095     Size -= VTSize;
4096   }
4097
4098   return true;
4099 }
4100
4101 void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
4102   SDOperand Op1 = getValue(I.getOperand(1));
4103   SDOperand Op2 = getValue(I.getOperand(2));
4104   SDOperand Op3 = getValue(I.getOperand(3));
4105   SDOperand Op4 = getValue(I.getOperand(4));
4106   unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
4107   if (Align == 0) Align = 1;
4108
4109   if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
4110     std::vector<MVT::ValueType> MemOps;
4111
4112     // Expand memset / memcpy to a series of load / store ops
4113     // if the size operand falls below a certain threshold.
4114     SmallVector<SDOperand, 8> OutChains;
4115     switch (Op) {
4116     default: break;  // Do nothing for now.
4117     case ISD::MEMSET: {
4118       if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
4119                                    Size->getValue(), Align, TLI)) {
4120         unsigned NumMemOps = MemOps.size();
4121         unsigned Offset = 0;
4122         for (unsigned i = 0; i < NumMemOps; i++) {
4123           MVT::ValueType VT = MemOps[i];
4124           unsigned VTSize = getSizeInBits(VT) / 8;
4125           SDOperand Value = getMemsetValue(Op2, VT, DAG);
4126           SDOperand Store = DAG.getStore(getRoot(), Value,
4127                                     getMemBasePlusOffset(Op1, Offset, DAG, TLI),
4128                                          I.getOperand(1), Offset);
4129           OutChains.push_back(Store);
4130           Offset += VTSize;
4131         }
4132       }
4133       break;
4134     }
4135     case ISD::MEMCPY: {
4136       if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
4137                                    Size->getValue(), Align, TLI)) {
4138         unsigned NumMemOps = MemOps.size();
4139         unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
4140         GlobalAddressSDNode *G = NULL;
4141         std::string Str;
4142         bool CopyFromStr = false;
4143
4144         if (Op2.getOpcode() == ISD::GlobalAddress)
4145           G = cast<GlobalAddressSDNode>(Op2);
4146         else if (Op2.getOpcode() == ISD::ADD &&
4147                  Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
4148                  Op2.getOperand(1).getOpcode() == ISD::Constant) {
4149           G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
4150           SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
4151         }
4152         if (G) {
4153           GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
4154           if (GV && GV->isConstant()) {
4155             Str = GV->getStringValue(false);
4156             if (!Str.empty()) {
4157               CopyFromStr = true;
4158               SrcOff += SrcDelta;
4159             }
4160           }
4161         }
4162
4163         for (unsigned i = 0; i < NumMemOps; i++) {
4164           MVT::ValueType VT = MemOps[i];
4165           unsigned VTSize = getSizeInBits(VT) / 8;
4166           SDOperand Value, Chain, Store;
4167
4168           if (CopyFromStr) {
4169             Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
4170             Chain = getRoot();
4171             Store =
4172               DAG.getStore(Chain, Value,
4173                            getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
4174                            I.getOperand(1), DstOff);
4175           } else {
4176             Value = DAG.getLoad(VT, getRoot(),
4177                         getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
4178                         I.getOperand(2), SrcOff);
4179             Chain = Value.getValue(1);
4180             Store =
4181               DAG.getStore(Chain, Value,
4182                            getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
4183                            I.getOperand(1), DstOff);
4184           }
4185           OutChains.push_back(Store);
4186           SrcOff += VTSize;
4187           DstOff += VTSize;
4188         }
4189       }
4190       break;
4191     }
4192     }
4193
4194     if (!OutChains.empty()) {
4195       DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
4196                   &OutChains[0], OutChains.size()));
4197       return;
4198     }
4199   }
4200
4201   DAG.setRoot(DAG.getNode(Op, MVT::Other, getRoot(), Op1, Op2, Op3, Op4));
4202 }
4203
4204 //===----------------------------------------------------------------------===//
4205 // SelectionDAGISel code
4206 //===----------------------------------------------------------------------===//
4207
4208 unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
4209   return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
4210 }
4211
4212 void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
4213   AU.addRequired<AliasAnalysis>();
4214   AU.setPreservesAll();
4215 }
4216
4217
4218
4219 bool SelectionDAGISel::runOnFunction(Function &Fn) {
4220   MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
4221   RegMap = MF.getSSARegMap();
4222   DOUT << "\n\n\n=== " << Fn.getName() << "\n";
4223
4224   FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
4225
4226   for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
4227     SelectBasicBlock(I, MF, FuncInfo);
4228
4229   // Add function live-ins to entry block live-in set.
4230   BasicBlock *EntryBB = &Fn.getEntryBlock();
4231   BB = FuncInfo.MBBMap[EntryBB];
4232   if (!MF.livein_empty())
4233     for (MachineFunction::livein_iterator I = MF.livein_begin(),
4234            E = MF.livein_end(); I != E; ++I)
4235       BB->addLiveIn(I->first);
4236
4237   return true;
4238 }
4239
4240 SDOperand SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, 
4241                                                            unsigned Reg) {
4242   SDOperand Op = getValue(V);
4243   assert((Op.getOpcode() != ISD::CopyFromReg ||
4244           cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
4245          "Copy from a reg to the same reg!");
4246   
4247   // If this type is not legal, we must make sure to not create an invalid
4248   // register use.
4249   MVT::ValueType SrcVT = Op.getValueType();
4250   MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
4251   if (SrcVT == DestVT) {
4252     return DAG.getCopyToReg(getRoot(), Reg, Op);
4253   } else if (SrcVT == MVT::Vector) {
4254     // Handle copies from generic vectors to registers.
4255     MVT::ValueType PTyElementVT, PTyLegalElementVT;
4256     unsigned NE = TLI.getVectorTypeBreakdown(cast<VectorType>(V->getType()),
4257                                              PTyElementVT, PTyLegalElementVT);
4258     
4259     // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT" 
4260     // MVT::Vector type.
4261     Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
4262                      DAG.getConstant(NE, MVT::i32), 
4263                      DAG.getValueType(PTyElementVT));
4264
4265     // Loop over all of the elements of the resultant vector,
4266     // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
4267     // copying them into output registers.
4268     SmallVector<SDOperand, 8> OutChains;
4269     SDOperand Root = getRoot();
4270     for (unsigned i = 0; i != NE; ++i) {
4271       SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
4272                                   Op, DAG.getConstant(i, TLI.getPointerTy()));
4273       if (PTyElementVT == PTyLegalElementVT) {
4274         // Elements are legal.
4275         OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
4276       } else if (PTyLegalElementVT > PTyElementVT) {
4277         // Elements are promoted.
4278         if (MVT::isFloatingPoint(PTyLegalElementVT))
4279           Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
4280         else
4281           Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
4282         OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
4283       } else {
4284         // Elements are expanded.
4285         // The src value is expanded into multiple registers.
4286         SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
4287                                    Elt, DAG.getConstant(0, TLI.getPointerTy()));
4288         SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
4289                                    Elt, DAG.getConstant(1, TLI.getPointerTy()));
4290         OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
4291         OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
4292       }
4293     }
4294     return DAG.getNode(ISD::TokenFactor, MVT::Other,
4295                        &OutChains[0], OutChains.size());
4296   } else if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote) {
4297     // The src value is promoted to the register.
4298     if (MVT::isFloatingPoint(SrcVT))
4299       Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
4300     else
4301       Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
4302     return DAG.getCopyToReg(getRoot(), Reg, Op);
4303   } else  {
4304     DestVT = TLI.getTypeToExpandTo(SrcVT);
4305     unsigned NumVals = TLI.getNumElements(SrcVT);
4306     if (NumVals == 1)
4307       return DAG.getCopyToReg(getRoot(), Reg,
4308                               DAG.getNode(ISD::BIT_CONVERT, DestVT, Op));
4309     assert(NumVals == 2 && "1 to 4 (and more) expansion not implemented!");
4310     // The src value is expanded into multiple registers.
4311     SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
4312                                Op, DAG.getConstant(0, TLI.getPointerTy()));
4313     SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
4314                                Op, DAG.getConstant(1, TLI.getPointerTy()));
4315     Op = DAG.getCopyToReg(getRoot(), Reg, Lo);
4316     return DAG.getCopyToReg(Op, Reg+1, Hi);
4317   }
4318 }
4319
4320 void SelectionDAGISel::
4321 LowerArguments(BasicBlock *LLVMBB, SelectionDAGLowering &SDL,
4322                std::vector<SDOperand> &UnorderedChains) {
4323   // If this is the entry block, emit arguments.
4324   Function &F = *LLVMBB->getParent();
4325   FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
4326   SDOperand OldRoot = SDL.DAG.getRoot();
4327   std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
4328
4329   unsigned a = 0;
4330   for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
4331        AI != E; ++AI, ++a)
4332     if (!AI->use_empty()) {
4333       SDL.setValue(AI, Args[a]);
4334
4335       // If this argument is live outside of the entry block, insert a copy from
4336       // whereever we got it to the vreg that other BB's will reference it as.
4337       DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo.ValueMap.find(AI);
4338       if (VMI != FuncInfo.ValueMap.end()) {
4339         SDOperand Copy = SDL.CopyValueToVirtualRegister(AI, VMI->second);
4340         UnorderedChains.push_back(Copy);
4341       }
4342     }
4343
4344   // Finally, if the target has anything special to do, allow it to do so.
4345   // FIXME: this should insert code into the DAG!
4346   EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
4347 }
4348
4349 void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
4350        std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
4351                                          FunctionLoweringInfo &FuncInfo) {
4352   SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
4353
4354   std::vector<SDOperand> UnorderedChains;
4355
4356   // Lower any arguments needed in this block if this is the entry block.
4357   if (LLVMBB == &LLVMBB->getParent()->getEntryBlock())
4358     LowerArguments(LLVMBB, SDL, UnorderedChains);
4359
4360   BB = FuncInfo.MBBMap[LLVMBB];
4361   SDL.setCurrentBasicBlock(BB);
4362
4363   // Lower all of the non-terminator instructions.
4364   for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
4365        I != E; ++I)
4366     SDL.visit(*I);
4367     
4368   // Lower call part of invoke.
4369   InvokeInst *Invoke = dyn_cast<InvokeInst>(LLVMBB->getTerminator());
4370   if (Invoke) SDL.visitInvoke(*Invoke, false);
4371   
4372   // Ensure that all instructions which are used outside of their defining
4373   // blocks are available as virtual registers.
4374   for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
4375     if (!I->use_empty() && !isa<PHINode>(I)) {
4376       DenseMap<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
4377       if (VMI != FuncInfo.ValueMap.end())
4378         UnorderedChains.push_back(
4379                                 SDL.CopyValueToVirtualRegister(I, VMI->second));
4380     }
4381
4382   // Handle PHI nodes in successor blocks.  Emit code into the SelectionDAG to
4383   // ensure constants are generated when needed.  Remember the virtual registers
4384   // that need to be added to the Machine PHI nodes as input.  We cannot just
4385   // directly add them, because expansion might result in multiple MBB's for one
4386   // BB.  As such, the start of the BB might correspond to a different MBB than
4387   // the end.
4388   //
4389   TerminatorInst *TI = LLVMBB->getTerminator();
4390
4391   // Emit constants only once even if used by multiple PHI nodes.
4392   std::map<Constant*, unsigned> ConstantsOut;
4393   
4394   // Vector bool would be better, but vector<bool> is really slow.
4395   std::vector<unsigned char> SuccsHandled;
4396   if (TI->getNumSuccessors())
4397     SuccsHandled.resize(BB->getParent()->getNumBlockIDs());
4398     
4399   // Check successor nodes PHI nodes that expect a constant to be available from
4400   // this block.
4401   for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
4402     BasicBlock *SuccBB = TI->getSuccessor(succ);
4403     if (!isa<PHINode>(SuccBB->begin())) continue;
4404     MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
4405     
4406     // If this terminator has multiple identical successors (common for
4407     // switches), only handle each succ once.
4408     unsigned SuccMBBNo = SuccMBB->getNumber();
4409     if (SuccsHandled[SuccMBBNo]) continue;
4410     SuccsHandled[SuccMBBNo] = true;
4411     
4412     MachineBasicBlock::iterator MBBI = SuccMBB->begin();
4413     PHINode *PN;
4414
4415     // At this point we know that there is a 1-1 correspondence between LLVM PHI
4416     // nodes and Machine PHI nodes, but the incoming operands have not been
4417     // emitted yet.
4418     for (BasicBlock::iterator I = SuccBB->begin();
4419          (PN = dyn_cast<PHINode>(I)); ++I) {
4420       // Ignore dead phi's.
4421       if (PN->use_empty()) continue;
4422       
4423       unsigned Reg;
4424       Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
4425       
4426       if (Constant *C = dyn_cast<Constant>(PHIOp)) {
4427         unsigned &RegOut = ConstantsOut[C];
4428         if (RegOut == 0) {
4429           RegOut = FuncInfo.CreateRegForValue(C);
4430           UnorderedChains.push_back(
4431                            SDL.CopyValueToVirtualRegister(C, RegOut));
4432         }
4433         Reg = RegOut;
4434       } else {
4435         Reg = FuncInfo.ValueMap[PHIOp];
4436         if (Reg == 0) {
4437           assert(isa<AllocaInst>(PHIOp) &&
4438                  FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
4439                  "Didn't codegen value into a register!??");
4440           Reg = FuncInfo.CreateRegForValue(PHIOp);
4441           UnorderedChains.push_back(
4442                            SDL.CopyValueToVirtualRegister(PHIOp, Reg));
4443         }
4444       }
4445
4446       // Remember that this register needs to added to the machine PHI node as
4447       // the input for this MBB.
4448       MVT::ValueType VT = TLI.getValueType(PN->getType());
4449       unsigned NumElements;
4450       if (VT != MVT::Vector)
4451         NumElements = TLI.getNumElements(VT);
4452       else {
4453         MVT::ValueType VT1,VT2;
4454         NumElements = 
4455           TLI.getVectorTypeBreakdown(cast<VectorType>(PN->getType()),
4456                                      VT1, VT2);
4457       }
4458       for (unsigned i = 0, e = NumElements; i != e; ++i)
4459         PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
4460     }
4461   }
4462   ConstantsOut.clear();
4463
4464   // Turn all of the unordered chains into one factored node.
4465   if (!UnorderedChains.empty()) {
4466     SDOperand Root = SDL.getRoot();
4467     if (Root.getOpcode() != ISD::EntryToken) {
4468       unsigned i = 0, e = UnorderedChains.size();
4469       for (; i != e; ++i) {
4470         assert(UnorderedChains[i].Val->getNumOperands() > 1);
4471         if (UnorderedChains[i].Val->getOperand(0) == Root)
4472           break;  // Don't add the root if we already indirectly depend on it.
4473       }
4474         
4475       if (i == e)
4476         UnorderedChains.push_back(Root);
4477     }
4478     DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
4479                             &UnorderedChains[0], UnorderedChains.size()));
4480   }
4481
4482   // Lower the terminator after the copies are emitted.
4483   if (Invoke) {
4484     // Just the branch part of invoke.
4485     SDL.visitInvoke(*Invoke, true);
4486   } else {
4487     SDL.visit(*LLVMBB->getTerminator());
4488   }
4489
4490   // Copy over any CaseBlock records that may now exist due to SwitchInst
4491   // lowering, as well as any jump table information.
4492   SwitchCases.clear();
4493   SwitchCases = SDL.SwitchCases;
4494   JTCases.clear();
4495   JTCases = SDL.JTCases;
4496   BitTestCases.clear();
4497   BitTestCases = SDL.BitTestCases;
4498     
4499   // Make sure the root of the DAG is up-to-date.
4500   DAG.setRoot(SDL.getRoot());
4501 }
4502
4503 void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
4504   // Get alias analysis for load/store combining.
4505   AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
4506
4507   // Run the DAG combiner in pre-legalize mode.
4508   DAG.Combine(false, AA);
4509   
4510   DOUT << "Lowered selection DAG:\n";
4511   DEBUG(DAG.dump());
4512   
4513   // Second step, hack on the DAG until it only uses operations and types that
4514   // the target supports.
4515   DAG.Legalize();
4516   
4517   DOUT << "Legalized selection DAG:\n";
4518   DEBUG(DAG.dump());
4519   
4520   // Run the DAG combiner in post-legalize mode.
4521   DAG.Combine(true, AA);
4522   
4523   if (ViewISelDAGs) DAG.viewGraph();
4524
4525   // Third, instruction select all of the operations to machine code, adding the
4526   // code to the MachineBasicBlock.
4527   InstructionSelectBasicBlock(DAG);
4528   
4529   DOUT << "Selected machine code:\n";
4530   DEBUG(BB->dump());
4531 }  
4532
4533 void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
4534                                         FunctionLoweringInfo &FuncInfo) {
4535   std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
4536   {
4537     SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4538     CurDAG = &DAG;
4539   
4540     // First step, lower LLVM code to some DAG.  This DAG may use operations and
4541     // types that are not supported by the target.
4542     BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
4543
4544     // Second step, emit the lowered DAG as machine code.
4545     CodeGenAndEmitDAG(DAG);
4546   }
4547
4548   DOUT << "Total amount of phi nodes to update: "
4549        << PHINodesToUpdate.size() << "\n";
4550   DEBUG(for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i)
4551           DOUT << "Node " << i << " : (" << PHINodesToUpdate[i].first
4552                << ", " << PHINodesToUpdate[i].second << ")\n";);
4553   
4554   // Next, now that we know what the last MBB the LLVM BB expanded is, update
4555   // PHI nodes in successors.
4556   if (SwitchCases.empty() && JTCases.empty() && BitTestCases.empty()) {
4557     for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
4558       MachineInstr *PHI = PHINodesToUpdate[i].first;
4559       assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
4560              "This is not a machine PHI node that we are updating!");
4561       PHI->addRegOperand(PHINodesToUpdate[i].second, false);
4562       PHI->addMachineBasicBlockOperand(BB);
4563     }
4564     return;
4565   }
4566
4567   for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) {
4568     // Lower header first, if it wasn't already lowered
4569     if (!BitTestCases[i].Emitted) {
4570       SelectionDAG HSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4571       CurDAG = &HSDAG;
4572       SelectionDAGLowering HSDL(HSDAG, TLI, FuncInfo);    
4573       // Set the current basic block to the mbb we wish to insert the code into
4574       BB = BitTestCases[i].Parent;
4575       HSDL.setCurrentBasicBlock(BB);
4576       // Emit the code
4577       HSDL.visitBitTestHeader(BitTestCases[i]);
4578       HSDAG.setRoot(HSDL.getRoot());
4579       CodeGenAndEmitDAG(HSDAG);
4580     }    
4581
4582     for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
4583       SelectionDAG BSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4584       CurDAG = &BSDAG;
4585       SelectionDAGLowering BSDL(BSDAG, TLI, FuncInfo);
4586       // Set the current basic block to the mbb we wish to insert the code into
4587       BB = BitTestCases[i].Cases[j].ThisBB;
4588       BSDL.setCurrentBasicBlock(BB);
4589       // Emit the code
4590       if (j+1 != ej)
4591         BSDL.visitBitTestCase(BitTestCases[i].Cases[j+1].ThisBB,
4592                               BitTestCases[i].Reg,
4593                               BitTestCases[i].Cases[j]);
4594       else
4595         BSDL.visitBitTestCase(BitTestCases[i].Default,
4596                               BitTestCases[i].Reg,
4597                               BitTestCases[i].Cases[j]);
4598         
4599         
4600       BSDAG.setRoot(BSDL.getRoot());
4601       CodeGenAndEmitDAG(BSDAG);
4602     }
4603
4604     // Update PHI Nodes
4605     for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
4606       MachineInstr *PHI = PHINodesToUpdate[pi].first;
4607       MachineBasicBlock *PHIBB = PHI->getParent();
4608       assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
4609              "This is not a machine PHI node that we are updating!");
4610       // This is "default" BB. We have two jumps to it. From "header" BB and
4611       // from last "case" BB.
4612       if (PHIBB == BitTestCases[i].Default) {
4613         PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
4614         PHI->addMachineBasicBlockOperand(BitTestCases[i].Parent);
4615         PHI->addMachineBasicBlockOperand(BitTestCases[i].Cases.back().ThisBB);
4616       }
4617       // One of "cases" BB.
4618       for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
4619         MachineBasicBlock* cBB = BitTestCases[i].Cases[j].ThisBB;
4620         if (cBB->succ_end() !=
4621             std::find(cBB->succ_begin(),cBB->succ_end(), PHIBB)) {
4622           PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
4623           PHI->addMachineBasicBlockOperand(cBB);
4624         }
4625       }
4626     }
4627   }
4628
4629   // If the JumpTable record is filled in, then we need to emit a jump table.
4630   // Updating the PHI nodes is tricky in this case, since we need to determine
4631   // whether the PHI is a successor of the range check MBB or the jump table MBB
4632   for (unsigned i = 0, e = JTCases.size(); i != e; ++i) {
4633     // Lower header first, if it wasn't already lowered
4634     if (!JTCases[i].first.Emitted) {
4635       SelectionDAG HSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4636       CurDAG = &HSDAG;
4637       SelectionDAGLowering HSDL(HSDAG, TLI, FuncInfo);    
4638       // Set the current basic block to the mbb we wish to insert the code into
4639       BB = JTCases[i].first.HeaderBB;
4640       HSDL.setCurrentBasicBlock(BB);
4641       // Emit the code
4642       HSDL.visitJumpTableHeader(JTCases[i].second, JTCases[i].first);
4643       HSDAG.setRoot(HSDL.getRoot());
4644       CodeGenAndEmitDAG(HSDAG);
4645     }
4646     
4647     SelectionDAG JSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4648     CurDAG = &JSDAG;
4649     SelectionDAGLowering JSDL(JSDAG, TLI, FuncInfo);
4650     // Set the current basic block to the mbb we wish to insert the code into
4651     BB = JTCases[i].second.MBB;
4652     JSDL.setCurrentBasicBlock(BB);
4653     // Emit the code
4654     JSDL.visitJumpTable(JTCases[i].second);
4655     JSDAG.setRoot(JSDL.getRoot());
4656     CodeGenAndEmitDAG(JSDAG);
4657     
4658     // Update PHI Nodes
4659     for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
4660       MachineInstr *PHI = PHINodesToUpdate[pi].first;
4661       MachineBasicBlock *PHIBB = PHI->getParent();
4662       assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
4663              "This is not a machine PHI node that we are updating!");
4664       // "default" BB. We can go there only from header BB.
4665       if (PHIBB == JTCases[i].second.Default) {
4666         PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
4667         PHI->addMachineBasicBlockOperand(JTCases[i].first.HeaderBB);
4668       }
4669       // JT BB. Just iterate over successors here
4670       if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
4671         PHI->addRegOperand(PHINodesToUpdate[pi].second, false);
4672         PHI->addMachineBasicBlockOperand(BB);
4673       }
4674     }
4675   }
4676   
4677   // If the switch block involved a branch to one of the actual successors, we
4678   // need to update PHI nodes in that block.
4679   for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
4680     MachineInstr *PHI = PHINodesToUpdate[i].first;
4681     assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
4682            "This is not a machine PHI node that we are updating!");
4683     if (BB->isSuccessor(PHI->getParent())) {
4684       PHI->addRegOperand(PHINodesToUpdate[i].second, false);
4685       PHI->addMachineBasicBlockOperand(BB);
4686     }
4687   }
4688   
4689   // If we generated any switch lowering information, build and codegen any
4690   // additional DAGs necessary.
4691   for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
4692     SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
4693     CurDAG = &SDAG;
4694     SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
4695     
4696     // Set the current basic block to the mbb we wish to insert the code into
4697     BB = SwitchCases[i].ThisBB;
4698     SDL.setCurrentBasicBlock(BB);
4699     
4700     // Emit the code
4701     SDL.visitSwitchCase(SwitchCases[i]);
4702     SDAG.setRoot(SDL.getRoot());
4703     CodeGenAndEmitDAG(SDAG);
4704     
4705     // Handle any PHI nodes in successors of this chunk, as if we were coming
4706     // from the original BB before switch expansion.  Note that PHI nodes can
4707     // occur multiple times in PHINodesToUpdate.  We have to be very careful to
4708     // handle them the right number of times.
4709     while ((BB = SwitchCases[i].TrueBB)) {  // Handle LHS and RHS.
4710       for (MachineBasicBlock::iterator Phi = BB->begin();
4711            Phi != BB->end() && Phi->getOpcode() == TargetInstrInfo::PHI; ++Phi){
4712         // This value for this PHI node is recorded in PHINodesToUpdate, get it.
4713         for (unsigned pn = 0; ; ++pn) {
4714           assert(pn != PHINodesToUpdate.size() && "Didn't find PHI entry!");
4715           if (PHINodesToUpdate[pn].first == Phi) {
4716             Phi->addRegOperand(PHINodesToUpdate[pn].second, false);
4717             Phi->addMachineBasicBlockOperand(SwitchCases[i].ThisBB);
4718             break;
4719           }
4720         }
4721       }
4722       
4723       // Don't process RHS if same block as LHS.
4724       if (BB == SwitchCases[i].FalseBB)
4725         SwitchCases[i].FalseBB = 0;
4726       
4727       // If we haven't handled the RHS, do so now.  Otherwise, we're done.
4728       SwitchCases[i].TrueBB = SwitchCases[i].FalseBB;
4729       SwitchCases[i].FalseBB = 0;
4730     }
4731     assert(SwitchCases[i].TrueBB == 0 && SwitchCases[i].FalseBB == 0);
4732   }
4733 }
4734
4735
4736 //===----------------------------------------------------------------------===//
4737 /// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
4738 /// target node in the graph.
4739 void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
4740   if (ViewSchedDAGs) DAG.viewGraph();
4741
4742   RegisterScheduler::FunctionPassCtor Ctor = RegisterScheduler::getDefault();
4743   
4744   if (!Ctor) {
4745     Ctor = ISHeuristic;
4746     RegisterScheduler::setDefault(Ctor);
4747   }
4748   
4749   ScheduleDAG *SL = Ctor(this, &DAG, BB);
4750   BB = SL->Run();
4751   delete SL;
4752 }
4753
4754
4755 HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
4756   return new HazardRecognizer();
4757 }
4758
4759 //===----------------------------------------------------------------------===//
4760 // Helper functions used by the generated instruction selector.
4761 //===----------------------------------------------------------------------===//
4762 // Calls to these methods are generated by tblgen.
4763
4764 /// CheckAndMask - The isel is trying to match something like (and X, 255).  If
4765 /// the dag combiner simplified the 255, we still want to match.  RHS is the
4766 /// actual value in the DAG on the RHS of an AND, and DesiredMaskS is the value
4767 /// specified in the .td file (e.g. 255).
4768 bool SelectionDAGISel::CheckAndMask(SDOperand LHS, ConstantSDNode *RHS, 
4769                                     int64_t DesiredMaskS) {
4770   uint64_t ActualMask = RHS->getValue();
4771   uint64_t DesiredMask =DesiredMaskS & MVT::getIntVTBitMask(LHS.getValueType());
4772   
4773   // If the actual mask exactly matches, success!
4774   if (ActualMask == DesiredMask)
4775     return true;
4776   
4777   // If the actual AND mask is allowing unallowed bits, this doesn't match.
4778   if (ActualMask & ~DesiredMask)
4779     return false;
4780   
4781   // Otherwise, the DAG Combiner may have proven that the value coming in is
4782   // either already zero or is not demanded.  Check for known zero input bits.
4783   uint64_t NeededMask = DesiredMask & ~ActualMask;
4784   if (getTargetLowering().MaskedValueIsZero(LHS, NeededMask))
4785     return true;
4786   
4787   // TODO: check to see if missing bits are just not demanded.
4788
4789   // Otherwise, this pattern doesn't match.
4790   return false;
4791 }
4792
4793 /// CheckOrMask - The isel is trying to match something like (or X, 255).  If
4794 /// the dag combiner simplified the 255, we still want to match.  RHS is the
4795 /// actual value in the DAG on the RHS of an OR, and DesiredMaskS is the value
4796 /// specified in the .td file (e.g. 255).
4797 bool SelectionDAGISel::CheckOrMask(SDOperand LHS, ConstantSDNode *RHS, 
4798                                     int64_t DesiredMaskS) {
4799   uint64_t ActualMask = RHS->getValue();
4800   uint64_t DesiredMask =DesiredMaskS & MVT::getIntVTBitMask(LHS.getValueType());
4801   
4802   // If the actual mask exactly matches, success!
4803   if (ActualMask == DesiredMask)
4804     return true;
4805   
4806   // If the actual AND mask is allowing unallowed bits, this doesn't match.
4807   if (ActualMask & ~DesiredMask)
4808     return false;
4809   
4810   // Otherwise, the DAG Combiner may have proven that the value coming in is
4811   // either already zero or is not demanded.  Check for known zero input bits.
4812   uint64_t NeededMask = DesiredMask & ~ActualMask;
4813   
4814   uint64_t KnownZero, KnownOne;
4815   getTargetLowering().ComputeMaskedBits(LHS, NeededMask, KnownZero, KnownOne);
4816   
4817   // If all the missing bits in the or are already known to be set, match!
4818   if ((NeededMask & KnownOne) == NeededMask)
4819     return true;
4820   
4821   // TODO: check to see if missing bits are just not demanded.
4822   
4823   // Otherwise, this pattern doesn't match.
4824   return false;
4825 }
4826
4827
4828 /// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
4829 /// by tblgen.  Others should not call it.
4830 void SelectionDAGISel::
4831 SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
4832   std::vector<SDOperand> InOps;
4833   std::swap(InOps, Ops);
4834
4835   Ops.push_back(InOps[0]);  // input chain.
4836   Ops.push_back(InOps[1]);  // input asm string.
4837
4838   unsigned i = 2, e = InOps.size();
4839   if (InOps[e-1].getValueType() == MVT::Flag)
4840     --e;  // Don't process a flag operand if it is here.
4841   
4842   while (i != e) {
4843     unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
4844     if ((Flags & 7) != 4 /*MEM*/) {
4845       // Just skip over this operand, copying the operands verbatim.
4846       Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
4847       i += (Flags >> 3) + 1;
4848     } else {
4849       assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
4850       // Otherwise, this is a memory operand.  Ask the target to select it.
4851       std::vector<SDOperand> SelOps;
4852       if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
4853         cerr << "Could not match memory address.  Inline asm failure!\n";
4854         exit(1);
4855       }
4856       
4857       // Add this to the output node.
4858       MVT::ValueType IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
4859       Ops.push_back(DAG.getTargetConstant(4/*MEM*/ | (SelOps.size() << 3),
4860                                           IntPtrTy));
4861       Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
4862       i += 2;
4863     }
4864   }
4865   
4866   // Add the flag input back if present.
4867   if (e != InOps.size())
4868     Ops.push_back(InOps.back());
4869 }