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