blob: b0a6a6e17fb081cfd4a045e84b96771050eb414b [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.
Owen Anderson1d0be152009-08-13 21:58:54 +0000140 if (Ty == Type::getVoidTy(Ty->getContext()))
Dan Gohman5e5558b2009-04-23 22:50:03 +0000141 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) {}
Owen Anderson23b9b192009-08-12 00:36:31 +0000196 RegsForValue(LLVMContext &Context, const TargetLowering &tli,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000197 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];
Owen Anderson23b9b192009-08-12 00:36:31 +0000202 unsigned NumRegs = TLI->getNumRegisters(Context, ValueVT);
203 EVT RegisterVT = TLI->getRegisterType(Context, 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];
Owen Anderson23b9b192009-08-12 00:36:31 +0000361 unsigned NumRegisters = TLI.getNumRegisters(*DAG.getContext(), 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];
Owen Anderson23b9b192009-08-12 00:36:31 +0000389 EVT RegisterVT = TLI.getRegisterType(V->getContext(), ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000390
Owen Anderson23b9b192009-08-12 00:36:31 +0000391 unsigned NumRegs = TLI.getNumRegisters(V->getContext(), ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000392 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 ?
Owen Anderson23b9b192009-08-12 00:36:31 +0000424 ValueVT : EVT::getIntegerVT(*DAG.getContext(), RoundBits);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000425 SDValue Lo, Hi;
426
Owen Anderson23b9b192009-08-12 00:36:31 +0000427 EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), 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 Anderson23b9b192009-08-12 00:36:31 +0000444 EVT OddVT = EVT::getIntegerVT(*DAG.getContext(), 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 Anderson23b9b192009-08-12 00:36:31 +0000452 EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), 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 =
Owen Anderson23b9b192009-08-12 00:36:31 +0000465 TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT,
466 NumIntermediates, RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000467 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 Anderson23b9b192009-08-12 00:36:31 +0000511 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), 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 Anderson23b9b192009-08-12 00:36:31 +0000593 ValueVT = EVT::getIntegerVT(*DAG.getContext(), 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 Anderson23b9b192009-08-12 00:36:31 +0000605 ValueVT = EVT::getIntegerVT(*DAG.getContext(), 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 Anderson23b9b192009-08-12 00:36:31 +0000639 ValueVT = EVT::getIntegerVT(*DAG.getContext(), 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 Anderson23b9b192009-08-12 00:36:31 +0000646 EVT::getIntegerVT(*DAG.getContext(), 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 Anderson23b9b192009-08-12 00:36:31 +0000651 EVT ThisVT = EVT::getIntegerVT(*DAG.getContext(), 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;
Owen Anderson23b9b192009-08-12 00:36:31 +0000699 unsigned NumRegs = TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT,
700 IntermediateVT, NumIntermediates, RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000701 unsigned NumElements = ValueVT.getVectorNumElements();
702
703 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
704 NumParts = NumRegs; // Silence a compiler warning.
705 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
706
707 // Split the vector into intermediate operands.
708 SmallVector<SDValue, 8> Ops(NumIntermediates);
709 for (unsigned i = 0; i != NumIntermediates; ++i)
710 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000711 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000712 IntermediateVT, Val,
713 DAG.getConstant(i * (NumElements / NumIntermediates),
714 PtrVT));
715 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000716 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000717 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000718 DAG.getConstant(i, PtrVT));
719
720 // Split the intermediate operands into legal parts.
721 if (NumParts == NumIntermediates) {
722 // If the register was not expanded, promote or copy the value,
723 // as appropriate.
724 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000725 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000726 } else if (NumParts > 0) {
727 // If the intermediate type was expanded, split each the value into
728 // legal parts.
729 assert(NumParts % NumIntermediates == 0 &&
730 "Must expand into a divisible number of parts!");
731 unsigned Factor = NumParts / NumIntermediates;
732 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000733 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000734 }
735}
736
737
738void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
739 AA = &aa;
740 GFI = gfi;
741 TD = DAG.getTarget().getTargetData();
742}
743
744/// clear - Clear out the curret SelectionDAG and the associated
745/// state and prepare this SelectionDAGLowering object to be used
746/// for a new block. This doesn't clear out information about
747/// additional blocks that are needed to complete switch lowering
748/// or PHI node updating; that information is cleared out as it is
749/// consumed.
750void SelectionDAGLowering::clear() {
751 NodeMap.clear();
752 PendingLoads.clear();
753 PendingExports.clear();
754 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000755 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000756 HasTailCall = false;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000757}
758
759/// getRoot - Return the current virtual root of the Selection DAG,
760/// flushing any PendingLoad items. This must be done before emitting
761/// a store or any other node that may need to be ordered after any
762/// prior load instructions.
763///
764SDValue SelectionDAGLowering::getRoot() {
765 if (PendingLoads.empty())
766 return DAG.getRoot();
767
768 if (PendingLoads.size() == 1) {
769 SDValue Root = PendingLoads[0];
770 DAG.setRoot(Root);
771 PendingLoads.clear();
772 return Root;
773 }
774
775 // Otherwise, we have to make a token factor node.
Owen Anderson825b72b2009-08-11 20:47:22 +0000776 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000777 &PendingLoads[0], PendingLoads.size());
778 PendingLoads.clear();
779 DAG.setRoot(Root);
780 return Root;
781}
782
783/// getControlRoot - Similar to getRoot, but instead of flushing all the
784/// PendingLoad items, flush all the PendingExports items. It is necessary
785/// to do this before emitting a terminator instruction.
786///
787SDValue SelectionDAGLowering::getControlRoot() {
788 SDValue Root = DAG.getRoot();
789
790 if (PendingExports.empty())
791 return Root;
792
793 // Turn all of the CopyToReg chains into one factored node.
794 if (Root.getOpcode() != ISD::EntryToken) {
795 unsigned i = 0, e = PendingExports.size();
796 for (; i != e; ++i) {
797 assert(PendingExports[i].getNode()->getNumOperands() > 1);
798 if (PendingExports[i].getNode()->getOperand(0) == Root)
799 break; // Don't add the root if we already indirectly depend on it.
800 }
801
802 if (i == e)
803 PendingExports.push_back(Root);
804 }
805
Owen Anderson825b72b2009-08-11 20:47:22 +0000806 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000807 &PendingExports[0],
808 PendingExports.size());
809 PendingExports.clear();
810 DAG.setRoot(Root);
811 return Root;
812}
813
814void SelectionDAGLowering::visit(Instruction &I) {
815 visit(I.getOpcode(), I);
816}
817
818void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
819 // Note: this doesn't use InstVisitor, because it has to work with
820 // ConstantExpr's in addition to instructions.
821 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000822 default: llvm_unreachable("Unknown instruction type encountered!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000823 // Build the switch statement using the Instruction.def file.
824#define HANDLE_INST(NUM, OPCODE, CLASS) \
825 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
826#include "llvm/Instruction.def"
827 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000828}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000829
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000830SDValue SelectionDAGLowering::getValue(const Value *V) {
831 SDValue &N = NodeMap[V];
832 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000833
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000834 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Owen Andersone50ed302009-08-10 22:56:29 +0000835 EVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000836
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000837 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000838 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000839
840 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
841 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000842
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000843 if (isa<ConstantPointerNull>(C))
844 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000845
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000846 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000847 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000848
Nate Begeman9008ca62009-04-27 18:41:29 +0000849 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000850 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000851
852 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
853 visit(CE->getOpcode(), *CE);
854 SDValue N1 = NodeMap[V];
855 assert(N1.getNode() && "visit didn't populate the ValueMap!");
856 return N1;
857 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000858
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000859 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
860 SmallVector<SDValue, 4> Constants;
861 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
862 OI != OE; ++OI) {
863 SDNode *Val = getValue(*OI).getNode();
864 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
865 Constants.push_back(SDValue(Val, i));
866 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000867 return DAG.getMergeValues(&Constants[0], Constants.size(),
868 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000869 }
870
871 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
872 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
873 "Unknown struct or array constant!");
874
Owen Andersone50ed302009-08-10 22:56:29 +0000875 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000876 ComputeValueVTs(TLI, C->getType(), ValueVTs);
877 unsigned NumElts = ValueVTs.size();
878 if (NumElts == 0)
879 return SDValue(); // empty struct
880 SmallVector<SDValue, 4> Constants(NumElts);
881 for (unsigned i = 0; i != NumElts; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000882 EVT EltVT = ValueVTs[i];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000883 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000884 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000885 else if (EltVT.isFloatingPoint())
886 Constants[i] = DAG.getConstantFP(0, EltVT);
887 else
888 Constants[i] = DAG.getConstant(0, EltVT);
889 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000890 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000891 }
892
893 const VectorType *VecTy = cast<VectorType>(V->getType());
894 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000895
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000896 // Now that we know the number and type of the elements, get that number of
897 // elements into the Ops array based on what kind of constant it is.
898 SmallVector<SDValue, 16> Ops;
899 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
900 for (unsigned i = 0; i != NumElements; ++i)
901 Ops.push_back(getValue(CP->getOperand(i)));
902 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000903 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Owen Andersone50ed302009-08-10 22:56:29 +0000904 EVT EltVT = TLI.getValueType(VecTy->getElementType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000905
906 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000907 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000908 Op = DAG.getConstantFP(0, EltVT);
909 else
910 Op = DAG.getConstant(0, EltVT);
911 Ops.assign(NumElements, Op);
912 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000913
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000914 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000915 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
916 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000917 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000918
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000919 // If this is a static alloca, generate it as the frameindex instead of
920 // computation.
921 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
922 DenseMap<const AllocaInst*, int>::iterator SI =
923 FuncInfo.StaticAllocaMap.find(AI);
924 if (SI != FuncInfo.StaticAllocaMap.end())
925 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
926 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000927
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000928 unsigned InReg = FuncInfo.ValueMap[V];
929 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000930
Owen Anderson23b9b192009-08-12 00:36:31 +0000931 RegsForValue RFV(*DAG.getContext(), TLI, InReg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000932 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000933 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000934}
935
936
937void SelectionDAGLowering::visitRet(ReturnInst &I) {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000938 SDValue Chain = getControlRoot();
939 SmallVector<ISD::OutputArg, 8> Outs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000940 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000941 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000942 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000943 unsigned NumValues = ValueVTs.size();
944 if (NumValues == 0) continue;
945
946 SDValue RetOp = getValue(I.getOperand(i));
947 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Owen Andersone50ed302009-08-10 22:56:29 +0000948 EVT VT = ValueVTs[j];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000949
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000950 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000951
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000952 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000953 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000954 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000955 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000956 ExtendKind = ISD::ZERO_EXTEND;
957
Evan Cheng3927f432009-03-25 20:20:11 +0000958 // FIXME: C calling convention requires the return type to be promoted to
959 // at least 32-bit. But this is not necessary for non-C calling
960 // conventions. The frontend should mark functions whose return values
961 // require promoting with signext or zeroext attributes.
962 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000963 EVT MinVT = TLI.getRegisterType(*DAG.getContext(), MVT::i32);
Evan Cheng3927f432009-03-25 20:20:11 +0000964 if (VT.bitsLT(MinVT))
965 VT = MinVT;
966 }
967
Owen Anderson23b9b192009-08-12 00:36:31 +0000968 unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), VT);
969 EVT PartVT = TLI.getRegisterType(*DAG.getContext(), VT);
Evan Cheng3927f432009-03-25 20:20:11 +0000970 SmallVector<SDValue, 4> Parts(NumParts);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000971 getCopyToParts(DAG, getCurDebugLoc(),
972 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000973 &Parts[0], NumParts, PartVT, ExtendKind);
974
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000975 // 'inreg' on function refers to return value
976 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +0000977 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000978 Flags.setInReg();
Anton Korobeynikov0692fab2009-07-16 13:35:48 +0000979
980 // Propagate extension type if any
981 if (F->paramHasAttr(0, Attribute::SExt))
982 Flags.setSExt();
983 else if (F->paramHasAttr(0, Attribute::ZExt))
984 Flags.setZExt();
985
Dan Gohman98ca4f22009-08-05 01:29:28 +0000986 for (unsigned i = 0; i < NumParts; ++i)
987 Outs.push_back(ISD::OutputArg(Flags, Parts[i], /*isfixed=*/true));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000988 }
989 }
Dan Gohman98ca4f22009-08-05 01:29:28 +0000990
991 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000992 CallingConv::ID CallConv =
993 DAG.getMachineFunction().getFunction()->getCallingConv();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000994 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;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001243 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001244 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)
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001304 FuncInfo.MF->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;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001366 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001367 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;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001451 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001452 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;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001496 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001497 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;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001547 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001548 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.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001600 MachineFunction *CurMF = FuncInfo.MF;
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
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001606 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001607 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.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001714 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001715
1716 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001717 MachineFunction::iterator BBI = CR.CaseBB;
1718
Duncan Sandsc2d98bc2009-09-06 12:41:19 +00001719 if (++BBI != FuncInfo.MF->end()) {}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001720
1721 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1722
1723 // Create a new basic block to hold the code for loading the address
1724 // of the jump table, and jumping to it. Update successor information;
1725 // we will either branch to the default case for the switch, or the jump
1726 // table.
1727 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1728 CurMF->insert(BBI, JumpTableBB);
1729 CR.CaseBB->addSuccessor(Default);
1730 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001731
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001732 // Build a vector of destination BBs, corresponding to each target
1733 // of the jump table. If the value of the jump table slot corresponds to
1734 // a case statement, push the case's BB onto the vector, otherwise, push
1735 // the default BB.
1736 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001737 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001738 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001739 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1740 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1741
1742 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001743 DestBBs.push_back(I->BB);
1744 if (TEI==High)
1745 ++I;
1746 } else {
1747 DestBBs.push_back(Default);
1748 }
1749 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001750
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001751 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001752 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1753 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001754 E = DestBBs.end(); I != E; ++I) {
1755 if (!SuccsHandled[(*I)->getNumber()]) {
1756 SuccsHandled[(*I)->getNumber()] = true;
1757 JumpTableBB->addSuccessor(*I);
1758 }
1759 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001760
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001761 // Create a jump table index for this jump table, or return an existing
1762 // one.
1763 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001764
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001765 // Set the jump table information so that we can codegen it as a second
1766 // MachineBasicBlock
1767 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1768 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1769 if (CR.CaseBB == CurMBB)
1770 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001771
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001772 JTCases.push_back(JumpTableBlock(JTH, JT));
1773
1774 return true;
1775}
1776
1777/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1778/// 2 subtrees.
1779bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1780 CaseRecVector& WorkList,
1781 Value* SV,
1782 MachineBasicBlock* Default) {
1783 // Get the MachineFunction which holds the current MBB. This is used when
1784 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001785 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001786
1787 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001788 MachineFunction::iterator BBI = CR.CaseBB;
1789
Duncan Sandsc2d98bc2009-09-06 12:41:19 +00001790 if (++BBI != FuncInfo.MF->end()) {}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001791
1792 Case& FrontCase = *CR.Range.first;
1793 Case& BackCase = *(CR.Range.second-1);
1794 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1795
1796 // Size is the number of Cases represented by this range.
1797 unsigned Size = CR.Range.second - CR.Range.first;
1798
Anton Korobeynikov23218582008-12-23 22:25:27 +00001799 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1800 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001801 double FMetric = 0;
1802 CaseItr Pivot = CR.Range.first + Size/2;
1803
1804 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1805 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001806 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001807 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1808 I!=E; ++I)
1809 TSize += I->size();
1810
Anton Korobeynikov23218582008-12-23 22:25:27 +00001811 size_t LSize = FrontCase.size();
1812 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001813 DEBUG(errs() << "Selecting best pivot: \n"
1814 << "First: " << First << ", Last: " << Last <<'\n'
1815 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001816 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1817 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001818 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1819 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001820 APInt Range = ComputeRange(LEnd, RBegin);
1821 assert((Range - 2ULL).isNonNegative() &&
1822 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001823 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1824 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001825 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001826 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001827 DEBUG(errs() <<"=>Step\n"
1828 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1829 << "LDensity: " << LDensity
1830 << ", RDensity: " << RDensity << '\n'
1831 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001832 if (FMetric < Metric) {
1833 Pivot = J;
1834 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001835 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001836 }
1837
1838 LSize += J->size();
1839 RSize -= J->size();
1840 }
1841 if (areJTsAllowed(TLI)) {
1842 // If our case is dense we *really* should handle it earlier!
1843 assert((FMetric > 0) && "Should handle dense range earlier!");
1844 } else {
1845 Pivot = CR.Range.first + Size/2;
1846 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001847
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001848 CaseRange LHSR(CR.Range.first, Pivot);
1849 CaseRange RHSR(Pivot, CR.Range.second);
1850 Constant *C = Pivot->Low;
1851 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001852
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001853 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001854 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001856 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001857 // Pivot's Value, then we can branch directly to the LHS's Target,
1858 // rather than creating a leaf node for it.
1859 if ((LHSR.second - LHSR.first) == 1 &&
1860 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001861 cast<ConstantInt>(C)->getValue() ==
1862 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001863 TrueBB = LHSR.first->BB;
1864 } else {
1865 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1866 CurMF->insert(BBI, TrueBB);
1867 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001868
1869 // Put SV in a virtual register to make it available from the new blocks.
1870 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001871 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001872
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001873 // Similar to the optimization above, if the Value being switched on is
1874 // known to be less than the Constant CR.LT, and the current Case Value
1875 // is CR.LT - 1, then we can branch directly to the target block for
1876 // the current Case Value, rather than emitting a RHS leaf node for it.
1877 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001878 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1879 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001880 FalseBB = RHSR.first->BB;
1881 } else {
1882 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1883 CurMF->insert(BBI, FalseBB);
1884 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001885
1886 // Put SV in a virtual register to make it available from the new blocks.
1887 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001888 }
1889
1890 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001891 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001892 // Otherwise, branch to LHS.
1893 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1894
1895 if (CR.CaseBB == CurMBB)
1896 visitSwitchCase(CB);
1897 else
1898 SwitchCases.push_back(CB);
1899
1900 return true;
1901}
1902
1903/// handleBitTestsSwitchCase - if current case range has few destination and
1904/// range span less, than machine word bitwidth, encode case range into series
1905/// of masks and emit bit tests with these masks.
1906bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1907 CaseRecVector& WorkList,
1908 Value* SV,
1909 MachineBasicBlock* Default){
Owen Andersone50ed302009-08-10 22:56:29 +00001910 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00001911 unsigned IntPtrBits = PTy.getSizeInBits();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001912
1913 Case& FrontCase = *CR.Range.first;
1914 Case& BackCase = *(CR.Range.second-1);
1915
1916 // Get the MachineFunction which holds the current MBB. This is used when
1917 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001918 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001919
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001920 // If target does not have legal shift left, do not emit bit tests at all.
1921 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1922 return false;
1923
Anton Korobeynikov23218582008-12-23 22:25:27 +00001924 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001925 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1926 I!=E; ++I) {
1927 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001928 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001929 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001930
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001931 // Count unique destinations
1932 SmallSet<MachineBasicBlock*, 4> Dests;
1933 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1934 Dests.insert(I->BB);
1935 if (Dests.size() > 3)
1936 // Don't bother the code below, if there are too much unique destinations
1937 return false;
1938 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001939 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1940 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001941
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001942 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001943 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1944 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001945 APInt cmpRange = maxValue - minValue;
1946
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001947 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1948 << "Low bound: " << minValue << '\n'
1949 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001950
1951 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001952 (!(Dests.size() == 1 && numCmps >= 3) &&
1953 !(Dests.size() == 2 && numCmps >= 5) &&
1954 !(Dests.size() >= 3 && numCmps >= 6)))
1955 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001956
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001957 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001958 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1959
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001960 // Optimize the case where all the case values fit in a
1961 // word without having to subtract minValue. In this case,
1962 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001963 if (minValue.isNonNegative() &&
1964 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1965 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001966 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001967 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001968 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001969
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001970 CaseBitsVector CasesBits;
1971 unsigned i, count = 0;
1972
1973 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1974 MachineBasicBlock* Dest = I->BB;
1975 for (i = 0; i < count; ++i)
1976 if (Dest == CasesBits[i].BB)
1977 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001978
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001979 if (i == count) {
1980 assert((count < 3) && "Too much destinations to test!");
1981 CasesBits.push_back(CaseBits(0, Dest, 0));
1982 count++;
1983 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001984
1985 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1986 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1987
1988 uint64_t lo = (lowValue - lowBound).getZExtValue();
1989 uint64_t hi = (highValue - lowBound).getZExtValue();
1990
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001991 for (uint64_t j = lo; j <= hi; j++) {
1992 CasesBits[i].Mask |= 1ULL << j;
1993 CasesBits[i].Bits++;
1994 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001995
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001996 }
1997 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001998
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001999 BitTestInfo BTC;
2000
2001 // Figure out which block is immediately after the current one.
2002 MachineFunction::iterator BBI = CR.CaseBB;
2003 ++BBI;
2004
2005 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2006
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002007 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002008 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002009 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2010 << ", Bits: " << CasesBits[i].Bits
2011 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002012
2013 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2014 CurMF->insert(BBI, CaseBB);
2015 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2016 CaseBB,
2017 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002018
2019 // Put SV in a virtual register to make it available from the new blocks.
2020 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002021 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002022
2023 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002024 -1U, (CR.CaseBB == CurMBB),
2025 CR.CaseBB, Default, BTC);
2026
2027 if (CR.CaseBB == CurMBB)
2028 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002029
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002030 BitTestCases.push_back(BTB);
2031
2032 return true;
2033}
2034
2035
2036/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002037size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002038 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002039 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002040
2041 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002042 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002043 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2044 Cases.push_back(Case(SI.getSuccessorValue(i),
2045 SI.getSuccessorValue(i),
2046 SMBB));
2047 }
2048 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2049
2050 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002051 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002052 // Must recompute end() each iteration because it may be
2053 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002054 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2055 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2056 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002057 MachineBasicBlock* nextBB = J->BB;
2058 MachineBasicBlock* currentBB = I->BB;
2059
2060 // If the two neighboring cases go to the same destination, merge them
2061 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002062 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002063 I->High = J->High;
2064 J = Cases.erase(J);
2065 } else {
2066 I = J++;
2067 }
2068 }
2069
2070 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2071 if (I->Low != I->High)
2072 // A range counts double, since it requires two compares.
2073 ++numCmps;
2074 }
2075
2076 return numCmps;
2077}
2078
Anton Korobeynikov23218582008-12-23 22:25:27 +00002079void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002080 // Figure out which block is immediately after the current one.
2081 MachineBasicBlock *NextBlock = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002082
2083 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2084
2085 // If there is only the default destination, branch to it if it is not the
2086 // next basic block. Otherwise, just fall through.
2087 if (SI.getNumOperands() == 2) {
2088 // Update machine-CFG edges.
2089
2090 // If this is not a fall-through branch, emit the branch.
2091 CurMBB->addSuccessor(Default);
2092 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002093 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002094 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002095 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002096 return;
2097 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002098
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002099 // If there are any non-default case statements, create a vector of Cases
2100 // representing each one, and sort the vector so that we can efficiently
2101 // create a binary search tree from them.
2102 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002103 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002104 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2105 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002106 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002107
2108 // Get the Value to be switched on and default basic blocks, which will be
2109 // inserted into CaseBlock records, representing basic blocks in the binary
2110 // search tree.
2111 Value *SV = SI.getOperand(0);
2112
2113 // Push the initial CaseRec onto the worklist
2114 CaseRecVector WorkList;
2115 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2116
2117 while (!WorkList.empty()) {
2118 // Grab a record representing a case range to process off the worklist
2119 CaseRec CR = WorkList.back();
2120 WorkList.pop_back();
2121
2122 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2123 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002124
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002125 // If the range has few cases (two or less) emit a series of specific
2126 // tests.
2127 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2128 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002129
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002130 // If the switch has more than 5 blocks, and at least 40% dense, and the
2131 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002132 // lowering the switch to a binary tree of conditional branches.
2133 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2134 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002135
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002136 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2137 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2138 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2139 }
2140}
2141
2142
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002143void SelectionDAGLowering::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002144 // -0.0 - X --> fneg
2145 const Type *Ty = I.getType();
2146 if (isa<VectorType>(Ty)) {
2147 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2148 const VectorType *DestTy = cast<VectorType>(I.getType());
2149 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002150 unsigned VL = DestTy->getNumElements();
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002151 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Owen Andersonaf7ec972009-07-28 21:19:26 +00002152 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002153 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002154 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002155 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002156 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002157 return;
2158 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002159 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002160 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002161 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002162 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002163 SDValue Op2 = getValue(I.getOperand(1));
2164 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2165 Op2.getValueType(), Op2));
2166 return;
2167 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002168
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002169 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002170}
2171
2172void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2173 SDValue Op1 = getValue(I.getOperand(0));
2174 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002175
Scott Michelfdc40a02009-02-17 22:15:04 +00002176 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002177 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002178}
2179
2180void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2181 SDValue Op1 = getValue(I.getOperand(0));
2182 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002183 if (!isa<VectorType>(I.getType()) &&
2184 Op2.getValueType() != TLI.getShiftAmountTy()) {
2185 // If the operand is smaller than the shift count type, promote it.
Owen Andersone50ed302009-08-10 22:56:29 +00002186 EVT PTy = TLI.getPointerTy();
2187 EVT STy = TLI.getShiftAmountTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002188 if (STy.bitsGT(Op2.getValueType()))
Dan Gohman57fc82d2009-04-09 03:51:29 +00002189 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2190 TLI.getShiftAmountTy(), Op2);
2191 // If the operand is larger than the shift count type but the shift
2192 // count type has enough bits to represent any shift value, truncate
2193 // it now. This is a common case and it exposes the truncate to
2194 // optimization early.
Owen Anderson77547be2009-08-10 18:56:59 +00002195 else if (STy.getSizeInBits() >=
Dan Gohman57fc82d2009-04-09 03:51:29 +00002196 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2197 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2198 TLI.getShiftAmountTy(), Op2);
2199 // Otherwise we'll need to temporarily settle for some other
2200 // convenient type; type legalization will make adjustments as
2201 // needed.
Owen Anderson77547be2009-08-10 18:56:59 +00002202 else if (PTy.bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002203 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002204 TLI.getPointerTy(), Op2);
Owen Anderson77547be2009-08-10 18:56:59 +00002205 else if (PTy.bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002206 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002207 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002208 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002209
Scott Michelfdc40a02009-02-17 22:15:04 +00002210 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002211 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002212}
2213
2214void SelectionDAGLowering::visitICmp(User &I) {
2215 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2216 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2217 predicate = IC->getPredicate();
2218 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2219 predicate = ICmpInst::Predicate(IC->getPredicate());
2220 SDValue Op1 = getValue(I.getOperand(0));
2221 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002222 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002223
Owen Andersone50ed302009-08-10 22:56:29 +00002224 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002225 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002226}
2227
2228void SelectionDAGLowering::visitFCmp(User &I) {
2229 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2230 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2231 predicate = FC->getPredicate();
2232 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2233 predicate = FCmpInst::Predicate(FC->getPredicate());
2234 SDValue Op1 = getValue(I.getOperand(0));
2235 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002236 ISD::CondCode Condition = getFCmpCondCode(predicate);
Owen Andersone50ed302009-08-10 22:56:29 +00002237 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002238 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002239}
2240
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002241void SelectionDAGLowering::visitSelect(User &I) {
Owen Andersone50ed302009-08-10 22:56:29 +00002242 SmallVector<EVT, 4> ValueVTs;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002243 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2244 unsigned NumValues = ValueVTs.size();
2245 if (NumValues != 0) {
2246 SmallVector<SDValue, 4> Values(NumValues);
2247 SDValue Cond = getValue(I.getOperand(0));
2248 SDValue TrueVal = getValue(I.getOperand(1));
2249 SDValue FalseVal = getValue(I.getOperand(2));
2250
2251 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002252 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002253 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002254 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2255 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2256
Scott Michelfdc40a02009-02-17 22:15:04 +00002257 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002258 DAG.getVTList(&ValueVTs[0], NumValues),
2259 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002260 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002261}
2262
2263
2264void SelectionDAGLowering::visitTrunc(User &I) {
2265 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2266 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002267 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002268 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002269}
2270
2271void SelectionDAGLowering::visitZExt(User &I) {
2272 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2273 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2274 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002275 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002276 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002277}
2278
2279void SelectionDAGLowering::visitSExt(User &I) {
2280 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2281 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2282 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002283 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002284 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002285}
2286
2287void SelectionDAGLowering::visitFPTrunc(User &I) {
2288 // FPTrunc is never a no-op cast, no need to check
2289 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002290 EVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002291 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002292 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002293}
2294
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002295void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002296 // FPTrunc is never a no-op cast, no need to check
2297 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002298 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002299 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002300}
2301
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002302void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002303 // FPToUI is never a no-op cast, no need to check
2304 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002305 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002306 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002307}
2308
2309void SelectionDAGLowering::visitFPToSI(User &I) {
2310 // FPToSI is never a no-op cast, no need to check
2311 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002312 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002313 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002314}
2315
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002316void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002317 // UIToFP is never a no-op cast, no need to check
2318 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002319 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002320 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002321}
2322
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002323void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002324 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002325 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002326 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002327 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002328}
2329
2330void SelectionDAGLowering::visitPtrToInt(User &I) {
2331 // What to do depends on the size of the integer and the size of the pointer.
2332 // We can either truncate, zero extend, or no-op, accordingly.
2333 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002334 EVT SrcVT = N.getValueType();
2335 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002336 SDValue Result;
2337 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002338 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002339 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002340 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002341 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002342 setValue(&I, Result);
2343}
2344
2345void SelectionDAGLowering::visitIntToPtr(User &I) {
2346 // What to do depends on the size of the integer and the size of the pointer.
2347 // We can either truncate, zero extend, or no-op, accordingly.
2348 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002349 EVT SrcVT = N.getValueType();
2350 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002351 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002352 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002353 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002354 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002355 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002356 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002357}
2358
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002359void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002360 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002361 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002362
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002363 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002364 // is either a BIT_CONVERT or a no-op.
2365 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002366 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002367 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002368 else
2369 setValue(&I, N); // noop cast.
2370}
2371
2372void SelectionDAGLowering::visitInsertElement(User &I) {
2373 SDValue InVec = getValue(I.getOperand(0));
2374 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002375 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002376 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002377 getValue(I.getOperand(2)));
2378
Scott Michelfdc40a02009-02-17 22:15:04 +00002379 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002380 TLI.getValueType(I.getType()),
2381 InVec, InVal, InIdx));
2382}
2383
2384void SelectionDAGLowering::visitExtractElement(User &I) {
2385 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002386 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002387 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002388 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002389 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002390 TLI.getValueType(I.getType()), InVec, InIdx));
2391}
2392
Mon P Wangaeb06d22008-11-10 04:46:22 +00002393
2394// Utility for visitShuffleVector - Returns true if the mask is mask starting
2395// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002396static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2397 unsigned MaskNumElts = Mask.size();
2398 for (unsigned i = 0; i != MaskNumElts; ++i)
2399 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002400 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002401 return true;
2402}
2403
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002404void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002405 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002406 SDValue Src1 = getValue(I.getOperand(0));
2407 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002408
Nate Begeman9008ca62009-04-27 18:41:29 +00002409 // Convert the ConstantVector mask operand into an array of ints, with -1
2410 // representing undef values.
2411 SmallVector<Constant*, 8> MaskElts;
Owen Anderson001dbfe2009-07-16 18:04:31 +00002412 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
2413 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002414 unsigned MaskNumElts = MaskElts.size();
2415 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002416 if (isa<UndefValue>(MaskElts[i]))
2417 Mask.push_back(-1);
2418 else
2419 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2420 }
2421
Owen Andersone50ed302009-08-10 22:56:29 +00002422 EVT VT = TLI.getValueType(I.getType());
2423 EVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002424 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002425
Mon P Wangc7849c22008-11-16 05:06:27 +00002426 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002427 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2428 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002429 return;
2430 }
2431
2432 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002433 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2434 // Mask is longer than the source vectors and is a multiple of the source
2435 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002436 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002437 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2438 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002439 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002440 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002441 return;
2442 }
2443
Mon P Wangc7849c22008-11-16 05:06:27 +00002444 // Pad both vectors with undefs to make them the same length as the mask.
2445 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002446 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2447 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002448 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002449
Nate Begeman9008ca62009-04-27 18:41:29 +00002450 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2451 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002452 MOps1[0] = Src1;
2453 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002454
2455 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2456 getCurDebugLoc(), VT,
2457 &MOps1[0], NumConcat);
2458 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2459 getCurDebugLoc(), VT,
2460 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002461
Mon P Wangaeb06d22008-11-10 04:46:22 +00002462 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002463 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002464 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002465 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002466 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002467 MappedOps.push_back(Idx);
2468 else
2469 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002470 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002471 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2472 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002473 return;
2474 }
2475
Mon P Wangc7849c22008-11-16 05:06:27 +00002476 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002477 // Analyze the access pattern of the vector to see if we can extract
2478 // two subvectors and do the shuffle. The analysis is done by calculating
2479 // the range of elements the mask access on both vectors.
2480 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2481 int MaxRange[2] = {-1, -1};
2482
Nate Begeman5a5ca152009-04-29 05:20:52 +00002483 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002484 int Idx = Mask[i];
2485 int Input = 0;
2486 if (Idx < 0)
2487 continue;
2488
Nate Begeman5a5ca152009-04-29 05:20:52 +00002489 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002490 Input = 1;
2491 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002492 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002493 if (Idx > MaxRange[Input])
2494 MaxRange[Input] = Idx;
2495 if (Idx < MinRange[Input])
2496 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002497 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002498
Mon P Wangc7849c22008-11-16 05:06:27 +00002499 // Check if the access is smaller than the vector size and can we find
2500 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002501 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002502 int StartIdx[2]; // StartIdx to extract from
2503 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002504 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002505 RangeUse[Input] = 0; // Unused
2506 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002507 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002508 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002509 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002510 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002511 RangeUse[Input] = 1; // Extract from beginning of the vector
2512 StartIdx[Input] = 0;
2513 } else {
2514 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002515 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002516 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002517 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002518 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002519 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002520 }
2521
Bill Wendling636e2582009-08-21 18:16:06 +00002522 if (RangeUse[0] == 0 && RangeUse[1] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002523 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002524 return;
2525 }
2526 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2527 // Extract appropriate subvector and generate a vector shuffle
2528 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002529 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002530 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002531 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002532 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002533 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002534 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002535 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002536 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002537 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002538 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002539 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002540 int Idx = Mask[i];
2541 if (Idx < 0)
2542 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002543 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002544 MappedOps.push_back(Idx - StartIdx[0]);
2545 else
2546 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002547 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002548 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2549 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002550 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002551 }
2552 }
2553
Mon P Wangc7849c22008-11-16 05:06:27 +00002554 // We can't use either concat vectors or extract subvectors so fall back to
2555 // replacing the shuffle with extract and build vector.
2556 // to insert and build vector.
Owen Andersone50ed302009-08-10 22:56:29 +00002557 EVT EltVT = VT.getVectorElementType();
2558 EVT PtrVT = TLI.getPointerTy();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002559 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002560 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002561 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002562 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002563 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002564 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002565 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002566 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002567 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002568 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002569 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002570 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002571 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002572 }
2573 }
Evan Chenga87008d2009-02-25 22:49:59 +00002574 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2575 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002576}
2577
2578void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2579 const Value *Op0 = I.getOperand(0);
2580 const Value *Op1 = I.getOperand(1);
2581 const Type *AggTy = I.getType();
2582 const Type *ValTy = Op1->getType();
2583 bool IntoUndef = isa<UndefValue>(Op0);
2584 bool FromUndef = isa<UndefValue>(Op1);
2585
2586 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2587 I.idx_begin(), I.idx_end());
2588
Owen Andersone50ed302009-08-10 22:56:29 +00002589 SmallVector<EVT, 4> AggValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002590 ComputeValueVTs(TLI, AggTy, AggValueVTs);
Owen Andersone50ed302009-08-10 22:56:29 +00002591 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002592 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2593
2594 unsigned NumAggValues = AggValueVTs.size();
2595 unsigned NumValValues = ValValueVTs.size();
2596 SmallVector<SDValue, 4> Values(NumAggValues);
2597
2598 SDValue Agg = getValue(Op0);
2599 SDValue Val = getValue(Op1);
2600 unsigned i = 0;
2601 // Copy the beginning value(s) from the original aggregate.
2602 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002603 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002604 SDValue(Agg.getNode(), Agg.getResNo() + i);
2605 // Copy values from the inserted value(s).
2606 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002607 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002608 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2609 // Copy remaining value(s) from the original aggregate.
2610 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002611 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002612 SDValue(Agg.getNode(), Agg.getResNo() + i);
2613
Scott Michelfdc40a02009-02-17 22:15:04 +00002614 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002615 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2616 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002617}
2618
2619void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2620 const Value *Op0 = I.getOperand(0);
2621 const Type *AggTy = Op0->getType();
2622 const Type *ValTy = I.getType();
2623 bool OutOfUndef = isa<UndefValue>(Op0);
2624
2625 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2626 I.idx_begin(), I.idx_end());
2627
Owen Andersone50ed302009-08-10 22:56:29 +00002628 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002629 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2630
2631 unsigned NumValValues = ValValueVTs.size();
2632 SmallVector<SDValue, 4> Values(NumValValues);
2633
2634 SDValue Agg = getValue(Op0);
2635 // Copy out the selected value(s).
2636 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2637 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002638 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002639 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002640 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002641
Scott Michelfdc40a02009-02-17 22:15:04 +00002642 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002643 DAG.getVTList(&ValValueVTs[0], NumValValues),
2644 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002645}
2646
2647
2648void SelectionDAGLowering::visitGetElementPtr(User &I) {
2649 SDValue N = getValue(I.getOperand(0));
2650 const Type *Ty = I.getOperand(0)->getType();
2651
2652 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2653 OI != E; ++OI) {
2654 Value *Idx = *OI;
2655 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2656 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2657 if (Field) {
2658 // N = N + Offset
2659 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002660 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002661 DAG.getIntPtrConstant(Offset));
2662 }
2663 Ty = StTy->getElementType(Field);
2664 } else {
2665 Ty = cast<SequentialType>(Ty)->getElementType();
2666
2667 // If this is a constant subscript, handle it quickly.
2668 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2669 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002670 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002671 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002672 SDValue OffsVal;
Owen Andersone50ed302009-08-10 22:56:29 +00002673 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002674 unsigned PtrBits = PTy.getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002675 if (PtrBits < 64) {
2676 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2677 TLI.getPointerTy(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002678 DAG.getConstant(Offs, MVT::i64));
Evan Cheng65b52df2009-02-09 21:01:06 +00002679 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002680 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002681 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002682 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002683 continue;
2684 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002685
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002686 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +00002687 uint64_t ElementSize = TD->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002688 SDValue IdxN = getValue(Idx);
2689
2690 // If the index is smaller or larger than intptr_t, truncate or extend
2691 // it.
2692 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002693 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002694 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002695 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002696 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002697 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002698
2699 // If this is a multiply by a power of two, turn it into a shl
2700 // immediately. This is a very common case.
2701 if (ElementSize != 1) {
2702 if (isPowerOf2_64(ElementSize)) {
2703 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002704 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002705 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002706 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002707 } else {
2708 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002709 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002710 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002711 }
2712 }
2713
Scott Michelfdc40a02009-02-17 22:15:04 +00002714 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002715 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002716 }
2717 }
2718 setValue(&I, N);
2719}
2720
2721void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2722 // If this is a fixed sized alloca in the entry block of the function,
2723 // allocate it statically on the stack.
2724 if (FuncInfo.StaticAllocaMap.count(&I))
2725 return; // getValue will auto-populate this.
2726
2727 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002728 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002729 unsigned Align =
2730 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2731 I.getAlignment());
2732
2733 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002734
2735 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2736 AllocSize,
2737 DAG.getConstant(TySize, AllocSize.getValueType()));
2738
2739
2740
Owen Andersone50ed302009-08-10 22:56:29 +00002741 EVT IntPtr = TLI.getPointerTy();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002742 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002743 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002744 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002745 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002746 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002747 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002748
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002749 // Handle alignment. If the requested alignment is less than or equal to
2750 // the stack alignment, ignore it. If the size is greater than or equal to
2751 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2752 unsigned StackAlign =
2753 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2754 if (Align <= StackAlign)
2755 Align = 0;
2756
2757 // Round the size of the allocation up to the stack alignment size
2758 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002759 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002760 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002761 DAG.getIntPtrConstant(StackAlign-1));
2762 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002763 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002764 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002765 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2766
2767 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Owen Anderson825b72b2009-08-11 20:47:22 +00002768 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002769 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002770 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002771 setValue(&I, DSA);
2772 DAG.setRoot(DSA.getValue(1));
2773
2774 // Inform the Frame Information that we have just allocated a variable-sized
2775 // object.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002776 FuncInfo.MF->getFrameInfo()->CreateVariableSizedObject();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002777}
2778
2779void SelectionDAGLowering::visitLoad(LoadInst &I) {
2780 const Value *SV = I.getOperand(0);
2781 SDValue Ptr = getValue(SV);
2782
2783 const Type *Ty = I.getType();
2784 bool isVolatile = I.isVolatile();
2785 unsigned Alignment = I.getAlignment();
2786
Owen Andersone50ed302009-08-10 22:56:29 +00002787 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002788 SmallVector<uint64_t, 4> Offsets;
2789 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2790 unsigned NumValues = ValueVTs.size();
2791 if (NumValues == 0)
2792 return;
2793
2794 SDValue Root;
2795 bool ConstantMemory = false;
2796 if (I.isVolatile())
2797 // Serialize volatile loads with other side effects.
2798 Root = getRoot();
2799 else if (AA->pointsToConstantMemory(SV)) {
2800 // Do not serialize (non-volatile) loads of constant memory with anything.
2801 Root = DAG.getEntryNode();
2802 ConstantMemory = true;
2803 } else {
2804 // Do not serialize non-volatile loads against each other.
2805 Root = DAG.getRoot();
2806 }
2807
2808 SmallVector<SDValue, 4> Values(NumValues);
2809 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002810 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002811 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002812 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002813 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002814 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002815 DAG.getConstant(Offsets[i], PtrVT)),
2816 SV, Offsets[i],
2817 isVolatile, Alignment);
2818 Values[i] = L;
2819 Chains[i] = L.getValue(1);
2820 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002821
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002822 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002823 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002824 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002825 &Chains[0], NumValues);
2826 if (isVolatile)
2827 DAG.setRoot(Chain);
2828 else
2829 PendingLoads.push_back(Chain);
2830 }
2831
Scott Michelfdc40a02009-02-17 22:15:04 +00002832 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002833 DAG.getVTList(&ValueVTs[0], NumValues),
2834 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002835}
2836
2837
2838void SelectionDAGLowering::visitStore(StoreInst &I) {
2839 Value *SrcV = I.getOperand(0);
2840 Value *PtrV = I.getOperand(1);
2841
Owen Andersone50ed302009-08-10 22:56:29 +00002842 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002843 SmallVector<uint64_t, 4> Offsets;
2844 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2845 unsigned NumValues = ValueVTs.size();
2846 if (NumValues == 0)
2847 return;
2848
2849 // Get the lowered operands. Note that we do this after
2850 // checking if NumResults is zero, because with zero results
2851 // the operands won't have values in the map.
2852 SDValue Src = getValue(SrcV);
2853 SDValue Ptr = getValue(PtrV);
2854
2855 SDValue Root = getRoot();
2856 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002857 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002858 bool isVolatile = I.isVolatile();
2859 unsigned Alignment = I.getAlignment();
2860 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002861 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002862 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002863 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002864 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002865 DAG.getConstant(Offsets[i], PtrVT)),
2866 PtrV, Offsets[i],
2867 isVolatile, Alignment);
2868
Scott Michelfdc40a02009-02-17 22:15:04 +00002869 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002870 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002871}
2872
2873/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2874/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002875void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002876 unsigned Intrinsic) {
2877 bool HasChain = !I.doesNotAccessMemory();
2878 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2879
2880 // Build the operand list.
2881 SmallVector<SDValue, 8> Ops;
2882 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2883 if (OnlyLoad) {
2884 // We don't need to serialize loads against other loads.
2885 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002886 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002887 Ops.push_back(getRoot());
2888 }
2889 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002890
2891 // Info is set by getTgtMemInstrinsic
2892 TargetLowering::IntrinsicInfo Info;
2893 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2894
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002895 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002896 if (!IsTgtIntrinsic)
2897 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002898
2899 // Add all operands of the call to the operand list.
2900 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2901 SDValue Op = getValue(I.getOperand(i));
2902 assert(TLI.isTypeLegal(Op.getValueType()) &&
2903 "Intrinsic uses a non-legal type?");
2904 Ops.push_back(Op);
2905 }
2906
Owen Andersone50ed302009-08-10 22:56:29 +00002907 SmallVector<EVT, 4> ValueVTs;
Bob Wilson8d919552009-07-31 22:41:21 +00002908 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2909#ifndef NDEBUG
2910 for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) {
2911 assert(TLI.isTypeLegal(ValueVTs[Val]) &&
2912 "Intrinsic uses a non-legal type?");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002913 }
Bob Wilson8d919552009-07-31 22:41:21 +00002914#endif // NDEBUG
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002915 if (HasChain)
Owen Anderson825b72b2009-08-11 20:47:22 +00002916 ValueVTs.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002917
Bob Wilson8d919552009-07-31 22:41:21 +00002918 SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002919
2920 // Create the node.
2921 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002922 if (IsTgtIntrinsic) {
2923 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002924 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002925 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002926 Info.memVT, Info.ptrVal, Info.offset,
2927 Info.align, Info.vol,
2928 Info.readMem, Info.writeMem);
2929 }
2930 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002931 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002932 VTs, &Ops[0], Ops.size());
Owen Anderson1d0be152009-08-13 21:58:54 +00002933 else if (I.getType() != Type::getVoidTy(*DAG.getContext()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002934 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002935 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002936 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002937 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002938 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002939
2940 if (HasChain) {
2941 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2942 if (OnlyLoad)
2943 PendingLoads.push_back(Chain);
2944 else
2945 DAG.setRoot(Chain);
2946 }
Owen Anderson1d0be152009-08-13 21:58:54 +00002947 if (I.getType() != Type::getVoidTy(*DAG.getContext())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002948 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Owen Andersone50ed302009-08-10 22:56:29 +00002949 EVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002950 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002951 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002952 setValue(&I, Result);
2953 }
2954}
2955
2956/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2957static GlobalVariable *ExtractTypeInfo(Value *V) {
2958 V = V->stripPointerCasts();
2959 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2960 assert ((GV || isa<ConstantPointerNull>(V)) &&
2961 "TypeInfo must be a global variable or NULL");
2962 return GV;
2963}
2964
2965namespace llvm {
2966
2967/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2968/// call, and add them to the specified machine basic block.
2969void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2970 MachineBasicBlock *MBB) {
2971 // Inform the MachineModuleInfo of the personality for this landing pad.
2972 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2973 assert(CE->getOpcode() == Instruction::BitCast &&
2974 isa<Function>(CE->getOperand(0)) &&
2975 "Personality should be a function");
2976 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2977
2978 // Gather all the type infos for this landing pad and pass them along to
2979 // MachineModuleInfo.
2980 std::vector<GlobalVariable *> TyInfo;
2981 unsigned N = I.getNumOperands();
2982
2983 for (unsigned i = N - 1; i > 2; --i) {
2984 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2985 unsigned FilterLength = CI->getZExtValue();
2986 unsigned FirstCatch = i + FilterLength + !FilterLength;
2987 assert (FirstCatch <= N && "Invalid filter length");
2988
2989 if (FirstCatch < N) {
2990 TyInfo.reserve(N - FirstCatch);
2991 for (unsigned j = FirstCatch; j < N; ++j)
2992 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2993 MMI->addCatchTypeInfo(MBB, TyInfo);
2994 TyInfo.clear();
2995 }
2996
2997 if (!FilterLength) {
2998 // Cleanup.
2999 MMI->addCleanup(MBB);
3000 } else {
3001 // Filter.
3002 TyInfo.reserve(FilterLength - 1);
3003 for (unsigned j = i + 1; j < FirstCatch; ++j)
3004 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3005 MMI->addFilterTypeInfo(MBB, TyInfo);
3006 TyInfo.clear();
3007 }
3008
3009 N = i;
3010 }
3011 }
3012
3013 if (N > 3) {
3014 TyInfo.reserve(N - 3);
3015 for (unsigned j = 3; j < N; ++j)
3016 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3017 MMI->addCatchTypeInfo(MBB, TyInfo);
3018 }
3019}
3020
3021}
3022
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003023/// GetSignificand - Get the significand and build it into a floating-point
3024/// number with exponent of 1:
3025///
3026/// Op = (Op & 0x007fffff) | 0x3f800000;
3027///
3028/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003029static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003030GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003031 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3032 DAG.getConstant(0x007fffff, MVT::i32));
3033 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
3034 DAG.getConstant(0x3f800000, MVT::i32));
3035 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003036}
3037
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003038/// GetExponent - Get the exponent:
3039///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003040/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003041///
3042/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003043static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003044GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3045 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003046 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3047 DAG.getConstant(0x7f800000, MVT::i32));
3048 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003049 DAG.getConstant(23, TLI.getPointerTy()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003050 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
3051 DAG.getConstant(127, MVT::i32));
3052 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003053}
3054
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003055/// getF32Constant - Get 32-bit floating point constant.
3056static SDValue
3057getF32Constant(SelectionDAG &DAG, unsigned Flt) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003058 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003059}
3060
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003061/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003062/// visitIntrinsicCall: I is a call instruction
3063/// Op is the associated NodeType for I
3064const char *
3065SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003066 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003067 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003068 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003069 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003070 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003071 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003072 getValue(I.getOperand(2)),
3073 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003074 setValue(&I, L);
3075 DAG.setRoot(L.getValue(1));
3076 return 0;
3077}
3078
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003079// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003080const char *
3081SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003082 SDValue Op1 = getValue(I.getOperand(1));
3083 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003084
Owen Anderson825b72b2009-08-11 20:47:22 +00003085 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
Dan Gohmanfc166572009-04-09 23:54:40 +00003086 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003087
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003088 setValue(&I, Result);
3089 return 0;
3090}
Bill Wendling74c37652008-12-09 22:08:41 +00003091
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003092/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3093/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003094void
3095SelectionDAGLowering::visitExp(CallInst &I) {
3096 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003097 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003098
Owen Anderson825b72b2009-08-11 20:47:22 +00003099 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003100 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3101 SDValue Op = getValue(I.getOperand(1));
3102
3103 // Put the exponent in the right bit position for later addition to the
3104 // final result:
3105 //
3106 // #define LOG2OFe 1.4426950f
3107 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Owen Anderson825b72b2009-08-11 20:47:22 +00003108 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003109 getF32Constant(DAG, 0x3fb8aa3b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003110 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003111
3112 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003113 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3114 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003115
3116 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003117 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003118 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003119
3120 if (LimitFloatPrecision <= 6) {
3121 // For floating-point precision of 6:
3122 //
3123 // TwoToFractionalPartOfX =
3124 // 0.997535578f +
3125 // (0.735607626f + 0.252464424f * x) * x;
3126 //
3127 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003128 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003129 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003130 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003131 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003132 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3133 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003134 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003135 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003136
3137 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003138 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003139 TwoToFracPartOfX, IntegerPartOfX);
3140
Owen Anderson825b72b2009-08-11 20:47:22 +00003141 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003142 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3143 // For floating-point precision of 12:
3144 //
3145 // TwoToFractionalPartOfX =
3146 // 0.999892986f +
3147 // (0.696457318f +
3148 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3149 //
3150 // 0.000107046256 error, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003151 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003152 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003153 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003154 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003155 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3156 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003157 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003158 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3159 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003160 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003161 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003162
3163 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003164 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003165 TwoToFracPartOfX, IntegerPartOfX);
3166
Owen Anderson825b72b2009-08-11 20:47:22 +00003167 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003168 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3169 // For floating-point precision of 18:
3170 //
3171 // TwoToFractionalPartOfX =
3172 // 0.999999982f +
3173 // (0.693148872f +
3174 // (0.240227044f +
3175 // (0.554906021e-1f +
3176 // (0.961591928e-2f +
3177 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3178 //
3179 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003180 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003181 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003182 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003183 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003184 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3185 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003186 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003187 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3188 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003189 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003190 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3191 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003192 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003193 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3194 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003195 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003196 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3197 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003198 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003199 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003200 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003201
3202 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003203 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003204 TwoToFracPartOfX, IntegerPartOfX);
3205
Owen Anderson825b72b2009-08-11 20:47:22 +00003206 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003207 }
3208 } else {
3209 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003210 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003211 getValue(I.getOperand(1)).getValueType(),
3212 getValue(I.getOperand(1)));
3213 }
3214
Dale Johannesen59e577f2008-09-05 18:38:42 +00003215 setValue(&I, result);
3216}
3217
Bill Wendling39150252008-09-09 20:39:27 +00003218/// visitLog - Lower a log intrinsic. Handles the special sequences for
3219/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003220void
3221SelectionDAGLowering::visitLog(CallInst &I) {
3222 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003223 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003224
Owen Anderson825b72b2009-08-11 20:47:22 +00003225 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling39150252008-09-09 20:39:27 +00003226 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3227 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003228 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003229
3230 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003231 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003232 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003233 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003234
3235 // Get the significand and build it into a floating-point number with
3236 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003237 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003238
3239 if (LimitFloatPrecision <= 6) {
3240 // For floating-point precision of 6:
3241 //
3242 // LogofMantissa =
3243 // -1.1609546f +
3244 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003245 //
Bill Wendling39150252008-09-09 20:39:27 +00003246 // error 0.0034276066, which is better than 8 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003247 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003248 getF32Constant(DAG, 0xbe74c456));
Owen Anderson825b72b2009-08-11 20:47:22 +00003249 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003250 getF32Constant(DAG, 0x3fb3a2b1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003251 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3252 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003253 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003254
Scott Michelfdc40a02009-02-17 22:15:04 +00003255 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003256 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003257 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3258 // For floating-point precision of 12:
3259 //
3260 // LogOfMantissa =
3261 // -1.7417939f +
3262 // (2.8212026f +
3263 // (-1.4699568f +
3264 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3265 //
3266 // error 0.000061011436, which is 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003267 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003268 getF32Constant(DAG, 0xbd67b6d6));
Owen Anderson825b72b2009-08-11 20:47:22 +00003269 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003270 getF32Constant(DAG, 0x3ee4f4b8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003271 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3272 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003273 getF32Constant(DAG, 0x3fbc278b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003274 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3275 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003276 getF32Constant(DAG, 0x40348e95));
Owen Anderson825b72b2009-08-11 20:47:22 +00003277 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3278 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003279 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003280
Scott Michelfdc40a02009-02-17 22:15:04 +00003281 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003282 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003283 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3284 // For floating-point precision of 18:
3285 //
3286 // LogOfMantissa =
3287 // -2.1072184f +
3288 // (4.2372794f +
3289 // (-3.7029485f +
3290 // (2.2781945f +
3291 // (-0.87823314f +
3292 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3293 //
3294 // error 0.0000023660568, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003295 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003296 getF32Constant(DAG, 0xbc91e5ac));
Owen Anderson825b72b2009-08-11 20:47:22 +00003297 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003298 getF32Constant(DAG, 0x3e4350aa));
Owen Anderson825b72b2009-08-11 20:47:22 +00003299 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3300 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003301 getF32Constant(DAG, 0x3f60d3e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003302 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3303 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003304 getF32Constant(DAG, 0x4011cdf0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003305 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3306 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003307 getF32Constant(DAG, 0x406cfd1c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003308 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3309 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003310 getF32Constant(DAG, 0x408797cb));
Owen Anderson825b72b2009-08-11 20:47:22 +00003311 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3312 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003313 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003314
Scott Michelfdc40a02009-02-17 22:15:04 +00003315 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003316 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003317 }
3318 } else {
3319 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003320 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003321 getValue(I.getOperand(1)).getValueType(),
3322 getValue(I.getOperand(1)));
3323 }
3324
Dale Johannesen59e577f2008-09-05 18:38:42 +00003325 setValue(&I, result);
3326}
3327
Bill Wendling3eb59402008-09-09 00:28:24 +00003328/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3329/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003330void
3331SelectionDAGLowering::visitLog2(CallInst &I) {
3332 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003333 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003334
Owen Anderson825b72b2009-08-11 20:47:22 +00003335 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003336 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3337 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003338 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003339
Bill Wendling39150252008-09-09 20:39:27 +00003340 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003341 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003342
3343 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003344 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003345 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003346
Bill Wendling3eb59402008-09-09 00:28:24 +00003347 // Different possible minimax approximations of significand in
3348 // floating-point for various degrees of accuracy over [1,2].
3349 if (LimitFloatPrecision <= 6) {
3350 // For floating-point precision of 6:
3351 //
3352 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3353 //
3354 // error 0.0049451742, which is more than 7 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003355 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003356 getF32Constant(DAG, 0xbeb08fe0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003357 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003358 getF32Constant(DAG, 0x40019463));
Owen Anderson825b72b2009-08-11 20:47:22 +00003359 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3360 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003361 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003362
Scott Michelfdc40a02009-02-17 22:15:04 +00003363 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003364 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003365 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3366 // For floating-point precision of 12:
3367 //
3368 // Log2ofMantissa =
3369 // -2.51285454f +
3370 // (4.07009056f +
3371 // (-2.12067489f +
3372 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003373 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003374 // error 0.0000876136000, which is better than 13 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003375 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003376 getF32Constant(DAG, 0xbda7262e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003377 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003378 getF32Constant(DAG, 0x3f25280b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003379 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3380 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003381 getF32Constant(DAG, 0x4007b923));
Owen Anderson825b72b2009-08-11 20:47:22 +00003382 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3383 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003384 getF32Constant(DAG, 0x40823e2f));
Owen Anderson825b72b2009-08-11 20:47:22 +00003385 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3386 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003387 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003388
Scott Michelfdc40a02009-02-17 22:15:04 +00003389 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003390 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003391 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3392 // For floating-point precision of 18:
3393 //
3394 // Log2ofMantissa =
3395 // -3.0400495f +
3396 // (6.1129976f +
3397 // (-5.3420409f +
3398 // (3.2865683f +
3399 // (-1.2669343f +
3400 // (0.27515199f -
3401 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3402 //
3403 // error 0.0000018516, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003404 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003405 getF32Constant(DAG, 0xbcd2769e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003406 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003407 getF32Constant(DAG, 0x3e8ce0b9));
Owen Anderson825b72b2009-08-11 20:47:22 +00003408 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3409 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003410 getF32Constant(DAG, 0x3fa22ae7));
Owen Anderson825b72b2009-08-11 20:47:22 +00003411 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3412 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003413 getF32Constant(DAG, 0x40525723));
Owen Anderson825b72b2009-08-11 20:47:22 +00003414 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3415 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003416 getF32Constant(DAG, 0x40aaf200));
Owen Anderson825b72b2009-08-11 20:47:22 +00003417 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3418 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003419 getF32Constant(DAG, 0x40c39dad));
Owen Anderson825b72b2009-08-11 20:47:22 +00003420 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3421 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003422 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003423
Scott Michelfdc40a02009-02-17 22:15:04 +00003424 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003425 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003426 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003427 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003428 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003429 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003430 getValue(I.getOperand(1)).getValueType(),
3431 getValue(I.getOperand(1)));
3432 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003433
Dale Johannesen59e577f2008-09-05 18:38:42 +00003434 setValue(&I, result);
3435}
3436
Bill Wendling3eb59402008-09-09 00:28:24 +00003437/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3438/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003439void
3440SelectionDAGLowering::visitLog10(CallInst &I) {
3441 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003442 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003443
Owen Anderson825b72b2009-08-11 20:47:22 +00003444 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003445 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3446 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003447 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003448
Bill Wendling39150252008-09-09 20:39:27 +00003449 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003450 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003451 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003452 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003453
3454 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003455 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003456 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003457
3458 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003459 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003460 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003461 // Log10ofMantissa =
3462 // -0.50419619f +
3463 // (0.60948995f - 0.10380950f * x) * x;
3464 //
3465 // error 0.0014886165, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003466 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003467 getF32Constant(DAG, 0xbdd49a13));
Owen Anderson825b72b2009-08-11 20:47:22 +00003468 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003469 getF32Constant(DAG, 0x3f1c0789));
Owen Anderson825b72b2009-08-11 20:47:22 +00003470 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3471 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003472 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003473
Scott Michelfdc40a02009-02-17 22:15:04 +00003474 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003475 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003476 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3477 // For floating-point precision of 12:
3478 //
3479 // Log10ofMantissa =
3480 // -0.64831180f +
3481 // (0.91751397f +
3482 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3483 //
3484 // error 0.00019228036, which is better than 12 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003485 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003486 getF32Constant(DAG, 0x3d431f31));
Owen Anderson825b72b2009-08-11 20:47:22 +00003487 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003488 getF32Constant(DAG, 0x3ea21fb2));
Owen Anderson825b72b2009-08-11 20:47:22 +00003489 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3490 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003491 getF32Constant(DAG, 0x3f6ae232));
Owen Anderson825b72b2009-08-11 20:47:22 +00003492 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3493 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003494 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003495
Scott Michelfdc40a02009-02-17 22:15:04 +00003496 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003497 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003498 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003499 // For floating-point precision of 18:
3500 //
3501 // Log10ofMantissa =
3502 // -0.84299375f +
3503 // (1.5327582f +
3504 // (-1.0688956f +
3505 // (0.49102474f +
3506 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3507 //
3508 // error 0.0000037995730, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003509 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003510 getF32Constant(DAG, 0x3c5d51ce));
Owen Anderson825b72b2009-08-11 20:47:22 +00003511 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003512 getF32Constant(DAG, 0x3e00685a));
Owen Anderson825b72b2009-08-11 20:47:22 +00003513 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3514 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003515 getF32Constant(DAG, 0x3efb6798));
Owen Anderson825b72b2009-08-11 20:47:22 +00003516 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3517 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003518 getF32Constant(DAG, 0x3f88d192));
Owen Anderson825b72b2009-08-11 20:47:22 +00003519 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3520 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003521 getF32Constant(DAG, 0x3fc4316c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003522 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3523 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003524 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003525
Scott Michelfdc40a02009-02-17 22:15:04 +00003526 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003527 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003528 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003529 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003530 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003531 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003532 getValue(I.getOperand(1)).getValueType(),
3533 getValue(I.getOperand(1)));
3534 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003535
Dale Johannesen59e577f2008-09-05 18:38:42 +00003536 setValue(&I, result);
3537}
3538
Bill Wendlinge10c8142008-09-09 22:39:21 +00003539/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3540/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003541void
3542SelectionDAGLowering::visitExp2(CallInst &I) {
3543 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003544 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003545
Owen Anderson825b72b2009-08-11 20:47:22 +00003546 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003547 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3548 SDValue Op = getValue(I.getOperand(1));
3549
Owen Anderson825b72b2009-08-11 20:47:22 +00003550 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003551
3552 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003553 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3554 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003555
3556 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003557 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003558 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003559
3560 if (LimitFloatPrecision <= 6) {
3561 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003562 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003563 // TwoToFractionalPartOfX =
3564 // 0.997535578f +
3565 // (0.735607626f + 0.252464424f * x) * x;
3566 //
3567 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003568 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003569 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003570 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003571 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003572 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3573 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003574 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003575 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003576 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003577 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003578
Scott Michelfdc40a02009-02-17 22:15:04 +00003579 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003580 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003581 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3582 // For floating-point precision of 12:
3583 //
3584 // TwoToFractionalPartOfX =
3585 // 0.999892986f +
3586 // (0.696457318f +
3587 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3588 //
3589 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003590 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003591 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003592 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003593 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003594 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3595 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003596 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003597 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3598 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003599 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003600 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003601 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003602 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003603
Scott Michelfdc40a02009-02-17 22:15:04 +00003604 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003605 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003606 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3607 // For floating-point precision of 18:
3608 //
3609 // TwoToFractionalPartOfX =
3610 // 0.999999982f +
3611 // (0.693148872f +
3612 // (0.240227044f +
3613 // (0.554906021e-1f +
3614 // (0.961591928e-2f +
3615 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3616 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003617 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003618 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003619 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003620 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003621 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3622 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003623 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003624 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3625 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003626 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003627 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3628 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003629 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003630 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3631 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003632 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003633 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3634 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003635 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003636 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003637 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003638 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003639
Scott Michelfdc40a02009-02-17 22:15:04 +00003640 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003641 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003642 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003643 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003644 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003645 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003646 getValue(I.getOperand(1)).getValueType(),
3647 getValue(I.getOperand(1)));
3648 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003649
Dale Johannesen601d3c02008-09-05 01:48:15 +00003650 setValue(&I, result);
3651}
3652
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003653/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3654/// limited-precision mode with x == 10.0f.
3655void
3656SelectionDAGLowering::visitPow(CallInst &I) {
3657 SDValue result;
3658 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003659 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003660 bool IsExp10 = false;
3661
Owen Anderson825b72b2009-08-11 20:47:22 +00003662 if (getValue(Val).getValueType() == MVT::f32 &&
3663 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003664 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3665 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3666 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3667 APFloat Ten(10.0f);
3668 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3669 }
3670 }
3671 }
3672
3673 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3674 SDValue Op = getValue(I.getOperand(2));
3675
3676 // Put the exponent in the right bit position for later addition to the
3677 // final result:
3678 //
3679 // #define LOG2OF10 3.3219281f
3680 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Owen Anderson825b72b2009-08-11 20:47:22 +00003681 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003682 getF32Constant(DAG, 0x40549a78));
Owen Anderson825b72b2009-08-11 20:47:22 +00003683 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003684
3685 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003686 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3687 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003688
3689 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003690 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003691 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003692
3693 if (LimitFloatPrecision <= 6) {
3694 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003695 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003696 // twoToFractionalPartOfX =
3697 // 0.997535578f +
3698 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003699 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003700 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003701 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003702 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003703 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003704 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003705 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3706 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003707 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003708 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003709 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003710 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003711
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003712 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003713 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003714 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3715 // For floating-point precision of 12:
3716 //
3717 // TwoToFractionalPartOfX =
3718 // 0.999892986f +
3719 // (0.696457318f +
3720 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3721 //
3722 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003723 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003724 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003725 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003726 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003727 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3728 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003729 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003730 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3731 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003732 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003733 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003734 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003735 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003736
Scott Michelfdc40a02009-02-17 22:15:04 +00003737 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003738 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003739 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3740 // For floating-point precision of 18:
3741 //
3742 // TwoToFractionalPartOfX =
3743 // 0.999999982f +
3744 // (0.693148872f +
3745 // (0.240227044f +
3746 // (0.554906021e-1f +
3747 // (0.961591928e-2f +
3748 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3749 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003750 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003751 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003752 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003753 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003754 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3755 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003756 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003757 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3758 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003759 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003760 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3761 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003762 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003763 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3764 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003765 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003766 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3767 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003768 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003769 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003770 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003771 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003772
Scott Michelfdc40a02009-02-17 22:15:04 +00003773 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003774 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003775 }
3776 } else {
3777 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003778 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003779 getValue(I.getOperand(1)).getValueType(),
3780 getValue(I.getOperand(1)),
3781 getValue(I.getOperand(2)));
3782 }
3783
3784 setValue(&I, result);
3785}
3786
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003787/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3788/// we want to emit this as a call to a named external function, return the name
3789/// otherwise lower it and return null.
3790const char *
3791SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003792 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003793 switch (Intrinsic) {
3794 default:
3795 // By default, turn this into a target intrinsic node.
3796 visitTargetIntrinsic(I, Intrinsic);
3797 return 0;
3798 case Intrinsic::vastart: visitVAStart(I); return 0;
3799 case Intrinsic::vaend: visitVAEnd(I); return 0;
3800 case Intrinsic::vacopy: visitVACopy(I); return 0;
3801 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003802 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003803 getValue(I.getOperand(1))));
3804 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003805 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003806 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003807 getValue(I.getOperand(1))));
3808 return 0;
3809 case Intrinsic::setjmp:
3810 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3811 break;
3812 case Intrinsic::longjmp:
3813 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3814 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003815 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003816 SDValue Op1 = getValue(I.getOperand(1));
3817 SDValue Op2 = getValue(I.getOperand(2));
3818 SDValue Op3 = getValue(I.getOperand(3));
3819 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003820 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003821 I.getOperand(1), 0, I.getOperand(2), 0));
3822 return 0;
3823 }
Chris Lattner824b9582008-11-21 16:42:48 +00003824 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003825 SDValue Op1 = getValue(I.getOperand(1));
3826 SDValue Op2 = getValue(I.getOperand(2));
3827 SDValue Op3 = getValue(I.getOperand(3));
3828 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003829 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003830 I.getOperand(1), 0));
3831 return 0;
3832 }
Chris Lattner824b9582008-11-21 16:42:48 +00003833 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003834 SDValue Op1 = getValue(I.getOperand(1));
3835 SDValue Op2 = getValue(I.getOperand(2));
3836 SDValue Op3 = getValue(I.getOperand(3));
3837 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3838
3839 // If the source and destination are known to not be aliases, we can
3840 // lower memmove as memcpy.
3841 uint64_t Size = -1ULL;
3842 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003843 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003844 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3845 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003846 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003847 I.getOperand(1), 0, I.getOperand(2), 0));
3848 return 0;
3849 }
3850
Dale Johannesena04b7572009-02-03 23:04:43 +00003851 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003852 I.getOperand(1), 0, I.getOperand(2), 0));
3853 return 0;
3854 }
3855 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003856 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003857 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003858 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003859 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003860 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003861
Bill Wendling98a366d2009-04-29 23:29:43 +00003862 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003863 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003864 SPI.getLine(),
3865 SPI.getColumn(),
3866 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003867 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003868 return 0;
3869 }
3870 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003871 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003872 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003873 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3874 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003875 unsigned LabelID =
Devang Patele4b27562009-08-28 23:24:31 +00003876 DW->RecordRegionStart(RSI.getContext());
Devang Patel48c7fa22009-04-13 18:13:16 +00003877 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3878 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003879 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003880 return 0;
3881 }
3882 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003883 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003884 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003885
Devang Patel7e1e31f2009-07-02 22:43:26 +00003886 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3887 || !DW->ShouldEmitDwarfDebug())
3888 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003889
Devang Patel7e1e31f2009-07-02 22:43:26 +00003890 MachineFunction &MF = DAG.getMachineFunction();
Devang Patele4b27562009-08-28 23:24:31 +00003891 DISubprogram Subprogram(REI.getContext());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003892
3893 if (isInlinedFnEnd(REI, MF.getFunction())) {
3894 // This is end of inlined function. Debugging information for inlined
3895 // function is not handled yet (only supported by FastISel).
3896 if (OptLevel == CodeGenOpt::None) {
3897 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3898 if (ID != 0)
3899 // Returned ID is 0 if this is unbalanced "end of inlined
3900 // scope". This could happen if optimizer eats dbg intrinsics or
3901 // "beginning of inlined scope" is not recoginized due to missing
3902 // location info. In such cases, do ignore this region.end.
3903 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3904 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003905 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003906 return 0;
3907 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003908
Devang Patel7e1e31f2009-07-02 22:43:26 +00003909 unsigned LabelID =
Devang Patele4b27562009-08-28 23:24:31 +00003910 DW->RecordRegionEnd(REI.getContext());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003911 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3912 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003913 return 0;
3914 }
3915 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003916 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003917 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003918 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None))
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003919 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003920
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003921 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003922 // This is a beginning of an inlined function.
3923 if (isInlinedFnStart(FSI, MF.getFunction())) {
3924 if (OptLevel != CodeGenOpt::None)
3925 // FIXME: Debugging informaation for inlined function is only
3926 // supported at CodeGenOpt::Node.
3927 return 0;
3928
Bill Wendlingc677fe52009-05-10 00:10:50 +00003929 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003930 // If llvm.dbg.func.start is seen in a new block before any
3931 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3932 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3933 if (PrevLoc.isUnknown())
3934 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003935
Devang Patel7e1e31f2009-07-02 22:43:26 +00003936 // Record the source line.
3937 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3938
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003939 if (!DW || !DW->ShouldEmitDwarfDebug())
3940 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003941 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
Devang Patele4b27562009-08-28 23:24:31 +00003942 DISubprogram SP(FSI.getSubprogram());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003943 DICompileUnit CU(PrevLocTpl.CompileUnit);
3944 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3945 PrevLocTpl.Line,
3946 PrevLocTpl.Col);
3947 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3948 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003949 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003950 }
3951
Devang Patel07b0ec02009-07-02 00:08:09 +00003952 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003953 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003954
3955 if (!DW || !DW->ShouldEmitDwarfDebug())
3956 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003957 // llvm.dbg.func_start also defines beginning of function scope.
Devang Patele4b27562009-08-28 23:24:31 +00003958 DW->RecordRegionStart(FSI.getSubprogram());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003959 return 0;
3960 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003961 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003962 if (OptLevel != CodeGenOpt::None)
3963 // FIXME: Variable debug info is not supported here.
3964 return 0;
Devang Patel24f20e02009-08-22 17:12:53 +00003965 DwarfWriter *DW = DAG.getDwarfWriter();
3966 if (!DW)
3967 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003968 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3969 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3970 return 0;
3971
3972 Value *Variable = DI.getVariable();
Devang Patel24f20e02009-08-22 17:12:53 +00003973 Value *Address = DI.getAddress();
3974 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
3975 Address = BCI->getOperand(0);
3976 AllocaInst *AI = dyn_cast<AllocaInst>(Address);
3977 // Don't handle byval struct arguments or VLAs, for example.
3978 if (!AI)
3979 return 0;
Devang Patelbd1d6a82009-09-05 00:34:14 +00003980 DenseMap<const AllocaInst*, int>::iterator SI =
3981 FuncInfo.StaticAllocaMap.find(AI);
3982 if (SI == FuncInfo.StaticAllocaMap.end())
3983 return 0; // VLAs.
3984 int FI = SI->second;
Devang Patele4b27562009-08-28 23:24:31 +00003985 DW->RecordVariable(cast<MDNode>(Variable), FI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003986 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003987 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003988 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003989 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003990 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Owen Anderson825b72b2009-08-11 20:47:22 +00003991 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003992 SDValue Ops[1];
3993 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003994 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003995 setValue(&I, Op);
3996 DAG.setRoot(Op.getValue(1));
3997 return 0;
3998 }
3999
4000 case Intrinsic::eh_selector_i32:
4001 case Intrinsic::eh_selector_i64: {
4002 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng7cefd802009-08-14 01:56:37 +00004003 EVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ? MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004004
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004005 if (MMI) {
4006 if (CurMBB->isLandingPad())
4007 AddCatchInfo(I, MMI, CurMBB);
4008 else {
4009#ifndef NDEBUG
4010 FuncInfo.CatchInfoLost.insert(&I);
4011#endif
4012 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4013 unsigned Reg = TLI.getExceptionSelectorRegister();
4014 if (Reg) CurMBB->addLiveIn(Reg);
4015 }
4016
4017 // Insert the EHSELECTION instruction.
Owen Anderson825b72b2009-08-11 20:47:22 +00004018 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004019 SDValue Ops[2];
4020 Ops[0] = getValue(I.getOperand(1));
4021 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004022 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004023 setValue(&I, Op);
4024 DAG.setRoot(Op.getValue(1));
4025 } else {
4026 setValue(&I, DAG.getConstant(0, VT));
4027 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004028
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004029 return 0;
4030 }
4031
4032 case Intrinsic::eh_typeid_for_i32:
4033 case Intrinsic::eh_typeid_for_i64: {
4034 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004035 EVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Owen Anderson825b72b2009-08-11 20:47:22 +00004036 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004037
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004038 if (MMI) {
4039 // Find the type id for the given typeinfo.
4040 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4041
4042 unsigned TypeID = MMI->getTypeIDFor(GV);
4043 setValue(&I, DAG.getConstant(TypeID, VT));
4044 } else {
4045 // Return something different to eh_selector.
4046 setValue(&I, DAG.getConstant(1, VT));
4047 }
4048
4049 return 0;
4050 }
4051
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004052 case Intrinsic::eh_return_i32:
4053 case Intrinsic::eh_return_i64:
4054 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004055 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004056 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004057 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004058 getControlRoot(),
4059 getValue(I.getOperand(1)),
4060 getValue(I.getOperand(2))));
4061 } else {
4062 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4063 }
4064
4065 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004066 case Intrinsic::eh_unwind_init:
4067 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4068 MMI->setCallsUnwindInit(true);
4069 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004070
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004071 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004072
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004073 case Intrinsic::eh_dwarf_cfa: {
Owen Andersone50ed302009-08-10 22:56:29 +00004074 EVT VT = getValue(I.getOperand(1)).getValueType();
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004075 SDValue CfaArg;
4076 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004077 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004078 TLI.getPointerTy(), getValue(I.getOperand(1)));
4079 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004080 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004081 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004082
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004083 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004084 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004085 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004086 TLI.getPointerTy()),
4087 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004088 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004089 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004090 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004091 TLI.getPointerTy(),
4092 DAG.getConstant(0,
4093 TLI.getPointerTy())),
4094 Offset));
4095 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004096 }
Mon P Wang77cdf302008-11-10 20:54:11 +00004097 case Intrinsic::convertff:
4098 case Intrinsic::convertfsi:
4099 case Intrinsic::convertfui:
4100 case Intrinsic::convertsif:
4101 case Intrinsic::convertuif:
4102 case Intrinsic::convertss:
4103 case Intrinsic::convertsu:
4104 case Intrinsic::convertus:
4105 case Intrinsic::convertuu: {
4106 ISD::CvtCode Code = ISD::CVT_INVALID;
4107 switch (Intrinsic) {
4108 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4109 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4110 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4111 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4112 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4113 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4114 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4115 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4116 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4117 }
Owen Andersone50ed302009-08-10 22:56:29 +00004118 EVT DestVT = TLI.getValueType(I.getType());
Mon P Wang77cdf302008-11-10 20:54:11 +00004119 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004120 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004121 DAG.getValueType(DestVT),
4122 DAG.getValueType(getValue(Op1).getValueType()),
4123 getValue(I.getOperand(2)),
4124 getValue(I.getOperand(3)),
4125 Code));
4126 return 0;
4127 }
4128
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004129 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004130 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004131 getValue(I.getOperand(1)).getValueType(),
4132 getValue(I.getOperand(1))));
4133 return 0;
4134 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004135 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004136 getValue(I.getOperand(1)).getValueType(),
4137 getValue(I.getOperand(1)),
4138 getValue(I.getOperand(2))));
4139 return 0;
4140 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004141 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004142 getValue(I.getOperand(1)).getValueType(),
4143 getValue(I.getOperand(1))));
4144 return 0;
4145 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004146 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004147 getValue(I.getOperand(1)).getValueType(),
4148 getValue(I.getOperand(1))));
4149 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004150 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004151 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004152 return 0;
4153 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004154 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004155 return 0;
4156 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004157 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004158 return 0;
4159 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004160 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004161 return 0;
4162 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004163 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004164 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004165 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004166 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004167 return 0;
4168 case Intrinsic::pcmarker: {
4169 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004170 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004171 return 0;
4172 }
4173 case Intrinsic::readcyclecounter: {
4174 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004175 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004176 DAG.getVTList(MVT::i64, MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004177 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004178 setValue(&I, Tmp);
4179 DAG.setRoot(Tmp.getValue(1));
4180 return 0;
4181 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004182 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004183 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004184 getValue(I.getOperand(1)).getValueType(),
4185 getValue(I.getOperand(1))));
4186 return 0;
4187 case Intrinsic::cttz: {
4188 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004189 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004190 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004191 setValue(&I, result);
4192 return 0;
4193 }
4194 case Intrinsic::ctlz: {
4195 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004196 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004197 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004198 setValue(&I, result);
4199 return 0;
4200 }
4201 case Intrinsic::ctpop: {
4202 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004203 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004204 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004205 setValue(&I, result);
4206 return 0;
4207 }
4208 case Intrinsic::stacksave: {
4209 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004210 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004211 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004212 setValue(&I, Tmp);
4213 DAG.setRoot(Tmp.getValue(1));
4214 return 0;
4215 }
4216 case Intrinsic::stackrestore: {
4217 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004218 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004219 return 0;
4220 }
Bill Wendling57344502008-11-18 11:01:33 +00004221 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004222 // Emit code into the DAG to store the stack guard onto the stack.
4223 MachineFunction &MF = DAG.getMachineFunction();
4224 MachineFrameInfo *MFI = MF.getFrameInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004225 EVT PtrTy = TLI.getPointerTy();
Bill Wendlingb2a42982008-11-06 02:29:10 +00004226
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004227 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4228 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004229
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004230 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004231 MFI->setStackProtectorIndex(FI);
4232
4233 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4234
4235 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004236 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004237 PseudoSourceValue::getFixedStack(FI),
4238 0, true);
4239 setValue(&I, Result);
4240 DAG.setRoot(Result);
4241 return 0;
4242 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004243 case Intrinsic::var_annotation:
4244 // Discard annotate attributes
4245 return 0;
4246
4247 case Intrinsic::init_trampoline: {
4248 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4249
4250 SDValue Ops[6];
4251 Ops[0] = getRoot();
4252 Ops[1] = getValue(I.getOperand(1));
4253 Ops[2] = getValue(I.getOperand(2));
4254 Ops[3] = getValue(I.getOperand(3));
4255 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4256 Ops[5] = DAG.getSrcValue(F);
4257
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004258 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004259 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004260 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004261
4262 setValue(&I, Tmp);
4263 DAG.setRoot(Tmp.getValue(1));
4264 return 0;
4265 }
4266
4267 case Intrinsic::gcroot:
4268 if (GFI) {
4269 Value *Alloca = I.getOperand(1);
4270 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004271
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004272 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4273 GFI->addStackRoot(FI->getIndex(), TypeMap);
4274 }
4275 return 0;
4276
4277 case Intrinsic::gcread:
4278 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004279 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004280 return 0;
4281
4282 case Intrinsic::flt_rounds: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004283 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004284 return 0;
4285 }
4286
4287 case Intrinsic::trap: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004288 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004289 return 0;
4290 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004291
Bill Wendlingef375462008-11-21 02:38:44 +00004292 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004293 return implVisitAluOverflow(I, ISD::UADDO);
4294 case Intrinsic::sadd_with_overflow:
4295 return implVisitAluOverflow(I, ISD::SADDO);
4296 case Intrinsic::usub_with_overflow:
4297 return implVisitAluOverflow(I, ISD::USUBO);
4298 case Intrinsic::ssub_with_overflow:
4299 return implVisitAluOverflow(I, ISD::SSUBO);
4300 case Intrinsic::umul_with_overflow:
4301 return implVisitAluOverflow(I, ISD::UMULO);
4302 case Intrinsic::smul_with_overflow:
4303 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004304
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004305 case Intrinsic::prefetch: {
4306 SDValue Ops[4];
4307 Ops[0] = getRoot();
4308 Ops[1] = getValue(I.getOperand(1));
4309 Ops[2] = getValue(I.getOperand(2));
4310 Ops[3] = getValue(I.getOperand(3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004311 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004312 return 0;
4313 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004314
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004315 case Intrinsic::memory_barrier: {
4316 SDValue Ops[6];
4317 Ops[0] = getRoot();
4318 for (int x = 1; x < 6; ++x)
4319 Ops[x] = getValue(I.getOperand(x));
4320
Owen Anderson825b72b2009-08-11 20:47:22 +00004321 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004322 return 0;
4323 }
4324 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004325 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004326 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004327 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004328 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4329 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004330 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004331 getValue(I.getOperand(2)),
4332 getValue(I.getOperand(3)),
4333 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004334 setValue(&I, L);
4335 DAG.setRoot(L.getValue(1));
4336 return 0;
4337 }
4338 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004339 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004340 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004341 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004342 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004343 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004344 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004345 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004346 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004348 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004349 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004350 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004351 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004352 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004353 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004354 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004355 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004356 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004357 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004358 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004359 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004360 }
4361}
4362
Dan Gohman98ca4f22009-08-05 01:29:28 +00004363/// Test if the given instruction is in a position to be optimized
4364/// with a tail-call. This roughly means that it's in a block with
4365/// a return and there's nothing that needs to be scheduled
4366/// between it and the return.
4367///
4368/// This function only tests target-independent requirements.
4369/// For target-dependent requirements, a target should override
4370/// TargetLowering::IsEligibleForTailCallOptimization.
4371///
4372static bool
4373isInTailCallPosition(const Instruction *I, Attributes RetAttr,
4374 const TargetLowering &TLI) {
4375 const BasicBlock *ExitBB = I->getParent();
4376 const TerminatorInst *Term = ExitBB->getTerminator();
4377 const ReturnInst *Ret = dyn_cast<ReturnInst>(Term);
4378 const Function *F = ExitBB->getParent();
4379
4380 // The block must end in a return statement or an unreachable.
4381 if (!Ret && !isa<UnreachableInst>(Term)) return false;
4382
4383 // If I will have a chain, make sure no other instruction that will have a
4384 // chain interposes between I and the return.
4385 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
4386 !I->isSafeToSpeculativelyExecute())
4387 for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ;
4388 --BBI) {
4389 if (&*BBI == I)
4390 break;
4391 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
4392 !BBI->isSafeToSpeculativelyExecute())
4393 return false;
4394 }
4395
4396 // If the block ends with a void return or unreachable, it doesn't matter
4397 // what the call's return type is.
4398 if (!Ret || Ret->getNumOperands() == 0) return true;
4399
4400 // Conservatively require the attributes of the call to match those of
4401 // the return.
4402 if (F->getAttributes().getRetAttributes() != RetAttr)
4403 return false;
4404
4405 // Otherwise, make sure the unmodified return value of I is the return value.
4406 for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ;
4407 U = dyn_cast<Instruction>(U->getOperand(0))) {
4408 if (!U)
4409 return false;
4410 if (!U->hasOneUse())
4411 return false;
4412 if (U == I)
4413 break;
4414 // Check for a truly no-op truncate.
4415 if (isa<TruncInst>(U) &&
4416 TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType()))
4417 continue;
4418 // Check for a truly no-op bitcast.
4419 if (isa<BitCastInst>(U) &&
4420 (U->getOperand(0)->getType() == U->getType() ||
4421 (isa<PointerType>(U->getOperand(0)->getType()) &&
4422 isa<PointerType>(U->getType()))))
4423 continue;
4424 // Otherwise it's not a true no-op.
4425 return false;
4426 }
4427
4428 return true;
4429}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004430
4431void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004432 bool isTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004433 MachineBasicBlock *LandingPad) {
4434 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4435 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4436 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4437 unsigned BeginLabel = 0, EndLabel = 0;
4438
4439 TargetLowering::ArgListTy Args;
4440 TargetLowering::ArgListEntry Entry;
4441 Args.reserve(CS.arg_size());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004442 unsigned j = 1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004443 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Dan Gohman98ca4f22009-08-05 01:29:28 +00004444 i != e; ++i, ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004445 SDValue ArgNode = getValue(*i);
4446 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4447
4448 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004449 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4450 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4451 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4452 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4453 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4454 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004455 Entry.Alignment = CS.getParamAlignment(attrInd);
4456 Args.push_back(Entry);
4457 }
4458
4459 if (LandingPad && MMI) {
4460 // Insert a label before the invoke call to mark the try range. This can be
4461 // used to detect deletion of the invoke via the MachineModuleInfo.
4462 BeginLabel = MMI->NextLabelID();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00004463
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004464 // Both PendingLoads and PendingExports must be flushed here;
4465 // this call might not return.
4466 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004467 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4468 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004469 }
4470
Dan Gohman98ca4f22009-08-05 01:29:28 +00004471 // Check if target-independent constraints permit a tail call here.
4472 // Target-dependent constraints are checked within TLI.LowerCallTo.
4473 if (isTailCall &&
4474 !isInTailCallPosition(CS.getInstruction(),
4475 CS.getAttributes().getRetAttributes(),
4476 TLI))
4477 isTailCall = false;
4478
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004479 std::pair<SDValue,SDValue> Result =
4480 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004481 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004482 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004483 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004484 CS.getCallingConv(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00004485 isTailCall,
4486 !CS.getInstruction()->use_empty(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004487 Callee, Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004488 assert((isTailCall || Result.second.getNode()) &&
4489 "Non-null chain expected with non-tail call!");
4490 assert((Result.second.getNode() || !Result.first.getNode()) &&
4491 "Null value expected with tail call!");
4492 if (Result.first.getNode())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004493 setValue(CS.getInstruction(), Result.first);
Dan Gohman98ca4f22009-08-05 01:29:28 +00004494 // As a special case, a null chain means that a tail call has
4495 // been emitted and the DAG root is already updated.
4496 if (Result.second.getNode())
4497 DAG.setRoot(Result.second);
4498 else
4499 HasTailCall = true;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004500
4501 if (LandingPad && MMI) {
4502 // Insert a label at the end of the invoke call to mark the try range. This
4503 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4504 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004505 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4506 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004507
4508 // Inform MachineModuleInfo of range.
4509 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4510 }
4511}
4512
4513
4514void SelectionDAGLowering::visitCall(CallInst &I) {
4515 const char *RenameFn = 0;
4516 if (Function *F = I.getCalledFunction()) {
4517 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004518 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4519 if (II) {
4520 if (unsigned IID = II->getIntrinsicID(F)) {
4521 RenameFn = visitIntrinsicCall(I, IID);
4522 if (!RenameFn)
4523 return;
4524 }
4525 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004526 if (unsigned IID = F->getIntrinsicID()) {
4527 RenameFn = visitIntrinsicCall(I, IID);
4528 if (!RenameFn)
4529 return;
4530 }
4531 }
4532
4533 // Check for well-known libc/libm calls. If the function is internal, it
4534 // can't be a library call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004535 if (!F->hasLocalLinkage() && F->hasName()) {
4536 StringRef Name = F->getName();
4537 if (Name == "copysign" || Name == "copysignf") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004538 if (I.getNumOperands() == 3 && // Basic sanity checks.
4539 I.getOperand(1)->getType()->isFloatingPoint() &&
4540 I.getType() == I.getOperand(1)->getType() &&
4541 I.getType() == I.getOperand(2)->getType()) {
4542 SDValue LHS = getValue(I.getOperand(1));
4543 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004544 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004545 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004546 return;
4547 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004548 } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004549 if (I.getNumOperands() == 2 && // Basic sanity checks.
4550 I.getOperand(1)->getType()->isFloatingPoint() &&
4551 I.getType() == I.getOperand(1)->getType()) {
4552 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004553 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004554 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004555 return;
4556 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004557 } else if (Name == "sin" || Name == "sinf" || Name == "sinl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004558 if (I.getNumOperands() == 2 && // Basic sanity checks.
4559 I.getOperand(1)->getType()->isFloatingPoint() &&
4560 I.getType() == I.getOperand(1)->getType()) {
4561 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004562 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004563 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004564 return;
4565 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004566 } else if (Name == "cos" || Name == "cosf" || Name == "cosl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004567 if (I.getNumOperands() == 2 && // Basic sanity checks.
4568 I.getOperand(1)->getType()->isFloatingPoint() &&
4569 I.getType() == I.getOperand(1)->getType()) {
4570 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004571 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004572 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004573 return;
4574 }
4575 }
4576 }
4577 } else if (isa<InlineAsm>(I.getOperand(0))) {
4578 visitInlineAsm(&I);
4579 return;
4580 }
4581
4582 SDValue Callee;
4583 if (!RenameFn)
4584 Callee = getValue(I.getOperand(0));
4585 else
Bill Wendling056292f2008-09-16 21:48:12 +00004586 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004587
Dan Gohman98ca4f22009-08-05 01:29:28 +00004588 // Check if we can potentially perform a tail call. More detailed
4589 // checking is be done within LowerCallTo, after more information
4590 // about the call is known.
4591 bool isTailCall = PerformTailCallOpt && I.isTailCall();
4592
4593 LowerCallTo(&I, Callee, isTailCall);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004594}
4595
4596
4597/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004598/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004599/// Chain/Flag as the input and updates them for the output Chain/Flag.
4600/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004601SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004602 SDValue &Chain,
4603 SDValue *Flag) const {
4604 // Assemble the legal parts into the final values.
4605 SmallVector<SDValue, 4> Values(ValueVTs.size());
4606 SmallVector<SDValue, 8> Parts;
4607 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4608 // Copy the legal parts from the registers.
Owen Andersone50ed302009-08-10 22:56:29 +00004609 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00004610 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004611 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004612
4613 Parts.resize(NumRegs);
4614 for (unsigned i = 0; i != NumRegs; ++i) {
4615 SDValue P;
4616 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004617 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004618 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004619 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004620 *Flag = P.getValue(2);
4621 }
4622 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004623
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004624 // If the source register was virtual and if we know something about it,
4625 // add an assert node.
4626 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4627 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4628 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4629 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4630 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4631 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004632
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004633 unsigned RegSize = RegisterVT.getSizeInBits();
4634 unsigned NumSignBits = LOI.NumSignBits;
4635 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004636
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004637 // FIXME: We capture more information than the dag can represent. For
4638 // now, just use the tightest assertzext/assertsext possible.
4639 bool isSExt = true;
Owen Anderson825b72b2009-08-11 20:47:22 +00004640 EVT FromVT(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004641 if (NumSignBits == RegSize)
Owen Anderson825b72b2009-08-11 20:47:22 +00004642 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643 else if (NumZeroBits >= RegSize-1)
Owen Anderson825b72b2009-08-11 20:47:22 +00004644 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004645 else if (NumSignBits > RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004646 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004647 else if (NumZeroBits >= RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004648 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004649 else if (NumSignBits > RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004650 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004651 else if (NumZeroBits >= RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004652 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004653 else if (NumSignBits > RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004654 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004655 else if (NumZeroBits >= RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004656 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004657
Owen Anderson825b72b2009-08-11 20:47:22 +00004658 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004659 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004660 RegisterVT, P, DAG.getValueType(FromVT));
4661
4662 }
4663 }
4664 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004665
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004666 Parts[i] = P;
4667 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004668
Scott Michelfdc40a02009-02-17 22:15:04 +00004669 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004670 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004671 Part += NumRegs;
4672 Parts.clear();
4673 }
4674
Dale Johannesen66978ee2009-01-31 02:22:37 +00004675 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004676 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4677 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004678}
4679
4680/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004681/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004682/// Chain/Flag as the input and updates them for the output Chain/Flag.
4683/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004684void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004685 SDValue &Chain, SDValue *Flag) const {
4686 // Get the list of the values's legal parts.
4687 unsigned NumRegs = Regs.size();
4688 SmallVector<SDValue, 8> Parts(NumRegs);
4689 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00004690 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00004691 unsigned NumParts = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004692 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004693
Dale Johannesen66978ee2009-01-31 02:22:37 +00004694 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004695 &Parts[Part], NumParts, RegisterVT);
4696 Part += NumParts;
4697 }
4698
4699 // Copy the parts into the registers.
4700 SmallVector<SDValue, 8> Chains(NumRegs);
4701 for (unsigned i = 0; i != NumRegs; ++i) {
4702 SDValue Part;
4703 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004704 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004705 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004706 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004707 *Flag = Part.getValue(1);
4708 }
4709 Chains[i] = Part.getValue(0);
4710 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004711
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004712 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004713 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004714 // flagged to it. That is the CopyToReg nodes and the user are considered
4715 // a single scheduling unit. If we create a TokenFactor and return it as
4716 // chain, then the TokenFactor is both a predecessor (operand) of the
4717 // user as well as a successor (the TF operands are flagged to the user).
4718 // c1, f1 = CopyToReg
4719 // c2, f2 = CopyToReg
4720 // c3 = TokenFactor c1, c2
4721 // ...
4722 // = op c3, ..., f2
4723 Chain = Chains[NumRegs-1];
4724 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004725 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004726}
4727
4728/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004729/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004730/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004731void RegsForValue::AddInlineAsmOperands(unsigned Code,
4732 bool HasMatching,unsigned MatchingIdx,
4733 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004734 std::vector<SDValue> &Ops) const {
Owen Andersone50ed302009-08-10 22:56:29 +00004735 EVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004736 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4737 unsigned Flag = Code | (Regs.size() << 3);
4738 if (HasMatching)
4739 Flag |= 0x80000000 | (MatchingIdx << 16);
4740 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004741 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Anderson23b9b192009-08-12 00:36:31 +00004742 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVTs[Value]);
Owen Andersone50ed302009-08-10 22:56:29 +00004743 EVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004744 for (unsigned i = 0; i != NumRegs; ++i) {
4745 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004746 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004747 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004748 }
4749}
4750
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004751/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004752/// i.e. it isn't a stack pointer or some other special register, return the
4753/// register class for the register. Otherwise, return null.
4754static const TargetRegisterClass *
4755isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4756 const TargetLowering &TLI,
4757 const TargetRegisterInfo *TRI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004758 EVT FoundVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004759 const TargetRegisterClass *FoundRC = 0;
4760 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4761 E = TRI->regclass_end(); RCI != E; ++RCI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004762 EVT ThisVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004763
4764 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004765 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004766 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4767 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4768 I != E; ++I) {
4769 if (TLI.isTypeLegal(*I)) {
4770 // If we have already found this register in a different register class,
4771 // choose the one with the largest VT specified. For example, on
4772 // PowerPC, we favor f64 register classes over f32.
Owen Anderson825b72b2009-08-11 20:47:22 +00004773 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004774 ThisVT = *I;
4775 break;
4776 }
4777 }
4778 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004779
Owen Anderson825b72b2009-08-11 20:47:22 +00004780 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004781
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004782 // NOTE: This isn't ideal. In particular, this might allocate the
4783 // frame pointer in functions that need it (due to them not being taken
4784 // out of allocation, because a variable sized allocation hasn't been seen
4785 // yet). This is a slight code pessimization, but should still work.
4786 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4787 E = RC->allocation_order_end(MF); I != E; ++I)
4788 if (*I == Reg) {
4789 // We found a matching register class. Keep looking at others in case
4790 // we find one with larger registers that this physreg is also in.
4791 FoundRC = RC;
4792 FoundVT = ThisVT;
4793 break;
4794 }
4795 }
4796 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004797}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004798
4799
4800namespace llvm {
4801/// AsmOperandInfo - This contains information for each constraint that we are
4802/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004803class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004804 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004805public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004806 /// CallOperand - If this is the result output operand or a clobber
4807 /// this is null, otherwise it is the incoming operand to the CallInst.
4808 /// This gets modified as the asm is processed.
4809 SDValue CallOperand;
4810
4811 /// AssignedRegs - If this is a register or register class operand, this
4812 /// contains the set of register corresponding to the operand.
4813 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004814
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004815 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4816 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4817 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004818
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004819 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4820 /// busy in OutputRegs/InputRegs.
4821 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004822 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004823 std::set<unsigned> &InputRegs,
4824 const TargetRegisterInfo &TRI) const {
4825 if (isOutReg) {
4826 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4827 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4828 }
4829 if (isInReg) {
4830 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4831 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4832 }
4833 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004834
Owen Andersone50ed302009-08-10 22:56:29 +00004835 /// getCallOperandValEVT - Return the EVT of the Value* that this operand
Chris Lattner81249c92008-10-17 17:05:25 +00004836 /// corresponds to. If there is no Value* for this operand, it returns
Owen Anderson825b72b2009-08-11 20:47:22 +00004837 /// MVT::Other.
Owen Anderson1d0be152009-08-13 21:58:54 +00004838 EVT getCallOperandValEVT(LLVMContext &Context,
4839 const TargetLowering &TLI,
Chris Lattner81249c92008-10-17 17:05:25 +00004840 const TargetData *TD) const {
Owen Anderson825b72b2009-08-11 20:47:22 +00004841 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004842
Chris Lattner81249c92008-10-17 17:05:25 +00004843 if (isa<BasicBlock>(CallOperandVal))
4844 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004845
Chris Lattner81249c92008-10-17 17:05:25 +00004846 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004847
Chris Lattner81249c92008-10-17 17:05:25 +00004848 // If this is an indirect operand, the operand is a pointer to the
4849 // accessed type.
4850 if (isIndirect)
4851 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004852
Chris Lattner81249c92008-10-17 17:05:25 +00004853 // If OpTy is not a single value, it may be a struct/union that we
4854 // can tile with integers.
4855 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4856 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4857 switch (BitSize) {
4858 default: break;
4859 case 1:
4860 case 8:
4861 case 16:
4862 case 32:
4863 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004864 case 128:
Owen Anderson1d0be152009-08-13 21:58:54 +00004865 OpTy = IntegerType::get(Context, BitSize);
Chris Lattner81249c92008-10-17 17:05:25 +00004866 break;
4867 }
4868 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004869
Chris Lattner81249c92008-10-17 17:05:25 +00004870 return TLI.getValueType(OpTy, true);
4871 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004872
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004873private:
4874 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4875 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004876 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004877 const TargetRegisterInfo &TRI) {
4878 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4879 Regs.insert(Reg);
4880 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4881 for (; *Aliases; ++Aliases)
4882 Regs.insert(*Aliases);
4883 }
4884};
4885} // end llvm namespace.
4886
4887
4888/// GetRegistersForValue - Assign registers (virtual or physical) for the
4889/// specified operand. We prefer to assign virtual registers, to allow the
4890/// register allocator handle the assignment process. However, if the asm uses
4891/// features that we can't model on machineinstrs, we have SDISel do the
4892/// allocation. This produces generally horrible, but correct, code.
4893///
4894/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004895/// Input and OutputRegs are the set of already allocated physical registers.
4896///
4897void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004898GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004899 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004900 std::set<unsigned> &InputRegs) {
Dan Gohman0d24bfb2009-08-15 02:06:22 +00004901 LLVMContext &Context = FuncInfo.Fn->getContext();
Owen Anderson23b9b192009-08-12 00:36:31 +00004902
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004903 // Compute whether this value requires an input register, an output register,
4904 // or both.
4905 bool isOutReg = false;
4906 bool isInReg = false;
4907 switch (OpInfo.Type) {
4908 case InlineAsm::isOutput:
4909 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004910
4911 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004912 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004913 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004914 break;
4915 case InlineAsm::isInput:
4916 isInReg = true;
4917 isOutReg = false;
4918 break;
4919 case InlineAsm::isClobber:
4920 isOutReg = true;
4921 isInReg = true;
4922 break;
4923 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004924
4925
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004926 MachineFunction &MF = DAG.getMachineFunction();
4927 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004928
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004929 // If this is a constraint for a single physreg, or a constraint for a
4930 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004931 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004932 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4933 OpInfo.ConstraintVT);
4934
4935 unsigned NumRegs = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00004936 if (OpInfo.ConstraintVT != MVT::Other) {
Chris Lattner01426e12008-10-21 00:45:36 +00004937 // If this is a FP input in an integer register (or visa versa) insert a bit
4938 // cast of the input value. More generally, handle any case where the input
4939 // value disagrees with the register class we plan to stick this in.
4940 if (OpInfo.Type == InlineAsm::isInput &&
4941 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
Owen Andersone50ed302009-08-10 22:56:29 +00004942 // Try to convert to the first EVT that the reg class contains. If the
Chris Lattner01426e12008-10-21 00:45:36 +00004943 // types are identical size, use a bitcast to convert (e.g. two differing
4944 // vector types).
Owen Andersone50ed302009-08-10 22:56:29 +00004945 EVT RegVT = *PhysReg.second->vt_begin();
Chris Lattner01426e12008-10-21 00:45:36 +00004946 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004947 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004948 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004949 OpInfo.ConstraintVT = RegVT;
4950 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4951 // If the input is a FP value and we want it in FP registers, do a
4952 // bitcast to the corresponding integer type. This turns an f64 value
4953 // into i64, which can be passed with two i32 values on a 32-bit
4954 // machine.
Owen Anderson23b9b192009-08-12 00:36:31 +00004955 RegVT = EVT::getIntegerVT(Context,
4956 OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004957 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004958 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004959 OpInfo.ConstraintVT = RegVT;
4960 }
4961 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004962
Owen Anderson23b9b192009-08-12 00:36:31 +00004963 NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004964 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004965
Owen Andersone50ed302009-08-10 22:56:29 +00004966 EVT RegVT;
4967 EVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004968
4969 // If this is a constraint for a specific physical register, like {r17},
4970 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004971 if (unsigned AssignedReg = PhysReg.first) {
4972 const TargetRegisterClass *RC = PhysReg.second;
Owen Anderson825b72b2009-08-11 20:47:22 +00004973 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004974 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004975
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004976 // Get the actual register value type. This is important, because the user
4977 // may have asked for (e.g.) the AX register in i32 type. We need to
4978 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004979 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004980
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004981 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004982 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004983
4984 // If this is an expanded reference, add the rest of the regs to Regs.
4985 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004986 TargetRegisterClass::iterator I = RC->begin();
4987 for (; *I != AssignedReg; ++I)
4988 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004989
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004990 // Already added the first reg.
4991 --NumRegs; ++I;
4992 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004993 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004994 Regs.push_back(*I);
4995 }
4996 }
4997 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4998 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4999 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5000 return;
5001 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005002
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005003 // Otherwise, if this was a reference to an LLVM register class, create vregs
5004 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00005005 if (const TargetRegisterClass *RC = PhysReg.second) {
5006 RegVT = *RC->vt_begin();
Owen Anderson825b72b2009-08-11 20:47:22 +00005007 if (OpInfo.ConstraintVT == MVT::Other)
Evan Chengfb112882009-03-23 08:01:15 +00005008 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005009
Evan Chengfb112882009-03-23 08:01:15 +00005010 // Create the appropriate number of virtual registers.
5011 MachineRegisterInfo &RegInfo = MF.getRegInfo();
5012 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00005013 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005014
Evan Chengfb112882009-03-23 08:01:15 +00005015 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5016 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005017 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005018
5019 // This is a reference to a register class that doesn't directly correspond
5020 // to an LLVM register class. Allocate NumRegs consecutive, available,
5021 // registers from the class.
5022 std::vector<unsigned> RegClassRegs
5023 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
5024 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005025
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005026 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5027 unsigned NumAllocated = 0;
5028 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
5029 unsigned Reg = RegClassRegs[i];
5030 // See if this register is available.
5031 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
5032 (isInReg && InputRegs.count(Reg))) { // Already used.
5033 // Make sure we find consecutive registers.
5034 NumAllocated = 0;
5035 continue;
5036 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005037
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005038 // Check to see if this register is allocatable (i.e. don't give out the
5039 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005040 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
5041 if (!RC) { // Couldn't allocate this register.
5042 // Reset NumAllocated to make sure we return consecutive registers.
5043 NumAllocated = 0;
5044 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005045 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005046
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005047 // Okay, this register is good, we can use it.
5048 ++NumAllocated;
5049
5050 // If we allocated enough consecutive registers, succeed.
5051 if (NumAllocated == NumRegs) {
5052 unsigned RegStart = (i-NumAllocated)+1;
5053 unsigned RegEnd = i+1;
5054 // Mark all of the allocated registers used.
5055 for (unsigned i = RegStart; i != RegEnd; ++i)
5056 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005057
5058 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005059 OpInfo.ConstraintVT);
5060 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5061 return;
5062 }
5063 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005064
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005065 // Otherwise, we couldn't allocate enough registers for this.
5066}
5067
Evan Chengda43bcf2008-09-24 00:05:32 +00005068/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5069/// processed uses a memory 'm' constraint.
5070static bool
5071hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005072 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005073 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5074 InlineAsm::ConstraintInfo &CI = CInfos[i];
5075 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5076 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5077 if (CType == TargetLowering::C_Memory)
5078 return true;
5079 }
Chris Lattner6c147292009-04-30 00:48:50 +00005080
5081 // Indirect operand accesses access memory.
5082 if (CI.isIndirect)
5083 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005084 }
5085
5086 return false;
5087}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005088
5089/// visitInlineAsm - Handle a call to an InlineAsm object.
5090///
5091void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5092 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5093
5094 /// ConstraintOperands - Information about all of the constraints.
5095 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005096
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005097 std::set<unsigned> OutputRegs, InputRegs;
5098
5099 // Do a prepass over the constraints, canonicalizing them, and building up the
5100 // ConstraintOperands list.
5101 std::vector<InlineAsm::ConstraintInfo>
5102 ConstraintInfos = IA->ParseConstraints();
5103
Evan Chengda43bcf2008-09-24 00:05:32 +00005104 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005105
5106 SDValue Chain, Flag;
5107
5108 // We won't need to flush pending loads if this asm doesn't touch
5109 // memory and is nonvolatile.
5110 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005111 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005112 else
5113 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005114
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005115 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5116 unsigned ResNo = 0; // ResNo - The result number of the next output.
5117 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5118 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5119 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005120
Owen Anderson825b72b2009-08-11 20:47:22 +00005121 EVT OpVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005122
5123 // Compute the value type for each operand.
5124 switch (OpInfo.Type) {
5125 case InlineAsm::isOutput:
5126 // Indirect outputs just consume an argument.
5127 if (OpInfo.isIndirect) {
5128 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5129 break;
5130 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005131
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005132 // The return value of the call is this value. As such, there is no
5133 // corresponding argument.
Owen Anderson1d0be152009-08-13 21:58:54 +00005134 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
5135 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005136 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5137 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5138 } else {
5139 assert(ResNo == 0 && "Asm only has one result!");
5140 OpVT = TLI.getValueType(CS.getType());
5141 }
5142 ++ResNo;
5143 break;
5144 case InlineAsm::isInput:
5145 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5146 break;
5147 case InlineAsm::isClobber:
5148 // Nothing to do.
5149 break;
5150 }
5151
5152 // If this is an input or an indirect output, process the call argument.
5153 // BasicBlocks are labels, currently appearing only in asm's.
5154 if (OpInfo.CallOperandVal) {
Dale Johannesen5339c552009-07-20 23:27:39 +00005155 // Strip bitcasts, if any. This mostly comes up for functions.
Dale Johannesen76711242009-08-06 22:45:51 +00005156 OpInfo.CallOperandVal = OpInfo.CallOperandVal->stripPointerCasts();
5157
Chris Lattner81249c92008-10-17 17:05:25 +00005158 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005159 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005160 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005161 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005162 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005163
Owen Anderson1d0be152009-08-13 21:58:54 +00005164 OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005165 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005166
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005167 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005168 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005169
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005170 // Second pass over the constraints: compute which constraint option to use
5171 // and assign registers to constraints that want a specific physreg.
5172 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5173 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005174
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005175 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005176 // matching input. If their types mismatch, e.g. one is an integer, the
5177 // other is floating point, or their sizes are different, flag it as an
5178 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005179 if (OpInfo.hasMatchingInput()) {
5180 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5181 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005182 if ((OpInfo.ConstraintVT.isInteger() !=
5183 Input.ConstraintVT.isInteger()) ||
5184 (OpInfo.ConstraintVT.getSizeInBits() !=
5185 Input.ConstraintVT.getSizeInBits())) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005186 llvm_report_error("Unsupported asm: input constraint"
Torok Edwin7d696d82009-07-11 13:10:19 +00005187 " with a matching output constraint of incompatible"
5188 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005189 }
5190 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005191 }
5192 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005193
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005194 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005195 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005196
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005197 // If this is a memory input, and if the operand is not indirect, do what we
5198 // need to to provide an address for the memory input.
5199 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5200 !OpInfo.isIndirect) {
5201 assert(OpInfo.Type == InlineAsm::isInput &&
5202 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005203
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005204 // Memory operands really want the address of the value. If we don't have
5205 // an indirect input, put it in the constpool if we can, otherwise spill
5206 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005207
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005208 // If the operand is a float, integer, or vector constant, spill to a
5209 // constant pool entry to get its address.
5210 Value *OpVal = OpInfo.CallOperandVal;
5211 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5212 isa<ConstantVector>(OpVal)) {
5213 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5214 TLI.getPointerTy());
5215 } else {
5216 // Otherwise, create a stack slot and emit a store to it before the
5217 // asm.
5218 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005219 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005220 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5221 MachineFunction &MF = DAG.getMachineFunction();
5222 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5223 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005224 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005225 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005226 OpInfo.CallOperand = StackSlot;
5227 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005228
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005229 // There is no longer a Value* corresponding to this operand.
5230 OpInfo.CallOperandVal = 0;
5231 // It is now an indirect operand.
5232 OpInfo.isIndirect = true;
5233 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005234
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005235 // If this constraint is for a specific register, allocate it before
5236 // anything else.
5237 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005238 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005239 }
5240 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005241
5242
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005243 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005244 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005245 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5246 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005247
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005248 // C_Register operands have already been allocated, Other/Memory don't need
5249 // to be.
5250 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005251 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005252 }
5253
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005254 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5255 std::vector<SDValue> AsmNodeOperands;
5256 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5257 AsmNodeOperands.push_back(
Owen Anderson825b72b2009-08-11 20:47:22 +00005258 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005259
5260
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005261 // Loop over all of the inputs, copying the operand values into the
5262 // appropriate registers and processing the output regs.
5263 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005264
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005265 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5266 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005267
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005268 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5269 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5270
5271 switch (OpInfo.Type) {
5272 case InlineAsm::isOutput: {
5273 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5274 OpInfo.ConstraintType != TargetLowering::C_Register) {
5275 // Memory output, or 'other' output (e.g. 'X' constraint).
5276 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5277
5278 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005279 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5280 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005281 TLI.getPointerTy()));
5282 AsmNodeOperands.push_back(OpInfo.CallOperand);
5283 break;
5284 }
5285
5286 // Otherwise, this is a register or register class output.
5287
5288 // Copy the output from the appropriate register. Find a register that
5289 // we can use.
5290 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005291 llvm_report_error("Couldn't allocate output reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005292 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005293 }
5294
5295 // If this is an indirect operand, store through the pointer after the
5296 // asm.
5297 if (OpInfo.isIndirect) {
5298 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5299 OpInfo.CallOperandVal));
5300 } else {
5301 // This is the result value of the call.
Owen Anderson1d0be152009-08-13 21:58:54 +00005302 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
5303 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005304 // Concatenate this output onto the outputs list.
5305 RetValRegs.append(OpInfo.AssignedRegs);
5306 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005307
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005308 // Add information to the INLINEASM node to know that this register is
5309 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005310 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5311 6 /* EARLYCLOBBER REGDEF */ :
5312 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005313 false,
5314 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005315 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005316 break;
5317 }
5318 case InlineAsm::isInput: {
5319 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005320
Chris Lattner6bdcda32008-10-17 16:47:46 +00005321 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005322 // If this is required to match an output register we have already set,
5323 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005324 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005325
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005326 // Scan until we find the definition we already emitted of this operand.
5327 // When we find it, create a RegsForValue operand.
5328 unsigned CurOp = 2; // The first operand.
5329 for (; OperandNo; --OperandNo) {
5330 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005331 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005332 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005333 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5334 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5335 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005336 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005337 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005338 }
5339
Evan Cheng697cbbf2009-03-20 18:03:34 +00005340 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005341 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005342 if ((OpFlag & 7) == 2 /*REGDEF*/
5343 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5344 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005345 if (OpInfo.isIndirect) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005346 llvm_report_error("Don't know how to handle tied indirect "
Torok Edwin7d696d82009-07-11 13:10:19 +00005347 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005348 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005349 RegsForValue MatchedRegs;
5350 MatchedRegs.TLI = &TLI;
5351 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Owen Andersone50ed302009-08-10 22:56:29 +00005352 EVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
Evan Chengfb112882009-03-23 08:01:15 +00005353 MatchedRegs.RegVTs.push_back(RegVT);
5354 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005355 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005356 i != e; ++i)
5357 MatchedRegs.Regs.
5358 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005359
5360 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005361 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5362 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005363 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5364 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005365 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005366 break;
5367 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005368 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5369 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5370 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005371 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005372 // See InlineAsm.h isUseOperandTiedToDef.
5373 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005374 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005375 TLI.getPointerTy()));
5376 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5377 break;
5378 }
5379 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005380
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005381 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005382 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005383 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005384
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005385 std::vector<SDValue> Ops;
5386 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005387 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005388 if (Ops.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005389 llvm_report_error("Invalid operand for inline asm"
Torok Edwin7d696d82009-07-11 13:10:19 +00005390 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005391 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005392
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005393 // Add information to the INLINEASM node to know about this input.
5394 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005395 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005396 TLI.getPointerTy()));
5397 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5398 break;
5399 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5400 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5401 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5402 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005403
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005404 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005405 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5406 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005407 TLI.getPointerTy()));
5408 AsmNodeOperands.push_back(InOperandVal);
5409 break;
5410 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005411
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005412 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5413 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5414 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005415 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005416 "Don't know how to handle indirect register inputs yet!");
5417
5418 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005419 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005420 llvm_report_error("Couldn't allocate input reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005421 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005422 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005423
Dale Johannesen66978ee2009-01-31 02:22:37 +00005424 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5425 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005426
Evan Cheng697cbbf2009-03-20 18:03:34 +00005427 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005428 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005429 break;
5430 }
5431 case InlineAsm::isClobber: {
5432 // Add the clobbered value to the operand list, so that the register
5433 // allocator is aware that the physreg got clobbered.
5434 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005435 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005436 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005437 break;
5438 }
5439 }
5440 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005441
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005442 // Finish up input operands.
5443 AsmNodeOperands[0] = Chain;
5444 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005445
Dale Johannesen66978ee2009-01-31 02:22:37 +00005446 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005447 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005448 &AsmNodeOperands[0], AsmNodeOperands.size());
5449 Flag = Chain.getValue(1);
5450
5451 // If this asm returns a register value, copy the result from that register
5452 // and set it as the value of the call.
5453 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005454 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005455 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005456
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005457 // FIXME: Why don't we do this for inline asms with MRVs?
5458 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
Owen Andersone50ed302009-08-10 22:56:29 +00005459 EVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005460
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005461 // If any of the results of the inline asm is a vector, it may have the
5462 // wrong width/num elts. This can happen for register classes that can
5463 // contain multiple different value types. The preg or vreg allocated may
5464 // not have the same VT as was expected. Convert it to the right type
5465 // with bit_convert.
5466 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005467 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005468 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005469
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005470 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005471 ResultType.isInteger() && Val.getValueType().isInteger()) {
5472 // If a result value was tied to an input value, the computed result may
5473 // have a wider width than the expected result. Extract the relevant
5474 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005475 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005476 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005477
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005478 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005479 }
Dan Gohman95915732008-10-18 01:03:45 +00005480
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005481 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005482 // Don't need to use this as a chain in this case.
5483 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5484 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005485 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005486
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005487 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005488
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005489 // Process indirect outputs, first output all of the flagged copies out of
5490 // physregs.
5491 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5492 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5493 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005494 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5495 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005496 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005497
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005498 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005499
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005500 // Emit the non-flagged stores from the physregs.
5501 SmallVector<SDValue, 8> OutChains;
5502 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005503 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005504 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005505 getValue(StoresToEmit[i].second),
5506 StoresToEmit[i].second, 0));
5507 if (!OutChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00005508 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005509 &OutChains[0], OutChains.size());
5510 DAG.setRoot(Chain);
5511}
5512
5513
5514void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5515 SDValue Src = getValue(I.getOperand(0));
5516
Chris Lattner0b18e592009-03-17 19:36:00 +00005517 // Scale up by the type size in the original i32 type width. Various
5518 // mid-level optimizers may make assumptions about demanded bits etc from the
5519 // i32-ness of the optimizer: we do not want to promote to i64 and then
5520 // multiply on 64-bit targets.
5521 // FIXME: Malloc inst should go away: PR715.
Duncan Sands777d2302009-05-09 07:06:46 +00005522 uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType());
Chris Lattner50340f62009-07-23 21:26:18 +00005523 if (ElementSize != 1) {
5524 // Src is always 32-bits, make sure the constant fits.
Owen Anderson825b72b2009-08-11 20:47:22 +00005525 assert(Src.getValueType() == MVT::i32);
Chris Lattner50340f62009-07-23 21:26:18 +00005526 ElementSize = (uint32_t)ElementSize;
Chris Lattner0b18e592009-03-17 19:36:00 +00005527 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5528 Src, DAG.getConstant(ElementSize, Src.getValueType()));
Chris Lattner50340f62009-07-23 21:26:18 +00005529 }
Chris Lattner0b18e592009-03-17 19:36:00 +00005530
Owen Andersone50ed302009-08-10 22:56:29 +00005531 EVT IntPtr = TLI.getPointerTy();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005532
5533 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005534 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005535 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005536 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005537
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005538 TargetLowering::ArgListTy Args;
5539 TargetLowering::ArgListEntry Entry;
5540 Entry.Node = Src;
Owen Anderson1d0be152009-08-13 21:58:54 +00005541 Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005542 Args.push_back(Entry);
5543
Dan Gohman98ca4f22009-08-05 01:29:28 +00005544 bool isTailCall = PerformTailCallOpt &&
5545 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005546 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005547 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005548 0, CallingConv::C, isTailCall,
5549 /*isReturnValueUsed=*/true,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005550 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005551 Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005552 if (Result.first.getNode())
5553 setValue(&I, Result.first); // Pointers always fit in registers
5554 if (Result.second.getNode())
5555 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005556}
5557
5558void SelectionDAGLowering::visitFree(FreeInst &I) {
5559 TargetLowering::ArgListTy Args;
5560 TargetLowering::ArgListEntry Entry;
5561 Entry.Node = getValue(I.getOperand(0));
Owen Anderson1d0be152009-08-13 21:58:54 +00005562 Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005563 Args.push_back(Entry);
Owen Andersone50ed302009-08-10 22:56:29 +00005564 EVT IntPtr = TLI.getPointerTy();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005565 bool isTailCall = PerformTailCallOpt &&
5566 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005567 std::pair<SDValue,SDValue> Result =
Owen Anderson1d0be152009-08-13 21:58:54 +00005568 TLI.LowerCallTo(getRoot(), Type::getVoidTy(*DAG.getContext()),
5569 false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005570 0, CallingConv::C, isTailCall,
5571 /*isReturnValueUsed=*/true,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005572 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005573 getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005574 if (Result.second.getNode())
5575 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005576}
5577
5578void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005579 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005580 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005581 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005582 DAG.getSrcValue(I.getOperand(1))));
5583}
5584
5585void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005586 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5587 getRoot(), getValue(I.getOperand(0)),
5588 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005589 setValue(&I, V);
5590 DAG.setRoot(V.getValue(1));
5591}
5592
5593void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005594 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005595 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005596 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005597 DAG.getSrcValue(I.getOperand(1))));
5598}
5599
5600void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005601 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005602 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005603 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005604 getValue(I.getOperand(2)),
5605 DAG.getSrcValue(I.getOperand(1)),
5606 DAG.getSrcValue(I.getOperand(2))));
5607}
5608
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005609/// TargetLowering::LowerCallTo - This is the default LowerCallTo
Dan Gohman98ca4f22009-08-05 01:29:28 +00005610/// implementation, which just calls LowerCall.
5611/// FIXME: When all targets are
5612/// migrated to using LowerCall, this hook should be integrated into SDISel.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005613std::pair<SDValue, SDValue>
5614TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5615 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005616 bool isInreg, unsigned NumFixedArgs,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00005617 CallingConv::ID CallConv, bool isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005618 bool isReturnValueUsed,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005619 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005620 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00005621
Dan Gohman1937e2f2008-09-16 01:42:28 +00005622 assert((!isTailCall || PerformTailCallOpt) &&
5623 "isTailCall set when tail-call optimizations are disabled!");
5624
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005625 // Handle all of the outgoing arguments.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005626 SmallVector<ISD::OutputArg, 32> Outs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005627 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00005628 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005629 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5630 for (unsigned Value = 0, NumValues = ValueVTs.size();
5631 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005632 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005633 const Type *ArgTy = VT.getTypeForEVT(RetTy->getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005634 SDValue Op = SDValue(Args[i].Node.getNode(),
5635 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005636 ISD::ArgFlagsTy Flags;
5637 unsigned OriginalAlignment =
5638 getTargetData()->getABITypeAlignment(ArgTy);
5639
5640 if (Args[i].isZExt)
5641 Flags.setZExt();
5642 if (Args[i].isSExt)
5643 Flags.setSExt();
5644 if (Args[i].isInReg)
5645 Flags.setInReg();
5646 if (Args[i].isSRet)
5647 Flags.setSRet();
5648 if (Args[i].isByVal) {
5649 Flags.setByVal();
5650 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5651 const Type *ElementTy = Ty->getElementType();
5652 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005653 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005654 // For ByVal, alignment should come from FE. BE will guess if this
5655 // info is not there but there are cases it cannot get right.
5656 if (Args[i].Alignment)
5657 FrameAlign = Args[i].Alignment;
5658 Flags.setByValAlign(FrameAlign);
5659 Flags.setByValSize(FrameSize);
5660 }
5661 if (Args[i].isNest)
5662 Flags.setNest();
5663 Flags.setOrigAlign(OriginalAlignment);
5664
Owen Anderson23b9b192009-08-12 00:36:31 +00005665 EVT PartVT = getRegisterType(RetTy->getContext(), VT);
5666 unsigned NumParts = getNumRegisters(RetTy->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005667 SmallVector<SDValue, 4> Parts(NumParts);
5668 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5669
5670 if (Args[i].isSExt)
5671 ExtendKind = ISD::SIGN_EXTEND;
5672 else if (Args[i].isZExt)
5673 ExtendKind = ISD::ZERO_EXTEND;
5674
Dale Johannesen66978ee2009-01-31 02:22:37 +00005675 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005676
Dan Gohman98ca4f22009-08-05 01:29:28 +00005677 for (unsigned j = 0; j != NumParts; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005678 // if it isn't first piece, alignment must be 1
Dan Gohman98ca4f22009-08-05 01:29:28 +00005679 ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs);
5680 if (NumParts > 1 && j == 0)
5681 MyFlags.Flags.setSplit();
5682 else if (j != 0)
5683 MyFlags.Flags.setOrigAlign(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005684
Dan Gohman98ca4f22009-08-05 01:29:28 +00005685 Outs.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005686 }
5687 }
5688 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005689
Dan Gohman98ca4f22009-08-05 01:29:28 +00005690 // Handle the incoming return values from the call.
5691 SmallVector<ISD::InputArg, 32> Ins;
Owen Andersone50ed302009-08-10 22:56:29 +00005692 SmallVector<EVT, 4> RetTys;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005693 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005694 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005695 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00005696 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
5697 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005698 for (unsigned i = 0; i != NumRegs; ++i) {
5699 ISD::InputArg MyFlags;
5700 MyFlags.VT = RegisterVT;
5701 MyFlags.Used = isReturnValueUsed;
5702 if (RetSExt)
5703 MyFlags.Flags.setSExt();
5704 if (RetZExt)
5705 MyFlags.Flags.setZExt();
5706 if (isInreg)
5707 MyFlags.Flags.setInReg();
5708 Ins.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005709 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005710 }
5711
Dan Gohman98ca4f22009-08-05 01:29:28 +00005712 // Check if target-dependent constraints permit a tail call here.
5713 // Target-independent constraints should be checked by the caller.
5714 if (isTailCall &&
5715 !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG))
5716 isTailCall = false;
5717
5718 SmallVector<SDValue, 4> InVals;
5719 Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall,
5720 Outs, Ins, dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005721
5722 // Verify that the target's LowerCall behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005723 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005724 "LowerCall didn't return a valid chain!");
5725 assert((!isTailCall || InVals.empty()) &&
5726 "LowerCall emitted a return value for a tail call!");
5727 assert((isTailCall || InVals.size() == Ins.size()) &&
5728 "LowerCall didn't emit the correct number of values!");
5729 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5730 assert(InVals[i].getNode() &&
5731 "LowerCall emitted a null value!");
5732 assert(Ins[i].VT == InVals[i].getValueType() &&
5733 "LowerCall emitted a value with the wrong type!");
5734 });
Dan Gohman98ca4f22009-08-05 01:29:28 +00005735
5736 // For a tail call, the return value is merely live-out and there aren't
5737 // any nodes in the DAG representing it. Return a special value to
5738 // indicate that a tail call has been emitted and no more Instructions
5739 // should be processed in the current block.
5740 if (isTailCall) {
5741 DAG.setRoot(Chain);
5742 return std::make_pair(SDValue(), SDValue());
5743 }
5744
5745 // Collect the legal value parts into potentially illegal values
5746 // that correspond to the original function's return values.
5747 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5748 if (RetSExt)
5749 AssertOp = ISD::AssertSext;
5750 else if (RetZExt)
5751 AssertOp = ISD::AssertZext;
5752 SmallVector<SDValue, 4> ReturnValues;
5753 unsigned CurReg = 0;
5754 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005755 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00005756 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
5757 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005758
5759 SDValue ReturnValue =
5760 getCopyFromParts(DAG, dl, &InVals[CurReg], NumRegs, RegisterVT, VT,
5761 AssertOp);
5762 ReturnValues.push_back(ReturnValue);
5763 CurReg += NumRegs;
5764 }
5765
5766 // For a function returning void, there is no return value. We can't create
5767 // such a node, so we just return a null return value in that case. In
5768 // that case, nothing will actualy look at the value.
5769 if (ReturnValues.empty())
5770 return std::make_pair(SDValue(), Chain);
5771
5772 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
5773 DAG.getVTList(&RetTys[0], RetTys.size()),
5774 &ReturnValues[0], ReturnValues.size());
5775
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005776 return std::make_pair(Res, Chain);
5777}
5778
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005779void TargetLowering::LowerOperationWrapper(SDNode *N,
5780 SmallVectorImpl<SDValue> &Results,
5781 SelectionDAG &DAG) {
5782 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005783 if (Res.getNode())
5784 Results.push_back(Res);
5785}
5786
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005787SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005788 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005789 return SDValue();
5790}
5791
5792
5793void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5794 SDValue Op = getValue(V);
5795 assert((Op.getOpcode() != ISD::CopyFromReg ||
5796 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5797 "Copy from a reg to the same reg!");
5798 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5799
Owen Anderson23b9b192009-08-12 00:36:31 +00005800 RegsForValue RFV(V->getContext(), TLI, Reg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005801 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005802 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005803 PendingExports.push_back(Chain);
5804}
5805
5806#include "llvm/CodeGen/SelectionDAGISel.h"
5807
5808void SelectionDAGISel::
5809LowerArguments(BasicBlock *LLVMBB) {
5810 // If this is the entry block, emit arguments.
5811 Function &F = *LLVMBB->getParent();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005812 SelectionDAG &DAG = SDL->DAG;
5813 SDValue OldRoot = DAG.getRoot();
5814 DebugLoc dl = SDL->getCurDebugLoc();
5815 const TargetData *TD = TLI.getTargetData();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005816
Dan Gohman98ca4f22009-08-05 01:29:28 +00005817 // Set up the incoming argument description vector.
5818 SmallVector<ISD::InputArg, 16> Ins;
5819 unsigned Idx = 1;
5820 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5821 I != E; ++I, ++Idx) {
Owen Andersone50ed302009-08-10 22:56:29 +00005822 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005823 ComputeValueVTs(TLI, I->getType(), ValueVTs);
5824 bool isArgValueUsed = !I->use_empty();
5825 for (unsigned Value = 0, NumValues = ValueVTs.size();
5826 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005827 EVT VT = ValueVTs[Value];
Owen Anderson1d0be152009-08-13 21:58:54 +00005828 const Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005829 ISD::ArgFlagsTy Flags;
5830 unsigned OriginalAlignment =
5831 TD->getABITypeAlignment(ArgTy);
5832
5833 if (F.paramHasAttr(Idx, Attribute::ZExt))
5834 Flags.setZExt();
5835 if (F.paramHasAttr(Idx, Attribute::SExt))
5836 Flags.setSExt();
5837 if (F.paramHasAttr(Idx, Attribute::InReg))
5838 Flags.setInReg();
5839 if (F.paramHasAttr(Idx, Attribute::StructRet))
5840 Flags.setSRet();
5841 if (F.paramHasAttr(Idx, Attribute::ByVal)) {
5842 Flags.setByVal();
5843 const PointerType *Ty = cast<PointerType>(I->getType());
5844 const Type *ElementTy = Ty->getElementType();
5845 unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy);
5846 unsigned FrameSize = TD->getTypeAllocSize(ElementTy);
5847 // For ByVal, alignment should be passed from FE. BE will guess if
5848 // this info is not there but there are cases it cannot get right.
5849 if (F.getParamAlignment(Idx))
5850 FrameAlign = F.getParamAlignment(Idx);
5851 Flags.setByValAlign(FrameAlign);
5852 Flags.setByValSize(FrameSize);
5853 }
5854 if (F.paramHasAttr(Idx, Attribute::Nest))
5855 Flags.setNest();
5856 Flags.setOrigAlign(OriginalAlignment);
5857
Owen Anderson23b9b192009-08-12 00:36:31 +00005858 EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
5859 unsigned NumRegs = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005860 for (unsigned i = 0; i != NumRegs; ++i) {
5861 ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed);
5862 if (NumRegs > 1 && i == 0)
5863 MyFlags.Flags.setSplit();
5864 // if it isn't first piece, alignment must be 1
5865 else if (i > 0)
5866 MyFlags.Flags.setOrigAlign(1);
5867 Ins.push_back(MyFlags);
5868 }
5869 }
5870 }
5871
5872 // Call the target to set up the argument values.
5873 SmallVector<SDValue, 8> InVals;
5874 SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(),
5875 F.isVarArg(), Ins,
5876 dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005877
5878 // Verify that the target's LowerFormalArguments behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005879 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005880 "LowerFormalArguments didn't return a valid chain!");
5881 assert(InVals.size() == Ins.size() &&
5882 "LowerFormalArguments didn't emit the correct number of values!");
5883 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5884 assert(InVals[i].getNode() &&
5885 "LowerFormalArguments emitted a null value!");
5886 assert(Ins[i].VT == InVals[i].getValueType() &&
5887 "LowerFormalArguments emitted a value with the wrong type!");
5888 });
5889
5890 // Update the DAG with the new chain value resulting from argument lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005891 DAG.setRoot(NewRoot);
5892
5893 // Set up the argument values.
5894 unsigned i = 0;
5895 Idx = 1;
5896 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
5897 ++I, ++Idx) {
5898 SmallVector<SDValue, 4> ArgValues;
Owen Andersone50ed302009-08-10 22:56:29 +00005899 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005900 ComputeValueVTs(TLI, I->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005901 unsigned NumValues = ValueVTs.size();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005902 for (unsigned Value = 0; Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005903 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005904 EVT PartVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
5905 unsigned NumParts = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005906
5907 if (!I->use_empty()) {
5908 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5909 if (F.paramHasAttr(Idx, Attribute::SExt))
5910 AssertOp = ISD::AssertSext;
5911 else if (F.paramHasAttr(Idx, Attribute::ZExt))
5912 AssertOp = ISD::AssertZext;
5913
5914 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts,
5915 PartVT, VT, AssertOp));
5916 }
5917 i += NumParts;
5918 }
5919 if (!I->use_empty()) {
5920 SDL->setValue(I, DAG.getMergeValues(&ArgValues[0], NumValues,
5921 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005922 // If this argument is live outside of the entry block, insert a copy from
5923 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005924 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005925 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005926 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00005927 assert(i == InVals.size() && "Argument register count mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005928
5929 // Finally, if the target has anything special to do, allow it to do so.
5930 // FIXME: this should insert code into the DAG!
5931 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5932}
5933
5934/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5935/// ensure constants are generated when needed. Remember the virtual registers
5936/// that need to be added to the Machine PHI nodes as input. We cannot just
5937/// directly add them, because expansion might result in multiple MBB's for one
5938/// BB. As such, the start of the BB might correspond to a different MBB than
5939/// the end.
5940///
5941void
5942SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5943 TerminatorInst *TI = LLVMBB->getTerminator();
5944
5945 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5946
5947 // Check successor nodes' PHI nodes that expect a constant to be available
5948 // from this block.
5949 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5950 BasicBlock *SuccBB = TI->getSuccessor(succ);
5951 if (!isa<PHINode>(SuccBB->begin())) continue;
5952 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005953
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005954 // If this terminator has multiple identical successors (common for
5955 // switches), only handle each succ once.
5956 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005957
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005958 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5959 PHINode *PN;
5960
5961 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5962 // nodes and Machine PHI nodes, but the incoming operands have not been
5963 // emitted yet.
5964 for (BasicBlock::iterator I = SuccBB->begin();
5965 (PN = dyn_cast<PHINode>(I)); ++I) {
5966 // Ignore dead phi's.
5967 if (PN->use_empty()) continue;
5968
5969 unsigned Reg;
5970 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5971
5972 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5973 unsigned &RegOut = SDL->ConstantsOut[C];
5974 if (RegOut == 0) {
5975 RegOut = FuncInfo->CreateRegForValue(C);
5976 SDL->CopyValueToVirtualRegister(C, RegOut);
5977 }
5978 Reg = RegOut;
5979 } else {
5980 Reg = FuncInfo->ValueMap[PHIOp];
5981 if (Reg == 0) {
5982 assert(isa<AllocaInst>(PHIOp) &&
5983 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5984 "Didn't codegen value into a register!??");
5985 Reg = FuncInfo->CreateRegForValue(PHIOp);
5986 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5987 }
5988 }
5989
5990 // Remember that this register needs to added to the machine PHI node as
5991 // the input for this MBB.
Owen Andersone50ed302009-08-10 22:56:29 +00005992 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005993 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5994 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
Owen Andersone50ed302009-08-10 22:56:29 +00005995 EVT VT = ValueVTs[vti];
Owen Anderson23b9b192009-08-12 00:36:31 +00005996 unsigned NumRegisters = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005997 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5998 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5999 Reg += NumRegisters;
6000 }
6001 }
6002 }
6003 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006004}
6005
Dan Gohman3df24e62008-09-03 23:12:08 +00006006/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
6007/// supports legal types, and it emits MachineInstrs directly instead of
6008/// creating SelectionDAG nodes.
6009///
6010bool
6011SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
6012 FastISel *F) {
6013 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006014
Dan Gohman3df24e62008-09-03 23:12:08 +00006015 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
6016 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
6017
6018 // Check successor nodes' PHI nodes that expect a constant to be available
6019 // from this block.
6020 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
6021 BasicBlock *SuccBB = TI->getSuccessor(succ);
6022 if (!isa<PHINode>(SuccBB->begin())) continue;
6023 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006024
Dan Gohman3df24e62008-09-03 23:12:08 +00006025 // If this terminator has multiple identical successors (common for
6026 // switches), only handle each succ once.
6027 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006028
Dan Gohman3df24e62008-09-03 23:12:08 +00006029 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
6030 PHINode *PN;
6031
6032 // At this point we know that there is a 1-1 correspondence between LLVM PHI
6033 // nodes and Machine PHI nodes, but the incoming operands have not been
6034 // emitted yet.
6035 for (BasicBlock::iterator I = SuccBB->begin();
6036 (PN = dyn_cast<PHINode>(I)); ++I) {
6037 // Ignore dead phi's.
6038 if (PN->use_empty()) continue;
6039
6040 // Only handle legal types. Two interesting things to note here. First,
6041 // by bailing out early, we may leave behind some dead instructions,
6042 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
6043 // own moves. Second, this check is necessary becuase FastISel doesn't
6044 // use CreateRegForValue to create registers, so it always creates
6045 // exactly one register for each non-void instruction.
Owen Andersone50ed302009-08-10 22:56:29 +00006046 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00006047 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
6048 // Promote MVT::i1.
6049 if (VT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +00006050 VT = TLI.getTypeToTransformTo(*CurDAG->getContext(), VT);
Dan Gohman74321ab2008-09-10 21:01:31 +00006051 else {
6052 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6053 return false;
6054 }
Dan Gohman3df24e62008-09-03 23:12:08 +00006055 }
6056
6057 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6058
6059 unsigned Reg = F->getRegForValue(PHIOp);
6060 if (Reg == 0) {
6061 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6062 return false;
6063 }
6064 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
6065 }
6066 }
6067
6068 return true;
6069}