blob: 4662fb06ef0bf2992cbbbb916646e59f870e7e23 [file] [log] [blame]
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001//===-- 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"
Dan Gohman5b229802008-09-04 20:49:27 +000017#include "llvm/ADT/SmallSet.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000018#include "llvm/Analysis/AliasAnalysis.h"
19#include "llvm/Constants.h"
Dan Gohman98ca4f22009-08-05 01:29:28 +000020#include "llvm/Constants.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000021#include "llvm/CallingConv.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/Function.h"
24#include "llvm/GlobalVariable.h"
25#include "llvm/InlineAsm.h"
26#include "llvm/Instructions.h"
27#include "llvm/Intrinsics.h"
28#include "llvm/IntrinsicInst.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000029#include "llvm/Module.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000030#include "llvm/CodeGen/FastISel.h"
31#include "llvm/CodeGen/GCStrategy.h"
32#include "llvm/CodeGen/GCMetadata.h"
33#include "llvm/CodeGen/MachineFunction.h"
34#include "llvm/CodeGen/MachineFrameInfo.h"
35#include "llvm/CodeGen/MachineInstrBuilder.h"
36#include "llvm/CodeGen/MachineJumpTableInfo.h"
37#include "llvm/CodeGen/MachineModuleInfo.h"
38#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000039#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000040#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel83489bb2009-01-13 00:35:13 +000041#include "llvm/CodeGen/DwarfWriter.h"
42#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000043#include "llvm/Target/TargetRegisterInfo.h"
44#include "llvm/Target/TargetData.h"
45#include "llvm/Target/TargetFrameInfo.h"
46#include "llvm/Target/TargetInstrInfo.h"
Dale Johannesen49de9822009-02-05 01:49:45 +000047#include "llvm/Target/TargetIntrinsicInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000048#include "llvm/Target/TargetLowering.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000049#include "llvm/Target/TargetOptions.h"
50#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000051#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000052#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000053#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000054#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000055#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000056#include <algorithm>
57using namespace llvm;
58
Dale Johannesen601d3c02008-09-05 01:48:15 +000059/// LimitFloatPrecision - Generate low-precision inline sequences for
60/// some float libcalls (6, 8 or 12 bits).
61static unsigned LimitFloatPrecision;
62
63static cl::opt<unsigned, true>
64LimitFPPrecision("limit-float-precision",
65 cl::desc("Generate low-precision inline sequences "
66 "for some float libcalls"),
67 cl::location(LimitFloatPrecision),
68 cl::init(0));
69
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000070/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
Dan Gohman2c91d102009-01-06 22:53:52 +000071/// of insertvalue or extractvalue indices that identify a member, return
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000072/// the linearized index of the start of the member.
73///
74static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
75 const unsigned *Indices,
76 const unsigned *IndicesEnd,
77 unsigned CurIndex = 0) {
78 // Base case: We're done.
79 if (Indices && Indices == IndicesEnd)
80 return CurIndex;
81
82 // Given a struct type, recursively traverse the elements.
83 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
84 for (StructType::element_iterator EB = STy->element_begin(),
85 EI = EB,
86 EE = STy->element_end();
87 EI != EE; ++EI) {
88 if (Indices && *Indices == unsigned(EI - EB))
89 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
90 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
91 }
Dan Gohman2c91d102009-01-06 22:53:52 +000092 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000093 }
94 // Given an array type, recursively traverse the elements.
95 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
96 const Type *EltTy = ATy->getElementType();
97 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
98 if (Indices && *Indices == i)
99 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
100 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
101 }
Dan Gohman2c91d102009-01-06 22:53:52 +0000102 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000103 }
104 // We haven't found the type we're looking for, so keep searching.
105 return CurIndex + 1;
106}
107
108/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
Owen Andersone50ed302009-08-10 22:56:29 +0000109/// EVTs that represent all the individual underlying
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000110/// non-aggregate types that comprise it.
111///
112/// If Offsets is non-null, it points to a vector to be filled in
113/// with the in-memory offsets of each of the individual values.
114///
115static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
Owen Andersone50ed302009-08-10 22:56:29 +0000116 SmallVectorImpl<EVT> &ValueVTs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000117 SmallVectorImpl<uint64_t> *Offsets = 0,
118 uint64_t StartingOffset = 0) {
119 // Given a struct type, recursively traverse the elements.
120 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
121 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
122 for (StructType::element_iterator EB = STy->element_begin(),
123 EI = EB,
124 EE = STy->element_end();
125 EI != EE; ++EI)
126 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
127 StartingOffset + SL->getElementOffset(EI - EB));
128 return;
129 }
130 // Given an array type, recursively traverse the elements.
131 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
132 const Type *EltTy = ATy->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000133 uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000134 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
135 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
136 StartingOffset + i * EltSize);
137 return;
138 }
Dan Gohman5e5558b2009-04-23 22:50:03 +0000139 // Interpret void as zero return values.
140 if (Ty == Type::VoidTy)
141 return;
Owen Andersone50ed302009-08-10 22:56:29 +0000142 // Base case: we can get an EVT for this LLVM IR type.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000143 ValueVTs.push_back(TLI.getValueType(Ty));
144 if (Offsets)
145 Offsets->push_back(StartingOffset);
146}
147
Dan Gohman2a7c6712008-09-03 23:18:39 +0000148namespace llvm {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000149 /// RegsForValue - This struct represents the registers (physical or virtual)
150 /// that a particular set of values is assigned, and the type information about
151 /// the value. The most common situation is to represent one value at a time,
152 /// but struct or array values are handled element-wise as multiple values.
153 /// The splitting of aggregates is performed recursively, so that we never
154 /// have aggregate-typed registers. The values at this point do not necessarily
155 /// have legal types, so each value may require one or more registers of some
156 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000157 ///
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000158 struct VISIBILITY_HIDDEN RegsForValue {
159 /// TLI - The TargetLowering object.
160 ///
161 const TargetLowering *TLI;
162
163 /// ValueVTs - The value types of the values, which may not be legal, and
164 /// may need be promoted or synthesized from one or more registers.
165 ///
Owen Andersone50ed302009-08-10 22:56:29 +0000166 SmallVector<EVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000167
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000168 /// RegVTs - The value types of the registers. This is the same size as
169 /// ValueVTs and it records, for each value, what the type of the assigned
170 /// register or registers are. (Individual values are never synthesized
171 /// from more than one type of register.)
172 ///
173 /// With virtual registers, the contents of RegVTs is redundant with TLI's
174 /// getRegisterType member function, however when with physical registers
175 /// it is necessary to have a separate record of the types.
176 ///
Owen Andersone50ed302009-08-10 22:56:29 +0000177 SmallVector<EVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000178
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000179 /// Regs - This list holds the registers assigned to the values.
180 /// Each legal or promoted value requires one register, and each
181 /// expanded value requires multiple registers.
182 ///
183 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000184
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000185 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000186
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000187 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000188 const SmallVector<unsigned, 4> &regs,
Owen Andersone50ed302009-08-10 22:56:29 +0000189 EVT regvt, EVT valuevt)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000190 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
191 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000192 const SmallVector<unsigned, 4> &regs,
Owen Andersone50ed302009-08-10 22:56:29 +0000193 const SmallVector<EVT, 4> &regvts,
194 const SmallVector<EVT, 4> &valuevts)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000195 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
196 RegsForValue(const TargetLowering &tli,
197 unsigned Reg, const Type *Ty) : TLI(&tli) {
198 ComputeValueVTs(tli, Ty, ValueVTs);
199
200 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +0000201 EVT ValueVT = ValueVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000202 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +0000203 EVT RegisterVT = TLI->getRegisterType(ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000204 for (unsigned i = 0; i != NumRegs; ++i)
205 Regs.push_back(Reg + i);
206 RegVTs.push_back(RegisterVT);
207 Reg += NumRegs;
208 }
209 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000210
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000211 /// append - Add the specified values to this one.
212 void append(const RegsForValue &RHS) {
213 TLI = RHS.TLI;
214 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
215 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
216 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
217 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000218
219
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000220 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000221 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000222 /// Chain/Flag as the input and updates them for the output Chain/Flag.
223 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000224 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000225 SDValue &Chain, SDValue *Flag) const;
226
227 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000228 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000229 /// Chain/Flag as the input and updates them for the output Chain/Flag.
230 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000231 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000232 SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000233
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000234 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Evan Cheng697cbbf2009-03-20 18:03:34 +0000235 /// operand list. This adds the code marker, matching input operand index
236 /// (if applicable), and includes the number of values added into it.
237 void AddInlineAsmOperands(unsigned Code,
238 bool HasMatching, unsigned MatchingIdx,
239 SelectionDAG &DAG, std::vector<SDValue> &Ops) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000240 };
241}
242
243/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000244/// PHI nodes or outside of the basic block that defines it, or used by a
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000245/// switch or atomic instruction, which may expand to multiple basic blocks.
246static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
247 if (isa<PHINode>(I)) return true;
248 BasicBlock *BB = I->getParent();
249 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Dan Gohman8e5c0da2009-04-09 02:33:36 +0000250 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000251 return true;
252 return false;
253}
254
255/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
256/// entry block, return true. This includes arguments used by switches, since
257/// the switch may expand into multiple basic blocks.
258static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) {
259 // With FastISel active, we may be splitting blocks, so force creation
260 // of virtual registers for all non-dead arguments.
Dan Gohman33134c42008-09-25 17:05:24 +0000261 // Don't force virtual registers for byval arguments though, because
262 // fast-isel can't handle those in all cases.
263 if (EnableFastISel && !A->hasByValAttr())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000264 return A->use_empty();
265
266 BasicBlock *Entry = A->getParent()->begin();
267 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
268 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
269 return false; // Use not in entry block.
270 return true;
271}
272
273FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli)
274 : TLI(tli) {
275}
276
277void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000278 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000279 bool EnableFastISel) {
280 Fn = &fn;
281 MF = &mf;
282 RegInfo = &MF->getRegInfo();
283
284 // Create a vreg for each argument register that is not dead and is used
285 // outside of the entry block for the function.
286 for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
287 AI != E; ++AI)
288 if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
289 InitializeRegForValue(AI);
290
291 // Initialize the mapping of values to registers. This is only set up for
292 // instruction values that are used outside of the block that defines
293 // them.
294 Function::iterator BB = Fn->begin(), EB = Fn->end();
295 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
296 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
297 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
298 const Type *Ty = AI->getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +0000299 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000300 unsigned Align =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000301 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
302 AI->getAlignment());
303
304 TySize *= CUI->getZExtValue(); // Get total allocated size.
305 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
306 StaticAllocaMap[AI] =
307 MF->getFrameInfo()->CreateStackObject(TySize, Align);
308 }
309
310 for (; BB != EB; ++BB)
311 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
312 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
313 if (!isa<AllocaInst>(I) ||
314 !StaticAllocaMap.count(cast<AllocaInst>(I)))
315 InitializeRegForValue(I);
316
317 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
318 // also creates the initial PHI MachineInstrs, though none of the input
319 // operands are populated.
320 for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) {
321 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
322 MBBMap[BB] = MBB;
323 MF->push_back(MBB);
324
325 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
326 // appropriate.
327 PHINode *PN;
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000328 DebugLoc DL;
329 for (BasicBlock::iterator
330 I = BB->begin(), E = BB->end(); I != E; ++I) {
331 if (CallInst *CI = dyn_cast<CallInst>(I)) {
332 if (Function *F = CI->getCalledFunction()) {
333 switch (F->getIntrinsicID()) {
334 default: break;
335 case Intrinsic::dbg_stoppoint: {
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000336 DbgStopPointInst *SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000337 if (isValidDebugInfoIntrinsic(*SPI, CodeGenOpt::Default))
338 DL = ExtractDebugLocation(*SPI, MF->getDebugLocInfo());
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000339 break;
340 }
341 case Intrinsic::dbg_func_start: {
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +0000342 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000343 if (isValidDebugInfoIntrinsic(*FSI, CodeGenOpt::Default))
344 DL = ExtractDebugLocation(*FSI, MF->getDebugLocInfo());
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000345 break;
346 }
347 }
348 }
349 }
350
351 PN = dyn_cast<PHINode>(I);
352 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000353
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000354 unsigned PHIReg = ValueMap[PN];
355 assert(PHIReg && "PHI node does not have an assigned virtual register!");
356
Owen Andersone50ed302009-08-10 22:56:29 +0000357 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000358 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
359 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
Owen Andersone50ed302009-08-10 22:56:29 +0000360 EVT VT = ValueVTs[vti];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000361 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000362 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000363 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000364 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000365 PHIReg += NumRegisters;
366 }
367 }
368 }
369}
370
Owen Andersone50ed302009-08-10 22:56:29 +0000371unsigned FunctionLoweringInfo::MakeReg(EVT VT) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000372 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
373}
374
375/// CreateRegForValue - Allocate the appropriate number of virtual registers of
376/// the correctly promoted or expanded types. Assign these registers
377/// consecutive vreg numbers and return the first assigned number.
378///
379/// In the case that the given value has struct or array type, this function
380/// will assign registers for each member or element.
381///
382unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
Owen Andersone50ed302009-08-10 22:56:29 +0000383 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000384 ComputeValueVTs(TLI, V->getType(), ValueVTs);
385
386 unsigned FirstReg = 0;
387 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +0000388 EVT ValueVT = ValueVTs[Value];
389 EVT RegisterVT = TLI.getRegisterType(ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000390
391 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
392 for (unsigned i = 0; i != NumRegs; ++i) {
393 unsigned R = MakeReg(RegisterVT);
394 if (!FirstReg) FirstReg = R;
395 }
396 }
397 return FirstReg;
398}
399
400/// getCopyFromParts - Create a value that contains the specified legal parts
401/// combined into the value they represent. If the parts combine to a type
402/// larger then ValueVT then AssertOp can be used to specify whether the extra
403/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
404/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000405static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
406 const SDValue *Parts,
Owen Andersone50ed302009-08-10 22:56:29 +0000407 unsigned NumParts, EVT PartVT, EVT ValueVT,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000408 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000409 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000410 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000411 SDValue Val = Parts[0];
412
413 if (NumParts > 1) {
414 // Assemble the value from multiple parts.
Eli Friedman2ac8b322009-05-20 06:02:09 +0000415 if (!ValueVT.isVector() && ValueVT.isInteger()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000416 unsigned PartBits = PartVT.getSizeInBits();
417 unsigned ValueBits = ValueVT.getSizeInBits();
418
419 // Assemble the power of 2 part.
420 unsigned RoundParts = NumParts & (NumParts - 1) ?
421 1 << Log2_32(NumParts) : NumParts;
422 unsigned RoundBits = PartBits * RoundParts;
Owen Andersone50ed302009-08-10 22:56:29 +0000423 EVT RoundVT = RoundBits == ValueBits ?
424 ValueVT : EVT::getIntegerVT(RoundBits);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000425 SDValue Lo, Hi;
426
Owen Andersone50ed302009-08-10 22:56:29 +0000427 EVT HalfVT = EVT::getIntegerVT(RoundBits/2);
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000428
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000429 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000430 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
431 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000432 PartVT, HalfVT);
433 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000434 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
435 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000436 }
437 if (TLI.isBigEndian())
438 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000439 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000440
441 if (RoundParts < NumParts) {
442 // Assemble the trailing non-power-of-2 part.
443 unsigned OddParts = NumParts - RoundParts;
Owen Andersone50ed302009-08-10 22:56:29 +0000444 EVT OddVT = EVT::getIntegerVT(OddParts * PartBits);
Scott Michelfdc40a02009-02-17 22:15:04 +0000445 Hi = getCopyFromParts(DAG, dl,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000446 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000447
448 // Combine the round and odd parts.
449 Lo = Val;
450 if (TLI.isBigEndian())
451 std::swap(Lo, Hi);
Owen Andersone50ed302009-08-10 22:56:29 +0000452 EVT TotalVT = EVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000453 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
454 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000455 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000456 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000457 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
458 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000459 }
Eli Friedman2ac8b322009-05-20 06:02:09 +0000460 } else if (ValueVT.isVector()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000461 // Handle a multi-element vector.
Owen Andersone50ed302009-08-10 22:56:29 +0000462 EVT IntermediateVT, RegisterVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000463 unsigned NumIntermediates;
464 unsigned NumRegs =
465 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
466 RegisterVT);
467 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
468 NumParts = NumRegs; // Silence a compiler warning.
469 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
470 assert(RegisterVT == Parts[0].getValueType() &&
471 "Part type doesn't match part!");
472
473 // Assemble the parts into intermediate operands.
474 SmallVector<SDValue, 8> Ops(NumIntermediates);
475 if (NumIntermediates == NumParts) {
476 // If the register was not expanded, truncate or copy the value,
477 // as appropriate.
478 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000479 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000480 PartVT, IntermediateVT);
481 } else if (NumParts > 0) {
482 // If the intermediate type was expanded, build the intermediate operands
483 // from the parts.
484 assert(NumParts % NumIntermediates == 0 &&
485 "Must expand into a divisible number of parts!");
486 unsigned Factor = NumParts / NumIntermediates;
487 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000488 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000489 PartVT, IntermediateVT);
490 }
491
492 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
493 // operands.
494 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000495 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000496 ValueVT, &Ops[0], NumIntermediates);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000497 } else if (PartVT.isFloatingPoint()) {
498 // FP split into multiple FP parts (for ppcf128)
Owen Anderson825b72b2009-08-11 20:47:22 +0000499 assert(ValueVT == EVT(MVT::ppcf128) && PartVT == EVT(MVT::f64) &&
Eli Friedman2ac8b322009-05-20 06:02:09 +0000500 "Unexpected split");
501 SDValue Lo, Hi;
Owen Anderson825b72b2009-08-11 20:47:22 +0000502 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, EVT(MVT::f64), Parts[0]);
503 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, EVT(MVT::f64), Parts[1]);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000504 if (TLI.isBigEndian())
505 std::swap(Lo, Hi);
506 Val = DAG.getNode(ISD::BUILD_PAIR, dl, ValueVT, Lo, Hi);
507 } else {
508 // FP split into integer parts (soft fp)
509 assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
510 !PartVT.isVector() && "Unexpected split");
Owen Andersone50ed302009-08-10 22:56:29 +0000511 EVT IntVT = EVT::getIntegerVT(ValueVT.getSizeInBits());
Eli Friedman2ac8b322009-05-20 06:02:09 +0000512 Val = getCopyFromParts(DAG, dl, Parts, NumParts, PartVT, IntVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000513 }
514 }
515
516 // There is now one part, held in Val. Correct it to match ValueVT.
517 PartVT = Val.getValueType();
518
519 if (PartVT == ValueVT)
520 return Val;
521
522 if (PartVT.isVector()) {
523 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000524 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000525 }
526
527 if (ValueVT.isVector()) {
528 assert(ValueVT.getVectorElementType() == PartVT &&
529 ValueVT.getVectorNumElements() == 1 &&
530 "Only trivial scalar-to-vector conversions should get here!");
Evan Chenga87008d2009-02-25 22:49:59 +0000531 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000532 }
533
534 if (PartVT.isInteger() &&
535 ValueVT.isInteger()) {
536 if (ValueVT.bitsLT(PartVT)) {
537 // For a truncate, see if we have any information to
538 // indicate whether the truncated bits will always be
539 // zero or sign-extension.
540 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000541 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000542 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000543 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000544 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000545 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000546 }
547 }
548
549 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
550 if (ValueVT.bitsLT(Val.getValueType()))
551 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000552 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000553 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000554 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000555 }
556
557 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000558 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000559
Torok Edwinc23197a2009-07-14 16:55:14 +0000560 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000561 return SDValue();
562}
563
564/// getCopyToParts - Create a series of nodes that contain the specified value
565/// split into legal parts. If the parts contain more bits than Val, then, for
566/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000567static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Owen Andersone50ed302009-08-10 22:56:29 +0000568 SDValue *Parts, unsigned NumParts, EVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000569 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000570 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Owen Andersone50ed302009-08-10 22:56:29 +0000571 EVT PtrVT = TLI.getPointerTy();
572 EVT ValueVT = Val.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000573 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000574 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000575 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
576
577 if (!NumParts)
578 return;
579
580 if (!ValueVT.isVector()) {
581 if (PartVT == ValueVT) {
582 assert(NumParts == 1 && "No-op copy with multiple parts!");
583 Parts[0] = Val;
584 return;
585 }
586
587 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
588 // If the parts cover more bits than the value has, promote the value.
589 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
590 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000591 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000592 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
Owen Andersone50ed302009-08-10 22:56:29 +0000593 ValueVT = EVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000594 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000595 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000596 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000597 }
598 } else if (PartBits == ValueVT.getSizeInBits()) {
599 // Different types of the same size.
600 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000601 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000602 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
603 // If the parts cover less bits than value has, truncate the value.
604 if (PartVT.isInteger() && ValueVT.isInteger()) {
Owen Andersone50ed302009-08-10 22:56:29 +0000605 ValueVT = EVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000606 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000607 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000608 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000609 }
610 }
611
612 // The value may have changed - recompute ValueVT.
613 ValueVT = Val.getValueType();
614 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
615 "Failed to tile the value with PartVT!");
616
617 if (NumParts == 1) {
618 assert(PartVT == ValueVT && "Type conversion failed!");
619 Parts[0] = Val;
620 return;
621 }
622
623 // Expand the value into multiple parts.
624 if (NumParts & (NumParts - 1)) {
625 // The number of parts is not a power of 2. Split off and copy the tail.
626 assert(PartVT.isInteger() && ValueVT.isInteger() &&
627 "Do not know what to expand to!");
628 unsigned RoundParts = 1 << Log2_32(NumParts);
629 unsigned RoundBits = RoundParts * PartBits;
630 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000631 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000632 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000633 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000634 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000635 if (TLI.isBigEndian())
636 // The odd parts were reversed by getCopyToParts - unreverse them.
637 std::reverse(Parts + RoundParts, Parts + NumParts);
638 NumParts = RoundParts;
Owen Andersone50ed302009-08-10 22:56:29 +0000639 ValueVT = EVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000640 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000641 }
642
643 // The number of parts is a power of 2. Repeatedly bisect the value using
644 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000645 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Andersone50ed302009-08-10 22:56:29 +0000646 EVT::getIntegerVT(ValueVT.getSizeInBits()),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000647 Val);
648 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
649 for (unsigned i = 0; i < NumParts; i += StepSize) {
650 unsigned ThisBits = StepSize * PartBits / 2;
Owen Andersone50ed302009-08-10 22:56:29 +0000651 EVT ThisVT = EVT::getIntegerVT (ThisBits);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000652 SDValue &Part0 = Parts[i];
653 SDValue &Part1 = Parts[i+StepSize/2];
654
Scott Michelfdc40a02009-02-17 22:15:04 +0000655 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000656 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000657 DAG.getConstant(1, PtrVT));
Scott Michelfdc40a02009-02-17 22:15:04 +0000658 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000659 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000660 DAG.getConstant(0, PtrVT));
661
662 if (ThisBits == PartBits && ThisVT != PartVT) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000663 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000664 PartVT, Part0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000665 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000666 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000667 }
668 }
669 }
670
671 if (TLI.isBigEndian())
Dale Johannesen8a36f502009-02-25 22:39:13 +0000672 std::reverse(Parts, Parts + OrigNumParts);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000673
674 return;
675 }
676
677 // Vector ValueVT.
678 if (NumParts == 1) {
679 if (PartVT != ValueVT) {
680 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000681 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000682 } else {
683 assert(ValueVT.getVectorElementType() == PartVT &&
684 ValueVT.getVectorNumElements() == 1 &&
685 "Only trivial vector-to-scalar conversions should get here!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000686 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000687 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000688 DAG.getConstant(0, PtrVT));
689 }
690 }
691
692 Parts[0] = Val;
693 return;
694 }
695
696 // Handle a multi-element vector.
Owen Andersone50ed302009-08-10 22:56:29 +0000697 EVT IntermediateVT, RegisterVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000698 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000699 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000700 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
701 RegisterVT);
702 unsigned NumElements = ValueVT.getVectorNumElements();
703
704 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
705 NumParts = NumRegs; // Silence a compiler warning.
706 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
707
708 // Split the vector into intermediate operands.
709 SmallVector<SDValue, 8> Ops(NumIntermediates);
710 for (unsigned i = 0; i != NumIntermediates; ++i)
711 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000712 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000713 IntermediateVT, Val,
714 DAG.getConstant(i * (NumElements / NumIntermediates),
715 PtrVT));
716 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000717 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000718 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000719 DAG.getConstant(i, PtrVT));
720
721 // Split the intermediate operands into legal parts.
722 if (NumParts == NumIntermediates) {
723 // If the register was not expanded, promote or copy the value,
724 // as appropriate.
725 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000726 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000727 } else if (NumParts > 0) {
728 // If the intermediate type was expanded, split each the value into
729 // legal parts.
730 assert(NumParts % NumIntermediates == 0 &&
731 "Must expand into a divisible number of parts!");
732 unsigned Factor = NumParts / NumIntermediates;
733 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000734 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000735 }
736}
737
738
739void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
740 AA = &aa;
741 GFI = gfi;
742 TD = DAG.getTarget().getTargetData();
743}
744
745/// clear - Clear out the curret SelectionDAG and the associated
746/// state and prepare this SelectionDAGLowering object to be used
747/// for a new block. This doesn't clear out information about
748/// additional blocks that are needed to complete switch lowering
749/// or PHI node updating; that information is cleared out as it is
750/// consumed.
751void SelectionDAGLowering::clear() {
752 NodeMap.clear();
753 PendingLoads.clear();
754 PendingExports.clear();
755 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000756 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000757 HasTailCall = false;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000758}
759
760/// getRoot - Return the current virtual root of the Selection DAG,
761/// flushing any PendingLoad items. This must be done before emitting
762/// a store or any other node that may need to be ordered after any
763/// prior load instructions.
764///
765SDValue SelectionDAGLowering::getRoot() {
766 if (PendingLoads.empty())
767 return DAG.getRoot();
768
769 if (PendingLoads.size() == 1) {
770 SDValue Root = PendingLoads[0];
771 DAG.setRoot(Root);
772 PendingLoads.clear();
773 return Root;
774 }
775
776 // Otherwise, we have to make a token factor node.
Owen Anderson825b72b2009-08-11 20:47:22 +0000777 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000778 &PendingLoads[0], PendingLoads.size());
779 PendingLoads.clear();
780 DAG.setRoot(Root);
781 return Root;
782}
783
784/// getControlRoot - Similar to getRoot, but instead of flushing all the
785/// PendingLoad items, flush all the PendingExports items. It is necessary
786/// to do this before emitting a terminator instruction.
787///
788SDValue SelectionDAGLowering::getControlRoot() {
789 SDValue Root = DAG.getRoot();
790
791 if (PendingExports.empty())
792 return Root;
793
794 // Turn all of the CopyToReg chains into one factored node.
795 if (Root.getOpcode() != ISD::EntryToken) {
796 unsigned i = 0, e = PendingExports.size();
797 for (; i != e; ++i) {
798 assert(PendingExports[i].getNode()->getNumOperands() > 1);
799 if (PendingExports[i].getNode()->getOperand(0) == Root)
800 break; // Don't add the root if we already indirectly depend on it.
801 }
802
803 if (i == e)
804 PendingExports.push_back(Root);
805 }
806
Owen Anderson825b72b2009-08-11 20:47:22 +0000807 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000808 &PendingExports[0],
809 PendingExports.size());
810 PendingExports.clear();
811 DAG.setRoot(Root);
812 return Root;
813}
814
815void SelectionDAGLowering::visit(Instruction &I) {
816 visit(I.getOpcode(), I);
817}
818
819void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
820 // Note: this doesn't use InstVisitor, because it has to work with
821 // ConstantExpr's in addition to instructions.
822 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000823 default: llvm_unreachable("Unknown instruction type encountered!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000824 // Build the switch statement using the Instruction.def file.
825#define HANDLE_INST(NUM, OPCODE, CLASS) \
826 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
827#include "llvm/Instruction.def"
828 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000829}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000830
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000831SDValue SelectionDAGLowering::getValue(const Value *V) {
832 SDValue &N = NodeMap[V];
833 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000834
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000835 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Owen Andersone50ed302009-08-10 22:56:29 +0000836 EVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000837
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000838 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000839 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000840
841 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
842 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000843
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000844 if (isa<ConstantPointerNull>(C))
845 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000846
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000847 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000848 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000849
Nate Begeman9008ca62009-04-27 18:41:29 +0000850 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000851 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000852
853 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
854 visit(CE->getOpcode(), *CE);
855 SDValue N1 = NodeMap[V];
856 assert(N1.getNode() && "visit didn't populate the ValueMap!");
857 return N1;
858 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000859
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000860 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
861 SmallVector<SDValue, 4> Constants;
862 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
863 OI != OE; ++OI) {
864 SDNode *Val = getValue(*OI).getNode();
865 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
866 Constants.push_back(SDValue(Val, i));
867 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000868 return DAG.getMergeValues(&Constants[0], Constants.size(),
869 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000870 }
871
872 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
873 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
874 "Unknown struct or array constant!");
875
Owen Andersone50ed302009-08-10 22:56:29 +0000876 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000877 ComputeValueVTs(TLI, C->getType(), ValueVTs);
878 unsigned NumElts = ValueVTs.size();
879 if (NumElts == 0)
880 return SDValue(); // empty struct
881 SmallVector<SDValue, 4> Constants(NumElts);
882 for (unsigned i = 0; i != NumElts; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000883 EVT EltVT = ValueVTs[i];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000884 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000885 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000886 else if (EltVT.isFloatingPoint())
887 Constants[i] = DAG.getConstantFP(0, EltVT);
888 else
889 Constants[i] = DAG.getConstant(0, EltVT);
890 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000891 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000892 }
893
894 const VectorType *VecTy = cast<VectorType>(V->getType());
895 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000896
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000897 // Now that we know the number and type of the elements, get that number of
898 // elements into the Ops array based on what kind of constant it is.
899 SmallVector<SDValue, 16> Ops;
900 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
901 for (unsigned i = 0; i != NumElements; ++i)
902 Ops.push_back(getValue(CP->getOperand(i)));
903 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000904 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Owen Andersone50ed302009-08-10 22:56:29 +0000905 EVT EltVT = TLI.getValueType(VecTy->getElementType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000906
907 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000908 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000909 Op = DAG.getConstantFP(0, EltVT);
910 else
911 Op = DAG.getConstant(0, EltVT);
912 Ops.assign(NumElements, Op);
913 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000914
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000915 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000916 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
917 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000918 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000919
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000920 // If this is a static alloca, generate it as the frameindex instead of
921 // computation.
922 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
923 DenseMap<const AllocaInst*, int>::iterator SI =
924 FuncInfo.StaticAllocaMap.find(AI);
925 if (SI != FuncInfo.StaticAllocaMap.end())
926 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
927 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000928
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000929 unsigned InReg = FuncInfo.ValueMap[V];
930 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000931
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000932 RegsForValue RFV(TLI, InReg, V->getType());
933 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000934 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000935}
936
937
938void SelectionDAGLowering::visitRet(ReturnInst &I) {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000939 SDValue Chain = getControlRoot();
940 SmallVector<ISD::OutputArg, 8> Outs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000941 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000942 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000943 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000944 unsigned NumValues = ValueVTs.size();
945 if (NumValues == 0) continue;
946
947 SDValue RetOp = getValue(I.getOperand(i));
948 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Owen Andersone50ed302009-08-10 22:56:29 +0000949 EVT VT = ValueVTs[j];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000950
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000951 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000952
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000953 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000954 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000955 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000956 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000957 ExtendKind = ISD::ZERO_EXTEND;
958
Evan Cheng3927f432009-03-25 20:20:11 +0000959 // FIXME: C calling convention requires the return type to be promoted to
960 // at least 32-bit. But this is not necessary for non-C calling
961 // conventions. The frontend should mark functions whose return values
962 // require promoting with signext or zeroext attributes.
963 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000964 EVT MinVT = TLI.getRegisterType(MVT::i32);
Evan Cheng3927f432009-03-25 20:20:11 +0000965 if (VT.bitsLT(MinVT))
966 VT = MinVT;
967 }
968
969 unsigned NumParts = TLI.getNumRegisters(VT);
Owen Andersone50ed302009-08-10 22:56:29 +0000970 EVT PartVT = TLI.getRegisterType(VT);
Evan Cheng3927f432009-03-25 20:20:11 +0000971 SmallVector<SDValue, 4> Parts(NumParts);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000972 getCopyToParts(DAG, getCurDebugLoc(),
973 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000974 &Parts[0], NumParts, PartVT, ExtendKind);
975
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000976 // 'inreg' on function refers to return value
977 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +0000978 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000979 Flags.setInReg();
Anton Korobeynikov0692fab2009-07-16 13:35:48 +0000980
981 // Propagate extension type if any
982 if (F->paramHasAttr(0, Attribute::SExt))
983 Flags.setSExt();
984 else if (F->paramHasAttr(0, Attribute::ZExt))
985 Flags.setZExt();
986
Dan Gohman98ca4f22009-08-05 01:29:28 +0000987 for (unsigned i = 0; i < NumParts; ++i)
988 Outs.push_back(ISD::OutputArg(Flags, Parts[i], /*isfixed=*/true));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000989 }
990 }
Dan Gohman98ca4f22009-08-05 01:29:28 +0000991
992 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
993 unsigned CallConv = DAG.getMachineFunction().getFunction()->getCallingConv();
994 Chain = TLI.LowerReturn(Chain, CallConv, isVarArg,
995 Outs, getCurDebugLoc(), DAG);
Dan Gohman5e866062009-08-06 15:37:27 +0000996
997 // Verify that the target's LowerReturn behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +0000998 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +0000999 "LowerReturn didn't return a valid chain!");
1000
1001 // Update the DAG with the new chain value resulting from return lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001002 DAG.setRoot(Chain);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001003}
1004
Dan Gohmanad62f532009-04-23 23:13:24 +00001005/// CopyToExportRegsIfNeeded - If the given value has virtual registers
1006/// created for it, emit nodes to copy the value into the virtual
1007/// registers.
1008void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) {
1009 if (!V->use_empty()) {
1010 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1011 if (VMI != FuncInfo.ValueMap.end())
1012 CopyValueToVirtualRegister(V, VMI->second);
1013 }
1014}
1015
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001016/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1017/// the current basic block, add it to ValueMap now so that we'll get a
1018/// CopyTo/FromReg.
1019void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1020 // No need to export constants.
1021 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001022
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001023 // Already exported?
1024 if (FuncInfo.isExportedInst(V)) return;
1025
1026 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1027 CopyValueToVirtualRegister(V, Reg);
1028}
1029
1030bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1031 const BasicBlock *FromBB) {
1032 // The operands of the setcc have to be in this block. We don't know
1033 // how to export them from some other block.
1034 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1035 // Can export from current BB.
1036 if (VI->getParent() == FromBB)
1037 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001038
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001039 // Is already exported, noop.
1040 return FuncInfo.isExportedInst(V);
1041 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001042
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001043 // If this is an argument, we can export it if the BB is the entry block or
1044 // if it is already exported.
1045 if (isa<Argument>(V)) {
1046 if (FromBB == &FromBB->getParent()->getEntryBlock())
1047 return true;
1048
1049 // Otherwise, can only export this if it is already exported.
1050 return FuncInfo.isExportedInst(V);
1051 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001052
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001053 // Otherwise, constants can always be exported.
1054 return true;
1055}
1056
1057static bool InBlock(const Value *V, const BasicBlock *BB) {
1058 if (const Instruction *I = dyn_cast<Instruction>(V))
1059 return I->getParent() == BB;
1060 return true;
1061}
1062
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001063/// getFCmpCondCode - Return the ISD condition code corresponding to
1064/// the given LLVM IR floating-point condition code. This includes
1065/// consideration of global floating-point math flags.
1066///
1067static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1068 ISD::CondCode FPC, FOC;
1069 switch (Pred) {
1070 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1071 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1072 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1073 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1074 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1075 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1076 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1077 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1078 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1079 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1080 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1081 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1082 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1083 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1084 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1085 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1086 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001087 llvm_unreachable("Invalid FCmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001088 FOC = FPC = ISD::SETFALSE;
1089 break;
1090 }
1091 if (FiniteOnlyFPMath())
1092 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001093 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001094 return FPC;
1095}
1096
1097/// getICmpCondCode - Return the ISD condition code corresponding to
1098/// the given LLVM IR integer condition code.
1099///
1100static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1101 switch (Pred) {
1102 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1103 case ICmpInst::ICMP_NE: return ISD::SETNE;
1104 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1105 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1106 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1107 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1108 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1109 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1110 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1111 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1112 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001113 llvm_unreachable("Invalid ICmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001114 return ISD::SETNE;
1115 }
1116}
1117
Dan Gohmanc2277342008-10-17 21:16:08 +00001118/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1119/// This function emits a branch and is used at the leaves of an OR or an
1120/// AND operator tree.
1121///
1122void
1123SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1124 MachineBasicBlock *TBB,
1125 MachineBasicBlock *FBB,
1126 MachineBasicBlock *CurBB) {
1127 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001128
Dan Gohmanc2277342008-10-17 21:16:08 +00001129 // If the leaf of the tree is a comparison, merge the condition into
1130 // the caseblock.
1131 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1132 // The operands of the cmp have to be in this block. We don't know
1133 // how to export them from some other block. If this is the first block
1134 // of the sequence, no exporting is needed.
1135 if (CurBB == CurMBB ||
1136 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1137 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001138 ISD::CondCode Condition;
1139 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001140 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001141 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001142 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001143 } else {
1144 Condition = ISD::SETEQ; // silence warning.
Torok Edwinc23197a2009-07-14 16:55:14 +00001145 llvm_unreachable("Unknown compare instruction");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001146 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001147
1148 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001149 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1150 SwitchCases.push_back(CB);
1151 return;
1152 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001153 }
1154
1155 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001156 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanc2277342008-10-17 21:16:08 +00001157 NULL, TBB, FBB, CurBB);
1158 SwitchCases.push_back(CB);
1159}
1160
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001161/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001162void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1163 MachineBasicBlock *TBB,
1164 MachineBasicBlock *FBB,
1165 MachineBasicBlock *CurBB,
1166 unsigned Opc) {
1167 // If this node is not part of the or/and tree, emit it as a branch.
1168 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001169 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001170 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1171 BOp->getParent() != CurBB->getBasicBlock() ||
1172 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1173 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1174 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001175 return;
1176 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001177
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001178 // Create TmpBB after CurBB.
1179 MachineFunction::iterator BBI = CurBB;
1180 MachineFunction &MF = DAG.getMachineFunction();
1181 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1182 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001183
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001184 if (Opc == Instruction::Or) {
1185 // Codegen X | Y as:
1186 // jmp_if_X TBB
1187 // jmp TmpBB
1188 // TmpBB:
1189 // jmp_if_Y TBB
1190 // jmp FBB
1191 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001192
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001193 // Emit the LHS condition.
1194 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001195
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001196 // Emit the RHS condition into TmpBB.
1197 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1198 } else {
1199 assert(Opc == Instruction::And && "Unknown merge op!");
1200 // Codegen X & Y as:
1201 // jmp_if_X TmpBB
1202 // jmp FBB
1203 // TmpBB:
1204 // jmp_if_Y TBB
1205 // jmp FBB
1206 //
1207 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001208
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001209 // Emit the LHS condition.
1210 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001211
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001212 // Emit the RHS condition into TmpBB.
1213 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1214 }
1215}
1216
1217/// If the set of cases should be emitted as a series of branches, return true.
1218/// If we should emit this as a bunch of and/or'd together conditions, return
1219/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001220bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001221SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1222 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001223
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001224 // If this is two comparisons of the same values or'd or and'd together, they
1225 // will get folded into a single comparison, so don't emit two blocks.
1226 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1227 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1228 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1229 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1230 return false;
1231 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001232
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001233 return true;
1234}
1235
1236void SelectionDAGLowering::visitBr(BranchInst &I) {
1237 // Update machine-CFG edges.
1238 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1239
1240 // Figure out which block is immediately after the current one.
1241 MachineBasicBlock *NextBlock = 0;
1242 MachineFunction::iterator BBI = CurMBB;
1243 if (++BBI != CurMBB->getParent()->end())
1244 NextBlock = BBI;
1245
1246 if (I.isUnconditional()) {
1247 // Update machine-CFG edges.
1248 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001249
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001250 // If this is not a fall-through branch, emit the branch.
1251 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001252 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001253 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001254 DAG.getBasicBlock(Succ0MBB)));
1255 return;
1256 }
1257
1258 // If this condition is one of the special cases we handle, do special stuff
1259 // now.
1260 Value *CondVal = I.getCondition();
1261 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1262
1263 // If this is a series of conditions that are or'd or and'd together, emit
1264 // this as a sequence of branches instead of setcc's with and/or operations.
1265 // For example, instead of something like:
1266 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001267 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001268 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001269 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001270 // or C, F
1271 // jnz foo
1272 // Emit:
1273 // cmp A, B
1274 // je foo
1275 // cmp D, E
1276 // jle foo
1277 //
1278 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001279 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001280 (BOp->getOpcode() == Instruction::And ||
1281 BOp->getOpcode() == Instruction::Or)) {
1282 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1283 // If the compares in later blocks need to use values not currently
1284 // exported from this block, export them now. This block should always
1285 // be the first entry.
1286 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001287
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001288 // Allow some cases to be rejected.
1289 if (ShouldEmitAsBranches(SwitchCases)) {
1290 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1291 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1292 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1293 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001294
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001295 // Emit the branch for this block.
1296 visitSwitchCase(SwitchCases[0]);
1297 SwitchCases.erase(SwitchCases.begin());
1298 return;
1299 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001300
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001301 // Okay, we decided not to do this, remove any inserted MBB's and clear
1302 // SwitchCases.
1303 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1304 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001305
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001306 SwitchCases.clear();
1307 }
1308 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001310 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001311 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001312 NULL, Succ0MBB, Succ1MBB, CurMBB);
1313 // Use visitSwitchCase to actually insert the fast branch sequence for this
1314 // cond branch.
1315 visitSwitchCase(CB);
1316}
1317
1318/// visitSwitchCase - Emits the necessary code to represent a single node in
1319/// the binary search tree resulting from lowering a switch instruction.
1320void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1321 SDValue Cond;
1322 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001323 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001324
1325 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001326 if (CB.CmpMHS == NULL) {
1327 // Fold "(X == true)" to X and "(X == false)" to !X to
1328 // handle common cases produced by branch lowering.
Owen Anderson5defacc2009-07-31 17:39:07 +00001329 if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001330 CB.CC == ISD::SETEQ)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001331 Cond = CondLHS;
Owen Anderson5defacc2009-07-31 17:39:07 +00001332 else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001333 CB.CC == ISD::SETEQ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001334 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001335 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001336 } else
Owen Anderson825b72b2009-08-11 20:47:22 +00001337 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001338 } else {
1339 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1340
Anton Korobeynikov23218582008-12-23 22:25:27 +00001341 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1342 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001343
1344 SDValue CmpOp = getValue(CB.CmpMHS);
Owen Andersone50ed302009-08-10 22:56:29 +00001345 EVT VT = CmpOp.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001346
1347 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001348 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001349 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001350 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001351 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001352 VT, CmpOp, DAG.getConstant(Low, VT));
Owen Anderson825b72b2009-08-11 20:47:22 +00001353 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001354 DAG.getConstant(High-Low, VT), ISD::SETULE);
1355 }
1356 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001357
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001358 // Update successor info
1359 CurMBB->addSuccessor(CB.TrueBB);
1360 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001361
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001362 // Set NextBlock to be the MBB immediately after the current one, if any.
1363 // This is used to avoid emitting unnecessary branches to the next block.
1364 MachineBasicBlock *NextBlock = 0;
1365 MachineFunction::iterator BBI = CurMBB;
1366 if (++BBI != CurMBB->getParent()->end())
1367 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001368
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001369 // If the lhs block is the next block, invert the condition so that we can
1370 // fall through to the lhs instead of the rhs block.
1371 if (CB.TrueBB == NextBlock) {
1372 std::swap(CB.TrueBB, CB.FalseBB);
1373 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001374 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001375 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001376 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001377 MVT::Other, getControlRoot(), Cond,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001378 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001379
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001380 // If the branch was constant folded, fix up the CFG.
1381 if (BrCond.getOpcode() == ISD::BR) {
1382 CurMBB->removeSuccessor(CB.FalseBB);
1383 DAG.setRoot(BrCond);
1384 } else {
1385 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001386 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001387 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001388
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001389 if (CB.FalseBB == NextBlock)
1390 DAG.setRoot(BrCond);
1391 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001392 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001393 DAG.getBasicBlock(CB.FalseBB)));
1394 }
1395}
1396
1397/// visitJumpTable - Emit JumpTable node in the current MBB
1398void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1399 // Emit the code for the jump table
1400 assert(JT.Reg != -1U && "Should lower JT Header first!");
Owen Andersone50ed302009-08-10 22:56:29 +00001401 EVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001402 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1403 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001404 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001405 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001406 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001407 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001408}
1409
1410/// visitJumpTableHeader - This function emits necessary code to produce index
1411/// in the JumpTable from switch case.
1412void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1413 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001414 // Subtract the lowest switch case value from the value being switched on and
1415 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001416 // difference between smallest and largest cases.
1417 SDValue SwitchOp = getValue(JTH.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001418 EVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001419 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001420 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001421
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001422 // The SDNode we just created, which holds the value being switched on minus
1423 // the the smallest case value, needs to be copied to a virtual register so it
1424 // can be used as an index into the jump table in a subsequent basic block.
1425 // This value may be smaller or larger than the target's pointer type, and
1426 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001427 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001428 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001429 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001430 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001431 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001432 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001433
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001434 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001435 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1436 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001437 JT.Reg = JumpTableReg;
1438
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001439 // Emit the range check for the jump table, and branch to the default block
1440 // for the switch statement if the value being switched on exceeds the largest
1441 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001442 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1443 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001444 DAG.getConstant(JTH.Last-JTH.First,VT),
1445 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001446
1447 // Set NextBlock to be the MBB immediately after the current one, if any.
1448 // This is used to avoid emitting unnecessary branches to the next block.
1449 MachineBasicBlock *NextBlock = 0;
1450 MachineFunction::iterator BBI = CurMBB;
1451 if (++BBI != CurMBB->getParent()->end())
1452 NextBlock = BBI;
1453
Dale Johannesen66978ee2009-01-31 02:22:37 +00001454 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001455 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001456 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001457
1458 if (JT.MBB == NextBlock)
1459 DAG.setRoot(BrCond);
1460 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001461 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001462 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001463}
1464
1465/// visitBitTestHeader - This function emits necessary code to produce value
1466/// suitable for "bit tests"
1467void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1468 // Subtract the minimum value
1469 SDValue SwitchOp = getValue(B.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001470 EVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001471 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001472 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001473
1474 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001475 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1476 TLI.getSetCCResultType(SUB.getValueType()),
1477 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001478 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001479
1480 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001481 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001482 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001483 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001484 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001485 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001486 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001487
Duncan Sands92abc622009-01-31 15:50:11 +00001488 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001489 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1490 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001491
1492 // Set NextBlock to be the MBB immediately after the current one, if any.
1493 // This is used to avoid emitting unnecessary branches to the next block.
1494 MachineBasicBlock *NextBlock = 0;
1495 MachineFunction::iterator BBI = CurMBB;
1496 if (++BBI != CurMBB->getParent()->end())
1497 NextBlock = BBI;
1498
1499 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1500
1501 CurMBB->addSuccessor(B.Default);
1502 CurMBB->addSuccessor(MBB);
1503
Dale Johannesen66978ee2009-01-31 02:22:37 +00001504 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001505 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001506 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001507
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001508 if (MBB == NextBlock)
1509 DAG.setRoot(BrRange);
1510 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001511 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001512 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001513}
1514
1515/// visitBitTestCase - this function produces one "bit test"
1516void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1517 unsigned Reg,
1518 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001519 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001520 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001521 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001522 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001523 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001524 DAG.getConstant(1, TLI.getPointerTy()),
1525 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001526
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001527 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001528 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001529 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001530 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001531 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1532 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001533 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001534 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001535
1536 CurMBB->addSuccessor(B.TargetBB);
1537 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001538
Dale Johannesen66978ee2009-01-31 02:22:37 +00001539 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001540 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001541 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001542
1543 // Set NextBlock to be the MBB immediately after the current one, if any.
1544 // This is used to avoid emitting unnecessary branches to the next block.
1545 MachineBasicBlock *NextBlock = 0;
1546 MachineFunction::iterator BBI = CurMBB;
1547 if (++BBI != CurMBB->getParent()->end())
1548 NextBlock = BBI;
1549
1550 if (NextMBB == NextBlock)
1551 DAG.setRoot(BrAnd);
1552 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001553 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001554 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001555}
1556
1557void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1558 // Retrieve successors.
1559 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1560 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1561
Gabor Greifb67e6b32009-01-15 11:10:44 +00001562 const Value *Callee(I.getCalledValue());
1563 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001564 visitInlineAsm(&I);
1565 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001566 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001567
1568 // If the value of the invoke is used outside of its defining block, make it
1569 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001570 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001571
1572 // Update successor info
1573 CurMBB->addSuccessor(Return);
1574 CurMBB->addSuccessor(LandingPad);
1575
1576 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001577 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001578 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001579 DAG.getBasicBlock(Return)));
1580}
1581
1582void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1583}
1584
1585/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1586/// small case ranges).
1587bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1588 CaseRecVector& WorkList,
1589 Value* SV,
1590 MachineBasicBlock* Default) {
1591 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001592
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001593 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001594 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001595 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001596 return false;
1597
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001598 // Get the MachineFunction which holds the current MBB. This is used when
1599 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001600 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001601
1602 // Figure out which block is immediately after the current one.
1603 MachineBasicBlock *NextBlock = 0;
1604 MachineFunction::iterator BBI = CR.CaseBB;
1605
1606 if (++BBI != CurMBB->getParent()->end())
1607 NextBlock = BBI;
1608
1609 // TODO: If any two of the cases has the same destination, and if one value
1610 // is the same as the other, but has one bit unset that the other has set,
1611 // use bit manipulation to do two compares at once. For example:
1612 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001613
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001614 // Rearrange the case blocks so that the last one falls through if possible.
1615 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1616 // The last case block won't fall through into 'NextBlock' if we emit the
1617 // branches in this order. See if rearranging a case value would help.
1618 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1619 if (I->BB == NextBlock) {
1620 std::swap(*I, BackCase);
1621 break;
1622 }
1623 }
1624 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001625
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001626 // Create a CaseBlock record representing a conditional branch to
1627 // the Case's target mbb if the value being switched on SV is equal
1628 // to C.
1629 MachineBasicBlock *CurBlock = CR.CaseBB;
1630 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1631 MachineBasicBlock *FallThrough;
1632 if (I != E-1) {
1633 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1634 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001635
1636 // Put SV in a virtual register to make it available from the new blocks.
1637 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001638 } else {
1639 // If the last case doesn't match, go to the default block.
1640 FallThrough = Default;
1641 }
1642
1643 Value *RHS, *LHS, *MHS;
1644 ISD::CondCode CC;
1645 if (I->High == I->Low) {
1646 // This is just small small case range :) containing exactly 1 case
1647 CC = ISD::SETEQ;
1648 LHS = SV; RHS = I->High; MHS = NULL;
1649 } else {
1650 CC = ISD::SETLE;
1651 LHS = I->Low; MHS = SV; RHS = I->High;
1652 }
1653 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001654
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001655 // If emitting the first comparison, just call visitSwitchCase to emit the
1656 // code into the current block. Otherwise, push the CaseBlock onto the
1657 // vector to be later processed by SDISel, and insert the node's MBB
1658 // before the next MBB.
1659 if (CurBlock == CurMBB)
1660 visitSwitchCase(CB);
1661 else
1662 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001663
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001664 CurBlock = FallThrough;
1665 }
1666
1667 return true;
1668}
1669
1670static inline bool areJTsAllowed(const TargetLowering &TLI) {
1671 return !DisableJumpTables &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001672 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1673 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001674}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001675
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001676static APInt ComputeRange(const APInt &First, const APInt &Last) {
1677 APInt LastExt(Last), FirstExt(First);
1678 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1679 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1680 return (LastExt - FirstExt + 1ULL);
1681}
1682
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001683/// handleJTSwitchCase - Emit jumptable for current switch case range
1684bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1685 CaseRecVector& WorkList,
1686 Value* SV,
1687 MachineBasicBlock* Default) {
1688 Case& FrontCase = *CR.Range.first;
1689 Case& BackCase = *(CR.Range.second-1);
1690
Anton Korobeynikov23218582008-12-23 22:25:27 +00001691 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1692 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001693
Anton Korobeynikov23218582008-12-23 22:25:27 +00001694 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001695 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1696 I!=E; ++I)
1697 TSize += I->size();
1698
1699 if (!areJTsAllowed(TLI) || TSize <= 3)
1700 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001701
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001702 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001703 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001704 if (Density < 0.4)
1705 return false;
1706
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001707 DEBUG(errs() << "Lowering jump table\n"
1708 << "First entry: " << First << ". Last entry: " << Last << '\n'
1709 << "Range: " << Range
1710 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001711
1712 // Get the MachineFunction which holds the current MBB. This is used when
1713 // inserting any additional MBBs necessary to represent the switch.
1714 MachineFunction *CurMF = CurMBB->getParent();
1715
1716 // Figure out which block is immediately after the current one.
1717 MachineBasicBlock *NextBlock = 0;
1718 MachineFunction::iterator BBI = CR.CaseBB;
1719
1720 if (++BBI != CurMBB->getParent()->end())
1721 NextBlock = BBI;
1722
1723 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1724
1725 // Create a new basic block to hold the code for loading the address
1726 // of the jump table, and jumping to it. Update successor information;
1727 // we will either branch to the default case for the switch, or the jump
1728 // table.
1729 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1730 CurMF->insert(BBI, JumpTableBB);
1731 CR.CaseBB->addSuccessor(Default);
1732 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001733
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001734 // Build a vector of destination BBs, corresponding to each target
1735 // of the jump table. If the value of the jump table slot corresponds to
1736 // a case statement, push the case's BB onto the vector, otherwise, push
1737 // the default BB.
1738 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001739 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001740 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001741 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1742 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1743
1744 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001745 DestBBs.push_back(I->BB);
1746 if (TEI==High)
1747 ++I;
1748 } else {
1749 DestBBs.push_back(Default);
1750 }
1751 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001752
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001753 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001754 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1755 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001756 E = DestBBs.end(); I != E; ++I) {
1757 if (!SuccsHandled[(*I)->getNumber()]) {
1758 SuccsHandled[(*I)->getNumber()] = true;
1759 JumpTableBB->addSuccessor(*I);
1760 }
1761 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001762
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001763 // Create a jump table index for this jump table, or return an existing
1764 // one.
1765 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001766
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001767 // Set the jump table information so that we can codegen it as a second
1768 // MachineBasicBlock
1769 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1770 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1771 if (CR.CaseBB == CurMBB)
1772 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001773
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001774 JTCases.push_back(JumpTableBlock(JTH, JT));
1775
1776 return true;
1777}
1778
1779/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1780/// 2 subtrees.
1781bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1782 CaseRecVector& WorkList,
1783 Value* SV,
1784 MachineBasicBlock* Default) {
1785 // Get the MachineFunction which holds the current MBB. This is used when
1786 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001787 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001788
1789 // Figure out which block is immediately after the current one.
1790 MachineBasicBlock *NextBlock = 0;
1791 MachineFunction::iterator BBI = CR.CaseBB;
1792
1793 if (++BBI != CurMBB->getParent()->end())
1794 NextBlock = BBI;
1795
1796 Case& FrontCase = *CR.Range.first;
1797 Case& BackCase = *(CR.Range.second-1);
1798 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1799
1800 // Size is the number of Cases represented by this range.
1801 unsigned Size = CR.Range.second - CR.Range.first;
1802
Anton Korobeynikov23218582008-12-23 22:25:27 +00001803 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1804 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001805 double FMetric = 0;
1806 CaseItr Pivot = CR.Range.first + Size/2;
1807
1808 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1809 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001810 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001811 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1812 I!=E; ++I)
1813 TSize += I->size();
1814
Anton Korobeynikov23218582008-12-23 22:25:27 +00001815 size_t LSize = FrontCase.size();
1816 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001817 DEBUG(errs() << "Selecting best pivot: \n"
1818 << "First: " << First << ", Last: " << Last <<'\n'
1819 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001820 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1821 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001822 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1823 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001824 APInt Range = ComputeRange(LEnd, RBegin);
1825 assert((Range - 2ULL).isNonNegative() &&
1826 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001827 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1828 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001829 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001830 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001831 DEBUG(errs() <<"=>Step\n"
1832 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1833 << "LDensity: " << LDensity
1834 << ", RDensity: " << RDensity << '\n'
1835 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001836 if (FMetric < Metric) {
1837 Pivot = J;
1838 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001839 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001840 }
1841
1842 LSize += J->size();
1843 RSize -= J->size();
1844 }
1845 if (areJTsAllowed(TLI)) {
1846 // If our case is dense we *really* should handle it earlier!
1847 assert((FMetric > 0) && "Should handle dense range earlier!");
1848 } else {
1849 Pivot = CR.Range.first + Size/2;
1850 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001851
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001852 CaseRange LHSR(CR.Range.first, Pivot);
1853 CaseRange RHSR(Pivot, CR.Range.second);
1854 Constant *C = Pivot->Low;
1855 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001856
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001857 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001858 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001859 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001860 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001861 // Pivot's Value, then we can branch directly to the LHS's Target,
1862 // rather than creating a leaf node for it.
1863 if ((LHSR.second - LHSR.first) == 1 &&
1864 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001865 cast<ConstantInt>(C)->getValue() ==
1866 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001867 TrueBB = LHSR.first->BB;
1868 } else {
1869 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1870 CurMF->insert(BBI, TrueBB);
1871 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001872
1873 // Put SV in a virtual register to make it available from the new blocks.
1874 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001875 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001876
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001877 // Similar to the optimization above, if the Value being switched on is
1878 // known to be less than the Constant CR.LT, and the current Case Value
1879 // is CR.LT - 1, then we can branch directly to the target block for
1880 // the current Case Value, rather than emitting a RHS leaf node for it.
1881 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001882 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1883 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001884 FalseBB = RHSR.first->BB;
1885 } else {
1886 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1887 CurMF->insert(BBI, FalseBB);
1888 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001889
1890 // Put SV in a virtual register to make it available from the new blocks.
1891 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001892 }
1893
1894 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001895 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001896 // Otherwise, branch to LHS.
1897 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1898
1899 if (CR.CaseBB == CurMBB)
1900 visitSwitchCase(CB);
1901 else
1902 SwitchCases.push_back(CB);
1903
1904 return true;
1905}
1906
1907/// handleBitTestsSwitchCase - if current case range has few destination and
1908/// range span less, than machine word bitwidth, encode case range into series
1909/// of masks and emit bit tests with these masks.
1910bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1911 CaseRecVector& WorkList,
1912 Value* SV,
1913 MachineBasicBlock* Default){
Owen Andersone50ed302009-08-10 22:56:29 +00001914 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00001915 unsigned IntPtrBits = PTy.getSizeInBits();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001916
1917 Case& FrontCase = *CR.Range.first;
1918 Case& BackCase = *(CR.Range.second-1);
1919
1920 // Get the MachineFunction which holds the current MBB. This is used when
1921 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001922 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001923
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001924 // If target does not have legal shift left, do not emit bit tests at all.
1925 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1926 return false;
1927
Anton Korobeynikov23218582008-12-23 22:25:27 +00001928 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001929 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1930 I!=E; ++I) {
1931 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001932 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001933 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001934
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001935 // Count unique destinations
1936 SmallSet<MachineBasicBlock*, 4> Dests;
1937 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1938 Dests.insert(I->BB);
1939 if (Dests.size() > 3)
1940 // Don't bother the code below, if there are too much unique destinations
1941 return false;
1942 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001943 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1944 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001945
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001946 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001947 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1948 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001949 APInt cmpRange = maxValue - minValue;
1950
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001951 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1952 << "Low bound: " << minValue << '\n'
1953 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001954
1955 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001956 (!(Dests.size() == 1 && numCmps >= 3) &&
1957 !(Dests.size() == 2 && numCmps >= 5) &&
1958 !(Dests.size() >= 3 && numCmps >= 6)))
1959 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001960
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001961 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001962 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1963
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001964 // Optimize the case where all the case values fit in a
1965 // word without having to subtract minValue. In this case,
1966 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001967 if (minValue.isNonNegative() &&
1968 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1969 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001970 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001971 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001972 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001973
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001974 CaseBitsVector CasesBits;
1975 unsigned i, count = 0;
1976
1977 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1978 MachineBasicBlock* Dest = I->BB;
1979 for (i = 0; i < count; ++i)
1980 if (Dest == CasesBits[i].BB)
1981 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001982
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001983 if (i == count) {
1984 assert((count < 3) && "Too much destinations to test!");
1985 CasesBits.push_back(CaseBits(0, Dest, 0));
1986 count++;
1987 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001988
1989 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1990 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1991
1992 uint64_t lo = (lowValue - lowBound).getZExtValue();
1993 uint64_t hi = (highValue - lowBound).getZExtValue();
1994
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001995 for (uint64_t j = lo; j <= hi; j++) {
1996 CasesBits[i].Mask |= 1ULL << j;
1997 CasesBits[i].Bits++;
1998 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001999
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002000 }
2001 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00002002
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002003 BitTestInfo BTC;
2004
2005 // Figure out which block is immediately after the current one.
2006 MachineFunction::iterator BBI = CR.CaseBB;
2007 ++BBI;
2008
2009 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2010
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002011 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002012 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002013 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2014 << ", Bits: " << CasesBits[i].Bits
2015 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002016
2017 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2018 CurMF->insert(BBI, CaseBB);
2019 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2020 CaseBB,
2021 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002022
2023 // Put SV in a virtual register to make it available from the new blocks.
2024 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002025 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002026
2027 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002028 -1U, (CR.CaseBB == CurMBB),
2029 CR.CaseBB, Default, BTC);
2030
2031 if (CR.CaseBB == CurMBB)
2032 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002033
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002034 BitTestCases.push_back(BTB);
2035
2036 return true;
2037}
2038
2039
2040/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002041size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002042 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002043 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002044
2045 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002046 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002047 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2048 Cases.push_back(Case(SI.getSuccessorValue(i),
2049 SI.getSuccessorValue(i),
2050 SMBB));
2051 }
2052 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2053
2054 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002055 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002056 // Must recompute end() each iteration because it may be
2057 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002058 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2059 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2060 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002061 MachineBasicBlock* nextBB = J->BB;
2062 MachineBasicBlock* currentBB = I->BB;
2063
2064 // If the two neighboring cases go to the same destination, merge them
2065 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002066 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002067 I->High = J->High;
2068 J = Cases.erase(J);
2069 } else {
2070 I = J++;
2071 }
2072 }
2073
2074 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2075 if (I->Low != I->High)
2076 // A range counts double, since it requires two compares.
2077 ++numCmps;
2078 }
2079
2080 return numCmps;
2081}
2082
Anton Korobeynikov23218582008-12-23 22:25:27 +00002083void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002084 // Figure out which block is immediately after the current one.
2085 MachineBasicBlock *NextBlock = 0;
2086 MachineFunction::iterator BBI = CurMBB;
2087
2088 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2089
2090 // If there is only the default destination, branch to it if it is not the
2091 // next basic block. Otherwise, just fall through.
2092 if (SI.getNumOperands() == 2) {
2093 // Update machine-CFG edges.
2094
2095 // If this is not a fall-through branch, emit the branch.
2096 CurMBB->addSuccessor(Default);
2097 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002098 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002099 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002100 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002101 return;
2102 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002103
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002104 // If there are any non-default case statements, create a vector of Cases
2105 // representing each one, and sort the vector so that we can efficiently
2106 // create a binary search tree from them.
2107 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002108 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002109 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2110 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002111 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002112
2113 // Get the Value to be switched on and default basic blocks, which will be
2114 // inserted into CaseBlock records, representing basic blocks in the binary
2115 // search tree.
2116 Value *SV = SI.getOperand(0);
2117
2118 // Push the initial CaseRec onto the worklist
2119 CaseRecVector WorkList;
2120 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2121
2122 while (!WorkList.empty()) {
2123 // Grab a record representing a case range to process off the worklist
2124 CaseRec CR = WorkList.back();
2125 WorkList.pop_back();
2126
2127 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2128 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002129
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002130 // If the range has few cases (two or less) emit a series of specific
2131 // tests.
2132 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2133 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002134
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002135 // If the switch has more than 5 blocks, and at least 40% dense, and the
2136 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002137 // lowering the switch to a binary tree of conditional branches.
2138 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2139 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002140
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002141 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2142 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2143 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2144 }
2145}
2146
2147
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002148void SelectionDAGLowering::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002149 // -0.0 - X --> fneg
2150 const Type *Ty = I.getType();
2151 if (isa<VectorType>(Ty)) {
2152 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2153 const VectorType *DestTy = cast<VectorType>(I.getType());
2154 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002155 unsigned VL = DestTy->getNumElements();
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002156 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Owen Andersonaf7ec972009-07-28 21:19:26 +00002157 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002158 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002159 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002160 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002161 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002162 return;
2163 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002164 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002165 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002166 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002167 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002168 SDValue Op2 = getValue(I.getOperand(1));
2169 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2170 Op2.getValueType(), Op2));
2171 return;
2172 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002173
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002174 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002175}
2176
2177void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2178 SDValue Op1 = getValue(I.getOperand(0));
2179 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002180
Scott Michelfdc40a02009-02-17 22:15:04 +00002181 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002182 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002183}
2184
2185void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2186 SDValue Op1 = getValue(I.getOperand(0));
2187 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002188 if (!isa<VectorType>(I.getType()) &&
2189 Op2.getValueType() != TLI.getShiftAmountTy()) {
2190 // If the operand is smaller than the shift count type, promote it.
Owen Andersone50ed302009-08-10 22:56:29 +00002191 EVT PTy = TLI.getPointerTy();
2192 EVT STy = TLI.getShiftAmountTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002193 if (STy.bitsGT(Op2.getValueType()))
Dan Gohman57fc82d2009-04-09 03:51:29 +00002194 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2195 TLI.getShiftAmountTy(), Op2);
2196 // If the operand is larger than the shift count type but the shift
2197 // count type has enough bits to represent any shift value, truncate
2198 // it now. This is a common case and it exposes the truncate to
2199 // optimization early.
Owen Anderson77547be2009-08-10 18:56:59 +00002200 else if (STy.getSizeInBits() >=
Dan Gohman57fc82d2009-04-09 03:51:29 +00002201 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2202 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2203 TLI.getShiftAmountTy(), Op2);
2204 // Otherwise we'll need to temporarily settle for some other
2205 // convenient type; type legalization will make adjustments as
2206 // needed.
Owen Anderson77547be2009-08-10 18:56:59 +00002207 else if (PTy.bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002208 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002209 TLI.getPointerTy(), Op2);
Owen Anderson77547be2009-08-10 18:56:59 +00002210 else if (PTy.bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002211 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002212 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002213 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002214
Scott Michelfdc40a02009-02-17 22:15:04 +00002215 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002216 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002217}
2218
2219void SelectionDAGLowering::visitICmp(User &I) {
2220 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2221 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2222 predicate = IC->getPredicate();
2223 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2224 predicate = ICmpInst::Predicate(IC->getPredicate());
2225 SDValue Op1 = getValue(I.getOperand(0));
2226 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002227 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002228
Owen Andersone50ed302009-08-10 22:56:29 +00002229 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002230 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002231}
2232
2233void SelectionDAGLowering::visitFCmp(User &I) {
2234 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2235 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2236 predicate = FC->getPredicate();
2237 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2238 predicate = FCmpInst::Predicate(FC->getPredicate());
2239 SDValue Op1 = getValue(I.getOperand(0));
2240 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002241 ISD::CondCode Condition = getFCmpCondCode(predicate);
Owen Andersone50ed302009-08-10 22:56:29 +00002242 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002243 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002244}
2245
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002246void SelectionDAGLowering::visitSelect(User &I) {
Owen Andersone50ed302009-08-10 22:56:29 +00002247 SmallVector<EVT, 4> ValueVTs;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002248 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2249 unsigned NumValues = ValueVTs.size();
2250 if (NumValues != 0) {
2251 SmallVector<SDValue, 4> Values(NumValues);
2252 SDValue Cond = getValue(I.getOperand(0));
2253 SDValue TrueVal = getValue(I.getOperand(1));
2254 SDValue FalseVal = getValue(I.getOperand(2));
2255
2256 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002257 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002258 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002259 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2260 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2261
Scott Michelfdc40a02009-02-17 22:15:04 +00002262 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002263 DAG.getVTList(&ValueVTs[0], NumValues),
2264 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002265 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002266}
2267
2268
2269void SelectionDAGLowering::visitTrunc(User &I) {
2270 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2271 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002272 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002273 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002274}
2275
2276void SelectionDAGLowering::visitZExt(User &I) {
2277 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2278 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2279 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002280 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002281 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002282}
2283
2284void SelectionDAGLowering::visitSExt(User &I) {
2285 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2286 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2287 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002288 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002289 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002290}
2291
2292void SelectionDAGLowering::visitFPTrunc(User &I) {
2293 // FPTrunc is never a no-op cast, no need to check
2294 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002295 EVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002296 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002297 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002298}
2299
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002300void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002301 // FPTrunc is never a no-op cast, no need to check
2302 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002303 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002304 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002305}
2306
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002307void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002308 // FPToUI is never a no-op cast, no need to check
2309 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002310 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002311 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002312}
2313
2314void SelectionDAGLowering::visitFPToSI(User &I) {
2315 // FPToSI is never a no-op cast, no need to check
2316 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002317 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002318 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002319}
2320
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002321void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002322 // UIToFP is never a no-op cast, no need to check
2323 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002324 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002325 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002326}
2327
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002328void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002329 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002330 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002331 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002332 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002333}
2334
2335void SelectionDAGLowering::visitPtrToInt(User &I) {
2336 // What to do depends on the size of the integer and the size of the pointer.
2337 // We can either truncate, zero extend, or no-op, accordingly.
2338 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002339 EVT SrcVT = N.getValueType();
2340 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002341 SDValue Result;
2342 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002343 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002344 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002345 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002346 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002347 setValue(&I, Result);
2348}
2349
2350void SelectionDAGLowering::visitIntToPtr(User &I) {
2351 // What to do depends on the size of the integer and the size of the pointer.
2352 // We can either truncate, zero extend, or no-op, accordingly.
2353 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002354 EVT SrcVT = N.getValueType();
2355 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002356 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002357 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002358 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002359 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002360 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002361 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002362}
2363
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002364void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002365 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002366 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002367
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002368 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002369 // is either a BIT_CONVERT or a no-op.
2370 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002371 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002372 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002373 else
2374 setValue(&I, N); // noop cast.
2375}
2376
2377void SelectionDAGLowering::visitInsertElement(User &I) {
2378 SDValue InVec = getValue(I.getOperand(0));
2379 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002380 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002381 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002382 getValue(I.getOperand(2)));
2383
Scott Michelfdc40a02009-02-17 22:15:04 +00002384 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002385 TLI.getValueType(I.getType()),
2386 InVec, InVal, InIdx));
2387}
2388
2389void SelectionDAGLowering::visitExtractElement(User &I) {
2390 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002391 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002392 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002393 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002394 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002395 TLI.getValueType(I.getType()), InVec, InIdx));
2396}
2397
Mon P Wangaeb06d22008-11-10 04:46:22 +00002398
2399// Utility for visitShuffleVector - Returns true if the mask is mask starting
2400// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002401static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2402 unsigned MaskNumElts = Mask.size();
2403 for (unsigned i = 0; i != MaskNumElts; ++i)
2404 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002405 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002406 return true;
2407}
2408
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002409void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002410 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002411 SDValue Src1 = getValue(I.getOperand(0));
2412 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002413
Nate Begeman9008ca62009-04-27 18:41:29 +00002414 // Convert the ConstantVector mask operand into an array of ints, with -1
2415 // representing undef values.
2416 SmallVector<Constant*, 8> MaskElts;
Owen Anderson001dbfe2009-07-16 18:04:31 +00002417 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
2418 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002419 unsigned MaskNumElts = MaskElts.size();
2420 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002421 if (isa<UndefValue>(MaskElts[i]))
2422 Mask.push_back(-1);
2423 else
2424 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2425 }
2426
Owen Andersone50ed302009-08-10 22:56:29 +00002427 EVT VT = TLI.getValueType(I.getType());
2428 EVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002429 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002430
Mon P Wangc7849c22008-11-16 05:06:27 +00002431 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002432 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2433 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002434 return;
2435 }
2436
2437 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002438 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2439 // Mask is longer than the source vectors and is a multiple of the source
2440 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002441 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002442 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2443 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002444 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002445 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002446 return;
2447 }
2448
Mon P Wangc7849c22008-11-16 05:06:27 +00002449 // Pad both vectors with undefs to make them the same length as the mask.
2450 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002451 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2452 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002453 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002454
Nate Begeman9008ca62009-04-27 18:41:29 +00002455 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2456 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002457 MOps1[0] = Src1;
2458 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002459
2460 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2461 getCurDebugLoc(), VT,
2462 &MOps1[0], NumConcat);
2463 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2464 getCurDebugLoc(), VT,
2465 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002466
Mon P Wangaeb06d22008-11-10 04:46:22 +00002467 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002468 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002469 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002470 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002471 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002472 MappedOps.push_back(Idx);
2473 else
2474 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002475 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002476 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2477 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002478 return;
2479 }
2480
Mon P Wangc7849c22008-11-16 05:06:27 +00002481 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002482 // Analyze the access pattern of the vector to see if we can extract
2483 // two subvectors and do the shuffle. The analysis is done by calculating
2484 // the range of elements the mask access on both vectors.
2485 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2486 int MaxRange[2] = {-1, -1};
2487
Nate Begeman5a5ca152009-04-29 05:20:52 +00002488 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002489 int Idx = Mask[i];
2490 int Input = 0;
2491 if (Idx < 0)
2492 continue;
2493
Nate Begeman5a5ca152009-04-29 05:20:52 +00002494 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002495 Input = 1;
2496 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002497 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002498 if (Idx > MaxRange[Input])
2499 MaxRange[Input] = Idx;
2500 if (Idx < MinRange[Input])
2501 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002502 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002503
Mon P Wangc7849c22008-11-16 05:06:27 +00002504 // Check if the access is smaller than the vector size and can we find
2505 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002506 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002507 int StartIdx[2]; // StartIdx to extract from
2508 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002509 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002510 RangeUse[Input] = 0; // Unused
2511 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002512 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002513 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002514 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002515 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002516 RangeUse[Input] = 1; // Extract from beginning of the vector
2517 StartIdx[Input] = 0;
2518 } else {
2519 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002520 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002521 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002522 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002523 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002524 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002525 }
2526
2527 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002528 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002529 return;
2530 }
2531 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2532 // Extract appropriate subvector and generate a vector shuffle
2533 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002534 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002535 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002536 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002537 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002538 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002539 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002540 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002541 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002542 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002543 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002544 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002545 int Idx = Mask[i];
2546 if (Idx < 0)
2547 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002548 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002549 MappedOps.push_back(Idx - StartIdx[0]);
2550 else
2551 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002552 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002553 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2554 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002555 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002556 }
2557 }
2558
Mon P Wangc7849c22008-11-16 05:06:27 +00002559 // We can't use either concat vectors or extract subvectors so fall back to
2560 // replacing the shuffle with extract and build vector.
2561 // to insert and build vector.
Owen Andersone50ed302009-08-10 22:56:29 +00002562 EVT EltVT = VT.getVectorElementType();
2563 EVT PtrVT = TLI.getPointerTy();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002564 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002565 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002566 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002567 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002568 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002569 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002570 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002571 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002572 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002573 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002574 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002575 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002576 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002577 }
2578 }
Evan Chenga87008d2009-02-25 22:49:59 +00002579 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2580 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002581}
2582
2583void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2584 const Value *Op0 = I.getOperand(0);
2585 const Value *Op1 = I.getOperand(1);
2586 const Type *AggTy = I.getType();
2587 const Type *ValTy = Op1->getType();
2588 bool IntoUndef = isa<UndefValue>(Op0);
2589 bool FromUndef = isa<UndefValue>(Op1);
2590
2591 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2592 I.idx_begin(), I.idx_end());
2593
Owen Andersone50ed302009-08-10 22:56:29 +00002594 SmallVector<EVT, 4> AggValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002595 ComputeValueVTs(TLI, AggTy, AggValueVTs);
Owen Andersone50ed302009-08-10 22:56:29 +00002596 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002597 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2598
2599 unsigned NumAggValues = AggValueVTs.size();
2600 unsigned NumValValues = ValValueVTs.size();
2601 SmallVector<SDValue, 4> Values(NumAggValues);
2602
2603 SDValue Agg = getValue(Op0);
2604 SDValue Val = getValue(Op1);
2605 unsigned i = 0;
2606 // Copy the beginning value(s) from the original aggregate.
2607 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002608 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002609 SDValue(Agg.getNode(), Agg.getResNo() + i);
2610 // Copy values from the inserted value(s).
2611 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002612 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002613 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2614 // Copy remaining value(s) from the original aggregate.
2615 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002616 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002617 SDValue(Agg.getNode(), Agg.getResNo() + i);
2618
Scott Michelfdc40a02009-02-17 22:15:04 +00002619 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002620 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2621 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002622}
2623
2624void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2625 const Value *Op0 = I.getOperand(0);
2626 const Type *AggTy = Op0->getType();
2627 const Type *ValTy = I.getType();
2628 bool OutOfUndef = isa<UndefValue>(Op0);
2629
2630 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2631 I.idx_begin(), I.idx_end());
2632
Owen Andersone50ed302009-08-10 22:56:29 +00002633 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002634 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2635
2636 unsigned NumValValues = ValValueVTs.size();
2637 SmallVector<SDValue, 4> Values(NumValValues);
2638
2639 SDValue Agg = getValue(Op0);
2640 // Copy out the selected value(s).
2641 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2642 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002643 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002644 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002645 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002646
Scott Michelfdc40a02009-02-17 22:15:04 +00002647 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002648 DAG.getVTList(&ValValueVTs[0], NumValValues),
2649 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002650}
2651
2652
2653void SelectionDAGLowering::visitGetElementPtr(User &I) {
2654 SDValue N = getValue(I.getOperand(0));
2655 const Type *Ty = I.getOperand(0)->getType();
2656
2657 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2658 OI != E; ++OI) {
2659 Value *Idx = *OI;
2660 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2661 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2662 if (Field) {
2663 // N = N + Offset
2664 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002665 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002666 DAG.getIntPtrConstant(Offset));
2667 }
2668 Ty = StTy->getElementType(Field);
2669 } else {
2670 Ty = cast<SequentialType>(Ty)->getElementType();
2671
2672 // If this is a constant subscript, handle it quickly.
2673 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2674 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002675 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002676 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002677 SDValue OffsVal;
Owen Andersone50ed302009-08-10 22:56:29 +00002678 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002679 unsigned PtrBits = PTy.getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002680 if (PtrBits < 64) {
2681 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2682 TLI.getPointerTy(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002683 DAG.getConstant(Offs, MVT::i64));
Evan Cheng65b52df2009-02-09 21:01:06 +00002684 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002685 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002686 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002687 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002688 continue;
2689 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002690
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002691 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +00002692 uint64_t ElementSize = TD->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002693 SDValue IdxN = getValue(Idx);
2694
2695 // If the index is smaller or larger than intptr_t, truncate or extend
2696 // it.
2697 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002698 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002699 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002700 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002701 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002702 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002703
2704 // If this is a multiply by a power of two, turn it into a shl
2705 // immediately. This is a very common case.
2706 if (ElementSize != 1) {
2707 if (isPowerOf2_64(ElementSize)) {
2708 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002709 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002710 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002711 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002712 } else {
2713 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002714 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002715 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002716 }
2717 }
2718
Scott Michelfdc40a02009-02-17 22:15:04 +00002719 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002720 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002721 }
2722 }
2723 setValue(&I, N);
2724}
2725
2726void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2727 // If this is a fixed sized alloca in the entry block of the function,
2728 // allocate it statically on the stack.
2729 if (FuncInfo.StaticAllocaMap.count(&I))
2730 return; // getValue will auto-populate this.
2731
2732 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002733 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002734 unsigned Align =
2735 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2736 I.getAlignment());
2737
2738 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002739
2740 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2741 AllocSize,
2742 DAG.getConstant(TySize, AllocSize.getValueType()));
2743
2744
2745
Owen Andersone50ed302009-08-10 22:56:29 +00002746 EVT IntPtr = TLI.getPointerTy();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002747 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002748 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002749 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002750 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002751 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002752 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002753
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002754 // Handle alignment. If the requested alignment is less than or equal to
2755 // the stack alignment, ignore it. If the size is greater than or equal to
2756 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2757 unsigned StackAlign =
2758 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2759 if (Align <= StackAlign)
2760 Align = 0;
2761
2762 // Round the size of the allocation up to the stack alignment size
2763 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002764 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002765 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002766 DAG.getIntPtrConstant(StackAlign-1));
2767 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002768 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002769 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002770 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2771
2772 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Owen Anderson825b72b2009-08-11 20:47:22 +00002773 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002774 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002775 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002776 setValue(&I, DSA);
2777 DAG.setRoot(DSA.getValue(1));
2778
2779 // Inform the Frame Information that we have just allocated a variable-sized
2780 // object.
2781 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2782}
2783
2784void SelectionDAGLowering::visitLoad(LoadInst &I) {
2785 const Value *SV = I.getOperand(0);
2786 SDValue Ptr = getValue(SV);
2787
2788 const Type *Ty = I.getType();
2789 bool isVolatile = I.isVolatile();
2790 unsigned Alignment = I.getAlignment();
2791
Owen Andersone50ed302009-08-10 22:56:29 +00002792 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002793 SmallVector<uint64_t, 4> Offsets;
2794 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2795 unsigned NumValues = ValueVTs.size();
2796 if (NumValues == 0)
2797 return;
2798
2799 SDValue Root;
2800 bool ConstantMemory = false;
2801 if (I.isVolatile())
2802 // Serialize volatile loads with other side effects.
2803 Root = getRoot();
2804 else if (AA->pointsToConstantMemory(SV)) {
2805 // Do not serialize (non-volatile) loads of constant memory with anything.
2806 Root = DAG.getEntryNode();
2807 ConstantMemory = true;
2808 } else {
2809 // Do not serialize non-volatile loads against each other.
2810 Root = DAG.getRoot();
2811 }
2812
2813 SmallVector<SDValue, 4> Values(NumValues);
2814 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002815 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002816 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002817 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002818 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002819 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002820 DAG.getConstant(Offsets[i], PtrVT)),
2821 SV, Offsets[i],
2822 isVolatile, Alignment);
2823 Values[i] = L;
2824 Chains[i] = L.getValue(1);
2825 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002826
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002827 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002828 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002829 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002830 &Chains[0], NumValues);
2831 if (isVolatile)
2832 DAG.setRoot(Chain);
2833 else
2834 PendingLoads.push_back(Chain);
2835 }
2836
Scott Michelfdc40a02009-02-17 22:15:04 +00002837 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002838 DAG.getVTList(&ValueVTs[0], NumValues),
2839 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002840}
2841
2842
2843void SelectionDAGLowering::visitStore(StoreInst &I) {
2844 Value *SrcV = I.getOperand(0);
2845 Value *PtrV = I.getOperand(1);
2846
Owen Andersone50ed302009-08-10 22:56:29 +00002847 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002848 SmallVector<uint64_t, 4> Offsets;
2849 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2850 unsigned NumValues = ValueVTs.size();
2851 if (NumValues == 0)
2852 return;
2853
2854 // Get the lowered operands. Note that we do this after
2855 // checking if NumResults is zero, because with zero results
2856 // the operands won't have values in the map.
2857 SDValue Src = getValue(SrcV);
2858 SDValue Ptr = getValue(PtrV);
2859
2860 SDValue Root = getRoot();
2861 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002862 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002863 bool isVolatile = I.isVolatile();
2864 unsigned Alignment = I.getAlignment();
2865 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002866 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002867 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002868 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002869 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002870 DAG.getConstant(Offsets[i], PtrVT)),
2871 PtrV, Offsets[i],
2872 isVolatile, Alignment);
2873
Scott Michelfdc40a02009-02-17 22:15:04 +00002874 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002875 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002876}
2877
2878/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2879/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002880void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002881 unsigned Intrinsic) {
2882 bool HasChain = !I.doesNotAccessMemory();
2883 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2884
2885 // Build the operand list.
2886 SmallVector<SDValue, 8> Ops;
2887 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2888 if (OnlyLoad) {
2889 // We don't need to serialize loads against other loads.
2890 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002891 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002892 Ops.push_back(getRoot());
2893 }
2894 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002895
2896 // Info is set by getTgtMemInstrinsic
2897 TargetLowering::IntrinsicInfo Info;
2898 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2899
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002900 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002901 if (!IsTgtIntrinsic)
2902 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002903
2904 // Add all operands of the call to the operand list.
2905 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2906 SDValue Op = getValue(I.getOperand(i));
2907 assert(TLI.isTypeLegal(Op.getValueType()) &&
2908 "Intrinsic uses a non-legal type?");
2909 Ops.push_back(Op);
2910 }
2911
Owen Andersone50ed302009-08-10 22:56:29 +00002912 SmallVector<EVT, 4> ValueVTs;
Bob Wilson8d919552009-07-31 22:41:21 +00002913 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2914#ifndef NDEBUG
2915 for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) {
2916 assert(TLI.isTypeLegal(ValueVTs[Val]) &&
2917 "Intrinsic uses a non-legal type?");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002918 }
Bob Wilson8d919552009-07-31 22:41:21 +00002919#endif // NDEBUG
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002920 if (HasChain)
Owen Anderson825b72b2009-08-11 20:47:22 +00002921 ValueVTs.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002922
Bob Wilson8d919552009-07-31 22:41:21 +00002923 SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002924
2925 // Create the node.
2926 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002927 if (IsTgtIntrinsic) {
2928 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002929 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002930 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002931 Info.memVT, Info.ptrVal, Info.offset,
2932 Info.align, Info.vol,
2933 Info.readMem, Info.writeMem);
2934 }
2935 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002936 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002937 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002938 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002939 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002940 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002941 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002942 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002943 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002944
2945 if (HasChain) {
2946 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2947 if (OnlyLoad)
2948 PendingLoads.push_back(Chain);
2949 else
2950 DAG.setRoot(Chain);
2951 }
2952 if (I.getType() != Type::VoidTy) {
2953 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Owen Andersone50ed302009-08-10 22:56:29 +00002954 EVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002955 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002956 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002957 setValue(&I, Result);
2958 }
2959}
2960
2961/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2962static GlobalVariable *ExtractTypeInfo(Value *V) {
2963 V = V->stripPointerCasts();
2964 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2965 assert ((GV || isa<ConstantPointerNull>(V)) &&
2966 "TypeInfo must be a global variable or NULL");
2967 return GV;
2968}
2969
2970namespace llvm {
2971
2972/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2973/// call, and add them to the specified machine basic block.
2974void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2975 MachineBasicBlock *MBB) {
2976 // Inform the MachineModuleInfo of the personality for this landing pad.
2977 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2978 assert(CE->getOpcode() == Instruction::BitCast &&
2979 isa<Function>(CE->getOperand(0)) &&
2980 "Personality should be a function");
2981 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2982
2983 // Gather all the type infos for this landing pad and pass them along to
2984 // MachineModuleInfo.
2985 std::vector<GlobalVariable *> TyInfo;
2986 unsigned N = I.getNumOperands();
2987
2988 for (unsigned i = N - 1; i > 2; --i) {
2989 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2990 unsigned FilterLength = CI->getZExtValue();
2991 unsigned FirstCatch = i + FilterLength + !FilterLength;
2992 assert (FirstCatch <= N && "Invalid filter length");
2993
2994 if (FirstCatch < N) {
2995 TyInfo.reserve(N - FirstCatch);
2996 for (unsigned j = FirstCatch; j < N; ++j)
2997 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2998 MMI->addCatchTypeInfo(MBB, TyInfo);
2999 TyInfo.clear();
3000 }
3001
3002 if (!FilterLength) {
3003 // Cleanup.
3004 MMI->addCleanup(MBB);
3005 } else {
3006 // Filter.
3007 TyInfo.reserve(FilterLength - 1);
3008 for (unsigned j = i + 1; j < FirstCatch; ++j)
3009 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3010 MMI->addFilterTypeInfo(MBB, TyInfo);
3011 TyInfo.clear();
3012 }
3013
3014 N = i;
3015 }
3016 }
3017
3018 if (N > 3) {
3019 TyInfo.reserve(N - 3);
3020 for (unsigned j = 3; j < N; ++j)
3021 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3022 MMI->addCatchTypeInfo(MBB, TyInfo);
3023 }
3024}
3025
3026}
3027
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003028/// GetSignificand - Get the significand and build it into a floating-point
3029/// number with exponent of 1:
3030///
3031/// Op = (Op & 0x007fffff) | 0x3f800000;
3032///
3033/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003034static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003035GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003036 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3037 DAG.getConstant(0x007fffff, MVT::i32));
3038 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
3039 DAG.getConstant(0x3f800000, MVT::i32));
3040 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003041}
3042
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003043/// GetExponent - Get the exponent:
3044///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003045/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003046///
3047/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003048static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003049GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3050 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003051 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3052 DAG.getConstant(0x7f800000, MVT::i32));
3053 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003054 DAG.getConstant(23, TLI.getPointerTy()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003055 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
3056 DAG.getConstant(127, MVT::i32));
3057 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003058}
3059
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003060/// getF32Constant - Get 32-bit floating point constant.
3061static SDValue
3062getF32Constant(SelectionDAG &DAG, unsigned Flt) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003063 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003064}
3065
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003066/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003067/// visitIntrinsicCall: I is a call instruction
3068/// Op is the associated NodeType for I
3069const char *
3070SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003071 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003072 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003073 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003074 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003075 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003076 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003077 getValue(I.getOperand(2)),
3078 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003079 setValue(&I, L);
3080 DAG.setRoot(L.getValue(1));
3081 return 0;
3082}
3083
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003084// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003085const char *
3086SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003087 SDValue Op1 = getValue(I.getOperand(1));
3088 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003089
Owen Anderson825b72b2009-08-11 20:47:22 +00003090 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
Dan Gohmanfc166572009-04-09 23:54:40 +00003091 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003092
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003093 setValue(&I, Result);
3094 return 0;
3095}
Bill Wendling74c37652008-12-09 22:08:41 +00003096
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003097/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3098/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003099void
3100SelectionDAGLowering::visitExp(CallInst &I) {
3101 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003102 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003103
Owen Anderson825b72b2009-08-11 20:47:22 +00003104 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003105 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3106 SDValue Op = getValue(I.getOperand(1));
3107
3108 // Put the exponent in the right bit position for later addition to the
3109 // final result:
3110 //
3111 // #define LOG2OFe 1.4426950f
3112 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Owen Anderson825b72b2009-08-11 20:47:22 +00003113 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003114 getF32Constant(DAG, 0x3fb8aa3b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003115 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003116
3117 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003118 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3119 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003120
3121 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003122 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003123 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003124
3125 if (LimitFloatPrecision <= 6) {
3126 // For floating-point precision of 6:
3127 //
3128 // TwoToFractionalPartOfX =
3129 // 0.997535578f +
3130 // (0.735607626f + 0.252464424f * x) * x;
3131 //
3132 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003133 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003134 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003135 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003136 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003137 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3138 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003139 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003140 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003141
3142 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003143 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003144 TwoToFracPartOfX, IntegerPartOfX);
3145
Owen Anderson825b72b2009-08-11 20:47:22 +00003146 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003147 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3148 // For floating-point precision of 12:
3149 //
3150 // TwoToFractionalPartOfX =
3151 // 0.999892986f +
3152 // (0.696457318f +
3153 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3154 //
3155 // 0.000107046256 error, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003156 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003157 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003158 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003159 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003160 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3161 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003162 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003163 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3164 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003165 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003166 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003167
3168 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003169 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003170 TwoToFracPartOfX, IntegerPartOfX);
3171
Owen Anderson825b72b2009-08-11 20:47:22 +00003172 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003173 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3174 // For floating-point precision of 18:
3175 //
3176 // TwoToFractionalPartOfX =
3177 // 0.999999982f +
3178 // (0.693148872f +
3179 // (0.240227044f +
3180 // (0.554906021e-1f +
3181 // (0.961591928e-2f +
3182 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3183 //
3184 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003185 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003186 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003187 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003188 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003189 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3190 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003191 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003192 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3193 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003194 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003195 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3196 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003197 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003198 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3199 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003200 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003201 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3202 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003203 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003204 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003205 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003206
3207 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003208 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003209 TwoToFracPartOfX, IntegerPartOfX);
3210
Owen Anderson825b72b2009-08-11 20:47:22 +00003211 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003212 }
3213 } else {
3214 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003215 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003216 getValue(I.getOperand(1)).getValueType(),
3217 getValue(I.getOperand(1)));
3218 }
3219
Dale Johannesen59e577f2008-09-05 18:38:42 +00003220 setValue(&I, result);
3221}
3222
Bill Wendling39150252008-09-09 20:39:27 +00003223/// visitLog - Lower a log intrinsic. Handles the special sequences for
3224/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003225void
3226SelectionDAGLowering::visitLog(CallInst &I) {
3227 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003228 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003229
Owen Anderson825b72b2009-08-11 20:47:22 +00003230 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling39150252008-09-09 20:39:27 +00003231 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3232 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003233 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003234
3235 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003236 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003237 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003238 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003239
3240 // Get the significand and build it into a floating-point number with
3241 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003242 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003243
3244 if (LimitFloatPrecision <= 6) {
3245 // For floating-point precision of 6:
3246 //
3247 // LogofMantissa =
3248 // -1.1609546f +
3249 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003250 //
Bill Wendling39150252008-09-09 20:39:27 +00003251 // error 0.0034276066, which is better than 8 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003252 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003253 getF32Constant(DAG, 0xbe74c456));
Owen Anderson825b72b2009-08-11 20:47:22 +00003254 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003255 getF32Constant(DAG, 0x3fb3a2b1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003256 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3257 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003258 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003259
Scott Michelfdc40a02009-02-17 22:15:04 +00003260 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003261 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003262 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3263 // For floating-point precision of 12:
3264 //
3265 // LogOfMantissa =
3266 // -1.7417939f +
3267 // (2.8212026f +
3268 // (-1.4699568f +
3269 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3270 //
3271 // error 0.000061011436, which is 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003272 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003273 getF32Constant(DAG, 0xbd67b6d6));
Owen Anderson825b72b2009-08-11 20:47:22 +00003274 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003275 getF32Constant(DAG, 0x3ee4f4b8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003276 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3277 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003278 getF32Constant(DAG, 0x3fbc278b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003279 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3280 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003281 getF32Constant(DAG, 0x40348e95));
Owen Anderson825b72b2009-08-11 20:47:22 +00003282 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3283 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003284 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003285
Scott Michelfdc40a02009-02-17 22:15:04 +00003286 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003287 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003288 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3289 // For floating-point precision of 18:
3290 //
3291 // LogOfMantissa =
3292 // -2.1072184f +
3293 // (4.2372794f +
3294 // (-3.7029485f +
3295 // (2.2781945f +
3296 // (-0.87823314f +
3297 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3298 //
3299 // error 0.0000023660568, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003300 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003301 getF32Constant(DAG, 0xbc91e5ac));
Owen Anderson825b72b2009-08-11 20:47:22 +00003302 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003303 getF32Constant(DAG, 0x3e4350aa));
Owen Anderson825b72b2009-08-11 20:47:22 +00003304 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3305 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003306 getF32Constant(DAG, 0x3f60d3e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003307 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3308 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003309 getF32Constant(DAG, 0x4011cdf0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003310 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3311 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003312 getF32Constant(DAG, 0x406cfd1c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003313 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3314 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003315 getF32Constant(DAG, 0x408797cb));
Owen Anderson825b72b2009-08-11 20:47:22 +00003316 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3317 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003318 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003319
Scott Michelfdc40a02009-02-17 22:15:04 +00003320 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003321 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003322 }
3323 } else {
3324 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003325 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003326 getValue(I.getOperand(1)).getValueType(),
3327 getValue(I.getOperand(1)));
3328 }
3329
Dale Johannesen59e577f2008-09-05 18:38:42 +00003330 setValue(&I, result);
3331}
3332
Bill Wendling3eb59402008-09-09 00:28:24 +00003333/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3334/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003335void
3336SelectionDAGLowering::visitLog2(CallInst &I) {
3337 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003338 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003339
Owen Anderson825b72b2009-08-11 20:47:22 +00003340 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003341 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3342 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003343 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003344
Bill Wendling39150252008-09-09 20:39:27 +00003345 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003346 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003347
3348 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003349 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003350 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003351
Bill Wendling3eb59402008-09-09 00:28:24 +00003352 // Different possible minimax approximations of significand in
3353 // floating-point for various degrees of accuracy over [1,2].
3354 if (LimitFloatPrecision <= 6) {
3355 // For floating-point precision of 6:
3356 //
3357 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3358 //
3359 // error 0.0049451742, which is more than 7 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003360 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003361 getF32Constant(DAG, 0xbeb08fe0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003362 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003363 getF32Constant(DAG, 0x40019463));
Owen Anderson825b72b2009-08-11 20:47:22 +00003364 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3365 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003366 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003367
Scott Michelfdc40a02009-02-17 22:15:04 +00003368 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003369 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003370 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3371 // For floating-point precision of 12:
3372 //
3373 // Log2ofMantissa =
3374 // -2.51285454f +
3375 // (4.07009056f +
3376 // (-2.12067489f +
3377 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003378 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003379 // error 0.0000876136000, which is better than 13 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003380 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003381 getF32Constant(DAG, 0xbda7262e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003382 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003383 getF32Constant(DAG, 0x3f25280b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003384 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3385 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003386 getF32Constant(DAG, 0x4007b923));
Owen Anderson825b72b2009-08-11 20:47:22 +00003387 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3388 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003389 getF32Constant(DAG, 0x40823e2f));
Owen Anderson825b72b2009-08-11 20:47:22 +00003390 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3391 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003392 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003393
Scott Michelfdc40a02009-02-17 22:15:04 +00003394 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003395 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003396 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3397 // For floating-point precision of 18:
3398 //
3399 // Log2ofMantissa =
3400 // -3.0400495f +
3401 // (6.1129976f +
3402 // (-5.3420409f +
3403 // (3.2865683f +
3404 // (-1.2669343f +
3405 // (0.27515199f -
3406 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3407 //
3408 // error 0.0000018516, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003409 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003410 getF32Constant(DAG, 0xbcd2769e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003411 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003412 getF32Constant(DAG, 0x3e8ce0b9));
Owen Anderson825b72b2009-08-11 20:47:22 +00003413 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3414 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003415 getF32Constant(DAG, 0x3fa22ae7));
Owen Anderson825b72b2009-08-11 20:47:22 +00003416 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3417 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003418 getF32Constant(DAG, 0x40525723));
Owen Anderson825b72b2009-08-11 20:47:22 +00003419 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3420 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003421 getF32Constant(DAG, 0x40aaf200));
Owen Anderson825b72b2009-08-11 20:47:22 +00003422 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3423 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003424 getF32Constant(DAG, 0x40c39dad));
Owen Anderson825b72b2009-08-11 20:47:22 +00003425 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3426 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003427 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003428
Scott Michelfdc40a02009-02-17 22:15:04 +00003429 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003430 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003431 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003432 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003433 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003434 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003435 getValue(I.getOperand(1)).getValueType(),
3436 getValue(I.getOperand(1)));
3437 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003438
Dale Johannesen59e577f2008-09-05 18:38:42 +00003439 setValue(&I, result);
3440}
3441
Bill Wendling3eb59402008-09-09 00:28:24 +00003442/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3443/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003444void
3445SelectionDAGLowering::visitLog10(CallInst &I) {
3446 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003447 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003448
Owen Anderson825b72b2009-08-11 20:47:22 +00003449 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003450 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3451 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003452 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003453
Bill Wendling39150252008-09-09 20:39:27 +00003454 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003455 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003456 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003457 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003458
3459 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003460 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003461 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003462
3463 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003464 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003465 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003466 // Log10ofMantissa =
3467 // -0.50419619f +
3468 // (0.60948995f - 0.10380950f * x) * x;
3469 //
3470 // error 0.0014886165, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003471 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003472 getF32Constant(DAG, 0xbdd49a13));
Owen Anderson825b72b2009-08-11 20:47:22 +00003473 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003474 getF32Constant(DAG, 0x3f1c0789));
Owen Anderson825b72b2009-08-11 20:47:22 +00003475 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3476 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003477 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003478
Scott Michelfdc40a02009-02-17 22:15:04 +00003479 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003480 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003481 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3482 // For floating-point precision of 12:
3483 //
3484 // Log10ofMantissa =
3485 // -0.64831180f +
3486 // (0.91751397f +
3487 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3488 //
3489 // error 0.00019228036, which is better than 12 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003490 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003491 getF32Constant(DAG, 0x3d431f31));
Owen Anderson825b72b2009-08-11 20:47:22 +00003492 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003493 getF32Constant(DAG, 0x3ea21fb2));
Owen Anderson825b72b2009-08-11 20:47:22 +00003494 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3495 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003496 getF32Constant(DAG, 0x3f6ae232));
Owen Anderson825b72b2009-08-11 20:47:22 +00003497 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3498 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003499 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003500
Scott Michelfdc40a02009-02-17 22:15:04 +00003501 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003502 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003503 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003504 // For floating-point precision of 18:
3505 //
3506 // Log10ofMantissa =
3507 // -0.84299375f +
3508 // (1.5327582f +
3509 // (-1.0688956f +
3510 // (0.49102474f +
3511 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3512 //
3513 // error 0.0000037995730, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003514 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003515 getF32Constant(DAG, 0x3c5d51ce));
Owen Anderson825b72b2009-08-11 20:47:22 +00003516 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003517 getF32Constant(DAG, 0x3e00685a));
Owen Anderson825b72b2009-08-11 20:47:22 +00003518 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3519 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003520 getF32Constant(DAG, 0x3efb6798));
Owen Anderson825b72b2009-08-11 20:47:22 +00003521 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3522 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003523 getF32Constant(DAG, 0x3f88d192));
Owen Anderson825b72b2009-08-11 20:47:22 +00003524 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3525 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003526 getF32Constant(DAG, 0x3fc4316c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003527 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3528 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003529 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003530
Scott Michelfdc40a02009-02-17 22:15:04 +00003531 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003532 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003533 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003534 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003535 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003536 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003537 getValue(I.getOperand(1)).getValueType(),
3538 getValue(I.getOperand(1)));
3539 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003540
Dale Johannesen59e577f2008-09-05 18:38:42 +00003541 setValue(&I, result);
3542}
3543
Bill Wendlinge10c8142008-09-09 22:39:21 +00003544/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3545/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003546void
3547SelectionDAGLowering::visitExp2(CallInst &I) {
3548 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003549 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003550
Owen Anderson825b72b2009-08-11 20:47:22 +00003551 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003552 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3553 SDValue Op = getValue(I.getOperand(1));
3554
Owen Anderson825b72b2009-08-11 20:47:22 +00003555 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003556
3557 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003558 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3559 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003560
3561 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003562 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003563 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003564
3565 if (LimitFloatPrecision <= 6) {
3566 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003567 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003568 // TwoToFractionalPartOfX =
3569 // 0.997535578f +
3570 // (0.735607626f + 0.252464424f * x) * x;
3571 //
3572 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003573 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003574 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003575 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003576 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003577 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3578 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003579 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003580 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003581 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003582 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003583
Scott Michelfdc40a02009-02-17 22:15:04 +00003584 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003585 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003586 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3587 // For floating-point precision of 12:
3588 //
3589 // TwoToFractionalPartOfX =
3590 // 0.999892986f +
3591 // (0.696457318f +
3592 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3593 //
3594 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003595 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003596 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003597 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003598 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003599 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3600 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003601 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003602 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3603 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003604 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003605 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003606 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003607 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003608
Scott Michelfdc40a02009-02-17 22:15:04 +00003609 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003610 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003611 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3612 // For floating-point precision of 18:
3613 //
3614 // TwoToFractionalPartOfX =
3615 // 0.999999982f +
3616 // (0.693148872f +
3617 // (0.240227044f +
3618 // (0.554906021e-1f +
3619 // (0.961591928e-2f +
3620 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3621 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003622 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003623 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003624 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003625 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003626 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3627 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003628 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003629 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3630 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003631 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003632 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3633 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003634 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003635 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3636 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003637 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003638 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3639 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003640 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003641 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003642 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003643 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003644
Scott Michelfdc40a02009-02-17 22:15:04 +00003645 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003646 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003647 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003648 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003649 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003650 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003651 getValue(I.getOperand(1)).getValueType(),
3652 getValue(I.getOperand(1)));
3653 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003654
Dale Johannesen601d3c02008-09-05 01:48:15 +00003655 setValue(&I, result);
3656}
3657
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003658/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3659/// limited-precision mode with x == 10.0f.
3660void
3661SelectionDAGLowering::visitPow(CallInst &I) {
3662 SDValue result;
3663 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003664 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003665 bool IsExp10 = false;
3666
Owen Anderson825b72b2009-08-11 20:47:22 +00003667 if (getValue(Val).getValueType() == MVT::f32 &&
3668 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003669 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3670 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3671 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3672 APFloat Ten(10.0f);
3673 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3674 }
3675 }
3676 }
3677
3678 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3679 SDValue Op = getValue(I.getOperand(2));
3680
3681 // Put the exponent in the right bit position for later addition to the
3682 // final result:
3683 //
3684 // #define LOG2OF10 3.3219281f
3685 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Owen Anderson825b72b2009-08-11 20:47:22 +00003686 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003687 getF32Constant(DAG, 0x40549a78));
Owen Anderson825b72b2009-08-11 20:47:22 +00003688 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003689
3690 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003691 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3692 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003693
3694 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003695 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003696 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003697
3698 if (LimitFloatPrecision <= 6) {
3699 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003700 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003701 // twoToFractionalPartOfX =
3702 // 0.997535578f +
3703 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003704 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003705 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003706 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003707 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003708 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003709 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003710 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3711 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003712 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003713 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003714 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003715 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003716
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003717 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003718 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003719 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3720 // For floating-point precision of 12:
3721 //
3722 // TwoToFractionalPartOfX =
3723 // 0.999892986f +
3724 // (0.696457318f +
3725 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3726 //
3727 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003728 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003729 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003730 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003731 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003732 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3733 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003734 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003735 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3736 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003737 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003738 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003739 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003740 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003741
Scott Michelfdc40a02009-02-17 22:15:04 +00003742 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003743 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003744 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3745 // For floating-point precision of 18:
3746 //
3747 // TwoToFractionalPartOfX =
3748 // 0.999999982f +
3749 // (0.693148872f +
3750 // (0.240227044f +
3751 // (0.554906021e-1f +
3752 // (0.961591928e-2f +
3753 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3754 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003755 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003756 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003757 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003758 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003759 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3760 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003761 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003762 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3763 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003764 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003765 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3766 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003767 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003768 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3769 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003770 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003771 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3772 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003773 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003774 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003775 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003776 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003777
Scott Michelfdc40a02009-02-17 22:15:04 +00003778 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003779 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003780 }
3781 } else {
3782 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003783 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003784 getValue(I.getOperand(1)).getValueType(),
3785 getValue(I.getOperand(1)),
3786 getValue(I.getOperand(2)));
3787 }
3788
3789 setValue(&I, result);
3790}
3791
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003792/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3793/// we want to emit this as a call to a named external function, return the name
3794/// otherwise lower it and return null.
3795const char *
3796SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003797 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003798 switch (Intrinsic) {
3799 default:
3800 // By default, turn this into a target intrinsic node.
3801 visitTargetIntrinsic(I, Intrinsic);
3802 return 0;
3803 case Intrinsic::vastart: visitVAStart(I); return 0;
3804 case Intrinsic::vaend: visitVAEnd(I); return 0;
3805 case Intrinsic::vacopy: visitVACopy(I); return 0;
3806 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003807 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003808 getValue(I.getOperand(1))));
3809 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003810 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003811 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003812 getValue(I.getOperand(1))));
3813 return 0;
3814 case Intrinsic::setjmp:
3815 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3816 break;
3817 case Intrinsic::longjmp:
3818 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3819 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003820 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003821 SDValue Op1 = getValue(I.getOperand(1));
3822 SDValue Op2 = getValue(I.getOperand(2));
3823 SDValue Op3 = getValue(I.getOperand(3));
3824 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003825 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003826 I.getOperand(1), 0, I.getOperand(2), 0));
3827 return 0;
3828 }
Chris Lattner824b9582008-11-21 16:42:48 +00003829 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003830 SDValue Op1 = getValue(I.getOperand(1));
3831 SDValue Op2 = getValue(I.getOperand(2));
3832 SDValue Op3 = getValue(I.getOperand(3));
3833 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003834 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003835 I.getOperand(1), 0));
3836 return 0;
3837 }
Chris Lattner824b9582008-11-21 16:42:48 +00003838 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003839 SDValue Op1 = getValue(I.getOperand(1));
3840 SDValue Op2 = getValue(I.getOperand(2));
3841 SDValue Op3 = getValue(I.getOperand(3));
3842 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3843
3844 // If the source and destination are known to not be aliases, we can
3845 // lower memmove as memcpy.
3846 uint64_t Size = -1ULL;
3847 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003848 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003849 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3850 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003851 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003852 I.getOperand(1), 0, I.getOperand(2), 0));
3853 return 0;
3854 }
3855
Dale Johannesena04b7572009-02-03 23:04:43 +00003856 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003857 I.getOperand(1), 0, I.getOperand(2), 0));
3858 return 0;
3859 }
3860 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003861 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003862 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003863 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003864 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003865 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003866
Bill Wendling98a366d2009-04-29 23:29:43 +00003867 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003868 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003869 SPI.getLine(),
3870 SPI.getColumn(),
3871 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003872 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003873 return 0;
3874 }
3875 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003876 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003877 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003878 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3879 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003880 unsigned LabelID =
3881 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Devang Patel48c7fa22009-04-13 18:13:16 +00003882 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3883 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003884 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003885 return 0;
3886 }
3887 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003888 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003889 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003890
Devang Patel7e1e31f2009-07-02 22:43:26 +00003891 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3892 || !DW->ShouldEmitDwarfDebug())
3893 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003894
Devang Patel7e1e31f2009-07-02 22:43:26 +00003895 MachineFunction &MF = DAG.getMachineFunction();
3896 DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext()));
3897
3898 if (isInlinedFnEnd(REI, MF.getFunction())) {
3899 // This is end of inlined function. Debugging information for inlined
3900 // function is not handled yet (only supported by FastISel).
3901 if (OptLevel == CodeGenOpt::None) {
3902 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3903 if (ID != 0)
3904 // Returned ID is 0 if this is unbalanced "end of inlined
3905 // scope". This could happen if optimizer eats dbg intrinsics or
3906 // "beginning of inlined scope" is not recoginized due to missing
3907 // location info. In such cases, do ignore this region.end.
3908 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3909 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003910 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003911 return 0;
3912 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003913
Devang Patel7e1e31f2009-07-02 22:43:26 +00003914 unsigned LabelID =
3915 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
3916 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3917 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003918 return 0;
3919 }
3920 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003921 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003922 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003923 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None))
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003924 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003925
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003926 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003927 // This is a beginning of an inlined function.
3928 if (isInlinedFnStart(FSI, MF.getFunction())) {
3929 if (OptLevel != CodeGenOpt::None)
3930 // FIXME: Debugging informaation for inlined function is only
3931 // supported at CodeGenOpt::Node.
3932 return 0;
3933
Bill Wendlingc677fe52009-05-10 00:10:50 +00003934 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003935 // If llvm.dbg.func.start is seen in a new block before any
3936 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3937 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3938 if (PrevLoc.isUnknown())
3939 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003940
Devang Patel7e1e31f2009-07-02 22:43:26 +00003941 // Record the source line.
3942 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3943
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003944 if (!DW || !DW->ShouldEmitDwarfDebug())
3945 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003946 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
3947 DISubprogram SP(cast<GlobalVariable>(FSI.getSubprogram()));
3948 DICompileUnit CU(PrevLocTpl.CompileUnit);
3949 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3950 PrevLocTpl.Line,
3951 PrevLocTpl.Col);
3952 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3953 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003954 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003955 }
3956
Devang Patel07b0ec02009-07-02 00:08:09 +00003957 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003958 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003959
3960 if (!DW || !DW->ShouldEmitDwarfDebug())
3961 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003962 // llvm.dbg.func_start also defines beginning of function scope.
3963 DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003964 return 0;
3965 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003966 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003967 if (OptLevel != CodeGenOpt::None)
3968 // FIXME: Variable debug info is not supported here.
3969 return 0;
3970
3971 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3972 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3973 return 0;
3974
3975 Value *Variable = DI.getVariable();
Owen Anderson825b72b2009-08-11 20:47:22 +00003976 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
Devang Patel7e1e31f2009-07-02 22:43:26 +00003977 getValue(DI.getAddress()), getValue(Variable)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003978 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003979 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003980 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003981 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003982 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Owen Anderson825b72b2009-08-11 20:47:22 +00003983 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003984 SDValue Ops[1];
3985 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003986 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003987 setValue(&I, Op);
3988 DAG.setRoot(Op.getValue(1));
3989 return 0;
3990 }
3991
3992 case Intrinsic::eh_selector_i32:
3993 case Intrinsic::eh_selector_i64: {
3994 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00003995 EVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
Owen Anderson825b72b2009-08-11 20:47:22 +00003996 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003997
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003998 if (MMI) {
3999 if (CurMBB->isLandingPad())
4000 AddCatchInfo(I, MMI, CurMBB);
4001 else {
4002#ifndef NDEBUG
4003 FuncInfo.CatchInfoLost.insert(&I);
4004#endif
4005 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4006 unsigned Reg = TLI.getExceptionSelectorRegister();
4007 if (Reg) CurMBB->addLiveIn(Reg);
4008 }
4009
4010 // Insert the EHSELECTION instruction.
Owen Anderson825b72b2009-08-11 20:47:22 +00004011 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004012 SDValue Ops[2];
4013 Ops[0] = getValue(I.getOperand(1));
4014 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004015 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004016 setValue(&I, Op);
4017 DAG.setRoot(Op.getValue(1));
4018 } else {
4019 setValue(&I, DAG.getConstant(0, VT));
4020 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004021
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004022 return 0;
4023 }
4024
4025 case Intrinsic::eh_typeid_for_i32:
4026 case Intrinsic::eh_typeid_for_i64: {
4027 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004028 EVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Owen Anderson825b72b2009-08-11 20:47:22 +00004029 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004030
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004031 if (MMI) {
4032 // Find the type id for the given typeinfo.
4033 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4034
4035 unsigned TypeID = MMI->getTypeIDFor(GV);
4036 setValue(&I, DAG.getConstant(TypeID, VT));
4037 } else {
4038 // Return something different to eh_selector.
4039 setValue(&I, DAG.getConstant(1, VT));
4040 }
4041
4042 return 0;
4043 }
4044
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004045 case Intrinsic::eh_return_i32:
4046 case Intrinsic::eh_return_i64:
4047 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004048 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004049 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004050 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004051 getControlRoot(),
4052 getValue(I.getOperand(1)),
4053 getValue(I.getOperand(2))));
4054 } else {
4055 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4056 }
4057
4058 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004059 case Intrinsic::eh_unwind_init:
4060 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4061 MMI->setCallsUnwindInit(true);
4062 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004063
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004064 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004065
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004066 case Intrinsic::eh_dwarf_cfa: {
Owen Andersone50ed302009-08-10 22:56:29 +00004067 EVT VT = getValue(I.getOperand(1)).getValueType();
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004068 SDValue CfaArg;
4069 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004070 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004071 TLI.getPointerTy(), getValue(I.getOperand(1)));
4072 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004073 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004074 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004075
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004076 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004077 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004078 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004079 TLI.getPointerTy()),
4080 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004081 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004082 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004083 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004084 TLI.getPointerTy(),
4085 DAG.getConstant(0,
4086 TLI.getPointerTy())),
4087 Offset));
4088 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004089 }
Jim Grosbach1b747ad2009-08-11 00:09:57 +00004090 case Intrinsic::eh_sjlj_callsite: {
4091 MachineFunction &MF = DAG.getMachineFunction();
4092 MF.setCallSiteIndex(cast<ConstantSDNode>(getValue(I.getOperand(1)))->getZExtValue());
4093 return 0;
4094 }
Mon P Wang77cdf302008-11-10 20:54:11 +00004095 case Intrinsic::convertff:
4096 case Intrinsic::convertfsi:
4097 case Intrinsic::convertfui:
4098 case Intrinsic::convertsif:
4099 case Intrinsic::convertuif:
4100 case Intrinsic::convertss:
4101 case Intrinsic::convertsu:
4102 case Intrinsic::convertus:
4103 case Intrinsic::convertuu: {
4104 ISD::CvtCode Code = ISD::CVT_INVALID;
4105 switch (Intrinsic) {
4106 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4107 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4108 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4109 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4110 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4111 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4112 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4113 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4114 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4115 }
Owen Andersone50ed302009-08-10 22:56:29 +00004116 EVT DestVT = TLI.getValueType(I.getType());
Mon P Wang77cdf302008-11-10 20:54:11 +00004117 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004118 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004119 DAG.getValueType(DestVT),
4120 DAG.getValueType(getValue(Op1).getValueType()),
4121 getValue(I.getOperand(2)),
4122 getValue(I.getOperand(3)),
4123 Code));
4124 return 0;
4125 }
4126
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004127 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004128 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004129 getValue(I.getOperand(1)).getValueType(),
4130 getValue(I.getOperand(1))));
4131 return 0;
4132 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004133 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004134 getValue(I.getOperand(1)).getValueType(),
4135 getValue(I.getOperand(1)),
4136 getValue(I.getOperand(2))));
4137 return 0;
4138 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004139 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004140 getValue(I.getOperand(1)).getValueType(),
4141 getValue(I.getOperand(1))));
4142 return 0;
4143 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004144 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004145 getValue(I.getOperand(1)).getValueType(),
4146 getValue(I.getOperand(1))));
4147 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004148 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004149 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004150 return 0;
4151 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004152 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004153 return 0;
4154 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004155 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004156 return 0;
4157 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004158 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004159 return 0;
4160 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004161 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004162 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004163 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004164 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004165 return 0;
4166 case Intrinsic::pcmarker: {
4167 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004168 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004169 return 0;
4170 }
4171 case Intrinsic::readcyclecounter: {
4172 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004173 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004174 DAG.getVTList(MVT::i64, MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004175 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004176 setValue(&I, Tmp);
4177 DAG.setRoot(Tmp.getValue(1));
4178 return 0;
4179 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004180 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004181 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004182 getValue(I.getOperand(1)).getValueType(),
4183 getValue(I.getOperand(1))));
4184 return 0;
4185 case Intrinsic::cttz: {
4186 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004187 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004188 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004189 setValue(&I, result);
4190 return 0;
4191 }
4192 case Intrinsic::ctlz: {
4193 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004194 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004195 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004196 setValue(&I, result);
4197 return 0;
4198 }
4199 case Intrinsic::ctpop: {
4200 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004201 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004202 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004203 setValue(&I, result);
4204 return 0;
4205 }
4206 case Intrinsic::stacksave: {
4207 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004208 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004209 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004210 setValue(&I, Tmp);
4211 DAG.setRoot(Tmp.getValue(1));
4212 return 0;
4213 }
4214 case Intrinsic::stackrestore: {
4215 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004216 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004217 return 0;
4218 }
Bill Wendling57344502008-11-18 11:01:33 +00004219 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004220 // Emit code into the DAG to store the stack guard onto the stack.
4221 MachineFunction &MF = DAG.getMachineFunction();
4222 MachineFrameInfo *MFI = MF.getFrameInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004223 EVT PtrTy = TLI.getPointerTy();
Bill Wendlingb2a42982008-11-06 02:29:10 +00004224
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004225 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4226 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004227
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004228 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004229 MFI->setStackProtectorIndex(FI);
4230
4231 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4232
4233 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004234 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004235 PseudoSourceValue::getFixedStack(FI),
4236 0, true);
4237 setValue(&I, Result);
4238 DAG.setRoot(Result);
4239 return 0;
4240 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004241 case Intrinsic::var_annotation:
4242 // Discard annotate attributes
4243 return 0;
4244
4245 case Intrinsic::init_trampoline: {
4246 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4247
4248 SDValue Ops[6];
4249 Ops[0] = getRoot();
4250 Ops[1] = getValue(I.getOperand(1));
4251 Ops[2] = getValue(I.getOperand(2));
4252 Ops[3] = getValue(I.getOperand(3));
4253 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4254 Ops[5] = DAG.getSrcValue(F);
4255
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004256 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004257 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004258 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004259
4260 setValue(&I, Tmp);
4261 DAG.setRoot(Tmp.getValue(1));
4262 return 0;
4263 }
4264
4265 case Intrinsic::gcroot:
4266 if (GFI) {
4267 Value *Alloca = I.getOperand(1);
4268 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004269
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004270 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4271 GFI->addStackRoot(FI->getIndex(), TypeMap);
4272 }
4273 return 0;
4274
4275 case Intrinsic::gcread:
4276 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004277 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004278 return 0;
4279
4280 case Intrinsic::flt_rounds: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004281 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004282 return 0;
4283 }
4284
4285 case Intrinsic::trap: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004286 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004287 return 0;
4288 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004289
Bill Wendlingef375462008-11-21 02:38:44 +00004290 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004291 return implVisitAluOverflow(I, ISD::UADDO);
4292 case Intrinsic::sadd_with_overflow:
4293 return implVisitAluOverflow(I, ISD::SADDO);
4294 case Intrinsic::usub_with_overflow:
4295 return implVisitAluOverflow(I, ISD::USUBO);
4296 case Intrinsic::ssub_with_overflow:
4297 return implVisitAluOverflow(I, ISD::SSUBO);
4298 case Intrinsic::umul_with_overflow:
4299 return implVisitAluOverflow(I, ISD::UMULO);
4300 case Intrinsic::smul_with_overflow:
4301 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004302
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004303 case Intrinsic::prefetch: {
4304 SDValue Ops[4];
4305 Ops[0] = getRoot();
4306 Ops[1] = getValue(I.getOperand(1));
4307 Ops[2] = getValue(I.getOperand(2));
4308 Ops[3] = getValue(I.getOperand(3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004309 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004310 return 0;
4311 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004312
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004313 case Intrinsic::memory_barrier: {
4314 SDValue Ops[6];
4315 Ops[0] = getRoot();
4316 for (int x = 1; x < 6; ++x)
4317 Ops[x] = getValue(I.getOperand(x));
4318
Owen Anderson825b72b2009-08-11 20:47:22 +00004319 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004320 return 0;
4321 }
4322 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004323 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004324 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004325 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004326 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4327 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004328 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004329 getValue(I.getOperand(2)),
4330 getValue(I.getOperand(3)),
4331 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004332 setValue(&I, L);
4333 DAG.setRoot(L.getValue(1));
4334 return 0;
4335 }
4336 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004337 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004339 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004340 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004341 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004342 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004343 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004344 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004345 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004346 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004348 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004349 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004350 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004351 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004352 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004353 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004354 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004355 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004356 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004357 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004358 }
4359}
4360
Dan Gohman98ca4f22009-08-05 01:29:28 +00004361/// Test if the given instruction is in a position to be optimized
4362/// with a tail-call. This roughly means that it's in a block with
4363/// a return and there's nothing that needs to be scheduled
4364/// between it and the return.
4365///
4366/// This function only tests target-independent requirements.
4367/// For target-dependent requirements, a target should override
4368/// TargetLowering::IsEligibleForTailCallOptimization.
4369///
4370static bool
4371isInTailCallPosition(const Instruction *I, Attributes RetAttr,
4372 const TargetLowering &TLI) {
4373 const BasicBlock *ExitBB = I->getParent();
4374 const TerminatorInst *Term = ExitBB->getTerminator();
4375 const ReturnInst *Ret = dyn_cast<ReturnInst>(Term);
4376 const Function *F = ExitBB->getParent();
4377
4378 // The block must end in a return statement or an unreachable.
4379 if (!Ret && !isa<UnreachableInst>(Term)) return false;
4380
4381 // If I will have a chain, make sure no other instruction that will have a
4382 // chain interposes between I and the return.
4383 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
4384 !I->isSafeToSpeculativelyExecute())
4385 for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ;
4386 --BBI) {
4387 if (&*BBI == I)
4388 break;
4389 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
4390 !BBI->isSafeToSpeculativelyExecute())
4391 return false;
4392 }
4393
4394 // If the block ends with a void return or unreachable, it doesn't matter
4395 // what the call's return type is.
4396 if (!Ret || Ret->getNumOperands() == 0) return true;
4397
4398 // Conservatively require the attributes of the call to match those of
4399 // the return.
4400 if (F->getAttributes().getRetAttributes() != RetAttr)
4401 return false;
4402
4403 // Otherwise, make sure the unmodified return value of I is the return value.
4404 for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ;
4405 U = dyn_cast<Instruction>(U->getOperand(0))) {
4406 if (!U)
4407 return false;
4408 if (!U->hasOneUse())
4409 return false;
4410 if (U == I)
4411 break;
4412 // Check for a truly no-op truncate.
4413 if (isa<TruncInst>(U) &&
4414 TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType()))
4415 continue;
4416 // Check for a truly no-op bitcast.
4417 if (isa<BitCastInst>(U) &&
4418 (U->getOperand(0)->getType() == U->getType() ||
4419 (isa<PointerType>(U->getOperand(0)->getType()) &&
4420 isa<PointerType>(U->getType()))))
4421 continue;
4422 // Otherwise it's not a true no-op.
4423 return false;
4424 }
4425
4426 return true;
4427}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004428
4429void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004430 bool isTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004431 MachineBasicBlock *LandingPad) {
4432 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4433 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4434 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4435 unsigned BeginLabel = 0, EndLabel = 0;
4436
4437 TargetLowering::ArgListTy Args;
4438 TargetLowering::ArgListEntry Entry;
4439 Args.reserve(CS.arg_size());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004440 unsigned j = 1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004441 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Dan Gohman98ca4f22009-08-05 01:29:28 +00004442 i != e; ++i, ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004443 SDValue ArgNode = getValue(*i);
4444 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4445
4446 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004447 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4448 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4449 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4450 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4451 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4452 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004453 Entry.Alignment = CS.getParamAlignment(attrInd);
4454 Args.push_back(Entry);
4455 }
4456
4457 if (LandingPad && MMI) {
Jim Grosbach1b747ad2009-08-11 00:09:57 +00004458 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004459 // Insert a label before the invoke call to mark the try range. This can be
4460 // used to detect deletion of the invoke via the MachineModuleInfo.
4461 BeginLabel = MMI->NextLabelID();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00004462
4463 // Map this landing pad to the current call site entry
4464 MF.setLandingPadCallSiteIndex(LandingPad, MF.getCallSiteIndex());
4465
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004466 // Both PendingLoads and PendingExports must be flushed here;
4467 // this call might not return.
4468 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004469 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4470 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004471 }
4472
Dan Gohman98ca4f22009-08-05 01:29:28 +00004473 // Check if target-independent constraints permit a tail call here.
4474 // Target-dependent constraints are checked within TLI.LowerCallTo.
4475 if (isTailCall &&
4476 !isInTailCallPosition(CS.getInstruction(),
4477 CS.getAttributes().getRetAttributes(),
4478 TLI))
4479 isTailCall = false;
4480
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004481 std::pair<SDValue,SDValue> Result =
4482 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004483 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004484 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004485 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004486 CS.getCallingConv(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00004487 isTailCall,
4488 !CS.getInstruction()->use_empty(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004489 Callee, Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004490 assert((isTailCall || Result.second.getNode()) &&
4491 "Non-null chain expected with non-tail call!");
4492 assert((Result.second.getNode() || !Result.first.getNode()) &&
4493 "Null value expected with tail call!");
4494 if (Result.first.getNode())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004495 setValue(CS.getInstruction(), Result.first);
Dan Gohman98ca4f22009-08-05 01:29:28 +00004496 // As a special case, a null chain means that a tail call has
4497 // been emitted and the DAG root is already updated.
4498 if (Result.second.getNode())
4499 DAG.setRoot(Result.second);
4500 else
4501 HasTailCall = true;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004502
4503 if (LandingPad && MMI) {
4504 // Insert a label at the end of the invoke call to mark the try range. This
4505 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4506 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004507 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4508 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004509
4510 // Inform MachineModuleInfo of range.
4511 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4512 }
4513}
4514
4515
4516void SelectionDAGLowering::visitCall(CallInst &I) {
4517 const char *RenameFn = 0;
4518 if (Function *F = I.getCalledFunction()) {
4519 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004520 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4521 if (II) {
4522 if (unsigned IID = II->getIntrinsicID(F)) {
4523 RenameFn = visitIntrinsicCall(I, IID);
4524 if (!RenameFn)
4525 return;
4526 }
4527 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004528 if (unsigned IID = F->getIntrinsicID()) {
4529 RenameFn = visitIntrinsicCall(I, IID);
4530 if (!RenameFn)
4531 return;
4532 }
4533 }
4534
4535 // Check for well-known libc/libm calls. If the function is internal, it
4536 // can't be a library call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004537 if (!F->hasLocalLinkage() && F->hasName()) {
4538 StringRef Name = F->getName();
4539 if (Name == "copysign" || Name == "copysignf") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004540 if (I.getNumOperands() == 3 && // Basic sanity checks.
4541 I.getOperand(1)->getType()->isFloatingPoint() &&
4542 I.getType() == I.getOperand(1)->getType() &&
4543 I.getType() == I.getOperand(2)->getType()) {
4544 SDValue LHS = getValue(I.getOperand(1));
4545 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004546 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004547 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004548 return;
4549 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004550 } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004551 if (I.getNumOperands() == 2 && // Basic sanity checks.
4552 I.getOperand(1)->getType()->isFloatingPoint() &&
4553 I.getType() == I.getOperand(1)->getType()) {
4554 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004555 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004556 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004557 return;
4558 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004559 } else if (Name == "sin" || Name == "sinf" || Name == "sinl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004560 if (I.getNumOperands() == 2 && // Basic sanity checks.
4561 I.getOperand(1)->getType()->isFloatingPoint() &&
4562 I.getType() == I.getOperand(1)->getType()) {
4563 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004564 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004565 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004566 return;
4567 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004568 } else if (Name == "cos" || Name == "cosf" || Name == "cosl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004569 if (I.getNumOperands() == 2 && // Basic sanity checks.
4570 I.getOperand(1)->getType()->isFloatingPoint() &&
4571 I.getType() == I.getOperand(1)->getType()) {
4572 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004573 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004574 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004575 return;
4576 }
4577 }
4578 }
4579 } else if (isa<InlineAsm>(I.getOperand(0))) {
4580 visitInlineAsm(&I);
4581 return;
4582 }
4583
4584 SDValue Callee;
4585 if (!RenameFn)
4586 Callee = getValue(I.getOperand(0));
4587 else
Bill Wendling056292f2008-09-16 21:48:12 +00004588 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004589
Dan Gohman98ca4f22009-08-05 01:29:28 +00004590 // Check if we can potentially perform a tail call. More detailed
4591 // checking is be done within LowerCallTo, after more information
4592 // about the call is known.
4593 bool isTailCall = PerformTailCallOpt && I.isTailCall();
4594
4595 LowerCallTo(&I, Callee, isTailCall);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004596}
4597
4598
4599/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004600/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004601/// Chain/Flag as the input and updates them for the output Chain/Flag.
4602/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004603SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004604 SDValue &Chain,
4605 SDValue *Flag) const {
4606 // Assemble the legal parts into the final values.
4607 SmallVector<SDValue, 4> Values(ValueVTs.size());
4608 SmallVector<SDValue, 8> Parts;
4609 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4610 // Copy the legal parts from the registers.
Owen Andersone50ed302009-08-10 22:56:29 +00004611 EVT ValueVT = ValueVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004612 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004613 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004614
4615 Parts.resize(NumRegs);
4616 for (unsigned i = 0; i != NumRegs; ++i) {
4617 SDValue P;
4618 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004619 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004620 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004621 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004622 *Flag = P.getValue(2);
4623 }
4624 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004625
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004626 // If the source register was virtual and if we know something about it,
4627 // add an assert node.
4628 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4629 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4630 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4631 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4632 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4633 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004634
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004635 unsigned RegSize = RegisterVT.getSizeInBits();
4636 unsigned NumSignBits = LOI.NumSignBits;
4637 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004638
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004639 // FIXME: We capture more information than the dag can represent. For
4640 // now, just use the tightest assertzext/assertsext possible.
4641 bool isSExt = true;
Owen Anderson825b72b2009-08-11 20:47:22 +00004642 EVT FromVT(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643 if (NumSignBits == RegSize)
Owen Anderson825b72b2009-08-11 20:47:22 +00004644 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004645 else if (NumZeroBits >= RegSize-1)
Owen Anderson825b72b2009-08-11 20:47:22 +00004646 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004647 else if (NumSignBits > RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004648 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004649 else if (NumZeroBits >= RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004650 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004651 else if (NumSignBits > RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004652 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004653 else if (NumZeroBits >= RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004654 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004655 else if (NumSignBits > RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004656 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004657 else if (NumZeroBits >= RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004658 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004659
Owen Anderson825b72b2009-08-11 20:47:22 +00004660 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004661 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004662 RegisterVT, P, DAG.getValueType(FromVT));
4663
4664 }
4665 }
4666 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004667
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004668 Parts[i] = P;
4669 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004670
Scott Michelfdc40a02009-02-17 22:15:04 +00004671 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004672 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004673 Part += NumRegs;
4674 Parts.clear();
4675 }
4676
Dale Johannesen66978ee2009-01-31 02:22:37 +00004677 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004678 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4679 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004680}
4681
4682/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004683/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004684/// Chain/Flag as the input and updates them for the output Chain/Flag.
4685/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004686void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004687 SDValue &Chain, SDValue *Flag) const {
4688 // Get the list of the values's legal parts.
4689 unsigned NumRegs = Regs.size();
4690 SmallVector<SDValue, 8> Parts(NumRegs);
4691 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00004692 EVT ValueVT = ValueVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004693 unsigned NumParts = TLI->getNumRegisters(ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004694 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004695
Dale Johannesen66978ee2009-01-31 02:22:37 +00004696 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004697 &Parts[Part], NumParts, RegisterVT);
4698 Part += NumParts;
4699 }
4700
4701 // Copy the parts into the registers.
4702 SmallVector<SDValue, 8> Chains(NumRegs);
4703 for (unsigned i = 0; i != NumRegs; ++i) {
4704 SDValue Part;
4705 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004706 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004707 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004708 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004709 *Flag = Part.getValue(1);
4710 }
4711 Chains[i] = Part.getValue(0);
4712 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004713
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004714 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004715 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004716 // flagged to it. That is the CopyToReg nodes and the user are considered
4717 // a single scheduling unit. If we create a TokenFactor and return it as
4718 // chain, then the TokenFactor is both a predecessor (operand) of the
4719 // user as well as a successor (the TF operands are flagged to the user).
4720 // c1, f1 = CopyToReg
4721 // c2, f2 = CopyToReg
4722 // c3 = TokenFactor c1, c2
4723 // ...
4724 // = op c3, ..., f2
4725 Chain = Chains[NumRegs-1];
4726 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004727 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004728}
4729
4730/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004731/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004732/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004733void RegsForValue::AddInlineAsmOperands(unsigned Code,
4734 bool HasMatching,unsigned MatchingIdx,
4735 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004736 std::vector<SDValue> &Ops) const {
Owen Andersone50ed302009-08-10 22:56:29 +00004737 EVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004738 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4739 unsigned Flag = Code | (Regs.size() << 3);
4740 if (HasMatching)
4741 Flag |= 0x80000000 | (MatchingIdx << 16);
4742 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004743 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4744 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
Owen Andersone50ed302009-08-10 22:56:29 +00004745 EVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004746 for (unsigned i = 0; i != NumRegs; ++i) {
4747 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004748 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004749 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004750 }
4751}
4752
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004753/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004754/// i.e. it isn't a stack pointer or some other special register, return the
4755/// register class for the register. Otherwise, return null.
4756static const TargetRegisterClass *
4757isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4758 const TargetLowering &TLI,
4759 const TargetRegisterInfo *TRI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004760 EVT FoundVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004761 const TargetRegisterClass *FoundRC = 0;
4762 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4763 E = TRI->regclass_end(); RCI != E; ++RCI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004764 EVT ThisVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004765
4766 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004767 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004768 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4769 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4770 I != E; ++I) {
4771 if (TLI.isTypeLegal(*I)) {
4772 // If we have already found this register in a different register class,
4773 // choose the one with the largest VT specified. For example, on
4774 // PowerPC, we favor f64 register classes over f32.
Owen Anderson825b72b2009-08-11 20:47:22 +00004775 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004776 ThisVT = *I;
4777 break;
4778 }
4779 }
4780 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004781
Owen Anderson825b72b2009-08-11 20:47:22 +00004782 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004783
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004784 // NOTE: This isn't ideal. In particular, this might allocate the
4785 // frame pointer in functions that need it (due to them not being taken
4786 // out of allocation, because a variable sized allocation hasn't been seen
4787 // yet). This is a slight code pessimization, but should still work.
4788 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4789 E = RC->allocation_order_end(MF); I != E; ++I)
4790 if (*I == Reg) {
4791 // We found a matching register class. Keep looking at others in case
4792 // we find one with larger registers that this physreg is also in.
4793 FoundRC = RC;
4794 FoundVT = ThisVT;
4795 break;
4796 }
4797 }
4798 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004799}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004800
4801
4802namespace llvm {
4803/// AsmOperandInfo - This contains information for each constraint that we are
4804/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004805class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004806 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004807public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004808 /// CallOperand - If this is the result output operand or a clobber
4809 /// this is null, otherwise it is the incoming operand to the CallInst.
4810 /// This gets modified as the asm is processed.
4811 SDValue CallOperand;
4812
4813 /// AssignedRegs - If this is a register or register class operand, this
4814 /// contains the set of register corresponding to the operand.
4815 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004816
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004817 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4818 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4819 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004820
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004821 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4822 /// busy in OutputRegs/InputRegs.
4823 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004824 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004825 std::set<unsigned> &InputRegs,
4826 const TargetRegisterInfo &TRI) const {
4827 if (isOutReg) {
4828 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4829 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4830 }
4831 if (isInReg) {
4832 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4833 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4834 }
4835 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004836
Owen Andersone50ed302009-08-10 22:56:29 +00004837 /// getCallOperandValEVT - Return the EVT of the Value* that this operand
Chris Lattner81249c92008-10-17 17:05:25 +00004838 /// corresponds to. If there is no Value* for this operand, it returns
Owen Anderson825b72b2009-08-11 20:47:22 +00004839 /// MVT::Other.
Owen Andersone50ed302009-08-10 22:56:29 +00004840 EVT getCallOperandValEVT(const TargetLowering &TLI,
Chris Lattner81249c92008-10-17 17:05:25 +00004841 const TargetData *TD) const {
Owen Anderson825b72b2009-08-11 20:47:22 +00004842 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004843
Chris Lattner81249c92008-10-17 17:05:25 +00004844 if (isa<BasicBlock>(CallOperandVal))
4845 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004846
Chris Lattner81249c92008-10-17 17:05:25 +00004847 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004848
Chris Lattner81249c92008-10-17 17:05:25 +00004849 // If this is an indirect operand, the operand is a pointer to the
4850 // accessed type.
4851 if (isIndirect)
4852 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004853
Chris Lattner81249c92008-10-17 17:05:25 +00004854 // If OpTy is not a single value, it may be a struct/union that we
4855 // can tile with integers.
4856 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4857 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4858 switch (BitSize) {
4859 default: break;
4860 case 1:
4861 case 8:
4862 case 16:
4863 case 32:
4864 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004865 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004866 OpTy = IntegerType::get(BitSize);
4867 break;
4868 }
4869 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004870
Chris Lattner81249c92008-10-17 17:05:25 +00004871 return TLI.getValueType(OpTy, true);
4872 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004873
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004874private:
4875 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4876 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004877 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004878 const TargetRegisterInfo &TRI) {
4879 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4880 Regs.insert(Reg);
4881 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4882 for (; *Aliases; ++Aliases)
4883 Regs.insert(*Aliases);
4884 }
4885};
4886} // end llvm namespace.
4887
4888
4889/// GetRegistersForValue - Assign registers (virtual or physical) for the
4890/// specified operand. We prefer to assign virtual registers, to allow the
4891/// register allocator handle the assignment process. However, if the asm uses
4892/// features that we can't model on machineinstrs, we have SDISel do the
4893/// allocation. This produces generally horrible, but correct, code.
4894///
4895/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004896/// Input and OutputRegs are the set of already allocated physical registers.
4897///
4898void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004899GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004900 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004901 std::set<unsigned> &InputRegs) {
4902 // Compute whether this value requires an input register, an output register,
4903 // or both.
4904 bool isOutReg = false;
4905 bool isInReg = false;
4906 switch (OpInfo.Type) {
4907 case InlineAsm::isOutput:
4908 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004909
4910 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004911 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004912 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004913 break;
4914 case InlineAsm::isInput:
4915 isInReg = true;
4916 isOutReg = false;
4917 break;
4918 case InlineAsm::isClobber:
4919 isOutReg = true;
4920 isInReg = true;
4921 break;
4922 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004923
4924
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004925 MachineFunction &MF = DAG.getMachineFunction();
4926 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004927
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004928 // If this is a constraint for a single physreg, or a constraint for a
4929 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004930 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004931 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4932 OpInfo.ConstraintVT);
4933
4934 unsigned NumRegs = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00004935 if (OpInfo.ConstraintVT != MVT::Other) {
Chris Lattner01426e12008-10-21 00:45:36 +00004936 // If this is a FP input in an integer register (or visa versa) insert a bit
4937 // cast of the input value. More generally, handle any case where the input
4938 // value disagrees with the register class we plan to stick this in.
4939 if (OpInfo.Type == InlineAsm::isInput &&
4940 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
Owen Andersone50ed302009-08-10 22:56:29 +00004941 // Try to convert to the first EVT that the reg class contains. If the
Chris Lattner01426e12008-10-21 00:45:36 +00004942 // types are identical size, use a bitcast to convert (e.g. two differing
4943 // vector types).
Owen Andersone50ed302009-08-10 22:56:29 +00004944 EVT RegVT = *PhysReg.second->vt_begin();
Chris Lattner01426e12008-10-21 00:45:36 +00004945 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004946 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004947 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004948 OpInfo.ConstraintVT = RegVT;
4949 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4950 // If the input is a FP value and we want it in FP registers, do a
4951 // bitcast to the corresponding integer type. This turns an f64 value
4952 // into i64, which can be passed with two i32 values on a 32-bit
4953 // machine.
Owen Andersone50ed302009-08-10 22:56:29 +00004954 RegVT = EVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004955 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004956 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004957 OpInfo.ConstraintVT = RegVT;
4958 }
4959 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004960
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004961 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004962 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004963
Owen Andersone50ed302009-08-10 22:56:29 +00004964 EVT RegVT;
4965 EVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004966
4967 // If this is a constraint for a specific physical register, like {r17},
4968 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004969 if (unsigned AssignedReg = PhysReg.first) {
4970 const TargetRegisterClass *RC = PhysReg.second;
Owen Anderson825b72b2009-08-11 20:47:22 +00004971 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004972 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004973
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004974 // Get the actual register value type. This is important, because the user
4975 // may have asked for (e.g.) the AX register in i32 type. We need to
4976 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004977 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004978
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004979 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004980 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004981
4982 // If this is an expanded reference, add the rest of the regs to Regs.
4983 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004984 TargetRegisterClass::iterator I = RC->begin();
4985 for (; *I != AssignedReg; ++I)
4986 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004987
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004988 // Already added the first reg.
4989 --NumRegs; ++I;
4990 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004991 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004992 Regs.push_back(*I);
4993 }
4994 }
4995 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4996 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4997 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4998 return;
4999 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005000
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005001 // Otherwise, if this was a reference to an LLVM register class, create vregs
5002 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00005003 if (const TargetRegisterClass *RC = PhysReg.second) {
5004 RegVT = *RC->vt_begin();
Owen Anderson825b72b2009-08-11 20:47:22 +00005005 if (OpInfo.ConstraintVT == MVT::Other)
Evan Chengfb112882009-03-23 08:01:15 +00005006 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005007
Evan Chengfb112882009-03-23 08:01:15 +00005008 // Create the appropriate number of virtual registers.
5009 MachineRegisterInfo &RegInfo = MF.getRegInfo();
5010 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00005011 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005012
Evan Chengfb112882009-03-23 08:01:15 +00005013 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5014 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005015 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005016
5017 // This is a reference to a register class that doesn't directly correspond
5018 // to an LLVM register class. Allocate NumRegs consecutive, available,
5019 // registers from the class.
5020 std::vector<unsigned> RegClassRegs
5021 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
5022 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005023
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005024 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5025 unsigned NumAllocated = 0;
5026 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
5027 unsigned Reg = RegClassRegs[i];
5028 // See if this register is available.
5029 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
5030 (isInReg && InputRegs.count(Reg))) { // Already used.
5031 // Make sure we find consecutive registers.
5032 NumAllocated = 0;
5033 continue;
5034 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005035
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005036 // Check to see if this register is allocatable (i.e. don't give out the
5037 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005038 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
5039 if (!RC) { // Couldn't allocate this register.
5040 // Reset NumAllocated to make sure we return consecutive registers.
5041 NumAllocated = 0;
5042 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005043 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005044
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005045 // Okay, this register is good, we can use it.
5046 ++NumAllocated;
5047
5048 // If we allocated enough consecutive registers, succeed.
5049 if (NumAllocated == NumRegs) {
5050 unsigned RegStart = (i-NumAllocated)+1;
5051 unsigned RegEnd = i+1;
5052 // Mark all of the allocated registers used.
5053 for (unsigned i = RegStart; i != RegEnd; ++i)
5054 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005055
5056 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005057 OpInfo.ConstraintVT);
5058 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5059 return;
5060 }
5061 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005062
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005063 // Otherwise, we couldn't allocate enough registers for this.
5064}
5065
Evan Chengda43bcf2008-09-24 00:05:32 +00005066/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5067/// processed uses a memory 'm' constraint.
5068static bool
5069hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005070 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005071 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5072 InlineAsm::ConstraintInfo &CI = CInfos[i];
5073 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5074 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5075 if (CType == TargetLowering::C_Memory)
5076 return true;
5077 }
Chris Lattner6c147292009-04-30 00:48:50 +00005078
5079 // Indirect operand accesses access memory.
5080 if (CI.isIndirect)
5081 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005082 }
5083
5084 return false;
5085}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005086
5087/// visitInlineAsm - Handle a call to an InlineAsm object.
5088///
5089void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5090 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5091
5092 /// ConstraintOperands - Information about all of the constraints.
5093 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005094
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005095 std::set<unsigned> OutputRegs, InputRegs;
5096
5097 // Do a prepass over the constraints, canonicalizing them, and building up the
5098 // ConstraintOperands list.
5099 std::vector<InlineAsm::ConstraintInfo>
5100 ConstraintInfos = IA->ParseConstraints();
5101
Evan Chengda43bcf2008-09-24 00:05:32 +00005102 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005103
5104 SDValue Chain, Flag;
5105
5106 // We won't need to flush pending loads if this asm doesn't touch
5107 // memory and is nonvolatile.
5108 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005109 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005110 else
5111 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005112
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005113 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5114 unsigned ResNo = 0; // ResNo - The result number of the next output.
5115 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5116 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5117 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005118
Owen Anderson825b72b2009-08-11 20:47:22 +00005119 EVT OpVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005120
5121 // Compute the value type for each operand.
5122 switch (OpInfo.Type) {
5123 case InlineAsm::isOutput:
5124 // Indirect outputs just consume an argument.
5125 if (OpInfo.isIndirect) {
5126 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5127 break;
5128 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005129
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005130 // The return value of the call is this value. As such, there is no
5131 // corresponding argument.
5132 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5133 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5134 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5135 } else {
5136 assert(ResNo == 0 && "Asm only has one result!");
5137 OpVT = TLI.getValueType(CS.getType());
5138 }
5139 ++ResNo;
5140 break;
5141 case InlineAsm::isInput:
5142 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5143 break;
5144 case InlineAsm::isClobber:
5145 // Nothing to do.
5146 break;
5147 }
5148
5149 // If this is an input or an indirect output, process the call argument.
5150 // BasicBlocks are labels, currently appearing only in asm's.
5151 if (OpInfo.CallOperandVal) {
Dale Johannesen5339c552009-07-20 23:27:39 +00005152 // Strip bitcasts, if any. This mostly comes up for functions.
Dale Johannesen76711242009-08-06 22:45:51 +00005153 OpInfo.CallOperandVal = OpInfo.CallOperandVal->stripPointerCasts();
5154
Chris Lattner81249c92008-10-17 17:05:25 +00005155 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005156 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005157 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005158 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005159 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005160
Owen Andersone50ed302009-08-10 22:56:29 +00005161 OpVT = OpInfo.getCallOperandValEVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005162 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005163
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005164 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005165 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005166
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005167 // Second pass over the constraints: compute which constraint option to use
5168 // and assign registers to constraints that want a specific physreg.
5169 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5170 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005171
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005172 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005173 // matching input. If their types mismatch, e.g. one is an integer, the
5174 // other is floating point, or their sizes are different, flag it as an
5175 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005176 if (OpInfo.hasMatchingInput()) {
5177 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5178 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005179 if ((OpInfo.ConstraintVT.isInteger() !=
5180 Input.ConstraintVT.isInteger()) ||
5181 (OpInfo.ConstraintVT.getSizeInBits() !=
5182 Input.ConstraintVT.getSizeInBits())) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005183 llvm_report_error("Unsupported asm: input constraint"
Torok Edwin7d696d82009-07-11 13:10:19 +00005184 " with a matching output constraint of incompatible"
5185 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005186 }
5187 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005188 }
5189 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005190
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005191 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005192 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005193
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005194 // If this is a memory input, and if the operand is not indirect, do what we
5195 // need to to provide an address for the memory input.
5196 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5197 !OpInfo.isIndirect) {
5198 assert(OpInfo.Type == InlineAsm::isInput &&
5199 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005200
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005201 // Memory operands really want the address of the value. If we don't have
5202 // an indirect input, put it in the constpool if we can, otherwise spill
5203 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005204
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005205 // If the operand is a float, integer, or vector constant, spill to a
5206 // constant pool entry to get its address.
5207 Value *OpVal = OpInfo.CallOperandVal;
5208 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5209 isa<ConstantVector>(OpVal)) {
5210 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5211 TLI.getPointerTy());
5212 } else {
5213 // Otherwise, create a stack slot and emit a store to it before the
5214 // asm.
5215 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005216 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005217 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5218 MachineFunction &MF = DAG.getMachineFunction();
5219 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5220 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005221 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005222 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005223 OpInfo.CallOperand = StackSlot;
5224 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005225
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005226 // There is no longer a Value* corresponding to this operand.
5227 OpInfo.CallOperandVal = 0;
5228 // It is now an indirect operand.
5229 OpInfo.isIndirect = true;
5230 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005231
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005232 // If this constraint is for a specific register, allocate it before
5233 // anything else.
5234 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005235 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005236 }
5237 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005238
5239
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005240 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005241 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005242 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5243 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005244
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005245 // C_Register operands have already been allocated, Other/Memory don't need
5246 // to be.
5247 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005248 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005249 }
5250
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005251 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5252 std::vector<SDValue> AsmNodeOperands;
5253 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5254 AsmNodeOperands.push_back(
Owen Anderson825b72b2009-08-11 20:47:22 +00005255 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005256
5257
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005258 // Loop over all of the inputs, copying the operand values into the
5259 // appropriate registers and processing the output regs.
5260 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005261
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005262 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5263 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005264
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005265 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5266 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5267
5268 switch (OpInfo.Type) {
5269 case InlineAsm::isOutput: {
5270 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5271 OpInfo.ConstraintType != TargetLowering::C_Register) {
5272 // Memory output, or 'other' output (e.g. 'X' constraint).
5273 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5274
5275 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005276 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5277 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005278 TLI.getPointerTy()));
5279 AsmNodeOperands.push_back(OpInfo.CallOperand);
5280 break;
5281 }
5282
5283 // Otherwise, this is a register or register class output.
5284
5285 // Copy the output from the appropriate register. Find a register that
5286 // we can use.
5287 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005288 llvm_report_error("Couldn't allocate output reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005289 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005290 }
5291
5292 // If this is an indirect operand, store through the pointer after the
5293 // asm.
5294 if (OpInfo.isIndirect) {
5295 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5296 OpInfo.CallOperandVal));
5297 } else {
5298 // This is the result value of the call.
5299 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5300 // Concatenate this output onto the outputs list.
5301 RetValRegs.append(OpInfo.AssignedRegs);
5302 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005303
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005304 // Add information to the INLINEASM node to know that this register is
5305 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005306 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5307 6 /* EARLYCLOBBER REGDEF */ :
5308 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005309 false,
5310 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005311 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005312 break;
5313 }
5314 case InlineAsm::isInput: {
5315 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005316
Chris Lattner6bdcda32008-10-17 16:47:46 +00005317 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005318 // If this is required to match an output register we have already set,
5319 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005320 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005321
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005322 // Scan until we find the definition we already emitted of this operand.
5323 // When we find it, create a RegsForValue operand.
5324 unsigned CurOp = 2; // The first operand.
5325 for (; OperandNo; --OperandNo) {
5326 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005327 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005328 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005329 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5330 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5331 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005332 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005333 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005334 }
5335
Evan Cheng697cbbf2009-03-20 18:03:34 +00005336 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005337 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005338 if ((OpFlag & 7) == 2 /*REGDEF*/
5339 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5340 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005341 if (OpInfo.isIndirect) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005342 llvm_report_error("Don't know how to handle tied indirect "
Torok Edwin7d696d82009-07-11 13:10:19 +00005343 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005344 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005345 RegsForValue MatchedRegs;
5346 MatchedRegs.TLI = &TLI;
5347 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Owen Andersone50ed302009-08-10 22:56:29 +00005348 EVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
Evan Chengfb112882009-03-23 08:01:15 +00005349 MatchedRegs.RegVTs.push_back(RegVT);
5350 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005351 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005352 i != e; ++i)
5353 MatchedRegs.Regs.
5354 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005355
5356 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005357 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5358 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005359 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5360 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005361 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005362 break;
5363 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005364 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5365 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5366 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005367 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005368 // See InlineAsm.h isUseOperandTiedToDef.
5369 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005370 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005371 TLI.getPointerTy()));
5372 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5373 break;
5374 }
5375 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005376
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005377 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005378 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005379 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005380
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005381 std::vector<SDValue> Ops;
5382 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005383 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005384 if (Ops.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005385 llvm_report_error("Invalid operand for inline asm"
Torok Edwin7d696d82009-07-11 13:10:19 +00005386 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005387 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005388
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005389 // Add information to the INLINEASM node to know about this input.
5390 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005391 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005392 TLI.getPointerTy()));
5393 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5394 break;
5395 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5396 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5397 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5398 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005399
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005400 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005401 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5402 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005403 TLI.getPointerTy()));
5404 AsmNodeOperands.push_back(InOperandVal);
5405 break;
5406 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005407
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005408 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5409 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5410 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005411 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005412 "Don't know how to handle indirect register inputs yet!");
5413
5414 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005415 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005416 llvm_report_error("Couldn't allocate input reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005417 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005418 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005419
Dale Johannesen66978ee2009-01-31 02:22:37 +00005420 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5421 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005422
Evan Cheng697cbbf2009-03-20 18:03:34 +00005423 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005424 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005425 break;
5426 }
5427 case InlineAsm::isClobber: {
5428 // Add the clobbered value to the operand list, so that the register
5429 // allocator is aware that the physreg got clobbered.
5430 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005431 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005432 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005433 break;
5434 }
5435 }
5436 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005437
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005438 // Finish up input operands.
5439 AsmNodeOperands[0] = Chain;
5440 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005441
Dale Johannesen66978ee2009-01-31 02:22:37 +00005442 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005443 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005444 &AsmNodeOperands[0], AsmNodeOperands.size());
5445 Flag = Chain.getValue(1);
5446
5447 // If this asm returns a register value, copy the result from that register
5448 // and set it as the value of the call.
5449 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005450 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005451 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005452
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005453 // FIXME: Why don't we do this for inline asms with MRVs?
5454 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
Owen Andersone50ed302009-08-10 22:56:29 +00005455 EVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005456
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005457 // If any of the results of the inline asm is a vector, it may have the
5458 // wrong width/num elts. This can happen for register classes that can
5459 // contain multiple different value types. The preg or vreg allocated may
5460 // not have the same VT as was expected. Convert it to the right type
5461 // with bit_convert.
5462 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005463 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005464 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005465
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005466 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005467 ResultType.isInteger() && Val.getValueType().isInteger()) {
5468 // If a result value was tied to an input value, the computed result may
5469 // have a wider width than the expected result. Extract the relevant
5470 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005471 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005472 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005473
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005474 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005475 }
Dan Gohman95915732008-10-18 01:03:45 +00005476
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005477 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005478 // Don't need to use this as a chain in this case.
5479 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5480 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005481 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005482
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005483 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005484
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005485 // Process indirect outputs, first output all of the flagged copies out of
5486 // physregs.
5487 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5488 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5489 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005490 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5491 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005492 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005493
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005494 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005495
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005496 // Emit the non-flagged stores from the physregs.
5497 SmallVector<SDValue, 8> OutChains;
5498 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005499 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005500 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005501 getValue(StoresToEmit[i].second),
5502 StoresToEmit[i].second, 0));
5503 if (!OutChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00005504 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005505 &OutChains[0], OutChains.size());
5506 DAG.setRoot(Chain);
5507}
5508
5509
5510void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5511 SDValue Src = getValue(I.getOperand(0));
5512
Chris Lattner0b18e592009-03-17 19:36:00 +00005513 // Scale up by the type size in the original i32 type width. Various
5514 // mid-level optimizers may make assumptions about demanded bits etc from the
5515 // i32-ness of the optimizer: we do not want to promote to i64 and then
5516 // multiply on 64-bit targets.
5517 // FIXME: Malloc inst should go away: PR715.
Duncan Sands777d2302009-05-09 07:06:46 +00005518 uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType());
Chris Lattner50340f62009-07-23 21:26:18 +00005519 if (ElementSize != 1) {
5520 // Src is always 32-bits, make sure the constant fits.
Owen Anderson825b72b2009-08-11 20:47:22 +00005521 assert(Src.getValueType() == MVT::i32);
Chris Lattner50340f62009-07-23 21:26:18 +00005522 ElementSize = (uint32_t)ElementSize;
Chris Lattner0b18e592009-03-17 19:36:00 +00005523 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5524 Src, DAG.getConstant(ElementSize, Src.getValueType()));
Chris Lattner50340f62009-07-23 21:26:18 +00005525 }
Chris Lattner0b18e592009-03-17 19:36:00 +00005526
Owen Andersone50ed302009-08-10 22:56:29 +00005527 EVT IntPtr = TLI.getPointerTy();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005528
5529 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005530 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005531 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005532 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005533
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005534 TargetLowering::ArgListTy Args;
5535 TargetLowering::ArgListEntry Entry;
5536 Entry.Node = Src;
5537 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5538 Args.push_back(Entry);
5539
Dan Gohman98ca4f22009-08-05 01:29:28 +00005540 bool isTailCall = PerformTailCallOpt &&
5541 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005542 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005543 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005544 0, CallingConv::C, isTailCall,
5545 /*isReturnValueUsed=*/true,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005546 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005547 Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005548 if (Result.first.getNode())
5549 setValue(&I, Result.first); // Pointers always fit in registers
5550 if (Result.second.getNode())
5551 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005552}
5553
5554void SelectionDAGLowering::visitFree(FreeInst &I) {
5555 TargetLowering::ArgListTy Args;
5556 TargetLowering::ArgListEntry Entry;
5557 Entry.Node = getValue(I.getOperand(0));
5558 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5559 Args.push_back(Entry);
Owen Andersone50ed302009-08-10 22:56:29 +00005560 EVT IntPtr = TLI.getPointerTy();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005561 bool isTailCall = PerformTailCallOpt &&
5562 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005563 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005564 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005565 0, CallingConv::C, isTailCall,
5566 /*isReturnValueUsed=*/true,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005567 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005568 getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005569 if (Result.second.getNode())
5570 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005571}
5572
5573void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005574 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005575 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005576 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005577 DAG.getSrcValue(I.getOperand(1))));
5578}
5579
5580void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005581 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5582 getRoot(), getValue(I.getOperand(0)),
5583 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005584 setValue(&I, V);
5585 DAG.setRoot(V.getValue(1));
5586}
5587
5588void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005589 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005590 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005591 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005592 DAG.getSrcValue(I.getOperand(1))));
5593}
5594
5595void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005596 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005597 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005598 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005599 getValue(I.getOperand(2)),
5600 DAG.getSrcValue(I.getOperand(1)),
5601 DAG.getSrcValue(I.getOperand(2))));
5602}
5603
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005604/// TargetLowering::LowerCallTo - This is the default LowerCallTo
Dan Gohman98ca4f22009-08-05 01:29:28 +00005605/// implementation, which just calls LowerCall.
5606/// FIXME: When all targets are
5607/// migrated to using LowerCall, this hook should be integrated into SDISel.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005608std::pair<SDValue, SDValue>
5609TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5610 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005611 bool isInreg, unsigned NumFixedArgs,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005612 unsigned CallConv, bool isTailCall,
5613 bool isReturnValueUsed,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005614 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005615 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00005616
Dan Gohman1937e2f2008-09-16 01:42:28 +00005617 assert((!isTailCall || PerformTailCallOpt) &&
5618 "isTailCall set when tail-call optimizations are disabled!");
5619
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005620 // Handle all of the outgoing arguments.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005621 SmallVector<ISD::OutputArg, 32> Outs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005622 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00005623 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005624 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5625 for (unsigned Value = 0, NumValues = ValueVTs.size();
5626 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005627 EVT VT = ValueVTs[Value];
5628 const Type *ArgTy = VT.getTypeForEVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005629 SDValue Op = SDValue(Args[i].Node.getNode(),
5630 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005631 ISD::ArgFlagsTy Flags;
5632 unsigned OriginalAlignment =
5633 getTargetData()->getABITypeAlignment(ArgTy);
5634
5635 if (Args[i].isZExt)
5636 Flags.setZExt();
5637 if (Args[i].isSExt)
5638 Flags.setSExt();
5639 if (Args[i].isInReg)
5640 Flags.setInReg();
5641 if (Args[i].isSRet)
5642 Flags.setSRet();
5643 if (Args[i].isByVal) {
5644 Flags.setByVal();
5645 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5646 const Type *ElementTy = Ty->getElementType();
5647 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005648 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005649 // For ByVal, alignment should come from FE. BE will guess if this
5650 // info is not there but there are cases it cannot get right.
5651 if (Args[i].Alignment)
5652 FrameAlign = Args[i].Alignment;
5653 Flags.setByValAlign(FrameAlign);
5654 Flags.setByValSize(FrameSize);
5655 }
5656 if (Args[i].isNest)
5657 Flags.setNest();
5658 Flags.setOrigAlign(OriginalAlignment);
5659
Owen Andersone50ed302009-08-10 22:56:29 +00005660 EVT PartVT = getRegisterType(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005661 unsigned NumParts = getNumRegisters(VT);
5662 SmallVector<SDValue, 4> Parts(NumParts);
5663 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5664
5665 if (Args[i].isSExt)
5666 ExtendKind = ISD::SIGN_EXTEND;
5667 else if (Args[i].isZExt)
5668 ExtendKind = ISD::ZERO_EXTEND;
5669
Dale Johannesen66978ee2009-01-31 02:22:37 +00005670 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005671
Dan Gohman98ca4f22009-08-05 01:29:28 +00005672 for (unsigned j = 0; j != NumParts; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005673 // if it isn't first piece, alignment must be 1
Dan Gohman98ca4f22009-08-05 01:29:28 +00005674 ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs);
5675 if (NumParts > 1 && j == 0)
5676 MyFlags.Flags.setSplit();
5677 else if (j != 0)
5678 MyFlags.Flags.setOrigAlign(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005679
Dan Gohman98ca4f22009-08-05 01:29:28 +00005680 Outs.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005681 }
5682 }
5683 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005684
Dan Gohman98ca4f22009-08-05 01:29:28 +00005685 // Handle the incoming return values from the call.
5686 SmallVector<ISD::InputArg, 32> Ins;
Owen Andersone50ed302009-08-10 22:56:29 +00005687 SmallVector<EVT, 4> RetTys;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005688 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005689 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005690 EVT VT = RetTys[I];
5691 EVT RegisterVT = getRegisterType(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005692 unsigned NumRegs = getNumRegisters(VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005693 for (unsigned i = 0; i != NumRegs; ++i) {
5694 ISD::InputArg MyFlags;
5695 MyFlags.VT = RegisterVT;
5696 MyFlags.Used = isReturnValueUsed;
5697 if (RetSExt)
5698 MyFlags.Flags.setSExt();
5699 if (RetZExt)
5700 MyFlags.Flags.setZExt();
5701 if (isInreg)
5702 MyFlags.Flags.setInReg();
5703 Ins.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005704 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005705 }
5706
Dan Gohman98ca4f22009-08-05 01:29:28 +00005707 // Check if target-dependent constraints permit a tail call here.
5708 // Target-independent constraints should be checked by the caller.
5709 if (isTailCall &&
5710 !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG))
5711 isTailCall = false;
5712
5713 SmallVector<SDValue, 4> InVals;
5714 Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall,
5715 Outs, Ins, dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005716
5717 // Verify that the target's LowerCall behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005718 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005719 "LowerCall didn't return a valid chain!");
5720 assert((!isTailCall || InVals.empty()) &&
5721 "LowerCall emitted a return value for a tail call!");
5722 assert((isTailCall || InVals.size() == Ins.size()) &&
5723 "LowerCall didn't emit the correct number of values!");
5724 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5725 assert(InVals[i].getNode() &&
5726 "LowerCall emitted a null value!");
5727 assert(Ins[i].VT == InVals[i].getValueType() &&
5728 "LowerCall emitted a value with the wrong type!");
5729 });
Dan Gohman98ca4f22009-08-05 01:29:28 +00005730
5731 // For a tail call, the return value is merely live-out and there aren't
5732 // any nodes in the DAG representing it. Return a special value to
5733 // indicate that a tail call has been emitted and no more Instructions
5734 // should be processed in the current block.
5735 if (isTailCall) {
5736 DAG.setRoot(Chain);
5737 return std::make_pair(SDValue(), SDValue());
5738 }
5739
5740 // Collect the legal value parts into potentially illegal values
5741 // that correspond to the original function's return values.
5742 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5743 if (RetSExt)
5744 AssertOp = ISD::AssertSext;
5745 else if (RetZExt)
5746 AssertOp = ISD::AssertZext;
5747 SmallVector<SDValue, 4> ReturnValues;
5748 unsigned CurReg = 0;
5749 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005750 EVT VT = RetTys[I];
5751 EVT RegisterVT = getRegisterType(VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005752 unsigned NumRegs = getNumRegisters(VT);
5753
5754 SDValue ReturnValue =
5755 getCopyFromParts(DAG, dl, &InVals[CurReg], NumRegs, RegisterVT, VT,
5756 AssertOp);
5757 ReturnValues.push_back(ReturnValue);
5758 CurReg += NumRegs;
5759 }
5760
5761 // For a function returning void, there is no return value. We can't create
5762 // such a node, so we just return a null return value in that case. In
5763 // that case, nothing will actualy look at the value.
5764 if (ReturnValues.empty())
5765 return std::make_pair(SDValue(), Chain);
5766
5767 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
5768 DAG.getVTList(&RetTys[0], RetTys.size()),
5769 &ReturnValues[0], ReturnValues.size());
5770
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005771 return std::make_pair(Res, Chain);
5772}
5773
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005774void TargetLowering::LowerOperationWrapper(SDNode *N,
5775 SmallVectorImpl<SDValue> &Results,
5776 SelectionDAG &DAG) {
5777 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005778 if (Res.getNode())
5779 Results.push_back(Res);
5780}
5781
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005782SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005783 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005784 return SDValue();
5785}
5786
5787
5788void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5789 SDValue Op = getValue(V);
5790 assert((Op.getOpcode() != ISD::CopyFromReg ||
5791 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5792 "Copy from a reg to the same reg!");
5793 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5794
5795 RegsForValue RFV(TLI, Reg, V->getType());
5796 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005797 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005798 PendingExports.push_back(Chain);
5799}
5800
5801#include "llvm/CodeGen/SelectionDAGISel.h"
5802
5803void SelectionDAGISel::
5804LowerArguments(BasicBlock *LLVMBB) {
5805 // If this is the entry block, emit arguments.
5806 Function &F = *LLVMBB->getParent();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005807 SelectionDAG &DAG = SDL->DAG;
5808 SDValue OldRoot = DAG.getRoot();
5809 DebugLoc dl = SDL->getCurDebugLoc();
5810 const TargetData *TD = TLI.getTargetData();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005811
Dan Gohman98ca4f22009-08-05 01:29:28 +00005812 // Set up the incoming argument description vector.
5813 SmallVector<ISD::InputArg, 16> Ins;
5814 unsigned Idx = 1;
5815 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5816 I != E; ++I, ++Idx) {
Owen Andersone50ed302009-08-10 22:56:29 +00005817 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005818 ComputeValueVTs(TLI, I->getType(), ValueVTs);
5819 bool isArgValueUsed = !I->use_empty();
5820 for (unsigned Value = 0, NumValues = ValueVTs.size();
5821 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005822 EVT VT = ValueVTs[Value];
5823 const Type *ArgTy = VT.getTypeForEVT();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005824 ISD::ArgFlagsTy Flags;
5825 unsigned OriginalAlignment =
5826 TD->getABITypeAlignment(ArgTy);
5827
5828 if (F.paramHasAttr(Idx, Attribute::ZExt))
5829 Flags.setZExt();
5830 if (F.paramHasAttr(Idx, Attribute::SExt))
5831 Flags.setSExt();
5832 if (F.paramHasAttr(Idx, Attribute::InReg))
5833 Flags.setInReg();
5834 if (F.paramHasAttr(Idx, Attribute::StructRet))
5835 Flags.setSRet();
5836 if (F.paramHasAttr(Idx, Attribute::ByVal)) {
5837 Flags.setByVal();
5838 const PointerType *Ty = cast<PointerType>(I->getType());
5839 const Type *ElementTy = Ty->getElementType();
5840 unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy);
5841 unsigned FrameSize = TD->getTypeAllocSize(ElementTy);
5842 // For ByVal, alignment should be passed from FE. BE will guess if
5843 // this info is not there but there are cases it cannot get right.
5844 if (F.getParamAlignment(Idx))
5845 FrameAlign = F.getParamAlignment(Idx);
5846 Flags.setByValAlign(FrameAlign);
5847 Flags.setByValSize(FrameSize);
5848 }
5849 if (F.paramHasAttr(Idx, Attribute::Nest))
5850 Flags.setNest();
5851 Flags.setOrigAlign(OriginalAlignment);
5852
Owen Andersone50ed302009-08-10 22:56:29 +00005853 EVT RegisterVT = TLI.getRegisterType(VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005854 unsigned NumRegs = TLI.getNumRegisters(VT);
5855 for (unsigned i = 0; i != NumRegs; ++i) {
5856 ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed);
5857 if (NumRegs > 1 && i == 0)
5858 MyFlags.Flags.setSplit();
5859 // if it isn't first piece, alignment must be 1
5860 else if (i > 0)
5861 MyFlags.Flags.setOrigAlign(1);
5862 Ins.push_back(MyFlags);
5863 }
5864 }
5865 }
5866
5867 // Call the target to set up the argument values.
5868 SmallVector<SDValue, 8> InVals;
5869 SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(),
5870 F.isVarArg(), Ins,
5871 dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005872
5873 // Verify that the target's LowerFormalArguments behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005874 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005875 "LowerFormalArguments didn't return a valid chain!");
5876 assert(InVals.size() == Ins.size() &&
5877 "LowerFormalArguments didn't emit the correct number of values!");
5878 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5879 assert(InVals[i].getNode() &&
5880 "LowerFormalArguments emitted a null value!");
5881 assert(Ins[i].VT == InVals[i].getValueType() &&
5882 "LowerFormalArguments emitted a value with the wrong type!");
5883 });
5884
5885 // Update the DAG with the new chain value resulting from argument lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005886 DAG.setRoot(NewRoot);
5887
5888 // Set up the argument values.
5889 unsigned i = 0;
5890 Idx = 1;
5891 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
5892 ++I, ++Idx) {
5893 SmallVector<SDValue, 4> ArgValues;
Owen Andersone50ed302009-08-10 22:56:29 +00005894 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005895 ComputeValueVTs(TLI, I->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005896 unsigned NumValues = ValueVTs.size();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005897 for (unsigned Value = 0; Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005898 EVT VT = ValueVTs[Value];
5899 EVT PartVT = TLI.getRegisterType(VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005900 unsigned NumParts = TLI.getNumRegisters(VT);
5901
5902 if (!I->use_empty()) {
5903 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5904 if (F.paramHasAttr(Idx, Attribute::SExt))
5905 AssertOp = ISD::AssertSext;
5906 else if (F.paramHasAttr(Idx, Attribute::ZExt))
5907 AssertOp = ISD::AssertZext;
5908
5909 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts,
5910 PartVT, VT, AssertOp));
5911 }
5912 i += NumParts;
5913 }
5914 if (!I->use_empty()) {
5915 SDL->setValue(I, DAG.getMergeValues(&ArgValues[0], NumValues,
5916 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005917 // If this argument is live outside of the entry block, insert a copy from
5918 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005919 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005920 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005921 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00005922 assert(i == InVals.size() && "Argument register count mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005923
5924 // Finally, if the target has anything special to do, allow it to do so.
5925 // FIXME: this should insert code into the DAG!
5926 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5927}
5928
5929/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5930/// ensure constants are generated when needed. Remember the virtual registers
5931/// that need to be added to the Machine PHI nodes as input. We cannot just
5932/// directly add them, because expansion might result in multiple MBB's for one
5933/// BB. As such, the start of the BB might correspond to a different MBB than
5934/// the end.
5935///
5936void
5937SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5938 TerminatorInst *TI = LLVMBB->getTerminator();
5939
5940 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5941
5942 // Check successor nodes' PHI nodes that expect a constant to be available
5943 // from this block.
5944 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5945 BasicBlock *SuccBB = TI->getSuccessor(succ);
5946 if (!isa<PHINode>(SuccBB->begin())) continue;
5947 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005948
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005949 // If this terminator has multiple identical successors (common for
5950 // switches), only handle each succ once.
5951 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005952
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005953 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5954 PHINode *PN;
5955
5956 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5957 // nodes and Machine PHI nodes, but the incoming operands have not been
5958 // emitted yet.
5959 for (BasicBlock::iterator I = SuccBB->begin();
5960 (PN = dyn_cast<PHINode>(I)); ++I) {
5961 // Ignore dead phi's.
5962 if (PN->use_empty()) continue;
5963
5964 unsigned Reg;
5965 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5966
5967 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5968 unsigned &RegOut = SDL->ConstantsOut[C];
5969 if (RegOut == 0) {
5970 RegOut = FuncInfo->CreateRegForValue(C);
5971 SDL->CopyValueToVirtualRegister(C, RegOut);
5972 }
5973 Reg = RegOut;
5974 } else {
5975 Reg = FuncInfo->ValueMap[PHIOp];
5976 if (Reg == 0) {
5977 assert(isa<AllocaInst>(PHIOp) &&
5978 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5979 "Didn't codegen value into a register!??");
5980 Reg = FuncInfo->CreateRegForValue(PHIOp);
5981 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5982 }
5983 }
5984
5985 // Remember that this register needs to added to the machine PHI node as
5986 // the input for this MBB.
Owen Andersone50ed302009-08-10 22:56:29 +00005987 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005988 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5989 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
Owen Andersone50ed302009-08-10 22:56:29 +00005990 EVT VT = ValueVTs[vti];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005991 unsigned NumRegisters = TLI.getNumRegisters(VT);
5992 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5993 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5994 Reg += NumRegisters;
5995 }
5996 }
5997 }
5998 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005999}
6000
Dan Gohman3df24e62008-09-03 23:12:08 +00006001/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
6002/// supports legal types, and it emits MachineInstrs directly instead of
6003/// creating SelectionDAG nodes.
6004///
6005bool
6006SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
6007 FastISel *F) {
6008 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006009
Dan Gohman3df24e62008-09-03 23:12:08 +00006010 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
6011 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
6012
6013 // Check successor nodes' PHI nodes that expect a constant to be available
6014 // from this block.
6015 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
6016 BasicBlock *SuccBB = TI->getSuccessor(succ);
6017 if (!isa<PHINode>(SuccBB->begin())) continue;
6018 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006019
Dan Gohman3df24e62008-09-03 23:12:08 +00006020 // If this terminator has multiple identical successors (common for
6021 // switches), only handle each succ once.
6022 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006023
Dan Gohman3df24e62008-09-03 23:12:08 +00006024 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
6025 PHINode *PN;
6026
6027 // At this point we know that there is a 1-1 correspondence between LLVM PHI
6028 // nodes and Machine PHI nodes, but the incoming operands have not been
6029 // emitted yet.
6030 for (BasicBlock::iterator I = SuccBB->begin();
6031 (PN = dyn_cast<PHINode>(I)); ++I) {
6032 // Ignore dead phi's.
6033 if (PN->use_empty()) continue;
6034
6035 // Only handle legal types. Two interesting things to note here. First,
6036 // by bailing out early, we may leave behind some dead instructions,
6037 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
6038 // own moves. Second, this check is necessary becuase FastISel doesn't
6039 // use CreateRegForValue to create registers, so it always creates
6040 // exactly one register for each non-void instruction.
Owen Andersone50ed302009-08-10 22:56:29 +00006041 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00006042 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
6043 // Promote MVT::i1.
6044 if (VT == MVT::i1)
Dan Gohman74321ab2008-09-10 21:01:31 +00006045 VT = TLI.getTypeToTransformTo(VT);
6046 else {
6047 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6048 return false;
6049 }
Dan Gohman3df24e62008-09-03 23:12:08 +00006050 }
6051
6052 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6053
6054 unsigned Reg = F->getRegForValue(PHIOp);
6055 if (Reg == 0) {
6056 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6057 return false;
6058 }
6059 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
6060 }
6061 }
6062
6063 return true;
6064}