blob: ad599124fb87e0cc2e736be95649a1f9bdfadd06 [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();
Dan Gohmaned48caf2009-09-08 01:44:02 +0000864 // If the operand is an empty aggregate, there are no values.
865 if (!Val) continue;
866 // Add each leaf value from the operand to the Constants list
867 // to form a flattened list of all the values.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000868 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
869 Constants.push_back(SDValue(Val, i));
870 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000871 return DAG.getMergeValues(&Constants[0], Constants.size(),
872 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000873 }
874
875 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
876 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
877 "Unknown struct or array constant!");
878
Owen Andersone50ed302009-08-10 22:56:29 +0000879 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000880 ComputeValueVTs(TLI, C->getType(), ValueVTs);
881 unsigned NumElts = ValueVTs.size();
882 if (NumElts == 0)
883 return SDValue(); // empty struct
884 SmallVector<SDValue, 4> Constants(NumElts);
885 for (unsigned i = 0; i != NumElts; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000886 EVT EltVT = ValueVTs[i];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000887 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000888 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000889 else if (EltVT.isFloatingPoint())
890 Constants[i] = DAG.getConstantFP(0, EltVT);
891 else
892 Constants[i] = DAG.getConstant(0, EltVT);
893 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000894 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000895 }
896
897 const VectorType *VecTy = cast<VectorType>(V->getType());
898 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000899
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000900 // Now that we know the number and type of the elements, get that number of
901 // elements into the Ops array based on what kind of constant it is.
902 SmallVector<SDValue, 16> Ops;
903 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
904 for (unsigned i = 0; i != NumElements; ++i)
905 Ops.push_back(getValue(CP->getOperand(i)));
906 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000907 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Owen Andersone50ed302009-08-10 22:56:29 +0000908 EVT EltVT = TLI.getValueType(VecTy->getElementType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000909
910 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000911 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000912 Op = DAG.getConstantFP(0, EltVT);
913 else
914 Op = DAG.getConstant(0, EltVT);
915 Ops.assign(NumElements, Op);
916 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000917
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000918 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000919 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
920 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000921 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000922
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000923 // If this is a static alloca, generate it as the frameindex instead of
924 // computation.
925 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
926 DenseMap<const AllocaInst*, int>::iterator SI =
927 FuncInfo.StaticAllocaMap.find(AI);
928 if (SI != FuncInfo.StaticAllocaMap.end())
929 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
930 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000931
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000932 unsigned InReg = FuncInfo.ValueMap[V];
933 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000934
Owen Anderson23b9b192009-08-12 00:36:31 +0000935 RegsForValue RFV(*DAG.getContext(), TLI, InReg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000936 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000937 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000938}
939
940
941void SelectionDAGLowering::visitRet(ReturnInst &I) {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000942 SDValue Chain = getControlRoot();
943 SmallVector<ISD::OutputArg, 8> Outs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000944 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000945 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000946 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000947 unsigned NumValues = ValueVTs.size();
948 if (NumValues == 0) continue;
949
950 SDValue RetOp = getValue(I.getOperand(i));
951 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Owen Andersone50ed302009-08-10 22:56:29 +0000952 EVT VT = ValueVTs[j];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000953
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000954 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000955
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000956 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000957 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000958 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000959 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000960 ExtendKind = ISD::ZERO_EXTEND;
961
Evan Cheng3927f432009-03-25 20:20:11 +0000962 // FIXME: C calling convention requires the return type to be promoted to
963 // at least 32-bit. But this is not necessary for non-C calling
964 // conventions. The frontend should mark functions whose return values
965 // require promoting with signext or zeroext attributes.
966 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000967 EVT MinVT = TLI.getRegisterType(*DAG.getContext(), MVT::i32);
Evan Cheng3927f432009-03-25 20:20:11 +0000968 if (VT.bitsLT(MinVT))
969 VT = MinVT;
970 }
971
Owen Anderson23b9b192009-08-12 00:36:31 +0000972 unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), VT);
973 EVT PartVT = TLI.getRegisterType(*DAG.getContext(), VT);
Evan Cheng3927f432009-03-25 20:20:11 +0000974 SmallVector<SDValue, 4> Parts(NumParts);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000975 getCopyToParts(DAG, getCurDebugLoc(),
976 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000977 &Parts[0], NumParts, PartVT, ExtendKind);
978
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000979 // 'inreg' on function refers to return value
980 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +0000981 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000982 Flags.setInReg();
Anton Korobeynikov0692fab2009-07-16 13:35:48 +0000983
984 // Propagate extension type if any
985 if (F->paramHasAttr(0, Attribute::SExt))
986 Flags.setSExt();
987 else if (F->paramHasAttr(0, Attribute::ZExt))
988 Flags.setZExt();
989
Dan Gohman98ca4f22009-08-05 01:29:28 +0000990 for (unsigned i = 0; i < NumParts; ++i)
991 Outs.push_back(ISD::OutputArg(Flags, Parts[i], /*isfixed=*/true));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000992 }
993 }
Dan Gohman98ca4f22009-08-05 01:29:28 +0000994
995 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000996 CallingConv::ID CallConv =
997 DAG.getMachineFunction().getFunction()->getCallingConv();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000998 Chain = TLI.LowerReturn(Chain, CallConv, isVarArg,
999 Outs, getCurDebugLoc(), DAG);
Dan Gohman5e866062009-08-06 15:37:27 +00001000
1001 // Verify that the target's LowerReturn behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00001002 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00001003 "LowerReturn didn't return a valid chain!");
1004
1005 // Update the DAG with the new chain value resulting from return lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001006 DAG.setRoot(Chain);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001007}
1008
Dan Gohmanad62f532009-04-23 23:13:24 +00001009/// CopyToExportRegsIfNeeded - If the given value has virtual registers
1010/// created for it, emit nodes to copy the value into the virtual
1011/// registers.
1012void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) {
1013 if (!V->use_empty()) {
1014 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1015 if (VMI != FuncInfo.ValueMap.end())
1016 CopyValueToVirtualRegister(V, VMI->second);
1017 }
1018}
1019
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001020/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1021/// the current basic block, add it to ValueMap now so that we'll get a
1022/// CopyTo/FromReg.
1023void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1024 // No need to export constants.
1025 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001026
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001027 // Already exported?
1028 if (FuncInfo.isExportedInst(V)) return;
1029
1030 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1031 CopyValueToVirtualRegister(V, Reg);
1032}
1033
1034bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1035 const BasicBlock *FromBB) {
1036 // The operands of the setcc have to be in this block. We don't know
1037 // how to export them from some other block.
1038 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1039 // Can export from current BB.
1040 if (VI->getParent() == FromBB)
1041 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001042
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001043 // Is already exported, noop.
1044 return FuncInfo.isExportedInst(V);
1045 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001046
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001047 // If this is an argument, we can export it if the BB is the entry block or
1048 // if it is already exported.
1049 if (isa<Argument>(V)) {
1050 if (FromBB == &FromBB->getParent()->getEntryBlock())
1051 return true;
1052
1053 // Otherwise, can only export this if it is already exported.
1054 return FuncInfo.isExportedInst(V);
1055 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001056
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001057 // Otherwise, constants can always be exported.
1058 return true;
1059}
1060
1061static bool InBlock(const Value *V, const BasicBlock *BB) {
1062 if (const Instruction *I = dyn_cast<Instruction>(V))
1063 return I->getParent() == BB;
1064 return true;
1065}
1066
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001067/// getFCmpCondCode - Return the ISD condition code corresponding to
1068/// the given LLVM IR floating-point condition code. This includes
1069/// consideration of global floating-point math flags.
1070///
1071static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1072 ISD::CondCode FPC, FOC;
1073 switch (Pred) {
1074 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1075 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1076 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1077 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1078 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1079 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1080 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1081 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1082 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1083 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1084 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1085 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1086 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1087 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1088 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1089 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1090 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001091 llvm_unreachable("Invalid FCmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001092 FOC = FPC = ISD::SETFALSE;
1093 break;
1094 }
1095 if (FiniteOnlyFPMath())
1096 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001097 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001098 return FPC;
1099}
1100
1101/// getICmpCondCode - Return the ISD condition code corresponding to
1102/// the given LLVM IR integer condition code.
1103///
1104static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1105 switch (Pred) {
1106 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1107 case ICmpInst::ICMP_NE: return ISD::SETNE;
1108 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1109 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1110 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1111 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1112 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1113 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1114 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1115 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1116 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001117 llvm_unreachable("Invalid ICmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001118 return ISD::SETNE;
1119 }
1120}
1121
Dan Gohmanc2277342008-10-17 21:16:08 +00001122/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1123/// This function emits a branch and is used at the leaves of an OR or an
1124/// AND operator tree.
1125///
1126void
1127SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1128 MachineBasicBlock *TBB,
1129 MachineBasicBlock *FBB,
1130 MachineBasicBlock *CurBB) {
1131 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001132
Dan Gohmanc2277342008-10-17 21:16:08 +00001133 // If the leaf of the tree is a comparison, merge the condition into
1134 // the caseblock.
1135 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1136 // The operands of the cmp have to be in this block. We don't know
1137 // how to export them from some other block. If this is the first block
1138 // of the sequence, no exporting is needed.
1139 if (CurBB == CurMBB ||
1140 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1141 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001142 ISD::CondCode Condition;
1143 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001144 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001145 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001146 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001147 } else {
1148 Condition = ISD::SETEQ; // silence warning.
Torok Edwinc23197a2009-07-14 16:55:14 +00001149 llvm_unreachable("Unknown compare instruction");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001150 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001151
1152 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001153 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1154 SwitchCases.push_back(CB);
1155 return;
1156 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001157 }
1158
1159 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001160 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanc2277342008-10-17 21:16:08 +00001161 NULL, TBB, FBB, CurBB);
1162 SwitchCases.push_back(CB);
1163}
1164
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001165/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001166void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1167 MachineBasicBlock *TBB,
1168 MachineBasicBlock *FBB,
1169 MachineBasicBlock *CurBB,
1170 unsigned Opc) {
1171 // If this node is not part of the or/and tree, emit it as a branch.
1172 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001173 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001174 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1175 BOp->getParent() != CurBB->getBasicBlock() ||
1176 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1177 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1178 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001179 return;
1180 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001182 // Create TmpBB after CurBB.
1183 MachineFunction::iterator BBI = CurBB;
1184 MachineFunction &MF = DAG.getMachineFunction();
1185 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1186 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001187
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001188 if (Opc == Instruction::Or) {
1189 // Codegen X | Y as:
1190 // jmp_if_X TBB
1191 // jmp TmpBB
1192 // TmpBB:
1193 // jmp_if_Y TBB
1194 // jmp FBB
1195 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001196
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001197 // Emit the LHS condition.
1198 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001199
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001200 // Emit the RHS condition into TmpBB.
1201 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1202 } else {
1203 assert(Opc == Instruction::And && "Unknown merge op!");
1204 // Codegen X & Y as:
1205 // jmp_if_X TmpBB
1206 // jmp FBB
1207 // TmpBB:
1208 // jmp_if_Y TBB
1209 // jmp FBB
1210 //
1211 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001212
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001213 // Emit the LHS condition.
1214 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001215
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001216 // Emit the RHS condition into TmpBB.
1217 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1218 }
1219}
1220
1221/// If the set of cases should be emitted as a series of branches, return true.
1222/// If we should emit this as a bunch of and/or'd together conditions, return
1223/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001224bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001225SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1226 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001227
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001228 // If this is two comparisons of the same values or'd or and'd together, they
1229 // will get folded into a single comparison, so don't emit two blocks.
1230 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1231 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1232 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1233 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1234 return false;
1235 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001236
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001237 return true;
1238}
1239
1240void SelectionDAGLowering::visitBr(BranchInst &I) {
1241 // Update machine-CFG edges.
1242 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1243
1244 // Figure out which block is immediately after the current one.
1245 MachineBasicBlock *NextBlock = 0;
1246 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001247 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001248 NextBlock = BBI;
1249
1250 if (I.isUnconditional()) {
1251 // Update machine-CFG edges.
1252 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001253
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001254 // If this is not a fall-through branch, emit the branch.
1255 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001256 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001257 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001258 DAG.getBasicBlock(Succ0MBB)));
1259 return;
1260 }
1261
1262 // If this condition is one of the special cases we handle, do special stuff
1263 // now.
1264 Value *CondVal = I.getCondition();
1265 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1266
1267 // If this is a series of conditions that are or'd or and'd together, emit
1268 // this as a sequence of branches instead of setcc's with and/or operations.
1269 // For example, instead of something like:
1270 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001271 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001272 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001273 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001274 // or C, F
1275 // jnz foo
1276 // Emit:
1277 // cmp A, B
1278 // je foo
1279 // cmp D, E
1280 // jle foo
1281 //
1282 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001283 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001284 (BOp->getOpcode() == Instruction::And ||
1285 BOp->getOpcode() == Instruction::Or)) {
1286 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1287 // If the compares in later blocks need to use values not currently
1288 // exported from this block, export them now. This block should always
1289 // be the first entry.
1290 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001291
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001292 // Allow some cases to be rejected.
1293 if (ShouldEmitAsBranches(SwitchCases)) {
1294 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1295 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1296 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1297 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001298
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001299 // Emit the branch for this block.
1300 visitSwitchCase(SwitchCases[0]);
1301 SwitchCases.erase(SwitchCases.begin());
1302 return;
1303 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001304
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001305 // Okay, we decided not to do this, remove any inserted MBB's and clear
1306 // SwitchCases.
1307 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001308 FuncInfo.MF->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001310 SwitchCases.clear();
1311 }
1312 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001313
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001314 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001315 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001316 NULL, Succ0MBB, Succ1MBB, CurMBB);
1317 // Use visitSwitchCase to actually insert the fast branch sequence for this
1318 // cond branch.
1319 visitSwitchCase(CB);
1320}
1321
1322/// visitSwitchCase - Emits the necessary code to represent a single node in
1323/// the binary search tree resulting from lowering a switch instruction.
1324void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1325 SDValue Cond;
1326 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001327 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001328
1329 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001330 if (CB.CmpMHS == NULL) {
1331 // Fold "(X == true)" to X and "(X == false)" to !X to
1332 // handle common cases produced by branch lowering.
Owen Anderson5defacc2009-07-31 17:39:07 +00001333 if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001334 CB.CC == ISD::SETEQ)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001335 Cond = CondLHS;
Owen Anderson5defacc2009-07-31 17:39:07 +00001336 else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001337 CB.CC == ISD::SETEQ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001338 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001339 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001340 } else
Owen Anderson825b72b2009-08-11 20:47:22 +00001341 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001342 } else {
1343 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1344
Anton Korobeynikov23218582008-12-23 22:25:27 +00001345 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1346 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001347
1348 SDValue CmpOp = getValue(CB.CmpMHS);
Owen Andersone50ed302009-08-10 22:56:29 +00001349 EVT VT = CmpOp.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001350
1351 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001352 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001353 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001354 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001355 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001356 VT, CmpOp, DAG.getConstant(Low, VT));
Owen Anderson825b72b2009-08-11 20:47:22 +00001357 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001358 DAG.getConstant(High-Low, VT), ISD::SETULE);
1359 }
1360 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001361
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001362 // Update successor info
1363 CurMBB->addSuccessor(CB.TrueBB);
1364 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001365
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001366 // Set NextBlock to be the MBB immediately after the current one, if any.
1367 // This is used to avoid emitting unnecessary branches to the next block.
1368 MachineBasicBlock *NextBlock = 0;
1369 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001370 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001371 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001372
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001373 // If the lhs block is the next block, invert the condition so that we can
1374 // fall through to the lhs instead of the rhs block.
1375 if (CB.TrueBB == NextBlock) {
1376 std::swap(CB.TrueBB, CB.FalseBB);
1377 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001378 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001379 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001380 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001381 MVT::Other, getControlRoot(), Cond,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001382 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001383
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001384 // If the branch was constant folded, fix up the CFG.
1385 if (BrCond.getOpcode() == ISD::BR) {
1386 CurMBB->removeSuccessor(CB.FalseBB);
1387 DAG.setRoot(BrCond);
1388 } else {
1389 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001390 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001391 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001392
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001393 if (CB.FalseBB == NextBlock)
1394 DAG.setRoot(BrCond);
1395 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001396 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001397 DAG.getBasicBlock(CB.FalseBB)));
1398 }
1399}
1400
1401/// visitJumpTable - Emit JumpTable node in the current MBB
1402void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1403 // Emit the code for the jump table
1404 assert(JT.Reg != -1U && "Should lower JT Header first!");
Owen Andersone50ed302009-08-10 22:56:29 +00001405 EVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001406 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1407 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001408 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001409 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001410 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001411 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001412}
1413
1414/// visitJumpTableHeader - This function emits necessary code to produce index
1415/// in the JumpTable from switch case.
1416void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1417 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001418 // Subtract the lowest switch case value from the value being switched on and
1419 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001420 // difference between smallest and largest cases.
1421 SDValue SwitchOp = getValue(JTH.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001422 EVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001423 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001424 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001425
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001426 // The SDNode we just created, which holds the value being switched on minus
1427 // the the smallest case value, needs to be copied to a virtual register so it
1428 // can be used as an index into the jump table in a subsequent basic block.
1429 // This value may be smaller or larger than the target's pointer type, and
1430 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001431 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001432 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001433 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001434 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001435 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001436 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001437
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001438 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001439 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1440 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001441 JT.Reg = JumpTableReg;
1442
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001443 // Emit the range check for the jump table, and branch to the default block
1444 // for the switch statement if the value being switched on exceeds the largest
1445 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001446 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1447 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001448 DAG.getConstant(JTH.Last-JTH.First,VT),
1449 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001450
1451 // Set NextBlock to be the MBB immediately after the current one, if any.
1452 // This is used to avoid emitting unnecessary branches to the next block.
1453 MachineBasicBlock *NextBlock = 0;
1454 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001455 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001456 NextBlock = BBI;
1457
Dale Johannesen66978ee2009-01-31 02:22:37 +00001458 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001459 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001460 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001461
1462 if (JT.MBB == NextBlock)
1463 DAG.setRoot(BrCond);
1464 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001465 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001466 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001467}
1468
1469/// visitBitTestHeader - This function emits necessary code to produce value
1470/// suitable for "bit tests"
1471void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1472 // Subtract the minimum value
1473 SDValue SwitchOp = getValue(B.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001474 EVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001475 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001476 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001477
1478 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001479 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1480 TLI.getSetCCResultType(SUB.getValueType()),
1481 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001482 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001483
1484 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001485 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001486 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001487 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001488 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001489 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001490 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001491
Duncan Sands92abc622009-01-31 15:50:11 +00001492 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001493 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1494 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001495
1496 // Set NextBlock to be the MBB immediately after the current one, if any.
1497 // This is used to avoid emitting unnecessary branches to the next block.
1498 MachineBasicBlock *NextBlock = 0;
1499 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001500 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001501 NextBlock = BBI;
1502
1503 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1504
1505 CurMBB->addSuccessor(B.Default);
1506 CurMBB->addSuccessor(MBB);
1507
Dale Johannesen66978ee2009-01-31 02:22:37 +00001508 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001509 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001510 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001511
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001512 if (MBB == NextBlock)
1513 DAG.setRoot(BrRange);
1514 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001515 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001516 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001517}
1518
1519/// visitBitTestCase - this function produces one "bit test"
1520void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1521 unsigned Reg,
1522 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001523 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001524 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001525 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001526 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001527 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001528 DAG.getConstant(1, TLI.getPointerTy()),
1529 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001530
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001531 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001532 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001533 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001534 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001535 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1536 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001537 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001538 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001539
1540 CurMBB->addSuccessor(B.TargetBB);
1541 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001542
Dale Johannesen66978ee2009-01-31 02:22:37 +00001543 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001544 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001545 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001546
1547 // Set NextBlock to be the MBB immediately after the current one, if any.
1548 // This is used to avoid emitting unnecessary branches to the next block.
1549 MachineBasicBlock *NextBlock = 0;
1550 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001551 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001552 NextBlock = BBI;
1553
1554 if (NextMBB == NextBlock)
1555 DAG.setRoot(BrAnd);
1556 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001557 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001558 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001559}
1560
1561void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1562 // Retrieve successors.
1563 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1564 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1565
Gabor Greifb67e6b32009-01-15 11:10:44 +00001566 const Value *Callee(I.getCalledValue());
1567 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001568 visitInlineAsm(&I);
1569 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001570 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001571
1572 // If the value of the invoke is used outside of its defining block, make it
1573 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001574 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001575
1576 // Update successor info
1577 CurMBB->addSuccessor(Return);
1578 CurMBB->addSuccessor(LandingPad);
1579
1580 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001581 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001582 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001583 DAG.getBasicBlock(Return)));
1584}
1585
1586void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1587}
1588
1589/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1590/// small case ranges).
1591bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1592 CaseRecVector& WorkList,
1593 Value* SV,
1594 MachineBasicBlock* Default) {
1595 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001596
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001597 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001598 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001599 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001600 return false;
1601
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001602 // Get the MachineFunction which holds the current MBB. This is used when
1603 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001604 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001605
1606 // Figure out which block is immediately after the current one.
1607 MachineBasicBlock *NextBlock = 0;
1608 MachineFunction::iterator BBI = CR.CaseBB;
1609
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001610 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001611 NextBlock = BBI;
1612
1613 // TODO: If any two of the cases has the same destination, and if one value
1614 // is the same as the other, but has one bit unset that the other has set,
1615 // use bit manipulation to do two compares at once. For example:
1616 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001617
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001618 // Rearrange the case blocks so that the last one falls through if possible.
1619 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1620 // The last case block won't fall through into 'NextBlock' if we emit the
1621 // branches in this order. See if rearranging a case value would help.
1622 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1623 if (I->BB == NextBlock) {
1624 std::swap(*I, BackCase);
1625 break;
1626 }
1627 }
1628 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001629
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001630 // Create a CaseBlock record representing a conditional branch to
1631 // the Case's target mbb if the value being switched on SV is equal
1632 // to C.
1633 MachineBasicBlock *CurBlock = CR.CaseBB;
1634 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1635 MachineBasicBlock *FallThrough;
1636 if (I != E-1) {
1637 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1638 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001639
1640 // Put SV in a virtual register to make it available from the new blocks.
1641 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001642 } else {
1643 // If the last case doesn't match, go to the default block.
1644 FallThrough = Default;
1645 }
1646
1647 Value *RHS, *LHS, *MHS;
1648 ISD::CondCode CC;
1649 if (I->High == I->Low) {
1650 // This is just small small case range :) containing exactly 1 case
1651 CC = ISD::SETEQ;
1652 LHS = SV; RHS = I->High; MHS = NULL;
1653 } else {
1654 CC = ISD::SETLE;
1655 LHS = I->Low; MHS = SV; RHS = I->High;
1656 }
1657 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001658
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001659 // If emitting the first comparison, just call visitSwitchCase to emit the
1660 // code into the current block. Otherwise, push the CaseBlock onto the
1661 // vector to be later processed by SDISel, and insert the node's MBB
1662 // before the next MBB.
1663 if (CurBlock == CurMBB)
1664 visitSwitchCase(CB);
1665 else
1666 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001667
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001668 CurBlock = FallThrough;
1669 }
1670
1671 return true;
1672}
1673
1674static inline bool areJTsAllowed(const TargetLowering &TLI) {
1675 return !DisableJumpTables &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001676 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1677 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001678}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001679
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001680static APInt ComputeRange(const APInt &First, const APInt &Last) {
1681 APInt LastExt(Last), FirstExt(First);
1682 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1683 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1684 return (LastExt - FirstExt + 1ULL);
1685}
1686
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001687/// handleJTSwitchCase - Emit jumptable for current switch case range
1688bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1689 CaseRecVector& WorkList,
1690 Value* SV,
1691 MachineBasicBlock* Default) {
1692 Case& FrontCase = *CR.Range.first;
1693 Case& BackCase = *(CR.Range.second-1);
1694
Anton Korobeynikov23218582008-12-23 22:25:27 +00001695 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1696 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001697
Anton Korobeynikov23218582008-12-23 22:25:27 +00001698 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001699 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1700 I!=E; ++I)
1701 TSize += I->size();
1702
1703 if (!areJTsAllowed(TLI) || TSize <= 3)
1704 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001705
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001706 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001707 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001708 if (Density < 0.4)
1709 return false;
1710
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001711 DEBUG(errs() << "Lowering jump table\n"
1712 << "First entry: " << First << ". Last entry: " << Last << '\n'
1713 << "Range: " << Range
1714 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001715
1716 // Get the MachineFunction which holds the current MBB. This is used when
1717 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001718 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001719
1720 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001721 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001722 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001723
1724 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1725
1726 // Create a new basic block to hold the code for loading the address
1727 // of the jump table, and jumping to it. Update successor information;
1728 // we will either branch to the default case for the switch, or the jump
1729 // table.
1730 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1731 CurMF->insert(BBI, JumpTableBB);
1732 CR.CaseBB->addSuccessor(Default);
1733 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001734
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001735 // Build a vector of destination BBs, corresponding to each target
1736 // of the jump table. If the value of the jump table slot corresponds to
1737 // a case statement, push the case's BB onto the vector, otherwise, push
1738 // the default BB.
1739 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001740 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001741 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001742 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1743 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1744
1745 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001746 DestBBs.push_back(I->BB);
1747 if (TEI==High)
1748 ++I;
1749 } else {
1750 DestBBs.push_back(Default);
1751 }
1752 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001753
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001754 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001755 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1756 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001757 E = DestBBs.end(); I != E; ++I) {
1758 if (!SuccsHandled[(*I)->getNumber()]) {
1759 SuccsHandled[(*I)->getNumber()] = true;
1760 JumpTableBB->addSuccessor(*I);
1761 }
1762 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001763
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001764 // Create a jump table index for this jump table, or return an existing
1765 // one.
1766 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001767
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001768 // Set the jump table information so that we can codegen it as a second
1769 // MachineBasicBlock
1770 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1771 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1772 if (CR.CaseBB == CurMBB)
1773 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001774
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001775 JTCases.push_back(JumpTableBlock(JTH, JT));
1776
1777 return true;
1778}
1779
1780/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1781/// 2 subtrees.
1782bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1783 CaseRecVector& WorkList,
1784 Value* SV,
1785 MachineBasicBlock* Default) {
1786 // Get the MachineFunction which holds the current MBB. This is used when
1787 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001788 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001789
1790 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001791 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001792 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001793
1794 Case& FrontCase = *CR.Range.first;
1795 Case& BackCase = *(CR.Range.second-1);
1796 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1797
1798 // Size is the number of Cases represented by this range.
1799 unsigned Size = CR.Range.second - CR.Range.first;
1800
Anton Korobeynikov23218582008-12-23 22:25:27 +00001801 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1802 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001803 double FMetric = 0;
1804 CaseItr Pivot = CR.Range.first + Size/2;
1805
1806 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1807 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001808 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001809 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1810 I!=E; ++I)
1811 TSize += I->size();
1812
Anton Korobeynikov23218582008-12-23 22:25:27 +00001813 size_t LSize = FrontCase.size();
1814 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001815 DEBUG(errs() << "Selecting best pivot: \n"
1816 << "First: " << First << ", Last: " << Last <<'\n'
1817 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001818 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1819 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001820 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1821 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001822 APInt Range = ComputeRange(LEnd, RBegin);
1823 assert((Range - 2ULL).isNonNegative() &&
1824 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001825 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1826 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001827 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001828 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001829 DEBUG(errs() <<"=>Step\n"
1830 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1831 << "LDensity: " << LDensity
1832 << ", RDensity: " << RDensity << '\n'
1833 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001834 if (FMetric < Metric) {
1835 Pivot = J;
1836 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001837 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001838 }
1839
1840 LSize += J->size();
1841 RSize -= J->size();
1842 }
1843 if (areJTsAllowed(TLI)) {
1844 // If our case is dense we *really* should handle it earlier!
1845 assert((FMetric > 0) && "Should handle dense range earlier!");
1846 } else {
1847 Pivot = CR.Range.first + Size/2;
1848 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001849
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001850 CaseRange LHSR(CR.Range.first, Pivot);
1851 CaseRange RHSR(Pivot, CR.Range.second);
1852 Constant *C = Pivot->Low;
1853 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001854
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001856 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001857 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001858 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001859 // Pivot's Value, then we can branch directly to the LHS's Target,
1860 // rather than creating a leaf node for it.
1861 if ((LHSR.second - LHSR.first) == 1 &&
1862 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001863 cast<ConstantInt>(C)->getValue() ==
1864 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001865 TrueBB = LHSR.first->BB;
1866 } else {
1867 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1868 CurMF->insert(BBI, TrueBB);
1869 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001870
1871 // Put SV in a virtual register to make it available from the new blocks.
1872 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001873 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001874
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001875 // Similar to the optimization above, if the Value being switched on is
1876 // known to be less than the Constant CR.LT, and the current Case Value
1877 // is CR.LT - 1, then we can branch directly to the target block for
1878 // the current Case Value, rather than emitting a RHS leaf node for it.
1879 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001880 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1881 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001882 FalseBB = RHSR.first->BB;
1883 } else {
1884 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1885 CurMF->insert(BBI, FalseBB);
1886 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001887
1888 // Put SV in a virtual register to make it available from the new blocks.
1889 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001890 }
1891
1892 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001893 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001894 // Otherwise, branch to LHS.
1895 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1896
1897 if (CR.CaseBB == CurMBB)
1898 visitSwitchCase(CB);
1899 else
1900 SwitchCases.push_back(CB);
1901
1902 return true;
1903}
1904
1905/// handleBitTestsSwitchCase - if current case range has few destination and
1906/// range span less, than machine word bitwidth, encode case range into series
1907/// of masks and emit bit tests with these masks.
1908bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1909 CaseRecVector& WorkList,
1910 Value* SV,
1911 MachineBasicBlock* Default){
Owen Andersone50ed302009-08-10 22:56:29 +00001912 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00001913 unsigned IntPtrBits = PTy.getSizeInBits();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001914
1915 Case& FrontCase = *CR.Range.first;
1916 Case& BackCase = *(CR.Range.second-1);
1917
1918 // Get the MachineFunction which holds the current MBB. This is used when
1919 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001920 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001921
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001922 // If target does not have legal shift left, do not emit bit tests at all.
1923 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1924 return false;
1925
Anton Korobeynikov23218582008-12-23 22:25:27 +00001926 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001927 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1928 I!=E; ++I) {
1929 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001930 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001931 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001932
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001933 // Count unique destinations
1934 SmallSet<MachineBasicBlock*, 4> Dests;
1935 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1936 Dests.insert(I->BB);
1937 if (Dests.size() > 3)
1938 // Don't bother the code below, if there are too much unique destinations
1939 return false;
1940 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001941 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1942 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001943
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001944 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001945 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1946 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001947 APInt cmpRange = maxValue - minValue;
1948
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001949 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1950 << "Low bound: " << minValue << '\n'
1951 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001952
1953 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001954 (!(Dests.size() == 1 && numCmps >= 3) &&
1955 !(Dests.size() == 2 && numCmps >= 5) &&
1956 !(Dests.size() >= 3 && numCmps >= 6)))
1957 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001958
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001959 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001960 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1961
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001962 // Optimize the case where all the case values fit in a
1963 // word without having to subtract minValue. In this case,
1964 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001965 if (minValue.isNonNegative() &&
1966 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1967 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001968 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001969 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001970 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001971
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001972 CaseBitsVector CasesBits;
1973 unsigned i, count = 0;
1974
1975 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1976 MachineBasicBlock* Dest = I->BB;
1977 for (i = 0; i < count; ++i)
1978 if (Dest == CasesBits[i].BB)
1979 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001980
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001981 if (i == count) {
1982 assert((count < 3) && "Too much destinations to test!");
1983 CasesBits.push_back(CaseBits(0, Dest, 0));
1984 count++;
1985 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001986
1987 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1988 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1989
1990 uint64_t lo = (lowValue - lowBound).getZExtValue();
1991 uint64_t hi = (highValue - lowBound).getZExtValue();
1992
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001993 for (uint64_t j = lo; j <= hi; j++) {
1994 CasesBits[i].Mask |= 1ULL << j;
1995 CasesBits[i].Bits++;
1996 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001997
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001998 }
1999 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00002000
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002001 BitTestInfo BTC;
2002
2003 // Figure out which block is immediately after the current one.
2004 MachineFunction::iterator BBI = CR.CaseBB;
2005 ++BBI;
2006
2007 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2008
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002009 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002010 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002011 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2012 << ", Bits: " << CasesBits[i].Bits
2013 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002014
2015 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2016 CurMF->insert(BBI, CaseBB);
2017 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2018 CaseBB,
2019 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002020
2021 // Put SV in a virtual register to make it available from the new blocks.
2022 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002023 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002024
2025 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002026 -1U, (CR.CaseBB == CurMBB),
2027 CR.CaseBB, Default, BTC);
2028
2029 if (CR.CaseBB == CurMBB)
2030 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002031
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002032 BitTestCases.push_back(BTB);
2033
2034 return true;
2035}
2036
2037
2038/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002039size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002040 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002041 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002042
2043 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002044 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002045 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2046 Cases.push_back(Case(SI.getSuccessorValue(i),
2047 SI.getSuccessorValue(i),
2048 SMBB));
2049 }
2050 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2051
2052 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002053 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002054 // Must recompute end() each iteration because it may be
2055 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002056 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2057 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2058 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002059 MachineBasicBlock* nextBB = J->BB;
2060 MachineBasicBlock* currentBB = I->BB;
2061
2062 // If the two neighboring cases go to the same destination, merge them
2063 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002064 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002065 I->High = J->High;
2066 J = Cases.erase(J);
2067 } else {
2068 I = J++;
2069 }
2070 }
2071
2072 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2073 if (I->Low != I->High)
2074 // A range counts double, since it requires two compares.
2075 ++numCmps;
2076 }
2077
2078 return numCmps;
2079}
2080
Anton Korobeynikov23218582008-12-23 22:25:27 +00002081void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002082 // Figure out which block is immediately after the current one.
2083 MachineBasicBlock *NextBlock = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002084
2085 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2086
2087 // If there is only the default destination, branch to it if it is not the
2088 // next basic block. Otherwise, just fall through.
2089 if (SI.getNumOperands() == 2) {
2090 // Update machine-CFG edges.
2091
2092 // If this is not a fall-through branch, emit the branch.
2093 CurMBB->addSuccessor(Default);
2094 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002095 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002096 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002097 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002098 return;
2099 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002100
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002101 // If there are any non-default case statements, create a vector of Cases
2102 // representing each one, and sort the vector so that we can efficiently
2103 // create a binary search tree from them.
2104 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002105 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002106 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2107 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002108 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002109
2110 // Get the Value to be switched on and default basic blocks, which will be
2111 // inserted into CaseBlock records, representing basic blocks in the binary
2112 // search tree.
2113 Value *SV = SI.getOperand(0);
2114
2115 // Push the initial CaseRec onto the worklist
2116 CaseRecVector WorkList;
2117 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2118
2119 while (!WorkList.empty()) {
2120 // Grab a record representing a case range to process off the worklist
2121 CaseRec CR = WorkList.back();
2122 WorkList.pop_back();
2123
2124 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2125 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002126
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002127 // If the range has few cases (two or less) emit a series of specific
2128 // tests.
2129 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2130 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002131
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002132 // If the switch has more than 5 blocks, and at least 40% dense, and the
2133 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002134 // lowering the switch to a binary tree of conditional branches.
2135 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2136 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002137
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002138 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2139 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2140 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2141 }
2142}
2143
2144
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002145void SelectionDAGLowering::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002146 // -0.0 - X --> fneg
2147 const Type *Ty = I.getType();
2148 if (isa<VectorType>(Ty)) {
2149 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2150 const VectorType *DestTy = cast<VectorType>(I.getType());
2151 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002152 unsigned VL = DestTy->getNumElements();
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002153 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Owen Andersonaf7ec972009-07-28 21:19:26 +00002154 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002155 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002156 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002157 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002158 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002159 return;
2160 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002161 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002162 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002163 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002164 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002165 SDValue Op2 = getValue(I.getOperand(1));
2166 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2167 Op2.getValueType(), Op2));
2168 return;
2169 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002170
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002171 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002172}
2173
2174void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2175 SDValue Op1 = getValue(I.getOperand(0));
2176 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002177
Scott Michelfdc40a02009-02-17 22:15:04 +00002178 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002179 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002180}
2181
2182void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2183 SDValue Op1 = getValue(I.getOperand(0));
2184 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002185 if (!isa<VectorType>(I.getType()) &&
2186 Op2.getValueType() != TLI.getShiftAmountTy()) {
2187 // If the operand is smaller than the shift count type, promote it.
Owen Andersone50ed302009-08-10 22:56:29 +00002188 EVT PTy = TLI.getPointerTy();
2189 EVT STy = TLI.getShiftAmountTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002190 if (STy.bitsGT(Op2.getValueType()))
Dan Gohman57fc82d2009-04-09 03:51:29 +00002191 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2192 TLI.getShiftAmountTy(), Op2);
2193 // If the operand is larger than the shift count type but the shift
2194 // count type has enough bits to represent any shift value, truncate
2195 // it now. This is a common case and it exposes the truncate to
2196 // optimization early.
Owen Anderson77547be2009-08-10 18:56:59 +00002197 else if (STy.getSizeInBits() >=
Dan Gohman57fc82d2009-04-09 03:51:29 +00002198 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2199 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2200 TLI.getShiftAmountTy(), Op2);
2201 // Otherwise we'll need to temporarily settle for some other
2202 // convenient type; type legalization will make adjustments as
2203 // needed.
Owen Anderson77547be2009-08-10 18:56:59 +00002204 else if (PTy.bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002205 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002206 TLI.getPointerTy(), Op2);
Owen Anderson77547be2009-08-10 18:56:59 +00002207 else if (PTy.bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002208 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002209 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002210 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002211
Scott Michelfdc40a02009-02-17 22:15:04 +00002212 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002213 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002214}
2215
2216void SelectionDAGLowering::visitICmp(User &I) {
2217 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2218 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2219 predicate = IC->getPredicate();
2220 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2221 predicate = ICmpInst::Predicate(IC->getPredicate());
2222 SDValue Op1 = getValue(I.getOperand(0));
2223 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002224 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002225
Owen Andersone50ed302009-08-10 22:56:29 +00002226 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002227 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002228}
2229
2230void SelectionDAGLowering::visitFCmp(User &I) {
2231 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2232 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2233 predicate = FC->getPredicate();
2234 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2235 predicate = FCmpInst::Predicate(FC->getPredicate());
2236 SDValue Op1 = getValue(I.getOperand(0));
2237 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002238 ISD::CondCode Condition = getFCmpCondCode(predicate);
Owen Andersone50ed302009-08-10 22:56:29 +00002239 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002240 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002241}
2242
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002243void SelectionDAGLowering::visitSelect(User &I) {
Owen Andersone50ed302009-08-10 22:56:29 +00002244 SmallVector<EVT, 4> ValueVTs;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002245 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2246 unsigned NumValues = ValueVTs.size();
2247 if (NumValues != 0) {
2248 SmallVector<SDValue, 4> Values(NumValues);
2249 SDValue Cond = getValue(I.getOperand(0));
2250 SDValue TrueVal = getValue(I.getOperand(1));
2251 SDValue FalseVal = getValue(I.getOperand(2));
2252
2253 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002254 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002255 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002256 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2257 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2258
Scott Michelfdc40a02009-02-17 22:15:04 +00002259 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002260 DAG.getVTList(&ValueVTs[0], NumValues),
2261 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002262 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002263}
2264
2265
2266void SelectionDAGLowering::visitTrunc(User &I) {
2267 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2268 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002269 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002270 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002271}
2272
2273void SelectionDAGLowering::visitZExt(User &I) {
2274 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2275 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2276 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002277 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002278 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002279}
2280
2281void SelectionDAGLowering::visitSExt(User &I) {
2282 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2283 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2284 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002285 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002286 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002287}
2288
2289void SelectionDAGLowering::visitFPTrunc(User &I) {
2290 // FPTrunc is never a no-op cast, no need to check
2291 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002292 EVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002293 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002294 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002295}
2296
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002297void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002298 // FPTrunc is never a no-op cast, no need to check
2299 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002300 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002301 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002302}
2303
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002304void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002305 // FPToUI is never a no-op cast, no need to check
2306 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002307 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002308 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002309}
2310
2311void SelectionDAGLowering::visitFPToSI(User &I) {
2312 // FPToSI is never a no-op cast, no need to check
2313 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002314 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002315 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002316}
2317
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002318void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002319 // UIToFP is never a no-op cast, no need to check
2320 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002321 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002322 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002323}
2324
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002325void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002326 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002327 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002328 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002329 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002330}
2331
2332void SelectionDAGLowering::visitPtrToInt(User &I) {
2333 // What to do depends on the size of the integer and the size of the pointer.
2334 // We can either truncate, zero extend, or no-op, accordingly.
2335 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002336 EVT SrcVT = N.getValueType();
2337 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002338 SDValue Result;
2339 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002340 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002341 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002342 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002343 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002344 setValue(&I, Result);
2345}
2346
2347void SelectionDAGLowering::visitIntToPtr(User &I) {
2348 // What to do depends on the size of the integer and the size of the pointer.
2349 // We can either truncate, zero extend, or no-op, accordingly.
2350 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002351 EVT SrcVT = N.getValueType();
2352 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002353 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002354 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002355 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002356 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002357 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002358 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002359}
2360
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002361void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002362 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002363 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002364
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002365 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002366 // is either a BIT_CONVERT or a no-op.
2367 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002368 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002369 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002370 else
2371 setValue(&I, N); // noop cast.
2372}
2373
2374void SelectionDAGLowering::visitInsertElement(User &I) {
2375 SDValue InVec = getValue(I.getOperand(0));
2376 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002377 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002378 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002379 getValue(I.getOperand(2)));
2380
Scott Michelfdc40a02009-02-17 22:15:04 +00002381 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002382 TLI.getValueType(I.getType()),
2383 InVec, InVal, InIdx));
2384}
2385
2386void SelectionDAGLowering::visitExtractElement(User &I) {
2387 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002388 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002389 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002390 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002391 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002392 TLI.getValueType(I.getType()), InVec, InIdx));
2393}
2394
Mon P Wangaeb06d22008-11-10 04:46:22 +00002395
2396// Utility for visitShuffleVector - Returns true if the mask is mask starting
2397// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002398static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2399 unsigned MaskNumElts = Mask.size();
2400 for (unsigned i = 0; i != MaskNumElts; ++i)
2401 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002402 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002403 return true;
2404}
2405
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002406void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002407 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002408 SDValue Src1 = getValue(I.getOperand(0));
2409 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002410
Nate Begeman9008ca62009-04-27 18:41:29 +00002411 // Convert the ConstantVector mask operand into an array of ints, with -1
2412 // representing undef values.
2413 SmallVector<Constant*, 8> MaskElts;
Owen Anderson001dbfe2009-07-16 18:04:31 +00002414 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
2415 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002416 unsigned MaskNumElts = MaskElts.size();
2417 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002418 if (isa<UndefValue>(MaskElts[i]))
2419 Mask.push_back(-1);
2420 else
2421 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2422 }
2423
Owen Andersone50ed302009-08-10 22:56:29 +00002424 EVT VT = TLI.getValueType(I.getType());
2425 EVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002426 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002427
Mon P Wangc7849c22008-11-16 05:06:27 +00002428 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002429 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2430 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002431 return;
2432 }
2433
2434 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002435 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2436 // Mask is longer than the source vectors and is a multiple of the source
2437 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002438 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002439 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2440 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002441 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002442 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002443 return;
2444 }
2445
Mon P Wangc7849c22008-11-16 05:06:27 +00002446 // Pad both vectors with undefs to make them the same length as the mask.
2447 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002448 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2449 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002450 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002451
Nate Begeman9008ca62009-04-27 18:41:29 +00002452 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2453 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002454 MOps1[0] = Src1;
2455 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002456
2457 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2458 getCurDebugLoc(), VT,
2459 &MOps1[0], NumConcat);
2460 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2461 getCurDebugLoc(), VT,
2462 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002463
Mon P Wangaeb06d22008-11-10 04:46:22 +00002464 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002465 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002466 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002467 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002468 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002469 MappedOps.push_back(Idx);
2470 else
2471 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002472 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002473 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2474 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002475 return;
2476 }
2477
Mon P Wangc7849c22008-11-16 05:06:27 +00002478 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002479 // Analyze the access pattern of the vector to see if we can extract
2480 // two subvectors and do the shuffle. The analysis is done by calculating
2481 // the range of elements the mask access on both vectors.
2482 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2483 int MaxRange[2] = {-1, -1};
2484
Nate Begeman5a5ca152009-04-29 05:20:52 +00002485 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002486 int Idx = Mask[i];
2487 int Input = 0;
2488 if (Idx < 0)
2489 continue;
2490
Nate Begeman5a5ca152009-04-29 05:20:52 +00002491 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002492 Input = 1;
2493 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002494 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002495 if (Idx > MaxRange[Input])
2496 MaxRange[Input] = Idx;
2497 if (Idx < MinRange[Input])
2498 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002499 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002500
Mon P Wangc7849c22008-11-16 05:06:27 +00002501 // Check if the access is smaller than the vector size and can we find
2502 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002503 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002504 int StartIdx[2]; // StartIdx to extract from
2505 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002506 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002507 RangeUse[Input] = 0; // Unused
2508 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002509 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002510 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002511 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002512 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002513 RangeUse[Input] = 1; // Extract from beginning of the vector
2514 StartIdx[Input] = 0;
2515 } else {
2516 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002517 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002518 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002519 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002520 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002521 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002522 }
2523
Bill Wendling636e2582009-08-21 18:16:06 +00002524 if (RangeUse[0] == 0 && RangeUse[1] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002525 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002526 return;
2527 }
2528 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2529 // Extract appropriate subvector and generate a vector shuffle
2530 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002531 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002532 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002533 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002534 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002535 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002536 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002537 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002538 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002539 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002540 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002541 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002542 int Idx = Mask[i];
2543 if (Idx < 0)
2544 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002545 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002546 MappedOps.push_back(Idx - StartIdx[0]);
2547 else
2548 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002549 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002550 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2551 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002552 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002553 }
2554 }
2555
Mon P Wangc7849c22008-11-16 05:06:27 +00002556 // We can't use either concat vectors or extract subvectors so fall back to
2557 // replacing the shuffle with extract and build vector.
2558 // to insert and build vector.
Owen Andersone50ed302009-08-10 22:56:29 +00002559 EVT EltVT = VT.getVectorElementType();
2560 EVT PtrVT = TLI.getPointerTy();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002561 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002562 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002563 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002564 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002565 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002566 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002567 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002568 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002569 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002570 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002571 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002572 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002573 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002574 }
2575 }
Evan Chenga87008d2009-02-25 22:49:59 +00002576 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2577 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002578}
2579
2580void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2581 const Value *Op0 = I.getOperand(0);
2582 const Value *Op1 = I.getOperand(1);
2583 const Type *AggTy = I.getType();
2584 const Type *ValTy = Op1->getType();
2585 bool IntoUndef = isa<UndefValue>(Op0);
2586 bool FromUndef = isa<UndefValue>(Op1);
2587
2588 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2589 I.idx_begin(), I.idx_end());
2590
Owen Andersone50ed302009-08-10 22:56:29 +00002591 SmallVector<EVT, 4> AggValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002592 ComputeValueVTs(TLI, AggTy, AggValueVTs);
Owen Andersone50ed302009-08-10 22:56:29 +00002593 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002594 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2595
2596 unsigned NumAggValues = AggValueVTs.size();
2597 unsigned NumValValues = ValValueVTs.size();
2598 SmallVector<SDValue, 4> Values(NumAggValues);
2599
2600 SDValue Agg = getValue(Op0);
2601 SDValue Val = getValue(Op1);
2602 unsigned i = 0;
2603 // Copy the beginning value(s) from the original aggregate.
2604 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002605 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002606 SDValue(Agg.getNode(), Agg.getResNo() + i);
2607 // Copy values from the inserted value(s).
2608 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002609 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002610 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2611 // Copy remaining value(s) from the original aggregate.
2612 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002613 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002614 SDValue(Agg.getNode(), Agg.getResNo() + i);
2615
Scott Michelfdc40a02009-02-17 22:15:04 +00002616 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002617 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2618 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002619}
2620
2621void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2622 const Value *Op0 = I.getOperand(0);
2623 const Type *AggTy = Op0->getType();
2624 const Type *ValTy = I.getType();
2625 bool OutOfUndef = isa<UndefValue>(Op0);
2626
2627 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2628 I.idx_begin(), I.idx_end());
2629
Owen Andersone50ed302009-08-10 22:56:29 +00002630 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002631 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2632
2633 unsigned NumValValues = ValValueVTs.size();
2634 SmallVector<SDValue, 4> Values(NumValValues);
2635
2636 SDValue Agg = getValue(Op0);
2637 // Copy out the selected value(s).
2638 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2639 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002640 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002641 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002642 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002643
Scott Michelfdc40a02009-02-17 22:15:04 +00002644 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002645 DAG.getVTList(&ValValueVTs[0], NumValValues),
2646 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002647}
2648
2649
2650void SelectionDAGLowering::visitGetElementPtr(User &I) {
2651 SDValue N = getValue(I.getOperand(0));
2652 const Type *Ty = I.getOperand(0)->getType();
2653
2654 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2655 OI != E; ++OI) {
2656 Value *Idx = *OI;
2657 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2658 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2659 if (Field) {
2660 // N = N + Offset
2661 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002662 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002663 DAG.getIntPtrConstant(Offset));
2664 }
2665 Ty = StTy->getElementType(Field);
2666 } else {
2667 Ty = cast<SequentialType>(Ty)->getElementType();
2668
2669 // If this is a constant subscript, handle it quickly.
2670 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2671 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002672 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002673 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002674 SDValue OffsVal;
Owen Andersone50ed302009-08-10 22:56:29 +00002675 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002676 unsigned PtrBits = PTy.getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002677 if (PtrBits < 64) {
2678 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2679 TLI.getPointerTy(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002680 DAG.getConstant(Offs, MVT::i64));
Evan Cheng65b52df2009-02-09 21:01:06 +00002681 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002682 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002683 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002684 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002685 continue;
2686 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002687
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002688 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +00002689 uint64_t ElementSize = TD->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002690 SDValue IdxN = getValue(Idx);
2691
2692 // If the index is smaller or larger than intptr_t, truncate or extend
2693 // it.
2694 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002695 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002696 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002697 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002698 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002699 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002700
2701 // If this is a multiply by a power of two, turn it into a shl
2702 // immediately. This is a very common case.
2703 if (ElementSize != 1) {
2704 if (isPowerOf2_64(ElementSize)) {
2705 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002706 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002707 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002708 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002709 } else {
2710 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002711 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002712 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002713 }
2714 }
2715
Scott Michelfdc40a02009-02-17 22:15:04 +00002716 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002717 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002718 }
2719 }
2720 setValue(&I, N);
2721}
2722
2723void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2724 // If this is a fixed sized alloca in the entry block of the function,
2725 // allocate it statically on the stack.
2726 if (FuncInfo.StaticAllocaMap.count(&I))
2727 return; // getValue will auto-populate this.
2728
2729 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002730 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002731 unsigned Align =
2732 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2733 I.getAlignment());
2734
2735 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002736
2737 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2738 AllocSize,
2739 DAG.getConstant(TySize, AllocSize.getValueType()));
2740
2741
2742
Owen Andersone50ed302009-08-10 22:56:29 +00002743 EVT IntPtr = TLI.getPointerTy();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002744 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002745 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002746 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002747 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002748 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002749 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002750
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002751 // Handle alignment. If the requested alignment is less than or equal to
2752 // the stack alignment, ignore it. If the size is greater than or equal to
2753 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2754 unsigned StackAlign =
2755 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2756 if (Align <= StackAlign)
2757 Align = 0;
2758
2759 // Round the size of the allocation up to the stack alignment size
2760 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002761 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002762 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002763 DAG.getIntPtrConstant(StackAlign-1));
2764 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002765 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002766 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002767 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2768
2769 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Owen Anderson825b72b2009-08-11 20:47:22 +00002770 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002771 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002772 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002773 setValue(&I, DSA);
2774 DAG.setRoot(DSA.getValue(1));
2775
2776 // Inform the Frame Information that we have just allocated a variable-sized
2777 // object.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002778 FuncInfo.MF->getFrameInfo()->CreateVariableSizedObject();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002779}
2780
2781void SelectionDAGLowering::visitLoad(LoadInst &I) {
2782 const Value *SV = I.getOperand(0);
2783 SDValue Ptr = getValue(SV);
2784
2785 const Type *Ty = I.getType();
2786 bool isVolatile = I.isVolatile();
2787 unsigned Alignment = I.getAlignment();
2788
Owen Andersone50ed302009-08-10 22:56:29 +00002789 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002790 SmallVector<uint64_t, 4> Offsets;
2791 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2792 unsigned NumValues = ValueVTs.size();
2793 if (NumValues == 0)
2794 return;
2795
2796 SDValue Root;
2797 bool ConstantMemory = false;
2798 if (I.isVolatile())
2799 // Serialize volatile loads with other side effects.
2800 Root = getRoot();
2801 else if (AA->pointsToConstantMemory(SV)) {
2802 // Do not serialize (non-volatile) loads of constant memory with anything.
2803 Root = DAG.getEntryNode();
2804 ConstantMemory = true;
2805 } else {
2806 // Do not serialize non-volatile loads against each other.
2807 Root = DAG.getRoot();
2808 }
2809
2810 SmallVector<SDValue, 4> Values(NumValues);
2811 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002812 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002813 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002814 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002815 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002816 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002817 DAG.getConstant(Offsets[i], PtrVT)),
2818 SV, Offsets[i],
2819 isVolatile, Alignment);
2820 Values[i] = L;
2821 Chains[i] = L.getValue(1);
2822 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002823
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002824 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002825 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002826 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002827 &Chains[0], NumValues);
2828 if (isVolatile)
2829 DAG.setRoot(Chain);
2830 else
2831 PendingLoads.push_back(Chain);
2832 }
2833
Scott Michelfdc40a02009-02-17 22:15:04 +00002834 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002835 DAG.getVTList(&ValueVTs[0], NumValues),
2836 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002837}
2838
2839
2840void SelectionDAGLowering::visitStore(StoreInst &I) {
2841 Value *SrcV = I.getOperand(0);
2842 Value *PtrV = I.getOperand(1);
2843
Owen Andersone50ed302009-08-10 22:56:29 +00002844 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002845 SmallVector<uint64_t, 4> Offsets;
2846 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2847 unsigned NumValues = ValueVTs.size();
2848 if (NumValues == 0)
2849 return;
2850
2851 // Get the lowered operands. Note that we do this after
2852 // checking if NumResults is zero, because with zero results
2853 // the operands won't have values in the map.
2854 SDValue Src = getValue(SrcV);
2855 SDValue Ptr = getValue(PtrV);
2856
2857 SDValue Root = getRoot();
2858 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002859 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002860 bool isVolatile = I.isVolatile();
2861 unsigned Alignment = I.getAlignment();
2862 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002863 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002864 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002865 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002866 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002867 DAG.getConstant(Offsets[i], PtrVT)),
2868 PtrV, Offsets[i],
2869 isVolatile, Alignment);
2870
Scott Michelfdc40a02009-02-17 22:15:04 +00002871 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002872 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002873}
2874
2875/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2876/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002877void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002878 unsigned Intrinsic) {
2879 bool HasChain = !I.doesNotAccessMemory();
2880 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2881
2882 // Build the operand list.
2883 SmallVector<SDValue, 8> Ops;
2884 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2885 if (OnlyLoad) {
2886 // We don't need to serialize loads against other loads.
2887 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002888 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002889 Ops.push_back(getRoot());
2890 }
2891 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002892
2893 // Info is set by getTgtMemInstrinsic
2894 TargetLowering::IntrinsicInfo Info;
2895 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2896
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002897 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002898 if (!IsTgtIntrinsic)
2899 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002900
2901 // Add all operands of the call to the operand list.
2902 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2903 SDValue Op = getValue(I.getOperand(i));
2904 assert(TLI.isTypeLegal(Op.getValueType()) &&
2905 "Intrinsic uses a non-legal type?");
2906 Ops.push_back(Op);
2907 }
2908
Owen Andersone50ed302009-08-10 22:56:29 +00002909 SmallVector<EVT, 4> ValueVTs;
Bob Wilson8d919552009-07-31 22:41:21 +00002910 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2911#ifndef NDEBUG
2912 for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) {
2913 assert(TLI.isTypeLegal(ValueVTs[Val]) &&
2914 "Intrinsic uses a non-legal type?");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002915 }
Bob Wilson8d919552009-07-31 22:41:21 +00002916#endif // NDEBUG
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002917 if (HasChain)
Owen Anderson825b72b2009-08-11 20:47:22 +00002918 ValueVTs.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002919
Bob Wilson8d919552009-07-31 22:41:21 +00002920 SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002921
2922 // Create the node.
2923 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002924 if (IsTgtIntrinsic) {
2925 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002926 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002927 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002928 Info.memVT, Info.ptrVal, Info.offset,
2929 Info.align, Info.vol,
2930 Info.readMem, Info.writeMem);
2931 }
2932 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002933 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002934 VTs, &Ops[0], Ops.size());
Owen Anderson1d0be152009-08-13 21:58:54 +00002935 else if (I.getType() != Type::getVoidTy(*DAG.getContext()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002936 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002937 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002938 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002939 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002940 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002941
2942 if (HasChain) {
2943 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2944 if (OnlyLoad)
2945 PendingLoads.push_back(Chain);
2946 else
2947 DAG.setRoot(Chain);
2948 }
Owen Anderson1d0be152009-08-13 21:58:54 +00002949 if (I.getType() != Type::getVoidTy(*DAG.getContext())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002950 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Owen Andersone50ed302009-08-10 22:56:29 +00002951 EVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002952 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002953 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002954 setValue(&I, Result);
2955 }
2956}
2957
2958/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2959static GlobalVariable *ExtractTypeInfo(Value *V) {
2960 V = V->stripPointerCasts();
2961 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2962 assert ((GV || isa<ConstantPointerNull>(V)) &&
2963 "TypeInfo must be a global variable or NULL");
2964 return GV;
2965}
2966
2967namespace llvm {
2968
2969/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2970/// call, and add them to the specified machine basic block.
2971void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2972 MachineBasicBlock *MBB) {
2973 // Inform the MachineModuleInfo of the personality for this landing pad.
2974 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2975 assert(CE->getOpcode() == Instruction::BitCast &&
2976 isa<Function>(CE->getOperand(0)) &&
2977 "Personality should be a function");
2978 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2979
2980 // Gather all the type infos for this landing pad and pass them along to
2981 // MachineModuleInfo.
2982 std::vector<GlobalVariable *> TyInfo;
2983 unsigned N = I.getNumOperands();
2984
2985 for (unsigned i = N - 1; i > 2; --i) {
2986 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2987 unsigned FilterLength = CI->getZExtValue();
2988 unsigned FirstCatch = i + FilterLength + !FilterLength;
2989 assert (FirstCatch <= N && "Invalid filter length");
2990
2991 if (FirstCatch < N) {
2992 TyInfo.reserve(N - FirstCatch);
2993 for (unsigned j = FirstCatch; j < N; ++j)
2994 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2995 MMI->addCatchTypeInfo(MBB, TyInfo);
2996 TyInfo.clear();
2997 }
2998
2999 if (!FilterLength) {
3000 // Cleanup.
3001 MMI->addCleanup(MBB);
3002 } else {
3003 // Filter.
3004 TyInfo.reserve(FilterLength - 1);
3005 for (unsigned j = i + 1; j < FirstCatch; ++j)
3006 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3007 MMI->addFilterTypeInfo(MBB, TyInfo);
3008 TyInfo.clear();
3009 }
3010
3011 N = i;
3012 }
3013 }
3014
3015 if (N > 3) {
3016 TyInfo.reserve(N - 3);
3017 for (unsigned j = 3; j < N; ++j)
3018 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3019 MMI->addCatchTypeInfo(MBB, TyInfo);
3020 }
3021}
3022
3023}
3024
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003025/// GetSignificand - Get the significand and build it into a floating-point
3026/// number with exponent of 1:
3027///
3028/// Op = (Op & 0x007fffff) | 0x3f800000;
3029///
3030/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003031static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003032GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003033 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3034 DAG.getConstant(0x007fffff, MVT::i32));
3035 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
3036 DAG.getConstant(0x3f800000, MVT::i32));
3037 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003038}
3039
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003040/// GetExponent - Get the exponent:
3041///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003042/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003043///
3044/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003045static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003046GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3047 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003048 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3049 DAG.getConstant(0x7f800000, MVT::i32));
3050 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003051 DAG.getConstant(23, TLI.getPointerTy()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003052 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
3053 DAG.getConstant(127, MVT::i32));
3054 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003055}
3056
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003057/// getF32Constant - Get 32-bit floating point constant.
3058static SDValue
3059getF32Constant(SelectionDAG &DAG, unsigned Flt) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003060 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003061}
3062
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003063/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003064/// visitIntrinsicCall: I is a call instruction
3065/// Op is the associated NodeType for I
3066const char *
3067SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003068 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003069 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003070 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003071 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003072 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003073 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003074 getValue(I.getOperand(2)),
3075 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003076 setValue(&I, L);
3077 DAG.setRoot(L.getValue(1));
3078 return 0;
3079}
3080
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003081// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003082const char *
3083SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003084 SDValue Op1 = getValue(I.getOperand(1));
3085 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003086
Owen Anderson825b72b2009-08-11 20:47:22 +00003087 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
Dan Gohmanfc166572009-04-09 23:54:40 +00003088 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003089
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003090 setValue(&I, Result);
3091 return 0;
3092}
Bill Wendling74c37652008-12-09 22:08:41 +00003093
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003094/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3095/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003096void
3097SelectionDAGLowering::visitExp(CallInst &I) {
3098 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003099 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003100
Owen Anderson825b72b2009-08-11 20:47:22 +00003101 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003102 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3103 SDValue Op = getValue(I.getOperand(1));
3104
3105 // Put the exponent in the right bit position for later addition to the
3106 // final result:
3107 //
3108 // #define LOG2OFe 1.4426950f
3109 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Owen Anderson825b72b2009-08-11 20:47:22 +00003110 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003111 getF32Constant(DAG, 0x3fb8aa3b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003112 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003113
3114 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003115 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3116 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003117
3118 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003119 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003120 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003121
3122 if (LimitFloatPrecision <= 6) {
3123 // For floating-point precision of 6:
3124 //
3125 // TwoToFractionalPartOfX =
3126 // 0.997535578f +
3127 // (0.735607626f + 0.252464424f * x) * x;
3128 //
3129 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003130 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003131 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003132 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003133 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003134 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3135 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003136 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003137 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003138
3139 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003140 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003141 TwoToFracPartOfX, IntegerPartOfX);
3142
Owen Anderson825b72b2009-08-11 20:47:22 +00003143 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003144 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3145 // For floating-point precision of 12:
3146 //
3147 // TwoToFractionalPartOfX =
3148 // 0.999892986f +
3149 // (0.696457318f +
3150 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3151 //
3152 // 0.000107046256 error, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003153 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003154 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003155 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003156 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003157 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3158 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003159 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003160 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3161 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003162 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003163 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003164
3165 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003166 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003167 TwoToFracPartOfX, IntegerPartOfX);
3168
Owen Anderson825b72b2009-08-11 20:47:22 +00003169 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003170 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3171 // For floating-point precision of 18:
3172 //
3173 // TwoToFractionalPartOfX =
3174 // 0.999999982f +
3175 // (0.693148872f +
3176 // (0.240227044f +
3177 // (0.554906021e-1f +
3178 // (0.961591928e-2f +
3179 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3180 //
3181 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003182 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003183 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003184 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003185 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003186 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3187 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003188 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003189 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3190 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003191 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003192 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3193 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003194 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003195 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3196 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003197 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003198 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3199 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003200 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003201 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003202 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003203
3204 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003205 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003206 TwoToFracPartOfX, IntegerPartOfX);
3207
Owen Anderson825b72b2009-08-11 20:47:22 +00003208 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003209 }
3210 } else {
3211 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003212 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003213 getValue(I.getOperand(1)).getValueType(),
3214 getValue(I.getOperand(1)));
3215 }
3216
Dale Johannesen59e577f2008-09-05 18:38:42 +00003217 setValue(&I, result);
3218}
3219
Bill Wendling39150252008-09-09 20:39:27 +00003220/// visitLog - Lower a log intrinsic. Handles the special sequences for
3221/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003222void
3223SelectionDAGLowering::visitLog(CallInst &I) {
3224 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003225 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003226
Owen Anderson825b72b2009-08-11 20:47:22 +00003227 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling39150252008-09-09 20:39:27 +00003228 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3229 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003230 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003231
3232 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003233 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003234 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003235 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003236
3237 // Get the significand and build it into a floating-point number with
3238 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003239 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003240
3241 if (LimitFloatPrecision <= 6) {
3242 // For floating-point precision of 6:
3243 //
3244 // LogofMantissa =
3245 // -1.1609546f +
3246 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003247 //
Bill Wendling39150252008-09-09 20:39:27 +00003248 // error 0.0034276066, which is better than 8 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003249 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003250 getF32Constant(DAG, 0xbe74c456));
Owen Anderson825b72b2009-08-11 20:47:22 +00003251 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003252 getF32Constant(DAG, 0x3fb3a2b1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003253 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3254 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003255 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003256
Scott Michelfdc40a02009-02-17 22:15:04 +00003257 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003258 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003259 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3260 // For floating-point precision of 12:
3261 //
3262 // LogOfMantissa =
3263 // -1.7417939f +
3264 // (2.8212026f +
3265 // (-1.4699568f +
3266 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3267 //
3268 // error 0.000061011436, which is 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003269 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003270 getF32Constant(DAG, 0xbd67b6d6));
Owen Anderson825b72b2009-08-11 20:47:22 +00003271 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003272 getF32Constant(DAG, 0x3ee4f4b8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003273 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3274 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003275 getF32Constant(DAG, 0x3fbc278b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003276 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3277 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003278 getF32Constant(DAG, 0x40348e95));
Owen Anderson825b72b2009-08-11 20:47:22 +00003279 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3280 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003281 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003282
Scott Michelfdc40a02009-02-17 22:15:04 +00003283 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003284 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003285 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3286 // For floating-point precision of 18:
3287 //
3288 // LogOfMantissa =
3289 // -2.1072184f +
3290 // (4.2372794f +
3291 // (-3.7029485f +
3292 // (2.2781945f +
3293 // (-0.87823314f +
3294 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3295 //
3296 // error 0.0000023660568, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003297 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003298 getF32Constant(DAG, 0xbc91e5ac));
Owen Anderson825b72b2009-08-11 20:47:22 +00003299 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003300 getF32Constant(DAG, 0x3e4350aa));
Owen Anderson825b72b2009-08-11 20:47:22 +00003301 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3302 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003303 getF32Constant(DAG, 0x3f60d3e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003304 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3305 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003306 getF32Constant(DAG, 0x4011cdf0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003307 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3308 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003309 getF32Constant(DAG, 0x406cfd1c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003310 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3311 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003312 getF32Constant(DAG, 0x408797cb));
Owen Anderson825b72b2009-08-11 20:47:22 +00003313 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3314 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003315 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003316
Scott Michelfdc40a02009-02-17 22:15:04 +00003317 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003318 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003319 }
3320 } else {
3321 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003322 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003323 getValue(I.getOperand(1)).getValueType(),
3324 getValue(I.getOperand(1)));
3325 }
3326
Dale Johannesen59e577f2008-09-05 18:38:42 +00003327 setValue(&I, result);
3328}
3329
Bill Wendling3eb59402008-09-09 00:28:24 +00003330/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3331/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003332void
3333SelectionDAGLowering::visitLog2(CallInst &I) {
3334 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003335 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003336
Owen Anderson825b72b2009-08-11 20:47:22 +00003337 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003338 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3339 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003340 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003341
Bill Wendling39150252008-09-09 20:39:27 +00003342 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003343 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003344
3345 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003346 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003347 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003348
Bill Wendling3eb59402008-09-09 00:28:24 +00003349 // Different possible minimax approximations of significand in
3350 // floating-point for various degrees of accuracy over [1,2].
3351 if (LimitFloatPrecision <= 6) {
3352 // For floating-point precision of 6:
3353 //
3354 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3355 //
3356 // error 0.0049451742, which is more than 7 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003357 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003358 getF32Constant(DAG, 0xbeb08fe0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003359 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003360 getF32Constant(DAG, 0x40019463));
Owen Anderson825b72b2009-08-11 20:47:22 +00003361 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3362 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003363 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003364
Scott Michelfdc40a02009-02-17 22:15:04 +00003365 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003366 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003367 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3368 // For floating-point precision of 12:
3369 //
3370 // Log2ofMantissa =
3371 // -2.51285454f +
3372 // (4.07009056f +
3373 // (-2.12067489f +
3374 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003375 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003376 // error 0.0000876136000, which is better than 13 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003377 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003378 getF32Constant(DAG, 0xbda7262e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003379 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003380 getF32Constant(DAG, 0x3f25280b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003381 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3382 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003383 getF32Constant(DAG, 0x4007b923));
Owen Anderson825b72b2009-08-11 20:47:22 +00003384 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3385 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003386 getF32Constant(DAG, 0x40823e2f));
Owen Anderson825b72b2009-08-11 20:47:22 +00003387 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3388 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003389 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003390
Scott Michelfdc40a02009-02-17 22:15:04 +00003391 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003392 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003393 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3394 // For floating-point precision of 18:
3395 //
3396 // Log2ofMantissa =
3397 // -3.0400495f +
3398 // (6.1129976f +
3399 // (-5.3420409f +
3400 // (3.2865683f +
3401 // (-1.2669343f +
3402 // (0.27515199f -
3403 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3404 //
3405 // error 0.0000018516, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003406 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003407 getF32Constant(DAG, 0xbcd2769e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003408 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003409 getF32Constant(DAG, 0x3e8ce0b9));
Owen Anderson825b72b2009-08-11 20:47:22 +00003410 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3411 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003412 getF32Constant(DAG, 0x3fa22ae7));
Owen Anderson825b72b2009-08-11 20:47:22 +00003413 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3414 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003415 getF32Constant(DAG, 0x40525723));
Owen Anderson825b72b2009-08-11 20:47:22 +00003416 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3417 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003418 getF32Constant(DAG, 0x40aaf200));
Owen Anderson825b72b2009-08-11 20:47:22 +00003419 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3420 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003421 getF32Constant(DAG, 0x40c39dad));
Owen Anderson825b72b2009-08-11 20:47:22 +00003422 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3423 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003424 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003425
Scott Michelfdc40a02009-02-17 22:15:04 +00003426 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003427 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003428 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003429 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003430 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003431 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003432 getValue(I.getOperand(1)).getValueType(),
3433 getValue(I.getOperand(1)));
3434 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003435
Dale Johannesen59e577f2008-09-05 18:38:42 +00003436 setValue(&I, result);
3437}
3438
Bill Wendling3eb59402008-09-09 00:28:24 +00003439/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3440/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003441void
3442SelectionDAGLowering::visitLog10(CallInst &I) {
3443 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003444 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003445
Owen Anderson825b72b2009-08-11 20:47:22 +00003446 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003447 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3448 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003449 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003450
Bill Wendling39150252008-09-09 20:39:27 +00003451 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003452 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003453 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003454 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003455
3456 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003457 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003458 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003459
3460 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003461 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003462 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003463 // Log10ofMantissa =
3464 // -0.50419619f +
3465 // (0.60948995f - 0.10380950f * x) * x;
3466 //
3467 // error 0.0014886165, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003468 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003469 getF32Constant(DAG, 0xbdd49a13));
Owen Anderson825b72b2009-08-11 20:47:22 +00003470 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003471 getF32Constant(DAG, 0x3f1c0789));
Owen Anderson825b72b2009-08-11 20:47:22 +00003472 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3473 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003474 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003475
Scott Michelfdc40a02009-02-17 22:15:04 +00003476 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003477 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003478 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3479 // For floating-point precision of 12:
3480 //
3481 // Log10ofMantissa =
3482 // -0.64831180f +
3483 // (0.91751397f +
3484 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3485 //
3486 // error 0.00019228036, which is better than 12 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003487 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003488 getF32Constant(DAG, 0x3d431f31));
Owen Anderson825b72b2009-08-11 20:47:22 +00003489 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003490 getF32Constant(DAG, 0x3ea21fb2));
Owen Anderson825b72b2009-08-11 20:47:22 +00003491 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3492 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003493 getF32Constant(DAG, 0x3f6ae232));
Owen Anderson825b72b2009-08-11 20:47:22 +00003494 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3495 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003496 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003497
Scott Michelfdc40a02009-02-17 22:15:04 +00003498 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003499 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003500 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003501 // For floating-point precision of 18:
3502 //
3503 // Log10ofMantissa =
3504 // -0.84299375f +
3505 // (1.5327582f +
3506 // (-1.0688956f +
3507 // (0.49102474f +
3508 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3509 //
3510 // error 0.0000037995730, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003511 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003512 getF32Constant(DAG, 0x3c5d51ce));
Owen Anderson825b72b2009-08-11 20:47:22 +00003513 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003514 getF32Constant(DAG, 0x3e00685a));
Owen Anderson825b72b2009-08-11 20:47:22 +00003515 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3516 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003517 getF32Constant(DAG, 0x3efb6798));
Owen Anderson825b72b2009-08-11 20:47:22 +00003518 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3519 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003520 getF32Constant(DAG, 0x3f88d192));
Owen Anderson825b72b2009-08-11 20:47:22 +00003521 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3522 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003523 getF32Constant(DAG, 0x3fc4316c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003524 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3525 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003526 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003527
Scott Michelfdc40a02009-02-17 22:15:04 +00003528 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003529 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003530 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003531 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003532 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003533 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003534 getValue(I.getOperand(1)).getValueType(),
3535 getValue(I.getOperand(1)));
3536 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003537
Dale Johannesen59e577f2008-09-05 18:38:42 +00003538 setValue(&I, result);
3539}
3540
Bill Wendlinge10c8142008-09-09 22:39:21 +00003541/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3542/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003543void
3544SelectionDAGLowering::visitExp2(CallInst &I) {
3545 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003546 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003547
Owen Anderson825b72b2009-08-11 20:47:22 +00003548 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003549 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3550 SDValue Op = getValue(I.getOperand(1));
3551
Owen Anderson825b72b2009-08-11 20:47:22 +00003552 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003553
3554 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003555 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3556 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003557
3558 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003559 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003560 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003561
3562 if (LimitFloatPrecision <= 6) {
3563 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003564 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003565 // TwoToFractionalPartOfX =
3566 // 0.997535578f +
3567 // (0.735607626f + 0.252464424f * x) * x;
3568 //
3569 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003570 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003571 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003572 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003573 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003574 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3575 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003576 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003577 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003578 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003579 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003580
Scott Michelfdc40a02009-02-17 22:15:04 +00003581 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003582 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003583 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3584 // For floating-point precision of 12:
3585 //
3586 // TwoToFractionalPartOfX =
3587 // 0.999892986f +
3588 // (0.696457318f +
3589 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3590 //
3591 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003592 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003593 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003594 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003595 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003596 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3597 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003598 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003599 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3600 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003601 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003602 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003603 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003604 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003605
Scott Michelfdc40a02009-02-17 22:15:04 +00003606 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003607 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003608 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3609 // For floating-point precision of 18:
3610 //
3611 // TwoToFractionalPartOfX =
3612 // 0.999999982f +
3613 // (0.693148872f +
3614 // (0.240227044f +
3615 // (0.554906021e-1f +
3616 // (0.961591928e-2f +
3617 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3618 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003619 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003620 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003621 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003622 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003623 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3624 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003625 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003626 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3627 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003628 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003629 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3630 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003631 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003632 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3633 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003634 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003635 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3636 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003637 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003638 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003639 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003640 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003641
Scott Michelfdc40a02009-02-17 22:15:04 +00003642 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003643 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003644 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003645 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003646 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003647 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003648 getValue(I.getOperand(1)).getValueType(),
3649 getValue(I.getOperand(1)));
3650 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003651
Dale Johannesen601d3c02008-09-05 01:48:15 +00003652 setValue(&I, result);
3653}
3654
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003655/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3656/// limited-precision mode with x == 10.0f.
3657void
3658SelectionDAGLowering::visitPow(CallInst &I) {
3659 SDValue result;
3660 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003661 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003662 bool IsExp10 = false;
3663
Owen Anderson825b72b2009-08-11 20:47:22 +00003664 if (getValue(Val).getValueType() == MVT::f32 &&
3665 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003666 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3667 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3668 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3669 APFloat Ten(10.0f);
3670 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3671 }
3672 }
3673 }
3674
3675 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3676 SDValue Op = getValue(I.getOperand(2));
3677
3678 // Put the exponent in the right bit position for later addition to the
3679 // final result:
3680 //
3681 // #define LOG2OF10 3.3219281f
3682 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Owen Anderson825b72b2009-08-11 20:47:22 +00003683 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003684 getF32Constant(DAG, 0x40549a78));
Owen Anderson825b72b2009-08-11 20:47:22 +00003685 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003686
3687 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003688 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3689 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003690
3691 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003692 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003693 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003694
3695 if (LimitFloatPrecision <= 6) {
3696 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003697 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003698 // twoToFractionalPartOfX =
3699 // 0.997535578f +
3700 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003701 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003702 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003703 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003704 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003705 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003706 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003707 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3708 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003709 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003710 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003711 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003712 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003713
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003714 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003715 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003716 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3717 // For floating-point precision of 12:
3718 //
3719 // TwoToFractionalPartOfX =
3720 // 0.999892986f +
3721 // (0.696457318f +
3722 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3723 //
3724 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003725 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003726 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003727 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003728 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003729 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3730 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003731 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003732 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3733 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003734 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003735 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003736 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003737 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003738
Scott Michelfdc40a02009-02-17 22:15:04 +00003739 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003740 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003741 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3742 // For floating-point precision of 18:
3743 //
3744 // TwoToFractionalPartOfX =
3745 // 0.999999982f +
3746 // (0.693148872f +
3747 // (0.240227044f +
3748 // (0.554906021e-1f +
3749 // (0.961591928e-2f +
3750 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3751 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003752 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003753 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003754 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003755 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003756 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3757 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003758 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003759 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3760 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003761 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003762 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3763 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003764 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003765 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3766 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003767 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003768 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3769 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003770 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003771 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003772 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003773 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003774
Scott Michelfdc40a02009-02-17 22:15:04 +00003775 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003776 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003777 }
3778 } else {
3779 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003780 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003781 getValue(I.getOperand(1)).getValueType(),
3782 getValue(I.getOperand(1)),
3783 getValue(I.getOperand(2)));
3784 }
3785
3786 setValue(&I, result);
3787}
3788
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003789/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3790/// we want to emit this as a call to a named external function, return the name
3791/// otherwise lower it and return null.
3792const char *
3793SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003794 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003795 switch (Intrinsic) {
3796 default:
3797 // By default, turn this into a target intrinsic node.
3798 visitTargetIntrinsic(I, Intrinsic);
3799 return 0;
3800 case Intrinsic::vastart: visitVAStart(I); return 0;
3801 case Intrinsic::vaend: visitVAEnd(I); return 0;
3802 case Intrinsic::vacopy: visitVACopy(I); return 0;
3803 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003804 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003805 getValue(I.getOperand(1))));
3806 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003807 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003808 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003809 getValue(I.getOperand(1))));
3810 return 0;
3811 case Intrinsic::setjmp:
3812 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3813 break;
3814 case Intrinsic::longjmp:
3815 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3816 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003817 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003818 SDValue Op1 = getValue(I.getOperand(1));
3819 SDValue Op2 = getValue(I.getOperand(2));
3820 SDValue Op3 = getValue(I.getOperand(3));
3821 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003822 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003823 I.getOperand(1), 0, I.getOperand(2), 0));
3824 return 0;
3825 }
Chris Lattner824b9582008-11-21 16:42:48 +00003826 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003827 SDValue Op1 = getValue(I.getOperand(1));
3828 SDValue Op2 = getValue(I.getOperand(2));
3829 SDValue Op3 = getValue(I.getOperand(3));
3830 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003831 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003832 I.getOperand(1), 0));
3833 return 0;
3834 }
Chris Lattner824b9582008-11-21 16:42:48 +00003835 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003836 SDValue Op1 = getValue(I.getOperand(1));
3837 SDValue Op2 = getValue(I.getOperand(2));
3838 SDValue Op3 = getValue(I.getOperand(3));
3839 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3840
3841 // If the source and destination are known to not be aliases, we can
3842 // lower memmove as memcpy.
3843 uint64_t Size = -1ULL;
3844 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003845 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003846 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3847 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003848 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003849 I.getOperand(1), 0, I.getOperand(2), 0));
3850 return 0;
3851 }
3852
Dale Johannesena04b7572009-02-03 23:04:43 +00003853 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003854 I.getOperand(1), 0, I.getOperand(2), 0));
3855 return 0;
3856 }
3857 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003858 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003859 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003860 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003861 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003862 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003863
Bill Wendling98a366d2009-04-29 23:29:43 +00003864 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003865 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003866 SPI.getLine(),
3867 SPI.getColumn(),
3868 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003869 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003870 return 0;
3871 }
3872 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003873 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003874 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003875 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3876 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003877 unsigned LabelID =
Devang Patele4b27562009-08-28 23:24:31 +00003878 DW->RecordRegionStart(RSI.getContext());
Devang Patel48c7fa22009-04-13 18:13:16 +00003879 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3880 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003881 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003882 return 0;
3883 }
3884 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003885 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003886 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003887
Devang Patel7e1e31f2009-07-02 22:43:26 +00003888 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3889 || !DW->ShouldEmitDwarfDebug())
3890 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003891
Devang Patel7e1e31f2009-07-02 22:43:26 +00003892 MachineFunction &MF = DAG.getMachineFunction();
Devang Patele4b27562009-08-28 23:24:31 +00003893 DISubprogram Subprogram(REI.getContext());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003894
3895 if (isInlinedFnEnd(REI, MF.getFunction())) {
3896 // This is end of inlined function. Debugging information for inlined
3897 // function is not handled yet (only supported by FastISel).
3898 if (OptLevel == CodeGenOpt::None) {
3899 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3900 if (ID != 0)
3901 // Returned ID is 0 if this is unbalanced "end of inlined
3902 // scope". This could happen if optimizer eats dbg intrinsics or
3903 // "beginning of inlined scope" is not recoginized due to missing
3904 // location info. In such cases, do ignore this region.end.
3905 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3906 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003907 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003908 return 0;
3909 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003910
Devang Patel7e1e31f2009-07-02 22:43:26 +00003911 unsigned LabelID =
Devang Patele4b27562009-08-28 23:24:31 +00003912 DW->RecordRegionEnd(REI.getContext());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003913 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3914 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003915 return 0;
3916 }
3917 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003918 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003919 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003920 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None))
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003921 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003922
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003923 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003924 // This is a beginning of an inlined function.
3925 if (isInlinedFnStart(FSI, MF.getFunction())) {
3926 if (OptLevel != CodeGenOpt::None)
3927 // FIXME: Debugging informaation for inlined function is only
3928 // supported at CodeGenOpt::Node.
3929 return 0;
3930
Bill Wendlingc677fe52009-05-10 00:10:50 +00003931 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003932 // If llvm.dbg.func.start is seen in a new block before any
3933 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3934 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3935 if (PrevLoc.isUnknown())
3936 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003937
Devang Patel7e1e31f2009-07-02 22:43:26 +00003938 // Record the source line.
3939 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3940
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003941 if (!DW || !DW->ShouldEmitDwarfDebug())
3942 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003943 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
Devang Patele4b27562009-08-28 23:24:31 +00003944 DISubprogram SP(FSI.getSubprogram());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003945 DICompileUnit CU(PrevLocTpl.CompileUnit);
3946 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3947 PrevLocTpl.Line,
3948 PrevLocTpl.Col);
3949 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3950 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003951 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003952 }
3953
Devang Patel07b0ec02009-07-02 00:08:09 +00003954 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003955 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003956
3957 if (!DW || !DW->ShouldEmitDwarfDebug())
3958 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003959 // llvm.dbg.func_start also defines beginning of function scope.
Devang Patele4b27562009-08-28 23:24:31 +00003960 DW->RecordRegionStart(FSI.getSubprogram());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003961 return 0;
3962 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003963 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003964 if (OptLevel != CodeGenOpt::None)
3965 // FIXME: Variable debug info is not supported here.
3966 return 0;
Devang Patel24f20e02009-08-22 17:12:53 +00003967 DwarfWriter *DW = DAG.getDwarfWriter();
3968 if (!DW)
3969 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003970 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3971 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3972 return 0;
3973
3974 Value *Variable = DI.getVariable();
Devang Patel24f20e02009-08-22 17:12:53 +00003975 Value *Address = DI.getAddress();
3976 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
3977 Address = BCI->getOperand(0);
3978 AllocaInst *AI = dyn_cast<AllocaInst>(Address);
3979 // Don't handle byval struct arguments or VLAs, for example.
3980 if (!AI)
3981 return 0;
Devang Patelbd1d6a82009-09-05 00:34:14 +00003982 DenseMap<const AllocaInst*, int>::iterator SI =
3983 FuncInfo.StaticAllocaMap.find(AI);
3984 if (SI == FuncInfo.StaticAllocaMap.end())
3985 return 0; // VLAs.
3986 int FI = SI->second;
Devang Patele4b27562009-08-28 23:24:31 +00003987 DW->RecordVariable(cast<MDNode>(Variable), FI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003988 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003989 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003990 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003991 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003992 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Owen Anderson825b72b2009-08-11 20:47:22 +00003993 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003994 SDValue Ops[1];
3995 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003996 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003997 setValue(&I, Op);
3998 DAG.setRoot(Op.getValue(1));
3999 return 0;
4000 }
4001
4002 case Intrinsic::eh_selector_i32:
4003 case Intrinsic::eh_selector_i64: {
4004 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Evan Cheng7cefd802009-08-14 01:56:37 +00004005 EVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ? MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004006
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004007 if (MMI) {
4008 if (CurMBB->isLandingPad())
4009 AddCatchInfo(I, MMI, CurMBB);
4010 else {
4011#ifndef NDEBUG
4012 FuncInfo.CatchInfoLost.insert(&I);
4013#endif
4014 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4015 unsigned Reg = TLI.getExceptionSelectorRegister();
4016 if (Reg) CurMBB->addLiveIn(Reg);
4017 }
4018
4019 // Insert the EHSELECTION instruction.
Owen Anderson825b72b2009-08-11 20:47:22 +00004020 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004021 SDValue Ops[2];
4022 Ops[0] = getValue(I.getOperand(1));
4023 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004024 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004025 setValue(&I, Op);
4026 DAG.setRoot(Op.getValue(1));
4027 } else {
4028 setValue(&I, DAG.getConstant(0, VT));
4029 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004030
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004031 return 0;
4032 }
4033
4034 case Intrinsic::eh_typeid_for_i32:
4035 case Intrinsic::eh_typeid_for_i64: {
4036 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004037 EVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Owen Anderson825b72b2009-08-11 20:47:22 +00004038 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004039
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004040 if (MMI) {
4041 // Find the type id for the given typeinfo.
4042 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4043
4044 unsigned TypeID = MMI->getTypeIDFor(GV);
4045 setValue(&I, DAG.getConstant(TypeID, VT));
4046 } else {
4047 // Return something different to eh_selector.
4048 setValue(&I, DAG.getConstant(1, VT));
4049 }
4050
4051 return 0;
4052 }
4053
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004054 case Intrinsic::eh_return_i32:
4055 case Intrinsic::eh_return_i64:
4056 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004057 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004058 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004059 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004060 getControlRoot(),
4061 getValue(I.getOperand(1)),
4062 getValue(I.getOperand(2))));
4063 } else {
4064 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4065 }
4066
4067 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004068 case Intrinsic::eh_unwind_init:
4069 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4070 MMI->setCallsUnwindInit(true);
4071 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004072
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004073 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004074
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004075 case Intrinsic::eh_dwarf_cfa: {
Owen Andersone50ed302009-08-10 22:56:29 +00004076 EVT VT = getValue(I.getOperand(1)).getValueType();
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004077 SDValue CfaArg;
4078 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004079 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004080 TLI.getPointerTy(), getValue(I.getOperand(1)));
4081 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004082 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004083 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004084
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004085 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004086 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004087 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004088 TLI.getPointerTy()),
4089 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004090 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004091 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004092 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004093 TLI.getPointerTy(),
4094 DAG.getConstant(0,
4095 TLI.getPointerTy())),
4096 Offset));
4097 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004098 }
Mon P Wang77cdf302008-11-10 20:54:11 +00004099 case Intrinsic::convertff:
4100 case Intrinsic::convertfsi:
4101 case Intrinsic::convertfui:
4102 case Intrinsic::convertsif:
4103 case Intrinsic::convertuif:
4104 case Intrinsic::convertss:
4105 case Intrinsic::convertsu:
4106 case Intrinsic::convertus:
4107 case Intrinsic::convertuu: {
4108 ISD::CvtCode Code = ISD::CVT_INVALID;
4109 switch (Intrinsic) {
4110 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4111 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4112 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4113 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4114 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4115 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4116 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4117 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4118 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4119 }
Owen Andersone50ed302009-08-10 22:56:29 +00004120 EVT DestVT = TLI.getValueType(I.getType());
Mon P Wang77cdf302008-11-10 20:54:11 +00004121 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004122 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004123 DAG.getValueType(DestVT),
4124 DAG.getValueType(getValue(Op1).getValueType()),
4125 getValue(I.getOperand(2)),
4126 getValue(I.getOperand(3)),
4127 Code));
4128 return 0;
4129 }
4130
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004131 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004132 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004133 getValue(I.getOperand(1)).getValueType(),
4134 getValue(I.getOperand(1))));
4135 return 0;
4136 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004137 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004138 getValue(I.getOperand(1)).getValueType(),
4139 getValue(I.getOperand(1)),
4140 getValue(I.getOperand(2))));
4141 return 0;
4142 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004143 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004144 getValue(I.getOperand(1)).getValueType(),
4145 getValue(I.getOperand(1))));
4146 return 0;
4147 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004148 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004149 getValue(I.getOperand(1)).getValueType(),
4150 getValue(I.getOperand(1))));
4151 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004152 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004153 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004154 return 0;
4155 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004156 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004157 return 0;
4158 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004159 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004160 return 0;
4161 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004162 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004163 return 0;
4164 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004165 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004166 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004167 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004168 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004169 return 0;
4170 case Intrinsic::pcmarker: {
4171 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004172 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004173 return 0;
4174 }
4175 case Intrinsic::readcyclecounter: {
4176 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004177 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004178 DAG.getVTList(MVT::i64, MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004179 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004180 setValue(&I, Tmp);
4181 DAG.setRoot(Tmp.getValue(1));
4182 return 0;
4183 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004184 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004185 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004186 getValue(I.getOperand(1)).getValueType(),
4187 getValue(I.getOperand(1))));
4188 return 0;
4189 case Intrinsic::cttz: {
4190 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004191 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004192 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004193 setValue(&I, result);
4194 return 0;
4195 }
4196 case Intrinsic::ctlz: {
4197 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004198 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004199 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004200 setValue(&I, result);
4201 return 0;
4202 }
4203 case Intrinsic::ctpop: {
4204 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004205 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004206 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004207 setValue(&I, result);
4208 return 0;
4209 }
4210 case Intrinsic::stacksave: {
4211 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004212 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004213 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004214 setValue(&I, Tmp);
4215 DAG.setRoot(Tmp.getValue(1));
4216 return 0;
4217 }
4218 case Intrinsic::stackrestore: {
4219 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004220 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004221 return 0;
4222 }
Bill Wendling57344502008-11-18 11:01:33 +00004223 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004224 // Emit code into the DAG to store the stack guard onto the stack.
4225 MachineFunction &MF = DAG.getMachineFunction();
4226 MachineFrameInfo *MFI = MF.getFrameInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004227 EVT PtrTy = TLI.getPointerTy();
Bill Wendlingb2a42982008-11-06 02:29:10 +00004228
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004229 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4230 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004231
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004232 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004233 MFI->setStackProtectorIndex(FI);
4234
4235 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4236
4237 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004238 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004239 PseudoSourceValue::getFixedStack(FI),
4240 0, true);
4241 setValue(&I, Result);
4242 DAG.setRoot(Result);
4243 return 0;
4244 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004245 case Intrinsic::var_annotation:
4246 // Discard annotate attributes
4247 return 0;
4248
4249 case Intrinsic::init_trampoline: {
4250 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4251
4252 SDValue Ops[6];
4253 Ops[0] = getRoot();
4254 Ops[1] = getValue(I.getOperand(1));
4255 Ops[2] = getValue(I.getOperand(2));
4256 Ops[3] = getValue(I.getOperand(3));
4257 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4258 Ops[5] = DAG.getSrcValue(F);
4259
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004260 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004261 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004262 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004263
4264 setValue(&I, Tmp);
4265 DAG.setRoot(Tmp.getValue(1));
4266 return 0;
4267 }
4268
4269 case Intrinsic::gcroot:
4270 if (GFI) {
4271 Value *Alloca = I.getOperand(1);
4272 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004273
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004274 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4275 GFI->addStackRoot(FI->getIndex(), TypeMap);
4276 }
4277 return 0;
4278
4279 case Intrinsic::gcread:
4280 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004281 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004282 return 0;
4283
4284 case Intrinsic::flt_rounds: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004285 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004286 return 0;
4287 }
4288
4289 case Intrinsic::trap: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004290 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004291 return 0;
4292 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004293
Bill Wendlingef375462008-11-21 02:38:44 +00004294 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004295 return implVisitAluOverflow(I, ISD::UADDO);
4296 case Intrinsic::sadd_with_overflow:
4297 return implVisitAluOverflow(I, ISD::SADDO);
4298 case Intrinsic::usub_with_overflow:
4299 return implVisitAluOverflow(I, ISD::USUBO);
4300 case Intrinsic::ssub_with_overflow:
4301 return implVisitAluOverflow(I, ISD::SSUBO);
4302 case Intrinsic::umul_with_overflow:
4303 return implVisitAluOverflow(I, ISD::UMULO);
4304 case Intrinsic::smul_with_overflow:
4305 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004306
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004307 case Intrinsic::prefetch: {
4308 SDValue Ops[4];
4309 Ops[0] = getRoot();
4310 Ops[1] = getValue(I.getOperand(1));
4311 Ops[2] = getValue(I.getOperand(2));
4312 Ops[3] = getValue(I.getOperand(3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004313 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004314 return 0;
4315 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004316
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004317 case Intrinsic::memory_barrier: {
4318 SDValue Ops[6];
4319 Ops[0] = getRoot();
4320 for (int x = 1; x < 6; ++x)
4321 Ops[x] = getValue(I.getOperand(x));
4322
Owen Anderson825b72b2009-08-11 20:47:22 +00004323 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004324 return 0;
4325 }
4326 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004327 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004328 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004329 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004330 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4331 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004332 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004333 getValue(I.getOperand(2)),
4334 getValue(I.getOperand(3)),
4335 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004336 setValue(&I, L);
4337 DAG.setRoot(L.getValue(1));
4338 return 0;
4339 }
4340 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004341 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004342 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004343 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004344 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004345 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004346 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004348 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004349 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004350 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004351 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004352 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004353 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004354 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004355 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004356 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004357 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004358 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004359 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004360 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004361 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004362 }
4363}
4364
Dan Gohman98ca4f22009-08-05 01:29:28 +00004365/// Test if the given instruction is in a position to be optimized
4366/// with a tail-call. This roughly means that it's in a block with
4367/// a return and there's nothing that needs to be scheduled
4368/// between it and the return.
4369///
4370/// This function only tests target-independent requirements.
4371/// For target-dependent requirements, a target should override
4372/// TargetLowering::IsEligibleForTailCallOptimization.
4373///
4374static bool
4375isInTailCallPosition(const Instruction *I, Attributes RetAttr,
4376 const TargetLowering &TLI) {
4377 const BasicBlock *ExitBB = I->getParent();
4378 const TerminatorInst *Term = ExitBB->getTerminator();
4379 const ReturnInst *Ret = dyn_cast<ReturnInst>(Term);
4380 const Function *F = ExitBB->getParent();
4381
4382 // The block must end in a return statement or an unreachable.
4383 if (!Ret && !isa<UnreachableInst>(Term)) return false;
4384
4385 // If I will have a chain, make sure no other instruction that will have a
4386 // chain interposes between I and the return.
4387 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
4388 !I->isSafeToSpeculativelyExecute())
4389 for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ;
4390 --BBI) {
4391 if (&*BBI == I)
4392 break;
4393 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
4394 !BBI->isSafeToSpeculativelyExecute())
4395 return false;
4396 }
4397
4398 // If the block ends with a void return or unreachable, it doesn't matter
4399 // what the call's return type is.
4400 if (!Ret || Ret->getNumOperands() == 0) return true;
4401
4402 // Conservatively require the attributes of the call to match those of
4403 // the return.
4404 if (F->getAttributes().getRetAttributes() != RetAttr)
4405 return false;
4406
4407 // Otherwise, make sure the unmodified return value of I is the return value.
4408 for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ;
4409 U = dyn_cast<Instruction>(U->getOperand(0))) {
4410 if (!U)
4411 return false;
4412 if (!U->hasOneUse())
4413 return false;
4414 if (U == I)
4415 break;
4416 // Check for a truly no-op truncate.
4417 if (isa<TruncInst>(U) &&
4418 TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType()))
4419 continue;
4420 // Check for a truly no-op bitcast.
4421 if (isa<BitCastInst>(U) &&
4422 (U->getOperand(0)->getType() == U->getType() ||
4423 (isa<PointerType>(U->getOperand(0)->getType()) &&
4424 isa<PointerType>(U->getType()))))
4425 continue;
4426 // Otherwise it's not a true no-op.
4427 return false;
4428 }
4429
4430 return true;
4431}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004432
4433void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004434 bool isTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004435 MachineBasicBlock *LandingPad) {
4436 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4437 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4438 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4439 unsigned BeginLabel = 0, EndLabel = 0;
4440
4441 TargetLowering::ArgListTy Args;
4442 TargetLowering::ArgListEntry Entry;
4443 Args.reserve(CS.arg_size());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004444 unsigned j = 1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004445 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Dan Gohman98ca4f22009-08-05 01:29:28 +00004446 i != e; ++i, ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004447 SDValue ArgNode = getValue(*i);
4448 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4449
4450 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004451 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4452 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4453 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4454 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4455 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4456 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004457 Entry.Alignment = CS.getParamAlignment(attrInd);
4458 Args.push_back(Entry);
4459 }
4460
4461 if (LandingPad && MMI) {
4462 // Insert a label before the invoke call to mark the try range. This can be
4463 // used to detect deletion of the invoke via the MachineModuleInfo.
4464 BeginLabel = MMI->NextLabelID();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00004465
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004466 // Both PendingLoads and PendingExports must be flushed here;
4467 // this call might not return.
4468 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004469 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4470 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004471 }
4472
Dan Gohman98ca4f22009-08-05 01:29:28 +00004473 // Check if target-independent constraints permit a tail call here.
4474 // Target-dependent constraints are checked within TLI.LowerCallTo.
4475 if (isTailCall &&
4476 !isInTailCallPosition(CS.getInstruction(),
4477 CS.getAttributes().getRetAttributes(),
4478 TLI))
4479 isTailCall = false;
4480
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004481 std::pair<SDValue,SDValue> Result =
4482 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004483 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004484 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004485 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004486 CS.getCallingConv(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00004487 isTailCall,
4488 !CS.getInstruction()->use_empty(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004489 Callee, Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004490 assert((isTailCall || Result.second.getNode()) &&
4491 "Non-null chain expected with non-tail call!");
4492 assert((Result.second.getNode() || !Result.first.getNode()) &&
4493 "Null value expected with tail call!");
4494 if (Result.first.getNode())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004495 setValue(CS.getInstruction(), Result.first);
Dan Gohman98ca4f22009-08-05 01:29:28 +00004496 // As a special case, a null chain means that a tail call has
4497 // been emitted and the DAG root is already updated.
4498 if (Result.second.getNode())
4499 DAG.setRoot(Result.second);
4500 else
4501 HasTailCall = true;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004502
4503 if (LandingPad && MMI) {
4504 // Insert a label at the end of the invoke call to mark the try range. This
4505 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4506 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004507 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4508 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004509
4510 // Inform MachineModuleInfo of range.
4511 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4512 }
4513}
4514
4515
4516void SelectionDAGLowering::visitCall(CallInst &I) {
4517 const char *RenameFn = 0;
4518 if (Function *F = I.getCalledFunction()) {
4519 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004520 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4521 if (II) {
4522 if (unsigned IID = II->getIntrinsicID(F)) {
4523 RenameFn = visitIntrinsicCall(I, IID);
4524 if (!RenameFn)
4525 return;
4526 }
4527 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004528 if (unsigned IID = F->getIntrinsicID()) {
4529 RenameFn = visitIntrinsicCall(I, IID);
4530 if (!RenameFn)
4531 return;
4532 }
4533 }
4534
4535 // Check for well-known libc/libm calls. If the function is internal, it
4536 // can't be a library call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004537 if (!F->hasLocalLinkage() && F->hasName()) {
4538 StringRef Name = F->getName();
4539 if (Name == "copysign" || Name == "copysignf") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004540 if (I.getNumOperands() == 3 && // Basic sanity checks.
4541 I.getOperand(1)->getType()->isFloatingPoint() &&
4542 I.getType() == I.getOperand(1)->getType() &&
4543 I.getType() == I.getOperand(2)->getType()) {
4544 SDValue LHS = getValue(I.getOperand(1));
4545 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004546 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004547 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004548 return;
4549 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004550 } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004551 if (I.getNumOperands() == 2 && // Basic sanity checks.
4552 I.getOperand(1)->getType()->isFloatingPoint() &&
4553 I.getType() == I.getOperand(1)->getType()) {
4554 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004555 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004556 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004557 return;
4558 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004559 } else if (Name == "sin" || Name == "sinf" || Name == "sinl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004560 if (I.getNumOperands() == 2 && // Basic sanity checks.
4561 I.getOperand(1)->getType()->isFloatingPoint() &&
4562 I.getType() == I.getOperand(1)->getType()) {
4563 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004564 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004565 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004566 return;
4567 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004568 } else if (Name == "cos" || Name == "cosf" || Name == "cosl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004569 if (I.getNumOperands() == 2 && // Basic sanity checks.
4570 I.getOperand(1)->getType()->isFloatingPoint() &&
4571 I.getType() == I.getOperand(1)->getType()) {
4572 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004573 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004574 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004575 return;
4576 }
4577 }
4578 }
4579 } else if (isa<InlineAsm>(I.getOperand(0))) {
4580 visitInlineAsm(&I);
4581 return;
4582 }
4583
4584 SDValue Callee;
4585 if (!RenameFn)
4586 Callee = getValue(I.getOperand(0));
4587 else
Bill Wendling056292f2008-09-16 21:48:12 +00004588 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004589
Dan Gohman98ca4f22009-08-05 01:29:28 +00004590 // Check if we can potentially perform a tail call. More detailed
4591 // checking is be done within LowerCallTo, after more information
4592 // about the call is known.
4593 bool isTailCall = PerformTailCallOpt && I.isTailCall();
4594
4595 LowerCallTo(&I, Callee, isTailCall);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004596}
4597
4598
4599/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004600/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004601/// Chain/Flag as the input and updates them for the output Chain/Flag.
4602/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004603SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004604 SDValue &Chain,
4605 SDValue *Flag) const {
4606 // Assemble the legal parts into the final values.
4607 SmallVector<SDValue, 4> Values(ValueVTs.size());
4608 SmallVector<SDValue, 8> Parts;
4609 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4610 // Copy the legal parts from the registers.
Owen Andersone50ed302009-08-10 22:56:29 +00004611 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00004612 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004613 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004614
4615 Parts.resize(NumRegs);
4616 for (unsigned i = 0; i != NumRegs; ++i) {
4617 SDValue P;
4618 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004619 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004620 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004621 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004622 *Flag = P.getValue(2);
4623 }
4624 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004625
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004626 // If the source register was virtual and if we know something about it,
4627 // add an assert node.
4628 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4629 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4630 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4631 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4632 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4633 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004634
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004635 unsigned RegSize = RegisterVT.getSizeInBits();
4636 unsigned NumSignBits = LOI.NumSignBits;
4637 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004638
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004639 // FIXME: We capture more information than the dag can represent. For
4640 // now, just use the tightest assertzext/assertsext possible.
4641 bool isSExt = true;
Owen Anderson825b72b2009-08-11 20:47:22 +00004642 EVT FromVT(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643 if (NumSignBits == RegSize)
Owen Anderson825b72b2009-08-11 20:47:22 +00004644 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004645 else if (NumZeroBits >= RegSize-1)
Owen Anderson825b72b2009-08-11 20:47:22 +00004646 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004647 else if (NumSignBits > RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004648 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004649 else if (NumZeroBits >= RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004650 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004651 else if (NumSignBits > RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004652 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004653 else if (NumZeroBits >= RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004654 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004655 else if (NumSignBits > RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004656 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004657 else if (NumZeroBits >= RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004658 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004659
Owen Anderson825b72b2009-08-11 20:47:22 +00004660 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004661 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004662 RegisterVT, P, DAG.getValueType(FromVT));
4663
4664 }
4665 }
4666 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004667
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004668 Parts[i] = P;
4669 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004670
Scott Michelfdc40a02009-02-17 22:15:04 +00004671 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004672 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004673 Part += NumRegs;
4674 Parts.clear();
4675 }
4676
Dale Johannesen66978ee2009-01-31 02:22:37 +00004677 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004678 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4679 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004680}
4681
4682/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004683/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004684/// Chain/Flag as the input and updates them for the output Chain/Flag.
4685/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004686void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004687 SDValue &Chain, SDValue *Flag) const {
4688 // Get the list of the values's legal parts.
4689 unsigned NumRegs = Regs.size();
4690 SmallVector<SDValue, 8> Parts(NumRegs);
4691 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00004692 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00004693 unsigned NumParts = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004694 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004695
Dale Johannesen66978ee2009-01-31 02:22:37 +00004696 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004697 &Parts[Part], NumParts, RegisterVT);
4698 Part += NumParts;
4699 }
4700
4701 // Copy the parts into the registers.
4702 SmallVector<SDValue, 8> Chains(NumRegs);
4703 for (unsigned i = 0; i != NumRegs; ++i) {
4704 SDValue Part;
4705 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004706 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004707 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004708 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004709 *Flag = Part.getValue(1);
4710 }
4711 Chains[i] = Part.getValue(0);
4712 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004713
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004714 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004715 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004716 // flagged to it. That is the CopyToReg nodes and the user are considered
4717 // a single scheduling unit. If we create a TokenFactor and return it as
4718 // chain, then the TokenFactor is both a predecessor (operand) of the
4719 // user as well as a successor (the TF operands are flagged to the user).
4720 // c1, f1 = CopyToReg
4721 // c2, f2 = CopyToReg
4722 // c3 = TokenFactor c1, c2
4723 // ...
4724 // = op c3, ..., f2
4725 Chain = Chains[NumRegs-1];
4726 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004727 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004728}
4729
4730/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004731/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004732/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004733void RegsForValue::AddInlineAsmOperands(unsigned Code,
4734 bool HasMatching,unsigned MatchingIdx,
4735 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004736 std::vector<SDValue> &Ops) const {
Owen Andersone50ed302009-08-10 22:56:29 +00004737 EVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004738 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4739 unsigned Flag = Code | (Regs.size() << 3);
4740 if (HasMatching)
4741 Flag |= 0x80000000 | (MatchingIdx << 16);
4742 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004743 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Anderson23b9b192009-08-12 00:36:31 +00004744 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVTs[Value]);
Owen Andersone50ed302009-08-10 22:56:29 +00004745 EVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004746 for (unsigned i = 0; i != NumRegs; ++i) {
4747 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004748 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004749 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004750 }
4751}
4752
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004753/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004754/// i.e. it isn't a stack pointer or some other special register, return the
4755/// register class for the register. Otherwise, return null.
4756static const TargetRegisterClass *
4757isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4758 const TargetLowering &TLI,
4759 const TargetRegisterInfo *TRI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004760 EVT FoundVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004761 const TargetRegisterClass *FoundRC = 0;
4762 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4763 E = TRI->regclass_end(); RCI != E; ++RCI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004764 EVT ThisVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004765
4766 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004767 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004768 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4769 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4770 I != E; ++I) {
4771 if (TLI.isTypeLegal(*I)) {
4772 // If we have already found this register in a different register class,
4773 // choose the one with the largest VT specified. For example, on
4774 // PowerPC, we favor f64 register classes over f32.
Owen Anderson825b72b2009-08-11 20:47:22 +00004775 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004776 ThisVT = *I;
4777 break;
4778 }
4779 }
4780 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004781
Owen Anderson825b72b2009-08-11 20:47:22 +00004782 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004783
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004784 // NOTE: This isn't ideal. In particular, this might allocate the
4785 // frame pointer in functions that need it (due to them not being taken
4786 // out of allocation, because a variable sized allocation hasn't been seen
4787 // yet). This is a slight code pessimization, but should still work.
4788 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4789 E = RC->allocation_order_end(MF); I != E; ++I)
4790 if (*I == Reg) {
4791 // We found a matching register class. Keep looking at others in case
4792 // we find one with larger registers that this physreg is also in.
4793 FoundRC = RC;
4794 FoundVT = ThisVT;
4795 break;
4796 }
4797 }
4798 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004799}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004800
4801
4802namespace llvm {
4803/// AsmOperandInfo - This contains information for each constraint that we are
4804/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004805class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004806 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004807public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004808 /// CallOperand - If this is the result output operand or a clobber
4809 /// this is null, otherwise it is the incoming operand to the CallInst.
4810 /// This gets modified as the asm is processed.
4811 SDValue CallOperand;
4812
4813 /// AssignedRegs - If this is a register or register class operand, this
4814 /// contains the set of register corresponding to the operand.
4815 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004816
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004817 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4818 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4819 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004820
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004821 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4822 /// busy in OutputRegs/InputRegs.
4823 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004824 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004825 std::set<unsigned> &InputRegs,
4826 const TargetRegisterInfo &TRI) const {
4827 if (isOutReg) {
4828 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4829 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4830 }
4831 if (isInReg) {
4832 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4833 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4834 }
4835 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004836
Owen Andersone50ed302009-08-10 22:56:29 +00004837 /// getCallOperandValEVT - Return the EVT of the Value* that this operand
Chris Lattner81249c92008-10-17 17:05:25 +00004838 /// corresponds to. If there is no Value* for this operand, it returns
Owen Anderson825b72b2009-08-11 20:47:22 +00004839 /// MVT::Other.
Owen Anderson1d0be152009-08-13 21:58:54 +00004840 EVT getCallOperandValEVT(LLVMContext &Context,
4841 const TargetLowering &TLI,
Chris Lattner81249c92008-10-17 17:05:25 +00004842 const TargetData *TD) const {
Owen Anderson825b72b2009-08-11 20:47:22 +00004843 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004844
Chris Lattner81249c92008-10-17 17:05:25 +00004845 if (isa<BasicBlock>(CallOperandVal))
4846 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004847
Chris Lattner81249c92008-10-17 17:05:25 +00004848 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004849
Chris Lattner81249c92008-10-17 17:05:25 +00004850 // If this is an indirect operand, the operand is a pointer to the
4851 // accessed type.
4852 if (isIndirect)
4853 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004854
Chris Lattner81249c92008-10-17 17:05:25 +00004855 // If OpTy is not a single value, it may be a struct/union that we
4856 // can tile with integers.
4857 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4858 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4859 switch (BitSize) {
4860 default: break;
4861 case 1:
4862 case 8:
4863 case 16:
4864 case 32:
4865 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004866 case 128:
Owen Anderson1d0be152009-08-13 21:58:54 +00004867 OpTy = IntegerType::get(Context, BitSize);
Chris Lattner81249c92008-10-17 17:05:25 +00004868 break;
4869 }
4870 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004871
Chris Lattner81249c92008-10-17 17:05:25 +00004872 return TLI.getValueType(OpTy, true);
4873 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004874
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004875private:
4876 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4877 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004878 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004879 const TargetRegisterInfo &TRI) {
4880 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4881 Regs.insert(Reg);
4882 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4883 for (; *Aliases; ++Aliases)
4884 Regs.insert(*Aliases);
4885 }
4886};
4887} // end llvm namespace.
4888
4889
4890/// GetRegistersForValue - Assign registers (virtual or physical) for the
4891/// specified operand. We prefer to assign virtual registers, to allow the
4892/// register allocator handle the assignment process. However, if the asm uses
4893/// features that we can't model on machineinstrs, we have SDISel do the
4894/// allocation. This produces generally horrible, but correct, code.
4895///
4896/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004897/// Input and OutputRegs are the set of already allocated physical registers.
4898///
4899void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004900GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004901 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004902 std::set<unsigned> &InputRegs) {
Dan Gohman0d24bfb2009-08-15 02:06:22 +00004903 LLVMContext &Context = FuncInfo.Fn->getContext();
Owen Anderson23b9b192009-08-12 00:36:31 +00004904
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004905 // Compute whether this value requires an input register, an output register,
4906 // or both.
4907 bool isOutReg = false;
4908 bool isInReg = false;
4909 switch (OpInfo.Type) {
4910 case InlineAsm::isOutput:
4911 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004912
4913 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004914 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004915 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004916 break;
4917 case InlineAsm::isInput:
4918 isInReg = true;
4919 isOutReg = false;
4920 break;
4921 case InlineAsm::isClobber:
4922 isOutReg = true;
4923 isInReg = true;
4924 break;
4925 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004926
4927
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004928 MachineFunction &MF = DAG.getMachineFunction();
4929 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004930
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004931 // If this is a constraint for a single physreg, or a constraint for a
4932 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004933 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004934 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4935 OpInfo.ConstraintVT);
4936
4937 unsigned NumRegs = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00004938 if (OpInfo.ConstraintVT != MVT::Other) {
Chris Lattner01426e12008-10-21 00:45:36 +00004939 // If this is a FP input in an integer register (or visa versa) insert a bit
4940 // cast of the input value. More generally, handle any case where the input
4941 // value disagrees with the register class we plan to stick this in.
4942 if (OpInfo.Type == InlineAsm::isInput &&
4943 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
Owen Andersone50ed302009-08-10 22:56:29 +00004944 // Try to convert to the first EVT that the reg class contains. If the
Chris Lattner01426e12008-10-21 00:45:36 +00004945 // types are identical size, use a bitcast to convert (e.g. two differing
4946 // vector types).
Owen Andersone50ed302009-08-10 22:56:29 +00004947 EVT RegVT = *PhysReg.second->vt_begin();
Chris Lattner01426e12008-10-21 00:45:36 +00004948 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004949 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004950 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004951 OpInfo.ConstraintVT = RegVT;
4952 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4953 // If the input is a FP value and we want it in FP registers, do a
4954 // bitcast to the corresponding integer type. This turns an f64 value
4955 // into i64, which can be passed with two i32 values on a 32-bit
4956 // machine.
Owen Anderson23b9b192009-08-12 00:36:31 +00004957 RegVT = EVT::getIntegerVT(Context,
4958 OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004959 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004960 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004961 OpInfo.ConstraintVT = RegVT;
4962 }
4963 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004964
Owen Anderson23b9b192009-08-12 00:36:31 +00004965 NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004966 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004967
Owen Andersone50ed302009-08-10 22:56:29 +00004968 EVT RegVT;
4969 EVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004970
4971 // If this is a constraint for a specific physical register, like {r17},
4972 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004973 if (unsigned AssignedReg = PhysReg.first) {
4974 const TargetRegisterClass *RC = PhysReg.second;
Owen Anderson825b72b2009-08-11 20:47:22 +00004975 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004976 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004977
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004978 // Get the actual register value type. This is important, because the user
4979 // may have asked for (e.g.) the AX register in i32 type. We need to
4980 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004981 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004982
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004983 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004984 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004985
4986 // If this is an expanded reference, add the rest of the regs to Regs.
4987 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004988 TargetRegisterClass::iterator I = RC->begin();
4989 for (; *I != AssignedReg; ++I)
4990 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004991
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004992 // Already added the first reg.
4993 --NumRegs; ++I;
4994 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004995 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004996 Regs.push_back(*I);
4997 }
4998 }
4999 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5000 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5001 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5002 return;
5003 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005004
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005005 // Otherwise, if this was a reference to an LLVM register class, create vregs
5006 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00005007 if (const TargetRegisterClass *RC = PhysReg.second) {
5008 RegVT = *RC->vt_begin();
Owen Anderson825b72b2009-08-11 20:47:22 +00005009 if (OpInfo.ConstraintVT == MVT::Other)
Evan Chengfb112882009-03-23 08:01:15 +00005010 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005011
Evan Chengfb112882009-03-23 08:01:15 +00005012 // Create the appropriate number of virtual registers.
5013 MachineRegisterInfo &RegInfo = MF.getRegInfo();
5014 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00005015 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005016
Evan Chengfb112882009-03-23 08:01:15 +00005017 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5018 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005019 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005020
5021 // This is a reference to a register class that doesn't directly correspond
5022 // to an LLVM register class. Allocate NumRegs consecutive, available,
5023 // registers from the class.
5024 std::vector<unsigned> RegClassRegs
5025 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
5026 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005027
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005028 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5029 unsigned NumAllocated = 0;
5030 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
5031 unsigned Reg = RegClassRegs[i];
5032 // See if this register is available.
5033 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
5034 (isInReg && InputRegs.count(Reg))) { // Already used.
5035 // Make sure we find consecutive registers.
5036 NumAllocated = 0;
5037 continue;
5038 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005039
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005040 // Check to see if this register is allocatable (i.e. don't give out the
5041 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005042 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
5043 if (!RC) { // Couldn't allocate this register.
5044 // Reset NumAllocated to make sure we return consecutive registers.
5045 NumAllocated = 0;
5046 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005047 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005048
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005049 // Okay, this register is good, we can use it.
5050 ++NumAllocated;
5051
5052 // If we allocated enough consecutive registers, succeed.
5053 if (NumAllocated == NumRegs) {
5054 unsigned RegStart = (i-NumAllocated)+1;
5055 unsigned RegEnd = i+1;
5056 // Mark all of the allocated registers used.
5057 for (unsigned i = RegStart; i != RegEnd; ++i)
5058 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005059
5060 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005061 OpInfo.ConstraintVT);
5062 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5063 return;
5064 }
5065 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005066
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005067 // Otherwise, we couldn't allocate enough registers for this.
5068}
5069
Evan Chengda43bcf2008-09-24 00:05:32 +00005070/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5071/// processed uses a memory 'm' constraint.
5072static bool
5073hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005074 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005075 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5076 InlineAsm::ConstraintInfo &CI = CInfos[i];
5077 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5078 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5079 if (CType == TargetLowering::C_Memory)
5080 return true;
5081 }
Chris Lattner6c147292009-04-30 00:48:50 +00005082
5083 // Indirect operand accesses access memory.
5084 if (CI.isIndirect)
5085 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005086 }
5087
5088 return false;
5089}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005090
5091/// visitInlineAsm - Handle a call to an InlineAsm object.
5092///
5093void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5094 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5095
5096 /// ConstraintOperands - Information about all of the constraints.
5097 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005098
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005099 std::set<unsigned> OutputRegs, InputRegs;
5100
5101 // Do a prepass over the constraints, canonicalizing them, and building up the
5102 // ConstraintOperands list.
5103 std::vector<InlineAsm::ConstraintInfo>
5104 ConstraintInfos = IA->ParseConstraints();
5105
Evan Chengda43bcf2008-09-24 00:05:32 +00005106 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005107
5108 SDValue Chain, Flag;
5109
5110 // We won't need to flush pending loads if this asm doesn't touch
5111 // memory and is nonvolatile.
5112 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005113 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005114 else
5115 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005116
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005117 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5118 unsigned ResNo = 0; // ResNo - The result number of the next output.
5119 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5120 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5121 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005122
Owen Anderson825b72b2009-08-11 20:47:22 +00005123 EVT OpVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005124
5125 // Compute the value type for each operand.
5126 switch (OpInfo.Type) {
5127 case InlineAsm::isOutput:
5128 // Indirect outputs just consume an argument.
5129 if (OpInfo.isIndirect) {
5130 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5131 break;
5132 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005133
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005134 // The return value of the call is this value. As such, there is no
5135 // corresponding argument.
Owen Anderson1d0be152009-08-13 21:58:54 +00005136 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
5137 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005138 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5139 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5140 } else {
5141 assert(ResNo == 0 && "Asm only has one result!");
5142 OpVT = TLI.getValueType(CS.getType());
5143 }
5144 ++ResNo;
5145 break;
5146 case InlineAsm::isInput:
5147 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5148 break;
5149 case InlineAsm::isClobber:
5150 // Nothing to do.
5151 break;
5152 }
5153
5154 // If this is an input or an indirect output, process the call argument.
5155 // BasicBlocks are labels, currently appearing only in asm's.
5156 if (OpInfo.CallOperandVal) {
Dale Johannesen5339c552009-07-20 23:27:39 +00005157 // Strip bitcasts, if any. This mostly comes up for functions.
Dale Johannesen76711242009-08-06 22:45:51 +00005158 OpInfo.CallOperandVal = OpInfo.CallOperandVal->stripPointerCasts();
5159
Chris Lattner81249c92008-10-17 17:05:25 +00005160 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005161 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005162 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005163 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005164 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005165
Owen Anderson1d0be152009-08-13 21:58:54 +00005166 OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005167 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005168
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005169 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005170 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005171
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005172 // Second pass over the constraints: compute which constraint option to use
5173 // and assign registers to constraints that want a specific physreg.
5174 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5175 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005176
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005177 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005178 // matching input. If their types mismatch, e.g. one is an integer, the
5179 // other is floating point, or their sizes are different, flag it as an
5180 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005181 if (OpInfo.hasMatchingInput()) {
5182 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5183 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005184 if ((OpInfo.ConstraintVT.isInteger() !=
5185 Input.ConstraintVT.isInteger()) ||
5186 (OpInfo.ConstraintVT.getSizeInBits() !=
5187 Input.ConstraintVT.getSizeInBits())) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005188 llvm_report_error("Unsupported asm: input constraint"
Torok Edwin7d696d82009-07-11 13:10:19 +00005189 " with a matching output constraint of incompatible"
5190 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005191 }
5192 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005193 }
5194 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005195
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005196 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005197 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005198
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005199 // If this is a memory input, and if the operand is not indirect, do what we
5200 // need to to provide an address for the memory input.
5201 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5202 !OpInfo.isIndirect) {
5203 assert(OpInfo.Type == InlineAsm::isInput &&
5204 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005205
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005206 // Memory operands really want the address of the value. If we don't have
5207 // an indirect input, put it in the constpool if we can, otherwise spill
5208 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005209
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005210 // If the operand is a float, integer, or vector constant, spill to a
5211 // constant pool entry to get its address.
5212 Value *OpVal = OpInfo.CallOperandVal;
5213 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5214 isa<ConstantVector>(OpVal)) {
5215 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5216 TLI.getPointerTy());
5217 } else {
5218 // Otherwise, create a stack slot and emit a store to it before the
5219 // asm.
5220 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005221 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005222 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5223 MachineFunction &MF = DAG.getMachineFunction();
5224 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5225 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005226 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005227 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005228 OpInfo.CallOperand = StackSlot;
5229 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005230
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005231 // There is no longer a Value* corresponding to this operand.
5232 OpInfo.CallOperandVal = 0;
5233 // It is now an indirect operand.
5234 OpInfo.isIndirect = true;
5235 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005236
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005237 // If this constraint is for a specific register, allocate it before
5238 // anything else.
5239 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005240 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005241 }
5242 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005243
5244
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005245 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005246 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005247 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5248 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005249
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005250 // C_Register operands have already been allocated, Other/Memory don't need
5251 // to be.
5252 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005253 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005254 }
5255
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005256 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5257 std::vector<SDValue> AsmNodeOperands;
5258 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5259 AsmNodeOperands.push_back(
Owen Anderson825b72b2009-08-11 20:47:22 +00005260 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005261
5262
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005263 // Loop over all of the inputs, copying the operand values into the
5264 // appropriate registers and processing the output regs.
5265 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005266
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005267 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5268 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005269
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005270 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5271 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5272
5273 switch (OpInfo.Type) {
5274 case InlineAsm::isOutput: {
5275 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5276 OpInfo.ConstraintType != TargetLowering::C_Register) {
5277 // Memory output, or 'other' output (e.g. 'X' constraint).
5278 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5279
5280 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005281 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5282 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005283 TLI.getPointerTy()));
5284 AsmNodeOperands.push_back(OpInfo.CallOperand);
5285 break;
5286 }
5287
5288 // Otherwise, this is a register or register class output.
5289
5290 // Copy the output from the appropriate register. Find a register that
5291 // we can use.
5292 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005293 llvm_report_error("Couldn't allocate output reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005294 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005295 }
5296
5297 // If this is an indirect operand, store through the pointer after the
5298 // asm.
5299 if (OpInfo.isIndirect) {
5300 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5301 OpInfo.CallOperandVal));
5302 } else {
5303 // This is the result value of the call.
Owen Anderson1d0be152009-08-13 21:58:54 +00005304 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
5305 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005306 // Concatenate this output onto the outputs list.
5307 RetValRegs.append(OpInfo.AssignedRegs);
5308 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005310 // Add information to the INLINEASM node to know that this register is
5311 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005312 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5313 6 /* EARLYCLOBBER REGDEF */ :
5314 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005315 false,
5316 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005317 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005318 break;
5319 }
5320 case InlineAsm::isInput: {
5321 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005322
Chris Lattner6bdcda32008-10-17 16:47:46 +00005323 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005324 // If this is required to match an output register we have already set,
5325 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005326 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005327
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005328 // Scan until we find the definition we already emitted of this operand.
5329 // When we find it, create a RegsForValue operand.
5330 unsigned CurOp = 2; // The first operand.
5331 for (; OperandNo; --OperandNo) {
5332 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005333 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005334 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005335 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5336 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5337 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005338 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005339 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005340 }
5341
Evan Cheng697cbbf2009-03-20 18:03:34 +00005342 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005343 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005344 if ((OpFlag & 7) == 2 /*REGDEF*/
5345 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5346 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005347 if (OpInfo.isIndirect) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005348 llvm_report_error("Don't know how to handle tied indirect "
Torok Edwin7d696d82009-07-11 13:10:19 +00005349 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005350 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005351 RegsForValue MatchedRegs;
5352 MatchedRegs.TLI = &TLI;
5353 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Owen Andersone50ed302009-08-10 22:56:29 +00005354 EVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
Evan Chengfb112882009-03-23 08:01:15 +00005355 MatchedRegs.RegVTs.push_back(RegVT);
5356 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005357 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005358 i != e; ++i)
5359 MatchedRegs.Regs.
5360 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005361
5362 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005363 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5364 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005365 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5366 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005367 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005368 break;
5369 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005370 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5371 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5372 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005373 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005374 // See InlineAsm.h isUseOperandTiedToDef.
5375 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005376 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005377 TLI.getPointerTy()));
5378 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5379 break;
5380 }
5381 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005382
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005383 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005384 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005385 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005386
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005387 std::vector<SDValue> Ops;
5388 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005389 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005390 if (Ops.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005391 llvm_report_error("Invalid operand for inline asm"
Torok Edwin7d696d82009-07-11 13:10:19 +00005392 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005393 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005394
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005395 // Add information to the INLINEASM node to know about this input.
5396 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005397 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005398 TLI.getPointerTy()));
5399 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5400 break;
5401 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5402 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5403 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5404 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005405
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005406 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005407 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5408 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005409 TLI.getPointerTy()));
5410 AsmNodeOperands.push_back(InOperandVal);
5411 break;
5412 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005413
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005414 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5415 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5416 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005417 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005418 "Don't know how to handle indirect register inputs yet!");
5419
5420 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005421 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005422 llvm_report_error("Couldn't allocate input reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005423 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005424 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005425
Dale Johannesen66978ee2009-01-31 02:22:37 +00005426 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5427 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005428
Evan Cheng697cbbf2009-03-20 18:03:34 +00005429 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005430 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005431 break;
5432 }
5433 case InlineAsm::isClobber: {
5434 // Add the clobbered value to the operand list, so that the register
5435 // allocator is aware that the physreg got clobbered.
5436 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005437 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005438 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005439 break;
5440 }
5441 }
5442 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005443
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005444 // Finish up input operands.
5445 AsmNodeOperands[0] = Chain;
5446 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005447
Dale Johannesen66978ee2009-01-31 02:22:37 +00005448 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005449 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005450 &AsmNodeOperands[0], AsmNodeOperands.size());
5451 Flag = Chain.getValue(1);
5452
5453 // If this asm returns a register value, copy the result from that register
5454 // and set it as the value of the call.
5455 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005456 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005457 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005458
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005459 // FIXME: Why don't we do this for inline asms with MRVs?
5460 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
Owen Andersone50ed302009-08-10 22:56:29 +00005461 EVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005462
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005463 // If any of the results of the inline asm is a vector, it may have the
5464 // wrong width/num elts. This can happen for register classes that can
5465 // contain multiple different value types. The preg or vreg allocated may
5466 // not have the same VT as was expected. Convert it to the right type
5467 // with bit_convert.
5468 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005469 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005470 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005471
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005472 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005473 ResultType.isInteger() && Val.getValueType().isInteger()) {
5474 // If a result value was tied to an input value, the computed result may
5475 // have a wider width than the expected result. Extract the relevant
5476 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005477 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005478 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005479
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005480 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005481 }
Dan Gohman95915732008-10-18 01:03:45 +00005482
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005483 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005484 // Don't need to use this as a chain in this case.
5485 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5486 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005487 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005488
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005489 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005490
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005491 // Process indirect outputs, first output all of the flagged copies out of
5492 // physregs.
5493 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5494 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5495 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005496 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5497 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005498 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005499
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005500 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005501
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005502 // Emit the non-flagged stores from the physregs.
5503 SmallVector<SDValue, 8> OutChains;
5504 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005505 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005506 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005507 getValue(StoresToEmit[i].second),
5508 StoresToEmit[i].second, 0));
5509 if (!OutChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00005510 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005511 &OutChains[0], OutChains.size());
5512 DAG.setRoot(Chain);
5513}
5514
5515
5516void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5517 SDValue Src = getValue(I.getOperand(0));
5518
Chris Lattner0b18e592009-03-17 19:36:00 +00005519 // Scale up by the type size in the original i32 type width. Various
5520 // mid-level optimizers may make assumptions about demanded bits etc from the
5521 // i32-ness of the optimizer: we do not want to promote to i64 and then
5522 // multiply on 64-bit targets.
5523 // FIXME: Malloc inst should go away: PR715.
Duncan Sands777d2302009-05-09 07:06:46 +00005524 uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType());
Chris Lattner50340f62009-07-23 21:26:18 +00005525 if (ElementSize != 1) {
5526 // Src is always 32-bits, make sure the constant fits.
Owen Anderson825b72b2009-08-11 20:47:22 +00005527 assert(Src.getValueType() == MVT::i32);
Chris Lattner50340f62009-07-23 21:26:18 +00005528 ElementSize = (uint32_t)ElementSize;
Chris Lattner0b18e592009-03-17 19:36:00 +00005529 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5530 Src, DAG.getConstant(ElementSize, Src.getValueType()));
Chris Lattner50340f62009-07-23 21:26:18 +00005531 }
Chris Lattner0b18e592009-03-17 19:36:00 +00005532
Owen Andersone50ed302009-08-10 22:56:29 +00005533 EVT IntPtr = TLI.getPointerTy();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005534
5535 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005536 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005537 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005538 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005539
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005540 TargetLowering::ArgListTy Args;
5541 TargetLowering::ArgListEntry Entry;
5542 Entry.Node = Src;
Owen Anderson1d0be152009-08-13 21:58:54 +00005543 Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005544 Args.push_back(Entry);
5545
Dan Gohman98ca4f22009-08-05 01:29:28 +00005546 bool isTailCall = PerformTailCallOpt &&
5547 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005548 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005549 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005550 0, CallingConv::C, isTailCall,
5551 /*isReturnValueUsed=*/true,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005552 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005553 Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005554 if (Result.first.getNode())
5555 setValue(&I, Result.first); // Pointers always fit in registers
5556 if (Result.second.getNode())
5557 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005558}
5559
5560void SelectionDAGLowering::visitFree(FreeInst &I) {
5561 TargetLowering::ArgListTy Args;
5562 TargetLowering::ArgListEntry Entry;
5563 Entry.Node = getValue(I.getOperand(0));
Owen Anderson1d0be152009-08-13 21:58:54 +00005564 Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005565 Args.push_back(Entry);
Owen Andersone50ed302009-08-10 22:56:29 +00005566 EVT IntPtr = TLI.getPointerTy();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005567 bool isTailCall = PerformTailCallOpt &&
5568 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005569 std::pair<SDValue,SDValue> Result =
Owen Anderson1d0be152009-08-13 21:58:54 +00005570 TLI.LowerCallTo(getRoot(), Type::getVoidTy(*DAG.getContext()),
5571 false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005572 0, CallingConv::C, isTailCall,
5573 /*isReturnValueUsed=*/true,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005574 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005575 getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005576 if (Result.second.getNode())
5577 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005578}
5579
5580void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005581 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005582 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005583 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005584 DAG.getSrcValue(I.getOperand(1))));
5585}
5586
5587void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005588 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5589 getRoot(), getValue(I.getOperand(0)),
5590 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005591 setValue(&I, V);
5592 DAG.setRoot(V.getValue(1));
5593}
5594
5595void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005596 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005597 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005598 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005599 DAG.getSrcValue(I.getOperand(1))));
5600}
5601
5602void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005603 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005604 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005605 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005606 getValue(I.getOperand(2)),
5607 DAG.getSrcValue(I.getOperand(1)),
5608 DAG.getSrcValue(I.getOperand(2))));
5609}
5610
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005611/// TargetLowering::LowerCallTo - This is the default LowerCallTo
Dan Gohman98ca4f22009-08-05 01:29:28 +00005612/// implementation, which just calls LowerCall.
5613/// FIXME: When all targets are
5614/// migrated to using LowerCall, this hook should be integrated into SDISel.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005615std::pair<SDValue, SDValue>
5616TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5617 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005618 bool isInreg, unsigned NumFixedArgs,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00005619 CallingConv::ID CallConv, bool isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005620 bool isReturnValueUsed,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005621 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005622 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00005623
Dan Gohman1937e2f2008-09-16 01:42:28 +00005624 assert((!isTailCall || PerformTailCallOpt) &&
5625 "isTailCall set when tail-call optimizations are disabled!");
5626
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005627 // Handle all of the outgoing arguments.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005628 SmallVector<ISD::OutputArg, 32> Outs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005629 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00005630 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005631 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5632 for (unsigned Value = 0, NumValues = ValueVTs.size();
5633 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005634 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005635 const Type *ArgTy = VT.getTypeForEVT(RetTy->getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005636 SDValue Op = SDValue(Args[i].Node.getNode(),
5637 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005638 ISD::ArgFlagsTy Flags;
5639 unsigned OriginalAlignment =
5640 getTargetData()->getABITypeAlignment(ArgTy);
5641
5642 if (Args[i].isZExt)
5643 Flags.setZExt();
5644 if (Args[i].isSExt)
5645 Flags.setSExt();
5646 if (Args[i].isInReg)
5647 Flags.setInReg();
5648 if (Args[i].isSRet)
5649 Flags.setSRet();
5650 if (Args[i].isByVal) {
5651 Flags.setByVal();
5652 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5653 const Type *ElementTy = Ty->getElementType();
5654 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005655 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005656 // For ByVal, alignment should come from FE. BE will guess if this
5657 // info is not there but there are cases it cannot get right.
5658 if (Args[i].Alignment)
5659 FrameAlign = Args[i].Alignment;
5660 Flags.setByValAlign(FrameAlign);
5661 Flags.setByValSize(FrameSize);
5662 }
5663 if (Args[i].isNest)
5664 Flags.setNest();
5665 Flags.setOrigAlign(OriginalAlignment);
5666
Owen Anderson23b9b192009-08-12 00:36:31 +00005667 EVT PartVT = getRegisterType(RetTy->getContext(), VT);
5668 unsigned NumParts = getNumRegisters(RetTy->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005669 SmallVector<SDValue, 4> Parts(NumParts);
5670 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5671
5672 if (Args[i].isSExt)
5673 ExtendKind = ISD::SIGN_EXTEND;
5674 else if (Args[i].isZExt)
5675 ExtendKind = ISD::ZERO_EXTEND;
5676
Dale Johannesen66978ee2009-01-31 02:22:37 +00005677 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005678
Dan Gohman98ca4f22009-08-05 01:29:28 +00005679 for (unsigned j = 0; j != NumParts; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005680 // if it isn't first piece, alignment must be 1
Dan Gohman98ca4f22009-08-05 01:29:28 +00005681 ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs);
5682 if (NumParts > 1 && j == 0)
5683 MyFlags.Flags.setSplit();
5684 else if (j != 0)
5685 MyFlags.Flags.setOrigAlign(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005686
Dan Gohman98ca4f22009-08-05 01:29:28 +00005687 Outs.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005688 }
5689 }
5690 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005691
Dan Gohman98ca4f22009-08-05 01:29:28 +00005692 // Handle the incoming return values from the call.
5693 SmallVector<ISD::InputArg, 32> Ins;
Owen Andersone50ed302009-08-10 22:56:29 +00005694 SmallVector<EVT, 4> RetTys;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005695 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005696 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005697 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00005698 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
5699 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005700 for (unsigned i = 0; i != NumRegs; ++i) {
5701 ISD::InputArg MyFlags;
5702 MyFlags.VT = RegisterVT;
5703 MyFlags.Used = isReturnValueUsed;
5704 if (RetSExt)
5705 MyFlags.Flags.setSExt();
5706 if (RetZExt)
5707 MyFlags.Flags.setZExt();
5708 if (isInreg)
5709 MyFlags.Flags.setInReg();
5710 Ins.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005711 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005712 }
5713
Dan Gohman98ca4f22009-08-05 01:29:28 +00005714 // Check if target-dependent constraints permit a tail call here.
5715 // Target-independent constraints should be checked by the caller.
5716 if (isTailCall &&
5717 !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG))
5718 isTailCall = false;
5719
5720 SmallVector<SDValue, 4> InVals;
5721 Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall,
5722 Outs, Ins, dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005723
5724 // Verify that the target's LowerCall behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005725 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005726 "LowerCall didn't return a valid chain!");
5727 assert((!isTailCall || InVals.empty()) &&
5728 "LowerCall emitted a return value for a tail call!");
5729 assert((isTailCall || InVals.size() == Ins.size()) &&
5730 "LowerCall didn't emit the correct number of values!");
5731 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5732 assert(InVals[i].getNode() &&
5733 "LowerCall emitted a null value!");
5734 assert(Ins[i].VT == InVals[i].getValueType() &&
5735 "LowerCall emitted a value with the wrong type!");
5736 });
Dan Gohman98ca4f22009-08-05 01:29:28 +00005737
5738 // For a tail call, the return value is merely live-out and there aren't
5739 // any nodes in the DAG representing it. Return a special value to
5740 // indicate that a tail call has been emitted and no more Instructions
5741 // should be processed in the current block.
5742 if (isTailCall) {
5743 DAG.setRoot(Chain);
5744 return std::make_pair(SDValue(), SDValue());
5745 }
5746
5747 // Collect the legal value parts into potentially illegal values
5748 // that correspond to the original function's return values.
5749 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5750 if (RetSExt)
5751 AssertOp = ISD::AssertSext;
5752 else if (RetZExt)
5753 AssertOp = ISD::AssertZext;
5754 SmallVector<SDValue, 4> ReturnValues;
5755 unsigned CurReg = 0;
5756 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005757 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00005758 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
5759 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005760
5761 SDValue ReturnValue =
5762 getCopyFromParts(DAG, dl, &InVals[CurReg], NumRegs, RegisterVT, VT,
5763 AssertOp);
5764 ReturnValues.push_back(ReturnValue);
5765 CurReg += NumRegs;
5766 }
5767
5768 // For a function returning void, there is no return value. We can't create
5769 // such a node, so we just return a null return value in that case. In
5770 // that case, nothing will actualy look at the value.
5771 if (ReturnValues.empty())
5772 return std::make_pair(SDValue(), Chain);
5773
5774 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
5775 DAG.getVTList(&RetTys[0], RetTys.size()),
5776 &ReturnValues[0], ReturnValues.size());
5777
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005778 return std::make_pair(Res, Chain);
5779}
5780
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005781void TargetLowering::LowerOperationWrapper(SDNode *N,
5782 SmallVectorImpl<SDValue> &Results,
5783 SelectionDAG &DAG) {
5784 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005785 if (Res.getNode())
5786 Results.push_back(Res);
5787}
5788
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005789SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005790 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005791 return SDValue();
5792}
5793
5794
5795void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5796 SDValue Op = getValue(V);
5797 assert((Op.getOpcode() != ISD::CopyFromReg ||
5798 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5799 "Copy from a reg to the same reg!");
5800 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5801
Owen Anderson23b9b192009-08-12 00:36:31 +00005802 RegsForValue RFV(V->getContext(), TLI, Reg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005803 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005804 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005805 PendingExports.push_back(Chain);
5806}
5807
5808#include "llvm/CodeGen/SelectionDAGISel.h"
5809
5810void SelectionDAGISel::
5811LowerArguments(BasicBlock *LLVMBB) {
5812 // If this is the entry block, emit arguments.
5813 Function &F = *LLVMBB->getParent();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005814 SelectionDAG &DAG = SDL->DAG;
5815 SDValue OldRoot = DAG.getRoot();
5816 DebugLoc dl = SDL->getCurDebugLoc();
5817 const TargetData *TD = TLI.getTargetData();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005818
Dan Gohman98ca4f22009-08-05 01:29:28 +00005819 // Set up the incoming argument description vector.
5820 SmallVector<ISD::InputArg, 16> Ins;
5821 unsigned Idx = 1;
5822 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5823 I != E; ++I, ++Idx) {
Owen Andersone50ed302009-08-10 22:56:29 +00005824 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005825 ComputeValueVTs(TLI, I->getType(), ValueVTs);
5826 bool isArgValueUsed = !I->use_empty();
5827 for (unsigned Value = 0, NumValues = ValueVTs.size();
5828 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005829 EVT VT = ValueVTs[Value];
Owen Anderson1d0be152009-08-13 21:58:54 +00005830 const Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005831 ISD::ArgFlagsTy Flags;
5832 unsigned OriginalAlignment =
5833 TD->getABITypeAlignment(ArgTy);
5834
5835 if (F.paramHasAttr(Idx, Attribute::ZExt))
5836 Flags.setZExt();
5837 if (F.paramHasAttr(Idx, Attribute::SExt))
5838 Flags.setSExt();
5839 if (F.paramHasAttr(Idx, Attribute::InReg))
5840 Flags.setInReg();
5841 if (F.paramHasAttr(Idx, Attribute::StructRet))
5842 Flags.setSRet();
5843 if (F.paramHasAttr(Idx, Attribute::ByVal)) {
5844 Flags.setByVal();
5845 const PointerType *Ty = cast<PointerType>(I->getType());
5846 const Type *ElementTy = Ty->getElementType();
5847 unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy);
5848 unsigned FrameSize = TD->getTypeAllocSize(ElementTy);
5849 // For ByVal, alignment should be passed from FE. BE will guess if
5850 // this info is not there but there are cases it cannot get right.
5851 if (F.getParamAlignment(Idx))
5852 FrameAlign = F.getParamAlignment(Idx);
5853 Flags.setByValAlign(FrameAlign);
5854 Flags.setByValSize(FrameSize);
5855 }
5856 if (F.paramHasAttr(Idx, Attribute::Nest))
5857 Flags.setNest();
5858 Flags.setOrigAlign(OriginalAlignment);
5859
Owen Anderson23b9b192009-08-12 00:36:31 +00005860 EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
5861 unsigned NumRegs = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005862 for (unsigned i = 0; i != NumRegs; ++i) {
5863 ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed);
5864 if (NumRegs > 1 && i == 0)
5865 MyFlags.Flags.setSplit();
5866 // if it isn't first piece, alignment must be 1
5867 else if (i > 0)
5868 MyFlags.Flags.setOrigAlign(1);
5869 Ins.push_back(MyFlags);
5870 }
5871 }
5872 }
5873
5874 // Call the target to set up the argument values.
5875 SmallVector<SDValue, 8> InVals;
5876 SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(),
5877 F.isVarArg(), Ins,
5878 dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005879
5880 // Verify that the target's LowerFormalArguments behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005881 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005882 "LowerFormalArguments didn't return a valid chain!");
5883 assert(InVals.size() == Ins.size() &&
5884 "LowerFormalArguments didn't emit the correct number of values!");
5885 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5886 assert(InVals[i].getNode() &&
5887 "LowerFormalArguments emitted a null value!");
5888 assert(Ins[i].VT == InVals[i].getValueType() &&
5889 "LowerFormalArguments emitted a value with the wrong type!");
5890 });
5891
5892 // Update the DAG with the new chain value resulting from argument lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005893 DAG.setRoot(NewRoot);
5894
5895 // Set up the argument values.
5896 unsigned i = 0;
5897 Idx = 1;
5898 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
5899 ++I, ++Idx) {
5900 SmallVector<SDValue, 4> ArgValues;
Owen Andersone50ed302009-08-10 22:56:29 +00005901 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005902 ComputeValueVTs(TLI, I->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005903 unsigned NumValues = ValueVTs.size();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005904 for (unsigned Value = 0; Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005905 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005906 EVT PartVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
5907 unsigned NumParts = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005908
5909 if (!I->use_empty()) {
5910 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5911 if (F.paramHasAttr(Idx, Attribute::SExt))
5912 AssertOp = ISD::AssertSext;
5913 else if (F.paramHasAttr(Idx, Attribute::ZExt))
5914 AssertOp = ISD::AssertZext;
5915
5916 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts,
5917 PartVT, VT, AssertOp));
5918 }
5919 i += NumParts;
5920 }
5921 if (!I->use_empty()) {
5922 SDL->setValue(I, DAG.getMergeValues(&ArgValues[0], NumValues,
5923 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005924 // If this argument is live outside of the entry block, insert a copy from
5925 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005926 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005927 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005928 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00005929 assert(i == InVals.size() && "Argument register count mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005930
5931 // Finally, if the target has anything special to do, allow it to do so.
5932 // FIXME: this should insert code into the DAG!
5933 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5934}
5935
5936/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5937/// ensure constants are generated when needed. Remember the virtual registers
5938/// that need to be added to the Machine PHI nodes as input. We cannot just
5939/// directly add them, because expansion might result in multiple MBB's for one
5940/// BB. As such, the start of the BB might correspond to a different MBB than
5941/// the end.
5942///
5943void
5944SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5945 TerminatorInst *TI = LLVMBB->getTerminator();
5946
5947 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5948
5949 // Check successor nodes' PHI nodes that expect a constant to be available
5950 // from this block.
5951 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5952 BasicBlock *SuccBB = TI->getSuccessor(succ);
5953 if (!isa<PHINode>(SuccBB->begin())) continue;
5954 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005955
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005956 // If this terminator has multiple identical successors (common for
5957 // switches), only handle each succ once.
5958 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005959
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005960 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5961 PHINode *PN;
5962
5963 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5964 // nodes and Machine PHI nodes, but the incoming operands have not been
5965 // emitted yet.
5966 for (BasicBlock::iterator I = SuccBB->begin();
5967 (PN = dyn_cast<PHINode>(I)); ++I) {
5968 // Ignore dead phi's.
5969 if (PN->use_empty()) continue;
5970
5971 unsigned Reg;
5972 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5973
5974 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5975 unsigned &RegOut = SDL->ConstantsOut[C];
5976 if (RegOut == 0) {
5977 RegOut = FuncInfo->CreateRegForValue(C);
5978 SDL->CopyValueToVirtualRegister(C, RegOut);
5979 }
5980 Reg = RegOut;
5981 } else {
5982 Reg = FuncInfo->ValueMap[PHIOp];
5983 if (Reg == 0) {
5984 assert(isa<AllocaInst>(PHIOp) &&
5985 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5986 "Didn't codegen value into a register!??");
5987 Reg = FuncInfo->CreateRegForValue(PHIOp);
5988 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5989 }
5990 }
5991
5992 // Remember that this register needs to added to the machine PHI node as
5993 // the input for this MBB.
Owen Andersone50ed302009-08-10 22:56:29 +00005994 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005995 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5996 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
Owen Andersone50ed302009-08-10 22:56:29 +00005997 EVT VT = ValueVTs[vti];
Owen Anderson23b9b192009-08-12 00:36:31 +00005998 unsigned NumRegisters = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005999 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
6000 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
6001 Reg += NumRegisters;
6002 }
6003 }
6004 }
6005 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006006}
6007
Dan Gohman3df24e62008-09-03 23:12:08 +00006008/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
6009/// supports legal types, and it emits MachineInstrs directly instead of
6010/// creating SelectionDAG nodes.
6011///
6012bool
6013SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
6014 FastISel *F) {
6015 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006016
Dan Gohman3df24e62008-09-03 23:12:08 +00006017 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
6018 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
6019
6020 // Check successor nodes' PHI nodes that expect a constant to be available
6021 // from this block.
6022 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
6023 BasicBlock *SuccBB = TI->getSuccessor(succ);
6024 if (!isa<PHINode>(SuccBB->begin())) continue;
6025 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006026
Dan Gohman3df24e62008-09-03 23:12:08 +00006027 // If this terminator has multiple identical successors (common for
6028 // switches), only handle each succ once.
6029 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006030
Dan Gohman3df24e62008-09-03 23:12:08 +00006031 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
6032 PHINode *PN;
6033
6034 // At this point we know that there is a 1-1 correspondence between LLVM PHI
6035 // nodes and Machine PHI nodes, but the incoming operands have not been
6036 // emitted yet.
6037 for (BasicBlock::iterator I = SuccBB->begin();
6038 (PN = dyn_cast<PHINode>(I)); ++I) {
6039 // Ignore dead phi's.
6040 if (PN->use_empty()) continue;
6041
6042 // Only handle legal types. Two interesting things to note here. First,
6043 // by bailing out early, we may leave behind some dead instructions,
6044 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
6045 // own moves. Second, this check is necessary becuase FastISel doesn't
6046 // use CreateRegForValue to create registers, so it always creates
6047 // exactly one register for each non-void instruction.
Owen Andersone50ed302009-08-10 22:56:29 +00006048 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00006049 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
6050 // Promote MVT::i1.
6051 if (VT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +00006052 VT = TLI.getTypeToTransformTo(*CurDAG->getContext(), VT);
Dan Gohman74321ab2008-09-10 21:01:31 +00006053 else {
6054 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6055 return false;
6056 }
Dan Gohman3df24e62008-09-03 23:12:08 +00006057 }
6058
6059 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6060
6061 unsigned Reg = F->getRegForValue(PHIOp);
6062 if (Reg == 0) {
6063 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6064 return false;
6065 }
6066 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
6067 }
6068 }
6069
6070 return true;
6071}