Incorrect SETCC CondCode used for FP comparisons.
[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/CodeGen/SelectionDAGISel.h"
16 #include "llvm/CodeGen/ScheduleDAG.h"
17 #include "llvm/CallingConv.h"
18 #include "llvm/Constants.h"
19 #include "llvm/DerivedTypes.h"
20 #include "llvm/Function.h"
21 #include "llvm/GlobalVariable.h"
22 #include "llvm/InlineAsm.h"
23 #include "llvm/Instructions.h"
24 #include "llvm/Intrinsics.h"
25 #include "llvm/IntrinsicInst.h"
26 #include "llvm/CodeGen/IntrinsicLowering.h"
27 #include "llvm/CodeGen/MachineDebugInfo.h"
28 #include "llvm/CodeGen/MachineFunction.h"
29 #include "llvm/CodeGen/MachineFrameInfo.h"
30 #include "llvm/CodeGen/MachineJumpTableInfo.h"
31 #include "llvm/CodeGen/MachineInstrBuilder.h"
32 #include "llvm/CodeGen/SelectionDAG.h"
33 #include "llvm/CodeGen/SSARegMap.h"
34 #include "llvm/Target/MRegisterInfo.h"
35 #include "llvm/Target/TargetData.h"
36 #include "llvm/Target/TargetFrameInfo.h"
37 #include "llvm/Target/TargetInstrInfo.h"
38 #include "llvm/Target/TargetLowering.h"
39 #include "llvm/Target/TargetMachine.h"
40 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
41 #include "llvm/Support/CommandLine.h"
42 #include "llvm/Support/MathExtras.h"
43 #include "llvm/Support/Debug.h"
44 #include <map>
45 #include <set>
46 #include <iostream>
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 // Scheduling heuristics
62 enum SchedHeuristics {
63   defaultScheduling,      // Let the target specify its preference.
64   noScheduling,           // No scheduling, emit breadth first sequence.
65   simpleScheduling,       // Two pass, min. critical path, max. utilization.
66   simpleNoItinScheduling, // Same as above exact using generic latency.
67   listSchedulingBURR,     // Bottom-up reg reduction list scheduling.
68   listSchedulingTDRR,     // Top-down reg reduction list scheduling.
69   listSchedulingTD        // Top-down list scheduler.
70 };
71
72 namespace {
73   cl::opt<SchedHeuristics>
74   ISHeuristic(
75     "sched",
76     cl::desc("Choose scheduling style"),
77     cl::init(defaultScheduling),
78     cl::values(
79       clEnumValN(defaultScheduling, "default",
80                  "Target preferred scheduling style"),
81       clEnumValN(noScheduling, "none",
82                  "No scheduling: breadth first sequencing"),
83       clEnumValN(simpleScheduling, "simple",
84                  "Simple two pass scheduling: minimize critical path "
85                  "and maximize processor utilization"),
86       clEnumValN(simpleNoItinScheduling, "simple-noitin",
87                  "Simple two pass scheduling: Same as simple "
88                  "except using generic latency"),
89       clEnumValN(listSchedulingBURR, "list-burr",
90                  "Bottom-up register reduction list scheduling"),
91       clEnumValN(listSchedulingTDRR, "list-tdrr",
92                  "Top-down register reduction list scheduling"),
93       clEnumValN(listSchedulingTD, "list-td",
94                  "Top-down list scheduler"),
95       clEnumValEnd));
96 } // namespace
97
98 namespace {
99   /// RegsForValue - This struct represents the physical registers that a
100   /// particular value is assigned and the type information about the value.
101   /// This is needed because values can be promoted into larger registers and
102   /// expanded into multiple smaller registers than the value.
103   struct RegsForValue {
104     /// Regs - This list hold the register (for legal and promoted values)
105     /// or register set (for expanded values) that the value should be assigned
106     /// to.
107     std::vector<unsigned> Regs;
108     
109     /// RegVT - The value type of each register.
110     ///
111     MVT::ValueType RegVT;
112     
113     /// ValueVT - The value type of the LLVM value, which may be promoted from
114     /// RegVT or made from merging the two expanded parts.
115     MVT::ValueType ValueVT;
116     
117     RegsForValue() : RegVT(MVT::Other), ValueVT(MVT::Other) {}
118     
119     RegsForValue(unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
120       : RegVT(regvt), ValueVT(valuevt) {
121         Regs.push_back(Reg);
122     }
123     RegsForValue(const std::vector<unsigned> &regs, 
124                  MVT::ValueType regvt, MVT::ValueType valuevt)
125       : Regs(regs), RegVT(regvt), ValueVT(valuevt) {
126     }
127     
128     /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
129     /// this value and returns the result as a ValueVT value.  This uses 
130     /// Chain/Flag as the input and updates them for the output Chain/Flag.
131     SDOperand getCopyFromRegs(SelectionDAG &DAG,
132                               SDOperand &Chain, SDOperand &Flag) const;
133
134     /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
135     /// specified value into the registers specified by this object.  This uses 
136     /// Chain/Flag as the input and updates them for the output Chain/Flag.
137     void getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
138                        SDOperand &Chain, SDOperand &Flag) const;
139     
140     /// AddInlineAsmOperands - Add this value to the specified inlineasm node
141     /// operand list.  This adds the code marker and includes the number of 
142     /// values added into it.
143     void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
144                               std::vector<SDOperand> &Ops) const;
145   };
146 }
147
148 namespace llvm {
149   //===--------------------------------------------------------------------===//
150   /// FunctionLoweringInfo - This contains information that is global to a
151   /// function that is used when lowering a region of the function.
152   class FunctionLoweringInfo {
153   public:
154     TargetLowering &TLI;
155     Function &Fn;
156     MachineFunction &MF;
157     SSARegMap *RegMap;
158
159     FunctionLoweringInfo(TargetLowering &TLI, Function &Fn,MachineFunction &MF);
160
161     /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
162     std::map<const BasicBlock*, MachineBasicBlock *> MBBMap;
163
164     /// ValueMap - Since we emit code for the function a basic block at a time,
165     /// we must remember which virtual registers hold the values for
166     /// cross-basic-block values.
167     std::map<const Value*, unsigned> ValueMap;
168
169     /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
170     /// the entry block.  This allows the allocas to be efficiently referenced
171     /// anywhere in the function.
172     std::map<const AllocaInst*, int> StaticAllocaMap;
173
174     unsigned MakeReg(MVT::ValueType VT) {
175       return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
176     }
177
178     unsigned CreateRegForValue(const Value *V);
179     
180     unsigned InitializeRegForValue(const Value *V) {
181       unsigned &R = ValueMap[V];
182       assert(R == 0 && "Already initialized this value register!");
183       return R = CreateRegForValue(V);
184     }
185   };
186 }
187
188 /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
189 /// PHI nodes or outside of the basic block that defines it, or used by a 
190 /// switch instruction, which may expand to multiple basic blocks.
191 static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
192   if (isa<PHINode>(I)) return true;
193   BasicBlock *BB = I->getParent();
194   for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
195     if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
196         isa<SwitchInst>(*UI))
197       return true;
198   return false;
199 }
200
201 /// isOnlyUsedInEntryBlock - If the specified argument is only used in the
202 /// entry block, return true.  This includes arguments used by switches, since
203 /// the switch may expand into multiple basic blocks.
204 static bool isOnlyUsedInEntryBlock(Argument *A) {
205   BasicBlock *Entry = A->getParent()->begin();
206   for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
207     if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
208       return false;  // Use not in entry block.
209   return true;
210 }
211
212 FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli,
213                                            Function &fn, MachineFunction &mf)
214     : TLI(tli), Fn(fn), MF(mf), RegMap(MF.getSSARegMap()) {
215
216   // Create a vreg for each argument register that is not dead and is used
217   // outside of the entry block for the function.
218   for (Function::arg_iterator AI = Fn.arg_begin(), E = Fn.arg_end();
219        AI != E; ++AI)
220     if (!isOnlyUsedInEntryBlock(AI))
221       InitializeRegForValue(AI);
222
223   // Initialize the mapping of values to registers.  This is only set up for
224   // instruction values that are used outside of the block that defines
225   // them.
226   Function::iterator BB = Fn.begin(), EB = Fn.end();
227   for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
228     if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
229       if (ConstantUInt *CUI = dyn_cast<ConstantUInt>(AI->getArraySize())) {
230         const Type *Ty = AI->getAllocatedType();
231         uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
232         unsigned Align = 
233           std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
234                    AI->getAlignment());
235
236         // If the alignment of the value is smaller than the size of the value,
237         // and if the size of the value is particularly small (<= 8 bytes),
238         // round up to the size of the value for potentially better performance.
239         //
240         // FIXME: This could be made better with a preferred alignment hook in
241         // TargetData.  It serves primarily to 8-byte align doubles for X86.
242         if (Align < TySize && TySize <= 8) Align = TySize;
243         TySize *= CUI->getValue();   // Get total allocated size.
244         if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
245         StaticAllocaMap[AI] =
246           MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
247       }
248
249   for (; BB != EB; ++BB)
250     for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
251       if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
252         if (!isa<AllocaInst>(I) ||
253             !StaticAllocaMap.count(cast<AllocaInst>(I)))
254           InitializeRegForValue(I);
255
256   // Create an initial MachineBasicBlock for each LLVM BasicBlock in F.  This
257   // also creates the initial PHI MachineInstrs, though none of the input
258   // operands are populated.
259   for (BB = Fn.begin(), EB = Fn.end(); BB != EB; ++BB) {
260     MachineBasicBlock *MBB = new MachineBasicBlock(BB);
261     MBBMap[BB] = MBB;
262     MF.getBasicBlockList().push_back(MBB);
263
264     // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
265     // appropriate.
266     PHINode *PN;
267     for (BasicBlock::iterator I = BB->begin();
268          (PN = dyn_cast<PHINode>(I)); ++I)
269       if (!PN->use_empty()) {
270         MVT::ValueType VT = TLI.getValueType(PN->getType());
271         unsigned NumElements;
272         if (VT != MVT::Vector)
273           NumElements = TLI.getNumElements(VT);
274         else {
275           MVT::ValueType VT1,VT2;
276           NumElements = 
277             TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
278                                        VT1, VT2);
279         }
280         unsigned PHIReg = ValueMap[PN];
281         assert(PHIReg &&"PHI node does not have an assigned virtual register!");
282         for (unsigned i = 0; i != NumElements; ++i)
283           BuildMI(MBB, TargetInstrInfo::PHI, PN->getNumOperands(), PHIReg+i);
284       }
285   }
286 }
287
288 /// CreateRegForValue - Allocate the appropriate number of virtual registers of
289 /// the correctly promoted or expanded types.  Assign these registers
290 /// consecutive vreg numbers and return the first assigned number.
291 unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
292   MVT::ValueType VT = TLI.getValueType(V->getType());
293   
294   // The number of multiples of registers that we need, to, e.g., split up
295   // a <2 x int64> -> 4 x i32 registers.
296   unsigned NumVectorRegs = 1;
297   
298   // If this is a packed type, figure out what type it will decompose into
299   // and how many of the elements it will use.
300   if (VT == MVT::Vector) {
301     const PackedType *PTy = cast<PackedType>(V->getType());
302     unsigned NumElts = PTy->getNumElements();
303     MVT::ValueType EltTy = TLI.getValueType(PTy->getElementType());
304     
305     // Divide the input until we get to a supported size.  This will always
306     // end with a scalar if the target doesn't support vectors.
307     while (NumElts > 1 && !TLI.isTypeLegal(getVectorType(EltTy, NumElts))) {
308       NumElts >>= 1;
309       NumVectorRegs <<= 1;
310     }
311     if (NumElts == 1)
312       VT = EltTy;
313     else
314       VT = getVectorType(EltTy, NumElts);
315   }
316   
317   // The common case is that we will only create one register for this
318   // value.  If we have that case, create and return the virtual register.
319   unsigned NV = TLI.getNumElements(VT);
320   if (NV == 1) {
321     // If we are promoting this value, pick the next largest supported type.
322     MVT::ValueType PromotedType = TLI.getTypeToTransformTo(VT);
323     unsigned Reg = MakeReg(PromotedType);
324     // If this is a vector of supported or promoted types (e.g. 4 x i16),
325     // create all of the registers.
326     for (unsigned i = 1; i != NumVectorRegs; ++i)
327       MakeReg(PromotedType);
328     return Reg;
329   }
330   
331   // If this value is represented with multiple target registers, make sure
332   // to create enough consecutive registers of the right (smaller) type.
333   unsigned NT = VT-1;  // Find the type to use.
334   while (TLI.getNumElements((MVT::ValueType)NT) != 1)
335     --NT;
336   
337   unsigned R = MakeReg((MVT::ValueType)NT);
338   for (unsigned i = 1; i != NV*NumVectorRegs; ++i)
339     MakeReg((MVT::ValueType)NT);
340   return R;
341 }
342
343 //===----------------------------------------------------------------------===//
344 /// SelectionDAGLowering - This is the common target-independent lowering
345 /// implementation that is parameterized by a TargetLowering object.
346 /// Also, targets can overload any lowering method.
347 ///
348 namespace llvm {
349 class SelectionDAGLowering {
350   MachineBasicBlock *CurMBB;
351
352   std::map<const Value*, SDOperand> NodeMap;
353
354   /// PendingLoads - Loads are not emitted to the program immediately.  We bunch
355   /// them up and then emit token factor nodes when possible.  This allows us to
356   /// get simple disambiguation between loads without worrying about alias
357   /// analysis.
358   std::vector<SDOperand> PendingLoads;
359
360   /// Case - A pair of values to record the Value for a switch case, and the
361   /// case's target basic block.  
362   typedef std::pair<Constant*, MachineBasicBlock*> Case;
363   typedef std::vector<Case>::iterator              CaseItr;
364   typedef std::pair<CaseItr, CaseItr>              CaseRange;
365
366   /// CaseRec - A struct with ctor used in lowering switches to a binary tree
367   /// of conditional branches.
368   struct CaseRec {
369     CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
370     CaseBB(bb), LT(lt), GE(ge), Range(r) {}
371
372     /// CaseBB - The MBB in which to emit the compare and branch
373     MachineBasicBlock *CaseBB;
374     /// LT, GE - If nonzero, we know the current case value must be less-than or
375     /// greater-than-or-equal-to these Constants.
376     Constant *LT;
377     Constant *GE;
378     /// Range - A pair of iterators representing the range of case values to be
379     /// processed at this point in the binary search tree.
380     CaseRange Range;
381   };
382   
383   /// The comparison function for sorting Case values.
384   struct CaseCmp {
385     bool operator () (const Case& C1, const Case& C2) {
386       if (const ConstantUInt* U1 = dyn_cast<const ConstantUInt>(C1.first))
387         return U1->getValue() < cast<const ConstantUInt>(C2.first)->getValue();
388       
389       const ConstantSInt* S1 = dyn_cast<const ConstantSInt>(C1.first);
390       return S1->getValue() < cast<const ConstantSInt>(C2.first)->getValue();
391     }
392   };
393   
394 public:
395   // TLI - This is information that describes the available target features we
396   // need for lowering.  This indicates when operations are unavailable,
397   // implemented with a libcall, etc.
398   TargetLowering &TLI;
399   SelectionDAG &DAG;
400   const TargetData *TD;
401
402   /// SwitchCases - Vector of CaseBlock structures used to communicate
403   /// SwitchInst code generation information.
404   std::vector<SelectionDAGISel::CaseBlock> SwitchCases;
405   SelectionDAGISel::JumpTable JT;
406   
407   /// FuncInfo - Information about the function as a whole.
408   ///
409   FunctionLoweringInfo &FuncInfo;
410
411   SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
412                        FunctionLoweringInfo &funcinfo)
413     : TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()),
414       JT(0,0,0,0), FuncInfo(funcinfo) {
415   }
416
417   /// getRoot - Return the current virtual root of the Selection DAG.
418   ///
419   SDOperand getRoot() {
420     if (PendingLoads.empty())
421       return DAG.getRoot();
422
423     if (PendingLoads.size() == 1) {
424       SDOperand Root = PendingLoads[0];
425       DAG.setRoot(Root);
426       PendingLoads.clear();
427       return Root;
428     }
429
430     // Otherwise, we have to make a token factor node.
431     SDOperand Root = DAG.getNode(ISD::TokenFactor, MVT::Other, PendingLoads);
432     PendingLoads.clear();
433     DAG.setRoot(Root);
434     return Root;
435   }
436
437   void visit(Instruction &I) { visit(I.getOpcode(), I); }
438
439   void visit(unsigned Opcode, User &I) {
440     switch (Opcode) {
441     default: assert(0 && "Unknown instruction type encountered!");
442              abort();
443       // Build the switch statement using the Instruction.def file.
444 #define HANDLE_INST(NUM, OPCODE, CLASS) \
445     case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
446 #include "llvm/Instruction.def"
447     }
448   }
449
450   void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
451
452   SDOperand getLoadFrom(const Type *Ty, SDOperand Ptr,
453                         SDOperand SrcValue, SDOperand Root,
454                         bool isVolatile);
455
456   SDOperand getIntPtrConstant(uint64_t Val) {
457     return DAG.getConstant(Val, TLI.getPointerTy());
458   }
459
460   SDOperand getValue(const Value *V);
461
462   const SDOperand &setValue(const Value *V, SDOperand NewN) {
463     SDOperand &N = NodeMap[V];
464     assert(N.Val == 0 && "Already set a value for this node!");
465     return N = NewN;
466   }
467   
468   RegsForValue GetRegistersForValue(const std::string &ConstrCode,
469                                     MVT::ValueType VT,
470                                     bool OutReg, bool InReg,
471                                     std::set<unsigned> &OutputRegs, 
472                                     std::set<unsigned> &InputRegs);
473
474   // Terminator instructions.
475   void visitRet(ReturnInst &I);
476   void visitBr(BranchInst &I);
477   void visitSwitch(SwitchInst &I);
478   void visitUnreachable(UnreachableInst &I) { /* noop */ }
479
480   // Helper for visitSwitch
481   void visitSwitchCase(SelectionDAGISel::CaseBlock &CB);
482   void visitJumpTable(SelectionDAGISel::JumpTable &JT);
483   
484   // These all get lowered before this pass.
485   void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); }
486   void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }
487
488   void visitBinary(User &I, unsigned IntOp, unsigned FPOp, unsigned VecOp);
489   void visitShift(User &I, unsigned Opcode);
490   void visitAdd(User &I) { 
491     visitBinary(I, ISD::ADD, ISD::FADD, ISD::VADD); 
492   }
493   void visitSub(User &I);
494   void visitMul(User &I) { 
495     visitBinary(I, ISD::MUL, ISD::FMUL, ISD::VMUL); 
496   }
497   void visitDiv(User &I) {
498     const Type *Ty = I.getType();
499     visitBinary(I,
500                 Ty->isSigned() ? ISD::SDIV : ISD::UDIV, ISD::FDIV,
501                 Ty->isSigned() ? ISD::VSDIV : ISD::VUDIV);
502   }
503   void visitRem(User &I) {
504     const Type *Ty = I.getType();
505     visitBinary(I, Ty->isSigned() ? ISD::SREM : ISD::UREM, ISD::FREM, 0);
506   }
507   void visitAnd(User &I) { visitBinary(I, ISD::AND, 0, ISD::VAND); }
508   void visitOr (User &I) { visitBinary(I, ISD::OR,  0, ISD::VOR); }
509   void visitXor(User &I) { visitBinary(I, ISD::XOR, 0, ISD::VXOR); }
510   void visitShl(User &I) { visitShift(I, ISD::SHL); }
511   void visitShr(User &I) { 
512     visitShift(I, I.getType()->isUnsigned() ? ISD::SRL : ISD::SRA);
513   }
514
515   void visitSetCC(User &I, ISD::CondCode SignedOpc, ISD::CondCode UnsignedOpc,
516                   ISD::CondCode FPOpc);
517   void visitSetEQ(User &I) { visitSetCC(I, ISD::SETEQ, ISD::SETEQ, 
518                                         ISD::SETOEQ); }
519   void visitSetNE(User &I) { visitSetCC(I, ISD::SETNE, ISD::SETNE,
520                                         ISD::SETUNE); }
521   void visitSetLE(User &I) { visitSetCC(I, ISD::SETLE, ISD::SETULE,
522                                         ISD::SETOLE); }
523   void visitSetGE(User &I) { visitSetCC(I, ISD::SETGE, ISD::SETUGE,
524                                         ISD::SETOGE); }
525   void visitSetLT(User &I) { visitSetCC(I, ISD::SETLT, ISD::SETULT,
526                                         ISD::SETOLT); }
527   void visitSetGT(User &I) { visitSetCC(I, ISD::SETGT, ISD::SETUGT,
528                                         ISD::SETOGT); }
529
530   void visitExtractElement(User &I);
531   void visitInsertElement(User &I);
532   void visitShuffleVector(User &I);
533
534   void visitGetElementPtr(User &I);
535   void visitCast(User &I);
536   void visitSelect(User &I);
537
538   void visitMalloc(MallocInst &I);
539   void visitFree(FreeInst &I);
540   void visitAlloca(AllocaInst &I);
541   void visitLoad(LoadInst &I);
542   void visitStore(StoreInst &I);
543   void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
544   void visitCall(CallInst &I);
545   void visitInlineAsm(CallInst &I);
546   const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
547   void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
548
549   void visitVAStart(CallInst &I);
550   void visitVAArg(VAArgInst &I);
551   void visitVAEnd(CallInst &I);
552   void visitVACopy(CallInst &I);
553   void visitFrameReturnAddress(CallInst &I, bool isFrameAddress);
554
555   void visitMemIntrinsic(CallInst &I, unsigned Op);
556
557   void visitUserOp1(Instruction &I) {
558     assert(0 && "UserOp1 should not exist at instruction selection time!");
559     abort();
560   }
561   void visitUserOp2(Instruction &I) {
562     assert(0 && "UserOp2 should not exist at instruction selection time!");
563     abort();
564   }
565 };
566 } // end namespace llvm
567
568 SDOperand SelectionDAGLowering::getValue(const Value *V) {
569   SDOperand &N = NodeMap[V];
570   if (N.Val) return N;
571   
572   const Type *VTy = V->getType();
573   MVT::ValueType VT = TLI.getValueType(VTy);
574   if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
575     if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
576       visit(CE->getOpcode(), *CE);
577       assert(N.Val && "visit didn't populate the ValueMap!");
578       return N;
579     } else if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) {
580       return N = DAG.getGlobalAddress(GV, VT);
581     } else if (isa<ConstantPointerNull>(C)) {
582       return N = DAG.getConstant(0, TLI.getPointerTy());
583     } else if (isa<UndefValue>(C)) {
584       if (!isa<PackedType>(VTy))
585         return N = DAG.getNode(ISD::UNDEF, VT);
586
587       // Create a VBUILD_VECTOR of undef nodes.
588       const PackedType *PTy = cast<PackedType>(VTy);
589       unsigned NumElements = PTy->getNumElements();
590       MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
591
592       std::vector<SDOperand> Ops;
593       Ops.assign(NumElements, DAG.getNode(ISD::UNDEF, PVT));
594       
595       // Create a VConstant node with generic Vector type.
596       Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
597       Ops.push_back(DAG.getValueType(PVT));
598       return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
599     } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
600       return N = DAG.getConstantFP(CFP->getValue(), VT);
601     } else if (const PackedType *PTy = dyn_cast<PackedType>(VTy)) {
602       unsigned NumElements = PTy->getNumElements();
603       MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
604       
605       // Now that we know the number and type of the elements, push a
606       // Constant or ConstantFP node onto the ops list for each element of
607       // the packed constant.
608       std::vector<SDOperand> Ops;
609       if (ConstantPacked *CP = dyn_cast<ConstantPacked>(C)) {
610         for (unsigned i = 0; i != NumElements; ++i)
611           Ops.push_back(getValue(CP->getOperand(i)));
612       } else {
613         assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!");
614         SDOperand Op;
615         if (MVT::isFloatingPoint(PVT))
616           Op = DAG.getConstantFP(0, PVT);
617         else
618           Op = DAG.getConstant(0, PVT);
619         Ops.assign(NumElements, Op);
620       }
621       
622       // Create a VBUILD_VECTOR node with generic Vector type.
623       Ops.push_back(DAG.getConstant(NumElements, MVT::i32));
624       Ops.push_back(DAG.getValueType(PVT));
625       return N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
626     } else {
627       // Canonicalize all constant ints to be unsigned.
628       return N = DAG.getConstant(cast<ConstantIntegral>(C)->getRawValue(),VT);
629     }
630   }
631       
632   if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
633     std::map<const AllocaInst*, int>::iterator SI =
634     FuncInfo.StaticAllocaMap.find(AI);
635     if (SI != FuncInfo.StaticAllocaMap.end())
636       return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
637   }
638       
639   std::map<const Value*, unsigned>::const_iterator VMI =
640       FuncInfo.ValueMap.find(V);
641   assert(VMI != FuncInfo.ValueMap.end() && "Value not in map!");
642   
643   unsigned InReg = VMI->second;
644   
645   // If this type is not legal, make it so now.
646   if (VT != MVT::Vector) {
647     MVT::ValueType DestVT = TLI.getTypeToTransformTo(VT);
648   
649     N = DAG.getCopyFromReg(DAG.getEntryNode(), InReg, DestVT);
650     if (DestVT < VT) {
651       // Source must be expanded.  This input value is actually coming from the
652       // register pair VMI->second and VMI->second+1.
653       N = DAG.getNode(ISD::BUILD_PAIR, VT, N,
654                       DAG.getCopyFromReg(DAG.getEntryNode(), InReg+1, DestVT));
655     } else if (DestVT > VT) { // Promotion case
656       if (MVT::isFloatingPoint(VT))
657         N = DAG.getNode(ISD::FP_ROUND, VT, N);
658       else
659         N = DAG.getNode(ISD::TRUNCATE, VT, N);
660     }
661   } else {
662     // Otherwise, if this is a vector, make it available as a generic vector
663     // here.
664     MVT::ValueType PTyElementVT, PTyLegalElementVT;
665     const PackedType *PTy = cast<PackedType>(VTy);
666     unsigned NE = TLI.getPackedTypeBreakdown(PTy, PTyElementVT,
667                                              PTyLegalElementVT);
668
669     // Build a VBUILD_VECTOR with the input registers.
670     std::vector<SDOperand> Ops;
671     if (PTyElementVT == PTyLegalElementVT) {
672       // If the value types are legal, just VBUILD the CopyFromReg nodes.
673       for (unsigned i = 0; i != NE; ++i)
674         Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, 
675                                          PTyElementVT));
676     } else if (PTyElementVT < PTyLegalElementVT) {
677       // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate.
678       for (unsigned i = 0; i != NE; ++i) {
679         SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, 
680                                           PTyElementVT);
681         if (MVT::isFloatingPoint(PTyElementVT))
682           Op = DAG.getNode(ISD::FP_ROUND, PTyElementVT, Op);
683         else
684           Op = DAG.getNode(ISD::TRUNCATE, PTyElementVT, Op);
685         Ops.push_back(Op);
686       }
687     } else {
688       // If the register was expanded, use BUILD_PAIR.
689       assert((NE & 1) == 0 && "Must expand into a multiple of 2 elements!");
690       for (unsigned i = 0; i != NE/2; ++i) {
691         SDOperand Op0 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, 
692                                            PTyElementVT);
693         SDOperand Op1 = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, 
694                                            PTyElementVT);
695         Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Op0, Op1));
696       }
697     }
698     
699     Ops.push_back(DAG.getConstant(NE, MVT::i32));
700     Ops.push_back(DAG.getValueType(PTyLegalElementVT));
701     N = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, Ops);
702     
703     // Finally, use a VBIT_CONVERT to make this available as the appropriate
704     // vector type.
705     N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N, 
706                     DAG.getConstant(PTy->getNumElements(),
707                                     MVT::i32),
708                     DAG.getValueType(TLI.getValueType(PTy->getElementType())));
709   }
710   
711   return N;
712 }
713
714
715 void SelectionDAGLowering::visitRet(ReturnInst &I) {
716   if (I.getNumOperands() == 0) {
717     DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, getRoot()));
718     return;
719   }
720   std::vector<SDOperand> NewValues;
721   NewValues.push_back(getRoot());
722   for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
723     SDOperand RetOp = getValue(I.getOperand(i));
724     
725     // If this is an integer return value, we need to promote it ourselves to
726     // the full width of a register, since LegalizeOp will use ANY_EXTEND rather
727     // than sign/zero.
728     if (MVT::isInteger(RetOp.getValueType()) && 
729         RetOp.getValueType() < MVT::i64) {
730       MVT::ValueType TmpVT;
731       if (TLI.getTypeAction(MVT::i32) == TargetLowering::Promote)
732         TmpVT = TLI.getTypeToTransformTo(MVT::i32);
733       else
734         TmpVT = MVT::i32;
735
736       if (I.getOperand(i)->getType()->isSigned())
737         RetOp = DAG.getNode(ISD::SIGN_EXTEND, TmpVT, RetOp);
738       else
739         RetOp = DAG.getNode(ISD::ZERO_EXTEND, TmpVT, RetOp);
740     }
741     NewValues.push_back(RetOp);
742   }
743   DAG.setRoot(DAG.getNode(ISD::RET, MVT::Other, NewValues));
744 }
745
746 void SelectionDAGLowering::visitBr(BranchInst &I) {
747   // Update machine-CFG edges.
748   MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
749   CurMBB->addSuccessor(Succ0MBB);
750
751   // Figure out which block is immediately after the current one.
752   MachineBasicBlock *NextBlock = 0;
753   MachineFunction::iterator BBI = CurMBB;
754   if (++BBI != CurMBB->getParent()->end())
755     NextBlock = BBI;
756
757   if (I.isUnconditional()) {
758     // If this is not a fall-through branch, emit the branch.
759     if (Succ0MBB != NextBlock)
760       DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
761                               DAG.getBasicBlock(Succ0MBB)));
762   } else {
763     MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
764     CurMBB->addSuccessor(Succ1MBB);
765
766     SDOperand Cond = getValue(I.getCondition());
767     if (Succ1MBB == NextBlock) {
768       // If the condition is false, fall through.  This means we should branch
769       // if the condition is true to Succ #0.
770       DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
771                               Cond, DAG.getBasicBlock(Succ0MBB)));
772     } else if (Succ0MBB == NextBlock) {
773       // If the condition is true, fall through.  This means we should branch if
774       // the condition is false to Succ #1.  Invert the condition first.
775       SDOperand True = DAG.getConstant(1, Cond.getValueType());
776       Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
777       DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(),
778                               Cond, DAG.getBasicBlock(Succ1MBB)));
779     } else {
780       std::vector<SDOperand> Ops;
781       Ops.push_back(getRoot());
782       // If the false case is the current basic block, then this is a self
783       // loop. We do not want to emit "Loop: ... brcond Out; br Loop", as it
784       // adds an extra instruction in the loop.  Instead, invert the
785       // condition and emit "Loop: ... br!cond Loop; br Out. 
786       if (CurMBB == Succ1MBB) {
787         std::swap(Succ0MBB, Succ1MBB);
788         SDOperand True = DAG.getConstant(1, Cond.getValueType());
789         Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
790       }
791       SDOperand True = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
792                                    DAG.getBasicBlock(Succ0MBB));
793       DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, True, 
794                               DAG.getBasicBlock(Succ1MBB)));
795     }
796   }
797 }
798
799 /// visitSwitchCase - Emits the necessary code to represent a single node in
800 /// the binary search tree resulting from lowering a switch instruction.
801 void SelectionDAGLowering::visitSwitchCase(SelectionDAGISel::CaseBlock &CB) {
802   SDOperand SwitchOp = getValue(CB.SwitchV);
803   SDOperand CaseOp = getValue(CB.CaseC);
804   SDOperand Cond = DAG.getSetCC(MVT::i1, SwitchOp, CaseOp, CB.CC);
805   
806   // Set NextBlock to be the MBB immediately after the current one, if any.
807   // This is used to avoid emitting unnecessary branches to the next block.
808   MachineBasicBlock *NextBlock = 0;
809   MachineFunction::iterator BBI = CurMBB;
810   if (++BBI != CurMBB->getParent()->end())
811     NextBlock = BBI;
812   
813   // If the lhs block is the next block, invert the condition so that we can
814   // fall through to the lhs instead of the rhs block.
815   if (CB.LHSBB == NextBlock) {
816     std::swap(CB.LHSBB, CB.RHSBB);
817     SDOperand True = DAG.getConstant(1, Cond.getValueType());
818     Cond = DAG.getNode(ISD::XOR, Cond.getValueType(), Cond, True);
819   }
820   SDOperand BrCond = DAG.getNode(ISD::BRCOND, MVT::Other, getRoot(), Cond,
821                                  DAG.getBasicBlock(CB.LHSBB));
822   if (CB.RHSBB == NextBlock)
823     DAG.setRoot(BrCond);
824   else
825     DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond, 
826                             DAG.getBasicBlock(CB.RHSBB)));
827   // Update successor info
828   CurMBB->addSuccessor(CB.LHSBB);
829   CurMBB->addSuccessor(CB.RHSBB);
830 }
831
832 /// visitSwitchCase - Emits the necessary code to represent a single node in
833 /// the binary search tree resulting from lowering a switch instruction.
834 void SelectionDAGLowering::visitJumpTable(SelectionDAGISel::JumpTable &JT) {
835   // FIXME: Need to emit different code for PIC vs. Non-PIC, specifically,
836   // we need to add the address of the jump table to the value loaded, since
837   // the entries in the jump table will be differences rather than absolute
838   // addresses.
839   
840   // Emit the code for the jump table
841   MVT::ValueType PTy = TLI.getPointerTy();
842   unsigned PTyBytes = MVT::getSizeInBits(PTy)/8;
843   SDOperand Copy = DAG.getCopyFromReg(getRoot(), JT.Reg, PTy);
844   SDOperand IDX = DAG.getNode(ISD::MUL, PTy, Copy,
845                               DAG.getConstant(PTyBytes, PTy));
846   SDOperand ADD = DAG.getNode(ISD::ADD, PTy, IDX, DAG.getJumpTable(JT.JTI,PTy));
847   SDOperand LD  = DAG.getLoad(PTy, Copy.getValue(1), ADD, DAG.getSrcValue(0));
848   DAG.setRoot(DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD));
849 }
850
851 void SelectionDAGLowering::visitSwitch(SwitchInst &I) {
852   // Figure out which block is immediately after the current one.
853   MachineBasicBlock *NextBlock = 0;
854   MachineFunction::iterator BBI = CurMBB;
855   if (++BBI != CurMBB->getParent()->end())
856     NextBlock = BBI;
857   
858   // If there is only the default destination, branch to it if it is not the
859   // next basic block.  Otherwise, just fall through.
860   if (I.getNumOperands() == 2) {
861     // Update machine-CFG edges.
862     MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[I.getDefaultDest()];
863     // If this is not a fall-through branch, emit the branch.
864     if (DefaultMBB != NextBlock)
865       DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, getRoot(),
866                               DAG.getBasicBlock(DefaultMBB)));
867     return;
868   }
869   
870   // If there are any non-default case statements, create a vector of Cases
871   // representing each one, and sort the vector so that we can efficiently
872   // create a binary search tree from them.
873   std::vector<Case> Cases;
874   for (unsigned i = 1; i < I.getNumSuccessors(); ++i) {
875     MachineBasicBlock *SMBB = FuncInfo.MBBMap[I.getSuccessor(i)];
876     Cases.push_back(Case(I.getSuccessorValue(i), SMBB));
877   }
878   std::sort(Cases.begin(), Cases.end(), CaseCmp());
879   
880   // Get the Value to be switched on and default basic blocks, which will be
881   // inserted into CaseBlock records, representing basic blocks in the binary
882   // search tree.
883   Value *SV = I.getOperand(0);
884   MachineBasicBlock *Default = FuncInfo.MBBMap[I.getDefaultDest()];
885
886   // Get the MachineFunction which holds the current MBB.  This is used during
887   // emission of jump tables, and when inserting any additional MBBs necessary
888   // to represent the switch.
889   MachineFunction *CurMF = CurMBB->getParent();
890   const BasicBlock *LLVMBB = CurMBB->getBasicBlock();
891   Reloc::Model Relocs = TLI.getTargetMachine().getRelocationModel();
892
893   // If the switch has more than 5 blocks, and at least 31.25% dense, and the 
894   // target supports indirect branches, then emit a jump table rather than 
895   // lowering the switch to a binary tree of conditional branches.
896   // FIXME: Make this work with PIC code
897   if (TLI.isOperationLegal(ISD::BRIND, TLI.getPointerTy()) &&
898       (Relocs == Reloc::Static || Relocs == Reloc::DynamicNoPIC) &&
899       Cases.size() > 5) {
900     uint64_t First = cast<ConstantIntegral>(Cases.front().first)->getRawValue();
901     uint64_t Last  = cast<ConstantIntegral>(Cases.back().first)->getRawValue();
902     double Density = (double)Cases.size() / (double)((Last - First) + 1ULL);
903     
904     if (Density >= 0.3125) {
905       // Create a new basic block to hold the code for loading the address
906       // of the jump table, and jumping to it.  Update successor information;
907       // we will either branch to the default case for the switch, or the jump
908       // table.
909       MachineBasicBlock *JumpTableBB = new MachineBasicBlock(LLVMBB);
910       CurMF->getBasicBlockList().insert(BBI, JumpTableBB);
911       CurMBB->addSuccessor(Default);
912       CurMBB->addSuccessor(JumpTableBB);
913       
914       // Subtract the lowest switch case value from the value being switched on
915       // and conditional branch to default mbb if the result is greater than the
916       // difference between smallest and largest cases.
917       SDOperand SwitchOp = getValue(SV);
918       MVT::ValueType VT = SwitchOp.getValueType();
919       SDOperand SUB = DAG.getNode(ISD::SUB, VT, SwitchOp, 
920                                   DAG.getConstant(First, VT));
921
922       // The SDNode we just created, which holds the value being switched on
923       // minus the the smallest case value, needs to be copied to a virtual
924       // register so it can be used as an index into the jump table in a 
925       // subsequent basic block.  This value may be smaller or larger than the
926       // target's pointer type, and therefore require extension or truncating.
927       if (VT > TLI.getPointerTy())
928         SwitchOp = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), SUB);
929       else
930         SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), SUB);
931       unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
932       SDOperand CopyTo = DAG.getCopyToReg(getRoot(), JumpTableReg, SwitchOp);
933       
934       // Emit the range check for the jump table, and branch to the default
935       // block for the switch statement if the value being switched on exceeds
936       // the largest case in the switch.
937       SDOperand CMP = DAG.getSetCC(TLI.getSetCCResultTy(), SUB,
938                                    DAG.getConstant(Last-First,VT), ISD::SETUGT);
939       DAG.setRoot(DAG.getNode(ISD::BRCOND, MVT::Other, CopyTo, CMP, 
940                               DAG.getBasicBlock(Default)));
941
942       // Build a vector of destination BBs, corresponding to each target
943       // of the jump table.  If the value of the jump table slot corresponds to
944       // a case statement, push the case's BB onto the vector, otherwise, push
945       // the default BB.
946       std::set<MachineBasicBlock*> UniqueBBs;
947       std::vector<MachineBasicBlock*> DestBBs;
948       uint64_t TEI = First;
949       for (CaseItr ii = Cases.begin(), ee = Cases.end(); ii != ee; ++TEI) {
950         if (cast<ConstantIntegral>(ii->first)->getRawValue() == TEI) {
951           DestBBs.push_back(ii->second);
952           UniqueBBs.insert(ii->second);
953           ++ii;
954         } else {
955           DestBBs.push_back(Default);
956           UniqueBBs.insert(Default);
957         }
958       }
959       
960       // Update successor info
961       for (std::set<MachineBasicBlock*>::iterator ii = UniqueBBs.begin(), 
962            ee = UniqueBBs.end(); ii != ee; ++ii)
963         JumpTableBB->addSuccessor(*ii);
964       
965       // Create a jump table index for this jump table, or return an existing
966       // one.
967       unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
968       
969       // Set the jump table information so that we can codegen it as a second
970       // MachineBasicBlock
971       JT.Reg = JumpTableReg;
972       JT.JTI = JTI;
973       JT.MBB = JumpTableBB;
974       JT.Default = Default;
975       return;
976     }
977   }
978   
979   // Push the initial CaseRec onto the worklist
980   std::vector<CaseRec> CaseVec;
981   CaseVec.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
982   
983   while (!CaseVec.empty()) {
984     // Grab a record representing a case range to process off the worklist
985     CaseRec CR = CaseVec.back();
986     CaseVec.pop_back();
987     
988     // Size is the number of Cases represented by this range.  If Size is 1,
989     // then we are processing a leaf of the binary search tree.  Otherwise,
990     // we need to pick a pivot, and push left and right ranges onto the 
991     // worklist.
992     unsigned Size = CR.Range.second - CR.Range.first;
993     
994     if (Size == 1) {
995       // Create a CaseBlock record representing a conditional branch to
996       // the Case's target mbb if the value being switched on SV is equal
997       // to C.  Otherwise, branch to default.
998       Constant *C = CR.Range.first->first;
999       MachineBasicBlock *Target = CR.Range.first->second;
1000       SelectionDAGISel::CaseBlock CB(ISD::SETEQ, SV, C, Target, Default, 
1001                                      CR.CaseBB);
1002       // If the MBB representing the leaf node is the current MBB, then just
1003       // call visitSwitchCase to emit the code into the current block.
1004       // Otherwise, push the CaseBlock onto the vector to be later processed
1005       // by SDISel, and insert the node's MBB before the next MBB.
1006       if (CR.CaseBB == CurMBB)
1007         visitSwitchCase(CB);
1008       else {
1009         SwitchCases.push_back(CB);
1010         CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1011       }
1012     } else {
1013       // split case range at pivot
1014       CaseItr Pivot = CR.Range.first + (Size / 2);
1015       CaseRange LHSR(CR.Range.first, Pivot);
1016       CaseRange RHSR(Pivot, CR.Range.second);
1017       Constant *C = Pivot->first;
1018       MachineBasicBlock *RHSBB = 0, *LHSBB = 0;
1019       // We know that we branch to the LHS if the Value being switched on is
1020       // less than the Pivot value, C.  We use this to optimize our binary 
1021       // tree a bit, by recognizing that if SV is greater than or equal to the
1022       // LHS's Case Value, and that Case Value is exactly one less than the 
1023       // Pivot's Value, then we can branch directly to the LHS's Target,
1024       // rather than creating a leaf node for it.
1025       if ((LHSR.second - LHSR.first) == 1 &&
1026           LHSR.first->first == CR.GE &&
1027           cast<ConstantIntegral>(C)->getRawValue() ==
1028           (cast<ConstantIntegral>(CR.GE)->getRawValue() + 1ULL)) {
1029         LHSBB = LHSR.first->second;
1030       } else {
1031         LHSBB = new MachineBasicBlock(LLVMBB);
1032         CaseVec.push_back(CaseRec(LHSBB,C,CR.GE,LHSR));
1033       }
1034       // Similar to the optimization above, if the Value being switched on is
1035       // known to be less than the Constant CR.LT, and the current Case Value
1036       // is CR.LT - 1, then we can branch directly to the target block for
1037       // the current Case Value, rather than emitting a RHS leaf node for it.
1038       if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
1039           cast<ConstantIntegral>(RHSR.first->first)->getRawValue() ==
1040           (cast<ConstantIntegral>(CR.LT)->getRawValue() - 1ULL)) {
1041         RHSBB = RHSR.first->second;
1042       } else {
1043         RHSBB = new MachineBasicBlock(LLVMBB);
1044         CaseVec.push_back(CaseRec(RHSBB,CR.LT,C,RHSR));
1045       }
1046       // Create a CaseBlock record representing a conditional branch to
1047       // the LHS node if the value being switched on SV is less than C. 
1048       // Otherwise, branch to LHS.
1049       ISD::CondCode CC = C->getType()->isSigned() ? ISD::SETLT : ISD::SETULT;
1050       SelectionDAGISel::CaseBlock CB(CC, SV, C, LHSBB, RHSBB, CR.CaseBB);
1051       if (CR.CaseBB == CurMBB)
1052         visitSwitchCase(CB);
1053       else {
1054         SwitchCases.push_back(CB);
1055         CurMF->getBasicBlockList().insert(BBI, CR.CaseBB);
1056       }
1057     }
1058   }
1059 }
1060
1061 void SelectionDAGLowering::visitSub(User &I) {
1062   // -0.0 - X --> fneg
1063   if (I.getType()->isFloatingPoint()) {
1064     if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
1065       if (CFP->isExactlyValue(-0.0)) {
1066         SDOperand Op2 = getValue(I.getOperand(1));
1067         setValue(&I, DAG.getNode(ISD::FNEG, Op2.getValueType(), Op2));
1068         return;
1069       }
1070   }
1071   visitBinary(I, ISD::SUB, ISD::FSUB, ISD::VSUB);
1072 }
1073
1074 void SelectionDAGLowering::visitBinary(User &I, unsigned IntOp, unsigned FPOp, 
1075                                        unsigned VecOp) {
1076   const Type *Ty = I.getType();
1077   SDOperand Op1 = getValue(I.getOperand(0));
1078   SDOperand Op2 = getValue(I.getOperand(1));
1079
1080   if (Ty->isIntegral()) {
1081     setValue(&I, DAG.getNode(IntOp, Op1.getValueType(), Op1, Op2));
1082   } else if (Ty->isFloatingPoint()) {
1083     setValue(&I, DAG.getNode(FPOp, Op1.getValueType(), Op1, Op2));
1084   } else {
1085     const PackedType *PTy = cast<PackedType>(Ty);
1086     SDOperand Num = DAG.getConstant(PTy->getNumElements(), MVT::i32);
1087     SDOperand Typ = DAG.getValueType(TLI.getValueType(PTy->getElementType()));
1088     setValue(&I, DAG.getNode(VecOp, MVT::Vector, Op1, Op2, Num, Typ));
1089   }
1090 }
1091
1092 void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
1093   SDOperand Op1 = getValue(I.getOperand(0));
1094   SDOperand Op2 = getValue(I.getOperand(1));
1095   
1096   Op2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Op2);
1097   
1098   setValue(&I, DAG.getNode(Opcode, Op1.getValueType(), Op1, Op2));
1099 }
1100
1101 void SelectionDAGLowering::visitSetCC(User &I,ISD::CondCode SignedOpcode,
1102                                       ISD::CondCode UnsignedOpcode,
1103                                       ISD::CondCode FPOpcode) {
1104   SDOperand Op1 = getValue(I.getOperand(0));
1105   SDOperand Op2 = getValue(I.getOperand(1));
1106   ISD::CondCode Opcode = SignedOpcode;
1107   if ((!UnsafeFPMath && !FiniteOnlyFPMath) &&
1108       I.getOperand(0)->getType()->isFloatingPoint())
1109     Opcode = FPOpcode;
1110   else if (I.getOperand(0)->getType()->isUnsigned())
1111     Opcode = UnsignedOpcode;
1112   setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
1113 }
1114
1115 void SelectionDAGLowering::visitSelect(User &I) {
1116   SDOperand Cond     = getValue(I.getOperand(0));
1117   SDOperand TrueVal  = getValue(I.getOperand(1));
1118   SDOperand FalseVal = getValue(I.getOperand(2));
1119   if (!isa<PackedType>(I.getType())) {
1120     setValue(&I, DAG.getNode(ISD::SELECT, TrueVal.getValueType(), Cond,
1121                              TrueVal, FalseVal));
1122   } else {
1123     setValue(&I, DAG.getNode(ISD::VSELECT, MVT::Vector, Cond, TrueVal, FalseVal,
1124                              *(TrueVal.Val->op_end()-2),
1125                              *(TrueVal.Val->op_end()-1)));
1126   }
1127 }
1128
1129 void SelectionDAGLowering::visitCast(User &I) {
1130   SDOperand N = getValue(I.getOperand(0));
1131   MVT::ValueType SrcVT = N.getValueType();
1132   MVT::ValueType DestVT = TLI.getValueType(I.getType());
1133
1134   if (DestVT == MVT::Vector) {
1135     // This is a cast to a vector from something else.  This is always a bit
1136     // convert.  Get information about the input vector.
1137     const PackedType *DestTy = cast<PackedType>(I.getType());
1138     MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1139     setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N, 
1140                              DAG.getConstant(DestTy->getNumElements(),MVT::i32),
1141                              DAG.getValueType(EltVT)));
1142   } else if (SrcVT == DestVT) {
1143     setValue(&I, N);  // noop cast.
1144   } else if (DestVT == MVT::i1) {
1145     // Cast to bool is a comparison against zero, not truncation to zero.
1146     SDOperand Zero = isInteger(SrcVT) ? DAG.getConstant(0, N.getValueType()) :
1147                                        DAG.getConstantFP(0.0, N.getValueType());
1148     setValue(&I, DAG.getSetCC(MVT::i1, N, Zero, ISD::SETNE));
1149   } else if (isInteger(SrcVT)) {
1150     if (isInteger(DestVT)) {        // Int -> Int cast
1151       if (DestVT < SrcVT)   // Truncating cast?
1152         setValue(&I, DAG.getNode(ISD::TRUNCATE, DestVT, N));
1153       else if (I.getOperand(0)->getType()->isSigned())
1154         setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, DestVT, N));
1155       else
1156         setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, DestVT, N));
1157     } else if (isFloatingPoint(DestVT)) {           // Int -> FP cast
1158       if (I.getOperand(0)->getType()->isSigned())
1159         setValue(&I, DAG.getNode(ISD::SINT_TO_FP, DestVT, N));
1160       else
1161         setValue(&I, DAG.getNode(ISD::UINT_TO_FP, DestVT, N));
1162     } else {
1163       assert(0 && "Unknown cast!");
1164     }
1165   } else if (isFloatingPoint(SrcVT)) {
1166     if (isFloatingPoint(DestVT)) {  // FP -> FP cast
1167       if (DestVT < SrcVT)   // Rounding cast?
1168         setValue(&I, DAG.getNode(ISD::FP_ROUND, DestVT, N));
1169       else
1170         setValue(&I, DAG.getNode(ISD::FP_EXTEND, DestVT, N));
1171     } else if (isInteger(DestVT)) {        // FP -> Int cast.
1172       if (I.getType()->isSigned())
1173         setValue(&I, DAG.getNode(ISD::FP_TO_SINT, DestVT, N));
1174       else
1175         setValue(&I, DAG.getNode(ISD::FP_TO_UINT, DestVT, N));
1176     } else {
1177       assert(0 && "Unknown cast!");
1178     }
1179   } else {
1180     assert(SrcVT == MVT::Vector && "Unknown cast!");
1181     assert(DestVT != MVT::Vector && "Casts to vector already handled!");
1182     // This is a cast from a vector to something else.  This is always a bit
1183     // convert.  Get information about the input vector.
1184     setValue(&I, DAG.getNode(ISD::VBIT_CONVERT, DestVT, N));
1185   }
1186 }
1187
1188 void SelectionDAGLowering::visitInsertElement(User &I) {
1189   SDOperand InVec = getValue(I.getOperand(0));
1190   SDOperand InVal = getValue(I.getOperand(1));
1191   SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1192                                 getValue(I.getOperand(2)));
1193
1194   SDOperand Num = *(InVec.Val->op_end()-2);
1195   SDOperand Typ = *(InVec.Val->op_end()-1);
1196   setValue(&I, DAG.getNode(ISD::VINSERT_VECTOR_ELT, MVT::Vector,
1197                            InVec, InVal, InIdx, Num, Typ));
1198 }
1199
1200 void SelectionDAGLowering::visitExtractElement(User &I) {
1201   SDOperand InVec = getValue(I.getOperand(0));
1202   SDOperand InIdx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(),
1203                                 getValue(I.getOperand(1)));
1204   SDOperand Typ = *(InVec.Val->op_end()-1);
1205   setValue(&I, DAG.getNode(ISD::VEXTRACT_VECTOR_ELT,
1206                            TLI.getValueType(I.getType()), InVec, InIdx));
1207 }
1208
1209 void SelectionDAGLowering::visitShuffleVector(User &I) {
1210   SDOperand V1   = getValue(I.getOperand(0));
1211   SDOperand V2   = getValue(I.getOperand(1));
1212   SDOperand Mask = getValue(I.getOperand(2));
1213
1214   SDOperand Num = *(V1.Val->op_end()-2);
1215   SDOperand Typ = *(V2.Val->op_end()-1);
1216   setValue(&I, DAG.getNode(ISD::VVECTOR_SHUFFLE, MVT::Vector,
1217                            V1, V2, Mask, Num, Typ));
1218 }
1219
1220
1221 void SelectionDAGLowering::visitGetElementPtr(User &I) {
1222   SDOperand N = getValue(I.getOperand(0));
1223   const Type *Ty = I.getOperand(0)->getType();
1224
1225   for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
1226        OI != E; ++OI) {
1227     Value *Idx = *OI;
1228     if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
1229       unsigned Field = cast<ConstantUInt>(Idx)->getValue();
1230       if (Field) {
1231         // N = N + Offset
1232         uint64_t Offset = TD->getStructLayout(StTy)->MemberOffsets[Field];
1233         N = DAG.getNode(ISD::ADD, N.getValueType(), N,
1234                         getIntPtrConstant(Offset));
1235       }
1236       Ty = StTy->getElementType(Field);
1237     } else {
1238       Ty = cast<SequentialType>(Ty)->getElementType();
1239
1240       // If this is a constant subscript, handle it quickly.
1241       if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
1242         if (CI->getRawValue() == 0) continue;
1243
1244         uint64_t Offs;
1245         if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
1246           Offs = (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
1247         else
1248           Offs = TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
1249         N = DAG.getNode(ISD::ADD, N.getValueType(), N, getIntPtrConstant(Offs));
1250         continue;
1251       }
1252       
1253       // N = N + Idx * ElementSize;
1254       uint64_t ElementSize = TD->getTypeSize(Ty);
1255       SDOperand IdxN = getValue(Idx);
1256
1257       // If the index is smaller or larger than intptr_t, truncate or extend
1258       // it.
1259       if (IdxN.getValueType() < N.getValueType()) {
1260         if (Idx->getType()->isSigned())
1261           IdxN = DAG.getNode(ISD::SIGN_EXTEND, N.getValueType(), IdxN);
1262         else
1263           IdxN = DAG.getNode(ISD::ZERO_EXTEND, N.getValueType(), IdxN);
1264       } else if (IdxN.getValueType() > N.getValueType())
1265         IdxN = DAG.getNode(ISD::TRUNCATE, N.getValueType(), IdxN);
1266
1267       // If this is a multiply by a power of two, turn it into a shl
1268       // immediately.  This is a very common case.
1269       if (isPowerOf2_64(ElementSize)) {
1270         unsigned Amt = Log2_64(ElementSize);
1271         IdxN = DAG.getNode(ISD::SHL, N.getValueType(), IdxN,
1272                            DAG.getConstant(Amt, TLI.getShiftAmountTy()));
1273         N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1274         continue;
1275       }
1276       
1277       SDOperand Scale = getIntPtrConstant(ElementSize);
1278       IdxN = DAG.getNode(ISD::MUL, N.getValueType(), IdxN, Scale);
1279       N = DAG.getNode(ISD::ADD, N.getValueType(), N, IdxN);
1280     }
1281   }
1282   setValue(&I, N);
1283 }
1284
1285 void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
1286   // If this is a fixed sized alloca in the entry block of the function,
1287   // allocate it statically on the stack.
1288   if (FuncInfo.StaticAllocaMap.count(&I))
1289     return;   // getValue will auto-populate this.
1290
1291   const Type *Ty = I.getAllocatedType();
1292   uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
1293   unsigned Align = std::max((unsigned)TLI.getTargetData()->getTypeAlignment(Ty),
1294                             I.getAlignment());
1295
1296   SDOperand AllocSize = getValue(I.getArraySize());
1297   MVT::ValueType IntPtr = TLI.getPointerTy();
1298   if (IntPtr < AllocSize.getValueType())
1299     AllocSize = DAG.getNode(ISD::TRUNCATE, IntPtr, AllocSize);
1300   else if (IntPtr > AllocSize.getValueType())
1301     AllocSize = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, AllocSize);
1302
1303   AllocSize = DAG.getNode(ISD::MUL, IntPtr, AllocSize,
1304                           getIntPtrConstant(TySize));
1305
1306   // Handle alignment.  If the requested alignment is less than or equal to the
1307   // stack alignment, ignore it and round the size of the allocation up to the
1308   // stack alignment size.  If the size is greater than the stack alignment, we
1309   // note this in the DYNAMIC_STACKALLOC node.
1310   unsigned StackAlign =
1311     TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1312   if (Align <= StackAlign) {
1313     Align = 0;
1314     // Add SA-1 to the size.
1315     AllocSize = DAG.getNode(ISD::ADD, AllocSize.getValueType(), AllocSize,
1316                             getIntPtrConstant(StackAlign-1));
1317     // Mask out the low bits for alignment purposes.
1318     AllocSize = DAG.getNode(ISD::AND, AllocSize.getValueType(), AllocSize,
1319                             getIntPtrConstant(~(uint64_t)(StackAlign-1)));
1320   }
1321
1322   std::vector<MVT::ValueType> VTs;
1323   VTs.push_back(AllocSize.getValueType());
1324   VTs.push_back(MVT::Other);
1325   std::vector<SDOperand> Ops;
1326   Ops.push_back(getRoot());
1327   Ops.push_back(AllocSize);
1328   Ops.push_back(getIntPtrConstant(Align));
1329   SDOperand DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, VTs, Ops);
1330   DAG.setRoot(setValue(&I, DSA).getValue(1));
1331
1332   // Inform the Frame Information that we have just allocated a variable-sized
1333   // object.
1334   CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
1335 }
1336
1337 void SelectionDAGLowering::visitLoad(LoadInst &I) {
1338   SDOperand Ptr = getValue(I.getOperand(0));
1339
1340   SDOperand Root;
1341   if (I.isVolatile())
1342     Root = getRoot();
1343   else {
1344     // Do not serialize non-volatile loads against each other.
1345     Root = DAG.getRoot();
1346   }
1347
1348   setValue(&I, getLoadFrom(I.getType(), Ptr, DAG.getSrcValue(I.getOperand(0)),
1349                            Root, I.isVolatile()));
1350 }
1351
1352 SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
1353                                             SDOperand SrcValue, SDOperand Root,
1354                                             bool isVolatile) {
1355   SDOperand L;
1356   if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
1357     MVT::ValueType PVT = TLI.getValueType(PTy->getElementType());
1358     L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr, SrcValue);
1359   } else {
1360     L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SrcValue);
1361   }
1362
1363   if (isVolatile)
1364     DAG.setRoot(L.getValue(1));
1365   else
1366     PendingLoads.push_back(L.getValue(1));
1367   
1368   return L;
1369 }
1370
1371
1372 void SelectionDAGLowering::visitStore(StoreInst &I) {
1373   Value *SrcV = I.getOperand(0);
1374   SDOperand Src = getValue(SrcV);
1375   SDOperand Ptr = getValue(I.getOperand(1));
1376   DAG.setRoot(DAG.getNode(ISD::STORE, MVT::Other, getRoot(), Src, Ptr,
1377                           DAG.getSrcValue(I.getOperand(1))));
1378 }
1379
1380 /// IntrinsicCannotAccessMemory - Return true if the specified intrinsic cannot
1381 /// access memory and has no other side effects at all.
1382 static bool IntrinsicCannotAccessMemory(unsigned IntrinsicID) {
1383 #define GET_NO_MEMORY_INTRINSICS
1384 #include "llvm/Intrinsics.gen"
1385 #undef GET_NO_MEMORY_INTRINSICS
1386   return false;
1387 }
1388
1389 // IntrinsicOnlyReadsMemory - Return true if the specified intrinsic doesn't
1390 // have any side-effects or if it only reads memory.
1391 static bool IntrinsicOnlyReadsMemory(unsigned IntrinsicID) {
1392 #define GET_SIDE_EFFECT_INFO
1393 #include "llvm/Intrinsics.gen"
1394 #undef GET_SIDE_EFFECT_INFO
1395   return false;
1396 }
1397
1398 /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
1399 /// node.
1400 void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, 
1401                                                 unsigned Intrinsic) {
1402   bool HasChain = !IntrinsicCannotAccessMemory(Intrinsic);
1403   bool OnlyLoad = HasChain && IntrinsicOnlyReadsMemory(Intrinsic);
1404   
1405   // Build the operand list.
1406   std::vector<SDOperand> Ops;
1407   if (HasChain) {  // If this intrinsic has side-effects, chainify it.
1408     if (OnlyLoad) {
1409       // We don't need to serialize loads against other loads.
1410       Ops.push_back(DAG.getRoot());
1411     } else { 
1412       Ops.push_back(getRoot());
1413     }
1414   }
1415   
1416   // Add the intrinsic ID as an integer operand.
1417   Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
1418
1419   // Add all operands of the call to the operand list.
1420   for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1421     SDOperand Op = getValue(I.getOperand(i));
1422     
1423     // If this is a vector type, force it to the right packed type.
1424     if (Op.getValueType() == MVT::Vector) {
1425       const PackedType *OpTy = cast<PackedType>(I.getOperand(i)->getType());
1426       MVT::ValueType EltVT = TLI.getValueType(OpTy->getElementType());
1427       
1428       MVT::ValueType VVT = MVT::getVectorType(EltVT, OpTy->getNumElements());
1429       assert(VVT != MVT::Other && "Intrinsic uses a non-legal type?");
1430       Op = DAG.getNode(ISD::VBIT_CONVERT, VVT, Op);
1431     }
1432     
1433     assert(TLI.isTypeLegal(Op.getValueType()) &&
1434            "Intrinsic uses a non-legal type?");
1435     Ops.push_back(Op);
1436   }
1437
1438   std::vector<MVT::ValueType> VTs;
1439   if (I.getType() != Type::VoidTy) {
1440     MVT::ValueType VT = TLI.getValueType(I.getType());
1441     if (VT == MVT::Vector) {
1442       const PackedType *DestTy = cast<PackedType>(I.getType());
1443       MVT::ValueType EltVT = TLI.getValueType(DestTy->getElementType());
1444       
1445       VT = MVT::getVectorType(EltVT, DestTy->getNumElements());
1446       assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
1447     }
1448     
1449     assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
1450     VTs.push_back(VT);
1451   }
1452   if (HasChain)
1453     VTs.push_back(MVT::Other);
1454
1455   // Create the node.
1456   SDOperand Result;
1457   if (!HasChain)
1458     Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VTs, Ops);
1459   else if (I.getType() != Type::VoidTy)
1460     Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, VTs, Ops);
1461   else
1462     Result = DAG.getNode(ISD::INTRINSIC_VOID, VTs, Ops);
1463
1464   if (HasChain) {
1465     SDOperand Chain = Result.getValue(Result.Val->getNumValues()-1);
1466     if (OnlyLoad)
1467       PendingLoads.push_back(Chain);
1468     else
1469       DAG.setRoot(Chain);
1470   }
1471   if (I.getType() != Type::VoidTy) {
1472     if (const PackedType *PTy = dyn_cast<PackedType>(I.getType())) {
1473       MVT::ValueType EVT = TLI.getValueType(PTy->getElementType());
1474       Result = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Result,
1475                            DAG.getConstant(PTy->getNumElements(), MVT::i32),
1476                            DAG.getValueType(EVT));
1477     } 
1478     setValue(&I, Result);
1479   }
1480 }
1481
1482 /// visitIntrinsicCall - Lower the call to the specified intrinsic function.  If
1483 /// we want to emit this as a call to a named external function, return the name
1484 /// otherwise lower it and return null.
1485 const char *
1486 SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1487   switch (Intrinsic) {
1488   default:
1489     // By default, turn this into a target intrinsic node.
1490     visitTargetIntrinsic(I, Intrinsic);
1491     return 0;
1492   case Intrinsic::vastart:  visitVAStart(I); return 0;
1493   case Intrinsic::vaend:    visitVAEnd(I); return 0;
1494   case Intrinsic::vacopy:   visitVACopy(I); return 0;
1495   case Intrinsic::returnaddress: visitFrameReturnAddress(I, false); return 0;
1496   case Intrinsic::frameaddress:  visitFrameReturnAddress(I, true); return 0;
1497   case Intrinsic::setjmp:
1498     return "_setjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1499     break;
1500   case Intrinsic::longjmp:
1501     return "_longjmp"+!TLI.usesUnderscoreSetJmpLongJmp();
1502     break;
1503   case Intrinsic::memcpy_i32:
1504   case Intrinsic::memcpy_i64:
1505     visitMemIntrinsic(I, ISD::MEMCPY);
1506     return 0;
1507   case Intrinsic::memset_i32:
1508   case Intrinsic::memset_i64:
1509     visitMemIntrinsic(I, ISD::MEMSET);
1510     return 0;
1511   case Intrinsic::memmove_i32:
1512   case Intrinsic::memmove_i64:
1513     visitMemIntrinsic(I, ISD::MEMMOVE);
1514     return 0;
1515     
1516   case Intrinsic::dbg_stoppoint: {
1517     MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1518     DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
1519     if (DebugInfo && SPI.getContext() && DebugInfo->Verify(SPI.getContext())) {
1520       std::vector<SDOperand> Ops;
1521
1522       Ops.push_back(getRoot());
1523       Ops.push_back(getValue(SPI.getLineValue()));
1524       Ops.push_back(getValue(SPI.getColumnValue()));
1525
1526       DebugInfoDesc *DD = DebugInfo->getDescFor(SPI.getContext());
1527       assert(DD && "Not a debug information descriptor");
1528       CompileUnitDesc *CompileUnit = cast<CompileUnitDesc>(DD);
1529       
1530       Ops.push_back(DAG.getString(CompileUnit->getFileName()));
1531       Ops.push_back(DAG.getString(CompileUnit->getDirectory()));
1532       
1533       DAG.setRoot(DAG.getNode(ISD::LOCATION, MVT::Other, Ops));
1534     }
1535
1536     return 0;
1537   }
1538   case Intrinsic::dbg_region_start: {
1539     MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1540     DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
1541     if (DebugInfo && RSI.getContext() && DebugInfo->Verify(RSI.getContext())) {
1542       std::vector<SDOperand> Ops;
1543
1544       unsigned LabelID = DebugInfo->RecordRegionStart(RSI.getContext());
1545       
1546       Ops.push_back(getRoot());
1547       Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1548
1549       DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1550     }
1551
1552     return 0;
1553   }
1554   case Intrinsic::dbg_region_end: {
1555     MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1556     DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
1557     if (DebugInfo && REI.getContext() && DebugInfo->Verify(REI.getContext())) {
1558       std::vector<SDOperand> Ops;
1559
1560       unsigned LabelID = DebugInfo->RecordRegionEnd(REI.getContext());
1561       
1562       Ops.push_back(getRoot());
1563       Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1564
1565       DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1566     }
1567
1568     return 0;
1569   }
1570   case Intrinsic::dbg_func_start: {
1571     MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1572     DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
1573     if (DebugInfo && FSI.getSubprogram() &&
1574         DebugInfo->Verify(FSI.getSubprogram())) {
1575       std::vector<SDOperand> Ops;
1576
1577       unsigned LabelID = DebugInfo->RecordRegionStart(FSI.getSubprogram());
1578       
1579       Ops.push_back(getRoot());
1580       Ops.push_back(DAG.getConstant(LabelID, MVT::i32));
1581
1582       DAG.setRoot(DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops));
1583     }
1584
1585     return 0;
1586   }
1587   case Intrinsic::dbg_declare: {
1588     MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
1589     DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
1590     if (DebugInfo && DI.getVariable() && DebugInfo->Verify(DI.getVariable())) {
1591       std::vector<SDOperand> Ops;
1592
1593       SDOperand AddressOp  = getValue(DI.getAddress());
1594       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(AddressOp)) {
1595         DebugInfo->RecordVariable(DI.getVariable(), FI->getIndex());
1596       }
1597     }
1598
1599     return 0;
1600   }
1601     
1602   case Intrinsic::isunordered_f32:
1603   case Intrinsic::isunordered_f64:
1604     setValue(&I, DAG.getSetCC(MVT::i1,getValue(I.getOperand(1)),
1605                               getValue(I.getOperand(2)), ISD::SETUO));
1606     return 0;
1607     
1608   case Intrinsic::sqrt_f32:
1609   case Intrinsic::sqrt_f64:
1610     setValue(&I, DAG.getNode(ISD::FSQRT,
1611                              getValue(I.getOperand(1)).getValueType(),
1612                              getValue(I.getOperand(1))));
1613     return 0;
1614   case Intrinsic::pcmarker: {
1615     SDOperand Tmp = getValue(I.getOperand(1));
1616     DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Tmp));
1617     return 0;
1618   }
1619   case Intrinsic::readcyclecounter: {
1620     std::vector<MVT::ValueType> VTs;
1621     VTs.push_back(MVT::i64);
1622     VTs.push_back(MVT::Other);
1623     std::vector<SDOperand> Ops;
1624     Ops.push_back(getRoot());
1625     SDOperand Tmp = DAG.getNode(ISD::READCYCLECOUNTER, VTs, Ops);
1626     setValue(&I, Tmp);
1627     DAG.setRoot(Tmp.getValue(1));
1628     return 0;
1629   }
1630   case Intrinsic::bswap_i16:
1631   case Intrinsic::bswap_i32:
1632   case Intrinsic::bswap_i64:
1633     setValue(&I, DAG.getNode(ISD::BSWAP,
1634                              getValue(I.getOperand(1)).getValueType(),
1635                              getValue(I.getOperand(1))));
1636     return 0;
1637   case Intrinsic::cttz_i8:
1638   case Intrinsic::cttz_i16:
1639   case Intrinsic::cttz_i32:
1640   case Intrinsic::cttz_i64:
1641     setValue(&I, DAG.getNode(ISD::CTTZ,
1642                              getValue(I.getOperand(1)).getValueType(),
1643                              getValue(I.getOperand(1))));
1644     return 0;
1645   case Intrinsic::ctlz_i8:
1646   case Intrinsic::ctlz_i16:
1647   case Intrinsic::ctlz_i32:
1648   case Intrinsic::ctlz_i64:
1649     setValue(&I, DAG.getNode(ISD::CTLZ,
1650                              getValue(I.getOperand(1)).getValueType(),
1651                              getValue(I.getOperand(1))));
1652     return 0;
1653   case Intrinsic::ctpop_i8:
1654   case Intrinsic::ctpop_i16:
1655   case Intrinsic::ctpop_i32:
1656   case Intrinsic::ctpop_i64:
1657     setValue(&I, DAG.getNode(ISD::CTPOP,
1658                              getValue(I.getOperand(1)).getValueType(),
1659                              getValue(I.getOperand(1))));
1660     return 0;
1661   case Intrinsic::stacksave: {
1662     std::vector<MVT::ValueType> VTs;
1663     VTs.push_back(TLI.getPointerTy());
1664     VTs.push_back(MVT::Other);
1665     std::vector<SDOperand> Ops;
1666     Ops.push_back(getRoot());
1667     SDOperand Tmp = DAG.getNode(ISD::STACKSAVE, VTs, Ops);
1668     setValue(&I, Tmp);
1669     DAG.setRoot(Tmp.getValue(1));
1670     return 0;
1671   }
1672   case Intrinsic::stackrestore: {
1673     SDOperand Tmp = getValue(I.getOperand(1));
1674     DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, MVT::Other, getRoot(), Tmp));
1675     return 0;
1676   }
1677   case Intrinsic::prefetch:
1678     // FIXME: Currently discarding prefetches.
1679     return 0;
1680   }
1681 }
1682
1683
1684 void SelectionDAGLowering::visitCall(CallInst &I) {
1685   const char *RenameFn = 0;
1686   if (Function *F = I.getCalledFunction()) {
1687     if (F->isExternal())
1688       if (unsigned IID = F->getIntrinsicID()) {
1689         RenameFn = visitIntrinsicCall(I, IID);
1690         if (!RenameFn)
1691           return;
1692       } else {    // Not an LLVM intrinsic.
1693         const std::string &Name = F->getName();
1694         if (Name[0] == 'c' && (Name == "copysign" || Name == "copysignf")) {
1695           if (I.getNumOperands() == 3 &&   // Basic sanity checks.
1696               I.getOperand(1)->getType()->isFloatingPoint() &&
1697               I.getType() == I.getOperand(1)->getType() &&
1698               I.getType() == I.getOperand(2)->getType()) {
1699             SDOperand LHS = getValue(I.getOperand(1));
1700             SDOperand RHS = getValue(I.getOperand(2));
1701             setValue(&I, DAG.getNode(ISD::FCOPYSIGN, LHS.getValueType(),
1702                                      LHS, RHS));
1703             return;
1704           }
1705         } else if (Name[0] == 'f' && (Name == "fabs" || Name == "fabsf")) {
1706           if (I.getNumOperands() == 2 &&   // Basic sanity checks.
1707               I.getOperand(1)->getType()->isFloatingPoint() &&
1708               I.getType() == I.getOperand(1)->getType()) {
1709             SDOperand Tmp = getValue(I.getOperand(1));
1710             setValue(&I, DAG.getNode(ISD::FABS, Tmp.getValueType(), Tmp));
1711             return;
1712           }
1713         } else if (Name[0] == 's' && (Name == "sin" || Name == "sinf")) {
1714           if (I.getNumOperands() == 2 &&   // Basic sanity checks.
1715               I.getOperand(1)->getType()->isFloatingPoint() &&
1716               I.getType() == I.getOperand(1)->getType()) {
1717             SDOperand Tmp = getValue(I.getOperand(1));
1718             setValue(&I, DAG.getNode(ISD::FSIN, Tmp.getValueType(), Tmp));
1719             return;
1720           }
1721         } else if (Name[0] == 'c' && (Name == "cos" || Name == "cosf")) {
1722           if (I.getNumOperands() == 2 &&   // Basic sanity checks.
1723               I.getOperand(1)->getType()->isFloatingPoint() &&
1724               I.getType() == I.getOperand(1)->getType()) {
1725             SDOperand Tmp = getValue(I.getOperand(1));
1726             setValue(&I, DAG.getNode(ISD::FCOS, Tmp.getValueType(), Tmp));
1727             return;
1728           }
1729         }
1730       }
1731   } else if (isa<InlineAsm>(I.getOperand(0))) {
1732     visitInlineAsm(I);
1733     return;
1734   }
1735
1736   SDOperand Callee;
1737   if (!RenameFn)
1738     Callee = getValue(I.getOperand(0));
1739   else
1740     Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
1741   std::vector<std::pair<SDOperand, const Type*> > Args;
1742   Args.reserve(I.getNumOperands());
1743   for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1744     Value *Arg = I.getOperand(i);
1745     SDOperand ArgNode = getValue(Arg);
1746     Args.push_back(std::make_pair(ArgNode, Arg->getType()));
1747   }
1748
1749   const PointerType *PT = cast<PointerType>(I.getCalledValue()->getType());
1750   const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1751
1752   std::pair<SDOperand,SDOperand> Result =
1753     TLI.LowerCallTo(getRoot(), I.getType(), FTy->isVarArg(), I.getCallingConv(),
1754                     I.isTailCall(), Callee, Args, DAG);
1755   if (I.getType() != Type::VoidTy)
1756     setValue(&I, Result.first);
1757   DAG.setRoot(Result.second);
1758 }
1759
1760 SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
1761                                         SDOperand &Chain, SDOperand &Flag)const{
1762   SDOperand Val = DAG.getCopyFromReg(Chain, Regs[0], RegVT, Flag);
1763   Chain = Val.getValue(1);
1764   Flag  = Val.getValue(2);
1765   
1766   // If the result was expanded, copy from the top part.
1767   if (Regs.size() > 1) {
1768     assert(Regs.size() == 2 &&
1769            "Cannot expand to more than 2 elts yet!");
1770     SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
1771     Chain = Val.getValue(1);
1772     Flag  = Val.getValue(2);
1773     if (DAG.getTargetLoweringInfo().isLittleEndian())
1774       return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
1775     else
1776       return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Hi, Val);
1777   }
1778
1779   // Otherwise, if the return value was promoted, truncate it to the
1780   // appropriate type.
1781   if (RegVT == ValueVT)
1782     return Val;
1783   
1784   if (MVT::isInteger(RegVT))
1785     return DAG.getNode(ISD::TRUNCATE, ValueVT, Val);
1786   else
1787     return DAG.getNode(ISD::FP_ROUND, ValueVT, Val);
1788 }
1789
1790 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
1791 /// specified value into the registers specified by this object.  This uses 
1792 /// Chain/Flag as the input and updates them for the output Chain/Flag.
1793 void RegsForValue::getCopyToRegs(SDOperand Val, SelectionDAG &DAG,
1794                                  SDOperand &Chain, SDOperand &Flag) const {
1795   if (Regs.size() == 1) {
1796     // If there is a single register and the types differ, this must be
1797     // a promotion.
1798     if (RegVT != ValueVT) {
1799       if (MVT::isInteger(RegVT))
1800         Val = DAG.getNode(ISD::ANY_EXTEND, RegVT, Val);
1801       else
1802         Val = DAG.getNode(ISD::FP_EXTEND, RegVT, Val);
1803     }
1804     Chain = DAG.getCopyToReg(Chain, Regs[0], Val, Flag);
1805     Flag = Chain.getValue(1);
1806   } else {
1807     std::vector<unsigned> R(Regs);
1808     if (!DAG.getTargetLoweringInfo().isLittleEndian())
1809       std::reverse(R.begin(), R.end());
1810     
1811     for (unsigned i = 0, e = R.size(); i != e; ++i) {
1812       SDOperand Part = DAG.getNode(ISD::EXTRACT_ELEMENT, RegVT, Val, 
1813                                    DAG.getConstant(i, MVT::i32));
1814       Chain = DAG.getCopyToReg(Chain, R[i], Part, Flag);
1815       Flag = Chain.getValue(1);
1816     }
1817   }
1818 }
1819
1820 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
1821 /// operand list.  This adds the code marker and includes the number of 
1822 /// values added into it.
1823 void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
1824                                         std::vector<SDOperand> &Ops) const {
1825   Ops.push_back(DAG.getConstant(Code | (Regs.size() << 3), MVT::i32));
1826   for (unsigned i = 0, e = Regs.size(); i != e; ++i)
1827     Ops.push_back(DAG.getRegister(Regs[i], RegVT));
1828 }
1829
1830 /// isAllocatableRegister - If the specified register is safe to allocate, 
1831 /// i.e. it isn't a stack pointer or some other special register, return the
1832 /// register class for the register.  Otherwise, return null.
1833 static const TargetRegisterClass *
1834 isAllocatableRegister(unsigned Reg, MachineFunction &MF,
1835                       const TargetLowering &TLI, const MRegisterInfo *MRI) {
1836   MVT::ValueType FoundVT = MVT::Other;
1837   const TargetRegisterClass *FoundRC = 0;
1838   for (MRegisterInfo::regclass_iterator RCI = MRI->regclass_begin(),
1839        E = MRI->regclass_end(); RCI != E; ++RCI) {
1840     MVT::ValueType ThisVT = MVT::Other;
1841
1842     const TargetRegisterClass *RC = *RCI;
1843     // If none of the the value types for this register class are valid, we 
1844     // can't use it.  For example, 64-bit reg classes on 32-bit targets.
1845     for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1846          I != E; ++I) {
1847       if (TLI.isTypeLegal(*I)) {
1848         // If we have already found this register in a different register class,
1849         // choose the one with the largest VT specified.  For example, on
1850         // PowerPC, we favor f64 register classes over f32.
1851         if (FoundVT == MVT::Other || 
1852             MVT::getSizeInBits(FoundVT) < MVT::getSizeInBits(*I)) {
1853           ThisVT = *I;
1854           break;
1855         }
1856       }
1857     }
1858     
1859     if (ThisVT == MVT::Other) continue;
1860     
1861     // NOTE: This isn't ideal.  In particular, this might allocate the
1862     // frame pointer in functions that need it (due to them not being taken
1863     // out of allocation, because a variable sized allocation hasn't been seen
1864     // yet).  This is a slight code pessimization, but should still work.
1865     for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
1866          E = RC->allocation_order_end(MF); I != E; ++I)
1867       if (*I == Reg) {
1868         // We found a matching register class.  Keep looking at others in case
1869         // we find one with larger registers that this physreg is also in.
1870         FoundRC = RC;
1871         FoundVT = ThisVT;
1872         break;
1873       }
1874   }
1875   return FoundRC;
1876 }    
1877
1878 RegsForValue SelectionDAGLowering::
1879 GetRegistersForValue(const std::string &ConstrCode,
1880                      MVT::ValueType VT, bool isOutReg, bool isInReg,
1881                      std::set<unsigned> &OutputRegs, 
1882                      std::set<unsigned> &InputRegs) {
1883   std::pair<unsigned, const TargetRegisterClass*> PhysReg = 
1884     TLI.getRegForInlineAsmConstraint(ConstrCode, VT);
1885   std::vector<unsigned> Regs;
1886
1887   unsigned NumRegs = VT != MVT::Other ? TLI.getNumElements(VT) : 1;
1888   MVT::ValueType RegVT;
1889   MVT::ValueType ValueVT = VT;
1890   
1891   if (PhysReg.first) {
1892     if (VT == MVT::Other)
1893       ValueVT = *PhysReg.second->vt_begin();
1894     RegVT = VT;
1895     
1896     // This is a explicit reference to a physical register.
1897     Regs.push_back(PhysReg.first);
1898
1899     // If this is an expanded reference, add the rest of the regs to Regs.
1900     if (NumRegs != 1) {
1901       RegVT = *PhysReg.second->vt_begin();
1902       TargetRegisterClass::iterator I = PhysReg.second->begin();
1903       TargetRegisterClass::iterator E = PhysReg.second->end();
1904       for (; *I != PhysReg.first; ++I)
1905         assert(I != E && "Didn't find reg!"); 
1906       
1907       // Already added the first reg.
1908       --NumRegs; ++I;
1909       for (; NumRegs; --NumRegs, ++I) {
1910         assert(I != E && "Ran out of registers to allocate!");
1911         Regs.push_back(*I);
1912       }
1913     }
1914     return RegsForValue(Regs, RegVT, ValueVT);
1915   }
1916   
1917   // This is a reference to a register class.  Allocate NumRegs consecutive,
1918   // available, registers from the class.
1919   std::vector<unsigned> RegClassRegs =
1920     TLI.getRegClassForInlineAsmConstraint(ConstrCode, VT);
1921
1922   const MRegisterInfo *MRI = DAG.getTarget().getRegisterInfo();
1923   MachineFunction &MF = *CurMBB->getParent();
1924   unsigned NumAllocated = 0;
1925   for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
1926     unsigned Reg = RegClassRegs[i];
1927     // See if this register is available.
1928     if ((isOutReg && OutputRegs.count(Reg)) ||   // Already used.
1929         (isInReg  && InputRegs.count(Reg))) {    // Already used.
1930       // Make sure we find consecutive registers.
1931       NumAllocated = 0;
1932       continue;
1933     }
1934     
1935     // Check to see if this register is allocatable (i.e. don't give out the
1936     // stack pointer).
1937     const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, MRI);
1938     if (!RC) {
1939       // Make sure we find consecutive registers.
1940       NumAllocated = 0;
1941       continue;
1942     }
1943     
1944     // Okay, this register is good, we can use it.
1945     ++NumAllocated;
1946
1947     // If we allocated enough consecutive   
1948     if (NumAllocated == NumRegs) {
1949       unsigned RegStart = (i-NumAllocated)+1;
1950       unsigned RegEnd   = i+1;
1951       // Mark all of the allocated registers used.
1952       for (unsigned i = RegStart; i != RegEnd; ++i) {
1953         unsigned Reg = RegClassRegs[i];
1954         Regs.push_back(Reg);
1955         if (isOutReg) OutputRegs.insert(Reg);    // Mark reg used.
1956         if (isInReg)  InputRegs.insert(Reg);     // Mark reg used.
1957       }
1958       
1959       return RegsForValue(Regs, *RC->vt_begin(), VT);
1960     }
1961   }
1962   
1963   // Otherwise, we couldn't allocate enough registers for this.
1964   return RegsForValue();
1965 }
1966
1967
1968 /// visitInlineAsm - Handle a call to an InlineAsm object.
1969 ///
1970 void SelectionDAGLowering::visitInlineAsm(CallInst &I) {
1971   InlineAsm *IA = cast<InlineAsm>(I.getOperand(0));
1972   
1973   SDOperand AsmStr = DAG.getTargetExternalSymbol(IA->getAsmString().c_str(),
1974                                                  MVT::Other);
1975
1976   // Note, we treat inline asms both with and without side-effects as the same.
1977   // If an inline asm doesn't have side effects and doesn't access memory, we
1978   // could not choose to not chain it.
1979   bool hasSideEffects = IA->hasSideEffects();
1980
1981   std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
1982   std::vector<MVT::ValueType> ConstraintVTs;
1983   
1984   /// AsmNodeOperands - A list of pairs.  The first element is a register, the
1985   /// second is a bitfield where bit #0 is set if it is a use and bit #1 is set
1986   /// if it is a def of that register.
1987   std::vector<SDOperand> AsmNodeOperands;
1988   AsmNodeOperands.push_back(SDOperand());  // reserve space for input chain
1989   AsmNodeOperands.push_back(AsmStr);
1990   
1991   SDOperand Chain = getRoot();
1992   SDOperand Flag;
1993   
1994   // We fully assign registers here at isel time.  This is not optimal, but
1995   // should work.  For register classes that correspond to LLVM classes, we
1996   // could let the LLVM RA do its thing, but we currently don't.  Do a prepass
1997   // over the constraints, collecting fixed registers that we know we can't use.
1998   std::set<unsigned> OutputRegs, InputRegs;
1999   unsigned OpNum = 1;
2000   for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
2001     assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2002     std::string &ConstraintCode = Constraints[i].Codes[0];
2003     
2004     MVT::ValueType OpVT;
2005
2006     // Compute the value type for each operand and add it to ConstraintVTs.
2007     switch (Constraints[i].Type) {
2008     case InlineAsm::isOutput:
2009       if (!Constraints[i].isIndirectOutput) {
2010         assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2011         OpVT = TLI.getValueType(I.getType());
2012       } else {
2013         const Type *OpTy = I.getOperand(OpNum)->getType();
2014         OpVT = TLI.getValueType(cast<PointerType>(OpTy)->getElementType());
2015         OpNum++;  // Consumes a call operand.
2016       }
2017       break;
2018     case InlineAsm::isInput:
2019       OpVT = TLI.getValueType(I.getOperand(OpNum)->getType());
2020       OpNum++;  // Consumes a call operand.
2021       break;
2022     case InlineAsm::isClobber:
2023       OpVT = MVT::Other;
2024       break;
2025     }
2026     
2027     ConstraintVTs.push_back(OpVT);
2028
2029     if (TLI.getRegForInlineAsmConstraint(ConstraintCode, OpVT).first == 0)
2030       continue;  // Not assigned a fixed reg.
2031     
2032     // Build a list of regs that this operand uses.  This always has a single
2033     // element for promoted/expanded operands.
2034     RegsForValue Regs = GetRegistersForValue(ConstraintCode, OpVT,
2035                                              false, false,
2036                                              OutputRegs, InputRegs);
2037     
2038     switch (Constraints[i].Type) {
2039     case InlineAsm::isOutput:
2040       // We can't assign any other output to this register.
2041       OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2042       // If this is an early-clobber output, it cannot be assigned to the same
2043       // value as the input reg.
2044       if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2045         InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2046       break;
2047     case InlineAsm::isInput:
2048       // We can't assign any other input to this register.
2049       InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2050       break;
2051     case InlineAsm::isClobber:
2052       // Clobbered regs cannot be used as inputs or outputs.
2053       InputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2054       OutputRegs.insert(Regs.Regs.begin(), Regs.Regs.end());
2055       break;
2056     }
2057   }      
2058   
2059   // Loop over all of the inputs, copying the operand values into the
2060   // appropriate registers and processing the output regs.
2061   RegsForValue RetValRegs;
2062   std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
2063   OpNum = 1;
2064   
2065   for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
2066     assert(Constraints[i].Codes.size() == 1 && "Only handles one code so far!");
2067     std::string &ConstraintCode = Constraints[i].Codes[0];
2068
2069     switch (Constraints[i].Type) {
2070     case InlineAsm::isOutput: {
2071       TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2072       if (ConstraintCode.size() == 1)   // not a physreg name.
2073         CTy = TLI.getConstraintType(ConstraintCode[0]);
2074       
2075       if (CTy == TargetLowering::C_Memory) {
2076         // Memory output.
2077         SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2078         
2079         // Check that the operand (the address to store to) isn't a float.
2080         if (!MVT::isInteger(InOperandVal.getValueType()))
2081           assert(0 && "MATCH FAIL!");
2082         
2083         if (!Constraints[i].isIndirectOutput)
2084           assert(0 && "MATCH FAIL!");
2085
2086         OpNum++;  // Consumes a call operand.
2087         
2088         // Extend/truncate to the right pointer type if needed.
2089         MVT::ValueType PtrType = TLI.getPointerTy();
2090         if (InOperandVal.getValueType() < PtrType)
2091           InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2092         else if (InOperandVal.getValueType() > PtrType)
2093           InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2094         
2095         // Add information to the INLINEASM node to know about this output.
2096         unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2097         AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2098         AsmNodeOperands.push_back(InOperandVal);
2099         break;
2100       }
2101
2102       // Otherwise, this is a register output.
2103       assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2104
2105       // If this is an early-clobber output, or if there is an input
2106       // constraint that matches this, we need to reserve the input register
2107       // so no other inputs allocate to it.
2108       bool UsesInputRegister = false;
2109       if (Constraints[i].isEarlyClobber || Constraints[i].hasMatchingInput)
2110         UsesInputRegister = true;
2111       
2112       // Copy the output from the appropriate register.  Find a register that
2113       // we can use.
2114       RegsForValue Regs =
2115         GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2116                              true, UsesInputRegister, 
2117                              OutputRegs, InputRegs);
2118       assert(!Regs.Regs.empty() && "Couldn't allocate output reg!");
2119
2120       if (!Constraints[i].isIndirectOutput) {
2121         assert(RetValRegs.Regs.empty() &&
2122                "Cannot have multiple output constraints yet!");
2123         assert(I.getType() != Type::VoidTy && "Bad inline asm!");
2124         RetValRegs = Regs;
2125       } else {
2126         IndirectStoresToEmit.push_back(std::make_pair(Regs, 
2127                                                       I.getOperand(OpNum)));
2128         OpNum++;  // Consumes a call operand.
2129       }
2130       
2131       // Add information to the INLINEASM node to know that this register is
2132       // set.
2133       Regs.AddInlineAsmOperands(2 /*REGDEF*/, DAG, AsmNodeOperands);
2134       break;
2135     }
2136     case InlineAsm::isInput: {
2137       SDOperand InOperandVal = getValue(I.getOperand(OpNum));
2138       OpNum++;  // Consumes a call operand.
2139       
2140       if (isdigit(ConstraintCode[0])) {    // Matching constraint?
2141         // If this is required to match an output register we have already set,
2142         // just use its register.
2143         unsigned OperandNo = atoi(ConstraintCode.c_str());
2144         
2145         // Scan until we find the definition we already emitted of this operand.
2146         // When we find it, create a RegsForValue operand.
2147         unsigned CurOp = 2;  // The first operand.
2148         for (; OperandNo; --OperandNo) {
2149           // Advance to the next operand.
2150           unsigned NumOps = 
2151             cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2152           assert((NumOps & 7) == 2 /*REGDEF*/ &&
2153                  "Skipped past definitions?");
2154           CurOp += (NumOps>>3)+1;
2155         }
2156
2157         unsigned NumOps = 
2158           cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getValue();
2159         assert((NumOps & 7) == 2 /*REGDEF*/ &&
2160                "Skipped past definitions?");
2161         
2162         // Add NumOps>>3 registers to MatchedRegs.
2163         RegsForValue MatchedRegs;
2164         MatchedRegs.ValueVT = InOperandVal.getValueType();
2165         MatchedRegs.RegVT   = AsmNodeOperands[CurOp+1].getValueType();
2166         for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
2167           unsigned Reg=cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
2168           MatchedRegs.Regs.push_back(Reg);
2169         }
2170         
2171         // Use the produced MatchedRegs object to 
2172         MatchedRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2173         MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
2174         break;
2175       }
2176       
2177       TargetLowering::ConstraintType CTy = TargetLowering::C_RegisterClass;
2178       if (ConstraintCode.size() == 1)   // not a physreg name.
2179         CTy = TLI.getConstraintType(ConstraintCode[0]);
2180         
2181       if (CTy == TargetLowering::C_Other) {
2182         if (!TLI.isOperandValidForConstraint(InOperandVal, ConstraintCode[0]))
2183           assert(0 && "MATCH FAIL!");
2184         
2185         // Add information to the INLINEASM node to know about this input.
2186         unsigned ResOpType = 3 /*IMM*/ | (1 << 3);
2187         AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2188         AsmNodeOperands.push_back(InOperandVal);
2189         break;
2190       } else if (CTy == TargetLowering::C_Memory) {
2191         // Memory input.
2192         
2193         // Check that the operand isn't a float.
2194         if (!MVT::isInteger(InOperandVal.getValueType()))
2195           assert(0 && "MATCH FAIL!");
2196         
2197         // Extend/truncate to the right pointer type if needed.
2198         MVT::ValueType PtrType = TLI.getPointerTy();
2199         if (InOperandVal.getValueType() < PtrType)
2200           InOperandVal = DAG.getNode(ISD::ZERO_EXTEND, PtrType, InOperandVal);
2201         else if (InOperandVal.getValueType() > PtrType)
2202           InOperandVal = DAG.getNode(ISD::TRUNCATE, PtrType, InOperandVal);
2203
2204         // Add information to the INLINEASM node to know about this input.
2205         unsigned ResOpType = 4/*MEM*/ | (1 << 3);
2206         AsmNodeOperands.push_back(DAG.getConstant(ResOpType, MVT::i32));
2207         AsmNodeOperands.push_back(InOperandVal);
2208         break;
2209       }
2210         
2211       assert(CTy == TargetLowering::C_RegisterClass && "Unknown op type!");
2212
2213       // Copy the input into the appropriate registers.
2214       RegsForValue InRegs =
2215         GetRegistersForValue(ConstraintCode, ConstraintVTs[i],
2216                              false, true, OutputRegs, InputRegs);
2217       // FIXME: should be match fail.
2218       assert(!InRegs.Regs.empty() && "Couldn't allocate input reg!");
2219
2220       InRegs.getCopyToRegs(InOperandVal, DAG, Chain, Flag);
2221       
2222       InRegs.AddInlineAsmOperands(1/*REGUSE*/, DAG, AsmNodeOperands);
2223       break;
2224     }
2225     case InlineAsm::isClobber: {
2226       RegsForValue ClobberedRegs =
2227         GetRegistersForValue(ConstraintCode, MVT::Other, false, false,
2228                              OutputRegs, InputRegs);
2229       // Add the clobbered value to the operand list, so that the register
2230       // allocator is aware that the physreg got clobbered.
2231       if (!ClobberedRegs.Regs.empty())
2232         ClobberedRegs.AddInlineAsmOperands(2/*REGDEF*/, DAG, AsmNodeOperands);
2233       break;
2234     }
2235     }
2236   }
2237   
2238   // Finish up input operands.
2239   AsmNodeOperands[0] = Chain;
2240   if (Flag.Val) AsmNodeOperands.push_back(Flag);
2241   
2242   std::vector<MVT::ValueType> VTs;
2243   VTs.push_back(MVT::Other);
2244   VTs.push_back(MVT::Flag);
2245   Chain = DAG.getNode(ISD::INLINEASM, VTs, AsmNodeOperands);
2246   Flag = Chain.getValue(1);
2247
2248   // If this asm returns a register value, copy the result from that register
2249   // and set it as the value of the call.
2250   if (!RetValRegs.Regs.empty())
2251     setValue(&I, RetValRegs.getCopyFromRegs(DAG, Chain, Flag));
2252   
2253   std::vector<std::pair<SDOperand, Value*> > StoresToEmit;
2254   
2255   // Process indirect outputs, first output all of the flagged copies out of
2256   // physregs.
2257   for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
2258     RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
2259     Value *Ptr = IndirectStoresToEmit[i].second;
2260     SDOperand OutVal = OutRegs.getCopyFromRegs(DAG, Chain, Flag);
2261     StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
2262   }
2263   
2264   // Emit the non-flagged stores from the physregs.
2265   std::vector<SDOperand> OutChains;
2266   for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
2267     OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain, 
2268                                     StoresToEmit[i].first,
2269                                     getValue(StoresToEmit[i].second),
2270                                     DAG.getSrcValue(StoresToEmit[i].second)));
2271   if (!OutChains.empty())
2272     Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
2273   DAG.setRoot(Chain);
2274 }
2275
2276
2277 void SelectionDAGLowering::visitMalloc(MallocInst &I) {
2278   SDOperand Src = getValue(I.getOperand(0));
2279
2280   MVT::ValueType IntPtr = TLI.getPointerTy();
2281
2282   if (IntPtr < Src.getValueType())
2283     Src = DAG.getNode(ISD::TRUNCATE, IntPtr, Src);
2284   else if (IntPtr > Src.getValueType())
2285     Src = DAG.getNode(ISD::ZERO_EXTEND, IntPtr, Src);
2286
2287   // Scale the source by the type size.
2288   uint64_t ElementSize = TD->getTypeSize(I.getType()->getElementType());
2289   Src = DAG.getNode(ISD::MUL, Src.getValueType(),
2290                     Src, getIntPtrConstant(ElementSize));
2291
2292   std::vector<std::pair<SDOperand, const Type*> > Args;
2293   Args.push_back(std::make_pair(Src, TLI.getTargetData()->getIntPtrType()));
2294
2295   std::pair<SDOperand,SDOperand> Result =
2296     TLI.LowerCallTo(getRoot(), I.getType(), false, CallingConv::C, true,
2297                     DAG.getExternalSymbol("malloc", IntPtr),
2298                     Args, DAG);
2299   setValue(&I, Result.first);  // Pointers always fit in registers
2300   DAG.setRoot(Result.second);
2301 }
2302
2303 void SelectionDAGLowering::visitFree(FreeInst &I) {
2304   std::vector<std::pair<SDOperand, const Type*> > Args;
2305   Args.push_back(std::make_pair(getValue(I.getOperand(0)),
2306                                 TLI.getTargetData()->getIntPtrType()));
2307   MVT::ValueType IntPtr = TLI.getPointerTy();
2308   std::pair<SDOperand,SDOperand> Result =
2309     TLI.LowerCallTo(getRoot(), Type::VoidTy, false, CallingConv::C, true,
2310                     DAG.getExternalSymbol("free", IntPtr), Args, DAG);
2311   DAG.setRoot(Result.second);
2312 }
2313
2314 // InsertAtEndOfBasicBlock - This method should be implemented by targets that
2315 // mark instructions with the 'usesCustomDAGSchedInserter' flag.  These
2316 // instructions are special in various ways, which require special support to
2317 // insert.  The specified MachineInstr is created but not inserted into any
2318 // basic blocks, and the scheduler passes ownership of it to this method.
2319 MachineBasicBlock *TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
2320                                                        MachineBasicBlock *MBB) {
2321   std::cerr << "If a target marks an instruction with "
2322                "'usesCustomDAGSchedInserter', it must implement "
2323                "TargetLowering::InsertAtEndOfBasicBlock!\n";
2324   abort();
2325   return 0;  
2326 }
2327
2328 void SelectionDAGLowering::visitVAStart(CallInst &I) {
2329   DAG.setRoot(DAG.getNode(ISD::VASTART, MVT::Other, getRoot(), 
2330                           getValue(I.getOperand(1)), 
2331                           DAG.getSrcValue(I.getOperand(1))));
2332 }
2333
2334 void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
2335   SDOperand V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
2336                              getValue(I.getOperand(0)),
2337                              DAG.getSrcValue(I.getOperand(0)));
2338   setValue(&I, V);
2339   DAG.setRoot(V.getValue(1));
2340 }
2341
2342 void SelectionDAGLowering::visitVAEnd(CallInst &I) {
2343   DAG.setRoot(DAG.getNode(ISD::VAEND, MVT::Other, getRoot(),
2344                           getValue(I.getOperand(1)), 
2345                           DAG.getSrcValue(I.getOperand(1))));
2346 }
2347
2348 void SelectionDAGLowering::visitVACopy(CallInst &I) {
2349   DAG.setRoot(DAG.getNode(ISD::VACOPY, MVT::Other, getRoot(), 
2350                           getValue(I.getOperand(1)), 
2351                           getValue(I.getOperand(2)),
2352                           DAG.getSrcValue(I.getOperand(1)),
2353                           DAG.getSrcValue(I.getOperand(2))));
2354 }
2355
2356 /// TargetLowering::LowerArguments - This is the default LowerArguments
2357 /// implementation, which just inserts a FORMAL_ARGUMENTS node.  FIXME: When all
2358 /// targets are migrated to using FORMAL_ARGUMENTS, this hook should be 
2359 /// integrated into SDISel.
2360 std::vector<SDOperand> 
2361 TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
2362   // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
2363   std::vector<SDOperand> Ops;
2364   Ops.push_back(DAG.getRoot());
2365   Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
2366   Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
2367
2368   // Add one result value for each formal argument.
2369   std::vector<MVT::ValueType> RetVals;
2370   for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2371     MVT::ValueType VT = getValueType(I->getType());
2372     
2373     switch (getTypeAction(VT)) {
2374     default: assert(0 && "Unknown type action!");
2375     case Legal: 
2376       RetVals.push_back(VT);
2377       break;
2378     case Promote:
2379       RetVals.push_back(getTypeToTransformTo(VT));
2380       break;
2381     case Expand:
2382       if (VT != MVT::Vector) {
2383         // If this is a large integer, it needs to be broken up into small
2384         // integers.  Figure out what the destination type is and how many small
2385         // integers it turns into.
2386         MVT::ValueType NVT = getTypeToTransformTo(VT);
2387         unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2388         for (unsigned i = 0; i != NumVals; ++i)
2389           RetVals.push_back(NVT);
2390       } else {
2391         // Otherwise, this is a vector type.  We only support legal vectors
2392         // right now.
2393         unsigned NumElems = cast<PackedType>(I->getType())->getNumElements();
2394         const Type *EltTy = cast<PackedType>(I->getType())->getElementType();
2395
2396         // Figure out if there is a Packed type corresponding to this Vector
2397         // type.  If so, convert to the packed type.
2398         MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2399         if (TVT != MVT::Other && isTypeLegal(TVT)) {
2400           RetVals.push_back(TVT);
2401         } else {
2402           assert(0 && "Don't support illegal by-val vector arguments yet!");
2403         }
2404       }
2405       break;
2406     }
2407   }
2408
2409   RetVals.push_back(MVT::Other);
2410   
2411   // Create the node.
2412   SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, RetVals, Ops).Val;
2413   
2414   DAG.setRoot(SDOperand(Result, Result->getNumValues()-1));
2415
2416   // Set up the return result vector.
2417   Ops.clear();
2418   unsigned i = 0;
2419   for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
2420     MVT::ValueType VT = getValueType(I->getType());
2421     
2422     switch (getTypeAction(VT)) {
2423     default: assert(0 && "Unknown type action!");
2424     case Legal: 
2425       Ops.push_back(SDOperand(Result, i++));
2426       break;
2427     case Promote: {
2428       SDOperand Op(Result, i++);
2429       if (MVT::isInteger(VT)) {
2430         unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext 
2431                                                      : ISD::AssertZext;
2432         Op = DAG.getNode(AssertOp, Op.getValueType(), Op, DAG.getValueType(VT));
2433         Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2434       } else {
2435         assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2436         Op = DAG.getNode(ISD::FP_ROUND, VT, Op);
2437       }
2438       Ops.push_back(Op);
2439       break;
2440     }
2441     case Expand:
2442       if (VT != MVT::Vector) {
2443         // If this is a large integer, it needs to be reassembled from small
2444         // integers.  Figure out what the source elt type is and how many small
2445         // integers it is.
2446         MVT::ValueType NVT = getTypeToTransformTo(VT);
2447         unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2448         if (NumVals == 2) {
2449           SDOperand Lo = SDOperand(Result, i++);
2450           SDOperand Hi = SDOperand(Result, i++);
2451           
2452           if (!isLittleEndian())
2453             std::swap(Lo, Hi);
2454             
2455           Ops.push_back(DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi));
2456         } else {
2457           // Value scalarized into many values.  Unimp for now.
2458           assert(0 && "Cannot expand i64 -> i16 yet!");
2459         }
2460       } else {
2461         // Otherwise, this is a vector type.  We only support legal vectors
2462         // right now.
2463         const PackedType *PTy = cast<PackedType>(I->getType());
2464         unsigned NumElems = PTy->getNumElements();
2465         const Type *EltTy = PTy->getElementType();
2466
2467         // Figure out if there is a Packed type corresponding to this Vector
2468         // type.  If so, convert to the packed type.
2469         MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2470         if (TVT != MVT::Other && isTypeLegal(TVT)) {
2471           SDOperand N = SDOperand(Result, i++);
2472           // Handle copies from generic vectors to registers.
2473           N = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, N,
2474                           DAG.getConstant(NumElems, MVT::i32), 
2475                           DAG.getValueType(getValueType(EltTy)));
2476           Ops.push_back(N);
2477         } else {
2478           assert(0 && "Don't support illegal by-val vector arguments yet!");
2479           abort();
2480         }
2481       }
2482       break;
2483     }
2484   }
2485   return Ops;
2486 }
2487
2488
2489 /// TargetLowering::LowerCallTo - This is the default LowerCallTo
2490 /// implementation, which just inserts an ISD::CALL node, which is later custom
2491 /// lowered by the target to something concrete.  FIXME: When all targets are
2492 /// migrated to using ISD::CALL, this hook should be integrated into SDISel.
2493 std::pair<SDOperand, SDOperand>
2494 TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
2495                             unsigned CallingConv, bool isTailCall, 
2496                             SDOperand Callee,
2497                             ArgListTy &Args, SelectionDAG &DAG) {
2498   std::vector<SDOperand> Ops;
2499   Ops.push_back(Chain);   // Op#0 - Chain
2500   Ops.push_back(DAG.getConstant(CallingConv, getPointerTy())); // Op#1 - CC
2501   Ops.push_back(DAG.getConstant(isVarArg, getPointerTy()));    // Op#2 - VarArg
2502   Ops.push_back(DAG.getConstant(isTailCall, getPointerTy()));  // Op#3 - Tail
2503   Ops.push_back(Callee);
2504   
2505   // Handle all of the outgoing arguments.
2506   for (unsigned i = 0, e = Args.size(); i != e; ++i) {
2507     MVT::ValueType VT = getValueType(Args[i].second);
2508     SDOperand Op = Args[i].first;
2509     switch (getTypeAction(VT)) {
2510     default: assert(0 && "Unknown type action!");
2511     case Legal: 
2512       Ops.push_back(Op);
2513       break;
2514     case Promote:
2515       if (MVT::isInteger(VT)) {
2516         unsigned ExtOp = Args[i].second->isSigned() ? 
2517                                   ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; 
2518         Op = DAG.getNode(ExtOp, getTypeToTransformTo(VT), Op);
2519       } else {
2520         assert(MVT::isFloatingPoint(VT) && "Not int or FP?");
2521         Op = DAG.getNode(ISD::FP_EXTEND, getTypeToTransformTo(VT), Op);
2522       }
2523       Ops.push_back(Op);
2524       break;
2525     case Expand:
2526       if (VT != MVT::Vector) {
2527         // If this is a large integer, it needs to be broken down into small
2528         // integers.  Figure out what the source elt type is and how many small
2529         // integers it is.
2530         MVT::ValueType NVT = getTypeToTransformTo(VT);
2531         unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2532         if (NumVals == 2) {
2533           SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2534                                      DAG.getConstant(0, getPointerTy()));
2535           SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, NVT, Op,
2536                                      DAG.getConstant(1, getPointerTy()));
2537           if (!isLittleEndian())
2538             std::swap(Lo, Hi);
2539           
2540           Ops.push_back(Lo);
2541           Ops.push_back(Hi);
2542         } else {
2543           // Value scalarized into many values.  Unimp for now.
2544           assert(0 && "Cannot expand i64 -> i16 yet!");
2545         }
2546       } else {
2547         // Otherwise, this is a vector type.  We only support legal vectors
2548         // right now.
2549         const PackedType *PTy = cast<PackedType>(Args[i].second);
2550         unsigned NumElems = PTy->getNumElements();
2551         const Type *EltTy = PTy->getElementType();
2552         
2553         // Figure out if there is a Packed type corresponding to this Vector
2554         // type.  If so, convert to the packed type.
2555         MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2556         if (TVT != MVT::Other && isTypeLegal(TVT)) {
2557           // Insert a VBIT_CONVERT of the MVT::Vector type to the packed type.
2558           Op = DAG.getNode(ISD::VBIT_CONVERT, TVT, Op);
2559           Ops.push_back(Op);
2560         } else {
2561           assert(0 && "Don't support illegal by-val vector call args yet!");
2562           abort();
2563         }
2564       }
2565       break;
2566     }
2567   }
2568   
2569   // Figure out the result value types.
2570   std::vector<MVT::ValueType> RetTys;
2571
2572   if (RetTy != Type::VoidTy) {
2573     MVT::ValueType VT = getValueType(RetTy);
2574     switch (getTypeAction(VT)) {
2575     default: assert(0 && "Unknown type action!");
2576     case Legal:
2577       RetTys.push_back(VT);
2578       break;
2579     case Promote:
2580       RetTys.push_back(getTypeToTransformTo(VT));
2581       break;
2582     case Expand:
2583       if (VT != MVT::Vector) {
2584         // If this is a large integer, it needs to be reassembled from small
2585         // integers.  Figure out what the source elt type is and how many small
2586         // integers it is.
2587         MVT::ValueType NVT = getTypeToTransformTo(VT);
2588         unsigned NumVals = MVT::getSizeInBits(VT)/MVT::getSizeInBits(NVT);
2589         for (unsigned i = 0; i != NumVals; ++i)
2590           RetTys.push_back(NVT);
2591       } else {
2592         // Otherwise, this is a vector type.  We only support legal vectors
2593         // right now.
2594         const PackedType *PTy = cast<PackedType>(RetTy);
2595         unsigned NumElems = PTy->getNumElements();
2596         const Type *EltTy = PTy->getElementType();
2597         
2598         // Figure out if there is a Packed type corresponding to this Vector
2599         // type.  If so, convert to the packed type.
2600         MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2601         if (TVT != MVT::Other && isTypeLegal(TVT)) {
2602           RetTys.push_back(TVT);
2603         } else {
2604           assert(0 && "Don't support illegal by-val vector call results yet!");
2605           abort();
2606         }
2607       }
2608     }    
2609   }
2610   
2611   RetTys.push_back(MVT::Other);  // Always has a chain.
2612   
2613   // Finally, create the CALL node.
2614   SDOperand Res = DAG.getNode(ISD::CALL, RetTys, Ops);
2615   
2616   // This returns a pair of operands.  The first element is the
2617   // return value for the function (if RetTy is not VoidTy).  The second
2618   // element is the outgoing token chain.
2619   SDOperand ResVal;
2620   if (RetTys.size() != 1) {
2621     MVT::ValueType VT = getValueType(RetTy);
2622     if (RetTys.size() == 2) {
2623       ResVal = Res;
2624       
2625       // If this value was promoted, truncate it down.
2626       if (ResVal.getValueType() != VT) {
2627         if (VT == MVT::Vector) {
2628           // Insert a VBITCONVERT to convert from the packed result type to the
2629           // MVT::Vector type.
2630           unsigned NumElems = cast<PackedType>(RetTy)->getNumElements();
2631           const Type *EltTy = cast<PackedType>(RetTy)->getElementType();
2632           
2633           // Figure out if there is a Packed type corresponding to this Vector
2634           // type.  If so, convert to the packed type.
2635           MVT::ValueType TVT = MVT::getVectorType(getValueType(EltTy), NumElems);
2636           if (TVT != MVT::Other && isTypeLegal(TVT)) {
2637             // Insert a VBIT_CONVERT of the FORMAL_ARGUMENTS to a
2638             // "N x PTyElementVT" MVT::Vector type.
2639             ResVal = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, ResVal,
2640                                  DAG.getConstant(NumElems, MVT::i32), 
2641                                  DAG.getValueType(getValueType(EltTy)));
2642           } else {
2643             abort();
2644           }
2645         } else if (MVT::isInteger(VT)) {
2646           unsigned AssertOp = RetTy->isSigned() ?
2647                                   ISD::AssertSext : ISD::AssertZext;
2648           ResVal = DAG.getNode(AssertOp, ResVal.getValueType(), ResVal, 
2649                                DAG.getValueType(VT));
2650           ResVal = DAG.getNode(ISD::TRUNCATE, VT, ResVal);
2651         } else {
2652           assert(MVT::isFloatingPoint(VT));
2653           ResVal = DAG.getNode(ISD::FP_ROUND, VT, ResVal);
2654         }
2655       }
2656     } else if (RetTys.size() == 3) {
2657       ResVal = DAG.getNode(ISD::BUILD_PAIR, VT, 
2658                            Res.getValue(0), Res.getValue(1));
2659       
2660     } else {
2661       assert(0 && "Case not handled yet!");
2662     }
2663   }
2664   
2665   return std::make_pair(ResVal, Res.getValue(Res.Val->getNumValues()-1));
2666 }
2667
2668
2669
2670 // It is always conservatively correct for llvm.returnaddress and
2671 // llvm.frameaddress to return 0.
2672 //
2673 // FIXME: Change this to insert a FRAMEADDR/RETURNADDR node, and have that be
2674 // expanded to 0 if the target wants.
2675 std::pair<SDOperand, SDOperand>
2676 TargetLowering::LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain,
2677                                         unsigned Depth, SelectionDAG &DAG) {
2678   return std::make_pair(DAG.getConstant(0, getPointerTy()), Chain);
2679 }
2680
2681 SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
2682   assert(0 && "LowerOperation not implemented for this target!");
2683   abort();
2684   return SDOperand();
2685 }
2686
2687 SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op,
2688                                                  SelectionDAG &DAG) {
2689   assert(0 && "CustomPromoteOperation not implemented for this target!");
2690   abort();
2691   return SDOperand();
2692 }
2693
2694 void SelectionDAGLowering::visitFrameReturnAddress(CallInst &I, bool isFrame) {
2695   unsigned Depth = (unsigned)cast<ConstantUInt>(I.getOperand(1))->getValue();
2696   std::pair<SDOperand,SDOperand> Result =
2697     TLI.LowerFrameReturnAddress(isFrame, getRoot(), Depth, DAG);
2698   setValue(&I, Result.first);
2699   DAG.setRoot(Result.second);
2700 }
2701
2702 /// getMemsetValue - Vectorized representation of the memset value
2703 /// operand.
2704 static SDOperand getMemsetValue(SDOperand Value, MVT::ValueType VT,
2705                                 SelectionDAG &DAG) {
2706   MVT::ValueType CurVT = VT;
2707   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2708     uint64_t Val   = C->getValue() & 255;
2709     unsigned Shift = 8;
2710     while (CurVT != MVT::i8) {
2711       Val = (Val << Shift) | Val;
2712       Shift <<= 1;
2713       CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
2714     }
2715     return DAG.getConstant(Val, VT);
2716   } else {
2717     Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2718     unsigned Shift = 8;
2719     while (CurVT != MVT::i8) {
2720       Value =
2721         DAG.getNode(ISD::OR, VT,
2722                     DAG.getNode(ISD::SHL, VT, Value,
2723                                 DAG.getConstant(Shift, MVT::i8)), Value);
2724       Shift <<= 1;
2725       CurVT = (MVT::ValueType)((unsigned)CurVT - 1);
2726     }
2727
2728     return Value;
2729   }
2730 }
2731
2732 /// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2733 /// used when a memcpy is turned into a memset when the source is a constant
2734 /// string ptr.
2735 static SDOperand getMemsetStringVal(MVT::ValueType VT,
2736                                     SelectionDAG &DAG, TargetLowering &TLI,
2737                                     std::string &Str, unsigned Offset) {
2738   MVT::ValueType CurVT = VT;
2739   uint64_t Val = 0;
2740   unsigned MSB = getSizeInBits(VT) / 8;
2741   if (TLI.isLittleEndian())
2742     Offset = Offset + MSB - 1;
2743   for (unsigned i = 0; i != MSB; ++i) {
2744     Val = (Val << 8) | Str[Offset];
2745     Offset += TLI.isLittleEndian() ? -1 : 1;
2746   }
2747   return DAG.getConstant(Val, VT);
2748 }
2749
2750 /// getMemBasePlusOffset - Returns base and offset node for the 
2751 static SDOperand getMemBasePlusOffset(SDOperand Base, unsigned Offset,
2752                                       SelectionDAG &DAG, TargetLowering &TLI) {
2753   MVT::ValueType VT = Base.getValueType();
2754   return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2755 }
2756
2757 /// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2758 /// to replace the memset / memcpy is below the threshold. It also returns the
2759 /// types of the sequence of  memory ops to perform memset / memcpy.
2760 static bool MeetsMaxMemopRequirement(std::vector<MVT::ValueType> &MemOps,
2761                                      unsigned Limit, uint64_t Size,
2762                                      unsigned Align, TargetLowering &TLI) {
2763   MVT::ValueType VT;
2764
2765   if (TLI.allowsUnalignedMemoryAccesses()) {
2766     VT = MVT::i64;
2767   } else {
2768     switch (Align & 7) {
2769     case 0:
2770       VT = MVT::i64;
2771       break;
2772     case 4:
2773       VT = MVT::i32;
2774       break;
2775     case 2:
2776       VT = MVT::i16;
2777       break;
2778     default:
2779       VT = MVT::i8;
2780       break;
2781     }
2782   }
2783
2784   MVT::ValueType LVT = MVT::i64;
2785   while (!TLI.isTypeLegal(LVT))
2786     LVT = (MVT::ValueType)((unsigned)LVT - 1);
2787   assert(MVT::isInteger(LVT));
2788
2789   if (VT > LVT)
2790     VT = LVT;
2791
2792   unsigned NumMemOps = 0;
2793   while (Size != 0) {
2794     unsigned VTSize = getSizeInBits(VT) / 8;
2795     while (VTSize > Size) {
2796       VT = (MVT::ValueType)((unsigned)VT - 1);
2797       VTSize >>= 1;
2798     }
2799     assert(MVT::isInteger(VT));
2800
2801     if (++NumMemOps > Limit)
2802       return false;
2803     MemOps.push_back(VT);
2804     Size -= VTSize;
2805   }
2806
2807   return true;
2808 }
2809
2810 void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
2811   SDOperand Op1 = getValue(I.getOperand(1));
2812   SDOperand Op2 = getValue(I.getOperand(2));
2813   SDOperand Op3 = getValue(I.getOperand(3));
2814   SDOperand Op4 = getValue(I.getOperand(4));
2815   unsigned Align = (unsigned)cast<ConstantSDNode>(Op4)->getValue();
2816   if (Align == 0) Align = 1;
2817
2818   if (ConstantSDNode *Size = dyn_cast<ConstantSDNode>(Op3)) {
2819     std::vector<MVT::ValueType> MemOps;
2820
2821     // Expand memset / memcpy to a series of load / store ops
2822     // if the size operand falls below a certain threshold.
2823     std::vector<SDOperand> OutChains;
2824     switch (Op) {
2825     default: break;  // Do nothing for now.
2826     case ISD::MEMSET: {
2827       if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
2828                                    Size->getValue(), Align, TLI)) {
2829         unsigned NumMemOps = MemOps.size();
2830         unsigned Offset = 0;
2831         for (unsigned i = 0; i < NumMemOps; i++) {
2832           MVT::ValueType VT = MemOps[i];
2833           unsigned VTSize = getSizeInBits(VT) / 8;
2834           SDOperand Value = getMemsetValue(Op2, VT, DAG);
2835           SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, getRoot(),
2836                                         Value,
2837                                     getMemBasePlusOffset(Op1, Offset, DAG, TLI),
2838                                       DAG.getSrcValue(I.getOperand(1), Offset));
2839           OutChains.push_back(Store);
2840           Offset += VTSize;
2841         }
2842       }
2843       break;
2844     }
2845     case ISD::MEMCPY: {
2846       if (MeetsMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemcpy(),
2847                                    Size->getValue(), Align, TLI)) {
2848         unsigned NumMemOps = MemOps.size();
2849         unsigned SrcOff = 0, DstOff = 0, SrcDelta = 0;
2850         GlobalAddressSDNode *G = NULL;
2851         std::string Str;
2852         bool CopyFromStr = false;
2853
2854         if (Op2.getOpcode() == ISD::GlobalAddress)
2855           G = cast<GlobalAddressSDNode>(Op2);
2856         else if (Op2.getOpcode() == ISD::ADD &&
2857                  Op2.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2858                  Op2.getOperand(1).getOpcode() == ISD::Constant) {
2859           G = cast<GlobalAddressSDNode>(Op2.getOperand(0));
2860           SrcDelta = cast<ConstantSDNode>(Op2.getOperand(1))->getValue();
2861         }
2862         if (G) {
2863           GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
2864           if (GV) {
2865             Str = GV->getStringValue(false);
2866             if (!Str.empty()) {
2867               CopyFromStr = true;
2868               SrcOff += SrcDelta;
2869             }
2870           }
2871         }
2872
2873         for (unsigned i = 0; i < NumMemOps; i++) {
2874           MVT::ValueType VT = MemOps[i];
2875           unsigned VTSize = getSizeInBits(VT) / 8;
2876           SDOperand Value, Chain, Store;
2877
2878           if (CopyFromStr) {
2879             Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2880             Chain = getRoot();
2881             Store =
2882               DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2883                           getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2884                           DAG.getSrcValue(I.getOperand(1), DstOff));
2885           } else {
2886             Value = DAG.getLoad(VT, getRoot(),
2887                         getMemBasePlusOffset(Op2, SrcOff, DAG, TLI),
2888                         DAG.getSrcValue(I.getOperand(2), SrcOff));
2889             Chain = Value.getValue(1);
2890             Store =
2891               DAG.getNode(ISD::STORE, MVT::Other, Chain, Value,
2892                           getMemBasePlusOffset(Op1, DstOff, DAG, TLI),
2893                           DAG.getSrcValue(I.getOperand(1), DstOff));
2894           }
2895           OutChains.push_back(Store);
2896           SrcOff += VTSize;
2897           DstOff += VTSize;
2898         }
2899       }
2900       break;
2901     }
2902     }
2903
2904     if (!OutChains.empty()) {
2905       DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
2906       return;
2907     }
2908   }
2909
2910   std::vector<SDOperand> Ops;
2911   Ops.push_back(getRoot());
2912   Ops.push_back(Op1);
2913   Ops.push_back(Op2);
2914   Ops.push_back(Op3);
2915   Ops.push_back(Op4);
2916   DAG.setRoot(DAG.getNode(Op, MVT::Other, Ops));
2917 }
2918
2919 //===----------------------------------------------------------------------===//
2920 // SelectionDAGISel code
2921 //===----------------------------------------------------------------------===//
2922
2923 unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
2924   return RegMap->createVirtualRegister(TLI.getRegClassFor(VT));
2925 }
2926
2927 void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
2928   // FIXME: we only modify the CFG to split critical edges.  This
2929   // updates dom and loop info.
2930 }
2931
2932
2933 /// OptimizeNoopCopyExpression - We have determined that the specified cast
2934 /// instruction is a noop copy (e.g. it's casting from one pointer type to
2935 /// another, int->uint, or int->sbyte on PPC.
2936 ///
2937 /// Return true if any changes are made.
2938 static bool OptimizeNoopCopyExpression(CastInst *CI) {
2939   BasicBlock *DefBB = CI->getParent();
2940   
2941   /// InsertedCasts - Only insert a cast in each block once.
2942   std::map<BasicBlock*, CastInst*> InsertedCasts;
2943   
2944   bool MadeChange = false;
2945   for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end(); 
2946        UI != E; ) {
2947     Use &TheUse = UI.getUse();
2948     Instruction *User = cast<Instruction>(*UI);
2949     
2950     // Figure out which BB this cast is used in.  For PHI's this is the
2951     // appropriate predecessor block.
2952     BasicBlock *UserBB = User->getParent();
2953     if (PHINode *PN = dyn_cast<PHINode>(User)) {
2954       unsigned OpVal = UI.getOperandNo()/2;
2955       UserBB = PN->getIncomingBlock(OpVal);
2956     }
2957     
2958     // Preincrement use iterator so we don't invalidate it.
2959     ++UI;
2960     
2961     // If this user is in the same block as the cast, don't change the cast.
2962     if (UserBB == DefBB) continue;
2963     
2964     // If we have already inserted a cast into this block, use it.
2965     CastInst *&InsertedCast = InsertedCasts[UserBB];
2966
2967     if (!InsertedCast) {
2968       BasicBlock::iterator InsertPt = UserBB->begin();
2969       while (isa<PHINode>(InsertPt)) ++InsertPt;
2970       
2971       InsertedCast = 
2972         new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
2973       MadeChange = true;
2974     }
2975     
2976     // Replace a use of the cast with a use of the new casat.
2977     TheUse = InsertedCast;
2978   }
2979   
2980   // If we removed all uses, nuke the cast.
2981   if (CI->use_empty())
2982     CI->eraseFromParent();
2983   
2984   return MadeChange;
2985 }
2986
2987 /// InsertGEPComputeCode - Insert code into BB to compute Ptr+PtrOffset,
2988 /// casting to the type of GEPI.
2989 static Instruction *InsertGEPComputeCode(Instruction *&V, BasicBlock *BB,
2990                                          Instruction *GEPI, Value *Ptr,
2991                                          Value *PtrOffset) {
2992   if (V) return V;   // Already computed.
2993   
2994   BasicBlock::iterator InsertPt;
2995   if (BB == GEPI->getParent()) {
2996     // If insert into the GEP's block, insert right after the GEP.
2997     InsertPt = GEPI;
2998     ++InsertPt;
2999   } else {
3000     // Otherwise, insert at the top of BB, after any PHI nodes
3001     InsertPt = BB->begin();
3002     while (isa<PHINode>(InsertPt)) ++InsertPt;
3003   }
3004   
3005   // If Ptr is itself a cast, but in some other BB, emit a copy of the cast into
3006   // BB so that there is only one value live across basic blocks (the cast 
3007   // operand).
3008   if (CastInst *CI = dyn_cast<CastInst>(Ptr))
3009     if (CI->getParent() != BB && isa<PointerType>(CI->getOperand(0)->getType()))
3010       Ptr = new CastInst(CI->getOperand(0), CI->getType(), "", InsertPt);
3011   
3012   // Add the offset, cast it to the right type.
3013   Ptr = BinaryOperator::createAdd(Ptr, PtrOffset, "", InsertPt);
3014   return V = new CastInst(Ptr, GEPI->getType(), "", InsertPt);
3015 }
3016
3017 /// ReplaceUsesOfGEPInst - Replace all uses of RepPtr with inserted code to
3018 /// compute its value.  The RepPtr value can be computed with Ptr+PtrOffset. One
3019 /// trivial way of doing this would be to evaluate Ptr+PtrOffset in RepPtr's
3020 /// block, then ReplaceAllUsesWith'ing everything.  However, we would prefer to
3021 /// sink PtrOffset into user blocks where doing so will likely allow us to fold
3022 /// the constant add into a load or store instruction.  Additionally, if a user
3023 /// is a pointer-pointer cast, we look through it to find its users.
3024 static void ReplaceUsesOfGEPInst(Instruction *RepPtr, Value *Ptr, 
3025                                  Constant *PtrOffset, BasicBlock *DefBB,
3026                                  GetElementPtrInst *GEPI,
3027                            std::map<BasicBlock*,Instruction*> &InsertedExprs) {
3028   while (!RepPtr->use_empty()) {
3029     Instruction *User = cast<Instruction>(RepPtr->use_back());
3030     
3031     // If the user is a Pointer-Pointer cast, recurse.
3032     if (isa<CastInst>(User) && isa<PointerType>(User->getType())) {
3033       ReplaceUsesOfGEPInst(User, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
3034       
3035       // Drop the use of RepPtr. The cast is dead.  Don't delete it now, else we
3036       // could invalidate an iterator.
3037       User->setOperand(0, UndefValue::get(RepPtr->getType()));
3038       continue;
3039     }
3040     
3041     // If this is a load of the pointer, or a store through the pointer, emit
3042     // the increment into the load/store block.
3043     Instruction *NewVal;
3044     if (isa<LoadInst>(User) ||
3045         (isa<StoreInst>(User) && User->getOperand(0) != RepPtr)) {
3046       NewVal = InsertGEPComputeCode(InsertedExprs[User->getParent()], 
3047                                     User->getParent(), GEPI,
3048                                     Ptr, PtrOffset);
3049     } else {
3050       // If this use is not foldable into the addressing mode, use a version 
3051       // emitted in the GEP block.
3052       NewVal = InsertGEPComputeCode(InsertedExprs[DefBB], DefBB, GEPI, 
3053                                     Ptr, PtrOffset);
3054     }
3055     
3056     if (GEPI->getType() != RepPtr->getType()) {
3057       BasicBlock::iterator IP = NewVal;
3058       ++IP;
3059       NewVal = new CastInst(NewVal, RepPtr->getType(), "", IP);
3060     }
3061     User->replaceUsesOfWith(RepPtr, NewVal);
3062   }
3063 }
3064
3065
3066 /// OptimizeGEPExpression - Since we are doing basic-block-at-a-time instruction
3067 /// selection, we want to be a bit careful about some things.  In particular, if
3068 /// we have a GEP instruction that is used in a different block than it is
3069 /// defined, the addressing expression of the GEP cannot be folded into loads or
3070 /// stores that use it.  In this case, decompose the GEP and move constant
3071 /// indices into blocks that use it.
3072 static bool OptimizeGEPExpression(GetElementPtrInst *GEPI,
3073                                   const TargetData *TD) {
3074   // If this GEP is only used inside the block it is defined in, there is no
3075   // need to rewrite it.
3076   bool isUsedOutsideDefBB = false;
3077   BasicBlock *DefBB = GEPI->getParent();
3078   for (Value::use_iterator UI = GEPI->use_begin(), E = GEPI->use_end(); 
3079        UI != E; ++UI) {
3080     if (cast<Instruction>(*UI)->getParent() != DefBB) {
3081       isUsedOutsideDefBB = true;
3082       break;
3083     }
3084   }
3085   if (!isUsedOutsideDefBB) return false;
3086
3087   // If this GEP has no non-zero constant indices, there is nothing we can do,
3088   // ignore it.
3089   bool hasConstantIndex = false;
3090   bool hasVariableIndex = false;
3091   for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3092        E = GEPI->op_end(); OI != E; ++OI) {
3093     if (ConstantInt *CI = dyn_cast<ConstantInt>(*OI)) {
3094       if (CI->getRawValue()) {
3095         hasConstantIndex = true;
3096         break;
3097       }
3098     } else {
3099       hasVariableIndex = true;
3100     }
3101   }
3102   
3103   // If this is a "GEP X, 0, 0, 0", turn this into a cast.
3104   if (!hasConstantIndex && !hasVariableIndex) {
3105     Value *NC = new CastInst(GEPI->getOperand(0), GEPI->getType(), 
3106                              GEPI->getName(), GEPI);
3107     GEPI->replaceAllUsesWith(NC);
3108     GEPI->eraseFromParent();
3109     return true;
3110   }
3111   
3112   // If this is a GEP &Alloca, 0, 0, forward subst the frame index into uses.
3113   if (!hasConstantIndex && !isa<AllocaInst>(GEPI->getOperand(0)))
3114     return false;
3115   
3116   // Otherwise, decompose the GEP instruction into multiplies and adds.  Sum the
3117   // constant offset (which we now know is non-zero) and deal with it later.
3118   uint64_t ConstantOffset = 0;
3119   const Type *UIntPtrTy = TD->getIntPtrType();
3120   Value *Ptr = new CastInst(GEPI->getOperand(0), UIntPtrTy, "", GEPI);
3121   const Type *Ty = GEPI->getOperand(0)->getType();
3122
3123   for (GetElementPtrInst::op_iterator OI = GEPI->op_begin()+1,
3124        E = GEPI->op_end(); OI != E; ++OI) {
3125     Value *Idx = *OI;
3126     if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
3127       unsigned Field = cast<ConstantUInt>(Idx)->getValue();
3128       if (Field)
3129         ConstantOffset += TD->getStructLayout(StTy)->MemberOffsets[Field];
3130       Ty = StTy->getElementType(Field);
3131     } else {
3132       Ty = cast<SequentialType>(Ty)->getElementType();
3133
3134       // Handle constant subscripts.
3135       if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
3136         if (CI->getRawValue() == 0) continue;
3137         
3138         if (ConstantSInt *CSI = dyn_cast<ConstantSInt>(CI))
3139           ConstantOffset += (int64_t)TD->getTypeSize(Ty)*CSI->getValue();
3140         else
3141           ConstantOffset+=TD->getTypeSize(Ty)*cast<ConstantUInt>(CI)->getValue();
3142         continue;
3143       }
3144       
3145       // Ptr = Ptr + Idx * ElementSize;
3146       
3147       // Cast Idx to UIntPtrTy if needed.
3148       Idx = new CastInst(Idx, UIntPtrTy, "", GEPI);
3149       
3150       uint64_t ElementSize = TD->getTypeSize(Ty);
3151       // Mask off bits that should not be set.
3152       ElementSize &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3153       Constant *SizeCst = ConstantUInt::get(UIntPtrTy, ElementSize);
3154
3155       // Multiply by the element size and add to the base.
3156       Idx = BinaryOperator::createMul(Idx, SizeCst, "", GEPI);
3157       Ptr = BinaryOperator::createAdd(Ptr, Idx, "", GEPI);
3158     }
3159   }
3160   
3161   // Make sure that the offset fits in uintptr_t.
3162   ConstantOffset &= ~0ULL >> (64-UIntPtrTy->getPrimitiveSizeInBits());
3163   Constant *PtrOffset = ConstantUInt::get(UIntPtrTy, ConstantOffset);
3164   
3165   // Okay, we have now emitted all of the variable index parts to the BB that
3166   // the GEP is defined in.  Loop over all of the using instructions, inserting
3167   // an "add Ptr, ConstantOffset" into each block that uses it and update the
3168   // instruction to use the newly computed value, making GEPI dead.  When the
3169   // user is a load or store instruction address, we emit the add into the user
3170   // block, otherwise we use a canonical version right next to the gep (these 
3171   // won't be foldable as addresses, so we might as well share the computation).
3172   
3173   std::map<BasicBlock*,Instruction*> InsertedExprs;
3174   ReplaceUsesOfGEPInst(GEPI, Ptr, PtrOffset, DefBB, GEPI, InsertedExprs);
3175   
3176   // Finally, the GEP is dead, remove it.
3177   GEPI->eraseFromParent();
3178   
3179   return true;
3180 }
3181
3182 bool SelectionDAGISel::runOnFunction(Function &Fn) {
3183   MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
3184   RegMap = MF.getSSARegMap();
3185   DEBUG(std::cerr << "\n\n\n=== " << Fn.getName() << "\n");
3186
3187   // First, split all critical edges for PHI nodes with incoming values that are
3188   // constants, this way the load of the constant into a vreg will not be placed
3189   // into MBBs that are used some other way.
3190   //
3191   // In this pass we also look for GEP and cast instructions that are used
3192   // across basic blocks and rewrite them to improve basic-block-at-a-time
3193   // selection.
3194   //
3195   // 
3196   bool MadeChange = true;
3197   while (MadeChange) {
3198     MadeChange = false;
3199   for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
3200     PHINode *PN;
3201     BasicBlock::iterator BBI;
3202     for (BBI = BB->begin(); (PN = dyn_cast<PHINode>(BBI)); ++BBI)
3203       for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3204         if (isa<Constant>(PN->getIncomingValue(i)))
3205           SplitCriticalEdge(PN->getIncomingBlock(i), BB);
3206     
3207     for (BasicBlock::iterator E = BB->end(); BBI != E; ) {
3208       Instruction *I = BBI++;
3209       if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
3210         MadeChange |= OptimizeGEPExpression(GEPI, TLI.getTargetData());
3211       } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
3212         // If this is a noop copy, sink it into user blocks to reduce the number
3213         // of virtual registers that must be created and coallesced.
3214         MVT::ValueType SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
3215         MVT::ValueType DstVT = TLI.getValueType(CI->getType());
3216         
3217         // This is an fp<->int conversion?
3218         if (MVT::isInteger(SrcVT) != MVT::isInteger(DstVT))
3219           continue;
3220         
3221         // If this is an extension, it will be a zero or sign extension, which
3222         // isn't a noop.
3223         if (SrcVT < DstVT) continue;
3224         
3225         // If these values will be promoted, find out what they will be promoted
3226         // to.  This helps us consider truncates on PPC as noop copies when they
3227         // are.
3228         if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
3229           SrcVT = TLI.getTypeToTransformTo(SrcVT);
3230         if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
3231           DstVT = TLI.getTypeToTransformTo(DstVT);
3232
3233         // If, after promotion, these are the same types, this is a noop copy.
3234         if (SrcVT == DstVT)
3235           MadeChange |= OptimizeNoopCopyExpression(CI);
3236       }
3237     }
3238   }
3239   }
3240   
3241   FunctionLoweringInfo FuncInfo(TLI, Fn, MF);
3242
3243   for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
3244     SelectBasicBlock(I, MF, FuncInfo);
3245
3246   return true;
3247 }
3248
3249
3250 SDOperand SelectionDAGISel::
3251 CopyValueToVirtualRegister(SelectionDAGLowering &SDL, Value *V, unsigned Reg) {
3252   SDOperand Op = SDL.getValue(V);
3253   assert((Op.getOpcode() != ISD::CopyFromReg ||
3254           cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
3255          "Copy from a reg to the same reg!");
3256   
3257   // If this type is not legal, we must make sure to not create an invalid
3258   // register use.
3259   MVT::ValueType SrcVT = Op.getValueType();
3260   MVT::ValueType DestVT = TLI.getTypeToTransformTo(SrcVT);
3261   SelectionDAG &DAG = SDL.DAG;
3262   if (SrcVT == DestVT) {
3263     return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3264   } else if (SrcVT == MVT::Vector) {
3265     // Handle copies from generic vectors to registers.
3266     MVT::ValueType PTyElementVT, PTyLegalElementVT;
3267     unsigned NE = TLI.getPackedTypeBreakdown(cast<PackedType>(V->getType()),
3268                                              PTyElementVT, PTyLegalElementVT);
3269     
3270     // Insert a VBIT_CONVERT of the input vector to a "N x PTyElementVT" 
3271     // MVT::Vector type.
3272     Op = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Op,
3273                      DAG.getConstant(NE, MVT::i32), 
3274                      DAG.getValueType(PTyElementVT));
3275
3276     // Loop over all of the elements of the resultant vector,
3277     // VEXTRACT_VECTOR_ELT'ing them, converting them to PTyLegalElementVT, then
3278     // copying them into output registers.
3279     std::vector<SDOperand> OutChains;
3280     SDOperand Root = SDL.getRoot();
3281     for (unsigned i = 0; i != NE; ++i) {
3282       SDOperand Elt = DAG.getNode(ISD::VEXTRACT_VECTOR_ELT, PTyElementVT,
3283                                   Op, DAG.getConstant(i, MVT::i32));
3284       if (PTyElementVT == PTyLegalElementVT) {
3285         // Elements are legal.
3286         OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3287       } else if (PTyLegalElementVT > PTyElementVT) {
3288         // Elements are promoted.
3289         if (MVT::isFloatingPoint(PTyLegalElementVT))
3290           Elt = DAG.getNode(ISD::FP_EXTEND, PTyLegalElementVT, Elt);
3291         else
3292           Elt = DAG.getNode(ISD::ANY_EXTEND, PTyLegalElementVT, Elt);
3293         OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Elt));
3294       } else {
3295         // Elements are expanded.
3296         // The src value is expanded into multiple registers.
3297         SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3298                                    Elt, DAG.getConstant(0, MVT::i32));
3299         SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, PTyLegalElementVT,
3300                                    Elt, DAG.getConstant(1, MVT::i32));
3301         OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Lo));
3302         OutChains.push_back(DAG.getCopyToReg(Root, Reg++, Hi));
3303       }
3304     }
3305     return DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains);
3306   } else if (SrcVT < DestVT) {
3307     // The src value is promoted to the register.
3308     if (MVT::isFloatingPoint(SrcVT))
3309       Op = DAG.getNode(ISD::FP_EXTEND, DestVT, Op);
3310     else
3311       Op = DAG.getNode(ISD::ANY_EXTEND, DestVT, Op);
3312     return DAG.getCopyToReg(SDL.getRoot(), Reg, Op);
3313   } else  {
3314     // The src value is expanded into multiple registers.
3315     SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3316                                Op, DAG.getConstant(0, MVT::i32));
3317     SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DestVT,
3318                                Op, DAG.getConstant(1, MVT::i32));
3319     Op = DAG.getCopyToReg(SDL.getRoot(), Reg, Lo);
3320     return DAG.getCopyToReg(Op, Reg+1, Hi);
3321   }
3322 }
3323
3324 void SelectionDAGISel::
3325 LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
3326                std::vector<SDOperand> &UnorderedChains) {
3327   // If this is the entry block, emit arguments.
3328   Function &F = *BB->getParent();
3329   FunctionLoweringInfo &FuncInfo = SDL.FuncInfo;
3330   SDOperand OldRoot = SDL.DAG.getRoot();
3331   std::vector<SDOperand> Args = TLI.LowerArguments(F, SDL.DAG);
3332
3333   unsigned a = 0;
3334   for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
3335        AI != E; ++AI, ++a)
3336     if (!AI->use_empty()) {
3337       SDL.setValue(AI, Args[a]);
3338
3339       // If this argument is live outside of the entry block, insert a copy from
3340       // whereever we got it to the vreg that other BB's will reference it as.
3341       if (FuncInfo.ValueMap.count(AI)) {
3342         SDOperand Copy =
3343           CopyValueToVirtualRegister(SDL, AI, FuncInfo.ValueMap[AI]);
3344         UnorderedChains.push_back(Copy);
3345       }
3346     }
3347
3348   // Finally, if the target has anything special to do, allow it to do so.
3349   // FIXME: this should insert code into the DAG!
3350   EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction());
3351 }
3352
3353 void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
3354        std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
3355                                          FunctionLoweringInfo &FuncInfo) {
3356   SelectionDAGLowering SDL(DAG, TLI, FuncInfo);
3357
3358   std::vector<SDOperand> UnorderedChains;
3359
3360   // Lower any arguments needed in this block if this is the entry block.
3361   if (LLVMBB == &LLVMBB->getParent()->front())
3362     LowerArguments(LLVMBB, SDL, UnorderedChains);
3363
3364   BB = FuncInfo.MBBMap[LLVMBB];
3365   SDL.setCurrentBasicBlock(BB);
3366
3367   // Lower all of the non-terminator instructions.
3368   for (BasicBlock::iterator I = LLVMBB->begin(), E = --LLVMBB->end();
3369        I != E; ++I)
3370     SDL.visit(*I);
3371   
3372   // Ensure that all instructions which are used outside of their defining
3373   // blocks are available as virtual registers.
3374   for (BasicBlock::iterator I = LLVMBB->begin(), E = LLVMBB->end(); I != E;++I)
3375     if (!I->use_empty() && !isa<PHINode>(I)) {
3376       std::map<const Value*, unsigned>::iterator VMI =FuncInfo.ValueMap.find(I);
3377       if (VMI != FuncInfo.ValueMap.end())
3378         UnorderedChains.push_back(
3379                            CopyValueToVirtualRegister(SDL, I, VMI->second));
3380     }
3381
3382   // Handle PHI nodes in successor blocks.  Emit code into the SelectionDAG to
3383   // ensure constants are generated when needed.  Remember the virtual registers
3384   // that need to be added to the Machine PHI nodes as input.  We cannot just
3385   // directly add them, because expansion might result in multiple MBB's for one
3386   // BB.  As such, the start of the BB might correspond to a different MBB than
3387   // the end.
3388   //
3389
3390   // Emit constants only once even if used by multiple PHI nodes.
3391   std::map<Constant*, unsigned> ConstantsOut;
3392
3393   // Check successor nodes PHI nodes that expect a constant to be available from
3394   // this block.
3395   TerminatorInst *TI = LLVMBB->getTerminator();
3396   for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
3397     BasicBlock *SuccBB = TI->getSuccessor(succ);
3398     MachineBasicBlock::iterator MBBI = FuncInfo.MBBMap[SuccBB]->begin();
3399     PHINode *PN;
3400
3401     // At this point we know that there is a 1-1 correspondence between LLVM PHI
3402     // nodes and Machine PHI nodes, but the incoming operands have not been
3403     // emitted yet.
3404     for (BasicBlock::iterator I = SuccBB->begin();
3405          (PN = dyn_cast<PHINode>(I)); ++I)
3406       if (!PN->use_empty()) {
3407         unsigned Reg;
3408         Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
3409         if (Constant *C = dyn_cast<Constant>(PHIOp)) {
3410           unsigned &RegOut = ConstantsOut[C];
3411           if (RegOut == 0) {
3412             RegOut = FuncInfo.CreateRegForValue(C);
3413             UnorderedChains.push_back(
3414                              CopyValueToVirtualRegister(SDL, C, RegOut));
3415           }
3416           Reg = RegOut;
3417         } else {
3418           Reg = FuncInfo.ValueMap[PHIOp];
3419           if (Reg == 0) {
3420             assert(isa<AllocaInst>(PHIOp) &&
3421                    FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
3422                    "Didn't codegen value into a register!??");
3423             Reg = FuncInfo.CreateRegForValue(PHIOp);
3424             UnorderedChains.push_back(
3425                              CopyValueToVirtualRegister(SDL, PHIOp, Reg));
3426           }
3427         }
3428
3429         // Remember that this register needs to added to the machine PHI node as
3430         // the input for this MBB.
3431         MVT::ValueType VT = TLI.getValueType(PN->getType());
3432         unsigned NumElements;
3433         if (VT != MVT::Vector)
3434           NumElements = TLI.getNumElements(VT);
3435         else {
3436           MVT::ValueType VT1,VT2;
3437           NumElements = 
3438             TLI.getPackedTypeBreakdown(cast<PackedType>(PN->getType()),
3439                                        VT1, VT2);
3440         }
3441         for (unsigned i = 0, e = NumElements; i != e; ++i)
3442           PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
3443       }
3444   }
3445   ConstantsOut.clear();
3446
3447   // Turn all of the unordered chains into one factored node.
3448   if (!UnorderedChains.empty()) {
3449     SDOperand Root = SDL.getRoot();
3450     if (Root.getOpcode() != ISD::EntryToken) {
3451       unsigned i = 0, e = UnorderedChains.size();
3452       for (; i != e; ++i) {
3453         assert(UnorderedChains[i].Val->getNumOperands() > 1);
3454         if (UnorderedChains[i].Val->getOperand(0) == Root)
3455           break;  // Don't add the root if we already indirectly depend on it.
3456       }
3457         
3458       if (i == e)
3459         UnorderedChains.push_back(Root);
3460     }
3461     DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, UnorderedChains));
3462   }
3463
3464   // Lower the terminator after the copies are emitted.
3465   SDL.visit(*LLVMBB->getTerminator());
3466
3467   // Copy over any CaseBlock records that may now exist due to SwitchInst
3468   // lowering, as well as any jump table information.
3469   SwitchCases.clear();
3470   SwitchCases = SDL.SwitchCases;
3471   JT = SDL.JT;
3472   
3473   // Make sure the root of the DAG is up-to-date.
3474   DAG.setRoot(SDL.getRoot());
3475 }
3476
3477 void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
3478   // Run the DAG combiner in pre-legalize mode.
3479   DAG.Combine(false);
3480   
3481   DEBUG(std::cerr << "Lowered selection DAG:\n");
3482   DEBUG(DAG.dump());
3483   
3484   // Second step, hack on the DAG until it only uses operations and types that
3485   // the target supports.
3486   DAG.Legalize();
3487   
3488   DEBUG(std::cerr << "Legalized selection DAG:\n");
3489   DEBUG(DAG.dump());
3490   
3491   // Run the DAG combiner in post-legalize mode.
3492   DAG.Combine(true);
3493   
3494   if (ViewISelDAGs) DAG.viewGraph();
3495
3496   // Third, instruction select all of the operations to machine code, adding the
3497   // code to the MachineBasicBlock.
3498   InstructionSelectBasicBlock(DAG);
3499   
3500   DEBUG(std::cerr << "Selected machine code:\n");
3501   DEBUG(BB->dump());
3502 }  
3503
3504 void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
3505                                         FunctionLoweringInfo &FuncInfo) {
3506   std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
3507   {
3508     SelectionDAG DAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3509     CurDAG = &DAG;
3510   
3511     // First step, lower LLVM code to some DAG.  This DAG may use operations and
3512     // types that are not supported by the target.
3513     BuildSelectionDAG(DAG, LLVMBB, PHINodesToUpdate, FuncInfo);
3514
3515     // Second step, emit the lowered DAG as machine code.
3516     CodeGenAndEmitDAG(DAG);
3517   }
3518   
3519   // Next, now that we know what the last MBB the LLVM BB expanded is, update
3520   // PHI nodes in successors.
3521   if (SwitchCases.empty() && JT.Reg == 0) {
3522     for (unsigned i = 0, e = PHINodesToUpdate.size(); i != e; ++i) {
3523       MachineInstr *PHI = PHINodesToUpdate[i].first;
3524       assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3525              "This is not a machine PHI node that we are updating!");
3526       PHI->addRegOperand(PHINodesToUpdate[i].second);
3527       PHI->addMachineBasicBlockOperand(BB);
3528     }
3529     return;
3530   }
3531   
3532   // If the JumpTable record is filled in, then we need to emit a jump table.
3533   // Updating the PHI nodes is tricky in this case, since we need to determine
3534   // whether the PHI is a successor of the range check MBB or the jump table MBB
3535   if (JT.Reg) {
3536     assert(SwitchCases.empty() && "Cannot have jump table and lowered switch");
3537     SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3538     CurDAG = &SDAG;
3539     SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3540     MachineBasicBlock *RangeBB = BB;
3541     // Set the current basic block to the mbb we wish to insert the code into
3542     BB = JT.MBB;
3543     SDL.setCurrentBasicBlock(BB);
3544     // Emit the code
3545     SDL.visitJumpTable(JT);
3546     SDAG.setRoot(SDL.getRoot());
3547     CodeGenAndEmitDAG(SDAG);
3548     // Update PHI Nodes
3549     for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3550       MachineInstr *PHI = PHINodesToUpdate[pi].first;
3551       MachineBasicBlock *PHIBB = PHI->getParent();
3552       assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3553              "This is not a machine PHI node that we are updating!");
3554       if (PHIBB == JT.Default) {
3555         PHI->addRegOperand(PHINodesToUpdate[pi].second);
3556         PHI->addMachineBasicBlockOperand(RangeBB);
3557       }
3558       if (BB->succ_end() != std::find(BB->succ_begin(),BB->succ_end(), PHIBB)) {
3559         PHI->addRegOperand(PHINodesToUpdate[pi].second);
3560         PHI->addMachineBasicBlockOperand(BB);
3561       }
3562     }
3563     return;
3564   }
3565   
3566   // If we generated any switch lowering information, build and codegen any
3567   // additional DAGs necessary.
3568   for(unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
3569     SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineDebugInfo>());
3570     CurDAG = &SDAG;
3571     SelectionDAGLowering SDL(SDAG, TLI, FuncInfo);
3572     // Set the current basic block to the mbb we wish to insert the code into
3573     BB = SwitchCases[i].ThisBB;
3574     SDL.setCurrentBasicBlock(BB);
3575     // Emit the code
3576     SDL.visitSwitchCase(SwitchCases[i]);
3577     SDAG.setRoot(SDL.getRoot());
3578     CodeGenAndEmitDAG(SDAG);
3579     // Iterate over the phi nodes, if there is a phi node in a successor of this
3580     // block (for instance, the default block), then add a pair of operands to
3581     // the phi node for this block, as if we were coming from the original
3582     // BB before switch expansion.
3583     for (unsigned pi = 0, pe = PHINodesToUpdate.size(); pi != pe; ++pi) {
3584       MachineInstr *PHI = PHINodesToUpdate[pi].first;
3585       MachineBasicBlock *PHIBB = PHI->getParent();
3586       assert(PHI->getOpcode() == TargetInstrInfo::PHI &&
3587              "This is not a machine PHI node that we are updating!");
3588       if (PHIBB == SwitchCases[i].LHSBB || PHIBB == SwitchCases[i].RHSBB) {
3589         PHI->addRegOperand(PHINodesToUpdate[pi].second);
3590         PHI->addMachineBasicBlockOperand(BB);
3591       }
3592     }
3593   }
3594 }
3595
3596 //===----------------------------------------------------------------------===//
3597 /// ScheduleAndEmitDAG - Pick a safe ordering and emit instructions for each
3598 /// target node in the graph.
3599 void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &DAG) {
3600   if (ViewSchedDAGs) DAG.viewGraph();
3601   ScheduleDAG *SL = NULL;
3602
3603   switch (ISHeuristic) {
3604   default: assert(0 && "Unrecognized scheduling heuristic");
3605   case defaultScheduling:
3606     if (TLI.getSchedulingPreference() == TargetLowering::SchedulingForLatency)
3607       SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3608     else {
3609       assert(TLI.getSchedulingPreference() ==
3610              TargetLowering::SchedulingForRegPressure && "Unknown sched type!");
3611       SL = createBURRListDAGScheduler(DAG, BB);
3612     }
3613     break;
3614   case noScheduling:
3615     SL = createBFS_DAGScheduler(DAG, BB);
3616     break;
3617   case simpleScheduling:
3618     SL = createSimpleDAGScheduler(false, DAG, BB);
3619     break;
3620   case simpleNoItinScheduling:
3621     SL = createSimpleDAGScheduler(true, DAG, BB);
3622     break;
3623   case listSchedulingBURR:
3624     SL = createBURRListDAGScheduler(DAG, BB);
3625     break;
3626   case listSchedulingTDRR:
3627     SL = createTDRRListDAGScheduler(DAG, BB);
3628     break;
3629   case listSchedulingTD:
3630     SL = createTDListDAGScheduler(DAG, BB, CreateTargetHazardRecognizer());
3631     break;
3632   }
3633   BB = SL->Run();
3634   delete SL;
3635 }
3636
3637 HazardRecognizer *SelectionDAGISel::CreateTargetHazardRecognizer() {
3638   return new HazardRecognizer();
3639 }
3640
3641 /// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
3642 /// by tblgen.  Others should not call it.
3643 void SelectionDAGISel::
3644 SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops, SelectionDAG &DAG) {
3645   std::vector<SDOperand> InOps;
3646   std::swap(InOps, Ops);
3647
3648   Ops.push_back(InOps[0]);  // input chain.
3649   Ops.push_back(InOps[1]);  // input asm string.
3650
3651   unsigned i = 2, e = InOps.size();
3652   if (InOps[e-1].getValueType() == MVT::Flag)
3653     --e;  // Don't process a flag operand if it is here.
3654   
3655   while (i != e) {
3656     unsigned Flags = cast<ConstantSDNode>(InOps[i])->getValue();
3657     if ((Flags & 7) != 4 /*MEM*/) {
3658       // Just skip over this operand, copying the operands verbatim.
3659       Ops.insert(Ops.end(), InOps.begin()+i, InOps.begin()+i+(Flags >> 3) + 1);
3660       i += (Flags >> 3) + 1;
3661     } else {
3662       assert((Flags >> 3) == 1 && "Memory operand with multiple values?");
3663       // Otherwise, this is a memory operand.  Ask the target to select it.
3664       std::vector<SDOperand> SelOps;
3665       if (SelectInlineAsmMemoryOperand(InOps[i+1], 'm', SelOps, DAG)) {
3666         std::cerr << "Could not match memory address.  Inline asm failure!\n";
3667         exit(1);
3668       }
3669       
3670       // Add this to the output node.
3671       Ops.push_back(DAG.getConstant(4/*MEM*/ | (SelOps.size() << 3), MVT::i32));
3672       Ops.insert(Ops.end(), SelOps.begin(), SelOps.end());
3673       i += 2;
3674     }
3675   }
3676   
3677   // Add the flag input back if present.
3678   if (e != InOps.size())
3679     Ops.push_back(InOps.back());
3680 }