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