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