blob: a27fbe68adc96475f13ba9f0b9a17d0cf4351dff [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();
Evan Chengfb2e7522009-09-18 21:02:19 +0000754 EdgeMapping.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000755 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000756 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000757 HasTailCall = false;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000758}
759
760/// getRoot - Return the current virtual root of the Selection DAG,
761/// flushing any PendingLoad items. This must be done before emitting
762/// a store or any other node that may need to be ordered after any
763/// prior load instructions.
764///
765SDValue SelectionDAGLowering::getRoot() {
766 if (PendingLoads.empty())
767 return DAG.getRoot();
768
769 if (PendingLoads.size() == 1) {
770 SDValue Root = PendingLoads[0];
771 DAG.setRoot(Root);
772 PendingLoads.clear();
773 return Root;
774 }
775
776 // Otherwise, we have to make a token factor node.
Owen Anderson825b72b2009-08-11 20:47:22 +0000777 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000778 &PendingLoads[0], PendingLoads.size());
779 PendingLoads.clear();
780 DAG.setRoot(Root);
781 return Root;
782}
783
784/// getControlRoot - Similar to getRoot, but instead of flushing all the
785/// PendingLoad items, flush all the PendingExports items. It is necessary
786/// to do this before emitting a terminator instruction.
787///
788SDValue SelectionDAGLowering::getControlRoot() {
789 SDValue Root = DAG.getRoot();
790
791 if (PendingExports.empty())
792 return Root;
793
794 // Turn all of the CopyToReg chains into one factored node.
795 if (Root.getOpcode() != ISD::EntryToken) {
796 unsigned i = 0, e = PendingExports.size();
797 for (; i != e; ++i) {
798 assert(PendingExports[i].getNode()->getNumOperands() > 1);
799 if (PendingExports[i].getNode()->getOperand(0) == Root)
800 break; // Don't add the root if we already indirectly depend on it.
801 }
802
803 if (i == e)
804 PendingExports.push_back(Root);
805 }
806
Owen Anderson825b72b2009-08-11 20:47:22 +0000807 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000808 &PendingExports[0],
809 PendingExports.size());
810 PendingExports.clear();
811 DAG.setRoot(Root);
812 return Root;
813}
814
815void SelectionDAGLowering::visit(Instruction &I) {
816 visit(I.getOpcode(), I);
817}
818
819void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
820 // Note: this doesn't use InstVisitor, because it has to work with
821 // ConstantExpr's in addition to instructions.
822 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000823 default: llvm_unreachable("Unknown instruction type encountered!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000824 // Build the switch statement using the Instruction.def file.
825#define HANDLE_INST(NUM, OPCODE, CLASS) \
826 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
827#include "llvm/Instruction.def"
828 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000829}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000830
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000831SDValue SelectionDAGLowering::getValue(const Value *V) {
832 SDValue &N = NodeMap[V];
833 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000834
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000835 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
Owen Andersone50ed302009-08-10 22:56:29 +0000836 EVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000837
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000838 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000839 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000840
841 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
842 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000843
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000844 if (isa<ConstantPointerNull>(C))
845 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000846
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000847 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000848 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000849
Nate Begeman9008ca62009-04-27 18:41:29 +0000850 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000851 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000852
853 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
854 visit(CE->getOpcode(), *CE);
855 SDValue N1 = NodeMap[V];
856 assert(N1.getNode() && "visit didn't populate the ValueMap!");
857 return N1;
858 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000859
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000860 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
861 SmallVector<SDValue, 4> Constants;
862 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
863 OI != OE; ++OI) {
864 SDNode *Val = getValue(*OI).getNode();
Dan Gohmaned48caf2009-09-08 01:44:02 +0000865 // If the operand is an empty aggregate, there are no values.
866 if (!Val) continue;
867 // Add each leaf value from the operand to the Constants list
868 // to form a flattened list of all the values.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000869 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
870 Constants.push_back(SDValue(Val, i));
871 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000872 return DAG.getMergeValues(&Constants[0], Constants.size(),
873 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000874 }
875
876 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
877 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
878 "Unknown struct or array constant!");
879
Owen Andersone50ed302009-08-10 22:56:29 +0000880 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000881 ComputeValueVTs(TLI, C->getType(), ValueVTs);
882 unsigned NumElts = ValueVTs.size();
883 if (NumElts == 0)
884 return SDValue(); // empty struct
885 SmallVector<SDValue, 4> Constants(NumElts);
886 for (unsigned i = 0; i != NumElts; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000887 EVT EltVT = ValueVTs[i];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000888 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000889 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000890 else if (EltVT.isFloatingPoint())
891 Constants[i] = DAG.getConstantFP(0, EltVT);
892 else
893 Constants[i] = DAG.getConstant(0, EltVT);
894 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000895 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000896 }
897
898 const VectorType *VecTy = cast<VectorType>(V->getType());
899 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000900
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000901 // Now that we know the number and type of the elements, get that number of
902 // elements into the Ops array based on what kind of constant it is.
903 SmallVector<SDValue, 16> Ops;
904 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
905 for (unsigned i = 0; i != NumElements; ++i)
906 Ops.push_back(getValue(CP->getOperand(i)));
907 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000908 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Owen Andersone50ed302009-08-10 22:56:29 +0000909 EVT EltVT = TLI.getValueType(VecTy->getElementType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000910
911 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000912 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000913 Op = DAG.getConstantFP(0, EltVT);
914 else
915 Op = DAG.getConstant(0, EltVT);
916 Ops.assign(NumElements, Op);
917 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000918
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000919 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000920 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
921 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000922 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000923
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000924 // If this is a static alloca, generate it as the frameindex instead of
925 // computation.
926 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
927 DenseMap<const AllocaInst*, int>::iterator SI =
928 FuncInfo.StaticAllocaMap.find(AI);
929 if (SI != FuncInfo.StaticAllocaMap.end())
930 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
931 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000932
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000933 unsigned InReg = FuncInfo.ValueMap[V];
934 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000935
Owen Anderson23b9b192009-08-12 00:36:31 +0000936 RegsForValue RFV(*DAG.getContext(), TLI, InReg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000937 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000938 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000939}
940
941
942void SelectionDAGLowering::visitRet(ReturnInst &I) {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000943 SDValue Chain = getControlRoot();
944 SmallVector<ISD::OutputArg, 8> Outs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000945 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +0000946 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000947 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000948 unsigned NumValues = ValueVTs.size();
949 if (NumValues == 0) continue;
950
951 SDValue RetOp = getValue(I.getOperand(i));
952 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Owen Andersone50ed302009-08-10 22:56:29 +0000953 EVT VT = ValueVTs[j];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000954
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000955 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000956
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000957 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000958 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000959 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000960 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000961 ExtendKind = ISD::ZERO_EXTEND;
962
Evan Cheng3927f432009-03-25 20:20:11 +0000963 // FIXME: C calling convention requires the return type to be promoted to
964 // at least 32-bit. But this is not necessary for non-C calling
965 // conventions. The frontend should mark functions whose return values
966 // require promoting with signext or zeroext attributes.
967 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000968 EVT MinVT = TLI.getRegisterType(*DAG.getContext(), MVT::i32);
Evan Cheng3927f432009-03-25 20:20:11 +0000969 if (VT.bitsLT(MinVT))
970 VT = MinVT;
971 }
972
Owen Anderson23b9b192009-08-12 00:36:31 +0000973 unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), VT);
974 EVT PartVT = TLI.getRegisterType(*DAG.getContext(), VT);
Evan Cheng3927f432009-03-25 20:20:11 +0000975 SmallVector<SDValue, 4> Parts(NumParts);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000976 getCopyToParts(DAG, getCurDebugLoc(),
977 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000978 &Parts[0], NumParts, PartVT, ExtendKind);
979
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000980 // 'inreg' on function refers to return value
981 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +0000982 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000983 Flags.setInReg();
Anton Korobeynikov0692fab2009-07-16 13:35:48 +0000984
985 // Propagate extension type if any
986 if (F->paramHasAttr(0, Attribute::SExt))
987 Flags.setSExt();
988 else if (F->paramHasAttr(0, Attribute::ZExt))
989 Flags.setZExt();
990
Dan Gohman98ca4f22009-08-05 01:29:28 +0000991 for (unsigned i = 0; i < NumParts; ++i)
992 Outs.push_back(ISD::OutputArg(Flags, Parts[i], /*isfixed=*/true));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000993 }
994 }
Dan Gohman98ca4f22009-08-05 01:29:28 +0000995
996 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000997 CallingConv::ID CallConv =
998 DAG.getMachineFunction().getFunction()->getCallingConv();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000999 Chain = TLI.LowerReturn(Chain, CallConv, isVarArg,
1000 Outs, getCurDebugLoc(), DAG);
Dan Gohman5e866062009-08-06 15:37:27 +00001001
1002 // Verify that the target's LowerReturn behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00001003 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00001004 "LowerReturn didn't return a valid chain!");
1005
1006 // Update the DAG with the new chain value resulting from return lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001007 DAG.setRoot(Chain);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001008}
1009
Dan Gohmanad62f532009-04-23 23:13:24 +00001010/// CopyToExportRegsIfNeeded - If the given value has virtual registers
1011/// created for it, emit nodes to copy the value into the virtual
1012/// registers.
1013void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) {
1014 if (!V->use_empty()) {
1015 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1016 if (VMI != FuncInfo.ValueMap.end())
1017 CopyValueToVirtualRegister(V, VMI->second);
1018 }
1019}
1020
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001021/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1022/// the current basic block, add it to ValueMap now so that we'll get a
1023/// CopyTo/FromReg.
1024void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1025 // No need to export constants.
1026 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001027
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001028 // Already exported?
1029 if (FuncInfo.isExportedInst(V)) return;
1030
1031 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1032 CopyValueToVirtualRegister(V, Reg);
1033}
1034
1035bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1036 const BasicBlock *FromBB) {
1037 // The operands of the setcc have to be in this block. We don't know
1038 // how to export them from some other block.
1039 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1040 // Can export from current BB.
1041 if (VI->getParent() == FromBB)
1042 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001043
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001044 // Is already exported, noop.
1045 return FuncInfo.isExportedInst(V);
1046 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001047
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001048 // If this is an argument, we can export it if the BB is the entry block or
1049 // if it is already exported.
1050 if (isa<Argument>(V)) {
1051 if (FromBB == &FromBB->getParent()->getEntryBlock())
1052 return true;
1053
1054 // Otherwise, can only export this if it is already exported.
1055 return FuncInfo.isExportedInst(V);
1056 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001057
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001058 // Otherwise, constants can always be exported.
1059 return true;
1060}
1061
1062static bool InBlock(const Value *V, const BasicBlock *BB) {
1063 if (const Instruction *I = dyn_cast<Instruction>(V))
1064 return I->getParent() == BB;
1065 return true;
1066}
1067
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001068/// getFCmpCondCode - Return the ISD condition code corresponding to
1069/// the given LLVM IR floating-point condition code. This includes
1070/// consideration of global floating-point math flags.
1071///
1072static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1073 ISD::CondCode FPC, FOC;
1074 switch (Pred) {
1075 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1076 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1077 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1078 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1079 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1080 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1081 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1082 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1083 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1084 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1085 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1086 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1087 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1088 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1089 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1090 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1091 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001092 llvm_unreachable("Invalid FCmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001093 FOC = FPC = ISD::SETFALSE;
1094 break;
1095 }
1096 if (FiniteOnlyFPMath())
1097 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001098 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001099 return FPC;
1100}
1101
1102/// getICmpCondCode - Return the ISD condition code corresponding to
1103/// the given LLVM IR integer condition code.
1104///
1105static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1106 switch (Pred) {
1107 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1108 case ICmpInst::ICMP_NE: return ISD::SETNE;
1109 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1110 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1111 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1112 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1113 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1114 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1115 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1116 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1117 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001118 llvm_unreachable("Invalid ICmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001119 return ISD::SETNE;
1120 }
1121}
1122
Dan Gohmanc2277342008-10-17 21:16:08 +00001123/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1124/// This function emits a branch and is used at the leaves of an OR or an
1125/// AND operator tree.
1126///
1127void
1128SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1129 MachineBasicBlock *TBB,
1130 MachineBasicBlock *FBB,
1131 MachineBasicBlock *CurBB) {
1132 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001133
Dan Gohmanc2277342008-10-17 21:16:08 +00001134 // If the leaf of the tree is a comparison, merge the condition into
1135 // the caseblock.
1136 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1137 // The operands of the cmp have to be in this block. We don't know
1138 // how to export them from some other block. If this is the first block
1139 // of the sequence, no exporting is needed.
1140 if (CurBB == CurMBB ||
1141 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1142 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001143 ISD::CondCode Condition;
1144 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001145 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001146 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001147 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001148 } else {
1149 Condition = ISD::SETEQ; // silence warning.
Torok Edwinc23197a2009-07-14 16:55:14 +00001150 llvm_unreachable("Unknown compare instruction");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001151 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001152
1153 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001154 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1155 SwitchCases.push_back(CB);
1156 return;
1157 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001158 }
1159
1160 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001161 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanc2277342008-10-17 21:16:08 +00001162 NULL, TBB, FBB, CurBB);
1163 SwitchCases.push_back(CB);
1164}
1165
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001166/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001167void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1168 MachineBasicBlock *TBB,
1169 MachineBasicBlock *FBB,
1170 MachineBasicBlock *CurBB,
1171 unsigned Opc) {
1172 // If this node is not part of the or/and tree, emit it as a branch.
1173 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001174 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001175 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1176 BOp->getParent() != CurBB->getBasicBlock() ||
1177 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1178 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1179 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001180 return;
1181 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001182
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001183 // Create TmpBB after CurBB.
1184 MachineFunction::iterator BBI = CurBB;
1185 MachineFunction &MF = DAG.getMachineFunction();
1186 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1187 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001188
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001189 if (Opc == Instruction::Or) {
1190 // Codegen X | Y as:
1191 // jmp_if_X TBB
1192 // jmp TmpBB
1193 // TmpBB:
1194 // jmp_if_Y TBB
1195 // jmp FBB
1196 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001197
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001198 // Emit the LHS condition.
1199 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001200
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001201 // Emit the RHS condition into TmpBB.
1202 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1203 } else {
1204 assert(Opc == Instruction::And && "Unknown merge op!");
1205 // Codegen X & Y as:
1206 // jmp_if_X TmpBB
1207 // jmp FBB
1208 // TmpBB:
1209 // jmp_if_Y TBB
1210 // jmp FBB
1211 //
1212 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001213
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001214 // Emit the LHS condition.
1215 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001216
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001217 // Emit the RHS condition into TmpBB.
1218 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1219 }
1220}
1221
1222/// If the set of cases should be emitted as a series of branches, return true.
1223/// If we should emit this as a bunch of and/or'd together conditions, return
1224/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001225bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001226SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1227 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001228
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001229 // If this is two comparisons of the same values or'd or and'd together, they
1230 // will get folded into a single comparison, so don't emit two blocks.
1231 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1232 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1233 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1234 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1235 return false;
1236 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001237
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001238 return true;
1239}
1240
1241void SelectionDAGLowering::visitBr(BranchInst &I) {
1242 // Update machine-CFG edges.
1243 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1244
1245 // Figure out which block is immediately after the current one.
1246 MachineBasicBlock *NextBlock = 0;
1247 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001248 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001249 NextBlock = BBI;
1250
1251 if (I.isUnconditional()) {
1252 // Update machine-CFG edges.
1253 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001254
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001255 // If this is not a fall-through branch, emit the branch.
1256 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001257 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001258 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001259 DAG.getBasicBlock(Succ0MBB)));
1260 return;
1261 }
1262
1263 // If this condition is one of the special cases we handle, do special stuff
1264 // now.
1265 Value *CondVal = I.getCondition();
1266 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1267
1268 // If this is a series of conditions that are or'd or and'd together, emit
1269 // this as a sequence of branches instead of setcc's with and/or operations.
1270 // For example, instead of something like:
1271 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001272 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001273 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001274 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001275 // or C, F
1276 // jnz foo
1277 // Emit:
1278 // cmp A, B
1279 // je foo
1280 // cmp D, E
1281 // jle foo
1282 //
1283 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001284 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001285 (BOp->getOpcode() == Instruction::And ||
1286 BOp->getOpcode() == Instruction::Or)) {
1287 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1288 // If the compares in later blocks need to use values not currently
1289 // exported from this block, export them now. This block should always
1290 // be the first entry.
1291 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001292
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001293 // Allow some cases to be rejected.
1294 if (ShouldEmitAsBranches(SwitchCases)) {
1295 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1296 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1297 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1298 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001299
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001300 // Emit the branch for this block.
1301 visitSwitchCase(SwitchCases[0]);
1302 SwitchCases.erase(SwitchCases.begin());
1303 return;
1304 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001305
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001306 // Okay, we decided not to do this, remove any inserted MBB's and clear
1307 // SwitchCases.
1308 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001309 FuncInfo.MF->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001310
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001311 SwitchCases.clear();
1312 }
1313 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001314
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001315 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001316 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001317 NULL, Succ0MBB, Succ1MBB, CurMBB);
1318 // Use visitSwitchCase to actually insert the fast branch sequence for this
1319 // cond branch.
1320 visitSwitchCase(CB);
1321}
1322
1323/// visitSwitchCase - Emits the necessary code to represent a single node in
1324/// the binary search tree resulting from lowering a switch instruction.
1325void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1326 SDValue Cond;
1327 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001328 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001329
1330 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001331 if (CB.CmpMHS == NULL) {
1332 // Fold "(X == true)" to X and "(X == false)" to !X to
1333 // handle common cases produced by branch lowering.
Owen Anderson5defacc2009-07-31 17:39:07 +00001334 if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001335 CB.CC == ISD::SETEQ)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001336 Cond = CondLHS;
Owen Anderson5defacc2009-07-31 17:39:07 +00001337 else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001338 CB.CC == ISD::SETEQ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001339 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001340 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001341 } else
Owen Anderson825b72b2009-08-11 20:47:22 +00001342 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001343 } else {
1344 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1345
Anton Korobeynikov23218582008-12-23 22:25:27 +00001346 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1347 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001348
1349 SDValue CmpOp = getValue(CB.CmpMHS);
Owen Andersone50ed302009-08-10 22:56:29 +00001350 EVT VT = CmpOp.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001351
1352 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001353 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001354 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001355 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001356 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001357 VT, CmpOp, DAG.getConstant(Low, VT));
Owen Anderson825b72b2009-08-11 20:47:22 +00001358 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001359 DAG.getConstant(High-Low, VT), ISD::SETULE);
1360 }
1361 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001362
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001363 // Update successor info
1364 CurMBB->addSuccessor(CB.TrueBB);
1365 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001366
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001367 // Set NextBlock to be the MBB immediately after the current one, if any.
1368 // This is used to avoid emitting unnecessary branches to the next block.
1369 MachineBasicBlock *NextBlock = 0;
1370 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001371 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001372 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001373
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001374 // If the lhs block is the next block, invert the condition so that we can
1375 // fall through to the lhs instead of the rhs block.
1376 if (CB.TrueBB == NextBlock) {
1377 std::swap(CB.TrueBB, CB.FalseBB);
1378 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001379 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001380 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001381 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001382 MVT::Other, getControlRoot(), Cond,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001383 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001384
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001385 // If the branch was constant folded, fix up the CFG.
1386 if (BrCond.getOpcode() == ISD::BR) {
1387 CurMBB->removeSuccessor(CB.FalseBB);
1388 DAG.setRoot(BrCond);
1389 } else {
1390 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001391 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001392 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001393
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001394 if (CB.FalseBB == NextBlock)
1395 DAG.setRoot(BrCond);
1396 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001397 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001398 DAG.getBasicBlock(CB.FalseBB)));
1399 }
1400}
1401
1402/// visitJumpTable - Emit JumpTable node in the current MBB
1403void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1404 // Emit the code for the jump table
1405 assert(JT.Reg != -1U && "Should lower JT Header first!");
Owen Andersone50ed302009-08-10 22:56:29 +00001406 EVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001407 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1408 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001409 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001410 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001411 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001412 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001413}
1414
1415/// visitJumpTableHeader - This function emits necessary code to produce index
1416/// in the JumpTable from switch case.
1417void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1418 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001419 // Subtract the lowest switch case value from the value being switched on and
1420 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001421 // difference between smallest and largest cases.
1422 SDValue SwitchOp = getValue(JTH.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001423 EVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001424 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001425 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001426
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001427 // The SDNode we just created, which holds the value being switched on minus
1428 // the the smallest case value, needs to be copied to a virtual register so it
1429 // can be used as an index into the jump table in a subsequent basic block.
1430 // This value may be smaller or larger than the target's pointer type, and
1431 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001432 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001433 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001434 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001435 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001436 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001437 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001438
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001439 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001440 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1441 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001442 JT.Reg = JumpTableReg;
1443
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001444 // Emit the range check for the jump table, and branch to the default block
1445 // for the switch statement if the value being switched on exceeds the largest
1446 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001447 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1448 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001449 DAG.getConstant(JTH.Last-JTH.First,VT),
1450 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001451
1452 // Set NextBlock to be the MBB immediately after the current one, if any.
1453 // This is used to avoid emitting unnecessary branches to the next block.
1454 MachineBasicBlock *NextBlock = 0;
1455 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001456 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001457 NextBlock = BBI;
1458
Dale Johannesen66978ee2009-01-31 02:22:37 +00001459 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001460 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001461 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001462
1463 if (JT.MBB == NextBlock)
1464 DAG.setRoot(BrCond);
1465 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001466 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001467 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001468}
1469
1470/// visitBitTestHeader - This function emits necessary code to produce value
1471/// suitable for "bit tests"
1472void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1473 // Subtract the minimum value
1474 SDValue SwitchOp = getValue(B.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001475 EVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001476 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001477 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001478
1479 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001480 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1481 TLI.getSetCCResultType(SUB.getValueType()),
1482 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001483 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001484
1485 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001486 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001487 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001488 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001489 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001490 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001491 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001492
Duncan Sands92abc622009-01-31 15:50:11 +00001493 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001494 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1495 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001496
1497 // Set NextBlock to be the MBB immediately after the current one, if any.
1498 // This is used to avoid emitting unnecessary branches to the next block.
1499 MachineBasicBlock *NextBlock = 0;
1500 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001501 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001502 NextBlock = BBI;
1503
1504 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1505
1506 CurMBB->addSuccessor(B.Default);
1507 CurMBB->addSuccessor(MBB);
1508
Dale Johannesen66978ee2009-01-31 02:22:37 +00001509 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001510 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001511 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001512
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001513 if (MBB == NextBlock)
1514 DAG.setRoot(BrRange);
1515 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001516 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001517 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001518}
1519
1520/// visitBitTestCase - this function produces one "bit test"
1521void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1522 unsigned Reg,
1523 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001524 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001525 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001526 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001527 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001528 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001529 DAG.getConstant(1, TLI.getPointerTy()),
1530 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001531
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001532 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001533 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001534 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001535 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001536 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1537 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001538 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001539 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001540
1541 CurMBB->addSuccessor(B.TargetBB);
1542 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001543
Dale Johannesen66978ee2009-01-31 02:22:37 +00001544 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001545 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001546 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001547
1548 // Set NextBlock to be the MBB immediately after the current one, if any.
1549 // This is used to avoid emitting unnecessary branches to the next block.
1550 MachineBasicBlock *NextBlock = 0;
1551 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001552 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001553 NextBlock = BBI;
1554
1555 if (NextMBB == NextBlock)
1556 DAG.setRoot(BrAnd);
1557 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001558 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001559 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001560}
1561
1562void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1563 // Retrieve successors.
1564 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1565 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1566
Gabor Greifb67e6b32009-01-15 11:10:44 +00001567 const Value *Callee(I.getCalledValue());
1568 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001569 visitInlineAsm(&I);
1570 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001571 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001572
1573 // If the value of the invoke is used outside of its defining block, make it
1574 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001575 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001576
1577 // Update successor info
1578 CurMBB->addSuccessor(Return);
1579 CurMBB->addSuccessor(LandingPad);
1580
1581 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001582 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001583 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001584 DAG.getBasicBlock(Return)));
1585}
1586
1587void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1588}
1589
1590/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1591/// small case ranges).
1592bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1593 CaseRecVector& WorkList,
1594 Value* SV,
1595 MachineBasicBlock* Default) {
1596 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001597
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001598 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001599 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001600 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001601 return false;
1602
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001603 // Get the MachineFunction which holds the current MBB. This is used when
1604 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001605 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001606
1607 // Figure out which block is immediately after the current one.
1608 MachineBasicBlock *NextBlock = 0;
1609 MachineFunction::iterator BBI = CR.CaseBB;
1610
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001611 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001612 NextBlock = BBI;
1613
1614 // TODO: If any two of the cases has the same destination, and if one value
1615 // is the same as the other, but has one bit unset that the other has set,
1616 // use bit manipulation to do two compares at once. For example:
1617 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001618
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001619 // Rearrange the case blocks so that the last one falls through if possible.
1620 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1621 // The last case block won't fall through into 'NextBlock' if we emit the
1622 // branches in this order. See if rearranging a case value would help.
1623 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1624 if (I->BB == NextBlock) {
1625 std::swap(*I, BackCase);
1626 break;
1627 }
1628 }
1629 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001630
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001631 // Create a CaseBlock record representing a conditional branch to
1632 // the Case's target mbb if the value being switched on SV is equal
1633 // to C.
1634 MachineBasicBlock *CurBlock = CR.CaseBB;
1635 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1636 MachineBasicBlock *FallThrough;
1637 if (I != E-1) {
1638 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1639 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001640
1641 // Put SV in a virtual register to make it available from the new blocks.
1642 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001643 } else {
1644 // If the last case doesn't match, go to the default block.
1645 FallThrough = Default;
1646 }
1647
1648 Value *RHS, *LHS, *MHS;
1649 ISD::CondCode CC;
1650 if (I->High == I->Low) {
1651 // This is just small small case range :) containing exactly 1 case
1652 CC = ISD::SETEQ;
1653 LHS = SV; RHS = I->High; MHS = NULL;
1654 } else {
1655 CC = ISD::SETLE;
1656 LHS = I->Low; MHS = SV; RHS = I->High;
1657 }
1658 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001659
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001660 // If emitting the first comparison, just call visitSwitchCase to emit the
1661 // code into the current block. Otherwise, push the CaseBlock onto the
1662 // vector to be later processed by SDISel, and insert the node's MBB
1663 // before the next MBB.
1664 if (CurBlock == CurMBB)
1665 visitSwitchCase(CB);
1666 else
1667 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001668
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001669 CurBlock = FallThrough;
1670 }
1671
1672 return true;
1673}
1674
1675static inline bool areJTsAllowed(const TargetLowering &TLI) {
1676 return !DisableJumpTables &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001677 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1678 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001679}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001680
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001681static APInt ComputeRange(const APInt &First, const APInt &Last) {
1682 APInt LastExt(Last), FirstExt(First);
1683 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1684 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1685 return (LastExt - FirstExt + 1ULL);
1686}
1687
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001688/// handleJTSwitchCase - Emit jumptable for current switch case range
1689bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1690 CaseRecVector& WorkList,
1691 Value* SV,
1692 MachineBasicBlock* Default) {
1693 Case& FrontCase = *CR.Range.first;
1694 Case& BackCase = *(CR.Range.second-1);
1695
Anton Korobeynikov23218582008-12-23 22:25:27 +00001696 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1697 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001698
Anton Korobeynikov23218582008-12-23 22:25:27 +00001699 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001700 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1701 I!=E; ++I)
1702 TSize += I->size();
1703
1704 if (!areJTsAllowed(TLI) || TSize <= 3)
1705 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001706
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001707 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001708 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001709 if (Density < 0.4)
1710 return false;
1711
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001712 DEBUG(errs() << "Lowering jump table\n"
1713 << "First entry: " << First << ". Last entry: " << Last << '\n'
1714 << "Range: " << Range
1715 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001716
1717 // Get the MachineFunction which holds the current MBB. This is used when
1718 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001719 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001720
1721 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001722 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001723 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001724
1725 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1726
1727 // Create a new basic block to hold the code for loading the address
1728 // of the jump table, and jumping to it. Update successor information;
1729 // we will either branch to the default case for the switch, or the jump
1730 // table.
1731 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1732 CurMF->insert(BBI, JumpTableBB);
1733 CR.CaseBB->addSuccessor(Default);
1734 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001735
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001736 // Build a vector of destination BBs, corresponding to each target
1737 // of the jump table. If the value of the jump table slot corresponds to
1738 // a case statement, push the case's BB onto the vector, otherwise, push
1739 // the default BB.
1740 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001741 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001742 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001743 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1744 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1745
1746 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001747 DestBBs.push_back(I->BB);
1748 if (TEI==High)
1749 ++I;
1750 } else {
1751 DestBBs.push_back(Default);
1752 }
1753 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001754
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001755 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001756 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1757 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001758 E = DestBBs.end(); I != E; ++I) {
1759 if (!SuccsHandled[(*I)->getNumber()]) {
1760 SuccsHandled[(*I)->getNumber()] = true;
1761 JumpTableBB->addSuccessor(*I);
1762 }
1763 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001764
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001765 // Create a jump table index for this jump table, or return an existing
1766 // one.
1767 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001768
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001769 // Set the jump table information so that we can codegen it as a second
1770 // MachineBasicBlock
1771 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1772 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1773 if (CR.CaseBB == CurMBB)
1774 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001775
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001776 JTCases.push_back(JumpTableBlock(JTH, JT));
1777
1778 return true;
1779}
1780
1781/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1782/// 2 subtrees.
1783bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1784 CaseRecVector& WorkList,
1785 Value* SV,
1786 MachineBasicBlock* Default) {
1787 // Get the MachineFunction which holds the current MBB. This is used when
1788 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001789 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001790
1791 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001792 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001793 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001794
1795 Case& FrontCase = *CR.Range.first;
1796 Case& BackCase = *(CR.Range.second-1);
1797 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1798
1799 // Size is the number of Cases represented by this range.
1800 unsigned Size = CR.Range.second - CR.Range.first;
1801
Anton Korobeynikov23218582008-12-23 22:25:27 +00001802 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1803 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001804 double FMetric = 0;
1805 CaseItr Pivot = CR.Range.first + Size/2;
1806
1807 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1808 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001809 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001810 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1811 I!=E; ++I)
1812 TSize += I->size();
1813
Anton Korobeynikov23218582008-12-23 22:25:27 +00001814 size_t LSize = FrontCase.size();
1815 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001816 DEBUG(errs() << "Selecting best pivot: \n"
1817 << "First: " << First << ", Last: " << Last <<'\n'
1818 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001819 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1820 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001821 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1822 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001823 APInt Range = ComputeRange(LEnd, RBegin);
1824 assert((Range - 2ULL).isNonNegative() &&
1825 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001826 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1827 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001828 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001829 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001830 DEBUG(errs() <<"=>Step\n"
1831 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1832 << "LDensity: " << LDensity
1833 << ", RDensity: " << RDensity << '\n'
1834 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001835 if (FMetric < Metric) {
1836 Pivot = J;
1837 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001838 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001839 }
1840
1841 LSize += J->size();
1842 RSize -= J->size();
1843 }
1844 if (areJTsAllowed(TLI)) {
1845 // If our case is dense we *really* should handle it earlier!
1846 assert((FMetric > 0) && "Should handle dense range earlier!");
1847 } else {
1848 Pivot = CR.Range.first + Size/2;
1849 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001851 CaseRange LHSR(CR.Range.first, Pivot);
1852 CaseRange RHSR(Pivot, CR.Range.second);
1853 Constant *C = Pivot->Low;
1854 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001855
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001856 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001857 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001858 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001859 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001860 // Pivot's Value, then we can branch directly to the LHS's Target,
1861 // rather than creating a leaf node for it.
1862 if ((LHSR.second - LHSR.first) == 1 &&
1863 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001864 cast<ConstantInt>(C)->getValue() ==
1865 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001866 TrueBB = LHSR.first->BB;
1867 } else {
1868 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1869 CurMF->insert(BBI, TrueBB);
1870 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001871
1872 // Put SV in a virtual register to make it available from the new blocks.
1873 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001874 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001875
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001876 // Similar to the optimization above, if the Value being switched on is
1877 // known to be less than the Constant CR.LT, and the current Case Value
1878 // is CR.LT - 1, then we can branch directly to the target block for
1879 // the current Case Value, rather than emitting a RHS leaf node for it.
1880 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001881 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1882 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001883 FalseBB = RHSR.first->BB;
1884 } else {
1885 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1886 CurMF->insert(BBI, FalseBB);
1887 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001888
1889 // Put SV in a virtual register to make it available from the new blocks.
1890 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001891 }
1892
1893 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001894 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001895 // Otherwise, branch to LHS.
1896 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1897
1898 if (CR.CaseBB == CurMBB)
1899 visitSwitchCase(CB);
1900 else
1901 SwitchCases.push_back(CB);
1902
1903 return true;
1904}
1905
1906/// handleBitTestsSwitchCase - if current case range has few destination and
1907/// range span less, than machine word bitwidth, encode case range into series
1908/// of masks and emit bit tests with these masks.
1909bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1910 CaseRecVector& WorkList,
1911 Value* SV,
1912 MachineBasicBlock* Default){
Owen Andersone50ed302009-08-10 22:56:29 +00001913 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00001914 unsigned IntPtrBits = PTy.getSizeInBits();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001915
1916 Case& FrontCase = *CR.Range.first;
1917 Case& BackCase = *(CR.Range.second-1);
1918
1919 // Get the MachineFunction which holds the current MBB. This is used when
1920 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001921 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001922
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001923 // If target does not have legal shift left, do not emit bit tests at all.
1924 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1925 return false;
1926
Anton Korobeynikov23218582008-12-23 22:25:27 +00001927 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001928 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1929 I!=E; ++I) {
1930 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001931 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001932 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001933
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001934 // Count unique destinations
1935 SmallSet<MachineBasicBlock*, 4> Dests;
1936 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1937 Dests.insert(I->BB);
1938 if (Dests.size() > 3)
1939 // Don't bother the code below, if there are too much unique destinations
1940 return false;
1941 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001942 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1943 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001944
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001945 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001946 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1947 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001948 APInt cmpRange = maxValue - minValue;
1949
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001950 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1951 << "Low bound: " << minValue << '\n'
1952 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001953
1954 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001955 (!(Dests.size() == 1 && numCmps >= 3) &&
1956 !(Dests.size() == 2 && numCmps >= 5) &&
1957 !(Dests.size() >= 3 && numCmps >= 6)))
1958 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001959
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001960 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001961 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1962
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001963 // Optimize the case where all the case values fit in a
1964 // word without having to subtract minValue. In this case,
1965 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001966 if (minValue.isNonNegative() &&
1967 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1968 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001969 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001970 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001971 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001972
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001973 CaseBitsVector CasesBits;
1974 unsigned i, count = 0;
1975
1976 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1977 MachineBasicBlock* Dest = I->BB;
1978 for (i = 0; i < count; ++i)
1979 if (Dest == CasesBits[i].BB)
1980 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001981
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001982 if (i == count) {
1983 assert((count < 3) && "Too much destinations to test!");
1984 CasesBits.push_back(CaseBits(0, Dest, 0));
1985 count++;
1986 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001987
1988 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1989 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1990
1991 uint64_t lo = (lowValue - lowBound).getZExtValue();
1992 uint64_t hi = (highValue - lowBound).getZExtValue();
1993
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001994 for (uint64_t j = lo; j <= hi; j++) {
1995 CasesBits[i].Mask |= 1ULL << j;
1996 CasesBits[i].Bits++;
1997 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001998
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001999 }
2000 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00002001
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002002 BitTestInfo BTC;
2003
2004 // Figure out which block is immediately after the current one.
2005 MachineFunction::iterator BBI = CR.CaseBB;
2006 ++BBI;
2007
2008 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2009
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002010 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002011 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002012 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2013 << ", Bits: " << CasesBits[i].Bits
2014 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002015
2016 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2017 CurMF->insert(BBI, CaseBB);
2018 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2019 CaseBB,
2020 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002021
2022 // Put SV in a virtual register to make it available from the new blocks.
2023 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002024 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002025
2026 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002027 -1U, (CR.CaseBB == CurMBB),
2028 CR.CaseBB, Default, BTC);
2029
2030 if (CR.CaseBB == CurMBB)
2031 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002032
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002033 BitTestCases.push_back(BTB);
2034
2035 return true;
2036}
2037
2038
2039/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002040size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002041 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002042 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002043
2044 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002045 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002046 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2047 Cases.push_back(Case(SI.getSuccessorValue(i),
2048 SI.getSuccessorValue(i),
2049 SMBB));
2050 }
2051 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2052
2053 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002054 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002055 // Must recompute end() each iteration because it may be
2056 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002057 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2058 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2059 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002060 MachineBasicBlock* nextBB = J->BB;
2061 MachineBasicBlock* currentBB = I->BB;
2062
2063 // If the two neighboring cases go to the same destination, merge them
2064 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002065 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002066 I->High = J->High;
2067 J = Cases.erase(J);
2068 } else {
2069 I = J++;
2070 }
2071 }
2072
2073 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2074 if (I->Low != I->High)
2075 // A range counts double, since it requires two compares.
2076 ++numCmps;
2077 }
2078
2079 return numCmps;
2080}
2081
Anton Korobeynikov23218582008-12-23 22:25:27 +00002082void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002083 // Figure out which block is immediately after the current one.
2084 MachineBasicBlock *NextBlock = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002085
2086 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2087
2088 // If there is only the default destination, branch to it if it is not the
2089 // next basic block. Otherwise, just fall through.
2090 if (SI.getNumOperands() == 2) {
2091 // Update machine-CFG edges.
2092
2093 // If this is not a fall-through branch, emit the branch.
2094 CurMBB->addSuccessor(Default);
2095 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002096 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002097 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002098 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002099 return;
2100 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002101
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002102 // If there are any non-default case statements, create a vector of Cases
2103 // representing each one, and sort the vector so that we can efficiently
2104 // create a binary search tree from them.
2105 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002106 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002107 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2108 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002109 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002110
2111 // Get the Value to be switched on and default basic blocks, which will be
2112 // inserted into CaseBlock records, representing basic blocks in the binary
2113 // search tree.
2114 Value *SV = SI.getOperand(0);
2115
2116 // Push the initial CaseRec onto the worklist
2117 CaseRecVector WorkList;
2118 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2119
2120 while (!WorkList.empty()) {
2121 // Grab a record representing a case range to process off the worklist
2122 CaseRec CR = WorkList.back();
2123 WorkList.pop_back();
2124
2125 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2126 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002127
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002128 // If the range has few cases (two or less) emit a series of specific
2129 // tests.
2130 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2131 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002132
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002133 // If the switch has more than 5 blocks, and at least 40% dense, and the
2134 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002135 // lowering the switch to a binary tree of conditional branches.
2136 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2137 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002138
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002139 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2140 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2141 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2142 }
2143}
2144
2145
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002146void SelectionDAGLowering::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002147 // -0.0 - X --> fneg
2148 const Type *Ty = I.getType();
2149 if (isa<VectorType>(Ty)) {
2150 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2151 const VectorType *DestTy = cast<VectorType>(I.getType());
2152 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002153 unsigned VL = DestTy->getNumElements();
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002154 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Owen Andersonaf7ec972009-07-28 21:19:26 +00002155 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002156 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002157 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002158 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002159 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002160 return;
2161 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002162 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002163 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002164 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002165 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002166 SDValue Op2 = getValue(I.getOperand(1));
2167 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2168 Op2.getValueType(), Op2));
2169 return;
2170 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002171
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002172 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002173}
2174
2175void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2176 SDValue Op1 = getValue(I.getOperand(0));
2177 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002178
Scott Michelfdc40a02009-02-17 22:15:04 +00002179 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002180 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002181}
2182
2183void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2184 SDValue Op1 = getValue(I.getOperand(0));
2185 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002186 if (!isa<VectorType>(I.getType()) &&
2187 Op2.getValueType() != TLI.getShiftAmountTy()) {
2188 // If the operand is smaller than the shift count type, promote it.
Owen Andersone50ed302009-08-10 22:56:29 +00002189 EVT PTy = TLI.getPointerTy();
2190 EVT STy = TLI.getShiftAmountTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002191 if (STy.bitsGT(Op2.getValueType()))
Dan Gohman57fc82d2009-04-09 03:51:29 +00002192 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2193 TLI.getShiftAmountTy(), Op2);
2194 // If the operand is larger than the shift count type but the shift
2195 // count type has enough bits to represent any shift value, truncate
2196 // it now. This is a common case and it exposes the truncate to
2197 // optimization early.
Owen Anderson77547be2009-08-10 18:56:59 +00002198 else if (STy.getSizeInBits() >=
Dan Gohman57fc82d2009-04-09 03:51:29 +00002199 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2200 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2201 TLI.getShiftAmountTy(), Op2);
2202 // Otherwise we'll need to temporarily settle for some other
2203 // convenient type; type legalization will make adjustments as
2204 // needed.
Owen Anderson77547be2009-08-10 18:56:59 +00002205 else if (PTy.bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002206 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002207 TLI.getPointerTy(), Op2);
Owen Anderson77547be2009-08-10 18:56:59 +00002208 else if (PTy.bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002209 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002210 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002211 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002212
Scott Michelfdc40a02009-02-17 22:15:04 +00002213 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002214 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002215}
2216
2217void SelectionDAGLowering::visitICmp(User &I) {
2218 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2219 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2220 predicate = IC->getPredicate();
2221 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2222 predicate = ICmpInst::Predicate(IC->getPredicate());
2223 SDValue Op1 = getValue(I.getOperand(0));
2224 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002225 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002226
Owen Andersone50ed302009-08-10 22:56:29 +00002227 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002228 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002229}
2230
2231void SelectionDAGLowering::visitFCmp(User &I) {
2232 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2233 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2234 predicate = FC->getPredicate();
2235 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2236 predicate = FCmpInst::Predicate(FC->getPredicate());
2237 SDValue Op1 = getValue(I.getOperand(0));
2238 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002239 ISD::CondCode Condition = getFCmpCondCode(predicate);
Owen Andersone50ed302009-08-10 22:56:29 +00002240 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002241 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002242}
2243
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002244void SelectionDAGLowering::visitSelect(User &I) {
Owen Andersone50ed302009-08-10 22:56:29 +00002245 SmallVector<EVT, 4> ValueVTs;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002246 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2247 unsigned NumValues = ValueVTs.size();
2248 if (NumValues != 0) {
2249 SmallVector<SDValue, 4> Values(NumValues);
2250 SDValue Cond = getValue(I.getOperand(0));
2251 SDValue TrueVal = getValue(I.getOperand(1));
2252 SDValue FalseVal = getValue(I.getOperand(2));
2253
2254 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002255 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002256 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002257 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2258 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2259
Scott Michelfdc40a02009-02-17 22:15:04 +00002260 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002261 DAG.getVTList(&ValueVTs[0], NumValues),
2262 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002263 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002264}
2265
2266
2267void SelectionDAGLowering::visitTrunc(User &I) {
2268 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2269 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002270 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002271 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002272}
2273
2274void SelectionDAGLowering::visitZExt(User &I) {
2275 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2276 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2277 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002278 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002279 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002280}
2281
2282void SelectionDAGLowering::visitSExt(User &I) {
2283 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2284 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2285 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002286 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002287 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002288}
2289
2290void SelectionDAGLowering::visitFPTrunc(User &I) {
2291 // FPTrunc is never a no-op cast, no need to check
2292 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002293 EVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002294 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002295 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002296}
2297
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002298void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002299 // FPTrunc is never a no-op cast, no need to check
2300 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002301 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002302 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002303}
2304
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002305void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002306 // FPToUI is never a no-op cast, no need to check
2307 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002308 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002309 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002310}
2311
2312void SelectionDAGLowering::visitFPToSI(User &I) {
2313 // FPToSI is never a no-op cast, no need to check
2314 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002315 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002316 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002317}
2318
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002319void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002320 // UIToFP is never a no-op cast, no need to check
2321 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002322 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002323 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002324}
2325
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002326void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002327 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002328 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002329 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002330 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002331}
2332
2333void SelectionDAGLowering::visitPtrToInt(User &I) {
2334 // What to do depends on the size of the integer and the size of the pointer.
2335 // We can either truncate, zero extend, or no-op, accordingly.
2336 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002337 EVT SrcVT = N.getValueType();
2338 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002339 SDValue Result;
2340 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002341 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002342 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002343 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002344 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002345 setValue(&I, Result);
2346}
2347
2348void SelectionDAGLowering::visitIntToPtr(User &I) {
2349 // What to do depends on the size of the integer and the size of the pointer.
2350 // We can either truncate, zero extend, or no-op, accordingly.
2351 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002352 EVT SrcVT = N.getValueType();
2353 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002354 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002355 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002356 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002357 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002358 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002359 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002360}
2361
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002362void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002363 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002364 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002365
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002366 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002367 // is either a BIT_CONVERT or a no-op.
2368 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002369 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002370 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002371 else
2372 setValue(&I, N); // noop cast.
2373}
2374
2375void SelectionDAGLowering::visitInsertElement(User &I) {
2376 SDValue InVec = getValue(I.getOperand(0));
2377 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002378 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002379 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002380 getValue(I.getOperand(2)));
2381
Scott Michelfdc40a02009-02-17 22:15:04 +00002382 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002383 TLI.getValueType(I.getType()),
2384 InVec, InVal, InIdx));
2385}
2386
2387void SelectionDAGLowering::visitExtractElement(User &I) {
2388 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002389 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002390 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002391 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002392 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002393 TLI.getValueType(I.getType()), InVec, InIdx));
2394}
2395
Mon P Wangaeb06d22008-11-10 04:46:22 +00002396
2397// Utility for visitShuffleVector - Returns true if the mask is mask starting
2398// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002399static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2400 unsigned MaskNumElts = Mask.size();
2401 for (unsigned i = 0; i != MaskNumElts; ++i)
2402 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002403 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002404 return true;
2405}
2406
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002407void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002408 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002409 SDValue Src1 = getValue(I.getOperand(0));
2410 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002411
Nate Begeman9008ca62009-04-27 18:41:29 +00002412 // Convert the ConstantVector mask operand into an array of ints, with -1
2413 // representing undef values.
2414 SmallVector<Constant*, 8> MaskElts;
Owen Anderson001dbfe2009-07-16 18:04:31 +00002415 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
2416 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002417 unsigned MaskNumElts = MaskElts.size();
2418 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002419 if (isa<UndefValue>(MaskElts[i]))
2420 Mask.push_back(-1);
2421 else
2422 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2423 }
2424
Owen Andersone50ed302009-08-10 22:56:29 +00002425 EVT VT = TLI.getValueType(I.getType());
2426 EVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002427 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002428
Mon P Wangc7849c22008-11-16 05:06:27 +00002429 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002430 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2431 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002432 return;
2433 }
2434
2435 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002436 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2437 // Mask is longer than the source vectors and is a multiple of the source
2438 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002439 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002440 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2441 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002442 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002443 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002444 return;
2445 }
2446
Mon P Wangc7849c22008-11-16 05:06:27 +00002447 // Pad both vectors with undefs to make them the same length as the mask.
2448 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002449 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2450 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002451 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002452
Nate Begeman9008ca62009-04-27 18:41:29 +00002453 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2454 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002455 MOps1[0] = Src1;
2456 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002457
2458 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2459 getCurDebugLoc(), VT,
2460 &MOps1[0], NumConcat);
2461 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2462 getCurDebugLoc(), VT,
2463 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002464
Mon P Wangaeb06d22008-11-10 04:46:22 +00002465 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002466 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002467 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002468 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002469 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002470 MappedOps.push_back(Idx);
2471 else
2472 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002473 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002474 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2475 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002476 return;
2477 }
2478
Mon P Wangc7849c22008-11-16 05:06:27 +00002479 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002480 // Analyze the access pattern of the vector to see if we can extract
2481 // two subvectors and do the shuffle. The analysis is done by calculating
2482 // the range of elements the mask access on both vectors.
2483 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2484 int MaxRange[2] = {-1, -1};
2485
Nate Begeman5a5ca152009-04-29 05:20:52 +00002486 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002487 int Idx = Mask[i];
2488 int Input = 0;
2489 if (Idx < 0)
2490 continue;
2491
Nate Begeman5a5ca152009-04-29 05:20:52 +00002492 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002493 Input = 1;
2494 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002495 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002496 if (Idx > MaxRange[Input])
2497 MaxRange[Input] = Idx;
2498 if (Idx < MinRange[Input])
2499 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002500 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002501
Mon P Wangc7849c22008-11-16 05:06:27 +00002502 // Check if the access is smaller than the vector size and can we find
2503 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002504 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002505 int StartIdx[2]; // StartIdx to extract from
2506 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002507 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002508 RangeUse[Input] = 0; // Unused
2509 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002510 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002511 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002512 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002513 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002514 RangeUse[Input] = 1; // Extract from beginning of the vector
2515 StartIdx[Input] = 0;
2516 } else {
2517 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002518 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002519 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002520 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002521 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002522 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002523 }
2524
Bill Wendling636e2582009-08-21 18:16:06 +00002525 if (RangeUse[0] == 0 && RangeUse[1] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002526 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002527 return;
2528 }
2529 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2530 // Extract appropriate subvector and generate a vector shuffle
2531 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002532 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002533 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002534 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002535 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002536 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002537 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002538 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002539 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002540 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002541 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002542 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002543 int Idx = Mask[i];
2544 if (Idx < 0)
2545 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002546 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002547 MappedOps.push_back(Idx - StartIdx[0]);
2548 else
2549 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002550 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002551 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2552 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002553 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002554 }
2555 }
2556
Mon P Wangc7849c22008-11-16 05:06:27 +00002557 // We can't use either concat vectors or extract subvectors so fall back to
2558 // replacing the shuffle with extract and build vector.
2559 // to insert and build vector.
Owen Andersone50ed302009-08-10 22:56:29 +00002560 EVT EltVT = VT.getVectorElementType();
2561 EVT PtrVT = TLI.getPointerTy();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002562 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002563 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002564 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002565 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002566 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002567 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002568 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002569 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002570 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002571 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002572 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002573 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002574 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002575 }
2576 }
Evan Chenga87008d2009-02-25 22:49:59 +00002577 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2578 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002579}
2580
2581void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2582 const Value *Op0 = I.getOperand(0);
2583 const Value *Op1 = I.getOperand(1);
2584 const Type *AggTy = I.getType();
2585 const Type *ValTy = Op1->getType();
2586 bool IntoUndef = isa<UndefValue>(Op0);
2587 bool FromUndef = isa<UndefValue>(Op1);
2588
2589 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2590 I.idx_begin(), I.idx_end());
2591
Owen Andersone50ed302009-08-10 22:56:29 +00002592 SmallVector<EVT, 4> AggValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002593 ComputeValueVTs(TLI, AggTy, AggValueVTs);
Owen Andersone50ed302009-08-10 22:56:29 +00002594 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002595 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2596
2597 unsigned NumAggValues = AggValueVTs.size();
2598 unsigned NumValValues = ValValueVTs.size();
2599 SmallVector<SDValue, 4> Values(NumAggValues);
2600
2601 SDValue Agg = getValue(Op0);
2602 SDValue Val = getValue(Op1);
2603 unsigned i = 0;
2604 // Copy the beginning value(s) from the original aggregate.
2605 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002606 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002607 SDValue(Agg.getNode(), Agg.getResNo() + i);
2608 // Copy values from the inserted value(s).
2609 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002610 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002611 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2612 // Copy remaining value(s) from the original aggregate.
2613 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002614 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002615 SDValue(Agg.getNode(), Agg.getResNo() + i);
2616
Scott Michelfdc40a02009-02-17 22:15:04 +00002617 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002618 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2619 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002620}
2621
2622void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2623 const Value *Op0 = I.getOperand(0);
2624 const Type *AggTy = Op0->getType();
2625 const Type *ValTy = I.getType();
2626 bool OutOfUndef = isa<UndefValue>(Op0);
2627
2628 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2629 I.idx_begin(), I.idx_end());
2630
Owen Andersone50ed302009-08-10 22:56:29 +00002631 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002632 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2633
2634 unsigned NumValValues = ValValueVTs.size();
2635 SmallVector<SDValue, 4> Values(NumValValues);
2636
2637 SDValue Agg = getValue(Op0);
2638 // Copy out the selected value(s).
2639 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2640 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002641 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002642 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002643 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002644
Scott Michelfdc40a02009-02-17 22:15:04 +00002645 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002646 DAG.getVTList(&ValValueVTs[0], NumValValues),
2647 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002648}
2649
2650
2651void SelectionDAGLowering::visitGetElementPtr(User &I) {
2652 SDValue N = getValue(I.getOperand(0));
2653 const Type *Ty = I.getOperand(0)->getType();
2654
2655 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2656 OI != E; ++OI) {
2657 Value *Idx = *OI;
2658 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2659 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2660 if (Field) {
2661 // N = N + Offset
2662 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002663 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002664 DAG.getIntPtrConstant(Offset));
2665 }
2666 Ty = StTy->getElementType(Field);
2667 } else {
2668 Ty = cast<SequentialType>(Ty)->getElementType();
2669
2670 // If this is a constant subscript, handle it quickly.
2671 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2672 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002673 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002674 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002675 SDValue OffsVal;
Owen Andersone50ed302009-08-10 22:56:29 +00002676 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002677 unsigned PtrBits = PTy.getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002678 if (PtrBits < 64) {
2679 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2680 TLI.getPointerTy(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002681 DAG.getConstant(Offs, MVT::i64));
Evan Cheng65b52df2009-02-09 21:01:06 +00002682 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002683 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002684 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002685 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002686 continue;
2687 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002688
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002689 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +00002690 uint64_t ElementSize = TD->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002691 SDValue IdxN = getValue(Idx);
2692
2693 // If the index is smaller or larger than intptr_t, truncate or extend
2694 // it.
2695 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002696 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002697 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002698 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002699 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002700 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002701
2702 // If this is a multiply by a power of two, turn it into a shl
2703 // immediately. This is a very common case.
2704 if (ElementSize != 1) {
2705 if (isPowerOf2_64(ElementSize)) {
2706 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002707 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002708 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002709 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002710 } else {
2711 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002712 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002713 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002714 }
2715 }
2716
Scott Michelfdc40a02009-02-17 22:15:04 +00002717 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002718 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002719 }
2720 }
2721 setValue(&I, N);
2722}
2723
2724void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2725 // If this is a fixed sized alloca in the entry block of the function,
2726 // allocate it statically on the stack.
2727 if (FuncInfo.StaticAllocaMap.count(&I))
2728 return; // getValue will auto-populate this.
2729
2730 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002731 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002732 unsigned Align =
2733 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2734 I.getAlignment());
2735
2736 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002737
2738 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2739 AllocSize,
2740 DAG.getConstant(TySize, AllocSize.getValueType()));
2741
2742
2743
Owen Andersone50ed302009-08-10 22:56:29 +00002744 EVT IntPtr = TLI.getPointerTy();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002745 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002746 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002747 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002748 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002749 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002750 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002751
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002752 // Handle alignment. If the requested alignment is less than or equal to
2753 // the stack alignment, ignore it. If the size is greater than or equal to
2754 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2755 unsigned StackAlign =
2756 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2757 if (Align <= StackAlign)
2758 Align = 0;
2759
2760 // Round the size of the allocation up to the stack alignment size
2761 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002762 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002763 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002764 DAG.getIntPtrConstant(StackAlign-1));
2765 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002766 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002767 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002768 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2769
2770 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Owen Anderson825b72b2009-08-11 20:47:22 +00002771 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002772 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002773 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002774 setValue(&I, DSA);
2775 DAG.setRoot(DSA.getValue(1));
2776
2777 // Inform the Frame Information that we have just allocated a variable-sized
2778 // object.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002779 FuncInfo.MF->getFrameInfo()->CreateVariableSizedObject();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002780}
2781
2782void SelectionDAGLowering::visitLoad(LoadInst &I) {
2783 const Value *SV = I.getOperand(0);
2784 SDValue Ptr = getValue(SV);
2785
2786 const Type *Ty = I.getType();
2787 bool isVolatile = I.isVolatile();
2788 unsigned Alignment = I.getAlignment();
2789
Owen Andersone50ed302009-08-10 22:56:29 +00002790 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002791 SmallVector<uint64_t, 4> Offsets;
2792 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2793 unsigned NumValues = ValueVTs.size();
2794 if (NumValues == 0)
2795 return;
2796
2797 SDValue Root;
2798 bool ConstantMemory = false;
2799 if (I.isVolatile())
2800 // Serialize volatile loads with other side effects.
2801 Root = getRoot();
2802 else if (AA->pointsToConstantMemory(SV)) {
2803 // Do not serialize (non-volatile) loads of constant memory with anything.
2804 Root = DAG.getEntryNode();
2805 ConstantMemory = true;
2806 } else {
2807 // Do not serialize non-volatile loads against each other.
2808 Root = DAG.getRoot();
2809 }
2810
2811 SmallVector<SDValue, 4> Values(NumValues);
2812 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002813 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002814 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002815 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Nate Begemane6798372009-09-15 00:13:12 +00002816 DAG.getNode(ISD::ADD, getCurDebugLoc(),
2817 PtrVT, Ptr,
2818 DAG.getConstant(Offsets[i], PtrVT)),
Nate Begeman101b25c2009-09-15 19:05:41 +00002819 SV, Offsets[i], isVolatile, Alignment);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002820 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)),
Nate Begeman101b25c2009-09-15 19:05:41 +00002868 PtrV, Offsets[i], isVolatile, Alignment);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002869
Scott Michelfdc40a02009-02-17 22:15:04 +00002870 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002871 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002872}
2873
2874/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2875/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002876void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002877 unsigned Intrinsic) {
2878 bool HasChain = !I.doesNotAccessMemory();
2879 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2880
2881 // Build the operand list.
2882 SmallVector<SDValue, 8> Ops;
2883 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2884 if (OnlyLoad) {
2885 // We don't need to serialize loads against other loads.
2886 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002887 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002888 Ops.push_back(getRoot());
2889 }
2890 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002891
2892 // Info is set by getTgtMemInstrinsic
2893 TargetLowering::IntrinsicInfo Info;
2894 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2895
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002896 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002897 if (!IsTgtIntrinsic)
2898 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002899
2900 // Add all operands of the call to the operand list.
2901 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2902 SDValue Op = getValue(I.getOperand(i));
2903 assert(TLI.isTypeLegal(Op.getValueType()) &&
2904 "Intrinsic uses a non-legal type?");
2905 Ops.push_back(Op);
2906 }
2907
Owen Andersone50ed302009-08-10 22:56:29 +00002908 SmallVector<EVT, 4> ValueVTs;
Bob Wilson8d919552009-07-31 22:41:21 +00002909 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2910#ifndef NDEBUG
2911 for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) {
2912 assert(TLI.isTypeLegal(ValueVTs[Val]) &&
2913 "Intrinsic uses a non-legal type?");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002914 }
Bob Wilson8d919552009-07-31 22:41:21 +00002915#endif // NDEBUG
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002916 if (HasChain)
Owen Anderson825b72b2009-08-11 20:47:22 +00002917 ValueVTs.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002918
Bob Wilson8d919552009-07-31 22:41:21 +00002919 SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002920
2921 // Create the node.
2922 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002923 if (IsTgtIntrinsic) {
2924 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002925 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002926 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002927 Info.memVT, Info.ptrVal, Info.offset,
2928 Info.align, Info.vol,
2929 Info.readMem, Info.writeMem);
2930 }
2931 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002932 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002933 VTs, &Ops[0], Ops.size());
Owen Anderson1d0be152009-08-13 21:58:54 +00002934 else if (I.getType() != Type::getVoidTy(*DAG.getContext()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002935 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002936 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002937 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002938 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002939 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002940
2941 if (HasChain) {
2942 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2943 if (OnlyLoad)
2944 PendingLoads.push_back(Chain);
2945 else
2946 DAG.setRoot(Chain);
2947 }
Owen Anderson1d0be152009-08-13 21:58:54 +00002948 if (I.getType() != Type::getVoidTy(*DAG.getContext())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002949 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Owen Andersone50ed302009-08-10 22:56:29 +00002950 EVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002951 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002952 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002953 setValue(&I, Result);
2954 }
2955}
2956
2957/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2958static GlobalVariable *ExtractTypeInfo(Value *V) {
2959 V = V->stripPointerCasts();
2960 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2961 assert ((GV || isa<ConstantPointerNull>(V)) &&
2962 "TypeInfo must be a global variable or NULL");
2963 return GV;
2964}
2965
2966namespace llvm {
2967
2968/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2969/// call, and add them to the specified machine basic block.
2970void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2971 MachineBasicBlock *MBB) {
2972 // Inform the MachineModuleInfo of the personality for this landing pad.
2973 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2974 assert(CE->getOpcode() == Instruction::BitCast &&
2975 isa<Function>(CE->getOperand(0)) &&
2976 "Personality should be a function");
2977 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2978
2979 // Gather all the type infos for this landing pad and pass them along to
2980 // MachineModuleInfo.
2981 std::vector<GlobalVariable *> TyInfo;
2982 unsigned N = I.getNumOperands();
2983
2984 for (unsigned i = N - 1; i > 2; --i) {
2985 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2986 unsigned FilterLength = CI->getZExtValue();
2987 unsigned FirstCatch = i + FilterLength + !FilterLength;
2988 assert (FirstCatch <= N && "Invalid filter length");
2989
2990 if (FirstCatch < N) {
2991 TyInfo.reserve(N - FirstCatch);
2992 for (unsigned j = FirstCatch; j < N; ++j)
2993 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2994 MMI->addCatchTypeInfo(MBB, TyInfo);
2995 TyInfo.clear();
2996 }
2997
2998 if (!FilterLength) {
2999 // Cleanup.
3000 MMI->addCleanup(MBB);
3001 } else {
3002 // Filter.
3003 TyInfo.reserve(FilterLength - 1);
3004 for (unsigned j = i + 1; j < FirstCatch; ++j)
3005 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3006 MMI->addFilterTypeInfo(MBB, TyInfo);
3007 TyInfo.clear();
3008 }
3009
3010 N = i;
3011 }
3012 }
3013
3014 if (N > 3) {
3015 TyInfo.reserve(N - 3);
3016 for (unsigned j = 3; j < N; ++j)
3017 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3018 MMI->addCatchTypeInfo(MBB, TyInfo);
3019 }
3020}
3021
3022}
3023
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003024/// GetSignificand - Get the significand and build it into a floating-point
3025/// number with exponent of 1:
3026///
3027/// Op = (Op & 0x007fffff) | 0x3f800000;
3028///
3029/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003030static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003031GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003032 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3033 DAG.getConstant(0x007fffff, MVT::i32));
3034 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
3035 DAG.getConstant(0x3f800000, MVT::i32));
3036 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003037}
3038
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003039/// GetExponent - Get the exponent:
3040///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003041/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003042///
3043/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003044static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003045GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3046 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003047 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3048 DAG.getConstant(0x7f800000, MVT::i32));
3049 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003050 DAG.getConstant(23, TLI.getPointerTy()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003051 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
3052 DAG.getConstant(127, MVT::i32));
3053 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003054}
3055
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003056/// getF32Constant - Get 32-bit floating point constant.
3057static SDValue
3058getF32Constant(SelectionDAG &DAG, unsigned Flt) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003059 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003060}
3061
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003062/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003063/// visitIntrinsicCall: I is a call instruction
3064/// Op is the associated NodeType for I
3065const char *
3066SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003067 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003068 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003069 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003070 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003071 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003072 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003073 getValue(I.getOperand(2)),
3074 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003075 setValue(&I, L);
3076 DAG.setRoot(L.getValue(1));
3077 return 0;
3078}
3079
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003080// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003081const char *
3082SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003083 SDValue Op1 = getValue(I.getOperand(1));
3084 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003085
Owen Anderson825b72b2009-08-11 20:47:22 +00003086 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
Dan Gohmanfc166572009-04-09 23:54:40 +00003087 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003088
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003089 setValue(&I, Result);
3090 return 0;
3091}
Bill Wendling74c37652008-12-09 22:08:41 +00003092
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003093/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3094/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003095void
3096SelectionDAGLowering::visitExp(CallInst &I) {
3097 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003098 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003099
Owen Anderson825b72b2009-08-11 20:47:22 +00003100 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003101 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3102 SDValue Op = getValue(I.getOperand(1));
3103
3104 // Put the exponent in the right bit position for later addition to the
3105 // final result:
3106 //
3107 // #define LOG2OFe 1.4426950f
3108 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Owen Anderson825b72b2009-08-11 20:47:22 +00003109 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003110 getF32Constant(DAG, 0x3fb8aa3b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003111 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003112
3113 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003114 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3115 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003116
3117 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003118 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003119 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003120
3121 if (LimitFloatPrecision <= 6) {
3122 // For floating-point precision of 6:
3123 //
3124 // TwoToFractionalPartOfX =
3125 // 0.997535578f +
3126 // (0.735607626f + 0.252464424f * x) * x;
3127 //
3128 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003129 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003130 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003131 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003132 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003133 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3134 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003135 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003136 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003137
3138 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003139 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003140 TwoToFracPartOfX, IntegerPartOfX);
3141
Owen Anderson825b72b2009-08-11 20:47:22 +00003142 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003143 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3144 // For floating-point precision of 12:
3145 //
3146 // TwoToFractionalPartOfX =
3147 // 0.999892986f +
3148 // (0.696457318f +
3149 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3150 //
3151 // 0.000107046256 error, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003152 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003153 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003154 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003155 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003156 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3157 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003158 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003159 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3160 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003161 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003162 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003163
3164 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003165 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003166 TwoToFracPartOfX, IntegerPartOfX);
3167
Owen Anderson825b72b2009-08-11 20:47:22 +00003168 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003169 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3170 // For floating-point precision of 18:
3171 //
3172 // TwoToFractionalPartOfX =
3173 // 0.999999982f +
3174 // (0.693148872f +
3175 // (0.240227044f +
3176 // (0.554906021e-1f +
3177 // (0.961591928e-2f +
3178 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3179 //
3180 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003181 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003182 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003183 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003184 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003185 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3186 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003187 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003188 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3189 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003190 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003191 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3192 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003193 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003194 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3195 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003196 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003197 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3198 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003199 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003200 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003201 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003202
3203 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003204 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003205 TwoToFracPartOfX, IntegerPartOfX);
3206
Owen Anderson825b72b2009-08-11 20:47:22 +00003207 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003208 }
3209 } else {
3210 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003211 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003212 getValue(I.getOperand(1)).getValueType(),
3213 getValue(I.getOperand(1)));
3214 }
3215
Dale Johannesen59e577f2008-09-05 18:38:42 +00003216 setValue(&I, result);
3217}
3218
Bill Wendling39150252008-09-09 20:39:27 +00003219/// visitLog - Lower a log intrinsic. Handles the special sequences for
3220/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003221void
3222SelectionDAGLowering::visitLog(CallInst &I) {
3223 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003224 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003225
Owen Anderson825b72b2009-08-11 20:47:22 +00003226 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling39150252008-09-09 20:39:27 +00003227 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3228 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003229 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003230
3231 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003232 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003233 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003234 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003235
3236 // Get the significand and build it into a floating-point number with
3237 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003238 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003239
3240 if (LimitFloatPrecision <= 6) {
3241 // For floating-point precision of 6:
3242 //
3243 // LogofMantissa =
3244 // -1.1609546f +
3245 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003246 //
Bill Wendling39150252008-09-09 20:39:27 +00003247 // error 0.0034276066, which is better than 8 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003248 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003249 getF32Constant(DAG, 0xbe74c456));
Owen Anderson825b72b2009-08-11 20:47:22 +00003250 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003251 getF32Constant(DAG, 0x3fb3a2b1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003252 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3253 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003254 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003255
Scott Michelfdc40a02009-02-17 22:15:04 +00003256 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003257 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003258 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3259 // For floating-point precision of 12:
3260 //
3261 // LogOfMantissa =
3262 // -1.7417939f +
3263 // (2.8212026f +
3264 // (-1.4699568f +
3265 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3266 //
3267 // error 0.000061011436, which is 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003268 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003269 getF32Constant(DAG, 0xbd67b6d6));
Owen Anderson825b72b2009-08-11 20:47:22 +00003270 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003271 getF32Constant(DAG, 0x3ee4f4b8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003272 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3273 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003274 getF32Constant(DAG, 0x3fbc278b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003275 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3276 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003277 getF32Constant(DAG, 0x40348e95));
Owen Anderson825b72b2009-08-11 20:47:22 +00003278 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3279 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003280 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003281
Scott Michelfdc40a02009-02-17 22:15:04 +00003282 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003283 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003284 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3285 // For floating-point precision of 18:
3286 //
3287 // LogOfMantissa =
3288 // -2.1072184f +
3289 // (4.2372794f +
3290 // (-3.7029485f +
3291 // (2.2781945f +
3292 // (-0.87823314f +
3293 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3294 //
3295 // error 0.0000023660568, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003296 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003297 getF32Constant(DAG, 0xbc91e5ac));
Owen Anderson825b72b2009-08-11 20:47:22 +00003298 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003299 getF32Constant(DAG, 0x3e4350aa));
Owen Anderson825b72b2009-08-11 20:47:22 +00003300 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3301 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003302 getF32Constant(DAG, 0x3f60d3e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003303 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3304 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003305 getF32Constant(DAG, 0x4011cdf0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003306 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3307 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003308 getF32Constant(DAG, 0x406cfd1c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003309 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3310 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003311 getF32Constant(DAG, 0x408797cb));
Owen Anderson825b72b2009-08-11 20:47:22 +00003312 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3313 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003314 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003315
Scott Michelfdc40a02009-02-17 22:15:04 +00003316 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003317 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003318 }
3319 } else {
3320 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003321 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003322 getValue(I.getOperand(1)).getValueType(),
3323 getValue(I.getOperand(1)));
3324 }
3325
Dale Johannesen59e577f2008-09-05 18:38:42 +00003326 setValue(&I, result);
3327}
3328
Bill Wendling3eb59402008-09-09 00:28:24 +00003329/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3330/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003331void
3332SelectionDAGLowering::visitLog2(CallInst &I) {
3333 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003334 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003335
Owen Anderson825b72b2009-08-11 20:47:22 +00003336 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003337 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3338 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003339 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003340
Bill Wendling39150252008-09-09 20:39:27 +00003341 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003342 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003343
3344 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003345 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003346 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003347
Bill Wendling3eb59402008-09-09 00:28:24 +00003348 // Different possible minimax approximations of significand in
3349 // floating-point for various degrees of accuracy over [1,2].
3350 if (LimitFloatPrecision <= 6) {
3351 // For floating-point precision of 6:
3352 //
3353 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3354 //
3355 // error 0.0049451742, which is more than 7 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003356 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003357 getF32Constant(DAG, 0xbeb08fe0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003358 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003359 getF32Constant(DAG, 0x40019463));
Owen Anderson825b72b2009-08-11 20:47:22 +00003360 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3361 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003362 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003363
Scott Michelfdc40a02009-02-17 22:15:04 +00003364 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003365 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003366 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3367 // For floating-point precision of 12:
3368 //
3369 // Log2ofMantissa =
3370 // -2.51285454f +
3371 // (4.07009056f +
3372 // (-2.12067489f +
3373 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003374 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003375 // error 0.0000876136000, which is better than 13 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003376 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003377 getF32Constant(DAG, 0xbda7262e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003378 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003379 getF32Constant(DAG, 0x3f25280b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003380 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3381 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003382 getF32Constant(DAG, 0x4007b923));
Owen Anderson825b72b2009-08-11 20:47:22 +00003383 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3384 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003385 getF32Constant(DAG, 0x40823e2f));
Owen Anderson825b72b2009-08-11 20:47:22 +00003386 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3387 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003388 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003389
Scott Michelfdc40a02009-02-17 22:15:04 +00003390 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003391 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003392 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3393 // For floating-point precision of 18:
3394 //
3395 // Log2ofMantissa =
3396 // -3.0400495f +
3397 // (6.1129976f +
3398 // (-5.3420409f +
3399 // (3.2865683f +
3400 // (-1.2669343f +
3401 // (0.27515199f -
3402 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3403 //
3404 // error 0.0000018516, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003405 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003406 getF32Constant(DAG, 0xbcd2769e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003407 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003408 getF32Constant(DAG, 0x3e8ce0b9));
Owen Anderson825b72b2009-08-11 20:47:22 +00003409 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3410 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003411 getF32Constant(DAG, 0x3fa22ae7));
Owen Anderson825b72b2009-08-11 20:47:22 +00003412 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3413 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003414 getF32Constant(DAG, 0x40525723));
Owen Anderson825b72b2009-08-11 20:47:22 +00003415 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3416 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003417 getF32Constant(DAG, 0x40aaf200));
Owen Anderson825b72b2009-08-11 20:47:22 +00003418 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3419 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003420 getF32Constant(DAG, 0x40c39dad));
Owen Anderson825b72b2009-08-11 20:47:22 +00003421 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3422 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003423 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003424
Scott Michelfdc40a02009-02-17 22:15:04 +00003425 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003426 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003427 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003428 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003429 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003430 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003431 getValue(I.getOperand(1)).getValueType(),
3432 getValue(I.getOperand(1)));
3433 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003434
Dale Johannesen59e577f2008-09-05 18:38:42 +00003435 setValue(&I, result);
3436}
3437
Bill Wendling3eb59402008-09-09 00:28:24 +00003438/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3439/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003440void
3441SelectionDAGLowering::visitLog10(CallInst &I) {
3442 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003443 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003444
Owen Anderson825b72b2009-08-11 20:47:22 +00003445 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003446 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3447 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003448 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003449
Bill Wendling39150252008-09-09 20:39:27 +00003450 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003451 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003452 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003453 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003454
3455 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003456 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003457 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003458
3459 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003460 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003461 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003462 // Log10ofMantissa =
3463 // -0.50419619f +
3464 // (0.60948995f - 0.10380950f * x) * x;
3465 //
3466 // error 0.0014886165, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003467 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003468 getF32Constant(DAG, 0xbdd49a13));
Owen Anderson825b72b2009-08-11 20:47:22 +00003469 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003470 getF32Constant(DAG, 0x3f1c0789));
Owen Anderson825b72b2009-08-11 20:47:22 +00003471 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3472 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003473 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003474
Scott Michelfdc40a02009-02-17 22:15:04 +00003475 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003476 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003477 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3478 // For floating-point precision of 12:
3479 //
3480 // Log10ofMantissa =
3481 // -0.64831180f +
3482 // (0.91751397f +
3483 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3484 //
3485 // error 0.00019228036, which is better than 12 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003486 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003487 getF32Constant(DAG, 0x3d431f31));
Owen Anderson825b72b2009-08-11 20:47:22 +00003488 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003489 getF32Constant(DAG, 0x3ea21fb2));
Owen Anderson825b72b2009-08-11 20:47:22 +00003490 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3491 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003492 getF32Constant(DAG, 0x3f6ae232));
Owen Anderson825b72b2009-08-11 20:47:22 +00003493 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3494 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003495 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003496
Scott Michelfdc40a02009-02-17 22:15:04 +00003497 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003498 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003499 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003500 // For floating-point precision of 18:
3501 //
3502 // Log10ofMantissa =
3503 // -0.84299375f +
3504 // (1.5327582f +
3505 // (-1.0688956f +
3506 // (0.49102474f +
3507 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3508 //
3509 // error 0.0000037995730, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003510 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003511 getF32Constant(DAG, 0x3c5d51ce));
Owen Anderson825b72b2009-08-11 20:47:22 +00003512 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003513 getF32Constant(DAG, 0x3e00685a));
Owen Anderson825b72b2009-08-11 20:47:22 +00003514 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3515 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003516 getF32Constant(DAG, 0x3efb6798));
Owen Anderson825b72b2009-08-11 20:47:22 +00003517 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3518 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003519 getF32Constant(DAG, 0x3f88d192));
Owen Anderson825b72b2009-08-11 20:47:22 +00003520 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3521 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003522 getF32Constant(DAG, 0x3fc4316c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003523 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3524 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003525 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003526
Scott Michelfdc40a02009-02-17 22:15:04 +00003527 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003528 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003529 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003530 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003531 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003532 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003533 getValue(I.getOperand(1)).getValueType(),
3534 getValue(I.getOperand(1)));
3535 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003536
Dale Johannesen59e577f2008-09-05 18:38:42 +00003537 setValue(&I, result);
3538}
3539
Bill Wendlinge10c8142008-09-09 22:39:21 +00003540/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3541/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003542void
3543SelectionDAGLowering::visitExp2(CallInst &I) {
3544 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003545 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003546
Owen Anderson825b72b2009-08-11 20:47:22 +00003547 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003548 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3549 SDValue Op = getValue(I.getOperand(1));
3550
Owen Anderson825b72b2009-08-11 20:47:22 +00003551 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003552
3553 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003554 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3555 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003556
3557 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003558 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003559 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003560
3561 if (LimitFloatPrecision <= 6) {
3562 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003563 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003564 // TwoToFractionalPartOfX =
3565 // 0.997535578f +
3566 // (0.735607626f + 0.252464424f * x) * x;
3567 //
3568 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003569 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003570 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003571 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003572 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003573 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3574 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003575 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003576 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003577 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003578 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003579
Scott Michelfdc40a02009-02-17 22:15:04 +00003580 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003581 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003582 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3583 // For floating-point precision of 12:
3584 //
3585 // TwoToFractionalPartOfX =
3586 // 0.999892986f +
3587 // (0.696457318f +
3588 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3589 //
3590 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003591 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003592 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003593 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003594 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003595 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3596 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003597 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003598 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3599 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003600 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003601 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003602 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003603 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003604
Scott Michelfdc40a02009-02-17 22:15:04 +00003605 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003606 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003607 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3608 // For floating-point precision of 18:
3609 //
3610 // TwoToFractionalPartOfX =
3611 // 0.999999982f +
3612 // (0.693148872f +
3613 // (0.240227044f +
3614 // (0.554906021e-1f +
3615 // (0.961591928e-2f +
3616 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3617 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003618 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003619 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003620 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003621 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003622 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3623 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003624 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003625 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3626 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003627 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003628 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3629 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003630 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003631 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3632 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003633 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003634 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3635 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003636 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003637 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003638 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003639 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003640
Scott Michelfdc40a02009-02-17 22:15:04 +00003641 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003642 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003643 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003644 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003645 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003646 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003647 getValue(I.getOperand(1)).getValueType(),
3648 getValue(I.getOperand(1)));
3649 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003650
Dale Johannesen601d3c02008-09-05 01:48:15 +00003651 setValue(&I, result);
3652}
3653
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003654/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3655/// limited-precision mode with x == 10.0f.
3656void
3657SelectionDAGLowering::visitPow(CallInst &I) {
3658 SDValue result;
3659 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003660 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003661 bool IsExp10 = false;
3662
Owen Anderson825b72b2009-08-11 20:47:22 +00003663 if (getValue(Val).getValueType() == MVT::f32 &&
3664 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003665 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3666 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3667 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3668 APFloat Ten(10.0f);
3669 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3670 }
3671 }
3672 }
3673
3674 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3675 SDValue Op = getValue(I.getOperand(2));
3676
3677 // Put the exponent in the right bit position for later addition to the
3678 // final result:
3679 //
3680 // #define LOG2OF10 3.3219281f
3681 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Owen Anderson825b72b2009-08-11 20:47:22 +00003682 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003683 getF32Constant(DAG, 0x40549a78));
Owen Anderson825b72b2009-08-11 20:47:22 +00003684 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003685
3686 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003687 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3688 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003689
3690 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003691 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003692 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003693
3694 if (LimitFloatPrecision <= 6) {
3695 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003696 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003697 // twoToFractionalPartOfX =
3698 // 0.997535578f +
3699 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003700 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003701 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003702 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003703 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003704 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003705 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003706 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3707 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003708 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003709 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003710 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003711 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003712
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003713 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003714 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003715 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3716 // For floating-point precision of 12:
3717 //
3718 // TwoToFractionalPartOfX =
3719 // 0.999892986f +
3720 // (0.696457318f +
3721 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3722 //
3723 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003724 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003725 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003726 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003727 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003728 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3729 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003730 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003731 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3732 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003733 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003734 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003735 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003736 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003737
Scott Michelfdc40a02009-02-17 22:15:04 +00003738 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003739 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003740 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3741 // For floating-point precision of 18:
3742 //
3743 // TwoToFractionalPartOfX =
3744 // 0.999999982f +
3745 // (0.693148872f +
3746 // (0.240227044f +
3747 // (0.554906021e-1f +
3748 // (0.961591928e-2f +
3749 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3750 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003751 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003752 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003753 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003754 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003755 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3756 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003757 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003758 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3759 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003760 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003761 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3762 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003763 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003764 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3765 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003766 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003767 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3768 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003769 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003770 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003771 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003772 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003773
Scott Michelfdc40a02009-02-17 22:15:04 +00003774 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003775 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003776 }
3777 } else {
3778 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003779 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003780 getValue(I.getOperand(1)).getValueType(),
3781 getValue(I.getOperand(1)),
3782 getValue(I.getOperand(2)));
3783 }
3784
3785 setValue(&I, result);
3786}
3787
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003788/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3789/// we want to emit this as a call to a named external function, return the name
3790/// otherwise lower it and return null.
3791const char *
3792SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003793 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003794 switch (Intrinsic) {
3795 default:
3796 // By default, turn this into a target intrinsic node.
3797 visitTargetIntrinsic(I, Intrinsic);
3798 return 0;
3799 case Intrinsic::vastart: visitVAStart(I); return 0;
3800 case Intrinsic::vaend: visitVAEnd(I); return 0;
3801 case Intrinsic::vacopy: visitVACopy(I); return 0;
3802 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003803 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003804 getValue(I.getOperand(1))));
3805 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003806 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003807 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003808 getValue(I.getOperand(1))));
3809 return 0;
3810 case Intrinsic::setjmp:
3811 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3812 break;
3813 case Intrinsic::longjmp:
3814 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3815 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003816 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003817 SDValue Op1 = getValue(I.getOperand(1));
3818 SDValue Op2 = getValue(I.getOperand(2));
3819 SDValue Op3 = getValue(I.getOperand(3));
3820 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003821 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003822 I.getOperand(1), 0, I.getOperand(2), 0));
3823 return 0;
3824 }
Chris Lattner824b9582008-11-21 16:42:48 +00003825 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003826 SDValue Op1 = getValue(I.getOperand(1));
3827 SDValue Op2 = getValue(I.getOperand(2));
3828 SDValue Op3 = getValue(I.getOperand(3));
3829 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003830 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003831 I.getOperand(1), 0));
3832 return 0;
3833 }
Chris Lattner824b9582008-11-21 16:42:48 +00003834 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003835 SDValue Op1 = getValue(I.getOperand(1));
3836 SDValue Op2 = getValue(I.getOperand(2));
3837 SDValue Op3 = getValue(I.getOperand(3));
3838 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3839
3840 // If the source and destination are known to not be aliases, we can
3841 // lower memmove as memcpy.
3842 uint64_t Size = -1ULL;
3843 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003844 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003845 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3846 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003847 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003848 I.getOperand(1), 0, I.getOperand(2), 0));
3849 return 0;
3850 }
3851
Dale Johannesena04b7572009-02-03 23:04:43 +00003852 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003853 I.getOperand(1), 0, I.getOperand(2), 0));
3854 return 0;
3855 }
3856 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003857 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003858 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003859 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003860 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003861 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003862
Bill Wendling98a366d2009-04-29 23:29:43 +00003863 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003864 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003865 SPI.getLine(),
3866 SPI.getColumn(),
3867 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003868 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003869 return 0;
3870 }
3871 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003872 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003873 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003874 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3875 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003876 unsigned LabelID =
Devang Patele4b27562009-08-28 23:24:31 +00003877 DW->RecordRegionStart(RSI.getContext());
Devang Patel48c7fa22009-04-13 18:13:16 +00003878 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3879 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003880 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003881 return 0;
3882 }
3883 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003884 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003885 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003886
Devang Patel7e1e31f2009-07-02 22:43:26 +00003887 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3888 || !DW->ShouldEmitDwarfDebug())
3889 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003890
Devang Patel7e1e31f2009-07-02 22:43:26 +00003891 MachineFunction &MF = DAG.getMachineFunction();
Devang Patele4b27562009-08-28 23:24:31 +00003892 DISubprogram Subprogram(REI.getContext());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003893
3894 if (isInlinedFnEnd(REI, MF.getFunction())) {
3895 // This is end of inlined function. Debugging information for inlined
3896 // function is not handled yet (only supported by FastISel).
3897 if (OptLevel == CodeGenOpt::None) {
3898 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3899 if (ID != 0)
3900 // Returned ID is 0 if this is unbalanced "end of inlined
3901 // scope". This could happen if optimizer eats dbg intrinsics or
3902 // "beginning of inlined scope" is not recoginized due to missing
3903 // location info. In such cases, do ignore this region.end.
3904 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3905 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003906 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003907 return 0;
3908 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003909
Devang Patel7e1e31f2009-07-02 22:43:26 +00003910 unsigned LabelID =
Devang Patele4b27562009-08-28 23:24:31 +00003911 DW->RecordRegionEnd(REI.getContext());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003912 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3913 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003914 return 0;
3915 }
3916 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003917 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003918 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003919 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None))
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003920 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003921
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003922 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003923 // This is a beginning of an inlined function.
3924 if (isInlinedFnStart(FSI, MF.getFunction())) {
3925 if (OptLevel != CodeGenOpt::None)
3926 // FIXME: Debugging informaation for inlined function is only
3927 // supported at CodeGenOpt::Node.
3928 return 0;
3929
Bill Wendlingc677fe52009-05-10 00:10:50 +00003930 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003931 // If llvm.dbg.func.start is seen in a new block before any
3932 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3933 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3934 if (PrevLoc.isUnknown())
3935 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003936
Devang Patel7e1e31f2009-07-02 22:43:26 +00003937 // Record the source line.
3938 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3939
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003940 if (!DW || !DW->ShouldEmitDwarfDebug())
3941 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003942 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
Devang Patele4b27562009-08-28 23:24:31 +00003943 DISubprogram SP(FSI.getSubprogram());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003944 DICompileUnit CU(PrevLocTpl.CompileUnit);
3945 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3946 PrevLocTpl.Line,
3947 PrevLocTpl.Col);
3948 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3949 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003950 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003951 }
3952
Devang Patel07b0ec02009-07-02 00:08:09 +00003953 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003954 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003955
3956 if (!DW || !DW->ShouldEmitDwarfDebug())
3957 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003958 // llvm.dbg.func_start also defines beginning of function scope.
Devang Patele4b27562009-08-28 23:24:31 +00003959 DW->RecordRegionStart(FSI.getSubprogram());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003960 return 0;
3961 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003962 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003963 if (OptLevel != CodeGenOpt::None)
3964 // FIXME: Variable debug info is not supported here.
3965 return 0;
Devang Patel24f20e02009-08-22 17:12:53 +00003966 DwarfWriter *DW = DAG.getDwarfWriter();
3967 if (!DW)
3968 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003969 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3970 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3971 return 0;
3972
3973 Value *Variable = DI.getVariable();
Devang Patel24f20e02009-08-22 17:12:53 +00003974 Value *Address = DI.getAddress();
3975 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
3976 Address = BCI->getOperand(0);
3977 AllocaInst *AI = dyn_cast<AllocaInst>(Address);
3978 // Don't handle byval struct arguments or VLAs, for example.
3979 if (!AI)
3980 return 0;
Devang Patelbd1d6a82009-09-05 00:34:14 +00003981 DenseMap<const AllocaInst*, int>::iterator SI =
3982 FuncInfo.StaticAllocaMap.find(AI);
3983 if (SI == FuncInfo.StaticAllocaMap.end())
3984 return 0; // VLAs.
3985 int FI = SI->second;
Devang Patele4b27562009-08-28 23:24:31 +00003986 DW->RecordVariable(cast<MDNode>(Variable), FI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003987 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003988 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003989 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003990 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003991 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Owen Anderson825b72b2009-08-11 20:47:22 +00003992 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003993 SDValue Ops[1];
3994 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003995 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003996 setValue(&I, Op);
3997 DAG.setRoot(Op.getValue(1));
3998 return 0;
3999 }
4000
4001 case Intrinsic::eh_selector_i32:
4002 case Intrinsic::eh_selector_i64: {
4003 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004004
Chris Lattner3a5815f2009-09-17 23:54:54 +00004005 if (CurMBB->isLandingPad())
4006 AddCatchInfo(I, MMI, CurMBB);
4007 else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004008#ifndef NDEBUG
Chris Lattner3a5815f2009-09-17 23:54:54 +00004009 FuncInfo.CatchInfoLost.insert(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004010#endif
Chris Lattner3a5815f2009-09-17 23:54:54 +00004011 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4012 unsigned Reg = TLI.getExceptionSelectorRegister();
4013 if (Reg) CurMBB->addLiveIn(Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004014 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004015
Chris Lattner3a5815f2009-09-17 23:54:54 +00004016 // Insert the EHSELECTION instruction.
4017 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
4018 SDValue Ops[2];
4019 Ops[0] = getValue(I.getOperand(1));
4020 Ops[1] = getRoot();
4021 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
4022
4023 DAG.setRoot(Op.getValue(1));
4024
4025 MVT::SimpleValueType VT =
4026 (Intrinsic == Intrinsic::eh_selector_i32 ? MVT::i32 : MVT::i64);
4027 if (Op.getValueType().getSimpleVT() < VT)
Chris Lattner6ba2e872009-09-18 18:34:29 +00004028 Op = DAG.getNode(ISD::SIGN_EXTEND, dl, VT, Op);
Chris Lattner3a5815f2009-09-17 23:54:54 +00004029 else if (Op.getValueType().getSimpleVT() < VT)
4030 Op = DAG.getNode(ISD::TRUNCATE, dl, VT, Op);
4031
4032 setValue(&I, Op);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004033 return 0;
4034 }
4035
4036 case Intrinsic::eh_typeid_for_i32:
4037 case Intrinsic::eh_typeid_for_i64: {
4038 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004039 EVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
Owen Anderson825b72b2009-08-11 20:47:22 +00004040 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004041
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004042 if (MMI) {
4043 // Find the type id for the given typeinfo.
4044 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4045
4046 unsigned TypeID = MMI->getTypeIDFor(GV);
4047 setValue(&I, DAG.getConstant(TypeID, VT));
4048 } else {
4049 // Return something different to eh_selector.
4050 setValue(&I, DAG.getConstant(1, VT));
4051 }
4052
4053 return 0;
4054 }
4055
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004056 case Intrinsic::eh_return_i32:
4057 case Intrinsic::eh_return_i64:
4058 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004059 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004060 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004061 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004062 getControlRoot(),
4063 getValue(I.getOperand(1)),
4064 getValue(I.getOperand(2))));
4065 } else {
4066 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4067 }
4068
4069 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004070 case Intrinsic::eh_unwind_init:
4071 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4072 MMI->setCallsUnwindInit(true);
4073 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004074
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004075 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004076
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004077 case Intrinsic::eh_dwarf_cfa: {
Owen Andersone50ed302009-08-10 22:56:29 +00004078 EVT VT = getValue(I.getOperand(1)).getValueType();
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004079 SDValue CfaArg;
4080 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004081 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004082 TLI.getPointerTy(), getValue(I.getOperand(1)));
4083 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004084 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004085 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004086
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004087 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004088 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004089 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004090 TLI.getPointerTy()),
4091 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004092 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004093 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004094 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004095 TLI.getPointerTy(),
4096 DAG.getConstant(0,
4097 TLI.getPointerTy())),
4098 Offset));
4099 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004100 }
Mon P Wang77cdf302008-11-10 20:54:11 +00004101 case Intrinsic::convertff:
4102 case Intrinsic::convertfsi:
4103 case Intrinsic::convertfui:
4104 case Intrinsic::convertsif:
4105 case Intrinsic::convertuif:
4106 case Intrinsic::convertss:
4107 case Intrinsic::convertsu:
4108 case Intrinsic::convertus:
4109 case Intrinsic::convertuu: {
4110 ISD::CvtCode Code = ISD::CVT_INVALID;
4111 switch (Intrinsic) {
4112 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4113 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4114 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4115 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4116 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4117 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4118 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4119 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4120 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4121 }
Owen Andersone50ed302009-08-10 22:56:29 +00004122 EVT DestVT = TLI.getValueType(I.getType());
Mon P Wang77cdf302008-11-10 20:54:11 +00004123 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004124 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004125 DAG.getValueType(DestVT),
4126 DAG.getValueType(getValue(Op1).getValueType()),
4127 getValue(I.getOperand(2)),
4128 getValue(I.getOperand(3)),
4129 Code));
4130 return 0;
4131 }
4132
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004133 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004134 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004135 getValue(I.getOperand(1)).getValueType(),
4136 getValue(I.getOperand(1))));
4137 return 0;
4138 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004139 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004140 getValue(I.getOperand(1)).getValueType(),
4141 getValue(I.getOperand(1)),
4142 getValue(I.getOperand(2))));
4143 return 0;
4144 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004145 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004146 getValue(I.getOperand(1)).getValueType(),
4147 getValue(I.getOperand(1))));
4148 return 0;
4149 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004150 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004151 getValue(I.getOperand(1)).getValueType(),
4152 getValue(I.getOperand(1))));
4153 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004154 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004155 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004156 return 0;
4157 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004158 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004159 return 0;
4160 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004161 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004162 return 0;
4163 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004164 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004165 return 0;
4166 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004167 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004168 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004169 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004170 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004171 return 0;
4172 case Intrinsic::pcmarker: {
4173 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004174 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004175 return 0;
4176 }
4177 case Intrinsic::readcyclecounter: {
4178 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004179 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004180 DAG.getVTList(MVT::i64, MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004181 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004182 setValue(&I, Tmp);
4183 DAG.setRoot(Tmp.getValue(1));
4184 return 0;
4185 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004186 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004187 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004188 getValue(I.getOperand(1)).getValueType(),
4189 getValue(I.getOperand(1))));
4190 return 0;
4191 case Intrinsic::cttz: {
4192 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004193 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004194 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004195 setValue(&I, result);
4196 return 0;
4197 }
4198 case Intrinsic::ctlz: {
4199 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004200 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004201 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004202 setValue(&I, result);
4203 return 0;
4204 }
4205 case Intrinsic::ctpop: {
4206 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004207 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004208 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004209 setValue(&I, result);
4210 return 0;
4211 }
4212 case Intrinsic::stacksave: {
4213 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004214 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004215 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004216 setValue(&I, Tmp);
4217 DAG.setRoot(Tmp.getValue(1));
4218 return 0;
4219 }
4220 case Intrinsic::stackrestore: {
4221 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004222 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004223 return 0;
4224 }
Bill Wendling57344502008-11-18 11:01:33 +00004225 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004226 // Emit code into the DAG to store the stack guard onto the stack.
4227 MachineFunction &MF = DAG.getMachineFunction();
4228 MachineFrameInfo *MFI = MF.getFrameInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004229 EVT PtrTy = TLI.getPointerTy();
Bill Wendlingb2a42982008-11-06 02:29:10 +00004230
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004231 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4232 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004233
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004234 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004235 MFI->setStackProtectorIndex(FI);
4236
4237 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4238
4239 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004240 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004241 PseudoSourceValue::getFixedStack(FI),
4242 0, true);
4243 setValue(&I, Result);
4244 DAG.setRoot(Result);
4245 return 0;
4246 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004247 case Intrinsic::var_annotation:
4248 // Discard annotate attributes
4249 return 0;
4250
4251 case Intrinsic::init_trampoline: {
4252 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4253
4254 SDValue Ops[6];
4255 Ops[0] = getRoot();
4256 Ops[1] = getValue(I.getOperand(1));
4257 Ops[2] = getValue(I.getOperand(2));
4258 Ops[3] = getValue(I.getOperand(3));
4259 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4260 Ops[5] = DAG.getSrcValue(F);
4261
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004262 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004263 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004264 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004265
4266 setValue(&I, Tmp);
4267 DAG.setRoot(Tmp.getValue(1));
4268 return 0;
4269 }
4270
4271 case Intrinsic::gcroot:
4272 if (GFI) {
4273 Value *Alloca = I.getOperand(1);
4274 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004275
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004276 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4277 GFI->addStackRoot(FI->getIndex(), TypeMap);
4278 }
4279 return 0;
4280
4281 case Intrinsic::gcread:
4282 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004283 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004284 return 0;
4285
4286 case Intrinsic::flt_rounds: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004287 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004288 return 0;
4289 }
4290
4291 case Intrinsic::trap: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004292 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004293 return 0;
4294 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004295
Bill Wendlingef375462008-11-21 02:38:44 +00004296 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004297 return implVisitAluOverflow(I, ISD::UADDO);
4298 case Intrinsic::sadd_with_overflow:
4299 return implVisitAluOverflow(I, ISD::SADDO);
4300 case Intrinsic::usub_with_overflow:
4301 return implVisitAluOverflow(I, ISD::USUBO);
4302 case Intrinsic::ssub_with_overflow:
4303 return implVisitAluOverflow(I, ISD::SSUBO);
4304 case Intrinsic::umul_with_overflow:
4305 return implVisitAluOverflow(I, ISD::UMULO);
4306 case Intrinsic::smul_with_overflow:
4307 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004308
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004309 case Intrinsic::prefetch: {
4310 SDValue Ops[4];
4311 Ops[0] = getRoot();
4312 Ops[1] = getValue(I.getOperand(1));
4313 Ops[2] = getValue(I.getOperand(2));
4314 Ops[3] = getValue(I.getOperand(3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004315 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004316 return 0;
4317 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004318
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004319 case Intrinsic::memory_barrier: {
4320 SDValue Ops[6];
4321 Ops[0] = getRoot();
4322 for (int x = 1; x < 6; ++x)
4323 Ops[x] = getValue(I.getOperand(x));
4324
Owen Anderson825b72b2009-08-11 20:47:22 +00004325 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004326 return 0;
4327 }
4328 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004329 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004330 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004331 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004332 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4333 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004334 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004335 getValue(I.getOperand(2)),
4336 getValue(I.getOperand(3)),
4337 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 setValue(&I, L);
4339 DAG.setRoot(L.getValue(1));
4340 return 0;
4341 }
4342 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004343 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004344 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004345 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004346 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004348 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004349 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004350 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004351 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004352 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004353 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004354 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004355 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004356 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004357 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004358 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004359 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004360 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004361 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004362 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004363 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004364 }
4365}
4366
Dan Gohman98ca4f22009-08-05 01:29:28 +00004367/// Test if the given instruction is in a position to be optimized
4368/// with a tail-call. This roughly means that it's in a block with
4369/// a return and there's nothing that needs to be scheduled
4370/// between it and the return.
4371///
4372/// This function only tests target-independent requirements.
4373/// For target-dependent requirements, a target should override
4374/// TargetLowering::IsEligibleForTailCallOptimization.
4375///
4376static bool
4377isInTailCallPosition(const Instruction *I, Attributes RetAttr,
4378 const TargetLowering &TLI) {
4379 const BasicBlock *ExitBB = I->getParent();
4380 const TerminatorInst *Term = ExitBB->getTerminator();
4381 const ReturnInst *Ret = dyn_cast<ReturnInst>(Term);
4382 const Function *F = ExitBB->getParent();
4383
4384 // The block must end in a return statement or an unreachable.
4385 if (!Ret && !isa<UnreachableInst>(Term)) return false;
4386
4387 // If I will have a chain, make sure no other instruction that will have a
4388 // chain interposes between I and the return.
4389 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
4390 !I->isSafeToSpeculativelyExecute())
4391 for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ;
4392 --BBI) {
4393 if (&*BBI == I)
4394 break;
4395 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
4396 !BBI->isSafeToSpeculativelyExecute())
4397 return false;
4398 }
4399
4400 // If the block ends with a void return or unreachable, it doesn't matter
4401 // what the call's return type is.
4402 if (!Ret || Ret->getNumOperands() == 0) return true;
4403
4404 // Conservatively require the attributes of the call to match those of
4405 // the return.
4406 if (F->getAttributes().getRetAttributes() != RetAttr)
4407 return false;
4408
4409 // Otherwise, make sure the unmodified return value of I is the return value.
4410 for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ;
4411 U = dyn_cast<Instruction>(U->getOperand(0))) {
4412 if (!U)
4413 return false;
4414 if (!U->hasOneUse())
4415 return false;
4416 if (U == I)
4417 break;
4418 // Check for a truly no-op truncate.
4419 if (isa<TruncInst>(U) &&
4420 TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType()))
4421 continue;
4422 // Check for a truly no-op bitcast.
4423 if (isa<BitCastInst>(U) &&
4424 (U->getOperand(0)->getType() == U->getType() ||
4425 (isa<PointerType>(U->getOperand(0)->getType()) &&
4426 isa<PointerType>(U->getType()))))
4427 continue;
4428 // Otherwise it's not a true no-op.
4429 return false;
4430 }
4431
4432 return true;
4433}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004434
4435void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004436 bool isTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004437 MachineBasicBlock *LandingPad) {
4438 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4439 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4440 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4441 unsigned BeginLabel = 0, EndLabel = 0;
4442
4443 TargetLowering::ArgListTy Args;
4444 TargetLowering::ArgListEntry Entry;
4445 Args.reserve(CS.arg_size());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004446 unsigned j = 1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004447 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Dan Gohman98ca4f22009-08-05 01:29:28 +00004448 i != e; ++i, ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004449 SDValue ArgNode = getValue(*i);
4450 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4451
4452 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004453 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4454 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4455 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4456 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4457 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4458 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004459 Entry.Alignment = CS.getParamAlignment(attrInd);
4460 Args.push_back(Entry);
4461 }
4462
4463 if (LandingPad && MMI) {
4464 // Insert a label before the invoke call to mark the try range. This can be
4465 // used to detect deletion of the invoke via the MachineModuleInfo.
4466 BeginLabel = MMI->NextLabelID();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00004467
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004468 // Both PendingLoads and PendingExports must be flushed here;
4469 // this call might not return.
4470 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004471 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4472 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004473 }
4474
Dan Gohman98ca4f22009-08-05 01:29:28 +00004475 // Check if target-independent constraints permit a tail call here.
4476 // Target-dependent constraints are checked within TLI.LowerCallTo.
4477 if (isTailCall &&
4478 !isInTailCallPosition(CS.getInstruction(),
4479 CS.getAttributes().getRetAttributes(),
4480 TLI))
4481 isTailCall = false;
4482
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004483 std::pair<SDValue,SDValue> Result =
4484 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004485 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004486 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004487 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004488 CS.getCallingConv(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00004489 isTailCall,
4490 !CS.getInstruction()->use_empty(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004491 Callee, Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004492 assert((isTailCall || Result.second.getNode()) &&
4493 "Non-null chain expected with non-tail call!");
4494 assert((Result.second.getNode() || !Result.first.getNode()) &&
4495 "Null value expected with tail call!");
4496 if (Result.first.getNode())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004497 setValue(CS.getInstruction(), Result.first);
Dan Gohman98ca4f22009-08-05 01:29:28 +00004498 // As a special case, a null chain means that a tail call has
4499 // been emitted and the DAG root is already updated.
4500 if (Result.second.getNode())
4501 DAG.setRoot(Result.second);
4502 else
4503 HasTailCall = true;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004504
4505 if (LandingPad && MMI) {
4506 // Insert a label at the end of the invoke call to mark the try range. This
4507 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4508 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004509 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4510 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004511
4512 // Inform MachineModuleInfo of range.
4513 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4514 }
4515}
4516
4517
4518void SelectionDAGLowering::visitCall(CallInst &I) {
4519 const char *RenameFn = 0;
4520 if (Function *F = I.getCalledFunction()) {
4521 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004522 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4523 if (II) {
4524 if (unsigned IID = II->getIntrinsicID(F)) {
4525 RenameFn = visitIntrinsicCall(I, IID);
4526 if (!RenameFn)
4527 return;
4528 }
4529 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004530 if (unsigned IID = F->getIntrinsicID()) {
4531 RenameFn = visitIntrinsicCall(I, IID);
4532 if (!RenameFn)
4533 return;
4534 }
4535 }
4536
4537 // Check for well-known libc/libm calls. If the function is internal, it
4538 // can't be a library call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004539 if (!F->hasLocalLinkage() && F->hasName()) {
4540 StringRef Name = F->getName();
4541 if (Name == "copysign" || Name == "copysignf") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004542 if (I.getNumOperands() == 3 && // Basic sanity checks.
4543 I.getOperand(1)->getType()->isFloatingPoint() &&
4544 I.getType() == I.getOperand(1)->getType() &&
4545 I.getType() == I.getOperand(2)->getType()) {
4546 SDValue LHS = getValue(I.getOperand(1));
4547 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004548 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004549 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004550 return;
4551 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004552 } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004553 if (I.getNumOperands() == 2 && // Basic sanity checks.
4554 I.getOperand(1)->getType()->isFloatingPoint() &&
4555 I.getType() == I.getOperand(1)->getType()) {
4556 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004557 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004558 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004559 return;
4560 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004561 } else if (Name == "sin" || Name == "sinf" || Name == "sinl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004562 if (I.getNumOperands() == 2 && // Basic sanity checks.
4563 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00004564 I.getType() == I.getOperand(1)->getType() &&
4565 I.onlyReadsMemory()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004566 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004567 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004568 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004569 return;
4570 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004571 } else if (Name == "cos" || Name == "cosf" || Name == "cosl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004572 if (I.getNumOperands() == 2 && // Basic sanity checks.
4573 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00004574 I.getType() == I.getOperand(1)->getType() &&
4575 I.onlyReadsMemory()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004576 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004577 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004578 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004579 return;
4580 }
Dale Johannesen52fb79b2009-09-25 17:23:22 +00004581 } else if (Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl") {
4582 if (I.getNumOperands() == 2 && // Basic sanity checks.
4583 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00004584 I.getType() == I.getOperand(1)->getType() &&
4585 I.onlyReadsMemory()) {
Dale Johannesen52fb79b2009-09-25 17:23:22 +00004586 SDValue Tmp = getValue(I.getOperand(1));
4587 setValue(&I, DAG.getNode(ISD::FSQRT, getCurDebugLoc(),
4588 Tmp.getValueType(), Tmp));
4589 return;
4590 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004591 }
4592 }
4593 } else if (isa<InlineAsm>(I.getOperand(0))) {
4594 visitInlineAsm(&I);
4595 return;
4596 }
4597
4598 SDValue Callee;
4599 if (!RenameFn)
4600 Callee = getValue(I.getOperand(0));
4601 else
Bill Wendling056292f2008-09-16 21:48:12 +00004602 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004603
Dan Gohman98ca4f22009-08-05 01:29:28 +00004604 // Check if we can potentially perform a tail call. More detailed
4605 // checking is be done within LowerCallTo, after more information
4606 // about the call is known.
4607 bool isTailCall = PerformTailCallOpt && I.isTailCall();
4608
4609 LowerCallTo(&I, Callee, isTailCall);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004610}
4611
4612
4613/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004614/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004615/// Chain/Flag as the input and updates them for the output Chain/Flag.
4616/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004617SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004618 SDValue &Chain,
4619 SDValue *Flag) const {
4620 // Assemble the legal parts into the final values.
4621 SmallVector<SDValue, 4> Values(ValueVTs.size());
4622 SmallVector<SDValue, 8> Parts;
4623 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4624 // Copy the legal parts from the registers.
Owen Andersone50ed302009-08-10 22:56:29 +00004625 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00004626 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004627 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004628
4629 Parts.resize(NumRegs);
4630 for (unsigned i = 0; i != NumRegs; ++i) {
4631 SDValue P;
4632 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004633 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004634 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004635 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004636 *Flag = P.getValue(2);
4637 }
4638 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004639
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004640 // If the source register was virtual and if we know something about it,
4641 // add an assert node.
4642 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4643 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4644 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4645 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4646 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4647 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004648
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004649 unsigned RegSize = RegisterVT.getSizeInBits();
4650 unsigned NumSignBits = LOI.NumSignBits;
4651 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004652
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004653 // FIXME: We capture more information than the dag can represent. For
4654 // now, just use the tightest assertzext/assertsext possible.
4655 bool isSExt = true;
Owen Anderson825b72b2009-08-11 20:47:22 +00004656 EVT FromVT(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004657 if (NumSignBits == RegSize)
Owen Anderson825b72b2009-08-11 20:47:22 +00004658 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004659 else if (NumZeroBits >= RegSize-1)
Owen Anderson825b72b2009-08-11 20:47:22 +00004660 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004661 else if (NumSignBits > RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004662 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004663 else if (NumZeroBits >= RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004664 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004665 else if (NumSignBits > RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004666 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004667 else if (NumZeroBits >= RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004668 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004669 else if (NumSignBits > RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004670 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004671 else if (NumZeroBits >= RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004672 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004673
Owen Anderson825b72b2009-08-11 20:47:22 +00004674 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004675 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004676 RegisterVT, P, DAG.getValueType(FromVT));
4677
4678 }
4679 }
4680 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004681
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004682 Parts[i] = P;
4683 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004684
Scott Michelfdc40a02009-02-17 22:15:04 +00004685 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004686 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004687 Part += NumRegs;
4688 Parts.clear();
4689 }
4690
Dale Johannesen66978ee2009-01-31 02:22:37 +00004691 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004692 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4693 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004694}
4695
4696/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004697/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004698/// Chain/Flag as the input and updates them for the output Chain/Flag.
4699/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004700void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004701 SDValue &Chain, SDValue *Flag) const {
4702 // Get the list of the values's legal parts.
4703 unsigned NumRegs = Regs.size();
4704 SmallVector<SDValue, 8> Parts(NumRegs);
4705 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00004706 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00004707 unsigned NumParts = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004708 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004709
Dale Johannesen66978ee2009-01-31 02:22:37 +00004710 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004711 &Parts[Part], NumParts, RegisterVT);
4712 Part += NumParts;
4713 }
4714
4715 // Copy the parts into the registers.
4716 SmallVector<SDValue, 8> Chains(NumRegs);
4717 for (unsigned i = 0; i != NumRegs; ++i) {
4718 SDValue Part;
4719 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004720 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004721 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004722 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004723 *Flag = Part.getValue(1);
4724 }
4725 Chains[i] = Part.getValue(0);
4726 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004727
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004728 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004729 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004730 // flagged to it. That is the CopyToReg nodes and the user are considered
4731 // a single scheduling unit. If we create a TokenFactor and return it as
4732 // chain, then the TokenFactor is both a predecessor (operand) of the
4733 // user as well as a successor (the TF operands are flagged to the user).
4734 // c1, f1 = CopyToReg
4735 // c2, f2 = CopyToReg
4736 // c3 = TokenFactor c1, c2
4737 // ...
4738 // = op c3, ..., f2
4739 Chain = Chains[NumRegs-1];
4740 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004741 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004742}
4743
4744/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004745/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004746/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004747void RegsForValue::AddInlineAsmOperands(unsigned Code,
4748 bool HasMatching,unsigned MatchingIdx,
4749 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004750 std::vector<SDValue> &Ops) const {
Owen Andersone50ed302009-08-10 22:56:29 +00004751 EVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004752 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4753 unsigned Flag = Code | (Regs.size() << 3);
4754 if (HasMatching)
4755 Flag |= 0x80000000 | (MatchingIdx << 16);
4756 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004757 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Anderson23b9b192009-08-12 00:36:31 +00004758 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVTs[Value]);
Owen Andersone50ed302009-08-10 22:56:29 +00004759 EVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004760 for (unsigned i = 0; i != NumRegs; ++i) {
4761 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004762 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004763 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004764 }
4765}
4766
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004767/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004768/// i.e. it isn't a stack pointer or some other special register, return the
4769/// register class for the register. Otherwise, return null.
4770static const TargetRegisterClass *
4771isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4772 const TargetLowering &TLI,
4773 const TargetRegisterInfo *TRI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004774 EVT FoundVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004775 const TargetRegisterClass *FoundRC = 0;
4776 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4777 E = TRI->regclass_end(); RCI != E; ++RCI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004778 EVT ThisVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004779
4780 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004781 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004782 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4783 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4784 I != E; ++I) {
4785 if (TLI.isTypeLegal(*I)) {
4786 // If we have already found this register in a different register class,
4787 // choose the one with the largest VT specified. For example, on
4788 // PowerPC, we favor f64 register classes over f32.
Owen Anderson825b72b2009-08-11 20:47:22 +00004789 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004790 ThisVT = *I;
4791 break;
4792 }
4793 }
4794 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004795
Owen Anderson825b72b2009-08-11 20:47:22 +00004796 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004797
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004798 // NOTE: This isn't ideal. In particular, this might allocate the
4799 // frame pointer in functions that need it (due to them not being taken
4800 // out of allocation, because a variable sized allocation hasn't been seen
4801 // yet). This is a slight code pessimization, but should still work.
4802 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4803 E = RC->allocation_order_end(MF); I != E; ++I)
4804 if (*I == Reg) {
4805 // We found a matching register class. Keep looking at others in case
4806 // we find one with larger registers that this physreg is also in.
4807 FoundRC = RC;
4808 FoundVT = ThisVT;
4809 break;
4810 }
4811 }
4812 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004813}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004814
4815
4816namespace llvm {
4817/// AsmOperandInfo - This contains information for each constraint that we are
4818/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004819class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004820 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004821public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004822 /// CallOperand - If this is the result output operand or a clobber
4823 /// this is null, otherwise it is the incoming operand to the CallInst.
4824 /// This gets modified as the asm is processed.
4825 SDValue CallOperand;
4826
4827 /// AssignedRegs - If this is a register or register class operand, this
4828 /// contains the set of register corresponding to the operand.
4829 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004830
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004831 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4832 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4833 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004834
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004835 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4836 /// busy in OutputRegs/InputRegs.
4837 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004838 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004839 std::set<unsigned> &InputRegs,
4840 const TargetRegisterInfo &TRI) const {
4841 if (isOutReg) {
4842 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4843 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4844 }
4845 if (isInReg) {
4846 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4847 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4848 }
4849 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004850
Owen Andersone50ed302009-08-10 22:56:29 +00004851 /// getCallOperandValEVT - Return the EVT of the Value* that this operand
Chris Lattner81249c92008-10-17 17:05:25 +00004852 /// corresponds to. If there is no Value* for this operand, it returns
Owen Anderson825b72b2009-08-11 20:47:22 +00004853 /// MVT::Other.
Owen Anderson1d0be152009-08-13 21:58:54 +00004854 EVT getCallOperandValEVT(LLVMContext &Context,
4855 const TargetLowering &TLI,
Chris Lattner81249c92008-10-17 17:05:25 +00004856 const TargetData *TD) const {
Owen Anderson825b72b2009-08-11 20:47:22 +00004857 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004858
Chris Lattner81249c92008-10-17 17:05:25 +00004859 if (isa<BasicBlock>(CallOperandVal))
4860 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004861
Chris Lattner81249c92008-10-17 17:05:25 +00004862 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004863
Chris Lattner81249c92008-10-17 17:05:25 +00004864 // If this is an indirect operand, the operand is a pointer to the
4865 // accessed type.
4866 if (isIndirect)
4867 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004868
Chris Lattner81249c92008-10-17 17:05:25 +00004869 // If OpTy is not a single value, it may be a struct/union that we
4870 // can tile with integers.
4871 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4872 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4873 switch (BitSize) {
4874 default: break;
4875 case 1:
4876 case 8:
4877 case 16:
4878 case 32:
4879 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004880 case 128:
Owen Anderson1d0be152009-08-13 21:58:54 +00004881 OpTy = IntegerType::get(Context, BitSize);
Chris Lattner81249c92008-10-17 17:05:25 +00004882 break;
4883 }
4884 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004885
Chris Lattner81249c92008-10-17 17:05:25 +00004886 return TLI.getValueType(OpTy, true);
4887 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004888
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004889private:
4890 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4891 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004892 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004893 const TargetRegisterInfo &TRI) {
4894 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4895 Regs.insert(Reg);
4896 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4897 for (; *Aliases; ++Aliases)
4898 Regs.insert(*Aliases);
4899 }
4900};
4901} // end llvm namespace.
4902
4903
4904/// GetRegistersForValue - Assign registers (virtual or physical) for the
4905/// specified operand. We prefer to assign virtual registers, to allow the
4906/// register allocator handle the assignment process. However, if the asm uses
4907/// features that we can't model on machineinstrs, we have SDISel do the
4908/// allocation. This produces generally horrible, but correct, code.
4909///
4910/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004911/// Input and OutputRegs are the set of already allocated physical registers.
4912///
4913void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004914GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004915 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004916 std::set<unsigned> &InputRegs) {
Dan Gohman0d24bfb2009-08-15 02:06:22 +00004917 LLVMContext &Context = FuncInfo.Fn->getContext();
Owen Anderson23b9b192009-08-12 00:36:31 +00004918
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004919 // Compute whether this value requires an input register, an output register,
4920 // or both.
4921 bool isOutReg = false;
4922 bool isInReg = false;
4923 switch (OpInfo.Type) {
4924 case InlineAsm::isOutput:
4925 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004926
4927 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004928 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004929 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004930 break;
4931 case InlineAsm::isInput:
4932 isInReg = true;
4933 isOutReg = false;
4934 break;
4935 case InlineAsm::isClobber:
4936 isOutReg = true;
4937 isInReg = true;
4938 break;
4939 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004940
4941
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004942 MachineFunction &MF = DAG.getMachineFunction();
4943 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004944
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004945 // If this is a constraint for a single physreg, or a constraint for a
4946 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004947 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004948 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4949 OpInfo.ConstraintVT);
4950
4951 unsigned NumRegs = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00004952 if (OpInfo.ConstraintVT != MVT::Other) {
Chris Lattner01426e12008-10-21 00:45:36 +00004953 // If this is a FP input in an integer register (or visa versa) insert a bit
4954 // cast of the input value. More generally, handle any case where the input
4955 // value disagrees with the register class we plan to stick this in.
4956 if (OpInfo.Type == InlineAsm::isInput &&
4957 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
Owen Andersone50ed302009-08-10 22:56:29 +00004958 // Try to convert to the first EVT that the reg class contains. If the
Chris Lattner01426e12008-10-21 00:45:36 +00004959 // types are identical size, use a bitcast to convert (e.g. two differing
4960 // vector types).
Owen Andersone50ed302009-08-10 22:56:29 +00004961 EVT RegVT = *PhysReg.second->vt_begin();
Chris Lattner01426e12008-10-21 00:45:36 +00004962 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004963 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004964 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004965 OpInfo.ConstraintVT = RegVT;
4966 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4967 // If the input is a FP value and we want it in FP registers, do a
4968 // bitcast to the corresponding integer type. This turns an f64 value
4969 // into i64, which can be passed with two i32 values on a 32-bit
4970 // machine.
Owen Anderson23b9b192009-08-12 00:36:31 +00004971 RegVT = EVT::getIntegerVT(Context,
4972 OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004973 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004974 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004975 OpInfo.ConstraintVT = RegVT;
4976 }
4977 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004978
Owen Anderson23b9b192009-08-12 00:36:31 +00004979 NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004980 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004981
Owen Andersone50ed302009-08-10 22:56:29 +00004982 EVT RegVT;
4983 EVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004984
4985 // If this is a constraint for a specific physical register, like {r17},
4986 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004987 if (unsigned AssignedReg = PhysReg.first) {
4988 const TargetRegisterClass *RC = PhysReg.second;
Owen Anderson825b72b2009-08-11 20:47:22 +00004989 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004990 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004991
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004992 // Get the actual register value type. This is important, because the user
4993 // may have asked for (e.g.) the AX register in i32 type. We need to
4994 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004995 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004996
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004997 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004998 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004999
5000 // If this is an expanded reference, add the rest of the regs to Regs.
5001 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005002 TargetRegisterClass::iterator I = RC->begin();
5003 for (; *I != AssignedReg; ++I)
5004 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005005
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005006 // Already added the first reg.
5007 --NumRegs; ++I;
5008 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00005009 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005010 Regs.push_back(*I);
5011 }
5012 }
5013 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5014 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5015 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5016 return;
5017 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005018
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005019 // Otherwise, if this was a reference to an LLVM register class, create vregs
5020 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00005021 if (const TargetRegisterClass *RC = PhysReg.second) {
5022 RegVT = *RC->vt_begin();
Owen Anderson825b72b2009-08-11 20:47:22 +00005023 if (OpInfo.ConstraintVT == MVT::Other)
Evan Chengfb112882009-03-23 08:01:15 +00005024 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005025
Evan Chengfb112882009-03-23 08:01:15 +00005026 // Create the appropriate number of virtual registers.
5027 MachineRegisterInfo &RegInfo = MF.getRegInfo();
5028 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00005029 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005030
Evan Chengfb112882009-03-23 08:01:15 +00005031 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5032 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005033 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005034
5035 // This is a reference to a register class that doesn't directly correspond
5036 // to an LLVM register class. Allocate NumRegs consecutive, available,
5037 // registers from the class.
5038 std::vector<unsigned> RegClassRegs
5039 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
5040 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005041
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005042 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5043 unsigned NumAllocated = 0;
5044 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
5045 unsigned Reg = RegClassRegs[i];
5046 // See if this register is available.
5047 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
5048 (isInReg && InputRegs.count(Reg))) { // Already used.
5049 // Make sure we find consecutive registers.
5050 NumAllocated = 0;
5051 continue;
5052 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005053
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005054 // Check to see if this register is allocatable (i.e. don't give out the
5055 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005056 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
5057 if (!RC) { // Couldn't allocate this register.
5058 // Reset NumAllocated to make sure we return consecutive registers.
5059 NumAllocated = 0;
5060 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005061 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005062
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005063 // Okay, this register is good, we can use it.
5064 ++NumAllocated;
5065
5066 // If we allocated enough consecutive registers, succeed.
5067 if (NumAllocated == NumRegs) {
5068 unsigned RegStart = (i-NumAllocated)+1;
5069 unsigned RegEnd = i+1;
5070 // Mark all of the allocated registers used.
5071 for (unsigned i = RegStart; i != RegEnd; ++i)
5072 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005073
5074 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005075 OpInfo.ConstraintVT);
5076 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5077 return;
5078 }
5079 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005080
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005081 // Otherwise, we couldn't allocate enough registers for this.
5082}
5083
Evan Chengda43bcf2008-09-24 00:05:32 +00005084/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5085/// processed uses a memory 'm' constraint.
5086static bool
5087hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005088 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005089 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5090 InlineAsm::ConstraintInfo &CI = CInfos[i];
5091 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5092 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5093 if (CType == TargetLowering::C_Memory)
5094 return true;
5095 }
Chris Lattner6c147292009-04-30 00:48:50 +00005096
5097 // Indirect operand accesses access memory.
5098 if (CI.isIndirect)
5099 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005100 }
5101
5102 return false;
5103}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005104
5105/// visitInlineAsm - Handle a call to an InlineAsm object.
5106///
5107void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5108 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5109
5110 /// ConstraintOperands - Information about all of the constraints.
5111 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005112
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005113 std::set<unsigned> OutputRegs, InputRegs;
5114
5115 // Do a prepass over the constraints, canonicalizing them, and building up the
5116 // ConstraintOperands list.
5117 std::vector<InlineAsm::ConstraintInfo>
5118 ConstraintInfos = IA->ParseConstraints();
5119
Evan Chengda43bcf2008-09-24 00:05:32 +00005120 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005121
5122 SDValue Chain, Flag;
5123
5124 // We won't need to flush pending loads if this asm doesn't touch
5125 // memory and is nonvolatile.
5126 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005127 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005128 else
5129 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005130
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005131 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5132 unsigned ResNo = 0; // ResNo - The result number of the next output.
5133 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5134 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5135 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005136
Owen Anderson825b72b2009-08-11 20:47:22 +00005137 EVT OpVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005138
5139 // Compute the value type for each operand.
5140 switch (OpInfo.Type) {
5141 case InlineAsm::isOutput:
5142 // Indirect outputs just consume an argument.
5143 if (OpInfo.isIndirect) {
5144 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5145 break;
5146 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005147
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005148 // The return value of the call is this value. As such, there is no
5149 // corresponding argument.
Owen Anderson1d0be152009-08-13 21:58:54 +00005150 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
5151 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005152 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5153 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5154 } else {
5155 assert(ResNo == 0 && "Asm only has one result!");
5156 OpVT = TLI.getValueType(CS.getType());
5157 }
5158 ++ResNo;
5159 break;
5160 case InlineAsm::isInput:
5161 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5162 break;
5163 case InlineAsm::isClobber:
5164 // Nothing to do.
5165 break;
5166 }
5167
5168 // If this is an input or an indirect output, process the call argument.
5169 // BasicBlocks are labels, currently appearing only in asm's.
5170 if (OpInfo.CallOperandVal) {
Dale Johannesen5339c552009-07-20 23:27:39 +00005171 // Strip bitcasts, if any. This mostly comes up for functions.
Dale Johannesen76711242009-08-06 22:45:51 +00005172 OpInfo.CallOperandVal = OpInfo.CallOperandVal->stripPointerCasts();
5173
Chris Lattner81249c92008-10-17 17:05:25 +00005174 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005175 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005176 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005177 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005178 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005179
Owen Anderson1d0be152009-08-13 21:58:54 +00005180 OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005181 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005182
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005183 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005184 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005185
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005186 // Second pass over the constraints: compute which constraint option to use
5187 // and assign registers to constraints that want a specific physreg.
5188 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5189 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005190
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005191 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005192 // matching input. If their types mismatch, e.g. one is an integer, the
5193 // other is floating point, or their sizes are different, flag it as an
5194 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005195 if (OpInfo.hasMatchingInput()) {
5196 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5197 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005198 if ((OpInfo.ConstraintVT.isInteger() !=
5199 Input.ConstraintVT.isInteger()) ||
5200 (OpInfo.ConstraintVT.getSizeInBits() !=
5201 Input.ConstraintVT.getSizeInBits())) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005202 llvm_report_error("Unsupported asm: input constraint"
Torok Edwin7d696d82009-07-11 13:10:19 +00005203 " with a matching output constraint of incompatible"
5204 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005205 }
5206 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005207 }
5208 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005209
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005210 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005211 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005212
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005213 // If this is a memory input, and if the operand is not indirect, do what we
5214 // need to to provide an address for the memory input.
5215 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5216 !OpInfo.isIndirect) {
5217 assert(OpInfo.Type == InlineAsm::isInput &&
5218 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005219
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005220 // Memory operands really want the address of the value. If we don't have
5221 // an indirect input, put it in the constpool if we can, otherwise spill
5222 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005223
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005224 // If the operand is a float, integer, or vector constant, spill to a
5225 // constant pool entry to get its address.
5226 Value *OpVal = OpInfo.CallOperandVal;
5227 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5228 isa<ConstantVector>(OpVal)) {
5229 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5230 TLI.getPointerTy());
5231 } else {
5232 // Otherwise, create a stack slot and emit a store to it before the
5233 // asm.
5234 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005235 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005236 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5237 MachineFunction &MF = DAG.getMachineFunction();
5238 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5239 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005240 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005241 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005242 OpInfo.CallOperand = StackSlot;
5243 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005244
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005245 // There is no longer a Value* corresponding to this operand.
5246 OpInfo.CallOperandVal = 0;
5247 // It is now an indirect operand.
5248 OpInfo.isIndirect = true;
5249 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005250
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005251 // If this constraint is for a specific register, allocate it before
5252 // anything else.
5253 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005254 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005255 }
5256 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005257
5258
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005259 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005260 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005261 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5262 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005263
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005264 // C_Register operands have already been allocated, Other/Memory don't need
5265 // to be.
5266 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005267 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005268 }
5269
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005270 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5271 std::vector<SDValue> AsmNodeOperands;
5272 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5273 AsmNodeOperands.push_back(
Owen Anderson825b72b2009-08-11 20:47:22 +00005274 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005275
5276
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005277 // Loop over all of the inputs, copying the operand values into the
5278 // appropriate registers and processing the output regs.
5279 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005280
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005281 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5282 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005283
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005284 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5285 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5286
5287 switch (OpInfo.Type) {
5288 case InlineAsm::isOutput: {
5289 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5290 OpInfo.ConstraintType != TargetLowering::C_Register) {
5291 // Memory output, or 'other' output (e.g. 'X' constraint).
5292 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5293
5294 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005295 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5296 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005297 TLI.getPointerTy()));
5298 AsmNodeOperands.push_back(OpInfo.CallOperand);
5299 break;
5300 }
5301
5302 // Otherwise, this is a register or register class output.
5303
5304 // Copy the output from the appropriate register. Find a register that
5305 // we can use.
5306 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005307 llvm_report_error("Couldn't allocate output reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005308 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005309 }
5310
5311 // If this is an indirect operand, store through the pointer after the
5312 // asm.
5313 if (OpInfo.isIndirect) {
5314 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5315 OpInfo.CallOperandVal));
5316 } else {
5317 // This is the result value of the call.
Owen Anderson1d0be152009-08-13 21:58:54 +00005318 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
5319 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005320 // Concatenate this output onto the outputs list.
5321 RetValRegs.append(OpInfo.AssignedRegs);
5322 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005323
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005324 // Add information to the INLINEASM node to know that this register is
5325 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005326 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5327 6 /* EARLYCLOBBER REGDEF */ :
5328 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005329 false,
5330 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005331 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005332 break;
5333 }
5334 case InlineAsm::isInput: {
5335 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005336
Chris Lattner6bdcda32008-10-17 16:47:46 +00005337 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005338 // If this is required to match an output register we have already set,
5339 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005340 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005341
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005342 // Scan until we find the definition we already emitted of this operand.
5343 // When we find it, create a RegsForValue operand.
5344 unsigned CurOp = 2; // The first operand.
5345 for (; OperandNo; --OperandNo) {
5346 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005347 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005348 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005349 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5350 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5351 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005352 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005353 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005354 }
5355
Evan Cheng697cbbf2009-03-20 18:03:34 +00005356 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005357 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005358 if ((OpFlag & 7) == 2 /*REGDEF*/
5359 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5360 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005361 if (OpInfo.isIndirect) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005362 llvm_report_error("Don't know how to handle tied indirect "
Torok Edwin7d696d82009-07-11 13:10:19 +00005363 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005364 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005365 RegsForValue MatchedRegs;
5366 MatchedRegs.TLI = &TLI;
5367 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Owen Andersone50ed302009-08-10 22:56:29 +00005368 EVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
Evan Chengfb112882009-03-23 08:01:15 +00005369 MatchedRegs.RegVTs.push_back(RegVT);
5370 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005371 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005372 i != e; ++i)
5373 MatchedRegs.Regs.
5374 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005375
5376 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005377 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5378 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005379 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5380 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005381 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005382 break;
5383 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005384 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5385 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5386 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005387 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005388 // See InlineAsm.h isUseOperandTiedToDef.
5389 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005390 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005391 TLI.getPointerTy()));
5392 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5393 break;
5394 }
5395 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005396
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005397 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005398 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005399 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005400
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005401 std::vector<SDValue> Ops;
5402 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005403 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005404 if (Ops.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005405 llvm_report_error("Invalid operand for inline asm"
Torok Edwin7d696d82009-07-11 13:10:19 +00005406 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005407 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005408
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005409 // Add information to the INLINEASM node to know about this input.
5410 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005411 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005412 TLI.getPointerTy()));
5413 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5414 break;
5415 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5416 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5417 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5418 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005419
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005420 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005421 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5422 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005423 TLI.getPointerTy()));
5424 AsmNodeOperands.push_back(InOperandVal);
5425 break;
5426 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005427
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005428 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5429 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5430 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005431 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005432 "Don't know how to handle indirect register inputs yet!");
5433
5434 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005435 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005436 llvm_report_error("Couldn't allocate input reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005437 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005438 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005439
Dale Johannesen66978ee2009-01-31 02:22:37 +00005440 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5441 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005442
Evan Cheng697cbbf2009-03-20 18:03:34 +00005443 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005444 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005445 break;
5446 }
5447 case InlineAsm::isClobber: {
5448 // Add the clobbered value to the operand list, so that the register
5449 // allocator is aware that the physreg got clobbered.
5450 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005451 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005452 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005453 break;
5454 }
5455 }
5456 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005457
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005458 // Finish up input operands.
5459 AsmNodeOperands[0] = Chain;
5460 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005461
Dale Johannesen66978ee2009-01-31 02:22:37 +00005462 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005463 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005464 &AsmNodeOperands[0], AsmNodeOperands.size());
5465 Flag = Chain.getValue(1);
5466
5467 // If this asm returns a register value, copy the result from that register
5468 // and set it as the value of the call.
5469 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005470 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005471 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005472
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005473 // FIXME: Why don't we do this for inline asms with MRVs?
5474 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
Owen Andersone50ed302009-08-10 22:56:29 +00005475 EVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005476
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005477 // If any of the results of the inline asm is a vector, it may have the
5478 // wrong width/num elts. This can happen for register classes that can
5479 // contain multiple different value types. The preg or vreg allocated may
5480 // not have the same VT as was expected. Convert it to the right type
5481 // with bit_convert.
5482 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005483 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005484 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005485
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005486 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005487 ResultType.isInteger() && Val.getValueType().isInteger()) {
5488 // If a result value was tied to an input value, the computed result may
5489 // have a wider width than the expected result. Extract the relevant
5490 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005491 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005492 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005493
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005494 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005495 }
Dan Gohman95915732008-10-18 01:03:45 +00005496
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005497 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005498 // Don't need to use this as a chain in this case.
5499 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5500 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005501 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005502
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005503 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005504
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005505 // Process indirect outputs, first output all of the flagged copies out of
5506 // physregs.
5507 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5508 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5509 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005510 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5511 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005512 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005513
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005514 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005515
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005516 // Emit the non-flagged stores from the physregs.
5517 SmallVector<SDValue, 8> OutChains;
5518 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005519 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005520 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005521 getValue(StoresToEmit[i].second),
5522 StoresToEmit[i].second, 0));
5523 if (!OutChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00005524 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005525 &OutChains[0], OutChains.size());
5526 DAG.setRoot(Chain);
5527}
5528
5529
5530void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5531 SDValue Src = getValue(I.getOperand(0));
5532
Chris Lattner0b18e592009-03-17 19:36:00 +00005533 // Scale up by the type size in the original i32 type width. Various
5534 // mid-level optimizers may make assumptions about demanded bits etc from the
5535 // i32-ness of the optimizer: we do not want to promote to i64 and then
5536 // multiply on 64-bit targets.
5537 // FIXME: Malloc inst should go away: PR715.
Duncan Sands777d2302009-05-09 07:06:46 +00005538 uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType());
Chris Lattner50340f62009-07-23 21:26:18 +00005539 if (ElementSize != 1) {
5540 // Src is always 32-bits, make sure the constant fits.
Owen Anderson825b72b2009-08-11 20:47:22 +00005541 assert(Src.getValueType() == MVT::i32);
Chris Lattner50340f62009-07-23 21:26:18 +00005542 ElementSize = (uint32_t)ElementSize;
Chris Lattner0b18e592009-03-17 19:36:00 +00005543 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5544 Src, DAG.getConstant(ElementSize, Src.getValueType()));
Chris Lattner50340f62009-07-23 21:26:18 +00005545 }
Chris Lattner0b18e592009-03-17 19:36:00 +00005546
Owen Andersone50ed302009-08-10 22:56:29 +00005547 EVT IntPtr = TLI.getPointerTy();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005548
5549 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005550 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005551 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005552 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005553
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005554 TargetLowering::ArgListTy Args;
5555 TargetLowering::ArgListEntry Entry;
5556 Entry.Node = Src;
Owen Anderson1d0be152009-08-13 21:58:54 +00005557 Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005558 Args.push_back(Entry);
5559
Dan Gohman98ca4f22009-08-05 01:29:28 +00005560 bool isTailCall = PerformTailCallOpt &&
5561 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005562 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005563 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005564 0, CallingConv::C, isTailCall,
5565 /*isReturnValueUsed=*/true,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005566 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005567 Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005568 if (Result.first.getNode())
5569 setValue(&I, Result.first); // Pointers always fit in registers
5570 if (Result.second.getNode())
5571 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005572}
5573
5574void SelectionDAGLowering::visitFree(FreeInst &I) {
5575 TargetLowering::ArgListTy Args;
5576 TargetLowering::ArgListEntry Entry;
5577 Entry.Node = getValue(I.getOperand(0));
Owen Anderson1d0be152009-08-13 21:58:54 +00005578 Entry.Ty = TLI.getTargetData()->getIntPtrType(*DAG.getContext());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005579 Args.push_back(Entry);
Owen Andersone50ed302009-08-10 22:56:29 +00005580 EVT IntPtr = TLI.getPointerTy();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005581 bool isTailCall = PerformTailCallOpt &&
5582 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005583 std::pair<SDValue,SDValue> Result =
Owen Anderson1d0be152009-08-13 21:58:54 +00005584 TLI.LowerCallTo(getRoot(), Type::getVoidTy(*DAG.getContext()),
5585 false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005586 0, CallingConv::C, isTailCall,
5587 /*isReturnValueUsed=*/true,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005588 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005589 getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005590 if (Result.second.getNode())
5591 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005592}
5593
5594void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005595 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005596 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005597 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005598 DAG.getSrcValue(I.getOperand(1))));
5599}
5600
5601void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005602 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5603 getRoot(), getValue(I.getOperand(0)),
5604 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005605 setValue(&I, V);
5606 DAG.setRoot(V.getValue(1));
5607}
5608
5609void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005610 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005611 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005612 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005613 DAG.getSrcValue(I.getOperand(1))));
5614}
5615
5616void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005617 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005618 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005619 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005620 getValue(I.getOperand(2)),
5621 DAG.getSrcValue(I.getOperand(1)),
5622 DAG.getSrcValue(I.getOperand(2))));
5623}
5624
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005625/// TargetLowering::LowerCallTo - This is the default LowerCallTo
Dan Gohman98ca4f22009-08-05 01:29:28 +00005626/// implementation, which just calls LowerCall.
5627/// FIXME: When all targets are
5628/// migrated to using LowerCall, this hook should be integrated into SDISel.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005629std::pair<SDValue, SDValue>
5630TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5631 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005632 bool isInreg, unsigned NumFixedArgs,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00005633 CallingConv::ID CallConv, bool isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005634 bool isReturnValueUsed,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005635 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005636 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00005637
Dan Gohman1937e2f2008-09-16 01:42:28 +00005638 assert((!isTailCall || PerformTailCallOpt) &&
5639 "isTailCall set when tail-call optimizations are disabled!");
5640
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005641 // Handle all of the outgoing arguments.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005642 SmallVector<ISD::OutputArg, 32> Outs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005643 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00005644 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005645 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5646 for (unsigned Value = 0, NumValues = ValueVTs.size();
5647 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005648 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005649 const Type *ArgTy = VT.getTypeForEVT(RetTy->getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005650 SDValue Op = SDValue(Args[i].Node.getNode(),
5651 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005652 ISD::ArgFlagsTy Flags;
5653 unsigned OriginalAlignment =
5654 getTargetData()->getABITypeAlignment(ArgTy);
5655
5656 if (Args[i].isZExt)
5657 Flags.setZExt();
5658 if (Args[i].isSExt)
5659 Flags.setSExt();
5660 if (Args[i].isInReg)
5661 Flags.setInReg();
5662 if (Args[i].isSRet)
5663 Flags.setSRet();
5664 if (Args[i].isByVal) {
5665 Flags.setByVal();
5666 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5667 const Type *ElementTy = Ty->getElementType();
5668 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005669 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005670 // For ByVal, alignment should come from FE. BE will guess if this
5671 // info is not there but there are cases it cannot get right.
5672 if (Args[i].Alignment)
5673 FrameAlign = Args[i].Alignment;
5674 Flags.setByValAlign(FrameAlign);
5675 Flags.setByValSize(FrameSize);
5676 }
5677 if (Args[i].isNest)
5678 Flags.setNest();
5679 Flags.setOrigAlign(OriginalAlignment);
5680
Owen Anderson23b9b192009-08-12 00:36:31 +00005681 EVT PartVT = getRegisterType(RetTy->getContext(), VT);
5682 unsigned NumParts = getNumRegisters(RetTy->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005683 SmallVector<SDValue, 4> Parts(NumParts);
5684 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5685
5686 if (Args[i].isSExt)
5687 ExtendKind = ISD::SIGN_EXTEND;
5688 else if (Args[i].isZExt)
5689 ExtendKind = ISD::ZERO_EXTEND;
5690
Dale Johannesen66978ee2009-01-31 02:22:37 +00005691 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005692
Dan Gohman98ca4f22009-08-05 01:29:28 +00005693 for (unsigned j = 0; j != NumParts; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005694 // if it isn't first piece, alignment must be 1
Dan Gohman98ca4f22009-08-05 01:29:28 +00005695 ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs);
5696 if (NumParts > 1 && j == 0)
5697 MyFlags.Flags.setSplit();
5698 else if (j != 0)
5699 MyFlags.Flags.setOrigAlign(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005700
Dan Gohman98ca4f22009-08-05 01:29:28 +00005701 Outs.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005702 }
5703 }
5704 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005705
Dan Gohman98ca4f22009-08-05 01:29:28 +00005706 // Handle the incoming return values from the call.
5707 SmallVector<ISD::InputArg, 32> Ins;
Owen Andersone50ed302009-08-10 22:56:29 +00005708 SmallVector<EVT, 4> RetTys;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005709 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005710 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005711 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00005712 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
5713 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005714 for (unsigned i = 0; i != NumRegs; ++i) {
5715 ISD::InputArg MyFlags;
5716 MyFlags.VT = RegisterVT;
5717 MyFlags.Used = isReturnValueUsed;
5718 if (RetSExt)
5719 MyFlags.Flags.setSExt();
5720 if (RetZExt)
5721 MyFlags.Flags.setZExt();
5722 if (isInreg)
5723 MyFlags.Flags.setInReg();
5724 Ins.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005725 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005726 }
5727
Dan Gohman98ca4f22009-08-05 01:29:28 +00005728 // Check if target-dependent constraints permit a tail call here.
5729 // Target-independent constraints should be checked by the caller.
5730 if (isTailCall &&
5731 !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG))
5732 isTailCall = false;
5733
5734 SmallVector<SDValue, 4> InVals;
5735 Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall,
5736 Outs, Ins, dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005737
5738 // Verify that the target's LowerCall behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005739 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005740 "LowerCall didn't return a valid chain!");
5741 assert((!isTailCall || InVals.empty()) &&
5742 "LowerCall emitted a return value for a tail call!");
5743 assert((isTailCall || InVals.size() == Ins.size()) &&
5744 "LowerCall didn't emit the correct number of values!");
5745 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5746 assert(InVals[i].getNode() &&
5747 "LowerCall emitted a null value!");
5748 assert(Ins[i].VT == InVals[i].getValueType() &&
5749 "LowerCall emitted a value with the wrong type!");
5750 });
Dan Gohman98ca4f22009-08-05 01:29:28 +00005751
5752 // For a tail call, the return value is merely live-out and there aren't
5753 // any nodes in the DAG representing it. Return a special value to
5754 // indicate that a tail call has been emitted and no more Instructions
5755 // should be processed in the current block.
5756 if (isTailCall) {
5757 DAG.setRoot(Chain);
5758 return std::make_pair(SDValue(), SDValue());
5759 }
5760
5761 // Collect the legal value parts into potentially illegal values
5762 // that correspond to the original function's return values.
5763 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5764 if (RetSExt)
5765 AssertOp = ISD::AssertSext;
5766 else if (RetZExt)
5767 AssertOp = ISD::AssertZext;
5768 SmallVector<SDValue, 4> ReturnValues;
5769 unsigned CurReg = 0;
5770 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005771 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00005772 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
5773 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005774
5775 SDValue ReturnValue =
5776 getCopyFromParts(DAG, dl, &InVals[CurReg], NumRegs, RegisterVT, VT,
5777 AssertOp);
5778 ReturnValues.push_back(ReturnValue);
5779 CurReg += NumRegs;
5780 }
5781
5782 // For a function returning void, there is no return value. We can't create
5783 // such a node, so we just return a null return value in that case. In
5784 // that case, nothing will actualy look at the value.
5785 if (ReturnValues.empty())
5786 return std::make_pair(SDValue(), Chain);
5787
5788 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
5789 DAG.getVTList(&RetTys[0], RetTys.size()),
5790 &ReturnValues[0], ReturnValues.size());
5791
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005792 return std::make_pair(Res, Chain);
5793}
5794
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005795void TargetLowering::LowerOperationWrapper(SDNode *N,
5796 SmallVectorImpl<SDValue> &Results,
5797 SelectionDAG &DAG) {
5798 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005799 if (Res.getNode())
5800 Results.push_back(Res);
5801}
5802
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005803SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005804 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005805 return SDValue();
5806}
5807
5808
5809void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5810 SDValue Op = getValue(V);
5811 assert((Op.getOpcode() != ISD::CopyFromReg ||
5812 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5813 "Copy from a reg to the same reg!");
5814 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5815
Owen Anderson23b9b192009-08-12 00:36:31 +00005816 RegsForValue RFV(V->getContext(), TLI, Reg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005817 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005818 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005819 PendingExports.push_back(Chain);
5820}
5821
5822#include "llvm/CodeGen/SelectionDAGISel.h"
5823
5824void SelectionDAGISel::
5825LowerArguments(BasicBlock *LLVMBB) {
5826 // If this is the entry block, emit arguments.
5827 Function &F = *LLVMBB->getParent();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005828 SelectionDAG &DAG = SDL->DAG;
5829 SDValue OldRoot = DAG.getRoot();
5830 DebugLoc dl = SDL->getCurDebugLoc();
5831 const TargetData *TD = TLI.getTargetData();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005832
Dan Gohman98ca4f22009-08-05 01:29:28 +00005833 // Set up the incoming argument description vector.
5834 SmallVector<ISD::InputArg, 16> Ins;
5835 unsigned Idx = 1;
5836 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5837 I != E; ++I, ++Idx) {
Owen Andersone50ed302009-08-10 22:56:29 +00005838 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005839 ComputeValueVTs(TLI, I->getType(), ValueVTs);
5840 bool isArgValueUsed = !I->use_empty();
5841 for (unsigned Value = 0, NumValues = ValueVTs.size();
5842 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005843 EVT VT = ValueVTs[Value];
Owen Anderson1d0be152009-08-13 21:58:54 +00005844 const Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005845 ISD::ArgFlagsTy Flags;
5846 unsigned OriginalAlignment =
5847 TD->getABITypeAlignment(ArgTy);
5848
5849 if (F.paramHasAttr(Idx, Attribute::ZExt))
5850 Flags.setZExt();
5851 if (F.paramHasAttr(Idx, Attribute::SExt))
5852 Flags.setSExt();
5853 if (F.paramHasAttr(Idx, Attribute::InReg))
5854 Flags.setInReg();
5855 if (F.paramHasAttr(Idx, Attribute::StructRet))
5856 Flags.setSRet();
5857 if (F.paramHasAttr(Idx, Attribute::ByVal)) {
5858 Flags.setByVal();
5859 const PointerType *Ty = cast<PointerType>(I->getType());
5860 const Type *ElementTy = Ty->getElementType();
5861 unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy);
5862 unsigned FrameSize = TD->getTypeAllocSize(ElementTy);
5863 // For ByVal, alignment should be passed from FE. BE will guess if
5864 // this info is not there but there are cases it cannot get right.
5865 if (F.getParamAlignment(Idx))
5866 FrameAlign = F.getParamAlignment(Idx);
5867 Flags.setByValAlign(FrameAlign);
5868 Flags.setByValSize(FrameSize);
5869 }
5870 if (F.paramHasAttr(Idx, Attribute::Nest))
5871 Flags.setNest();
5872 Flags.setOrigAlign(OriginalAlignment);
5873
Owen Anderson23b9b192009-08-12 00:36:31 +00005874 EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
5875 unsigned NumRegs = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005876 for (unsigned i = 0; i != NumRegs; ++i) {
5877 ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed);
5878 if (NumRegs > 1 && i == 0)
5879 MyFlags.Flags.setSplit();
5880 // if it isn't first piece, alignment must be 1
5881 else if (i > 0)
5882 MyFlags.Flags.setOrigAlign(1);
5883 Ins.push_back(MyFlags);
5884 }
5885 }
5886 }
5887
5888 // Call the target to set up the argument values.
5889 SmallVector<SDValue, 8> InVals;
5890 SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(),
5891 F.isVarArg(), Ins,
5892 dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005893
5894 // Verify that the target's LowerFormalArguments behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005895 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005896 "LowerFormalArguments didn't return a valid chain!");
5897 assert(InVals.size() == Ins.size() &&
5898 "LowerFormalArguments didn't emit the correct number of values!");
5899 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5900 assert(InVals[i].getNode() &&
5901 "LowerFormalArguments emitted a null value!");
5902 assert(Ins[i].VT == InVals[i].getValueType() &&
5903 "LowerFormalArguments emitted a value with the wrong type!");
5904 });
5905
5906 // Update the DAG with the new chain value resulting from argument lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005907 DAG.setRoot(NewRoot);
5908
5909 // Set up the argument values.
5910 unsigned i = 0;
5911 Idx = 1;
5912 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
5913 ++I, ++Idx) {
5914 SmallVector<SDValue, 4> ArgValues;
Owen Andersone50ed302009-08-10 22:56:29 +00005915 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005916 ComputeValueVTs(TLI, I->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005917 unsigned NumValues = ValueVTs.size();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005918 for (unsigned Value = 0; Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005919 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005920 EVT PartVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
5921 unsigned NumParts = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005922
5923 if (!I->use_empty()) {
5924 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5925 if (F.paramHasAttr(Idx, Attribute::SExt))
5926 AssertOp = ISD::AssertSext;
5927 else if (F.paramHasAttr(Idx, Attribute::ZExt))
5928 AssertOp = ISD::AssertZext;
5929
5930 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts,
5931 PartVT, VT, AssertOp));
5932 }
5933 i += NumParts;
5934 }
5935 if (!I->use_empty()) {
5936 SDL->setValue(I, DAG.getMergeValues(&ArgValues[0], NumValues,
5937 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005938 // If this argument is live outside of the entry block, insert a copy from
5939 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005940 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005941 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005942 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00005943 assert(i == InVals.size() && "Argument register count mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005944
5945 // Finally, if the target has anything special to do, allow it to do so.
5946 // FIXME: this should insert code into the DAG!
5947 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5948}
5949
5950/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5951/// ensure constants are generated when needed. Remember the virtual registers
5952/// that need to be added to the Machine PHI nodes as input. We cannot just
5953/// directly add them, because expansion might result in multiple MBB's for one
5954/// BB. As such, the start of the BB might correspond to a different MBB than
5955/// the end.
5956///
5957void
5958SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5959 TerminatorInst *TI = LLVMBB->getTerminator();
5960
5961 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5962
5963 // Check successor nodes' PHI nodes that expect a constant to be available
5964 // from this block.
5965 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5966 BasicBlock *SuccBB = TI->getSuccessor(succ);
5967 if (!isa<PHINode>(SuccBB->begin())) continue;
5968 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005969
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005970 // If this terminator has multiple identical successors (common for
5971 // switches), only handle each succ once.
5972 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005973
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005974 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5975 PHINode *PN;
5976
5977 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5978 // nodes and Machine PHI nodes, but the incoming operands have not been
5979 // emitted yet.
5980 for (BasicBlock::iterator I = SuccBB->begin();
5981 (PN = dyn_cast<PHINode>(I)); ++I) {
5982 // Ignore dead phi's.
5983 if (PN->use_empty()) continue;
5984
5985 unsigned Reg;
5986 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5987
5988 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5989 unsigned &RegOut = SDL->ConstantsOut[C];
5990 if (RegOut == 0) {
5991 RegOut = FuncInfo->CreateRegForValue(C);
5992 SDL->CopyValueToVirtualRegister(C, RegOut);
5993 }
5994 Reg = RegOut;
5995 } else {
5996 Reg = FuncInfo->ValueMap[PHIOp];
5997 if (Reg == 0) {
5998 assert(isa<AllocaInst>(PHIOp) &&
5999 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
6000 "Didn't codegen value into a register!??");
6001 Reg = FuncInfo->CreateRegForValue(PHIOp);
6002 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
6003 }
6004 }
6005
6006 // Remember that this register needs to added to the machine PHI node as
6007 // the input for this MBB.
Owen Andersone50ed302009-08-10 22:56:29 +00006008 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006009 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
6010 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
Owen Andersone50ed302009-08-10 22:56:29 +00006011 EVT VT = ValueVTs[vti];
Owen Anderson23b9b192009-08-12 00:36:31 +00006012 unsigned NumRegisters = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006013 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
6014 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
6015 Reg += NumRegisters;
6016 }
6017 }
6018 }
6019 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006020}
6021
Dan Gohman3df24e62008-09-03 23:12:08 +00006022/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
6023/// supports legal types, and it emits MachineInstrs directly instead of
6024/// creating SelectionDAG nodes.
6025///
6026bool
6027SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
6028 FastISel *F) {
6029 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00006030
Dan Gohman3df24e62008-09-03 23:12:08 +00006031 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
6032 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
6033
6034 // Check successor nodes' PHI nodes that expect a constant to be available
6035 // from this block.
6036 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
6037 BasicBlock *SuccBB = TI->getSuccessor(succ);
6038 if (!isa<PHINode>(SuccBB->begin())) continue;
6039 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006040
Dan Gohman3df24e62008-09-03 23:12:08 +00006041 // If this terminator has multiple identical successors (common for
6042 // switches), only handle each succ once.
6043 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006044
Dan Gohman3df24e62008-09-03 23:12:08 +00006045 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
6046 PHINode *PN;
6047
6048 // At this point we know that there is a 1-1 correspondence between LLVM PHI
6049 // nodes and Machine PHI nodes, but the incoming operands have not been
6050 // emitted yet.
6051 for (BasicBlock::iterator I = SuccBB->begin();
6052 (PN = dyn_cast<PHINode>(I)); ++I) {
6053 // Ignore dead phi's.
6054 if (PN->use_empty()) continue;
6055
6056 // Only handle legal types. Two interesting things to note here. First,
6057 // by bailing out early, we may leave behind some dead instructions,
6058 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
6059 // own moves. Second, this check is necessary becuase FastISel doesn't
6060 // use CreateRegForValue to create registers, so it always creates
6061 // exactly one register for each non-void instruction.
Owen Andersone50ed302009-08-10 22:56:29 +00006062 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00006063 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
6064 // Promote MVT::i1.
6065 if (VT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +00006066 VT = TLI.getTypeToTransformTo(*CurDAG->getContext(), VT);
Dan Gohman74321ab2008-09-10 21:01:31 +00006067 else {
6068 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6069 return false;
6070 }
Dan Gohman3df24e62008-09-03 23:12:08 +00006071 }
6072
6073 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6074
6075 unsigned Reg = F->getRegForValue(PHIOp);
6076 if (Reg == 0) {
6077 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6078 return false;
6079 }
6080 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
6081 }
6082 }
6083
6084 return true;
6085}