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