blob: d68d2487d320fa8caf8611060a981fa7769adcaa [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.
Duncan Sands3a66a682009-10-13 21:04:12 +00001432 SwitchOp = DAG.getZExtOrTrunc(SUB, getCurDebugLoc(), TLI.getPointerTy());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001433
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001434 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001435 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1436 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001437 JT.Reg = JumpTableReg;
1438
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001439 // Emit the range check for the jump table, and branch to the default block
1440 // for the switch statement if the value being switched on exceeds the largest
1441 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001442 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1443 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001444 DAG.getConstant(JTH.Last-JTH.First,VT),
1445 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001446
1447 // Set NextBlock to be the MBB immediately after the current one, if any.
1448 // This is used to avoid emitting unnecessary branches to the next block.
1449 MachineBasicBlock *NextBlock = 0;
1450 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001451 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001452 NextBlock = BBI;
1453
Dale Johannesen66978ee2009-01-31 02:22:37 +00001454 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001455 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001456 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001457
1458 if (JT.MBB == NextBlock)
1459 DAG.setRoot(BrCond);
1460 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001461 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001462 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001463}
1464
1465/// visitBitTestHeader - This function emits necessary code to produce value
1466/// suitable for "bit tests"
1467void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1468 // Subtract the minimum value
1469 SDValue SwitchOp = getValue(B.SValue);
Owen Andersone50ed302009-08-10 22:56:29 +00001470 EVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001471 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001472 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001473
1474 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001475 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1476 TLI.getSetCCResultType(SUB.getValueType()),
1477 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001478 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001479
Duncan Sands3a66a682009-10-13 21:04:12 +00001480 SDValue ShiftOp = DAG.getZExtOrTrunc(SUB, getCurDebugLoc(), TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001481
Duncan Sands92abc622009-01-31 15:50:11 +00001482 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001483 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1484 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001485
1486 // Set NextBlock to be the MBB immediately after the current one, if any.
1487 // This is used to avoid emitting unnecessary branches to the next block.
1488 MachineBasicBlock *NextBlock = 0;
1489 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001490 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001491 NextBlock = BBI;
1492
1493 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1494
1495 CurMBB->addSuccessor(B.Default);
1496 CurMBB->addSuccessor(MBB);
1497
Dale Johannesen66978ee2009-01-31 02:22:37 +00001498 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001499 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001500 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001501
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001502 if (MBB == NextBlock)
1503 DAG.setRoot(BrRange);
1504 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001505 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001506 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001507}
1508
1509/// visitBitTestCase - this function produces one "bit test"
1510void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1511 unsigned Reg,
1512 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001513 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001514 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001515 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001516 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001517 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001518 DAG.getConstant(1, TLI.getPointerTy()),
1519 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001520
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001521 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001522 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001523 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001524 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001525 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1526 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001527 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001528 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001529
1530 CurMBB->addSuccessor(B.TargetBB);
1531 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001532
Dale Johannesen66978ee2009-01-31 02:22:37 +00001533 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001534 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001535 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001536
1537 // Set NextBlock to be the MBB immediately after the current one, if any.
1538 // This is used to avoid emitting unnecessary branches to the next block.
1539 MachineBasicBlock *NextBlock = 0;
1540 MachineFunction::iterator BBI = CurMBB;
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001541 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001542 NextBlock = BBI;
1543
1544 if (NextMBB == NextBlock)
1545 DAG.setRoot(BrAnd);
1546 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001547 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001548 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001549}
1550
1551void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1552 // Retrieve successors.
1553 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1554 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1555
Gabor Greifb67e6b32009-01-15 11:10:44 +00001556 const Value *Callee(I.getCalledValue());
1557 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001558 visitInlineAsm(&I);
1559 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001560 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001561
1562 // If the value of the invoke is used outside of its defining block, make it
1563 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001564 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001565
1566 // Update successor info
1567 CurMBB->addSuccessor(Return);
1568 CurMBB->addSuccessor(LandingPad);
1569
1570 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001571 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001572 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001573 DAG.getBasicBlock(Return)));
1574}
1575
1576void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1577}
1578
1579/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1580/// small case ranges).
1581bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1582 CaseRecVector& WorkList,
1583 Value* SV,
1584 MachineBasicBlock* Default) {
1585 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001586
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001587 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001588 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001589 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001590 return false;
1591
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001592 // Get the MachineFunction which holds the current MBB. This is used when
1593 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001594 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001595
1596 // Figure out which block is immediately after the current one.
1597 MachineBasicBlock *NextBlock = 0;
1598 MachineFunction::iterator BBI = CR.CaseBB;
1599
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001600 if (++BBI != FuncInfo.MF->end())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001601 NextBlock = BBI;
1602
1603 // TODO: If any two of the cases has the same destination, and if one value
1604 // is the same as the other, but has one bit unset that the other has set,
1605 // use bit manipulation to do two compares at once. For example:
1606 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001607
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001608 // Rearrange the case blocks so that the last one falls through if possible.
1609 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1610 // The last case block won't fall through into 'NextBlock' if we emit the
1611 // branches in this order. See if rearranging a case value would help.
1612 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1613 if (I->BB == NextBlock) {
1614 std::swap(*I, BackCase);
1615 break;
1616 }
1617 }
1618 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001619
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001620 // Create a CaseBlock record representing a conditional branch to
1621 // the Case's target mbb if the value being switched on SV is equal
1622 // to C.
1623 MachineBasicBlock *CurBlock = CR.CaseBB;
1624 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1625 MachineBasicBlock *FallThrough;
1626 if (I != E-1) {
1627 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1628 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001629
1630 // Put SV in a virtual register to make it available from the new blocks.
1631 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001632 } else {
1633 // If the last case doesn't match, go to the default block.
1634 FallThrough = Default;
1635 }
1636
1637 Value *RHS, *LHS, *MHS;
1638 ISD::CondCode CC;
1639 if (I->High == I->Low) {
1640 // This is just small small case range :) containing exactly 1 case
1641 CC = ISD::SETEQ;
1642 LHS = SV; RHS = I->High; MHS = NULL;
1643 } else {
1644 CC = ISD::SETLE;
1645 LHS = I->Low; MHS = SV; RHS = I->High;
1646 }
1647 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001648
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001649 // If emitting the first comparison, just call visitSwitchCase to emit the
1650 // code into the current block. Otherwise, push the CaseBlock onto the
1651 // vector to be later processed by SDISel, and insert the node's MBB
1652 // before the next MBB.
1653 if (CurBlock == CurMBB)
1654 visitSwitchCase(CB);
1655 else
1656 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001657
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001658 CurBlock = FallThrough;
1659 }
1660
1661 return true;
1662}
1663
1664static inline bool areJTsAllowed(const TargetLowering &TLI) {
1665 return !DisableJumpTables &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001666 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1667 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001668}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001669
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001670static APInt ComputeRange(const APInt &First, const APInt &Last) {
1671 APInt LastExt(Last), FirstExt(First);
1672 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1673 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1674 return (LastExt - FirstExt + 1ULL);
1675}
1676
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001677/// handleJTSwitchCase - Emit jumptable for current switch case range
1678bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1679 CaseRecVector& WorkList,
1680 Value* SV,
1681 MachineBasicBlock* Default) {
1682 Case& FrontCase = *CR.Range.first;
1683 Case& BackCase = *(CR.Range.second-1);
1684
Anton Korobeynikov23218582008-12-23 22:25:27 +00001685 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1686 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001687
Anton Korobeynikov23218582008-12-23 22:25:27 +00001688 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001689 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1690 I!=E; ++I)
1691 TSize += I->size();
1692
1693 if (!areJTsAllowed(TLI) || TSize <= 3)
1694 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001695
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001696 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001697 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001698 if (Density < 0.4)
1699 return false;
1700
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001701 DEBUG(errs() << "Lowering jump table\n"
1702 << "First entry: " << First << ". Last entry: " << Last << '\n'
1703 << "Range: " << Range
1704 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001705
1706 // Get the MachineFunction which holds the current MBB. This is used when
1707 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001708 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001709
1710 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001711 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001712 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001713
1714 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1715
1716 // Create a new basic block to hold the code for loading the address
1717 // of the jump table, and jumping to it. Update successor information;
1718 // we will either branch to the default case for the switch, or the jump
1719 // table.
1720 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1721 CurMF->insert(BBI, JumpTableBB);
1722 CR.CaseBB->addSuccessor(Default);
1723 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001724
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001725 // Build a vector of destination BBs, corresponding to each target
1726 // of the jump table. If the value of the jump table slot corresponds to
1727 // a case statement, push the case's BB onto the vector, otherwise, push
1728 // the default BB.
1729 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001730 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001731 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001732 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1733 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1734
1735 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001736 DestBBs.push_back(I->BB);
1737 if (TEI==High)
1738 ++I;
1739 } else {
1740 DestBBs.push_back(Default);
1741 }
1742 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001743
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001744 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001745 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1746 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001747 E = DestBBs.end(); I != E; ++I) {
1748 if (!SuccsHandled[(*I)->getNumber()]) {
1749 SuccsHandled[(*I)->getNumber()] = true;
1750 JumpTableBB->addSuccessor(*I);
1751 }
1752 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001753
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001754 // Create a jump table index for this jump table, or return an existing
1755 // one.
1756 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001757
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001758 // Set the jump table information so that we can codegen it as a second
1759 // MachineBasicBlock
1760 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1761 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1762 if (CR.CaseBB == CurMBB)
1763 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001764
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001765 JTCases.push_back(JumpTableBlock(JTH, JT));
1766
1767 return true;
1768}
1769
1770/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1771/// 2 subtrees.
1772bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1773 CaseRecVector& WorkList,
1774 Value* SV,
1775 MachineBasicBlock* Default) {
1776 // Get the MachineFunction which holds the current MBB. This is used when
1777 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001778 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001779
1780 // Figure out which block is immediately after the current one.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001781 MachineFunction::iterator BBI = CR.CaseBB;
Duncan Sands51498522009-09-06 18:03:32 +00001782 ++BBI;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001783
1784 Case& FrontCase = *CR.Range.first;
1785 Case& BackCase = *(CR.Range.second-1);
1786 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1787
1788 // Size is the number of Cases represented by this range.
1789 unsigned Size = CR.Range.second - CR.Range.first;
1790
Anton Korobeynikov23218582008-12-23 22:25:27 +00001791 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1792 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001793 double FMetric = 0;
1794 CaseItr Pivot = CR.Range.first + Size/2;
1795
1796 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1797 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001798 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001799 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1800 I!=E; ++I)
1801 TSize += I->size();
1802
Anton Korobeynikov23218582008-12-23 22:25:27 +00001803 size_t LSize = FrontCase.size();
1804 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001805 DEBUG(errs() << "Selecting best pivot: \n"
1806 << "First: " << First << ", Last: " << Last <<'\n'
1807 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001808 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1809 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001810 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1811 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001812 APInt Range = ComputeRange(LEnd, RBegin);
1813 assert((Range - 2ULL).isNonNegative() &&
1814 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001815 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1816 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001817 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001818 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001819 DEBUG(errs() <<"=>Step\n"
1820 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1821 << "LDensity: " << LDensity
1822 << ", RDensity: " << RDensity << '\n'
1823 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001824 if (FMetric < Metric) {
1825 Pivot = J;
1826 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001827 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001828 }
1829
1830 LSize += J->size();
1831 RSize -= J->size();
1832 }
1833 if (areJTsAllowed(TLI)) {
1834 // If our case is dense we *really* should handle it earlier!
1835 assert((FMetric > 0) && "Should handle dense range earlier!");
1836 } else {
1837 Pivot = CR.Range.first + Size/2;
1838 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001839
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001840 CaseRange LHSR(CR.Range.first, Pivot);
1841 CaseRange RHSR(Pivot, CR.Range.second);
1842 Constant *C = Pivot->Low;
1843 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001844
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001845 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001846 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001847 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001848 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001849 // Pivot's Value, then we can branch directly to the LHS's Target,
1850 // rather than creating a leaf node for it.
1851 if ((LHSR.second - LHSR.first) == 1 &&
1852 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001853 cast<ConstantInt>(C)->getValue() ==
1854 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 TrueBB = LHSR.first->BB;
1856 } else {
1857 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1858 CurMF->insert(BBI, TrueBB);
1859 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001860
1861 // Put SV in a virtual register to make it available from the new blocks.
1862 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001863 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001864
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001865 // Similar to the optimization above, if the Value being switched on is
1866 // known to be less than the Constant CR.LT, and the current Case Value
1867 // is CR.LT - 1, then we can branch directly to the target block for
1868 // the current Case Value, rather than emitting a RHS leaf node for it.
1869 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001870 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1871 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001872 FalseBB = RHSR.first->BB;
1873 } else {
1874 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1875 CurMF->insert(BBI, FalseBB);
1876 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001877
1878 // Put SV in a virtual register to make it available from the new blocks.
1879 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001880 }
1881
1882 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001883 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001884 // Otherwise, branch to LHS.
1885 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1886
1887 if (CR.CaseBB == CurMBB)
1888 visitSwitchCase(CB);
1889 else
1890 SwitchCases.push_back(CB);
1891
1892 return true;
1893}
1894
1895/// handleBitTestsSwitchCase - if current case range has few destination and
1896/// range span less, than machine word bitwidth, encode case range into series
1897/// of masks and emit bit tests with these masks.
1898bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1899 CaseRecVector& WorkList,
1900 Value* SV,
1901 MachineBasicBlock* Default){
Owen Andersone50ed302009-08-10 22:56:29 +00001902 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00001903 unsigned IntPtrBits = PTy.getSizeInBits();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001904
1905 Case& FrontCase = *CR.Range.first;
1906 Case& BackCase = *(CR.Range.second-1);
1907
1908 // Get the MachineFunction which holds the current MBB. This is used when
1909 // inserting any additional MBBs necessary to represent the switch.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00001910 MachineFunction *CurMF = FuncInfo.MF;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001911
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001912 // If target does not have legal shift left, do not emit bit tests at all.
1913 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1914 return false;
1915
Anton Korobeynikov23218582008-12-23 22:25:27 +00001916 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001917 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1918 I!=E; ++I) {
1919 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001920 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001921 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001922
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001923 // Count unique destinations
1924 SmallSet<MachineBasicBlock*, 4> Dests;
1925 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1926 Dests.insert(I->BB);
1927 if (Dests.size() > 3)
1928 // Don't bother the code below, if there are too much unique destinations
1929 return false;
1930 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001931 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1932 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001933
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001934 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001935 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1936 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001937 APInt cmpRange = maxValue - minValue;
1938
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001939 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1940 << "Low bound: " << minValue << '\n'
1941 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001942
1943 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001944 (!(Dests.size() == 1 && numCmps >= 3) &&
1945 !(Dests.size() == 2 && numCmps >= 5) &&
1946 !(Dests.size() >= 3 && numCmps >= 6)))
1947 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001948
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001949 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001950 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1951
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001952 // Optimize the case where all the case values fit in a
1953 // word without having to subtract minValue. In this case,
1954 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001955 if (minValue.isNonNegative() &&
1956 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1957 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001958 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001959 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001960 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001961
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001962 CaseBitsVector CasesBits;
1963 unsigned i, count = 0;
1964
1965 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1966 MachineBasicBlock* Dest = I->BB;
1967 for (i = 0; i < count; ++i)
1968 if (Dest == CasesBits[i].BB)
1969 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001970
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001971 if (i == count) {
1972 assert((count < 3) && "Too much destinations to test!");
1973 CasesBits.push_back(CaseBits(0, Dest, 0));
1974 count++;
1975 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001976
1977 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1978 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1979
1980 uint64_t lo = (lowValue - lowBound).getZExtValue();
1981 uint64_t hi = (highValue - lowBound).getZExtValue();
1982
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001983 for (uint64_t j = lo; j <= hi; j++) {
1984 CasesBits[i].Mask |= 1ULL << j;
1985 CasesBits[i].Bits++;
1986 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001987
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001988 }
1989 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001990
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001991 BitTestInfo BTC;
1992
1993 // Figure out which block is immediately after the current one.
1994 MachineFunction::iterator BBI = CR.CaseBB;
1995 ++BBI;
1996
1997 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1998
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001999 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002000 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002001 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2002 << ", Bits: " << CasesBits[i].Bits
2003 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002004
2005 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2006 CurMF->insert(BBI, CaseBB);
2007 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2008 CaseBB,
2009 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002010
2011 // Put SV in a virtual register to make it available from the new blocks.
2012 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002013 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002014
2015 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002016 -1U, (CR.CaseBB == CurMBB),
2017 CR.CaseBB, Default, BTC);
2018
2019 if (CR.CaseBB == CurMBB)
2020 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002021
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002022 BitTestCases.push_back(BTB);
2023
2024 return true;
2025}
2026
2027
2028/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002029size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002030 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002031 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002032
2033 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002034 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002035 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2036 Cases.push_back(Case(SI.getSuccessorValue(i),
2037 SI.getSuccessorValue(i),
2038 SMBB));
2039 }
2040 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2041
2042 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002043 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002044 // Must recompute end() each iteration because it may be
2045 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002046 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2047 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2048 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002049 MachineBasicBlock* nextBB = J->BB;
2050 MachineBasicBlock* currentBB = I->BB;
2051
2052 // If the two neighboring cases go to the same destination, merge them
2053 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002054 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002055 I->High = J->High;
2056 J = Cases.erase(J);
2057 } else {
2058 I = J++;
2059 }
2060 }
2061
2062 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2063 if (I->Low != I->High)
2064 // A range counts double, since it requires two compares.
2065 ++numCmps;
2066 }
2067
2068 return numCmps;
2069}
2070
Anton Korobeynikov23218582008-12-23 22:25:27 +00002071void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002072 // Figure out which block is immediately after the current one.
2073 MachineBasicBlock *NextBlock = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002074
2075 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2076
2077 // If there is only the default destination, branch to it if it is not the
2078 // next basic block. Otherwise, just fall through.
2079 if (SI.getNumOperands() == 2) {
2080 // Update machine-CFG edges.
2081
2082 // If this is not a fall-through branch, emit the branch.
2083 CurMBB->addSuccessor(Default);
2084 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002085 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002086 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002087 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002088 return;
2089 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002090
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002091 // If there are any non-default case statements, create a vector of Cases
2092 // representing each one, and sort the vector so that we can efficiently
2093 // create a binary search tree from them.
2094 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002095 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002096 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2097 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002098 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002099
2100 // Get the Value to be switched on and default basic blocks, which will be
2101 // inserted into CaseBlock records, representing basic blocks in the binary
2102 // search tree.
2103 Value *SV = SI.getOperand(0);
2104
2105 // Push the initial CaseRec onto the worklist
2106 CaseRecVector WorkList;
2107 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2108
2109 while (!WorkList.empty()) {
2110 // Grab a record representing a case range to process off the worklist
2111 CaseRec CR = WorkList.back();
2112 WorkList.pop_back();
2113
2114 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2115 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002116
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002117 // If the range has few cases (two or less) emit a series of specific
2118 // tests.
2119 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2120 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002121
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002122 // If the switch has more than 5 blocks, and at least 40% dense, and the
2123 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002124 // lowering the switch to a binary tree of conditional branches.
2125 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2126 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002127
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002128 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2129 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2130 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2131 }
2132}
2133
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002134void SelectionDAGLowering::visitIndBr(IndBrInst &I) {
Dan Gohman64825152009-10-27 21:56:26 +00002135 DAG.setRoot(DAG.getNode(ISD::BRIND, getCurDebugLoc(),
2136 MVT::Other, getControlRoot(),
2137 getValue(I.getAddress())));
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002138}
2139
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002140
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002141void SelectionDAGLowering::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002142 // -0.0 - X --> fneg
2143 const Type *Ty = I.getType();
2144 if (isa<VectorType>(Ty)) {
2145 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2146 const VectorType *DestTy = cast<VectorType>(I.getType());
2147 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002148 unsigned VL = DestTy->getNumElements();
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002149 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Owen Andersonaf7ec972009-07-28 21:19:26 +00002150 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002151 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002152 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002153 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002154 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002155 return;
2156 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002157 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002158 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002159 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002160 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002161 SDValue Op2 = getValue(I.getOperand(1));
2162 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2163 Op2.getValueType(), Op2));
2164 return;
2165 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002166
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002167 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002168}
2169
2170void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2171 SDValue Op1 = getValue(I.getOperand(0));
2172 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002173
Scott Michelfdc40a02009-02-17 22:15:04 +00002174 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002175 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002176}
2177
2178void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2179 SDValue Op1 = getValue(I.getOperand(0));
2180 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002181 if (!isa<VectorType>(I.getType()) &&
2182 Op2.getValueType() != TLI.getShiftAmountTy()) {
2183 // If the operand is smaller than the shift count type, promote it.
Owen Andersone50ed302009-08-10 22:56:29 +00002184 EVT PTy = TLI.getPointerTy();
2185 EVT STy = TLI.getShiftAmountTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002186 if (STy.bitsGT(Op2.getValueType()))
Dan Gohman57fc82d2009-04-09 03:51:29 +00002187 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2188 TLI.getShiftAmountTy(), Op2);
2189 // If the operand is larger than the shift count type but the shift
2190 // count type has enough bits to represent any shift value, truncate
2191 // it now. This is a common case and it exposes the truncate to
2192 // optimization early.
Owen Anderson77547be2009-08-10 18:56:59 +00002193 else if (STy.getSizeInBits() >=
Dan Gohman57fc82d2009-04-09 03:51:29 +00002194 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2195 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2196 TLI.getShiftAmountTy(), Op2);
2197 // Otherwise we'll need to temporarily settle for some other
2198 // convenient type; type legalization will make adjustments as
2199 // needed.
Owen Anderson77547be2009-08-10 18:56:59 +00002200 else if (PTy.bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002201 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002202 TLI.getPointerTy(), Op2);
Owen Anderson77547be2009-08-10 18:56:59 +00002203 else if (PTy.bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002204 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002205 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002206 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002207
Scott Michelfdc40a02009-02-17 22:15:04 +00002208 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002209 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002210}
2211
2212void SelectionDAGLowering::visitICmp(User &I) {
2213 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2214 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2215 predicate = IC->getPredicate();
2216 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2217 predicate = ICmpInst::Predicate(IC->getPredicate());
2218 SDValue Op1 = getValue(I.getOperand(0));
2219 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002220 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002221
Owen Andersone50ed302009-08-10 22:56:29 +00002222 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002223 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002224}
2225
2226void SelectionDAGLowering::visitFCmp(User &I) {
2227 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2228 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2229 predicate = FC->getPredicate();
2230 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2231 predicate = FCmpInst::Predicate(FC->getPredicate());
2232 SDValue Op1 = getValue(I.getOperand(0));
2233 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002234 ISD::CondCode Condition = getFCmpCondCode(predicate);
Owen Andersone50ed302009-08-10 22:56:29 +00002235 EVT DestVT = TLI.getValueType(I.getType());
Chris Lattner9800e842009-07-07 22:41:32 +00002236 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002237}
2238
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002239void SelectionDAGLowering::visitSelect(User &I) {
Owen Andersone50ed302009-08-10 22:56:29 +00002240 SmallVector<EVT, 4> ValueVTs;
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002241 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2242 unsigned NumValues = ValueVTs.size();
2243 if (NumValues != 0) {
2244 SmallVector<SDValue, 4> Values(NumValues);
2245 SDValue Cond = getValue(I.getOperand(0));
2246 SDValue TrueVal = getValue(I.getOperand(1));
2247 SDValue FalseVal = getValue(I.getOperand(2));
2248
2249 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002250 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002251 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002252 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2253 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2254
Scott Michelfdc40a02009-02-17 22:15:04 +00002255 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002256 DAG.getVTList(&ValueVTs[0], NumValues),
2257 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002258 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002259}
2260
2261
2262void SelectionDAGLowering::visitTrunc(User &I) {
2263 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2264 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002265 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002266 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002267}
2268
2269void SelectionDAGLowering::visitZExt(User &I) {
2270 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2271 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2272 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002273 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002274 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002275}
2276
2277void SelectionDAGLowering::visitSExt(User &I) {
2278 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2279 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2280 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002281 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002282 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002283}
2284
2285void SelectionDAGLowering::visitFPTrunc(User &I) {
2286 // FPTrunc is never a no-op cast, no need to check
2287 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002288 EVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002289 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002290 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002291}
2292
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002293void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002294 // FPTrunc is never a no-op cast, no need to check
2295 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002296 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002297 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002298}
2299
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002300void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002301 // FPToUI is never a no-op cast, no need to check
2302 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002303 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002304 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002305}
2306
2307void SelectionDAGLowering::visitFPToSI(User &I) {
2308 // FPToSI is never a no-op cast, no need to check
2309 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002310 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002311 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002312}
2313
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002314void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002315 // UIToFP is never a no-op cast, no need to check
2316 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002317 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002318 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002319}
2320
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002321void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002322 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002323 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002324 EVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002325 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002326}
2327
2328void SelectionDAGLowering::visitPtrToInt(User &I) {
2329 // What to do depends on the size of the integer and the size of the pointer.
2330 // We can either truncate, zero extend, or no-op, accordingly.
2331 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002332 EVT SrcVT = N.getValueType();
2333 EVT DestVT = TLI.getValueType(I.getType());
Duncan Sands3a66a682009-10-13 21:04:12 +00002334 SDValue Result = DAG.getZExtOrTrunc(N, getCurDebugLoc(), DestVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002335 setValue(&I, Result);
2336}
2337
2338void SelectionDAGLowering::visitIntToPtr(User &I) {
2339 // What to do depends on the size of the integer and the size of the pointer.
2340 // We can either truncate, zero extend, or no-op, accordingly.
2341 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002342 EVT SrcVT = N.getValueType();
2343 EVT DestVT = TLI.getValueType(I.getType());
Duncan Sands3a66a682009-10-13 21:04:12 +00002344 setValue(&I, DAG.getZExtOrTrunc(N, getCurDebugLoc(), DestVT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002345}
2346
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002347void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002348 SDValue N = getValue(I.getOperand(0));
Owen Andersone50ed302009-08-10 22:56:29 +00002349 EVT DestVT = TLI.getValueType(I.getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002350
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002351 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002352 // is either a BIT_CONVERT or a no-op.
2353 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002354 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002355 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002356 else
2357 setValue(&I, N); // noop cast.
2358}
2359
2360void SelectionDAGLowering::visitInsertElement(User &I) {
2361 SDValue InVec = getValue(I.getOperand(0));
2362 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002363 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002364 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002365 getValue(I.getOperand(2)));
2366
Scott Michelfdc40a02009-02-17 22:15:04 +00002367 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002368 TLI.getValueType(I.getType()),
2369 InVec, InVal, InIdx));
2370}
2371
2372void SelectionDAGLowering::visitExtractElement(User &I) {
2373 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002374 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002375 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002376 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002377 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002378 TLI.getValueType(I.getType()), InVec, InIdx));
2379}
2380
Mon P Wangaeb06d22008-11-10 04:46:22 +00002381
2382// Utility for visitShuffleVector - Returns true if the mask is mask starting
2383// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002384static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2385 unsigned MaskNumElts = Mask.size();
2386 for (unsigned i = 0; i != MaskNumElts; ++i)
2387 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002388 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002389 return true;
2390}
2391
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002392void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002393 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002394 SDValue Src1 = getValue(I.getOperand(0));
2395 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002396
Nate Begeman9008ca62009-04-27 18:41:29 +00002397 // Convert the ConstantVector mask operand into an array of ints, with -1
2398 // representing undef values.
2399 SmallVector<Constant*, 8> MaskElts;
Owen Anderson001dbfe2009-07-16 18:04:31 +00002400 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
2401 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002402 unsigned MaskNumElts = MaskElts.size();
2403 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002404 if (isa<UndefValue>(MaskElts[i]))
2405 Mask.push_back(-1);
2406 else
2407 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2408 }
2409
Owen Andersone50ed302009-08-10 22:56:29 +00002410 EVT VT = TLI.getValueType(I.getType());
2411 EVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002412 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002413
Mon P Wangc7849c22008-11-16 05:06:27 +00002414 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002415 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2416 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002417 return;
2418 }
2419
2420 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002421 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2422 // Mask is longer than the source vectors and is a multiple of the source
2423 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002424 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002425 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2426 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002427 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002428 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002429 return;
2430 }
2431
Mon P Wangc7849c22008-11-16 05:06:27 +00002432 // Pad both vectors with undefs to make them the same length as the mask.
2433 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002434 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2435 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002436 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002437
Nate Begeman9008ca62009-04-27 18:41:29 +00002438 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2439 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002440 MOps1[0] = Src1;
2441 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002442
2443 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2444 getCurDebugLoc(), VT,
2445 &MOps1[0], NumConcat);
2446 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2447 getCurDebugLoc(), VT,
2448 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002449
Mon P Wangaeb06d22008-11-10 04:46:22 +00002450 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002451 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002452 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002453 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002454 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002455 MappedOps.push_back(Idx);
2456 else
2457 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002458 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002459 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2460 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002461 return;
2462 }
2463
Mon P Wangc7849c22008-11-16 05:06:27 +00002464 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002465 // Analyze the access pattern of the vector to see if we can extract
2466 // two subvectors and do the shuffle. The analysis is done by calculating
2467 // the range of elements the mask access on both vectors.
2468 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2469 int MaxRange[2] = {-1, -1};
2470
Nate Begeman5a5ca152009-04-29 05:20:52 +00002471 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002472 int Idx = Mask[i];
2473 int Input = 0;
2474 if (Idx < 0)
2475 continue;
2476
Nate Begeman5a5ca152009-04-29 05:20:52 +00002477 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002478 Input = 1;
2479 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002480 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002481 if (Idx > MaxRange[Input])
2482 MaxRange[Input] = Idx;
2483 if (Idx < MinRange[Input])
2484 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002485 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002486
Mon P Wangc7849c22008-11-16 05:06:27 +00002487 // Check if the access is smaller than the vector size and can we find
2488 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002489 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002490 int StartIdx[2]; // StartIdx to extract from
2491 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002492 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002493 RangeUse[Input] = 0; // Unused
2494 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002495 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002496 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002497 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002498 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002499 RangeUse[Input] = 1; // Extract from beginning of the vector
2500 StartIdx[Input] = 0;
2501 } else {
2502 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002503 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002504 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002505 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002506 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002507 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002508 }
2509
Bill Wendling636e2582009-08-21 18:16:06 +00002510 if (RangeUse[0] == 0 && RangeUse[1] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002511 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002512 return;
2513 }
2514 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2515 // Extract appropriate subvector and generate a vector shuffle
2516 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002517 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002518 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002519 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002520 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002521 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002522 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002523 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002524 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002525 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002526 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002527 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002528 int Idx = Mask[i];
2529 if (Idx < 0)
2530 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002531 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002532 MappedOps.push_back(Idx - StartIdx[0]);
2533 else
2534 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002535 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002536 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2537 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002538 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002539 }
2540 }
2541
Mon P Wangc7849c22008-11-16 05:06:27 +00002542 // We can't use either concat vectors or extract subvectors so fall back to
2543 // replacing the shuffle with extract and build vector.
2544 // to insert and build vector.
Owen Andersone50ed302009-08-10 22:56:29 +00002545 EVT EltVT = VT.getVectorElementType();
2546 EVT PtrVT = TLI.getPointerTy();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002547 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002548 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002549 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002550 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002551 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002552 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002553 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002554 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002555 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002556 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002557 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002558 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002559 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002560 }
2561 }
Evan Chenga87008d2009-02-25 22:49:59 +00002562 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2563 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002564}
2565
2566void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2567 const Value *Op0 = I.getOperand(0);
2568 const Value *Op1 = I.getOperand(1);
2569 const Type *AggTy = I.getType();
2570 const Type *ValTy = Op1->getType();
2571 bool IntoUndef = isa<UndefValue>(Op0);
2572 bool FromUndef = isa<UndefValue>(Op1);
2573
2574 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2575 I.idx_begin(), I.idx_end());
2576
Owen Andersone50ed302009-08-10 22:56:29 +00002577 SmallVector<EVT, 4> AggValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002578 ComputeValueVTs(TLI, AggTy, AggValueVTs);
Owen Andersone50ed302009-08-10 22:56:29 +00002579 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002580 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2581
2582 unsigned NumAggValues = AggValueVTs.size();
2583 unsigned NumValValues = ValValueVTs.size();
2584 SmallVector<SDValue, 4> Values(NumAggValues);
2585
2586 SDValue Agg = getValue(Op0);
2587 SDValue Val = getValue(Op1);
2588 unsigned i = 0;
2589 // Copy the beginning value(s) from the original aggregate.
2590 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002591 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002592 SDValue(Agg.getNode(), Agg.getResNo() + i);
2593 // Copy values from the inserted value(s).
2594 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002595 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002596 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2597 // Copy remaining value(s) from the original aggregate.
2598 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002599 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002600 SDValue(Agg.getNode(), Agg.getResNo() + i);
2601
Scott Michelfdc40a02009-02-17 22:15:04 +00002602 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002603 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2604 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002605}
2606
2607void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2608 const Value *Op0 = I.getOperand(0);
2609 const Type *AggTy = Op0->getType();
2610 const Type *ValTy = I.getType();
2611 bool OutOfUndef = isa<UndefValue>(Op0);
2612
2613 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2614 I.idx_begin(), I.idx_end());
2615
Owen Andersone50ed302009-08-10 22:56:29 +00002616 SmallVector<EVT, 4> ValValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002617 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2618
2619 unsigned NumValValues = ValValueVTs.size();
2620 SmallVector<SDValue, 4> Values(NumValValues);
2621
2622 SDValue Agg = getValue(Op0);
2623 // Copy out the selected value(s).
2624 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2625 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002626 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002627 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002628 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002629
Scott Michelfdc40a02009-02-17 22:15:04 +00002630 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002631 DAG.getVTList(&ValValueVTs[0], NumValValues),
2632 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002633}
2634
2635
2636void SelectionDAGLowering::visitGetElementPtr(User &I) {
2637 SDValue N = getValue(I.getOperand(0));
2638 const Type *Ty = I.getOperand(0)->getType();
2639
2640 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2641 OI != E; ++OI) {
2642 Value *Idx = *OI;
2643 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2644 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2645 if (Field) {
2646 // N = N + Offset
2647 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002648 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002649 DAG.getIntPtrConstant(Offset));
2650 }
2651 Ty = StTy->getElementType(Field);
2652 } else {
2653 Ty = cast<SequentialType>(Ty)->getElementType();
2654
2655 // If this is a constant subscript, handle it quickly.
2656 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2657 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002658 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002659 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002660 SDValue OffsVal;
Owen Andersone50ed302009-08-10 22:56:29 +00002661 EVT PTy = TLI.getPointerTy();
Owen Anderson77547be2009-08-10 18:56:59 +00002662 unsigned PtrBits = PTy.getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002663 if (PtrBits < 64) {
2664 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2665 TLI.getPointerTy(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002666 DAG.getConstant(Offs, MVT::i64));
Evan Cheng65b52df2009-02-09 21:01:06 +00002667 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002668 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002669 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002670 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002671 continue;
2672 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002673
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002674 // N = N + Idx * ElementSize;
Dan Gohman7abbd042009-10-23 17:57:43 +00002675 APInt ElementSize = APInt(TLI.getPointerTy().getSizeInBits(),
2676 TD->getTypeAllocSize(Ty));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002677 SDValue IdxN = getValue(Idx);
2678
2679 // If the index is smaller or larger than intptr_t, truncate or extend
2680 // it.
Duncan Sands3a66a682009-10-13 21:04:12 +00002681 IdxN = DAG.getSExtOrTrunc(IdxN, getCurDebugLoc(), N.getValueType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002682
2683 // If this is a multiply by a power of two, turn it into a shl
2684 // immediately. This is a very common case.
2685 if (ElementSize != 1) {
Dan Gohman7abbd042009-10-23 17:57:43 +00002686 if (ElementSize.isPowerOf2()) {
2687 unsigned Amt = ElementSize.logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00002688 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002689 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002690 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002691 } else {
Dan Gohman7abbd042009-10-23 17:57:43 +00002692 SDValue Scale = DAG.getConstant(ElementSize, TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00002693 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002694 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002695 }
2696 }
2697
Scott Michelfdc40a02009-02-17 22:15:04 +00002698 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002699 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002700 }
2701 }
2702 setValue(&I, N);
2703}
2704
2705void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2706 // If this is a fixed sized alloca in the entry block of the function,
2707 // allocate it statically on the stack.
2708 if (FuncInfo.StaticAllocaMap.count(&I))
2709 return; // getValue will auto-populate this.
2710
2711 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002712 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002713 unsigned Align =
2714 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2715 I.getAlignment());
2716
2717 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002718
2719 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2720 AllocSize,
2721 DAG.getConstant(TySize, AllocSize.getValueType()));
2722
2723
2724
Owen Andersone50ed302009-08-10 22:56:29 +00002725 EVT IntPtr = TLI.getPointerTy();
Duncan Sands3a66a682009-10-13 21:04:12 +00002726 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurDebugLoc(), IntPtr);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002727
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002728 // Handle alignment. If the requested alignment is less than or equal to
2729 // the stack alignment, ignore it. If the size is greater than or equal to
2730 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2731 unsigned StackAlign =
2732 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2733 if (Align <= StackAlign)
2734 Align = 0;
2735
2736 // Round the size of the allocation up to the stack alignment size
2737 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002738 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002739 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002740 DAG.getIntPtrConstant(StackAlign-1));
2741 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002742 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002743 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002744 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2745
2746 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Owen Anderson825b72b2009-08-11 20:47:22 +00002747 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002748 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002749 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002750 setValue(&I, DSA);
2751 DAG.setRoot(DSA.getValue(1));
2752
2753 // Inform the Frame Information that we have just allocated a variable-sized
2754 // object.
Dan Gohman0d24bfb2009-08-15 02:06:22 +00002755 FuncInfo.MF->getFrameInfo()->CreateVariableSizedObject();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002756}
2757
2758void SelectionDAGLowering::visitLoad(LoadInst &I) {
2759 const Value *SV = I.getOperand(0);
2760 SDValue Ptr = getValue(SV);
2761
2762 const Type *Ty = I.getType();
2763 bool isVolatile = I.isVolatile();
2764 unsigned Alignment = I.getAlignment();
2765
Owen Andersone50ed302009-08-10 22:56:29 +00002766 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002767 SmallVector<uint64_t, 4> Offsets;
2768 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2769 unsigned NumValues = ValueVTs.size();
2770 if (NumValues == 0)
2771 return;
2772
2773 SDValue Root;
2774 bool ConstantMemory = false;
2775 if (I.isVolatile())
2776 // Serialize volatile loads with other side effects.
2777 Root = getRoot();
2778 else if (AA->pointsToConstantMemory(SV)) {
2779 // Do not serialize (non-volatile) loads of constant memory with anything.
2780 Root = DAG.getEntryNode();
2781 ConstantMemory = true;
2782 } else {
2783 // Do not serialize non-volatile loads against each other.
2784 Root = DAG.getRoot();
2785 }
2786
2787 SmallVector<SDValue, 4> Values(NumValues);
2788 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002789 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002790 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002791 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Nate Begemane6798372009-09-15 00:13:12 +00002792 DAG.getNode(ISD::ADD, getCurDebugLoc(),
2793 PtrVT, Ptr,
2794 DAG.getConstant(Offsets[i], PtrVT)),
Nate Begeman101b25c2009-09-15 19:05:41 +00002795 SV, Offsets[i], isVolatile, Alignment);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002796 Values[i] = L;
2797 Chains[i] = L.getValue(1);
2798 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002799
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002800 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002801 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002802 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002803 &Chains[0], NumValues);
2804 if (isVolatile)
2805 DAG.setRoot(Chain);
2806 else
2807 PendingLoads.push_back(Chain);
2808 }
2809
Scott Michelfdc40a02009-02-17 22:15:04 +00002810 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002811 DAG.getVTList(&ValueVTs[0], NumValues),
2812 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002813}
2814
2815
2816void SelectionDAGLowering::visitStore(StoreInst &I) {
2817 Value *SrcV = I.getOperand(0);
2818 Value *PtrV = I.getOperand(1);
2819
Owen Andersone50ed302009-08-10 22:56:29 +00002820 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002821 SmallVector<uint64_t, 4> Offsets;
2822 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2823 unsigned NumValues = ValueVTs.size();
2824 if (NumValues == 0)
2825 return;
2826
2827 // Get the lowered operands. Note that we do this after
2828 // checking if NumResults is zero, because with zero results
2829 // the operands won't have values in the map.
2830 SDValue Src = getValue(SrcV);
2831 SDValue Ptr = getValue(PtrV);
2832
2833 SDValue Root = getRoot();
2834 SmallVector<SDValue, 4> Chains(NumValues);
Owen Andersone50ed302009-08-10 22:56:29 +00002835 EVT PtrVT = Ptr.getValueType();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002836 bool isVolatile = I.isVolatile();
2837 unsigned Alignment = I.getAlignment();
2838 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002839 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002840 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002841 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002842 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002843 DAG.getConstant(Offsets[i], PtrVT)),
Nate Begeman101b25c2009-09-15 19:05:41 +00002844 PtrV, Offsets[i], isVolatile, Alignment);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002845
Scott Michelfdc40a02009-02-17 22:15:04 +00002846 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00002847 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002848}
2849
2850/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2851/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002852void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002853 unsigned Intrinsic) {
2854 bool HasChain = !I.doesNotAccessMemory();
2855 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2856
2857 // Build the operand list.
2858 SmallVector<SDValue, 8> Ops;
2859 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2860 if (OnlyLoad) {
2861 // We don't need to serialize loads against other loads.
2862 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002863 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002864 Ops.push_back(getRoot());
2865 }
2866 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002867
2868 // Info is set by getTgtMemInstrinsic
2869 TargetLowering::IntrinsicInfo Info;
2870 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2871
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002872 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002873 if (!IsTgtIntrinsic)
2874 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002875
2876 // Add all operands of the call to the operand list.
2877 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2878 SDValue Op = getValue(I.getOperand(i));
2879 assert(TLI.isTypeLegal(Op.getValueType()) &&
2880 "Intrinsic uses a non-legal type?");
2881 Ops.push_back(Op);
2882 }
2883
Owen Andersone50ed302009-08-10 22:56:29 +00002884 SmallVector<EVT, 4> ValueVTs;
Bob Wilson8d919552009-07-31 22:41:21 +00002885 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2886#ifndef NDEBUG
2887 for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) {
2888 assert(TLI.isTypeLegal(ValueVTs[Val]) &&
2889 "Intrinsic uses a non-legal type?");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002890 }
Bob Wilson8d919552009-07-31 22:41:21 +00002891#endif // NDEBUG
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002892 if (HasChain)
Owen Anderson825b72b2009-08-11 20:47:22 +00002893 ValueVTs.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002894
Bob Wilson8d919552009-07-31 22:41:21 +00002895 SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002896
2897 // Create the node.
2898 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002899 if (IsTgtIntrinsic) {
2900 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002901 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002902 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002903 Info.memVT, Info.ptrVal, Info.offset,
2904 Info.align, Info.vol,
2905 Info.readMem, Info.writeMem);
2906 }
2907 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002908 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002909 VTs, &Ops[0], Ops.size());
Owen Anderson1d0be152009-08-13 21:58:54 +00002910 else if (I.getType() != Type::getVoidTy(*DAG.getContext()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002911 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002912 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002913 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002914 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002915 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002916
2917 if (HasChain) {
2918 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2919 if (OnlyLoad)
2920 PendingLoads.push_back(Chain);
2921 else
2922 DAG.setRoot(Chain);
2923 }
Owen Anderson1d0be152009-08-13 21:58:54 +00002924 if (I.getType() != Type::getVoidTy(*DAG.getContext())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002925 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
Owen Andersone50ed302009-08-10 22:56:29 +00002926 EVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002927 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002928 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002929 setValue(&I, Result);
2930 }
2931}
2932
2933/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2934static GlobalVariable *ExtractTypeInfo(Value *V) {
2935 V = V->stripPointerCasts();
2936 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2937 assert ((GV || isa<ConstantPointerNull>(V)) &&
2938 "TypeInfo must be a global variable or NULL");
2939 return GV;
2940}
2941
2942namespace llvm {
2943
2944/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2945/// call, and add them to the specified machine basic block.
2946void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2947 MachineBasicBlock *MBB) {
2948 // Inform the MachineModuleInfo of the personality for this landing pad.
2949 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2950 assert(CE->getOpcode() == Instruction::BitCast &&
2951 isa<Function>(CE->getOperand(0)) &&
2952 "Personality should be a function");
2953 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2954
2955 // Gather all the type infos for this landing pad and pass them along to
2956 // MachineModuleInfo.
2957 std::vector<GlobalVariable *> TyInfo;
2958 unsigned N = I.getNumOperands();
2959
2960 for (unsigned i = N - 1; i > 2; --i) {
2961 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2962 unsigned FilterLength = CI->getZExtValue();
2963 unsigned FirstCatch = i + FilterLength + !FilterLength;
2964 assert (FirstCatch <= N && "Invalid filter length");
2965
2966 if (FirstCatch < N) {
2967 TyInfo.reserve(N - FirstCatch);
2968 for (unsigned j = FirstCatch; j < N; ++j)
2969 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2970 MMI->addCatchTypeInfo(MBB, TyInfo);
2971 TyInfo.clear();
2972 }
2973
2974 if (!FilterLength) {
2975 // Cleanup.
2976 MMI->addCleanup(MBB);
2977 } else {
2978 // Filter.
2979 TyInfo.reserve(FilterLength - 1);
2980 for (unsigned j = i + 1; j < FirstCatch; ++j)
2981 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2982 MMI->addFilterTypeInfo(MBB, TyInfo);
2983 TyInfo.clear();
2984 }
2985
2986 N = i;
2987 }
2988 }
2989
2990 if (N > 3) {
2991 TyInfo.reserve(N - 3);
2992 for (unsigned j = 3; j < N; ++j)
2993 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2994 MMI->addCatchTypeInfo(MBB, TyInfo);
2995 }
2996}
2997
2998}
2999
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003000/// GetSignificand - Get the significand and build it into a floating-point
3001/// number with exponent of 1:
3002///
3003/// Op = (Op & 0x007fffff) | 0x3f800000;
3004///
3005/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003006static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003007GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003008 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3009 DAG.getConstant(0x007fffff, MVT::i32));
3010 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
3011 DAG.getConstant(0x3f800000, MVT::i32));
3012 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003013}
3014
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003015/// GetExponent - Get the exponent:
3016///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003017/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003018///
3019/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003020static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003021GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3022 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003023 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
3024 DAG.getConstant(0x7f800000, MVT::i32));
3025 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003026 DAG.getConstant(23, TLI.getPointerTy()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003027 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
3028 DAG.getConstant(127, MVT::i32));
3029 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003030}
3031
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003032/// getF32Constant - Get 32-bit floating point constant.
3033static SDValue
3034getF32Constant(SelectionDAG &DAG, unsigned Flt) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003035 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003036}
3037
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003038/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003039/// visitIntrinsicCall: I is a call instruction
3040/// Op is the associated NodeType for I
3041const char *
3042SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003043 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003044 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003045 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003046 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003047 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003048 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003049 getValue(I.getOperand(2)),
3050 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003051 setValue(&I, L);
3052 DAG.setRoot(L.getValue(1));
3053 return 0;
3054}
3055
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003056// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003057const char *
3058SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003059 SDValue Op1 = getValue(I.getOperand(1));
3060 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003061
Owen Anderson825b72b2009-08-11 20:47:22 +00003062 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
Dan Gohmanfc166572009-04-09 23:54:40 +00003063 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003064
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003065 setValue(&I, Result);
3066 return 0;
3067}
Bill Wendling74c37652008-12-09 22:08:41 +00003068
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003069/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3070/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003071void
3072SelectionDAGLowering::visitExp(CallInst &I) {
3073 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003074 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003075
Owen Anderson825b72b2009-08-11 20:47:22 +00003076 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003077 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3078 SDValue Op = getValue(I.getOperand(1));
3079
3080 // Put the exponent in the right bit position for later addition to the
3081 // final result:
3082 //
3083 // #define LOG2OFe 1.4426950f
3084 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Owen Anderson825b72b2009-08-11 20:47:22 +00003085 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003086 getF32Constant(DAG, 0x3fb8aa3b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003087 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003088
3089 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003090 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3091 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003092
3093 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003094 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003095 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003096
3097 if (LimitFloatPrecision <= 6) {
3098 // For floating-point precision of 6:
3099 //
3100 // TwoToFractionalPartOfX =
3101 // 0.997535578f +
3102 // (0.735607626f + 0.252464424f * x) * x;
3103 //
3104 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003105 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003106 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003107 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003108 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003109 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3110 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003111 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003112 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003113
3114 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003115 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003116 TwoToFracPartOfX, IntegerPartOfX);
3117
Owen Anderson825b72b2009-08-11 20:47:22 +00003118 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003119 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3120 // For floating-point precision of 12:
3121 //
3122 // TwoToFractionalPartOfX =
3123 // 0.999892986f +
3124 // (0.696457318f +
3125 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3126 //
3127 // 0.000107046256 error, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003128 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003129 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003130 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003131 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003132 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3133 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003134 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003135 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3136 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003137 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003138 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003139
3140 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003141 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003142 TwoToFracPartOfX, IntegerPartOfX);
3143
Owen Anderson825b72b2009-08-11 20:47:22 +00003144 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003145 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3146 // For floating-point precision of 18:
3147 //
3148 // TwoToFractionalPartOfX =
3149 // 0.999999982f +
3150 // (0.693148872f +
3151 // (0.240227044f +
3152 // (0.554906021e-1f +
3153 // (0.961591928e-2f +
3154 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3155 //
3156 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003157 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003158 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003159 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003160 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003161 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3162 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003163 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003164 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3165 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003166 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003167 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3168 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003169 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003170 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3171 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003172 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003173 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3174 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003175 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003176 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003177 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003178
3179 // Add the exponent into the result in integer domain.
Owen Anderson825b72b2009-08-11 20:47:22 +00003180 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003181 TwoToFracPartOfX, IntegerPartOfX);
3182
Owen Anderson825b72b2009-08-11 20:47:22 +00003183 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003184 }
3185 } else {
3186 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003187 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003188 getValue(I.getOperand(1)).getValueType(),
3189 getValue(I.getOperand(1)));
3190 }
3191
Dale Johannesen59e577f2008-09-05 18:38:42 +00003192 setValue(&I, result);
3193}
3194
Bill Wendling39150252008-09-09 20:39:27 +00003195/// visitLog - Lower a log intrinsic. Handles the special sequences for
3196/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003197void
3198SelectionDAGLowering::visitLog(CallInst &I) {
3199 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003200 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003201
Owen Anderson825b72b2009-08-11 20:47:22 +00003202 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling39150252008-09-09 20:39:27 +00003203 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3204 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003205 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003206
3207 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003208 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003209 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003210 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003211
3212 // Get the significand and build it into a floating-point number with
3213 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003214 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003215
3216 if (LimitFloatPrecision <= 6) {
3217 // For floating-point precision of 6:
3218 //
3219 // LogofMantissa =
3220 // -1.1609546f +
3221 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003222 //
Bill Wendling39150252008-09-09 20:39:27 +00003223 // error 0.0034276066, which is better than 8 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003224 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003225 getF32Constant(DAG, 0xbe74c456));
Owen Anderson825b72b2009-08-11 20:47:22 +00003226 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003227 getF32Constant(DAG, 0x3fb3a2b1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003228 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3229 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003230 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003231
Scott Michelfdc40a02009-02-17 22:15:04 +00003232 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003233 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003234 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3235 // For floating-point precision of 12:
3236 //
3237 // LogOfMantissa =
3238 // -1.7417939f +
3239 // (2.8212026f +
3240 // (-1.4699568f +
3241 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3242 //
3243 // error 0.000061011436, which is 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003244 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003245 getF32Constant(DAG, 0xbd67b6d6));
Owen Anderson825b72b2009-08-11 20:47:22 +00003246 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003247 getF32Constant(DAG, 0x3ee4f4b8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003248 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3249 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003250 getF32Constant(DAG, 0x3fbc278b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003251 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3252 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003253 getF32Constant(DAG, 0x40348e95));
Owen Anderson825b72b2009-08-11 20:47:22 +00003254 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3255 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003256 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003257
Scott Michelfdc40a02009-02-17 22:15:04 +00003258 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003259 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003260 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3261 // For floating-point precision of 18:
3262 //
3263 // LogOfMantissa =
3264 // -2.1072184f +
3265 // (4.2372794f +
3266 // (-3.7029485f +
3267 // (2.2781945f +
3268 // (-0.87823314f +
3269 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3270 //
3271 // error 0.0000023660568, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003272 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003273 getF32Constant(DAG, 0xbc91e5ac));
Owen Anderson825b72b2009-08-11 20:47:22 +00003274 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003275 getF32Constant(DAG, 0x3e4350aa));
Owen Anderson825b72b2009-08-11 20:47:22 +00003276 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3277 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003278 getF32Constant(DAG, 0x3f60d3e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003279 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3280 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003281 getF32Constant(DAG, 0x4011cdf0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003282 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3283 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003284 getF32Constant(DAG, 0x406cfd1c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003285 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3286 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003287 getF32Constant(DAG, 0x408797cb));
Owen Anderson825b72b2009-08-11 20:47:22 +00003288 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3289 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003290 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003291
Scott Michelfdc40a02009-02-17 22:15:04 +00003292 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003293 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003294 }
3295 } else {
3296 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003297 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003298 getValue(I.getOperand(1)).getValueType(),
3299 getValue(I.getOperand(1)));
3300 }
3301
Dale Johannesen59e577f2008-09-05 18:38:42 +00003302 setValue(&I, result);
3303}
3304
Bill Wendling3eb59402008-09-09 00:28:24 +00003305/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3306/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003307void
3308SelectionDAGLowering::visitLog2(CallInst &I) {
3309 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003310 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003311
Owen Anderson825b72b2009-08-11 20:47:22 +00003312 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003313 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3314 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003315 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003316
Bill Wendling39150252008-09-09 20:39:27 +00003317 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003318 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003319
3320 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003321 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003322 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003323
Bill Wendling3eb59402008-09-09 00:28:24 +00003324 // Different possible minimax approximations of significand in
3325 // floating-point for various degrees of accuracy over [1,2].
3326 if (LimitFloatPrecision <= 6) {
3327 // For floating-point precision of 6:
3328 //
3329 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3330 //
3331 // error 0.0049451742, which is more than 7 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003332 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003333 getF32Constant(DAG, 0xbeb08fe0));
Owen Anderson825b72b2009-08-11 20:47:22 +00003334 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003335 getF32Constant(DAG, 0x40019463));
Owen Anderson825b72b2009-08-11 20:47:22 +00003336 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3337 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003338 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003339
Scott Michelfdc40a02009-02-17 22:15:04 +00003340 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003341 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003342 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3343 // For floating-point precision of 12:
3344 //
3345 // Log2ofMantissa =
3346 // -2.51285454f +
3347 // (4.07009056f +
3348 // (-2.12067489f +
3349 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003350 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003351 // error 0.0000876136000, which is better than 13 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003352 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003353 getF32Constant(DAG, 0xbda7262e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003354 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003355 getF32Constant(DAG, 0x3f25280b));
Owen Anderson825b72b2009-08-11 20:47:22 +00003356 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3357 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003358 getF32Constant(DAG, 0x4007b923));
Owen Anderson825b72b2009-08-11 20:47:22 +00003359 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3360 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003361 getF32Constant(DAG, 0x40823e2f));
Owen Anderson825b72b2009-08-11 20:47:22 +00003362 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3363 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003364 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003365
Scott Michelfdc40a02009-02-17 22:15:04 +00003366 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003367 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003368 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3369 // For floating-point precision of 18:
3370 //
3371 // Log2ofMantissa =
3372 // -3.0400495f +
3373 // (6.1129976f +
3374 // (-5.3420409f +
3375 // (3.2865683f +
3376 // (-1.2669343f +
3377 // (0.27515199f -
3378 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3379 //
3380 // error 0.0000018516, which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003381 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003382 getF32Constant(DAG, 0xbcd2769e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003383 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003384 getF32Constant(DAG, 0x3e8ce0b9));
Owen Anderson825b72b2009-08-11 20:47:22 +00003385 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3386 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003387 getF32Constant(DAG, 0x3fa22ae7));
Owen Anderson825b72b2009-08-11 20:47:22 +00003388 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3389 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003390 getF32Constant(DAG, 0x40525723));
Owen Anderson825b72b2009-08-11 20:47:22 +00003391 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3392 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003393 getF32Constant(DAG, 0x40aaf200));
Owen Anderson825b72b2009-08-11 20:47:22 +00003394 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3395 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003396 getF32Constant(DAG, 0x40c39dad));
Owen Anderson825b72b2009-08-11 20:47:22 +00003397 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3398 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003399 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003400
Scott Michelfdc40a02009-02-17 22:15:04 +00003401 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003402 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003403 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003404 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003405 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003406 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003407 getValue(I.getOperand(1)).getValueType(),
3408 getValue(I.getOperand(1)));
3409 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003410
Dale Johannesen59e577f2008-09-05 18:38:42 +00003411 setValue(&I, result);
3412}
3413
Bill Wendling3eb59402008-09-09 00:28:24 +00003414/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3415/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003416void
3417SelectionDAGLowering::visitLog10(CallInst &I) {
3418 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003419 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003420
Owen Anderson825b72b2009-08-11 20:47:22 +00003421 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003422 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3423 SDValue Op = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00003424 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003425
Bill Wendling39150252008-09-09 20:39:27 +00003426 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003427 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00003428 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003429 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003430
3431 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003432 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003433 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003434
3435 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003436 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003437 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003438 // Log10ofMantissa =
3439 // -0.50419619f +
3440 // (0.60948995f - 0.10380950f * x) * x;
3441 //
3442 // error 0.0014886165, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003443 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003444 getF32Constant(DAG, 0xbdd49a13));
Owen Anderson825b72b2009-08-11 20:47:22 +00003445 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003446 getF32Constant(DAG, 0x3f1c0789));
Owen Anderson825b72b2009-08-11 20:47:22 +00003447 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3448 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003449 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003450
Scott Michelfdc40a02009-02-17 22:15:04 +00003451 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003452 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003453 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3454 // For floating-point precision of 12:
3455 //
3456 // Log10ofMantissa =
3457 // -0.64831180f +
3458 // (0.91751397f +
3459 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3460 //
3461 // error 0.00019228036, which is better than 12 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003462 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003463 getF32Constant(DAG, 0x3d431f31));
Owen Anderson825b72b2009-08-11 20:47:22 +00003464 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003465 getF32Constant(DAG, 0x3ea21fb2));
Owen Anderson825b72b2009-08-11 20:47:22 +00003466 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3467 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003468 getF32Constant(DAG, 0x3f6ae232));
Owen Anderson825b72b2009-08-11 20:47:22 +00003469 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3470 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003471 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003472
Scott Michelfdc40a02009-02-17 22:15:04 +00003473 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003474 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003475 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003476 // For floating-point precision of 18:
3477 //
3478 // Log10ofMantissa =
3479 // -0.84299375f +
3480 // (1.5327582f +
3481 // (-1.0688956f +
3482 // (0.49102474f +
3483 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3484 //
3485 // error 0.0000037995730, which is better than 18 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, 0x3c5d51ce));
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, 0x3e00685a));
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, 0x3efb6798));
Owen Anderson825b72b2009-08-11 20:47:22 +00003493 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3494 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003495 getF32Constant(DAG, 0x3f88d192));
Owen Anderson825b72b2009-08-11 20:47:22 +00003496 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3497 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003498 getF32Constant(DAG, 0x3fc4316c));
Owen Anderson825b72b2009-08-11 20:47:22 +00003499 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3500 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003501 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003502
Scott Michelfdc40a02009-02-17 22:15:04 +00003503 result = DAG.getNode(ISD::FADD, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003504 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003505 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003506 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003507 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003508 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003509 getValue(I.getOperand(1)).getValueType(),
3510 getValue(I.getOperand(1)));
3511 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003512
Dale Johannesen59e577f2008-09-05 18:38:42 +00003513 setValue(&I, result);
3514}
3515
Bill Wendlinge10c8142008-09-09 22:39:21 +00003516/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3517/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003518void
3519SelectionDAGLowering::visitExp2(CallInst &I) {
3520 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003521 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003522
Owen Anderson825b72b2009-08-11 20:47:22 +00003523 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003524 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3525 SDValue Op = getValue(I.getOperand(1));
3526
Owen Anderson825b72b2009-08-11 20:47:22 +00003527 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003528
3529 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003530 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3531 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003532
3533 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003534 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003535 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003536
3537 if (LimitFloatPrecision <= 6) {
3538 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003539 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003540 // TwoToFractionalPartOfX =
3541 // 0.997535578f +
3542 // (0.735607626f + 0.252464424f * x) * x;
3543 //
3544 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003545 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003546 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003547 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003548 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003549 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3550 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003551 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003552 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003553 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003554 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003555
Scott Michelfdc40a02009-02-17 22:15:04 +00003556 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003557 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003558 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3559 // For floating-point precision of 12:
3560 //
3561 // TwoToFractionalPartOfX =
3562 // 0.999892986f +
3563 // (0.696457318f +
3564 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3565 //
3566 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003567 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003568 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003569 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003570 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003571 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3572 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003573 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003574 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3575 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003576 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003577 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003578 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003579 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003580
Scott Michelfdc40a02009-02-17 22:15:04 +00003581 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003582 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003583 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3584 // For floating-point precision of 18:
3585 //
3586 // TwoToFractionalPartOfX =
3587 // 0.999999982f +
3588 // (0.693148872f +
3589 // (0.240227044f +
3590 // (0.554906021e-1f +
3591 // (0.961591928e-2f +
3592 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3593 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003594 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003595 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003596 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003597 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003598 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3599 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003600 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003601 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3602 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003603 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003604 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3605 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003606 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003607 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3608 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003609 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003610 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3611 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003612 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003613 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003614 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003615 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003616
Scott Michelfdc40a02009-02-17 22:15:04 +00003617 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003618 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003619 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003620 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003621 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003622 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003623 getValue(I.getOperand(1)).getValueType(),
3624 getValue(I.getOperand(1)));
3625 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003626
Dale Johannesen601d3c02008-09-05 01:48:15 +00003627 setValue(&I, result);
3628}
3629
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003630/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3631/// limited-precision mode with x == 10.0f.
3632void
3633SelectionDAGLowering::visitPow(CallInst &I) {
3634 SDValue result;
3635 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003636 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003637 bool IsExp10 = false;
3638
Owen Anderson825b72b2009-08-11 20:47:22 +00003639 if (getValue(Val).getValueType() == MVT::f32 &&
3640 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003641 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3642 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3643 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3644 APFloat Ten(10.0f);
3645 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3646 }
3647 }
3648 }
3649
3650 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3651 SDValue Op = getValue(I.getOperand(2));
3652
3653 // Put the exponent in the right bit position for later addition to the
3654 // final result:
3655 //
3656 // #define LOG2OF10 3.3219281f
3657 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Owen Anderson825b72b2009-08-11 20:47:22 +00003658 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003659 getF32Constant(DAG, 0x40549a78));
Owen Anderson825b72b2009-08-11 20:47:22 +00003660 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003661
3662 // FractionalPartOfX = x - (float)IntegerPartOfX;
Owen Anderson825b72b2009-08-11 20:47:22 +00003663 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3664 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003665
3666 // IntegerPartOfX <<= 23;
Owen Anderson825b72b2009-08-11 20:47:22 +00003667 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003668 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003669
3670 if (LimitFloatPrecision <= 6) {
3671 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003672 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003673 // twoToFractionalPartOfX =
3674 // 0.997535578f +
3675 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003676 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003677 // error 0.0144103317, which is 6 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003678 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003679 getF32Constant(DAG, 0x3e814304));
Owen Anderson825b72b2009-08-11 20:47:22 +00003680 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003681 getF32Constant(DAG, 0x3f3c50c8));
Owen Anderson825b72b2009-08-11 20:47:22 +00003682 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3683 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003684 getF32Constant(DAG, 0x3f7f5e7e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003685 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003686 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003687 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003688
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003689 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003690 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003691 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3692 // For floating-point precision of 12:
3693 //
3694 // TwoToFractionalPartOfX =
3695 // 0.999892986f +
3696 // (0.696457318f +
3697 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3698 //
3699 // error 0.000107046256, which is 13 to 14 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003700 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003701 getF32Constant(DAG, 0x3da235e3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003702 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003703 getF32Constant(DAG, 0x3e65b8f3));
Owen Anderson825b72b2009-08-11 20:47:22 +00003704 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3705 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003706 getF32Constant(DAG, 0x3f324b07));
Owen Anderson825b72b2009-08-11 20:47:22 +00003707 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3708 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003709 getF32Constant(DAG, 0x3f7ff8fd));
Owen Anderson825b72b2009-08-11 20:47:22 +00003710 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003711 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003712 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003713
Scott Michelfdc40a02009-02-17 22:15:04 +00003714 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003715 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003716 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3717 // For floating-point precision of 18:
3718 //
3719 // TwoToFractionalPartOfX =
3720 // 0.999999982f +
3721 // (0.693148872f +
3722 // (0.240227044f +
3723 // (0.554906021e-1f +
3724 // (0.961591928e-2f +
3725 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3726 // error 2.47208000*10^(-7), which is better than 18 bits
Owen Anderson825b72b2009-08-11 20:47:22 +00003727 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003728 getF32Constant(DAG, 0x3924b03e));
Owen Anderson825b72b2009-08-11 20:47:22 +00003729 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003730 getF32Constant(DAG, 0x3ab24b87));
Owen Anderson825b72b2009-08-11 20:47:22 +00003731 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3732 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003733 getF32Constant(DAG, 0x3c1d8c17));
Owen Anderson825b72b2009-08-11 20:47:22 +00003734 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3735 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003736 getF32Constant(DAG, 0x3d634a1d));
Owen Anderson825b72b2009-08-11 20:47:22 +00003737 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3738 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003739 getF32Constant(DAG, 0x3e75fe14));
Owen Anderson825b72b2009-08-11 20:47:22 +00003740 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3741 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003742 getF32Constant(DAG, 0x3f317234));
Owen Anderson825b72b2009-08-11 20:47:22 +00003743 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3744 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003745 getF32Constant(DAG, 0x3f800000));
Owen Anderson825b72b2009-08-11 20:47:22 +00003746 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003747 SDValue TwoToFractionalPartOfX =
Owen Anderson825b72b2009-08-11 20:47:22 +00003748 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003749
Scott Michelfdc40a02009-02-17 22:15:04 +00003750 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003751 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003752 }
3753 } else {
3754 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003755 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003756 getValue(I.getOperand(1)).getValueType(),
3757 getValue(I.getOperand(1)),
3758 getValue(I.getOperand(2)));
3759 }
3760
3761 setValue(&I, result);
3762}
3763
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003764/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3765/// we want to emit this as a call to a named external function, return the name
3766/// otherwise lower it and return null.
3767const char *
3768SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003769 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003770 switch (Intrinsic) {
3771 default:
3772 // By default, turn this into a target intrinsic node.
3773 visitTargetIntrinsic(I, Intrinsic);
3774 return 0;
3775 case Intrinsic::vastart: visitVAStart(I); return 0;
3776 case Intrinsic::vaend: visitVAEnd(I); return 0;
3777 case Intrinsic::vacopy: visitVACopy(I); return 0;
3778 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003779 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003780 getValue(I.getOperand(1))));
3781 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003782 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003783 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003784 getValue(I.getOperand(1))));
3785 return 0;
3786 case Intrinsic::setjmp:
3787 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3788 break;
3789 case Intrinsic::longjmp:
3790 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3791 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003792 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003793 SDValue Op1 = getValue(I.getOperand(1));
3794 SDValue Op2 = getValue(I.getOperand(2));
3795 SDValue Op3 = getValue(I.getOperand(3));
3796 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003797 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003798 I.getOperand(1), 0, I.getOperand(2), 0));
3799 return 0;
3800 }
Chris Lattner824b9582008-11-21 16:42:48 +00003801 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003802 SDValue Op1 = getValue(I.getOperand(1));
3803 SDValue Op2 = getValue(I.getOperand(2));
3804 SDValue Op3 = getValue(I.getOperand(3));
3805 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003806 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003807 I.getOperand(1), 0));
3808 return 0;
3809 }
Chris Lattner824b9582008-11-21 16:42:48 +00003810 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003811 SDValue Op1 = getValue(I.getOperand(1));
3812 SDValue Op2 = getValue(I.getOperand(2));
3813 SDValue Op3 = getValue(I.getOperand(3));
3814 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3815
3816 // If the source and destination are known to not be aliases, we can
3817 // lower memmove as memcpy.
3818 uint64_t Size = -1ULL;
3819 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003820 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003821 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3822 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003823 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003824 I.getOperand(1), 0, I.getOperand(2), 0));
3825 return 0;
3826 }
3827
Dale Johannesena04b7572009-02-03 23:04:43 +00003828 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003829 I.getOperand(1), 0, I.getOperand(2), 0));
3830 return 0;
3831 }
3832 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003833 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003834 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003835 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003836 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003837 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003838
Bill Wendling98a366d2009-04-29 23:29:43 +00003839 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003840 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003841 SPI.getLine(),
3842 SPI.getColumn(),
3843 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003844 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003845 return 0;
3846 }
3847 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003848 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003849 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003850 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3851 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003852 unsigned LabelID =
Devang Patele4b27562009-08-28 23:24:31 +00003853 DW->RecordRegionStart(RSI.getContext());
Devang Patel48c7fa22009-04-13 18:13:16 +00003854 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3855 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003856 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003857 return 0;
3858 }
3859 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003860 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003861 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003862
Devang Patel7e1e31f2009-07-02 22:43:26 +00003863 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3864 || !DW->ShouldEmitDwarfDebug())
3865 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003866
Devang Patel7e1e31f2009-07-02 22:43:26 +00003867 MachineFunction &MF = DAG.getMachineFunction();
Devang Patele4b27562009-08-28 23:24:31 +00003868 DISubprogram Subprogram(REI.getContext());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003869
3870 if (isInlinedFnEnd(REI, MF.getFunction())) {
3871 // This is end of inlined function. Debugging information for inlined
3872 // function is not handled yet (only supported by FastISel).
3873 if (OptLevel == CodeGenOpt::None) {
3874 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3875 if (ID != 0)
3876 // Returned ID is 0 if this is unbalanced "end of inlined
3877 // scope". This could happen if optimizer eats dbg intrinsics or
3878 // "beginning of inlined scope" is not recoginized due to missing
3879 // location info. In such cases, do ignore this region.end.
3880 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3881 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003882 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003883 return 0;
3884 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003885
Devang Patel7e1e31f2009-07-02 22:43:26 +00003886 unsigned LabelID =
Devang Patele4b27562009-08-28 23:24:31 +00003887 DW->RecordRegionEnd(REI.getContext());
Devang Patel7e1e31f2009-07-02 22:43:26 +00003888 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3889 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003890 return 0;
3891 }
3892 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003893 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003894 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003895 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None))
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003896 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003897
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003898 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003899 // This is a beginning of an inlined function.
3900 if (isInlinedFnStart(FSI, MF.getFunction())) {
3901 if (OptLevel != CodeGenOpt::None)
3902 // FIXME: Debugging informaation for inlined function is only
3903 // supported at CodeGenOpt::Node.
3904 return 0;
3905
Bill Wendlingc677fe52009-05-10 00:10:50 +00003906 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003907 // If llvm.dbg.func.start is seen in a new block before any
3908 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3909 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3910 if (PrevLoc.isUnknown())
3911 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003912
Devang Patel7e1e31f2009-07-02 22:43:26 +00003913 // Record the source line.
3914 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3915
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003916 if (!DW || !DW->ShouldEmitDwarfDebug())
3917 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003918 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
Devang Patele4b27562009-08-28 23:24:31 +00003919 DISubprogram SP(FSI.getSubprogram());
Devang Patel1619dc32009-10-13 23:28:53 +00003920 DICompileUnit CU(PrevLocTpl.Scope);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003921 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3922 PrevLocTpl.Line,
3923 PrevLocTpl.Col);
3924 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3925 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003926 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003927 }
3928
Devang Patel07b0ec02009-07-02 00:08:09 +00003929 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003930 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003931
3932 if (!DW || !DW->ShouldEmitDwarfDebug())
3933 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003934 // llvm.dbg.func_start also defines beginning of function scope.
Devang Patele4b27562009-08-28 23:24:31 +00003935 DW->RecordRegionStart(FSI.getSubprogram());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003936 return 0;
3937 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003938 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003939 if (OptLevel != CodeGenOpt::None)
3940 // FIXME: Variable debug info is not supported here.
3941 return 0;
Devang Patel24f20e02009-08-22 17:12:53 +00003942 DwarfWriter *DW = DAG.getDwarfWriter();
3943 if (!DW)
3944 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003945 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3946 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3947 return 0;
3948
Devang Patelac1ceb32009-10-09 22:42:28 +00003949 MDNode *Variable = DI.getVariable();
Devang Patel24f20e02009-08-22 17:12:53 +00003950 Value *Address = DI.getAddress();
3951 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
3952 Address = BCI->getOperand(0);
3953 AllocaInst *AI = dyn_cast<AllocaInst>(Address);
3954 // Don't handle byval struct arguments or VLAs, for example.
3955 if (!AI)
3956 return 0;
Devang Patelbd1d6a82009-09-05 00:34:14 +00003957 DenseMap<const AllocaInst*, int>::iterator SI =
3958 FuncInfo.StaticAllocaMap.find(AI);
3959 if (SI == FuncInfo.StaticAllocaMap.end())
3960 return 0; // VLAs.
3961 int FI = SI->second;
Devang Patelac1ceb32009-10-09 22:42:28 +00003962#ifdef ATTACH_DEBUG_INFO_TO_AN_INSN
3963 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3964 if (MMI)
3965 MMI->setVariableDbgInfo(Variable, FI);
3966#else
3967 DW->RecordVariable(Variable, FI);
3968#endif
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003969 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003970 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003971 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003972 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003973 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Owen Anderson825b72b2009-08-11 20:47:22 +00003974 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003975 SDValue Ops[1];
3976 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003977 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003978 setValue(&I, Op);
3979 DAG.setRoot(Op.getValue(1));
3980 return 0;
3981 }
3982
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00003983 case Intrinsic::eh_selector: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003984 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003985
Chris Lattner3a5815f2009-09-17 23:54:54 +00003986 if (CurMBB->isLandingPad())
3987 AddCatchInfo(I, MMI, CurMBB);
3988 else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003989#ifndef NDEBUG
Chris Lattner3a5815f2009-09-17 23:54:54 +00003990 FuncInfo.CatchInfoLost.insert(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003991#endif
Chris Lattner3a5815f2009-09-17 23:54:54 +00003992 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3993 unsigned Reg = TLI.getExceptionSelectorRegister();
3994 if (Reg) CurMBB->addLiveIn(Reg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003995 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003996
Chris Lattner3a5815f2009-09-17 23:54:54 +00003997 // Insert the EHSELECTION instruction.
3998 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3999 SDValue Ops[2];
4000 Ops[0] = getValue(I.getOperand(1));
4001 Ops[1] = getRoot();
4002 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
4003
4004 DAG.setRoot(Op.getValue(1));
4005
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00004006 setValue(&I, DAG.getSExtOrTrunc(Op, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004007 return 0;
4008 }
4009
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00004010 case Intrinsic::eh_typeid_for: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004011 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004012
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004013 if (MMI) {
4014 // Find the type id for the given typeinfo.
4015 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4016
4017 unsigned TypeID = MMI->getTypeIDFor(GV);
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00004018 setValue(&I, DAG.getConstant(TypeID, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004019 } else {
4020 // Return something different to eh_selector.
Duncan Sandsb01bbdc2009-10-14 16:11:37 +00004021 setValue(&I, DAG.getConstant(1, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004022 }
4023
4024 return 0;
4025 }
4026
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004027 case Intrinsic::eh_return_i32:
4028 case Intrinsic::eh_return_i64:
4029 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004030 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004031 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004032 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004033 getControlRoot(),
4034 getValue(I.getOperand(1)),
4035 getValue(I.getOperand(2))));
4036 } else {
4037 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4038 }
4039
4040 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004041 case Intrinsic::eh_unwind_init:
4042 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4043 MMI->setCallsUnwindInit(true);
4044 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004045
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004046 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004047
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004048 case Intrinsic::eh_dwarf_cfa: {
Owen Andersone50ed302009-08-10 22:56:29 +00004049 EVT VT = getValue(I.getOperand(1)).getValueType();
Duncan Sands3a66a682009-10-13 21:04:12 +00004050 SDValue CfaArg = DAG.getSExtOrTrunc(getValue(I.getOperand(1)), dl,
4051 TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004052
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004053 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004054 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004055 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004056 TLI.getPointerTy()),
4057 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004058 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004059 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004060 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004061 TLI.getPointerTy(),
4062 DAG.getConstant(0,
4063 TLI.getPointerTy())),
4064 Offset));
4065 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004066 }
Mon P Wang77cdf302008-11-10 20:54:11 +00004067 case Intrinsic::convertff:
4068 case Intrinsic::convertfsi:
4069 case Intrinsic::convertfui:
4070 case Intrinsic::convertsif:
4071 case Intrinsic::convertuif:
4072 case Intrinsic::convertss:
4073 case Intrinsic::convertsu:
4074 case Intrinsic::convertus:
4075 case Intrinsic::convertuu: {
4076 ISD::CvtCode Code = ISD::CVT_INVALID;
4077 switch (Intrinsic) {
4078 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4079 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4080 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4081 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4082 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4083 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4084 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4085 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4086 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4087 }
Owen Andersone50ed302009-08-10 22:56:29 +00004088 EVT DestVT = TLI.getValueType(I.getType());
Mon P Wang77cdf302008-11-10 20:54:11 +00004089 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004090 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004091 DAG.getValueType(DestVT),
4092 DAG.getValueType(getValue(Op1).getValueType()),
4093 getValue(I.getOperand(2)),
4094 getValue(I.getOperand(3)),
4095 Code));
4096 return 0;
4097 }
4098
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004099 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004100 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004101 getValue(I.getOperand(1)).getValueType(),
4102 getValue(I.getOperand(1))));
4103 return 0;
4104 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004105 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004106 getValue(I.getOperand(1)).getValueType(),
4107 getValue(I.getOperand(1)),
4108 getValue(I.getOperand(2))));
4109 return 0;
4110 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004111 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004112 getValue(I.getOperand(1)).getValueType(),
4113 getValue(I.getOperand(1))));
4114 return 0;
4115 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004116 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004117 getValue(I.getOperand(1)).getValueType(),
4118 getValue(I.getOperand(1))));
4119 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004120 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004121 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004122 return 0;
4123 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004124 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004125 return 0;
4126 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004127 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004128 return 0;
4129 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004130 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004131 return 0;
4132 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004133 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004134 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004135 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004136 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004137 return 0;
4138 case Intrinsic::pcmarker: {
4139 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004140 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004141 return 0;
4142 }
4143 case Intrinsic::readcyclecounter: {
4144 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004145 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004146 DAG.getVTList(MVT::i64, MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004147 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004148 setValue(&I, Tmp);
4149 DAG.setRoot(Tmp.getValue(1));
4150 return 0;
4151 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004152 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004153 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004154 getValue(I.getOperand(1)).getValueType(),
4155 getValue(I.getOperand(1))));
4156 return 0;
4157 case Intrinsic::cttz: {
4158 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004159 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004160 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004161 setValue(&I, result);
4162 return 0;
4163 }
4164 case Intrinsic::ctlz: {
4165 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004166 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004167 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004168 setValue(&I, result);
4169 return 0;
4170 }
4171 case Intrinsic::ctpop: {
4172 SDValue Arg = getValue(I.getOperand(1));
Owen Andersone50ed302009-08-10 22:56:29 +00004173 EVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004174 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004175 setValue(&I, result);
4176 return 0;
4177 }
4178 case Intrinsic::stacksave: {
4179 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004180 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004181 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004182 setValue(&I, Tmp);
4183 DAG.setRoot(Tmp.getValue(1));
4184 return 0;
4185 }
4186 case Intrinsic::stackrestore: {
4187 SDValue Tmp = getValue(I.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00004188 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004189 return 0;
4190 }
Bill Wendling57344502008-11-18 11:01:33 +00004191 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004192 // Emit code into the DAG to store the stack guard onto the stack.
4193 MachineFunction &MF = DAG.getMachineFunction();
4194 MachineFrameInfo *MFI = MF.getFrameInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004195 EVT PtrTy = TLI.getPointerTy();
Bill Wendlingb2a42982008-11-06 02:29:10 +00004196
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004197 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4198 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004199
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004200 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004201 MFI->setStackProtectorIndex(FI);
4202
4203 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4204
4205 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004206 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Evan Chengff89dcb2009-10-18 18:16:27 +00004207 PseudoSourceValue::getFixedStack(FI),
4208 0, true);
Bill Wendlingb2a42982008-11-06 02:29:10 +00004209 setValue(&I, Result);
4210 DAG.setRoot(Result);
4211 return 0;
4212 }
Eric Christopher7b5e6172009-10-27 00:52:25 +00004213 case Intrinsic::objectsize: {
4214 // If we don't know by now, we're never going to know.
4215 ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(2));
4216
4217 assert(CI && "Non-constant type in __builtin_object_size?");
4218
4219 if (CI->getZExtValue() < 2)
4220 setValue(&I, DAG.getConstant(-1, MVT::i32));
4221 else
4222 setValue(&I, DAG.getConstant(0, MVT::i32));
4223 return 0;
4224 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004225 case Intrinsic::var_annotation:
4226 // Discard annotate attributes
4227 return 0;
4228
4229 case Intrinsic::init_trampoline: {
4230 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4231
4232 SDValue Ops[6];
4233 Ops[0] = getRoot();
4234 Ops[1] = getValue(I.getOperand(1));
4235 Ops[2] = getValue(I.getOperand(2));
4236 Ops[3] = getValue(I.getOperand(3));
4237 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4238 Ops[5] = DAG.getSrcValue(F);
4239
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004240 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004241 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
Dan Gohmanfc166572009-04-09 23:54:40 +00004242 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004243
4244 setValue(&I, Tmp);
4245 DAG.setRoot(Tmp.getValue(1));
4246 return 0;
4247 }
4248
4249 case Intrinsic::gcroot:
4250 if (GFI) {
4251 Value *Alloca = I.getOperand(1);
4252 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004253
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004254 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4255 GFI->addStackRoot(FI->getIndex(), TypeMap);
4256 }
4257 return 0;
4258
4259 case Intrinsic::gcread:
4260 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004261 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004262 return 0;
4263
4264 case Intrinsic::flt_rounds: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004265 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004266 return 0;
4267 }
4268
4269 case Intrinsic::trap: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004270 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004271 return 0;
4272 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004273
Bill Wendlingef375462008-11-21 02:38:44 +00004274 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004275 return implVisitAluOverflow(I, ISD::UADDO);
4276 case Intrinsic::sadd_with_overflow:
4277 return implVisitAluOverflow(I, ISD::SADDO);
4278 case Intrinsic::usub_with_overflow:
4279 return implVisitAluOverflow(I, ISD::USUBO);
4280 case Intrinsic::ssub_with_overflow:
4281 return implVisitAluOverflow(I, ISD::SSUBO);
4282 case Intrinsic::umul_with_overflow:
4283 return implVisitAluOverflow(I, ISD::UMULO);
4284 case Intrinsic::smul_with_overflow:
4285 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004286
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004287 case Intrinsic::prefetch: {
4288 SDValue Ops[4];
4289 Ops[0] = getRoot();
4290 Ops[1] = getValue(I.getOperand(1));
4291 Ops[2] = getValue(I.getOperand(2));
4292 Ops[3] = getValue(I.getOperand(3));
Owen Anderson825b72b2009-08-11 20:47:22 +00004293 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004294 return 0;
4295 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004296
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004297 case Intrinsic::memory_barrier: {
4298 SDValue Ops[6];
4299 Ops[0] = getRoot();
4300 for (int x = 1; x < 6; ++x)
4301 Ops[x] = getValue(I.getOperand(x));
4302
Owen Anderson825b72b2009-08-11 20:47:22 +00004303 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004304 return 0;
4305 }
4306 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004307 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004308 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004309 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004310 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4311 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004312 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004313 getValue(I.getOperand(2)),
4314 getValue(I.getOperand(3)),
4315 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004316 setValue(&I, L);
4317 DAG.setRoot(L.getValue(1));
4318 return 0;
4319 }
4320 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004321 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004322 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004323 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004324 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004325 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004326 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004327 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004328 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004329 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004330 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004331 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004332 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004333 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004334 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004335 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004336 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004337 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004339 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004340 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004341 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004342 }
4343}
4344
Dan Gohman98ca4f22009-08-05 01:29:28 +00004345/// Test if the given instruction is in a position to be optimized
4346/// with a tail-call. This roughly means that it's in a block with
4347/// a return and there's nothing that needs to be scheduled
4348/// between it and the return.
4349///
4350/// This function only tests target-independent requirements.
4351/// For target-dependent requirements, a target should override
4352/// TargetLowering::IsEligibleForTailCallOptimization.
4353///
4354static bool
4355isInTailCallPosition(const Instruction *I, Attributes RetAttr,
4356 const TargetLowering &TLI) {
4357 const BasicBlock *ExitBB = I->getParent();
4358 const TerminatorInst *Term = ExitBB->getTerminator();
4359 const ReturnInst *Ret = dyn_cast<ReturnInst>(Term);
4360 const Function *F = ExitBB->getParent();
4361
4362 // The block must end in a return statement or an unreachable.
4363 if (!Ret && !isa<UnreachableInst>(Term)) return false;
4364
4365 // If I will have a chain, make sure no other instruction that will have a
4366 // chain interposes between I and the return.
4367 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
4368 !I->isSafeToSpeculativelyExecute())
4369 for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ;
4370 --BBI) {
4371 if (&*BBI == I)
4372 break;
4373 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
4374 !BBI->isSafeToSpeculativelyExecute())
4375 return false;
4376 }
4377
4378 // If the block ends with a void return or unreachable, it doesn't matter
4379 // what the call's return type is.
4380 if (!Ret || Ret->getNumOperands() == 0) return true;
4381
4382 // Conservatively require the attributes of the call to match those of
4383 // the return.
4384 if (F->getAttributes().getRetAttributes() != RetAttr)
4385 return false;
4386
4387 // Otherwise, make sure the unmodified return value of I is the return value.
4388 for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ;
4389 U = dyn_cast<Instruction>(U->getOperand(0))) {
4390 if (!U)
4391 return false;
4392 if (!U->hasOneUse())
4393 return false;
4394 if (U == I)
4395 break;
4396 // Check for a truly no-op truncate.
4397 if (isa<TruncInst>(U) &&
4398 TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType()))
4399 continue;
4400 // Check for a truly no-op bitcast.
4401 if (isa<BitCastInst>(U) &&
4402 (U->getOperand(0)->getType() == U->getType() ||
4403 (isa<PointerType>(U->getOperand(0)->getType()) &&
4404 isa<PointerType>(U->getType()))))
4405 continue;
4406 // Otherwise it's not a true no-op.
4407 return false;
4408 }
4409
4410 return true;
4411}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004412
4413void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004414 bool isTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004415 MachineBasicBlock *LandingPad) {
4416 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4417 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4418 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4419 unsigned BeginLabel = 0, EndLabel = 0;
4420
4421 TargetLowering::ArgListTy Args;
4422 TargetLowering::ArgListEntry Entry;
4423 Args.reserve(CS.arg_size());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004424 unsigned j = 1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004425 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Dan Gohman98ca4f22009-08-05 01:29:28 +00004426 i != e; ++i, ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004427 SDValue ArgNode = getValue(*i);
4428 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4429
4430 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004431 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4432 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4433 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4434 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4435 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4436 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004437 Entry.Alignment = CS.getParamAlignment(attrInd);
4438 Args.push_back(Entry);
4439 }
4440
4441 if (LandingPad && MMI) {
4442 // Insert a label before the invoke call to mark the try range. This can be
4443 // used to detect deletion of the invoke via the MachineModuleInfo.
4444 BeginLabel = MMI->NextLabelID();
Jim Grosbach1b747ad2009-08-11 00:09:57 +00004445
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004446 // Both PendingLoads and PendingExports must be flushed here;
4447 // this call might not return.
4448 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004449 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4450 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004451 }
4452
Dan Gohman98ca4f22009-08-05 01:29:28 +00004453 // Check if target-independent constraints permit a tail call here.
4454 // Target-dependent constraints are checked within TLI.LowerCallTo.
4455 if (isTailCall &&
4456 !isInTailCallPosition(CS.getInstruction(),
4457 CS.getAttributes().getRetAttributes(),
4458 TLI))
4459 isTailCall = false;
4460
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004461 std::pair<SDValue,SDValue> Result =
4462 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004463 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004464 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004465 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004466 CS.getCallingConv(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00004467 isTailCall,
4468 !CS.getInstruction()->use_empty(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004469 Callee, Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004470 assert((isTailCall || Result.second.getNode()) &&
4471 "Non-null chain expected with non-tail call!");
4472 assert((Result.second.getNode() || !Result.first.getNode()) &&
4473 "Null value expected with tail call!");
4474 if (Result.first.getNode())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004475 setValue(CS.getInstruction(), Result.first);
Dan Gohman98ca4f22009-08-05 01:29:28 +00004476 // As a special case, a null chain means that a tail call has
4477 // been emitted and the DAG root is already updated.
4478 if (Result.second.getNode())
4479 DAG.setRoot(Result.second);
4480 else
4481 HasTailCall = true;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004482
4483 if (LandingPad && MMI) {
4484 // Insert a label at the end of the invoke call to mark the try range. This
4485 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4486 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004487 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4488 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004489
4490 // Inform MachineModuleInfo of range.
4491 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4492 }
4493}
4494
4495
4496void SelectionDAGLowering::visitCall(CallInst &I) {
4497 const char *RenameFn = 0;
4498 if (Function *F = I.getCalledFunction()) {
4499 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004500 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4501 if (II) {
4502 if (unsigned IID = II->getIntrinsicID(F)) {
4503 RenameFn = visitIntrinsicCall(I, IID);
4504 if (!RenameFn)
4505 return;
4506 }
4507 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004508 if (unsigned IID = F->getIntrinsicID()) {
4509 RenameFn = visitIntrinsicCall(I, IID);
4510 if (!RenameFn)
4511 return;
4512 }
4513 }
4514
4515 // Check for well-known libc/libm calls. If the function is internal, it
4516 // can't be a library call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004517 if (!F->hasLocalLinkage() && F->hasName()) {
4518 StringRef Name = F->getName();
4519 if (Name == "copysign" || Name == "copysignf") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004520 if (I.getNumOperands() == 3 && // Basic sanity checks.
4521 I.getOperand(1)->getType()->isFloatingPoint() &&
4522 I.getType() == I.getOperand(1)->getType() &&
4523 I.getType() == I.getOperand(2)->getType()) {
4524 SDValue LHS = getValue(I.getOperand(1));
4525 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004526 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004527 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004528 return;
4529 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004530 } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004531 if (I.getNumOperands() == 2 && // Basic sanity checks.
4532 I.getOperand(1)->getType()->isFloatingPoint() &&
4533 I.getType() == I.getOperand(1)->getType()) {
4534 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004535 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004536 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004537 return;
4538 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004539 } else if (Name == "sin" || Name == "sinf" || Name == "sinl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004540 if (I.getNumOperands() == 2 && // Basic sanity checks.
4541 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00004542 I.getType() == I.getOperand(1)->getType() &&
4543 I.onlyReadsMemory()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004544 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004545 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004546 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004547 return;
4548 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004549 } else if (Name == "cos" || Name == "cosf" || Name == "cosl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004550 if (I.getNumOperands() == 2 && // Basic sanity checks.
4551 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00004552 I.getType() == I.getOperand(1)->getType() &&
4553 I.onlyReadsMemory()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004554 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004555 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004556 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004557 return;
4558 }
Dale Johannesen52fb79b2009-09-25 17:23:22 +00004559 } else if (Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl") {
4560 if (I.getNumOperands() == 2 && // Basic sanity checks.
4561 I.getOperand(1)->getType()->isFloatingPoint() &&
Dale Johannesena45bfd32009-09-25 18:00:35 +00004562 I.getType() == I.getOperand(1)->getType() &&
4563 I.onlyReadsMemory()) {
Dale Johannesen52fb79b2009-09-25 17:23:22 +00004564 SDValue Tmp = getValue(I.getOperand(1));
4565 setValue(&I, DAG.getNode(ISD::FSQRT, getCurDebugLoc(),
4566 Tmp.getValueType(), Tmp));
4567 return;
4568 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004569 }
4570 }
4571 } else if (isa<InlineAsm>(I.getOperand(0))) {
4572 visitInlineAsm(&I);
4573 return;
4574 }
4575
4576 SDValue Callee;
4577 if (!RenameFn)
4578 Callee = getValue(I.getOperand(0));
4579 else
Bill Wendling056292f2008-09-16 21:48:12 +00004580 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004581
Dan Gohman98ca4f22009-08-05 01:29:28 +00004582 // Check if we can potentially perform a tail call. More detailed
4583 // checking is be done within LowerCallTo, after more information
4584 // about the call is known.
4585 bool isTailCall = PerformTailCallOpt && I.isTailCall();
4586
4587 LowerCallTo(&I, Callee, isTailCall);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004588}
4589
4590
4591/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004592/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004593/// Chain/Flag as the input and updates them for the output Chain/Flag.
4594/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004595SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004596 SDValue &Chain,
4597 SDValue *Flag) const {
4598 // Assemble the legal parts into the final values.
4599 SmallVector<SDValue, 4> Values(ValueVTs.size());
4600 SmallVector<SDValue, 8> Parts;
4601 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4602 // Copy the legal parts from the registers.
Owen Andersone50ed302009-08-10 22:56:29 +00004603 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00004604 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004605 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004606
4607 Parts.resize(NumRegs);
4608 for (unsigned i = 0; i != NumRegs; ++i) {
4609 SDValue P;
4610 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004611 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004612 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004613 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004614 *Flag = P.getValue(2);
4615 }
4616 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004617
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004618 // If the source register was virtual and if we know something about it,
4619 // add an assert node.
4620 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4621 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4622 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4623 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4624 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4625 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004626
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004627 unsigned RegSize = RegisterVT.getSizeInBits();
4628 unsigned NumSignBits = LOI.NumSignBits;
4629 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004630
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004631 // FIXME: We capture more information than the dag can represent. For
4632 // now, just use the tightest assertzext/assertsext possible.
4633 bool isSExt = true;
Owen Anderson825b72b2009-08-11 20:47:22 +00004634 EVT FromVT(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004635 if (NumSignBits == RegSize)
Owen Anderson825b72b2009-08-11 20:47:22 +00004636 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004637 else if (NumZeroBits >= RegSize-1)
Owen Anderson825b72b2009-08-11 20:47:22 +00004638 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004639 else if (NumSignBits > RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004640 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004641 else if (NumZeroBits >= RegSize-8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004642 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643 else if (NumSignBits > RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004644 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004645 else if (NumZeroBits >= RegSize-16)
Owen Anderson825b72b2009-08-11 20:47:22 +00004646 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004647 else if (NumSignBits > RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004648 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004649 else if (NumZeroBits >= RegSize-32)
Owen Anderson825b72b2009-08-11 20:47:22 +00004650 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004651
Owen Anderson825b72b2009-08-11 20:47:22 +00004652 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004653 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004654 RegisterVT, P, DAG.getValueType(FromVT));
4655
4656 }
4657 }
4658 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004659
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004660 Parts[i] = P;
4661 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004662
Scott Michelfdc40a02009-02-17 22:15:04 +00004663 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004664 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004665 Part += NumRegs;
4666 Parts.clear();
4667 }
4668
Dale Johannesen66978ee2009-01-31 02:22:37 +00004669 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004670 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4671 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004672}
4673
4674/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004675/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004676/// Chain/Flag as the input and updates them for the output Chain/Flag.
4677/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004678void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004679 SDValue &Chain, SDValue *Flag) const {
4680 // Get the list of the values's legal parts.
4681 unsigned NumRegs = Regs.size();
4682 SmallVector<SDValue, 8> Parts(NumRegs);
4683 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00004684 EVT ValueVT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00004685 unsigned NumParts = TLI->getNumRegisters(*DAG.getContext(), ValueVT);
Owen Andersone50ed302009-08-10 22:56:29 +00004686 EVT RegisterVT = RegVTs[Value];
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004687
Dale Johannesen66978ee2009-01-31 02:22:37 +00004688 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004689 &Parts[Part], NumParts, RegisterVT);
4690 Part += NumParts;
4691 }
4692
4693 // Copy the parts into the registers.
4694 SmallVector<SDValue, 8> Chains(NumRegs);
4695 for (unsigned i = 0; i != NumRegs; ++i) {
4696 SDValue Part;
4697 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004698 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004699 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004700 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004701 *Flag = Part.getValue(1);
4702 }
4703 Chains[i] = Part.getValue(0);
4704 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004705
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004706 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004707 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004708 // flagged to it. That is the CopyToReg nodes and the user are considered
4709 // a single scheduling unit. If we create a TokenFactor and return it as
4710 // chain, then the TokenFactor is both a predecessor (operand) of the
4711 // user as well as a successor (the TF operands are flagged to the user).
4712 // c1, f1 = CopyToReg
4713 // c2, f2 = CopyToReg
4714 // c3 = TokenFactor c1, c2
4715 // ...
4716 // = op c3, ..., f2
4717 Chain = Chains[NumRegs-1];
4718 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004719 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004720}
4721
4722/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004723/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004724/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004725void RegsForValue::AddInlineAsmOperands(unsigned Code,
4726 bool HasMatching,unsigned MatchingIdx,
4727 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004728 std::vector<SDValue> &Ops) const {
Owen Andersone50ed302009-08-10 22:56:29 +00004729 EVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004730 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4731 unsigned Flag = Code | (Regs.size() << 3);
4732 if (HasMatching)
4733 Flag |= 0x80000000 | (MatchingIdx << 16);
4734 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004735 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
Owen Anderson23b9b192009-08-12 00:36:31 +00004736 unsigned NumRegs = TLI->getNumRegisters(*DAG.getContext(), ValueVTs[Value]);
Owen Andersone50ed302009-08-10 22:56:29 +00004737 EVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004738 for (unsigned i = 0; i != NumRegs; ++i) {
4739 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004740 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004741 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004742 }
4743}
4744
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004745/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004746/// i.e. it isn't a stack pointer or some other special register, return the
4747/// register class for the register. Otherwise, return null.
4748static const TargetRegisterClass *
4749isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4750 const TargetLowering &TLI,
4751 const TargetRegisterInfo *TRI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004752 EVT FoundVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004753 const TargetRegisterClass *FoundRC = 0;
4754 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4755 E = TRI->regclass_end(); RCI != E; ++RCI) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004756 EVT ThisVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004757
4758 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004759 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004760 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4761 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4762 I != E; ++I) {
4763 if (TLI.isTypeLegal(*I)) {
4764 // If we have already found this register in a different register class,
4765 // choose the one with the largest VT specified. For example, on
4766 // PowerPC, we favor f64 register classes over f32.
Owen Anderson825b72b2009-08-11 20:47:22 +00004767 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004768 ThisVT = *I;
4769 break;
4770 }
4771 }
4772 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004773
Owen Anderson825b72b2009-08-11 20:47:22 +00004774 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004775
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004776 // NOTE: This isn't ideal. In particular, this might allocate the
4777 // frame pointer in functions that need it (due to them not being taken
4778 // out of allocation, because a variable sized allocation hasn't been seen
4779 // yet). This is a slight code pessimization, but should still work.
4780 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4781 E = RC->allocation_order_end(MF); I != E; ++I)
4782 if (*I == Reg) {
4783 // We found a matching register class. Keep looking at others in case
4784 // we find one with larger registers that this physreg is also in.
4785 FoundRC = RC;
4786 FoundVT = ThisVT;
4787 break;
4788 }
4789 }
4790 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004791}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004792
4793
4794namespace llvm {
4795/// AsmOperandInfo - This contains information for each constraint that we are
4796/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004797class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004798 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004799public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004800 /// CallOperand - If this is the result output operand or a clobber
4801 /// this is null, otherwise it is the incoming operand to the CallInst.
4802 /// This gets modified as the asm is processed.
4803 SDValue CallOperand;
4804
4805 /// AssignedRegs - If this is a register or register class operand, this
4806 /// contains the set of register corresponding to the operand.
4807 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004808
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004809 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4810 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4811 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004812
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004813 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4814 /// busy in OutputRegs/InputRegs.
4815 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004816 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004817 std::set<unsigned> &InputRegs,
4818 const TargetRegisterInfo &TRI) const {
4819 if (isOutReg) {
4820 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4821 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4822 }
4823 if (isInReg) {
4824 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4825 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4826 }
4827 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004828
Owen Andersone50ed302009-08-10 22:56:29 +00004829 /// getCallOperandValEVT - Return the EVT of the Value* that this operand
Chris Lattner81249c92008-10-17 17:05:25 +00004830 /// corresponds to. If there is no Value* for this operand, it returns
Owen Anderson825b72b2009-08-11 20:47:22 +00004831 /// MVT::Other.
Owen Anderson1d0be152009-08-13 21:58:54 +00004832 EVT getCallOperandValEVT(LLVMContext &Context,
4833 const TargetLowering &TLI,
Chris Lattner81249c92008-10-17 17:05:25 +00004834 const TargetData *TD) const {
Owen Anderson825b72b2009-08-11 20:47:22 +00004835 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004836
Chris Lattner81249c92008-10-17 17:05:25 +00004837 if (isa<BasicBlock>(CallOperandVal))
4838 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004839
Chris Lattner81249c92008-10-17 17:05:25 +00004840 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004841
Chris Lattner81249c92008-10-17 17:05:25 +00004842 // If this is an indirect operand, the operand is a pointer to the
4843 // accessed type.
4844 if (isIndirect)
4845 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004846
Chris Lattner81249c92008-10-17 17:05:25 +00004847 // If OpTy is not a single value, it may be a struct/union that we
4848 // can tile with integers.
4849 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4850 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4851 switch (BitSize) {
4852 default: break;
4853 case 1:
4854 case 8:
4855 case 16:
4856 case 32:
4857 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004858 case 128:
Owen Anderson1d0be152009-08-13 21:58:54 +00004859 OpTy = IntegerType::get(Context, BitSize);
Chris Lattner81249c92008-10-17 17:05:25 +00004860 break;
4861 }
4862 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004863
Chris Lattner81249c92008-10-17 17:05:25 +00004864 return TLI.getValueType(OpTy, true);
4865 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004866
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004867private:
4868 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4869 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004870 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004871 const TargetRegisterInfo &TRI) {
4872 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4873 Regs.insert(Reg);
4874 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4875 for (; *Aliases; ++Aliases)
4876 Regs.insert(*Aliases);
4877 }
4878};
4879} // end llvm namespace.
4880
4881
4882/// GetRegistersForValue - Assign registers (virtual or physical) for the
4883/// specified operand. We prefer to assign virtual registers, to allow the
4884/// register allocator handle the assignment process. However, if the asm uses
4885/// features that we can't model on machineinstrs, we have SDISel do the
4886/// allocation. This produces generally horrible, but correct, code.
4887///
4888/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004889/// Input and OutputRegs are the set of already allocated physical registers.
4890///
4891void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004892GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004893 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004894 std::set<unsigned> &InputRegs) {
Dan Gohman0d24bfb2009-08-15 02:06:22 +00004895 LLVMContext &Context = FuncInfo.Fn->getContext();
Owen Anderson23b9b192009-08-12 00:36:31 +00004896
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004897 // Compute whether this value requires an input register, an output register,
4898 // or both.
4899 bool isOutReg = false;
4900 bool isInReg = false;
4901 switch (OpInfo.Type) {
4902 case InlineAsm::isOutput:
4903 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004904
4905 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004906 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004907 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004908 break;
4909 case InlineAsm::isInput:
4910 isInReg = true;
4911 isOutReg = false;
4912 break;
4913 case InlineAsm::isClobber:
4914 isOutReg = true;
4915 isInReg = true;
4916 break;
4917 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004918
4919
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004920 MachineFunction &MF = DAG.getMachineFunction();
4921 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004922
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004923 // If this is a constraint for a single physreg, or a constraint for a
4924 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004925 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004926 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4927 OpInfo.ConstraintVT);
4928
4929 unsigned NumRegs = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00004930 if (OpInfo.ConstraintVT != MVT::Other) {
Chris Lattner01426e12008-10-21 00:45:36 +00004931 // If this is a FP input in an integer register (or visa versa) insert a bit
4932 // cast of the input value. More generally, handle any case where the input
4933 // value disagrees with the register class we plan to stick this in.
4934 if (OpInfo.Type == InlineAsm::isInput &&
4935 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
Owen Andersone50ed302009-08-10 22:56:29 +00004936 // Try to convert to the first EVT that the reg class contains. If the
Chris Lattner01426e12008-10-21 00:45:36 +00004937 // types are identical size, use a bitcast to convert (e.g. two differing
4938 // vector types).
Owen Andersone50ed302009-08-10 22:56:29 +00004939 EVT RegVT = *PhysReg.second->vt_begin();
Chris Lattner01426e12008-10-21 00:45:36 +00004940 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004941 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004942 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004943 OpInfo.ConstraintVT = RegVT;
4944 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4945 // If the input is a FP value and we want it in FP registers, do a
4946 // bitcast to the corresponding integer type. This turns an f64 value
4947 // into i64, which can be passed with two i32 values on a 32-bit
4948 // machine.
Owen Anderson23b9b192009-08-12 00:36:31 +00004949 RegVT = EVT::getIntegerVT(Context,
4950 OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004951 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004952 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004953 OpInfo.ConstraintVT = RegVT;
4954 }
4955 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004956
Owen Anderson23b9b192009-08-12 00:36:31 +00004957 NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004958 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004959
Owen Andersone50ed302009-08-10 22:56:29 +00004960 EVT RegVT;
4961 EVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004962
4963 // If this is a constraint for a specific physical register, like {r17},
4964 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004965 if (unsigned AssignedReg = PhysReg.first) {
4966 const TargetRegisterClass *RC = PhysReg.second;
Owen Anderson825b72b2009-08-11 20:47:22 +00004967 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004968 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004969
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004970 // Get the actual register value type. This is important, because the user
4971 // may have asked for (e.g.) the AX register in i32 type. We need to
4972 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004973 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004974
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004975 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004976 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004977
4978 // If this is an expanded reference, add the rest of the regs to Regs.
4979 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004980 TargetRegisterClass::iterator I = RC->begin();
4981 for (; *I != AssignedReg; ++I)
4982 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004983
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004984 // Already added the first reg.
4985 --NumRegs; ++I;
4986 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004987 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004988 Regs.push_back(*I);
4989 }
4990 }
4991 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4992 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4993 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4994 return;
4995 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004996
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004997 // Otherwise, if this was a reference to an LLVM register class, create vregs
4998 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00004999 if (const TargetRegisterClass *RC = PhysReg.second) {
5000 RegVT = *RC->vt_begin();
Owen Anderson825b72b2009-08-11 20:47:22 +00005001 if (OpInfo.ConstraintVT == MVT::Other)
Evan Chengfb112882009-03-23 08:01:15 +00005002 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005003
Evan Chengfb112882009-03-23 08:01:15 +00005004 // Create the appropriate number of virtual registers.
5005 MachineRegisterInfo &RegInfo = MF.getRegInfo();
5006 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00005007 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005008
Evan Chengfb112882009-03-23 08:01:15 +00005009 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5010 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005011 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005012
5013 // This is a reference to a register class that doesn't directly correspond
5014 // to an LLVM register class. Allocate NumRegs consecutive, available,
5015 // registers from the class.
5016 std::vector<unsigned> RegClassRegs
5017 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
5018 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005019
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005020 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5021 unsigned NumAllocated = 0;
5022 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
5023 unsigned Reg = RegClassRegs[i];
5024 // See if this register is available.
5025 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
5026 (isInReg && InputRegs.count(Reg))) { // Already used.
5027 // Make sure we find consecutive registers.
5028 NumAllocated = 0;
5029 continue;
5030 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005031
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005032 // Check to see if this register is allocatable (i.e. don't give out the
5033 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005034 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
5035 if (!RC) { // Couldn't allocate this register.
5036 // Reset NumAllocated to make sure we return consecutive registers.
5037 NumAllocated = 0;
5038 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005039 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005040
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005041 // Okay, this register is good, we can use it.
5042 ++NumAllocated;
5043
5044 // If we allocated enough consecutive registers, succeed.
5045 if (NumAllocated == NumRegs) {
5046 unsigned RegStart = (i-NumAllocated)+1;
5047 unsigned RegEnd = i+1;
5048 // Mark all of the allocated registers used.
5049 for (unsigned i = RegStart; i != RegEnd; ++i)
5050 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005051
5052 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005053 OpInfo.ConstraintVT);
5054 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5055 return;
5056 }
5057 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005058
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005059 // Otherwise, we couldn't allocate enough registers for this.
5060}
5061
Evan Chengda43bcf2008-09-24 00:05:32 +00005062/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5063/// processed uses a memory 'm' constraint.
5064static bool
5065hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005066 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005067 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5068 InlineAsm::ConstraintInfo &CI = CInfos[i];
5069 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5070 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5071 if (CType == TargetLowering::C_Memory)
5072 return true;
5073 }
Chris Lattner6c147292009-04-30 00:48:50 +00005074
5075 // Indirect operand accesses access memory.
5076 if (CI.isIndirect)
5077 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005078 }
5079
5080 return false;
5081}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005082
5083/// visitInlineAsm - Handle a call to an InlineAsm object.
5084///
5085void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5086 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5087
5088 /// ConstraintOperands - Information about all of the constraints.
5089 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005090
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005091 std::set<unsigned> OutputRegs, InputRegs;
5092
5093 // Do a prepass over the constraints, canonicalizing them, and building up the
5094 // ConstraintOperands list.
5095 std::vector<InlineAsm::ConstraintInfo>
5096 ConstraintInfos = IA->ParseConstraints();
5097
Evan Chengda43bcf2008-09-24 00:05:32 +00005098 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005099
5100 SDValue Chain, Flag;
5101
5102 // We won't need to flush pending loads if this asm doesn't touch
5103 // memory and is nonvolatile.
5104 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005105 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005106 else
5107 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005108
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005109 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5110 unsigned ResNo = 0; // ResNo - The result number of the next output.
5111 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5112 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5113 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005114
Owen Anderson825b72b2009-08-11 20:47:22 +00005115 EVT OpVT = MVT::Other;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005116
5117 // Compute the value type for each operand.
5118 switch (OpInfo.Type) {
5119 case InlineAsm::isOutput:
5120 // Indirect outputs just consume an argument.
5121 if (OpInfo.isIndirect) {
5122 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5123 break;
5124 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005125
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005126 // The return value of the call is this value. As such, there is no
5127 // corresponding argument.
Owen Anderson1d0be152009-08-13 21:58:54 +00005128 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
5129 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005130 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5131 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5132 } else {
5133 assert(ResNo == 0 && "Asm only has one result!");
5134 OpVT = TLI.getValueType(CS.getType());
5135 }
5136 ++ResNo;
5137 break;
5138 case InlineAsm::isInput:
5139 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5140 break;
5141 case InlineAsm::isClobber:
5142 // Nothing to do.
5143 break;
5144 }
5145
5146 // If this is an input or an indirect output, process the call argument.
5147 // BasicBlocks are labels, currently appearing only in asm's.
5148 if (OpInfo.CallOperandVal) {
Dale Johannesen5339c552009-07-20 23:27:39 +00005149 // Strip bitcasts, if any. This mostly comes up for functions.
Dale Johannesen76711242009-08-06 22:45:51 +00005150 OpInfo.CallOperandVal = OpInfo.CallOperandVal->stripPointerCasts();
5151
Chris Lattner81249c92008-10-17 17:05:25 +00005152 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005153 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005154 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005155 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005156 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005157
Owen Anderson1d0be152009-08-13 21:58:54 +00005158 OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005159 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005160
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005161 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005162 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005163
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005164 // Second pass over the constraints: compute which constraint option to use
5165 // and assign registers to constraints that want a specific physreg.
5166 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5167 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005168
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005169 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005170 // matching input. If their types mismatch, e.g. one is an integer, the
5171 // other is floating point, or their sizes are different, flag it as an
5172 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005173 if (OpInfo.hasMatchingInput()) {
5174 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5175 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005176 if ((OpInfo.ConstraintVT.isInteger() !=
5177 Input.ConstraintVT.isInteger()) ||
5178 (OpInfo.ConstraintVT.getSizeInBits() !=
5179 Input.ConstraintVT.getSizeInBits())) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005180 llvm_report_error("Unsupported asm: input constraint"
Torok Edwin7d696d82009-07-11 13:10:19 +00005181 " with a matching output constraint of incompatible"
5182 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005183 }
5184 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005185 }
5186 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005187
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005188 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005189 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005190
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005191 // If this is a memory input, and if the operand is not indirect, do what we
5192 // need to to provide an address for the memory input.
5193 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5194 !OpInfo.isIndirect) {
5195 assert(OpInfo.Type == InlineAsm::isInput &&
5196 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005197
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005198 // Memory operands really want the address of the value. If we don't have
5199 // an indirect input, put it in the constpool if we can, otherwise spill
5200 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005201
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005202 // If the operand is a float, integer, or vector constant, spill to a
5203 // constant pool entry to get its address.
5204 Value *OpVal = OpInfo.CallOperandVal;
5205 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5206 isa<ConstantVector>(OpVal)) {
5207 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5208 TLI.getPointerTy());
5209 } else {
5210 // Otherwise, create a stack slot and emit a store to it before the
5211 // asm.
5212 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005213 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005214 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5215 MachineFunction &MF = DAG.getMachineFunction();
5216 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5217 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005218 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005219 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005220 OpInfo.CallOperand = StackSlot;
5221 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005222
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005223 // There is no longer a Value* corresponding to this operand.
5224 OpInfo.CallOperandVal = 0;
5225 // It is now an indirect operand.
5226 OpInfo.isIndirect = true;
5227 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005228
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005229 // If this constraint is for a specific register, allocate it before
5230 // anything else.
5231 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005232 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005233 }
5234 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005235
5236
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005237 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005238 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005239 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5240 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005241
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005242 // C_Register operands have already been allocated, Other/Memory don't need
5243 // to be.
5244 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005245 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005246 }
5247
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005248 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5249 std::vector<SDValue> AsmNodeOperands;
5250 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5251 AsmNodeOperands.push_back(
Owen Anderson825b72b2009-08-11 20:47:22 +00005252 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005253
5254
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005255 // Loop over all of the inputs, copying the operand values into the
5256 // appropriate registers and processing the output regs.
5257 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005258
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005259 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5260 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005261
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005262 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5263 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5264
5265 switch (OpInfo.Type) {
5266 case InlineAsm::isOutput: {
5267 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5268 OpInfo.ConstraintType != TargetLowering::C_Register) {
5269 // Memory output, or 'other' output (e.g. 'X' constraint).
5270 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5271
5272 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005273 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5274 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005275 TLI.getPointerTy()));
5276 AsmNodeOperands.push_back(OpInfo.CallOperand);
5277 break;
5278 }
5279
5280 // Otherwise, this is a register or register class output.
5281
5282 // Copy the output from the appropriate register. Find a register that
5283 // we can use.
5284 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005285 llvm_report_error("Couldn't allocate output reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005286 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005287 }
5288
5289 // If this is an indirect operand, store through the pointer after the
5290 // asm.
5291 if (OpInfo.isIndirect) {
5292 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5293 OpInfo.CallOperandVal));
5294 } else {
5295 // This is the result value of the call.
Owen Anderson1d0be152009-08-13 21:58:54 +00005296 assert(CS.getType() != Type::getVoidTy(*DAG.getContext()) &&
5297 "Bad inline asm!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005298 // Concatenate this output onto the outputs list.
5299 RetValRegs.append(OpInfo.AssignedRegs);
5300 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005302 // Add information to the INLINEASM node to know that this register is
5303 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005304 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5305 6 /* EARLYCLOBBER REGDEF */ :
5306 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005307 false,
5308 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005309 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005310 break;
5311 }
5312 case InlineAsm::isInput: {
5313 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005314
Chris Lattner6bdcda32008-10-17 16:47:46 +00005315 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005316 // If this is required to match an output register we have already set,
5317 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005318 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005319
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005320 // Scan until we find the definition we already emitted of this operand.
5321 // When we find it, create a RegsForValue operand.
5322 unsigned CurOp = 2; // The first operand.
5323 for (; OperandNo; --OperandNo) {
5324 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005325 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005326 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005327 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5328 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5329 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005330 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005331 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005332 }
5333
Evan Cheng697cbbf2009-03-20 18:03:34 +00005334 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005335 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005336 if ((OpFlag & 7) == 2 /*REGDEF*/
5337 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5338 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005339 if (OpInfo.isIndirect) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005340 llvm_report_error("Don't know how to handle tied indirect "
Torok Edwin7d696d82009-07-11 13:10:19 +00005341 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005342 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005343 RegsForValue MatchedRegs;
5344 MatchedRegs.TLI = &TLI;
5345 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Owen Andersone50ed302009-08-10 22:56:29 +00005346 EVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
Evan Chengfb112882009-03-23 08:01:15 +00005347 MatchedRegs.RegVTs.push_back(RegVT);
5348 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005349 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005350 i != e; ++i)
5351 MatchedRegs.Regs.
5352 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005353
5354 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005355 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5356 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005357 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5358 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005359 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005360 break;
5361 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005362 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5363 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5364 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005365 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005366 // See InlineAsm.h isUseOperandTiedToDef.
5367 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005368 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005369 TLI.getPointerTy()));
5370 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5371 break;
5372 }
5373 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005374
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005375 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005376 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005377 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005378
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005379 std::vector<SDValue> Ops;
5380 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005381 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005382 if (Ops.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005383 llvm_report_error("Invalid operand for inline asm"
Torok Edwin7d696d82009-07-11 13:10:19 +00005384 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005385 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005386
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005387 // Add information to the INLINEASM node to know about this input.
5388 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005389 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005390 TLI.getPointerTy()));
5391 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5392 break;
5393 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5394 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5395 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5396 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005397
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005398 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005399 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5400 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005401 TLI.getPointerTy()));
5402 AsmNodeOperands.push_back(InOperandVal);
5403 break;
5404 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005405
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005406 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5407 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5408 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005409 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005410 "Don't know how to handle indirect register inputs yet!");
5411
5412 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005413 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005414 llvm_report_error("Couldn't allocate input reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005415 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005416 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005417
Dale Johannesen66978ee2009-01-31 02:22:37 +00005418 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5419 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005420
Evan Cheng697cbbf2009-03-20 18:03:34 +00005421 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005422 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005423 break;
5424 }
5425 case InlineAsm::isClobber: {
5426 // Add the clobbered value to the operand list, so that the register
5427 // allocator is aware that the physreg got clobbered.
5428 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005429 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005430 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005431 break;
5432 }
5433 }
5434 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005435
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005436 // Finish up input operands.
5437 AsmNodeOperands[0] = Chain;
5438 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005439
Dale Johannesen66978ee2009-01-31 02:22:37 +00005440 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005441 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005442 &AsmNodeOperands[0], AsmNodeOperands.size());
5443 Flag = Chain.getValue(1);
5444
5445 // If this asm returns a register value, copy the result from that register
5446 // and set it as the value of the call.
5447 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005448 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005449 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005450
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005451 // FIXME: Why don't we do this for inline asms with MRVs?
5452 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
Owen Andersone50ed302009-08-10 22:56:29 +00005453 EVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005454
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005455 // If any of the results of the inline asm is a vector, it may have the
5456 // wrong width/num elts. This can happen for register classes that can
5457 // contain multiple different value types. The preg or vreg allocated may
5458 // not have the same VT as was expected. Convert it to the right type
5459 // with bit_convert.
5460 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005461 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005462 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005463
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005464 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005465 ResultType.isInteger() && Val.getValueType().isInteger()) {
5466 // If a result value was tied to an input value, the computed result may
5467 // have a wider width than the expected result. Extract the relevant
5468 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005469 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005470 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005471
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005472 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005473 }
Dan Gohman95915732008-10-18 01:03:45 +00005474
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005475 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005476 // Don't need to use this as a chain in this case.
5477 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5478 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005479 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005480
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005481 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005482
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005483 // Process indirect outputs, first output all of the flagged copies out of
5484 // physregs.
5485 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5486 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5487 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005488 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5489 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005490 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005491
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005492 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005493
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005494 // Emit the non-flagged stores from the physregs.
5495 SmallVector<SDValue, 8> OutChains;
5496 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005497 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005498 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005499 getValue(StoresToEmit[i].second),
5500 StoresToEmit[i].second, 0));
5501 if (!OutChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00005502 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005503 &OutChains[0], OutChains.size());
5504 DAG.setRoot(Chain);
5505}
5506
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005507void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005508 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005509 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005510 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005511 DAG.getSrcValue(I.getOperand(1))));
5512}
5513
5514void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005515 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5516 getRoot(), getValue(I.getOperand(0)),
5517 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005518 setValue(&I, V);
5519 DAG.setRoot(V.getValue(1));
5520}
5521
5522void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005523 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005524 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005525 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005526 DAG.getSrcValue(I.getOperand(1))));
5527}
5528
5529void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005530 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00005531 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005532 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005533 getValue(I.getOperand(2)),
5534 DAG.getSrcValue(I.getOperand(1)),
5535 DAG.getSrcValue(I.getOperand(2))));
5536}
5537
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005538/// TargetLowering::LowerCallTo - This is the default LowerCallTo
Dan Gohman98ca4f22009-08-05 01:29:28 +00005539/// implementation, which just calls LowerCall.
5540/// FIXME: When all targets are
5541/// migrated to using LowerCall, this hook should be integrated into SDISel.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005542std::pair<SDValue, SDValue>
5543TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5544 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005545 bool isInreg, unsigned NumFixedArgs,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00005546 CallingConv::ID CallConv, bool isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005547 bool isReturnValueUsed,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005548 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005549 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00005550
Dan Gohman1937e2f2008-09-16 01:42:28 +00005551 assert((!isTailCall || PerformTailCallOpt) &&
5552 "isTailCall set when tail-call optimizations are disabled!");
5553
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005554 // Handle all of the outgoing arguments.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005555 SmallVector<ISD::OutputArg, 32> Outs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005556 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00005557 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005558 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5559 for (unsigned Value = 0, NumValues = ValueVTs.size();
5560 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005561 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005562 const Type *ArgTy = VT.getTypeForEVT(RetTy->getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005563 SDValue Op = SDValue(Args[i].Node.getNode(),
5564 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005565 ISD::ArgFlagsTy Flags;
5566 unsigned OriginalAlignment =
5567 getTargetData()->getABITypeAlignment(ArgTy);
5568
5569 if (Args[i].isZExt)
5570 Flags.setZExt();
5571 if (Args[i].isSExt)
5572 Flags.setSExt();
5573 if (Args[i].isInReg)
5574 Flags.setInReg();
5575 if (Args[i].isSRet)
5576 Flags.setSRet();
5577 if (Args[i].isByVal) {
5578 Flags.setByVal();
5579 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5580 const Type *ElementTy = Ty->getElementType();
5581 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005582 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005583 // For ByVal, alignment should come from FE. BE will guess if this
5584 // info is not there but there are cases it cannot get right.
5585 if (Args[i].Alignment)
5586 FrameAlign = Args[i].Alignment;
5587 Flags.setByValAlign(FrameAlign);
5588 Flags.setByValSize(FrameSize);
5589 }
5590 if (Args[i].isNest)
5591 Flags.setNest();
5592 Flags.setOrigAlign(OriginalAlignment);
5593
Owen Anderson23b9b192009-08-12 00:36:31 +00005594 EVT PartVT = getRegisterType(RetTy->getContext(), VT);
5595 unsigned NumParts = getNumRegisters(RetTy->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005596 SmallVector<SDValue, 4> Parts(NumParts);
5597 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5598
5599 if (Args[i].isSExt)
5600 ExtendKind = ISD::SIGN_EXTEND;
5601 else if (Args[i].isZExt)
5602 ExtendKind = ISD::ZERO_EXTEND;
5603
Dale Johannesen66978ee2009-01-31 02:22:37 +00005604 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005605
Dan Gohman98ca4f22009-08-05 01:29:28 +00005606 for (unsigned j = 0; j != NumParts; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005607 // if it isn't first piece, alignment must be 1
Dan Gohman98ca4f22009-08-05 01:29:28 +00005608 ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs);
5609 if (NumParts > 1 && j == 0)
5610 MyFlags.Flags.setSplit();
5611 else if (j != 0)
5612 MyFlags.Flags.setOrigAlign(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005613
Dan Gohman98ca4f22009-08-05 01:29:28 +00005614 Outs.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005615 }
5616 }
5617 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005618
Dan Gohman98ca4f22009-08-05 01:29:28 +00005619 // Handle the incoming return values from the call.
5620 SmallVector<ISD::InputArg, 32> Ins;
Owen Andersone50ed302009-08-10 22:56:29 +00005621 SmallVector<EVT, 4> RetTys;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005622 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005623 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005624 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00005625 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
5626 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005627 for (unsigned i = 0; i != NumRegs; ++i) {
5628 ISD::InputArg MyFlags;
5629 MyFlags.VT = RegisterVT;
5630 MyFlags.Used = isReturnValueUsed;
5631 if (RetSExt)
5632 MyFlags.Flags.setSExt();
5633 if (RetZExt)
5634 MyFlags.Flags.setZExt();
5635 if (isInreg)
5636 MyFlags.Flags.setInReg();
5637 Ins.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005638 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005639 }
5640
Dan Gohman98ca4f22009-08-05 01:29:28 +00005641 // Check if target-dependent constraints permit a tail call here.
5642 // Target-independent constraints should be checked by the caller.
5643 if (isTailCall &&
5644 !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG))
5645 isTailCall = false;
5646
5647 SmallVector<SDValue, 4> InVals;
5648 Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall,
5649 Outs, Ins, dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005650
5651 // Verify that the target's LowerCall behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005652 assert(Chain.getNode() && Chain.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005653 "LowerCall didn't return a valid chain!");
5654 assert((!isTailCall || InVals.empty()) &&
5655 "LowerCall emitted a return value for a tail call!");
5656 assert((isTailCall || InVals.size() == Ins.size()) &&
5657 "LowerCall didn't emit the correct number of values!");
5658 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5659 assert(InVals[i].getNode() &&
5660 "LowerCall emitted a null value!");
5661 assert(Ins[i].VT == InVals[i].getValueType() &&
5662 "LowerCall emitted a value with the wrong type!");
5663 });
Dan Gohman98ca4f22009-08-05 01:29:28 +00005664
5665 // For a tail call, the return value is merely live-out and there aren't
5666 // any nodes in the DAG representing it. Return a special value to
5667 // indicate that a tail call has been emitted and no more Instructions
5668 // should be processed in the current block.
5669 if (isTailCall) {
5670 DAG.setRoot(Chain);
5671 return std::make_pair(SDValue(), SDValue());
5672 }
5673
5674 // Collect the legal value parts into potentially illegal values
5675 // that correspond to the original function's return values.
5676 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5677 if (RetSExt)
5678 AssertOp = ISD::AssertSext;
5679 else if (RetZExt)
5680 AssertOp = ISD::AssertZext;
5681 SmallVector<SDValue, 4> ReturnValues;
5682 unsigned CurReg = 0;
5683 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
Owen Andersone50ed302009-08-10 22:56:29 +00005684 EVT VT = RetTys[I];
Owen Anderson23b9b192009-08-12 00:36:31 +00005685 EVT RegisterVT = getRegisterType(RetTy->getContext(), VT);
5686 unsigned NumRegs = getNumRegisters(RetTy->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005687
5688 SDValue ReturnValue =
5689 getCopyFromParts(DAG, dl, &InVals[CurReg], NumRegs, RegisterVT, VT,
5690 AssertOp);
5691 ReturnValues.push_back(ReturnValue);
5692 CurReg += NumRegs;
5693 }
5694
5695 // For a function returning void, there is no return value. We can't create
5696 // such a node, so we just return a null return value in that case. In
5697 // that case, nothing will actualy look at the value.
5698 if (ReturnValues.empty())
5699 return std::make_pair(SDValue(), Chain);
5700
5701 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
5702 DAG.getVTList(&RetTys[0], RetTys.size()),
5703 &ReturnValues[0], ReturnValues.size());
5704
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005705 return std::make_pair(Res, Chain);
5706}
5707
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005708void TargetLowering::LowerOperationWrapper(SDNode *N,
5709 SmallVectorImpl<SDValue> &Results,
5710 SelectionDAG &DAG) {
5711 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005712 if (Res.getNode())
5713 Results.push_back(Res);
5714}
5715
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005716SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005717 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005718 return SDValue();
5719}
5720
5721
5722void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5723 SDValue Op = getValue(V);
5724 assert((Op.getOpcode() != ISD::CopyFromReg ||
5725 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5726 "Copy from a reg to the same reg!");
5727 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5728
Owen Anderson23b9b192009-08-12 00:36:31 +00005729 RegsForValue RFV(V->getContext(), TLI, Reg, V->getType());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005730 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005731 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005732 PendingExports.push_back(Chain);
5733}
5734
5735#include "llvm/CodeGen/SelectionDAGISel.h"
5736
5737void SelectionDAGISel::
5738LowerArguments(BasicBlock *LLVMBB) {
5739 // If this is the entry block, emit arguments.
5740 Function &F = *LLVMBB->getParent();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005741 SelectionDAG &DAG = SDL->DAG;
5742 SDValue OldRoot = DAG.getRoot();
5743 DebugLoc dl = SDL->getCurDebugLoc();
5744 const TargetData *TD = TLI.getTargetData();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005745
Dan Gohman98ca4f22009-08-05 01:29:28 +00005746 // Set up the incoming argument description vector.
5747 SmallVector<ISD::InputArg, 16> Ins;
5748 unsigned Idx = 1;
5749 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5750 I != E; ++I, ++Idx) {
Owen Andersone50ed302009-08-10 22:56:29 +00005751 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005752 ComputeValueVTs(TLI, I->getType(), ValueVTs);
5753 bool isArgValueUsed = !I->use_empty();
5754 for (unsigned Value = 0, NumValues = ValueVTs.size();
5755 Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005756 EVT VT = ValueVTs[Value];
Owen Anderson1d0be152009-08-13 21:58:54 +00005757 const Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005758 ISD::ArgFlagsTy Flags;
5759 unsigned OriginalAlignment =
5760 TD->getABITypeAlignment(ArgTy);
5761
5762 if (F.paramHasAttr(Idx, Attribute::ZExt))
5763 Flags.setZExt();
5764 if (F.paramHasAttr(Idx, Attribute::SExt))
5765 Flags.setSExt();
5766 if (F.paramHasAttr(Idx, Attribute::InReg))
5767 Flags.setInReg();
5768 if (F.paramHasAttr(Idx, Attribute::StructRet))
5769 Flags.setSRet();
5770 if (F.paramHasAttr(Idx, Attribute::ByVal)) {
5771 Flags.setByVal();
5772 const PointerType *Ty = cast<PointerType>(I->getType());
5773 const Type *ElementTy = Ty->getElementType();
5774 unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy);
5775 unsigned FrameSize = TD->getTypeAllocSize(ElementTy);
5776 // For ByVal, alignment should be passed from FE. BE will guess if
5777 // this info is not there but there are cases it cannot get right.
5778 if (F.getParamAlignment(Idx))
5779 FrameAlign = F.getParamAlignment(Idx);
5780 Flags.setByValAlign(FrameAlign);
5781 Flags.setByValSize(FrameSize);
5782 }
5783 if (F.paramHasAttr(Idx, Attribute::Nest))
5784 Flags.setNest();
5785 Flags.setOrigAlign(OriginalAlignment);
5786
Owen Anderson23b9b192009-08-12 00:36:31 +00005787 EVT RegisterVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
5788 unsigned NumRegs = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005789 for (unsigned i = 0; i != NumRegs; ++i) {
5790 ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed);
5791 if (NumRegs > 1 && i == 0)
5792 MyFlags.Flags.setSplit();
5793 // if it isn't first piece, alignment must be 1
5794 else if (i > 0)
5795 MyFlags.Flags.setOrigAlign(1);
5796 Ins.push_back(MyFlags);
5797 }
5798 }
5799 }
5800
5801 // Call the target to set up the argument values.
5802 SmallVector<SDValue, 8> InVals;
5803 SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(),
5804 F.isVarArg(), Ins,
5805 dl, DAG, InVals);
Dan Gohman5e866062009-08-06 15:37:27 +00005806
5807 // Verify that the target's LowerFormalArguments behaved as expected.
Owen Anderson825b72b2009-08-11 20:47:22 +00005808 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other &&
Dan Gohman5e866062009-08-06 15:37:27 +00005809 "LowerFormalArguments didn't return a valid chain!");
5810 assert(InVals.size() == Ins.size() &&
5811 "LowerFormalArguments didn't emit the correct number of values!");
5812 DEBUG(for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
5813 assert(InVals[i].getNode() &&
5814 "LowerFormalArguments emitted a null value!");
5815 assert(Ins[i].VT == InVals[i].getValueType() &&
5816 "LowerFormalArguments emitted a value with the wrong type!");
5817 });
5818
5819 // Update the DAG with the new chain value resulting from argument lowering.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005820 DAG.setRoot(NewRoot);
5821
5822 // Set up the argument values.
5823 unsigned i = 0;
5824 Idx = 1;
5825 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
5826 ++I, ++Idx) {
5827 SmallVector<SDValue, 4> ArgValues;
Owen Andersone50ed302009-08-10 22:56:29 +00005828 SmallVector<EVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005829 ComputeValueVTs(TLI, I->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005830 unsigned NumValues = ValueVTs.size();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005831 for (unsigned Value = 0; Value != NumValues; ++Value) {
Owen Andersone50ed302009-08-10 22:56:29 +00005832 EVT VT = ValueVTs[Value];
Owen Anderson23b9b192009-08-12 00:36:31 +00005833 EVT PartVT = TLI.getRegisterType(*CurDAG->getContext(), VT);
5834 unsigned NumParts = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005835
5836 if (!I->use_empty()) {
5837 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5838 if (F.paramHasAttr(Idx, Attribute::SExt))
5839 AssertOp = ISD::AssertSext;
5840 else if (F.paramHasAttr(Idx, Attribute::ZExt))
5841 AssertOp = ISD::AssertZext;
5842
5843 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts,
5844 PartVT, VT, AssertOp));
5845 }
5846 i += NumParts;
5847 }
5848 if (!I->use_empty()) {
5849 SDL->setValue(I, DAG.getMergeValues(&ArgValues[0], NumValues,
5850 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005851 // If this argument is live outside of the entry block, insert a copy from
5852 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005853 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005854 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005855 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00005856 assert(i == InVals.size() && "Argument register count mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005857
5858 // Finally, if the target has anything special to do, allow it to do so.
5859 // FIXME: this should insert code into the DAG!
5860 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5861}
5862
5863/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5864/// ensure constants are generated when needed. Remember the virtual registers
5865/// that need to be added to the Machine PHI nodes as input. We cannot just
5866/// directly add them, because expansion might result in multiple MBB's for one
5867/// BB. As such, the start of the BB might correspond to a different MBB than
5868/// the end.
5869///
5870void
5871SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5872 TerminatorInst *TI = LLVMBB->getTerminator();
5873
5874 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5875
5876 // Check successor nodes' PHI nodes that expect a constant to be available
5877 // from this block.
5878 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5879 BasicBlock *SuccBB = TI->getSuccessor(succ);
5880 if (!isa<PHINode>(SuccBB->begin())) continue;
5881 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005882
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005883 // If this terminator has multiple identical successors (common for
5884 // switches), only handle each succ once.
5885 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005886
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005887 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5888 PHINode *PN;
5889
5890 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5891 // nodes and Machine PHI nodes, but the incoming operands have not been
5892 // emitted yet.
5893 for (BasicBlock::iterator I = SuccBB->begin();
5894 (PN = dyn_cast<PHINode>(I)); ++I) {
5895 // Ignore dead phi's.
5896 if (PN->use_empty()) continue;
5897
5898 unsigned Reg;
5899 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5900
5901 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5902 unsigned &RegOut = SDL->ConstantsOut[C];
5903 if (RegOut == 0) {
5904 RegOut = FuncInfo->CreateRegForValue(C);
5905 SDL->CopyValueToVirtualRegister(C, RegOut);
5906 }
5907 Reg = RegOut;
5908 } else {
5909 Reg = FuncInfo->ValueMap[PHIOp];
5910 if (Reg == 0) {
5911 assert(isa<AllocaInst>(PHIOp) &&
5912 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5913 "Didn't codegen value into a register!??");
5914 Reg = FuncInfo->CreateRegForValue(PHIOp);
5915 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5916 }
5917 }
5918
5919 // Remember that this register needs to added to the machine PHI node as
5920 // the input for this MBB.
Owen Andersone50ed302009-08-10 22:56:29 +00005921 SmallVector<EVT, 4> ValueVTs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005922 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5923 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
Owen Andersone50ed302009-08-10 22:56:29 +00005924 EVT VT = ValueVTs[vti];
Owen Anderson23b9b192009-08-12 00:36:31 +00005925 unsigned NumRegisters = TLI.getNumRegisters(*CurDAG->getContext(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005926 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5927 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5928 Reg += NumRegisters;
5929 }
5930 }
5931 }
5932 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005933}
5934
Dan Gohman3df24e62008-09-03 23:12:08 +00005935/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5936/// supports legal types, and it emits MachineInstrs directly instead of
5937/// creating SelectionDAG nodes.
5938///
5939bool
5940SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5941 FastISel *F) {
5942 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005943
Dan Gohman3df24e62008-09-03 23:12:08 +00005944 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5945 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5946
5947 // Check successor nodes' PHI nodes that expect a constant to be available
5948 // from this block.
5949 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5950 BasicBlock *SuccBB = TI->getSuccessor(succ);
5951 if (!isa<PHINode>(SuccBB->begin())) continue;
5952 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005953
Dan Gohman3df24e62008-09-03 23:12:08 +00005954 // If this terminator has multiple identical successors (common for
5955 // switches), only handle each succ once.
5956 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005957
Dan Gohman3df24e62008-09-03 23:12:08 +00005958 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5959 PHINode *PN;
5960
5961 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5962 // nodes and Machine PHI nodes, but the incoming operands have not been
5963 // emitted yet.
5964 for (BasicBlock::iterator I = SuccBB->begin();
5965 (PN = dyn_cast<PHINode>(I)); ++I) {
5966 // Ignore dead phi's.
5967 if (PN->use_empty()) continue;
5968
5969 // Only handle legal types. Two interesting things to note here. First,
5970 // by bailing out early, we may leave behind some dead instructions,
5971 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5972 // own moves. Second, this check is necessary becuase FastISel doesn't
5973 // use CreateRegForValue to create registers, so it always creates
5974 // exactly one register for each non-void instruction.
Owen Andersone50ed302009-08-10 22:56:29 +00005975 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00005976 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
5977 // Promote MVT::i1.
5978 if (VT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +00005979 VT = TLI.getTypeToTransformTo(*CurDAG->getContext(), VT);
Dan Gohman74321ab2008-09-10 21:01:31 +00005980 else {
5981 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5982 return false;
5983 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005984 }
5985
5986 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5987
5988 unsigned Reg = F->getRegForValue(PHIOp);
5989 if (Reg == 0) {
5990 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5991 return false;
5992 }
5993 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5994 }
5995 }
5996
5997 return true;
5998}