blob: d90b9680aa89d8bcfa7b47ee4d2195b34f5ec56f [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
109/// MVTs that represent all the individual underlying
110/// 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,
116 SmallVectorImpl<MVT> &ValueVTs,
117 SmallVectorImpl<uint64_t> *Offsets = 0,
118 uint64_t StartingOffset = 0) {
119 // Given a struct type, recursively traverse the elements.
120 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
121 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
122 for (StructType::element_iterator EB = STy->element_begin(),
123 EI = EB,
124 EE = STy->element_end();
125 EI != EE; ++EI)
126 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
127 StartingOffset + SL->getElementOffset(EI - EB));
128 return;
129 }
130 // Given an array type, recursively traverse the elements.
131 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
132 const Type *EltTy = ATy->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000133 uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000134 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
135 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
136 StartingOffset + i * EltSize);
137 return;
138 }
Dan Gohman5e5558b2009-04-23 22:50:03 +0000139 // Interpret void as zero return values.
140 if (Ty == Type::VoidTy)
141 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000142 // Base case: we can get an MVT for this LLVM IR type.
143 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 ///
166 SmallVector<MVT, 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 ///
177 SmallVector<MVT, 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,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000189 MVT regvt, MVT valuevt)
190 : 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,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000193 const SmallVector<MVT, 4> &regvts,
194 const SmallVector<MVT, 4> &valuevts)
195 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
196 RegsForValue(const TargetLowering &tli,
197 unsigned Reg, const Type *Ty) : TLI(&tli) {
198 ComputeValueVTs(tli, Ty, ValueVTs);
199
200 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
201 MVT ValueVT = ValueVTs[Value];
202 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
203 MVT RegisterVT = TLI->getRegisterType(ValueVT);
204 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
357 SmallVector<MVT, 4> ValueVTs;
358 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
359 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
360 MVT VT = ValueVTs[vti];
361 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000362 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000363 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000364 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000365 PHIReg += NumRegisters;
366 }
367 }
368 }
369}
370
371unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
372 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) {
383 SmallVector<MVT, 4> ValueVTs;
384 ComputeValueVTs(TLI, V->getType(), ValueVTs);
385
386 unsigned FirstReg = 0;
387 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
388 MVT ValueVT = ValueVTs[Value];
389 MVT RegisterVT = TLI.getRegisterType(ValueVT);
390
391 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
392 for (unsigned i = 0; i != NumRegs; ++i) {
393 unsigned R = MakeReg(RegisterVT);
394 if (!FirstReg) FirstReg = R;
395 }
396 }
397 return FirstReg;
398}
399
400/// getCopyFromParts - Create a value that contains the specified legal parts
401/// combined into the value they represent. If the parts combine to a type
402/// larger then ValueVT then AssertOp can be used to specify whether the extra
403/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
404/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000405static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
406 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000407 unsigned NumParts, MVT PartVT, MVT ValueVT,
408 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;
423 MVT RoundVT = RoundBits == ValueBits ?
424 ValueVT : MVT::getIntegerVT(RoundBits);
425 SDValue Lo, Hi;
426
Eli Friedman2ac8b322009-05-20 06:02:09 +0000427 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000428
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000429 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000430 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
431 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000432 PartVT, HalfVT);
433 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000434 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
435 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000436 }
437 if (TLI.isBigEndian())
438 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000439 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000440
441 if (RoundParts < NumParts) {
442 // Assemble the trailing non-power-of-2 part.
443 unsigned OddParts = NumParts - RoundParts;
444 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Scott Michelfdc40a02009-02-17 22:15:04 +0000445 Hi = getCopyFromParts(DAG, dl,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000446 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000447
448 // Combine the round and odd parts.
449 Lo = Val;
450 if (TLI.isBigEndian())
451 std::swap(Lo, Hi);
452 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000453 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
454 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000455 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000456 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000457 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
458 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000459 }
Eli Friedman2ac8b322009-05-20 06:02:09 +0000460 } else if (ValueVT.isVector()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000461 // Handle a multi-element vector.
462 MVT IntermediateVT, RegisterVT;
463 unsigned NumIntermediates;
464 unsigned NumRegs =
465 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
466 RegisterVT);
467 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
468 NumParts = NumRegs; // Silence a compiler warning.
469 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
470 assert(RegisterVT == Parts[0].getValueType() &&
471 "Part type doesn't match part!");
472
473 // Assemble the parts into intermediate operands.
474 SmallVector<SDValue, 8> Ops(NumIntermediates);
475 if (NumIntermediates == NumParts) {
476 // If the register was not expanded, truncate or copy the value,
477 // as appropriate.
478 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000479 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000480 PartVT, IntermediateVT);
481 } else if (NumParts > 0) {
482 // If the intermediate type was expanded, build the intermediate operands
483 // from the parts.
484 assert(NumParts % NumIntermediates == 0 &&
485 "Must expand into a divisible number of parts!");
486 unsigned Factor = NumParts / NumIntermediates;
487 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000488 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000489 PartVT, IntermediateVT);
490 }
491
492 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
493 // operands.
494 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000495 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000496 ValueVT, &Ops[0], NumIntermediates);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000497 } else if (PartVT.isFloatingPoint()) {
498 // FP split into multiple FP parts (for ppcf128)
499 assert(ValueVT == MVT(MVT::ppcf128) && PartVT == MVT(MVT::f64) &&
500 "Unexpected split");
501 SDValue Lo, Hi;
502 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[0]);
503 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[1]);
504 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");
511 MVT IntVT = MVT::getIntegerVT(ValueVT.getSizeInBits());
512 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,
Chris Lattner01426e12008-10-21 00:45:36 +0000568 SDValue *Parts, unsigned NumParts, MVT 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();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000571 MVT PtrVT = TLI.getPointerTy();
572 MVT ValueVT = Val.getValueType();
573 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()) {
593 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000594 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000595 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000596 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000597 }
598 } else if (PartBits == ValueVT.getSizeInBits()) {
599 // Different types of the same size.
600 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000601 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000602 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
603 // If the parts cover less bits than value has, truncate the value.
604 if (PartVT.isInteger() && ValueVT.isInteger()) {
605 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000606 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000607 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000608 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000609 }
610 }
611
612 // The value may have changed - recompute ValueVT.
613 ValueVT = Val.getValueType();
614 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
615 "Failed to tile the value with PartVT!");
616
617 if (NumParts == 1) {
618 assert(PartVT == ValueVT && "Type conversion failed!");
619 Parts[0] = Val;
620 return;
621 }
622
623 // Expand the value into multiple parts.
624 if (NumParts & (NumParts - 1)) {
625 // The number of parts is not a power of 2. Split off and copy the tail.
626 assert(PartVT.isInteger() && ValueVT.isInteger() &&
627 "Do not know what to expand to!");
628 unsigned RoundParts = 1 << Log2_32(NumParts);
629 unsigned RoundBits = RoundParts * PartBits;
630 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000631 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000632 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000633 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000634 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000635 if (TLI.isBigEndian())
636 // The odd parts were reversed by getCopyToParts - unreverse them.
637 std::reverse(Parts + RoundParts, Parts + NumParts);
638 NumParts = RoundParts;
639 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000640 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000641 }
642
643 // The number of parts is a power of 2. Repeatedly bisect the value using
644 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000645 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000646 MVT::getIntegerVT(ValueVT.getSizeInBits()),
647 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;
651 MVT ThisVT = MVT::getIntegerVT (ThisBits);
652 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.
697 MVT IntermediateVT, RegisterVT;
698 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000699 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000700 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
701 RegisterVT);
702 unsigned NumElements = ValueVT.getVectorNumElements();
703
704 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
705 NumParts = NumRegs; // Silence a compiler warning.
706 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
707
708 // Split the vector into intermediate operands.
709 SmallVector<SDValue, 8> Ops(NumIntermediates);
710 for (unsigned i = 0; i != NumIntermediates; ++i)
711 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000712 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000713 IntermediateVT, Val,
714 DAG.getConstant(i * (NumElements / NumIntermediates),
715 PtrVT));
716 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000717 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000718 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000719 DAG.getConstant(i, PtrVT));
720
721 // Split the intermediate operands into legal parts.
722 if (NumParts == NumIntermediates) {
723 // If the register was not expanded, promote or copy the value,
724 // as appropriate.
725 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000726 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000727 } else if (NumParts > 0) {
728 // If the intermediate type was expanded, split each the value into
729 // legal parts.
730 assert(NumParts % NumIntermediates == 0 &&
731 "Must expand into a divisible number of parts!");
732 unsigned Factor = NumParts / NumIntermediates;
733 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000734 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000735 }
736}
737
738
739void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
740 AA = &aa;
741 GFI = gfi;
742 TD = DAG.getTarget().getTargetData();
743}
744
745/// clear - Clear out the curret SelectionDAG and the associated
746/// state and prepare this SelectionDAGLowering object to be used
747/// for a new block. This doesn't clear out information about
748/// additional blocks that are needed to complete switch lowering
749/// or PHI node updating; that information is cleared out as it is
750/// consumed.
751void SelectionDAGLowering::clear() {
752 NodeMap.clear();
753 PendingLoads.clear();
754 PendingExports.clear();
755 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000756 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohman98ca4f22009-08-05 01:29:28 +0000757 HasTailCall = false;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000758}
759
760/// getRoot - Return the current virtual root of the Selection DAG,
761/// flushing any PendingLoad items. This must be done before emitting
762/// a store or any other node that may need to be ordered after any
763/// prior load instructions.
764///
765SDValue SelectionDAGLowering::getRoot() {
766 if (PendingLoads.empty())
767 return DAG.getRoot();
768
769 if (PendingLoads.size() == 1) {
770 SDValue Root = PendingLoads[0];
771 DAG.setRoot(Root);
772 PendingLoads.clear();
773 return Root;
774 }
775
776 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +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
Dale Johannesen66978ee2009-01-31 02:22:37 +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))) {
836 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000837
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000838 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000839 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000840
841 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
842 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000843
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000844 if (isa<ConstantPointerNull>(C))
845 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000846
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000847 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000848 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000849
Nate Begeman9008ca62009-04-27 18:41:29 +0000850 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000851 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000852
853 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
854 visit(CE->getOpcode(), *CE);
855 SDValue N1 = NodeMap[V];
856 assert(N1.getNode() && "visit didn't populate the ValueMap!");
857 return N1;
858 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000859
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000860 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
861 SmallVector<SDValue, 4> Constants;
862 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
863 OI != OE; ++OI) {
864 SDNode *Val = getValue(*OI).getNode();
865 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
866 Constants.push_back(SDValue(Val, i));
867 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000868 return DAG.getMergeValues(&Constants[0], Constants.size(),
869 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000870 }
871
872 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
873 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
874 "Unknown struct or array constant!");
875
876 SmallVector<MVT, 4> ValueVTs;
877 ComputeValueVTs(TLI, C->getType(), ValueVTs);
878 unsigned NumElts = ValueVTs.size();
879 if (NumElts == 0)
880 return SDValue(); // empty struct
881 SmallVector<SDValue, 4> Constants(NumElts);
882 for (unsigned i = 0; i != NumElts; ++i) {
883 MVT EltVT = ValueVTs[i];
884 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000885 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000886 else if (EltVT.isFloatingPoint())
887 Constants[i] = DAG.getConstantFP(0, EltVT);
888 else
889 Constants[i] = DAG.getConstant(0, EltVT);
890 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000891 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000892 }
893
894 const VectorType *VecTy = cast<VectorType>(V->getType());
895 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000896
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000897 // Now that we know the number and type of the elements, get that number of
898 // elements into the Ops array based on what kind of constant it is.
899 SmallVector<SDValue, 16> Ops;
900 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
901 for (unsigned i = 0; i != NumElements; ++i)
902 Ops.push_back(getValue(CP->getOperand(i)));
903 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000904 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000905 MVT EltVT = TLI.getValueType(VecTy->getElementType());
906
907 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000908 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000909 Op = DAG.getConstantFP(0, EltVT);
910 else
911 Op = DAG.getConstant(0, EltVT);
912 Ops.assign(NumElements, Op);
913 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000914
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000915 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000916 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
917 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000918 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000919
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000920 // If this is a static alloca, generate it as the frameindex instead of
921 // computation.
922 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
923 DenseMap<const AllocaInst*, int>::iterator SI =
924 FuncInfo.StaticAllocaMap.find(AI);
925 if (SI != FuncInfo.StaticAllocaMap.end())
926 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
927 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000928
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000929 unsigned InReg = FuncInfo.ValueMap[V];
930 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000931
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000932 RegsForValue RFV(TLI, InReg, V->getType());
933 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000934 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000935}
936
937
938void SelectionDAGLowering::visitRet(ReturnInst &I) {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000939 SDValue Chain = getControlRoot();
940 SmallVector<ISD::OutputArg, 8> Outs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000941 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000942 SmallVector<MVT, 4> ValueVTs;
943 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000944 unsigned NumValues = ValueVTs.size();
945 if (NumValues == 0) continue;
946
947 SDValue RetOp = getValue(I.getOperand(i));
948 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000949 MVT VT = ValueVTs[j];
950
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000951 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000952
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000953 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000954 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000955 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000956 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000957 ExtendKind = ISD::ZERO_EXTEND;
958
Evan Cheng3927f432009-03-25 20:20:11 +0000959 // FIXME: C calling convention requires the return type to be promoted to
960 // at least 32-bit. But this is not necessary for non-C calling
961 // conventions. The frontend should mark functions whose return values
962 // require promoting with signext or zeroext attributes.
963 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
964 MVT MinVT = TLI.getRegisterType(MVT::i32);
965 if (VT.bitsLT(MinVT))
966 VT = MinVT;
967 }
968
969 unsigned NumParts = TLI.getNumRegisters(VT);
970 MVT PartVT = TLI.getRegisterType(VT);
971 SmallVector<SDValue, 4> Parts(NumParts);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000972 getCopyToParts(DAG, getCurDebugLoc(),
973 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000974 &Parts[0], NumParts, PartVT, ExtendKind);
975
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000976 // 'inreg' on function refers to return value
977 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +0000978 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000979 Flags.setInReg();
Anton Korobeynikov0692fab2009-07-16 13:35:48 +0000980
981 // Propagate extension type if any
982 if (F->paramHasAttr(0, Attribute::SExt))
983 Flags.setSExt();
984 else if (F->paramHasAttr(0, Attribute::ZExt))
985 Flags.setZExt();
986
Dan Gohman98ca4f22009-08-05 01:29:28 +0000987 for (unsigned i = 0; i < NumParts; ++i)
988 Outs.push_back(ISD::OutputArg(Flags, Parts[i], /*isfixed=*/true));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000989 }
990 }
Dan Gohman98ca4f22009-08-05 01:29:28 +0000991
992 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
993 unsigned CallConv = DAG.getMachineFunction().getFunction()->getCallingConv();
994 Chain = TLI.LowerReturn(Chain, CallConv, isVarArg,
995 Outs, getCurDebugLoc(), DAG);
996 DAG.setRoot(Chain);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000997}
998
Dan Gohmanad62f532009-04-23 23:13:24 +0000999/// CopyToExportRegsIfNeeded - If the given value has virtual registers
1000/// created for it, emit nodes to copy the value into the virtual
1001/// registers.
1002void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) {
1003 if (!V->use_empty()) {
1004 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1005 if (VMI != FuncInfo.ValueMap.end())
1006 CopyValueToVirtualRegister(V, VMI->second);
1007 }
1008}
1009
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001010/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1011/// the current basic block, add it to ValueMap now so that we'll get a
1012/// CopyTo/FromReg.
1013void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1014 // No need to export constants.
1015 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001016
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001017 // Already exported?
1018 if (FuncInfo.isExportedInst(V)) return;
1019
1020 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1021 CopyValueToVirtualRegister(V, Reg);
1022}
1023
1024bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1025 const BasicBlock *FromBB) {
1026 // The operands of the setcc have to be in this block. We don't know
1027 // how to export them from some other block.
1028 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1029 // Can export from current BB.
1030 if (VI->getParent() == FromBB)
1031 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001032
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001033 // Is already exported, noop.
1034 return FuncInfo.isExportedInst(V);
1035 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001036
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001037 // If this is an argument, we can export it if the BB is the entry block or
1038 // if it is already exported.
1039 if (isa<Argument>(V)) {
1040 if (FromBB == &FromBB->getParent()->getEntryBlock())
1041 return true;
1042
1043 // Otherwise, can only export this if it is already exported.
1044 return FuncInfo.isExportedInst(V);
1045 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001046
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001047 // Otherwise, constants can always be exported.
1048 return true;
1049}
1050
1051static bool InBlock(const Value *V, const BasicBlock *BB) {
1052 if (const Instruction *I = dyn_cast<Instruction>(V))
1053 return I->getParent() == BB;
1054 return true;
1055}
1056
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001057/// getFCmpCondCode - Return the ISD condition code corresponding to
1058/// the given LLVM IR floating-point condition code. This includes
1059/// consideration of global floating-point math flags.
1060///
1061static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1062 ISD::CondCode FPC, FOC;
1063 switch (Pred) {
1064 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1065 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1066 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1067 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1068 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1069 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1070 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1071 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1072 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1073 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1074 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1075 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1076 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1077 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1078 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1079 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1080 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001081 llvm_unreachable("Invalid FCmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001082 FOC = FPC = ISD::SETFALSE;
1083 break;
1084 }
1085 if (FiniteOnlyFPMath())
1086 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001087 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001088 return FPC;
1089}
1090
1091/// getICmpCondCode - Return the ISD condition code corresponding to
1092/// the given LLVM IR integer condition code.
1093///
1094static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1095 switch (Pred) {
1096 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1097 case ICmpInst::ICMP_NE: return ISD::SETNE;
1098 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1099 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1100 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1101 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1102 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1103 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1104 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1105 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1106 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001107 llvm_unreachable("Invalid ICmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001108 return ISD::SETNE;
1109 }
1110}
1111
Dan Gohmanc2277342008-10-17 21:16:08 +00001112/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1113/// This function emits a branch and is used at the leaves of an OR or an
1114/// AND operator tree.
1115///
1116void
1117SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1118 MachineBasicBlock *TBB,
1119 MachineBasicBlock *FBB,
1120 MachineBasicBlock *CurBB) {
1121 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001122
Dan Gohmanc2277342008-10-17 21:16:08 +00001123 // If the leaf of the tree is a comparison, merge the condition into
1124 // the caseblock.
1125 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1126 // The operands of the cmp have to be in this block. We don't know
1127 // how to export them from some other block. If this is the first block
1128 // of the sequence, no exporting is needed.
1129 if (CurBB == CurMBB ||
1130 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1131 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001132 ISD::CondCode Condition;
1133 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001134 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001135 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001136 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001137 } else {
1138 Condition = ISD::SETEQ; // silence warning.
Torok Edwinc23197a2009-07-14 16:55:14 +00001139 llvm_unreachable("Unknown compare instruction");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001140 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001141
1142 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001143 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1144 SwitchCases.push_back(CB);
1145 return;
1146 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001147 }
1148
1149 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001150 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanc2277342008-10-17 21:16:08 +00001151 NULL, TBB, FBB, CurBB);
1152 SwitchCases.push_back(CB);
1153}
1154
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001155/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001156void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1157 MachineBasicBlock *TBB,
1158 MachineBasicBlock *FBB,
1159 MachineBasicBlock *CurBB,
1160 unsigned Opc) {
1161 // If this node is not part of the or/and tree, emit it as a branch.
1162 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001163 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001164 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1165 BOp->getParent() != CurBB->getBasicBlock() ||
1166 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1167 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1168 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001169 return;
1170 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001171
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001172 // Create TmpBB after CurBB.
1173 MachineFunction::iterator BBI = CurBB;
1174 MachineFunction &MF = DAG.getMachineFunction();
1175 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1176 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001177
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001178 if (Opc == Instruction::Or) {
1179 // Codegen X | Y as:
1180 // jmp_if_X TBB
1181 // jmp TmpBB
1182 // TmpBB:
1183 // jmp_if_Y TBB
1184 // jmp FBB
1185 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001186
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001187 // Emit the LHS condition.
1188 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001189
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001190 // Emit the RHS condition into TmpBB.
1191 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1192 } else {
1193 assert(Opc == Instruction::And && "Unknown merge op!");
1194 // Codegen X & Y as:
1195 // jmp_if_X TmpBB
1196 // jmp FBB
1197 // TmpBB:
1198 // jmp_if_Y TBB
1199 // jmp FBB
1200 //
1201 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001202
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001203 // Emit the LHS condition.
1204 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001205
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001206 // Emit the RHS condition into TmpBB.
1207 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1208 }
1209}
1210
1211/// If the set of cases should be emitted as a series of branches, return true.
1212/// If we should emit this as a bunch of and/or'd together conditions, return
1213/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001214bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001215SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1216 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001217
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001218 // If this is two comparisons of the same values or'd or and'd together, they
1219 // will get folded into a single comparison, so don't emit two blocks.
1220 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1221 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1222 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1223 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1224 return false;
1225 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001226
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001227 return true;
1228}
1229
1230void SelectionDAGLowering::visitBr(BranchInst &I) {
1231 // Update machine-CFG edges.
1232 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1233
1234 // Figure out which block is immediately after the current one.
1235 MachineBasicBlock *NextBlock = 0;
1236 MachineFunction::iterator BBI = CurMBB;
1237 if (++BBI != CurMBB->getParent()->end())
1238 NextBlock = BBI;
1239
1240 if (I.isUnconditional()) {
1241 // Update machine-CFG edges.
1242 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001243
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001244 // If this is not a fall-through branch, emit the branch.
1245 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001246 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001247 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001248 DAG.getBasicBlock(Succ0MBB)));
1249 return;
1250 }
1251
1252 // If this condition is one of the special cases we handle, do special stuff
1253 // now.
1254 Value *CondVal = I.getCondition();
1255 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1256
1257 // If this is a series of conditions that are or'd or and'd together, emit
1258 // this as a sequence of branches instead of setcc's with and/or operations.
1259 // For example, instead of something like:
1260 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001261 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001262 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001263 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001264 // or C, F
1265 // jnz foo
1266 // Emit:
1267 // cmp A, B
1268 // je foo
1269 // cmp D, E
1270 // jle foo
1271 //
1272 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001273 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001274 (BOp->getOpcode() == Instruction::And ||
1275 BOp->getOpcode() == Instruction::Or)) {
1276 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1277 // If the compares in later blocks need to use values not currently
1278 // exported from this block, export them now. This block should always
1279 // be the first entry.
1280 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001281
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001282 // Allow some cases to be rejected.
1283 if (ShouldEmitAsBranches(SwitchCases)) {
1284 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1285 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1286 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1287 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001288
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001289 // Emit the branch for this block.
1290 visitSwitchCase(SwitchCases[0]);
1291 SwitchCases.erase(SwitchCases.begin());
1292 return;
1293 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001294
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001295 // Okay, we decided not to do this, remove any inserted MBB's and clear
1296 // SwitchCases.
1297 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1298 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001299
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001300 SwitchCases.clear();
1301 }
1302 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001303
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001304 // Create a CaseBlock record representing this branch.
Owen Anderson5defacc2009-07-31 17:39:07 +00001305 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001306 NULL, Succ0MBB, Succ1MBB, CurMBB);
1307 // Use visitSwitchCase to actually insert the fast branch sequence for this
1308 // cond branch.
1309 visitSwitchCase(CB);
1310}
1311
1312/// visitSwitchCase - Emits the necessary code to represent a single node in
1313/// the binary search tree resulting from lowering a switch instruction.
1314void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1315 SDValue Cond;
1316 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001317 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001318
1319 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001320 if (CB.CmpMHS == NULL) {
1321 // Fold "(X == true)" to X and "(X == false)" to !X to
1322 // handle common cases produced by branch lowering.
Owen Anderson5defacc2009-07-31 17:39:07 +00001323 if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001324 CB.CC == ISD::SETEQ)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001325 Cond = CondLHS;
Owen Anderson5defacc2009-07-31 17:39:07 +00001326 else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001327 CB.CC == ISD::SETEQ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001328 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001329 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001330 } else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001331 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001332 } else {
1333 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1334
Anton Korobeynikov23218582008-12-23 22:25:27 +00001335 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1336 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001337
1338 SDValue CmpOp = getValue(CB.CmpMHS);
1339 MVT VT = CmpOp.getValueType();
1340
1341 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001342 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001343 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001344 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001345 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001346 VT, CmpOp, DAG.getConstant(Low, VT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001347 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001348 DAG.getConstant(High-Low, VT), ISD::SETULE);
1349 }
1350 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001351
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001352 // Update successor info
1353 CurMBB->addSuccessor(CB.TrueBB);
1354 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001355
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001356 // Set NextBlock to be the MBB immediately after the current one, if any.
1357 // This is used to avoid emitting unnecessary branches to the next block.
1358 MachineBasicBlock *NextBlock = 0;
1359 MachineFunction::iterator BBI = CurMBB;
1360 if (++BBI != CurMBB->getParent()->end())
1361 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001362
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001363 // If the lhs block is the next block, invert the condition so that we can
1364 // fall through to the lhs instead of the rhs block.
1365 if (CB.TrueBB == NextBlock) {
1366 std::swap(CB.TrueBB, CB.FalseBB);
1367 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001368 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001369 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001370 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001371 MVT::Other, getControlRoot(), Cond,
1372 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001373
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001374 // If the branch was constant folded, fix up the CFG.
1375 if (BrCond.getOpcode() == ISD::BR) {
1376 CurMBB->removeSuccessor(CB.FalseBB);
1377 DAG.setRoot(BrCond);
1378 } else {
1379 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001380 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001381 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001382
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001383 if (CB.FalseBB == NextBlock)
1384 DAG.setRoot(BrCond);
1385 else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001386 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001387 DAG.getBasicBlock(CB.FalseBB)));
1388 }
1389}
1390
1391/// visitJumpTable - Emit JumpTable node in the current MBB
1392void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1393 // Emit the code for the jump table
1394 assert(JT.Reg != -1U && "Should lower JT Header first!");
1395 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001396 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1397 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001398 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001399 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001400 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001401 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001402}
1403
1404/// visitJumpTableHeader - This function emits necessary code to produce index
1405/// in the JumpTable from switch case.
1406void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1407 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001408 // Subtract the lowest switch case value from the value being switched on and
1409 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001410 // difference between smallest and largest cases.
1411 SDValue SwitchOp = getValue(JTH.SValue);
1412 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001413 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001414 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001415
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001416 // The SDNode we just created, which holds the value being switched on minus
1417 // the the smallest case value, needs to be copied to a virtual register so it
1418 // can be used as an index into the jump table in a subsequent basic block.
1419 // This value may be smaller or larger than the target's pointer type, and
1420 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001421 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001422 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001423 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001424 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001425 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001426 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001427
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001428 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001429 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1430 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001431 JT.Reg = JumpTableReg;
1432
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001433 // Emit the range check for the jump table, and branch to the default block
1434 // for the switch statement if the value being switched on exceeds the largest
1435 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001436 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1437 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001438 DAG.getConstant(JTH.Last-JTH.First,VT),
1439 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001440
1441 // Set NextBlock to be the MBB immediately after the current one, if any.
1442 // This is used to avoid emitting unnecessary branches to the next block.
1443 MachineBasicBlock *NextBlock = 0;
1444 MachineFunction::iterator BBI = CurMBB;
1445 if (++BBI != CurMBB->getParent()->end())
1446 NextBlock = BBI;
1447
Dale Johannesen66978ee2009-01-31 02:22:37 +00001448 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001449 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001450 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001451
1452 if (JT.MBB == NextBlock)
1453 DAG.setRoot(BrCond);
1454 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001455 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001456 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001457}
1458
1459/// visitBitTestHeader - This function emits necessary code to produce value
1460/// suitable for "bit tests"
1461void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1462 // Subtract the minimum value
1463 SDValue SwitchOp = getValue(B.SValue);
1464 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001465 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001466 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001467
1468 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001469 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1470 TLI.getSetCCResultType(SUB.getValueType()),
1471 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001472 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001473
1474 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001475 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001476 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001477 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001478 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001479 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001480 TLI.getPointerTy(), SUB);
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;
1490 if (++BBI != CurMBB->getParent()->end())
1491 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(),
Dale Johannesenfa42dea2009-01-30 01:34: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
Dale Johannesen66978ee2009-01-31 02:22:37 +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(),
Dale Johannesenfa42dea2009-01-30 01:34: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;
1541 if (++BBI != CurMBB->getParent()->end())
1542 NextBlock = BBI;
1543
1544 if (NextMBB == NextBlock)
1545 DAG.setRoot(BrAnd);
1546 else
Dale Johannesen66978ee2009-01-31 02:22:37 +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(),
Dale Johannesenfa42dea2009-01-30 01:34: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.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001594 MachineFunction *CurMF = CurMBB->getParent();
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
1600 if (++BBI != CurMBB->getParent()->end())
1601 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 &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +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.
1708 MachineFunction *CurMF = CurMBB->getParent();
1709
1710 // Figure out which block is immediately after the current one.
1711 MachineBasicBlock *NextBlock = 0;
1712 MachineFunction::iterator BBI = CR.CaseBB;
1713
1714 if (++BBI != CurMBB->getParent()->end())
1715 NextBlock = BBI;
1716
1717 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1718
1719 // Create a new basic block to hold the code for loading the address
1720 // of the jump table, and jumping to it. Update successor information;
1721 // we will either branch to the default case for the switch, or the jump
1722 // table.
1723 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1724 CurMF->insert(BBI, JumpTableBB);
1725 CR.CaseBB->addSuccessor(Default);
1726 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001727
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001728 // Build a vector of destination BBs, corresponding to each target
1729 // of the jump table. If the value of the jump table slot corresponds to
1730 // a case statement, push the case's BB onto the vector, otherwise, push
1731 // the default BB.
1732 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001733 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001734 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001735 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1736 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1737
1738 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001739 DestBBs.push_back(I->BB);
1740 if (TEI==High)
1741 ++I;
1742 } else {
1743 DestBBs.push_back(Default);
1744 }
1745 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001746
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001747 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001748 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1749 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001750 E = DestBBs.end(); I != E; ++I) {
1751 if (!SuccsHandled[(*I)->getNumber()]) {
1752 SuccsHandled[(*I)->getNumber()] = true;
1753 JumpTableBB->addSuccessor(*I);
1754 }
1755 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001756
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001757 // Create a jump table index for this jump table, or return an existing
1758 // one.
1759 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001760
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001761 // Set the jump table information so that we can codegen it as a second
1762 // MachineBasicBlock
1763 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1764 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1765 if (CR.CaseBB == CurMBB)
1766 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001767
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001768 JTCases.push_back(JumpTableBlock(JTH, JT));
1769
1770 return true;
1771}
1772
1773/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1774/// 2 subtrees.
1775bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1776 CaseRecVector& WorkList,
1777 Value* SV,
1778 MachineBasicBlock* Default) {
1779 // Get the MachineFunction which holds the current MBB. This is used when
1780 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001781 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001782
1783 // Figure out which block is immediately after the current one.
1784 MachineBasicBlock *NextBlock = 0;
1785 MachineFunction::iterator BBI = CR.CaseBB;
1786
1787 if (++BBI != CurMBB->getParent()->end())
1788 NextBlock = BBI;
1789
1790 Case& FrontCase = *CR.Range.first;
1791 Case& BackCase = *(CR.Range.second-1);
1792 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1793
1794 // Size is the number of Cases represented by this range.
1795 unsigned Size = CR.Range.second - CR.Range.first;
1796
Anton Korobeynikov23218582008-12-23 22:25:27 +00001797 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1798 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001799 double FMetric = 0;
1800 CaseItr Pivot = CR.Range.first + Size/2;
1801
1802 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1803 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001804 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001805 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1806 I!=E; ++I)
1807 TSize += I->size();
1808
Anton Korobeynikov23218582008-12-23 22:25:27 +00001809 size_t LSize = FrontCase.size();
1810 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001811 DEBUG(errs() << "Selecting best pivot: \n"
1812 << "First: " << First << ", Last: " << Last <<'\n'
1813 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001814 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1815 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001816 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1817 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001818 APInt Range = ComputeRange(LEnd, RBegin);
1819 assert((Range - 2ULL).isNonNegative() &&
1820 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001821 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1822 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001823 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001824 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001825 DEBUG(errs() <<"=>Step\n"
1826 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1827 << "LDensity: " << LDensity
1828 << ", RDensity: " << RDensity << '\n'
1829 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001830 if (FMetric < Metric) {
1831 Pivot = J;
1832 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001833 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001834 }
1835
1836 LSize += J->size();
1837 RSize -= J->size();
1838 }
1839 if (areJTsAllowed(TLI)) {
1840 // If our case is dense we *really* should handle it earlier!
1841 assert((FMetric > 0) && "Should handle dense range earlier!");
1842 } else {
1843 Pivot = CR.Range.first + Size/2;
1844 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001845
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001846 CaseRange LHSR(CR.Range.first, Pivot);
1847 CaseRange RHSR(Pivot, CR.Range.second);
1848 Constant *C = Pivot->Low;
1849 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001851 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001852 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001853 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001854 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 // Pivot's Value, then we can branch directly to the LHS's Target,
1856 // rather than creating a leaf node for it.
1857 if ((LHSR.second - LHSR.first) == 1 &&
1858 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001859 cast<ConstantInt>(C)->getValue() ==
1860 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001861 TrueBB = LHSR.first->BB;
1862 } else {
1863 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1864 CurMF->insert(BBI, TrueBB);
1865 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001866
1867 // Put SV in a virtual register to make it available from the new blocks.
1868 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001869 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001870
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001871 // Similar to the optimization above, if the Value being switched on is
1872 // known to be less than the Constant CR.LT, and the current Case Value
1873 // is CR.LT - 1, then we can branch directly to the target block for
1874 // the current Case Value, rather than emitting a RHS leaf node for it.
1875 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001876 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1877 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001878 FalseBB = RHSR.first->BB;
1879 } else {
1880 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1881 CurMF->insert(BBI, FalseBB);
1882 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001883
1884 // Put SV in a virtual register to make it available from the new blocks.
1885 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001886 }
1887
1888 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001889 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001890 // Otherwise, branch to LHS.
1891 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1892
1893 if (CR.CaseBB == CurMBB)
1894 visitSwitchCase(CB);
1895 else
1896 SwitchCases.push_back(CB);
1897
1898 return true;
1899}
1900
1901/// handleBitTestsSwitchCase - if current case range has few destination and
1902/// range span less, than machine word bitwidth, encode case range into series
1903/// of masks and emit bit tests with these masks.
1904bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1905 CaseRecVector& WorkList,
1906 Value* SV,
1907 MachineBasicBlock* Default){
1908 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1909
1910 Case& FrontCase = *CR.Range.first;
1911 Case& BackCase = *(CR.Range.second-1);
1912
1913 // Get the MachineFunction which holds the current MBB. This is used when
1914 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001915 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001916
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001917 // If target does not have legal shift left, do not emit bit tests at all.
1918 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1919 return false;
1920
Anton Korobeynikov23218582008-12-23 22:25:27 +00001921 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001922 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1923 I!=E; ++I) {
1924 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001925 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001926 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001927
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001928 // Count unique destinations
1929 SmallSet<MachineBasicBlock*, 4> Dests;
1930 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1931 Dests.insert(I->BB);
1932 if (Dests.size() > 3)
1933 // Don't bother the code below, if there are too much unique destinations
1934 return false;
1935 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001936 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1937 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001938
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001939 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001940 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1941 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001942 APInt cmpRange = maxValue - minValue;
1943
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001944 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1945 << "Low bound: " << minValue << '\n'
1946 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001947
1948 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001949 (!(Dests.size() == 1 && numCmps >= 3) &&
1950 !(Dests.size() == 2 && numCmps >= 5) &&
1951 !(Dests.size() >= 3 && numCmps >= 6)))
1952 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001953
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001954 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001955 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1956
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001957 // Optimize the case where all the case values fit in a
1958 // word without having to subtract minValue. In this case,
1959 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001960 if (minValue.isNonNegative() &&
1961 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1962 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001963 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001964 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001965 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001966
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001967 CaseBitsVector CasesBits;
1968 unsigned i, count = 0;
1969
1970 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1971 MachineBasicBlock* Dest = I->BB;
1972 for (i = 0; i < count; ++i)
1973 if (Dest == CasesBits[i].BB)
1974 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001975
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001976 if (i == count) {
1977 assert((count < 3) && "Too much destinations to test!");
1978 CasesBits.push_back(CaseBits(0, Dest, 0));
1979 count++;
1980 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001981
1982 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1983 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1984
1985 uint64_t lo = (lowValue - lowBound).getZExtValue();
1986 uint64_t hi = (highValue - lowBound).getZExtValue();
1987
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001988 for (uint64_t j = lo; j <= hi; j++) {
1989 CasesBits[i].Mask |= 1ULL << j;
1990 CasesBits[i].Bits++;
1991 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001992
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001993 }
1994 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001995
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001996 BitTestInfo BTC;
1997
1998 // Figure out which block is immediately after the current one.
1999 MachineFunction::iterator BBI = CR.CaseBB;
2000 ++BBI;
2001
2002 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2003
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002004 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002005 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002006 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2007 << ", Bits: " << CasesBits[i].Bits
2008 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002009
2010 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2011 CurMF->insert(BBI, CaseBB);
2012 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2013 CaseBB,
2014 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002015
2016 // Put SV in a virtual register to make it available from the new blocks.
2017 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002018 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002019
2020 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002021 -1U, (CR.CaseBB == CurMBB),
2022 CR.CaseBB, Default, BTC);
2023
2024 if (CR.CaseBB == CurMBB)
2025 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002026
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002027 BitTestCases.push_back(BTB);
2028
2029 return true;
2030}
2031
2032
2033/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002034size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002035 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002036 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002037
2038 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002039 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002040 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2041 Cases.push_back(Case(SI.getSuccessorValue(i),
2042 SI.getSuccessorValue(i),
2043 SMBB));
2044 }
2045 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2046
2047 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002048 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002049 // Must recompute end() each iteration because it may be
2050 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002051 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2052 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2053 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002054 MachineBasicBlock* nextBB = J->BB;
2055 MachineBasicBlock* currentBB = I->BB;
2056
2057 // If the two neighboring cases go to the same destination, merge them
2058 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002059 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002060 I->High = J->High;
2061 J = Cases.erase(J);
2062 } else {
2063 I = J++;
2064 }
2065 }
2066
2067 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2068 if (I->Low != I->High)
2069 // A range counts double, since it requires two compares.
2070 ++numCmps;
2071 }
2072
2073 return numCmps;
2074}
2075
Anton Korobeynikov23218582008-12-23 22:25:27 +00002076void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002077 // Figure out which block is immediately after the current one.
2078 MachineBasicBlock *NextBlock = 0;
2079 MachineFunction::iterator BBI = CurMBB;
2080
2081 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2082
2083 // If there is only the default destination, branch to it if it is not the
2084 // next basic block. Otherwise, just fall through.
2085 if (SI.getNumOperands() == 2) {
2086 // Update machine-CFG edges.
2087
2088 // If this is not a fall-through branch, emit the branch.
2089 CurMBB->addSuccessor(Default);
2090 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002091 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002092 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002093 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002094 return;
2095 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002096
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002097 // If there are any non-default case statements, create a vector of Cases
2098 // representing each one, and sort the vector so that we can efficiently
2099 // create a binary search tree from them.
2100 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002101 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002102 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2103 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002104 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002105
2106 // Get the Value to be switched on and default basic blocks, which will be
2107 // inserted into CaseBlock records, representing basic blocks in the binary
2108 // search tree.
2109 Value *SV = SI.getOperand(0);
2110
2111 // Push the initial CaseRec onto the worklist
2112 CaseRecVector WorkList;
2113 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2114
2115 while (!WorkList.empty()) {
2116 // Grab a record representing a case range to process off the worklist
2117 CaseRec CR = WorkList.back();
2118 WorkList.pop_back();
2119
2120 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2121 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002122
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002123 // If the range has few cases (two or less) emit a series of specific
2124 // tests.
2125 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2126 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002127
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002128 // If the switch has more than 5 blocks, and at least 40% dense, and the
2129 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002130 // lowering the switch to a binary tree of conditional branches.
2131 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2132 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002133
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002134 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2135 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2136 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2137 }
2138}
2139
2140
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.
2184 if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2185 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2186 TLI.getShiftAmountTy(), Op2);
2187 // If the operand is larger than the shift count type but the shift
2188 // count type has enough bits to represent any shift value, truncate
2189 // it now. This is a common case and it exposes the truncate to
2190 // optimization early.
2191 else if (TLI.getShiftAmountTy().getSizeInBits() >=
2192 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2193 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2194 TLI.getShiftAmountTy(), Op2);
2195 // Otherwise we'll need to temporarily settle for some other
2196 // convenient type; type legalization will make adjustments as
2197 // needed.
2198 else if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002199 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002200 TLI.getPointerTy(), Op2);
2201 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002202 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002203 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002204 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002205
Scott Michelfdc40a02009-02-17 22:15:04 +00002206 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002207 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002208}
2209
2210void SelectionDAGLowering::visitICmp(User &I) {
2211 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2212 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2213 predicate = IC->getPredicate();
2214 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2215 predicate = ICmpInst::Predicate(IC->getPredicate());
2216 SDValue Op1 = getValue(I.getOperand(0));
2217 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002218 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002219
2220 MVT DestVT = TLI.getValueType(I.getType());
2221 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002222}
2223
2224void SelectionDAGLowering::visitFCmp(User &I) {
2225 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2226 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2227 predicate = FC->getPredicate();
2228 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2229 predicate = FCmpInst::Predicate(FC->getPredicate());
2230 SDValue Op1 = getValue(I.getOperand(0));
2231 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002232 ISD::CondCode Condition = getFCmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002233 MVT DestVT = TLI.getValueType(I.getType());
2234 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002235}
2236
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002237void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002238 SmallVector<MVT, 4> ValueVTs;
2239 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2240 unsigned NumValues = ValueVTs.size();
2241 if (NumValues != 0) {
2242 SmallVector<SDValue, 4> Values(NumValues);
2243 SDValue Cond = getValue(I.getOperand(0));
2244 SDValue TrueVal = getValue(I.getOperand(1));
2245 SDValue FalseVal = getValue(I.getOperand(2));
2246
2247 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002248 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002249 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002250 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2251 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2252
Scott Michelfdc40a02009-02-17 22:15:04 +00002253 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002254 DAG.getVTList(&ValueVTs[0], NumValues),
2255 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002256 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002257}
2258
2259
2260void SelectionDAGLowering::visitTrunc(User &I) {
2261 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2262 SDValue N = getValue(I.getOperand(0));
2263 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002264 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002265}
2266
2267void SelectionDAGLowering::visitZExt(User &I) {
2268 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2269 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2270 SDValue N = getValue(I.getOperand(0));
2271 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002272 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002273}
2274
2275void SelectionDAGLowering::visitSExt(User &I) {
2276 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2277 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2278 SDValue N = getValue(I.getOperand(0));
2279 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002280 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002281}
2282
2283void SelectionDAGLowering::visitFPTrunc(User &I) {
2284 // FPTrunc is never a no-op cast, no need to check
2285 SDValue N = getValue(I.getOperand(0));
2286 MVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002287 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002288 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002289}
2290
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002291void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002292 // FPTrunc is never a no-op cast, no need to check
2293 SDValue N = getValue(I.getOperand(0));
2294 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002295 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002296}
2297
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002298void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002299 // FPToUI is never a no-op cast, no need to check
2300 SDValue N = getValue(I.getOperand(0));
2301 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002302 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002303}
2304
2305void SelectionDAGLowering::visitFPToSI(User &I) {
2306 // FPToSI is never a no-op cast, no need to check
2307 SDValue N = getValue(I.getOperand(0));
2308 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002309 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002310}
2311
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002312void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002313 // UIToFP is never a no-op cast, no need to check
2314 SDValue N = getValue(I.getOperand(0));
2315 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002316 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002317}
2318
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002319void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002320 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002321 SDValue N = getValue(I.getOperand(0));
2322 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002323 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002324}
2325
2326void SelectionDAGLowering::visitPtrToInt(User &I) {
2327 // What to do depends on the size of the integer and the size of the pointer.
2328 // We can either truncate, zero extend, or no-op, accordingly.
2329 SDValue N = getValue(I.getOperand(0));
2330 MVT SrcVT = N.getValueType();
2331 MVT DestVT = TLI.getValueType(I.getType());
2332 SDValue Result;
2333 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002334 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002335 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002336 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002337 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002338 setValue(&I, Result);
2339}
2340
2341void SelectionDAGLowering::visitIntToPtr(User &I) {
2342 // What to do depends on the size of the integer and the size of the pointer.
2343 // We can either truncate, zero extend, or no-op, accordingly.
2344 SDValue N = getValue(I.getOperand(0));
2345 MVT SrcVT = N.getValueType();
2346 MVT DestVT = TLI.getValueType(I.getType());
2347 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002348 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002349 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002350 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002351 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002352 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002353}
2354
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002355void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002356 SDValue N = getValue(I.getOperand(0));
2357 MVT DestVT = TLI.getValueType(I.getType());
2358
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002359 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002360 // is either a BIT_CONVERT or a no-op.
2361 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002362 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002363 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002364 else
2365 setValue(&I, N); // noop cast.
2366}
2367
2368void SelectionDAGLowering::visitInsertElement(User &I) {
2369 SDValue InVec = getValue(I.getOperand(0));
2370 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002371 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002372 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002373 getValue(I.getOperand(2)));
2374
Scott Michelfdc40a02009-02-17 22:15:04 +00002375 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002376 TLI.getValueType(I.getType()),
2377 InVec, InVal, InIdx));
2378}
2379
2380void SelectionDAGLowering::visitExtractElement(User &I) {
2381 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002382 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002383 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002384 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002385 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002386 TLI.getValueType(I.getType()), InVec, InIdx));
2387}
2388
Mon P Wangaeb06d22008-11-10 04:46:22 +00002389
2390// Utility for visitShuffleVector - Returns true if the mask is mask starting
2391// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002392static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2393 unsigned MaskNumElts = Mask.size();
2394 for (unsigned i = 0; i != MaskNumElts; ++i)
2395 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002396 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002397 return true;
2398}
2399
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002400void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002401 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002402 SDValue Src1 = getValue(I.getOperand(0));
2403 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002404
Nate Begeman9008ca62009-04-27 18:41:29 +00002405 // Convert the ConstantVector mask operand into an array of ints, with -1
2406 // representing undef values.
2407 SmallVector<Constant*, 8> MaskElts;
Owen Anderson001dbfe2009-07-16 18:04:31 +00002408 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
2409 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002410 unsigned MaskNumElts = MaskElts.size();
2411 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002412 if (isa<UndefValue>(MaskElts[i]))
2413 Mask.push_back(-1);
2414 else
2415 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2416 }
2417
Mon P Wangaeb06d22008-11-10 04:46:22 +00002418 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002419 MVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002420 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002421
Mon P Wangc7849c22008-11-16 05:06:27 +00002422 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002423 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2424 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002425 return;
2426 }
2427
2428 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002429 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2430 // Mask is longer than the source vectors and is a multiple of the source
2431 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002432 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002433 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2434 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002435 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002436 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002437 return;
2438 }
2439
Mon P Wangc7849c22008-11-16 05:06:27 +00002440 // Pad both vectors with undefs to make them the same length as the mask.
2441 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002442 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2443 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002444 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002445
Nate Begeman9008ca62009-04-27 18:41:29 +00002446 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2447 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002448 MOps1[0] = Src1;
2449 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002450
2451 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2452 getCurDebugLoc(), VT,
2453 &MOps1[0], NumConcat);
2454 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2455 getCurDebugLoc(), VT,
2456 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002457
Mon P Wangaeb06d22008-11-10 04:46:22 +00002458 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002459 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002460 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002461 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002462 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002463 MappedOps.push_back(Idx);
2464 else
2465 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002466 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002467 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2468 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002469 return;
2470 }
2471
Mon P Wangc7849c22008-11-16 05:06:27 +00002472 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002473 // Analyze the access pattern of the vector to see if we can extract
2474 // two subvectors and do the shuffle. The analysis is done by calculating
2475 // the range of elements the mask access on both vectors.
2476 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2477 int MaxRange[2] = {-1, -1};
2478
Nate Begeman5a5ca152009-04-29 05:20:52 +00002479 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002480 int Idx = Mask[i];
2481 int Input = 0;
2482 if (Idx < 0)
2483 continue;
2484
Nate Begeman5a5ca152009-04-29 05:20:52 +00002485 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002486 Input = 1;
2487 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002488 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002489 if (Idx > MaxRange[Input])
2490 MaxRange[Input] = Idx;
2491 if (Idx < MinRange[Input])
2492 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002493 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002494
Mon P Wangc7849c22008-11-16 05:06:27 +00002495 // Check if the access is smaller than the vector size and can we find
2496 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002497 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002498 int StartIdx[2]; // StartIdx to extract from
2499 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002500 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002501 RangeUse[Input] = 0; // Unused
2502 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002503 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002504 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002505 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002506 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002507 RangeUse[Input] = 1; // Extract from beginning of the vector
2508 StartIdx[Input] = 0;
2509 } else {
2510 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002511 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002512 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002513 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002514 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002515 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002516 }
2517
2518 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002519 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002520 return;
2521 }
2522 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2523 // Extract appropriate subvector and generate a vector shuffle
2524 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002525 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002526 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002527 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002528 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002529 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002530 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002531 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002532 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002533 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002534 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002535 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002536 int Idx = Mask[i];
2537 if (Idx < 0)
2538 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002539 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002540 MappedOps.push_back(Idx - StartIdx[0]);
2541 else
2542 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002543 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002544 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2545 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002546 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002547 }
2548 }
2549
Mon P Wangc7849c22008-11-16 05:06:27 +00002550 // We can't use either concat vectors or extract subvectors so fall back to
2551 // replacing the shuffle with extract and build vector.
2552 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002553 MVT EltVT = VT.getVectorElementType();
2554 MVT PtrVT = TLI.getPointerTy();
2555 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002556 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002557 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002558 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002559 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002560 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002561 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002562 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002563 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002564 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002565 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002566 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002567 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002568 }
2569 }
Evan Chenga87008d2009-02-25 22:49:59 +00002570 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2571 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002572}
2573
2574void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2575 const Value *Op0 = I.getOperand(0);
2576 const Value *Op1 = I.getOperand(1);
2577 const Type *AggTy = I.getType();
2578 const Type *ValTy = Op1->getType();
2579 bool IntoUndef = isa<UndefValue>(Op0);
2580 bool FromUndef = isa<UndefValue>(Op1);
2581
2582 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2583 I.idx_begin(), I.idx_end());
2584
2585 SmallVector<MVT, 4> AggValueVTs;
2586 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2587 SmallVector<MVT, 4> ValValueVTs;
2588 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2589
2590 unsigned NumAggValues = AggValueVTs.size();
2591 unsigned NumValValues = ValValueVTs.size();
2592 SmallVector<SDValue, 4> Values(NumAggValues);
2593
2594 SDValue Agg = getValue(Op0);
2595 SDValue Val = getValue(Op1);
2596 unsigned i = 0;
2597 // Copy the beginning value(s) from the original aggregate.
2598 for (; i != LinearIndex; ++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 // Copy values from the inserted value(s).
2602 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002603 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002604 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2605 // Copy remaining value(s) from the original aggregate.
2606 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002607 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002608 SDValue(Agg.getNode(), Agg.getResNo() + i);
2609
Scott Michelfdc40a02009-02-17 22:15:04 +00002610 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002611 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2612 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002613}
2614
2615void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2616 const Value *Op0 = I.getOperand(0);
2617 const Type *AggTy = Op0->getType();
2618 const Type *ValTy = I.getType();
2619 bool OutOfUndef = isa<UndefValue>(Op0);
2620
2621 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2622 I.idx_begin(), I.idx_end());
2623
2624 SmallVector<MVT, 4> ValValueVTs;
2625 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2626
2627 unsigned NumValValues = ValValueVTs.size();
2628 SmallVector<SDValue, 4> Values(NumValValues);
2629
2630 SDValue Agg = getValue(Op0);
2631 // Copy out the selected value(s).
2632 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2633 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002634 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002635 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002636 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002637
Scott Michelfdc40a02009-02-17 22:15:04 +00002638 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002639 DAG.getVTList(&ValValueVTs[0], NumValValues),
2640 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002641}
2642
2643
2644void SelectionDAGLowering::visitGetElementPtr(User &I) {
2645 SDValue N = getValue(I.getOperand(0));
2646 const Type *Ty = I.getOperand(0)->getType();
2647
2648 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2649 OI != E; ++OI) {
2650 Value *Idx = *OI;
2651 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2652 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2653 if (Field) {
2654 // N = N + Offset
2655 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002656 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002657 DAG.getIntPtrConstant(Offset));
2658 }
2659 Ty = StTy->getElementType(Field);
2660 } else {
2661 Ty = cast<SequentialType>(Ty)->getElementType();
2662
2663 // If this is a constant subscript, handle it quickly.
2664 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2665 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002666 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002667 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002668 SDValue OffsVal;
Evan Chengb1032a82009-02-09 20:54:38 +00002669 unsigned PtrBits = TLI.getPointerTy().getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002670 if (PtrBits < 64) {
2671 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2672 TLI.getPointerTy(),
2673 DAG.getConstant(Offs, MVT::i64));
2674 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002675 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002676 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002677 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002678 continue;
2679 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002680
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002681 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +00002682 uint64_t ElementSize = TD->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002683 SDValue IdxN = getValue(Idx);
2684
2685 // If the index is smaller or larger than intptr_t, truncate or extend
2686 // it.
2687 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002688 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002689 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002690 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002691 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002692 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002693
2694 // If this is a multiply by a power of two, turn it into a shl
2695 // immediately. This is a very common case.
2696 if (ElementSize != 1) {
2697 if (isPowerOf2_64(ElementSize)) {
2698 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002699 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002700 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002701 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002702 } else {
2703 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002704 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002705 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002706 }
2707 }
2708
Scott Michelfdc40a02009-02-17 22:15:04 +00002709 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002710 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002711 }
2712 }
2713 setValue(&I, N);
2714}
2715
2716void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2717 // If this is a fixed sized alloca in the entry block of the function,
2718 // allocate it statically on the stack.
2719 if (FuncInfo.StaticAllocaMap.count(&I))
2720 return; // getValue will auto-populate this.
2721
2722 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002723 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002724 unsigned Align =
2725 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2726 I.getAlignment());
2727
2728 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002729
2730 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2731 AllocSize,
2732 DAG.getConstant(TySize, AllocSize.getValueType()));
2733
2734
2735
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002736 MVT IntPtr = TLI.getPointerTy();
2737 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002738 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002739 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002740 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002741 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002742 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002743
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002744 // Handle alignment. If the requested alignment is less than or equal to
2745 // the stack alignment, ignore it. If the size is greater than or equal to
2746 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2747 unsigned StackAlign =
2748 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2749 if (Align <= StackAlign)
2750 Align = 0;
2751
2752 // Round the size of the allocation up to the stack alignment size
2753 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002754 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002755 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002756 DAG.getIntPtrConstant(StackAlign-1));
2757 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002758 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002759 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002760 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2761
2762 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Dan Gohmanfc166572009-04-09 23:54:40 +00002763 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002764 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002765 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002766 setValue(&I, DSA);
2767 DAG.setRoot(DSA.getValue(1));
2768
2769 // Inform the Frame Information that we have just allocated a variable-sized
2770 // object.
2771 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2772}
2773
2774void SelectionDAGLowering::visitLoad(LoadInst &I) {
2775 const Value *SV = I.getOperand(0);
2776 SDValue Ptr = getValue(SV);
2777
2778 const Type *Ty = I.getType();
2779 bool isVolatile = I.isVolatile();
2780 unsigned Alignment = I.getAlignment();
2781
2782 SmallVector<MVT, 4> ValueVTs;
2783 SmallVector<uint64_t, 4> Offsets;
2784 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2785 unsigned NumValues = ValueVTs.size();
2786 if (NumValues == 0)
2787 return;
2788
2789 SDValue Root;
2790 bool ConstantMemory = false;
2791 if (I.isVolatile())
2792 // Serialize volatile loads with other side effects.
2793 Root = getRoot();
2794 else if (AA->pointsToConstantMemory(SV)) {
2795 // Do not serialize (non-volatile) loads of constant memory with anything.
2796 Root = DAG.getEntryNode();
2797 ConstantMemory = true;
2798 } else {
2799 // Do not serialize non-volatile loads against each other.
2800 Root = DAG.getRoot();
2801 }
2802
2803 SmallVector<SDValue, 4> Values(NumValues);
2804 SmallVector<SDValue, 4> Chains(NumValues);
2805 MVT PtrVT = Ptr.getValueType();
2806 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002807 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002808 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002809 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002810 DAG.getConstant(Offsets[i], PtrVT)),
2811 SV, Offsets[i],
2812 isVolatile, Alignment);
2813 Values[i] = L;
2814 Chains[i] = L.getValue(1);
2815 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002816
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002817 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002818 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002819 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002820 &Chains[0], NumValues);
2821 if (isVolatile)
2822 DAG.setRoot(Chain);
2823 else
2824 PendingLoads.push_back(Chain);
2825 }
2826
Scott Michelfdc40a02009-02-17 22:15:04 +00002827 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002828 DAG.getVTList(&ValueVTs[0], NumValues),
2829 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002830}
2831
2832
2833void SelectionDAGLowering::visitStore(StoreInst &I) {
2834 Value *SrcV = I.getOperand(0);
2835 Value *PtrV = I.getOperand(1);
2836
2837 SmallVector<MVT, 4> ValueVTs;
2838 SmallVector<uint64_t, 4> Offsets;
2839 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2840 unsigned NumValues = ValueVTs.size();
2841 if (NumValues == 0)
2842 return;
2843
2844 // Get the lowered operands. Note that we do this after
2845 // checking if NumResults is zero, because with zero results
2846 // the operands won't have values in the map.
2847 SDValue Src = getValue(SrcV);
2848 SDValue Ptr = getValue(PtrV);
2849
2850 SDValue Root = getRoot();
2851 SmallVector<SDValue, 4> Chains(NumValues);
2852 MVT PtrVT = Ptr.getValueType();
2853 bool isVolatile = I.isVolatile();
2854 unsigned Alignment = I.getAlignment();
2855 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002856 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002857 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002858 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002859 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002860 DAG.getConstant(Offsets[i], PtrVT)),
2861 PtrV, Offsets[i],
2862 isVolatile, Alignment);
2863
Scott Michelfdc40a02009-02-17 22:15:04 +00002864 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002865 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002866}
2867
2868/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2869/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002870void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002871 unsigned Intrinsic) {
2872 bool HasChain = !I.doesNotAccessMemory();
2873 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2874
2875 // Build the operand list.
2876 SmallVector<SDValue, 8> Ops;
2877 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2878 if (OnlyLoad) {
2879 // We don't need to serialize loads against other loads.
2880 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002881 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002882 Ops.push_back(getRoot());
2883 }
2884 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002885
2886 // Info is set by getTgtMemInstrinsic
2887 TargetLowering::IntrinsicInfo Info;
2888 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2889
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002890 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002891 if (!IsTgtIntrinsic)
2892 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002893
2894 // Add all operands of the call to the operand list.
2895 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2896 SDValue Op = getValue(I.getOperand(i));
2897 assert(TLI.isTypeLegal(Op.getValueType()) &&
2898 "Intrinsic uses a non-legal type?");
2899 Ops.push_back(Op);
2900 }
2901
Bob Wilson8d919552009-07-31 22:41:21 +00002902 SmallVector<MVT, 4> ValueVTs;
2903 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2904#ifndef NDEBUG
2905 for (unsigned Val = 0, E = ValueVTs.size(); Val != E; ++Val) {
2906 assert(TLI.isTypeLegal(ValueVTs[Val]) &&
2907 "Intrinsic uses a non-legal type?");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002908 }
Bob Wilson8d919552009-07-31 22:41:21 +00002909#endif // NDEBUG
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002910 if (HasChain)
Bob Wilson8d919552009-07-31 22:41:21 +00002911 ValueVTs.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002912
Bob Wilson8d919552009-07-31 22:41:21 +00002913 SDVTList VTs = DAG.getVTList(ValueVTs.data(), ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002914
2915 // Create the node.
2916 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002917 if (IsTgtIntrinsic) {
2918 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002919 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002920 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002921 Info.memVT, Info.ptrVal, Info.offset,
2922 Info.align, Info.vol,
2923 Info.readMem, Info.writeMem);
2924 }
2925 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002926 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002927 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002928 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002929 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002930 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002931 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002932 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002933 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002934
2935 if (HasChain) {
2936 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2937 if (OnlyLoad)
2938 PendingLoads.push_back(Chain);
2939 else
2940 DAG.setRoot(Chain);
2941 }
2942 if (I.getType() != Type::VoidTy) {
2943 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2944 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002945 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002946 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002947 setValue(&I, Result);
2948 }
2949}
2950
2951/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2952static GlobalVariable *ExtractTypeInfo(Value *V) {
2953 V = V->stripPointerCasts();
2954 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2955 assert ((GV || isa<ConstantPointerNull>(V)) &&
2956 "TypeInfo must be a global variable or NULL");
2957 return GV;
2958}
2959
2960namespace llvm {
2961
2962/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2963/// call, and add them to the specified machine basic block.
2964void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2965 MachineBasicBlock *MBB) {
2966 // Inform the MachineModuleInfo of the personality for this landing pad.
2967 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2968 assert(CE->getOpcode() == Instruction::BitCast &&
2969 isa<Function>(CE->getOperand(0)) &&
2970 "Personality should be a function");
2971 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2972
2973 // Gather all the type infos for this landing pad and pass them along to
2974 // MachineModuleInfo.
2975 std::vector<GlobalVariable *> TyInfo;
2976 unsigned N = I.getNumOperands();
2977
2978 for (unsigned i = N - 1; i > 2; --i) {
2979 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2980 unsigned FilterLength = CI->getZExtValue();
2981 unsigned FirstCatch = i + FilterLength + !FilterLength;
2982 assert (FirstCatch <= N && "Invalid filter length");
2983
2984 if (FirstCatch < N) {
2985 TyInfo.reserve(N - FirstCatch);
2986 for (unsigned j = FirstCatch; j < N; ++j)
2987 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2988 MMI->addCatchTypeInfo(MBB, TyInfo);
2989 TyInfo.clear();
2990 }
2991
2992 if (!FilterLength) {
2993 // Cleanup.
2994 MMI->addCleanup(MBB);
2995 } else {
2996 // Filter.
2997 TyInfo.reserve(FilterLength - 1);
2998 for (unsigned j = i + 1; j < FirstCatch; ++j)
2999 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3000 MMI->addFilterTypeInfo(MBB, TyInfo);
3001 TyInfo.clear();
3002 }
3003
3004 N = i;
3005 }
3006 }
3007
3008 if (N > 3) {
3009 TyInfo.reserve(N - 3);
3010 for (unsigned j = 3; j < N; ++j)
3011 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3012 MMI->addCatchTypeInfo(MBB, TyInfo);
3013 }
3014}
3015
3016}
3017
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003018/// GetSignificand - Get the significand and build it into a floating-point
3019/// number with exponent of 1:
3020///
3021/// Op = (Op & 0x007fffff) | 0x3f800000;
3022///
3023/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003024static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003025GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3026 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003027 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003028 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003029 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003030 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003031}
3032
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003033/// GetExponent - Get the exponent:
3034///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003035/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003036///
3037/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003038static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003039GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3040 DebugLoc dl) {
3041 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003042 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003043 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003044 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003045 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003046 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003047 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003048}
3049
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003050/// getF32Constant - Get 32-bit floating point constant.
3051static SDValue
3052getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3053 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3054}
3055
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003056/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003057/// visitIntrinsicCall: I is a call instruction
3058/// Op is the associated NodeType for I
3059const char *
3060SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003061 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003062 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003063 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003064 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003065 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003066 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003067 getValue(I.getOperand(2)),
3068 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003069 setValue(&I, L);
3070 DAG.setRoot(L.getValue(1));
3071 return 0;
3072}
3073
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003074// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003075const char *
3076SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003077 SDValue Op1 = getValue(I.getOperand(1));
3078 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003079
Dan Gohmanfc166572009-04-09 23:54:40 +00003080 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
3081 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003082
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003083 setValue(&I, Result);
3084 return 0;
3085}
Bill Wendling74c37652008-12-09 22:08:41 +00003086
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003087/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3088/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003089void
3090SelectionDAGLowering::visitExp(CallInst &I) {
3091 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003092 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003093
3094 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3095 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3096 SDValue Op = getValue(I.getOperand(1));
3097
3098 // Put the exponent in the right bit position for later addition to the
3099 // final result:
3100 //
3101 // #define LOG2OFe 1.4426950f
3102 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003103 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003104 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003105 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003106
3107 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003108 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3109 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003110
3111 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003112 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003113 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003114
3115 if (LimitFloatPrecision <= 6) {
3116 // For floating-point precision of 6:
3117 //
3118 // TwoToFractionalPartOfX =
3119 // 0.997535578f +
3120 // (0.735607626f + 0.252464424f * x) * x;
3121 //
3122 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003123 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003124 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003125 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003126 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003127 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3128 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003129 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003130 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003131
3132 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003133 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003134 TwoToFracPartOfX, IntegerPartOfX);
3135
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003136 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003137 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3138 // For floating-point precision of 12:
3139 //
3140 // TwoToFractionalPartOfX =
3141 // 0.999892986f +
3142 // (0.696457318f +
3143 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3144 //
3145 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003146 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003147 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003148 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003149 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003150 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3151 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003152 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003153 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3154 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003155 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003156 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003157
3158 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003159 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003160 TwoToFracPartOfX, IntegerPartOfX);
3161
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003162 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003163 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3164 // For floating-point precision of 18:
3165 //
3166 // TwoToFractionalPartOfX =
3167 // 0.999999982f +
3168 // (0.693148872f +
3169 // (0.240227044f +
3170 // (0.554906021e-1f +
3171 // (0.961591928e-2f +
3172 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3173 //
3174 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003175 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003176 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003177 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003178 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003179 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3180 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003181 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003182 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3183 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003184 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003185 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3186 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003187 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003188 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3189 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003190 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003191 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3192 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003193 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003194 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003195 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003196
3197 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003198 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003199 TwoToFracPartOfX, IntegerPartOfX);
3200
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003201 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003202 }
3203 } else {
3204 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003205 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003206 getValue(I.getOperand(1)).getValueType(),
3207 getValue(I.getOperand(1)));
3208 }
3209
Dale Johannesen59e577f2008-09-05 18:38:42 +00003210 setValue(&I, result);
3211}
3212
Bill Wendling39150252008-09-09 20:39:27 +00003213/// visitLog - Lower a log intrinsic. Handles the special sequences for
3214/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003215void
3216SelectionDAGLowering::visitLog(CallInst &I) {
3217 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003218 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003219
3220 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3221 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3222 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003223 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003224
3225 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003226 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003227 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003228 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003229
3230 // Get the significand and build it into a floating-point number with
3231 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003232 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003233
3234 if (LimitFloatPrecision <= 6) {
3235 // For floating-point precision of 6:
3236 //
3237 // LogofMantissa =
3238 // -1.1609546f +
3239 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003240 //
Bill Wendling39150252008-09-09 20:39:27 +00003241 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003242 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003243 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003244 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003245 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003246 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3247 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003248 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003249
Scott Michelfdc40a02009-02-17 22:15:04 +00003250 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003251 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003252 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3253 // For floating-point precision of 12:
3254 //
3255 // LogOfMantissa =
3256 // -1.7417939f +
3257 // (2.8212026f +
3258 // (-1.4699568f +
3259 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3260 //
3261 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003262 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003263 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003264 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003265 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003266 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3267 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003268 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003269 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3270 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003271 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003272 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3273 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003274 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003275
Scott Michelfdc40a02009-02-17 22:15:04 +00003276 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003277 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003278 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3279 // For floating-point precision of 18:
3280 //
3281 // LogOfMantissa =
3282 // -2.1072184f +
3283 // (4.2372794f +
3284 // (-3.7029485f +
3285 // (2.2781945f +
3286 // (-0.87823314f +
3287 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3288 //
3289 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003290 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003291 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003292 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003293 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003294 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3295 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003296 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003297 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3298 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003299 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003300 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3301 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003302 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003303 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3304 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003305 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003306 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3307 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003308 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003309
Scott Michelfdc40a02009-02-17 22:15:04 +00003310 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003311 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003312 }
3313 } else {
3314 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003315 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003316 getValue(I.getOperand(1)).getValueType(),
3317 getValue(I.getOperand(1)));
3318 }
3319
Dale Johannesen59e577f2008-09-05 18:38:42 +00003320 setValue(&I, result);
3321}
3322
Bill Wendling3eb59402008-09-09 00:28:24 +00003323/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3324/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003325void
3326SelectionDAGLowering::visitLog2(CallInst &I) {
3327 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003328 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003329
Dale Johannesen853244f2008-09-05 23:49:37 +00003330 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003331 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3332 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003333 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003334
Bill Wendling39150252008-09-09 20:39:27 +00003335 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003336 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003337
3338 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003339 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003340 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003341
Bill Wendling3eb59402008-09-09 00:28:24 +00003342 // Different possible minimax approximations of significand in
3343 // floating-point for various degrees of accuracy over [1,2].
3344 if (LimitFloatPrecision <= 6) {
3345 // For floating-point precision of 6:
3346 //
3347 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3348 //
3349 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003350 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003351 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003352 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003353 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003354 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3355 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003356 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003357
Scott Michelfdc40a02009-02-17 22:15:04 +00003358 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003359 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003360 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3361 // For floating-point precision of 12:
3362 //
3363 // Log2ofMantissa =
3364 // -2.51285454f +
3365 // (4.07009056f +
3366 // (-2.12067489f +
3367 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003368 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003369 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003370 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003371 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003372 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003373 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003374 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3375 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003376 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003377 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3378 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003379 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003380 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3381 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003382 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003383
Scott Michelfdc40a02009-02-17 22:15:04 +00003384 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003385 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003386 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3387 // For floating-point precision of 18:
3388 //
3389 // Log2ofMantissa =
3390 // -3.0400495f +
3391 // (6.1129976f +
3392 // (-5.3420409f +
3393 // (3.2865683f +
3394 // (-1.2669343f +
3395 // (0.27515199f -
3396 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3397 //
3398 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003399 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003400 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003401 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003402 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003403 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3404 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003405 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003406 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3407 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003408 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003409 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3410 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003411 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003412 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3413 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003414 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003415 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3416 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003417 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003418
Scott Michelfdc40a02009-02-17 22:15:04 +00003419 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003420 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003421 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003422 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003423 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003424 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003425 getValue(I.getOperand(1)).getValueType(),
3426 getValue(I.getOperand(1)));
3427 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003428
Dale Johannesen59e577f2008-09-05 18:38:42 +00003429 setValue(&I, result);
3430}
3431
Bill Wendling3eb59402008-09-09 00:28:24 +00003432/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3433/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003434void
3435SelectionDAGLowering::visitLog10(CallInst &I) {
3436 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003437 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003438
Dale Johannesen852680a2008-09-05 21:27:19 +00003439 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003440 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3441 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003442 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003443
Bill Wendling39150252008-09-09 20:39:27 +00003444 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003445 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003446 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003447 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003448
3449 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003450 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003451 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003452
3453 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003454 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003455 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003456 // Log10ofMantissa =
3457 // -0.50419619f +
3458 // (0.60948995f - 0.10380950f * x) * x;
3459 //
3460 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003461 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003462 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003463 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003464 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003465 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3466 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003467 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003468
Scott Michelfdc40a02009-02-17 22:15:04 +00003469 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003470 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003471 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3472 // For floating-point precision of 12:
3473 //
3474 // Log10ofMantissa =
3475 // -0.64831180f +
3476 // (0.91751397f +
3477 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3478 //
3479 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003480 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003481 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003482 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003483 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003484 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3485 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003486 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003487 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3488 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003489 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003490
Scott Michelfdc40a02009-02-17 22:15:04 +00003491 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003492 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003493 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003494 // For floating-point precision of 18:
3495 //
3496 // Log10ofMantissa =
3497 // -0.84299375f +
3498 // (1.5327582f +
3499 // (-1.0688956f +
3500 // (0.49102474f +
3501 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3502 //
3503 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003504 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003505 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003506 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003507 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003508 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3509 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003510 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003511 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3512 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003513 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003514 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3515 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003516 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003517 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3518 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003519 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003520
Scott Michelfdc40a02009-02-17 22:15:04 +00003521 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003522 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003523 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003524 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003525 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003526 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003527 getValue(I.getOperand(1)).getValueType(),
3528 getValue(I.getOperand(1)));
3529 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003530
Dale Johannesen59e577f2008-09-05 18:38:42 +00003531 setValue(&I, result);
3532}
3533
Bill Wendlinge10c8142008-09-09 22:39:21 +00003534/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3535/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003536void
3537SelectionDAGLowering::visitExp2(CallInst &I) {
3538 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003539 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003540
Dale Johannesen601d3c02008-09-05 01:48:15 +00003541 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003542 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3543 SDValue Op = getValue(I.getOperand(1));
3544
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003545 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003546
3547 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003548 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3549 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003550
3551 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003552 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003553 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003554
3555 if (LimitFloatPrecision <= 6) {
3556 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003557 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003558 // TwoToFractionalPartOfX =
3559 // 0.997535578f +
3560 // (0.735607626f + 0.252464424f * x) * x;
3561 //
3562 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003563 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003564 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003565 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003566 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003567 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3568 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003569 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003570 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003571 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003572 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003573
Scott Michelfdc40a02009-02-17 22:15:04 +00003574 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003575 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003576 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3577 // For floating-point precision of 12:
3578 //
3579 // TwoToFractionalPartOfX =
3580 // 0.999892986f +
3581 // (0.696457318f +
3582 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3583 //
3584 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003585 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003586 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003587 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003588 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003589 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3590 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003591 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003592 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3593 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003594 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003595 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003596 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003597 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003598
Scott Michelfdc40a02009-02-17 22:15:04 +00003599 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003600 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003601 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3602 // For floating-point precision of 18:
3603 //
3604 // TwoToFractionalPartOfX =
3605 // 0.999999982f +
3606 // (0.693148872f +
3607 // (0.240227044f +
3608 // (0.554906021e-1f +
3609 // (0.961591928e-2f +
3610 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3611 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003612 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003613 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003614 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003615 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003616 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3617 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003618 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003619 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3620 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003621 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003622 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3623 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003624 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003625 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3626 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003627 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003628 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3629 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003630 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003631 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003632 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003633 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003634
Scott Michelfdc40a02009-02-17 22:15:04 +00003635 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003636 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003637 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003638 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003639 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003640 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003641 getValue(I.getOperand(1)).getValueType(),
3642 getValue(I.getOperand(1)));
3643 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003644
Dale Johannesen601d3c02008-09-05 01:48:15 +00003645 setValue(&I, result);
3646}
3647
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003648/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3649/// limited-precision mode with x == 10.0f.
3650void
3651SelectionDAGLowering::visitPow(CallInst &I) {
3652 SDValue result;
3653 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003654 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003655 bool IsExp10 = false;
3656
3657 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003658 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003659 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3660 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3661 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3662 APFloat Ten(10.0f);
3663 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3664 }
3665 }
3666 }
3667
3668 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3669 SDValue Op = getValue(I.getOperand(2));
3670
3671 // Put the exponent in the right bit position for later addition to the
3672 // final result:
3673 //
3674 // #define LOG2OF10 3.3219281f
3675 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003676 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003677 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003678 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003679
3680 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003681 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3682 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003683
3684 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003685 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003686 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003687
3688 if (LimitFloatPrecision <= 6) {
3689 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003690 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003691 // twoToFractionalPartOfX =
3692 // 0.997535578f +
3693 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003694 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003695 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003696 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003697 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003698 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003699 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003700 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3701 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003702 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003703 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003704 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003705 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003706
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003707 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3708 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003709 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3710 // For floating-point precision of 12:
3711 //
3712 // TwoToFractionalPartOfX =
3713 // 0.999892986f +
3714 // (0.696457318f +
3715 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3716 //
3717 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003718 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003719 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003720 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003721 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003722 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3723 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003724 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003725 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3726 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003727 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003728 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003729 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003730 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003731
Scott Michelfdc40a02009-02-17 22:15:04 +00003732 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003733 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003734 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3735 // For floating-point precision of 18:
3736 //
3737 // TwoToFractionalPartOfX =
3738 // 0.999999982f +
3739 // (0.693148872f +
3740 // (0.240227044f +
3741 // (0.554906021e-1f +
3742 // (0.961591928e-2f +
3743 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3744 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003745 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003746 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003747 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003748 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003749 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3750 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003751 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003752 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3753 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003754 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003755 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3756 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003757 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003758 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3759 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003760 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003761 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3762 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003763 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003764 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003765 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003766 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003767
Scott Michelfdc40a02009-02-17 22:15:04 +00003768 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003769 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003770 }
3771 } else {
3772 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003773 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003774 getValue(I.getOperand(1)).getValueType(),
3775 getValue(I.getOperand(1)),
3776 getValue(I.getOperand(2)));
3777 }
3778
3779 setValue(&I, result);
3780}
3781
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003782/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3783/// we want to emit this as a call to a named external function, return the name
3784/// otherwise lower it and return null.
3785const char *
3786SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003787 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003788 switch (Intrinsic) {
3789 default:
3790 // By default, turn this into a target intrinsic node.
3791 visitTargetIntrinsic(I, Intrinsic);
3792 return 0;
3793 case Intrinsic::vastart: visitVAStart(I); return 0;
3794 case Intrinsic::vaend: visitVAEnd(I); return 0;
3795 case Intrinsic::vacopy: visitVACopy(I); return 0;
3796 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003797 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003798 getValue(I.getOperand(1))));
3799 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003800 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003801 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003802 getValue(I.getOperand(1))));
3803 return 0;
3804 case Intrinsic::setjmp:
3805 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3806 break;
3807 case Intrinsic::longjmp:
3808 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3809 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003810 case Intrinsic::memcpy: {
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();
Dale Johannesena04b7572009-02-03 23:04:43 +00003815 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003816 I.getOperand(1), 0, I.getOperand(2), 0));
3817 return 0;
3818 }
Chris Lattner824b9582008-11-21 16:42:48 +00003819 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003820 SDValue Op1 = getValue(I.getOperand(1));
3821 SDValue Op2 = getValue(I.getOperand(2));
3822 SDValue Op3 = getValue(I.getOperand(3));
3823 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003824 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003825 I.getOperand(1), 0));
3826 return 0;
3827 }
Chris Lattner824b9582008-11-21 16:42:48 +00003828 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003829 SDValue Op1 = getValue(I.getOperand(1));
3830 SDValue Op2 = getValue(I.getOperand(2));
3831 SDValue Op3 = getValue(I.getOperand(3));
3832 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3833
3834 // If the source and destination are known to not be aliases, we can
3835 // lower memmove as memcpy.
3836 uint64_t Size = -1ULL;
3837 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003838 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003839 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3840 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003841 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003842 I.getOperand(1), 0, I.getOperand(2), 0));
3843 return 0;
3844 }
3845
Dale Johannesena04b7572009-02-03 23:04:43 +00003846 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003847 I.getOperand(1), 0, I.getOperand(2), 0));
3848 return 0;
3849 }
3850 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003851 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003852 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003853 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003854 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003855 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003856
Bill Wendling98a366d2009-04-29 23:29:43 +00003857 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003858 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003859 SPI.getLine(),
3860 SPI.getColumn(),
3861 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003862 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003863 return 0;
3864 }
3865 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003866 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003867 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003868 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3869 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003870 unsigned LabelID =
3871 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Devang Patel48c7fa22009-04-13 18:13:16 +00003872 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3873 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003874 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003875 return 0;
3876 }
3877 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003878 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003879 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003880
Devang Patel7e1e31f2009-07-02 22:43:26 +00003881 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3882 || !DW->ShouldEmitDwarfDebug())
3883 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003884
Devang Patel7e1e31f2009-07-02 22:43:26 +00003885 MachineFunction &MF = DAG.getMachineFunction();
3886 DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext()));
3887
3888 if (isInlinedFnEnd(REI, MF.getFunction())) {
3889 // This is end of inlined function. Debugging information for inlined
3890 // function is not handled yet (only supported by FastISel).
3891 if (OptLevel == CodeGenOpt::None) {
3892 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3893 if (ID != 0)
3894 // Returned ID is 0 if this is unbalanced "end of inlined
3895 // scope". This could happen if optimizer eats dbg intrinsics or
3896 // "beginning of inlined scope" is not recoginized due to missing
3897 // location info. In such cases, do ignore this region.end.
3898 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3899 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003900 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003901 return 0;
3902 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003903
Devang Patel7e1e31f2009-07-02 22:43:26 +00003904 unsigned LabelID =
3905 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
3906 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3907 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003908 return 0;
3909 }
3910 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003911 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003912 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003913 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None))
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003914 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003915
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003916 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003917 // This is a beginning of an inlined function.
3918 if (isInlinedFnStart(FSI, MF.getFunction())) {
3919 if (OptLevel != CodeGenOpt::None)
3920 // FIXME: Debugging informaation for inlined function is only
3921 // supported at CodeGenOpt::Node.
3922 return 0;
3923
Bill Wendlingc677fe52009-05-10 00:10:50 +00003924 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003925 // If llvm.dbg.func.start is seen in a new block before any
3926 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3927 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3928 if (PrevLoc.isUnknown())
3929 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003930
Devang Patel7e1e31f2009-07-02 22:43:26 +00003931 // Record the source line.
3932 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3933
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003934 if (!DW || !DW->ShouldEmitDwarfDebug())
3935 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003936 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
3937 DISubprogram SP(cast<GlobalVariable>(FSI.getSubprogram()));
3938 DICompileUnit CU(PrevLocTpl.CompileUnit);
3939 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3940 PrevLocTpl.Line,
3941 PrevLocTpl.Col);
3942 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3943 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003944 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003945 }
3946
Devang Patel07b0ec02009-07-02 00:08:09 +00003947 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003948 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003949
3950 if (!DW || !DW->ShouldEmitDwarfDebug())
3951 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003952 // llvm.dbg.func_start also defines beginning of function scope.
3953 DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003954 return 0;
3955 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003956 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003957 if (OptLevel != CodeGenOpt::None)
3958 // FIXME: Variable debug info is not supported here.
3959 return 0;
3960
3961 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3962 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3963 return 0;
3964
3965 Value *Variable = DI.getVariable();
3966 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
3967 getValue(DI.getAddress()), getValue(Variable)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003968 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003969 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003970 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003971 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003972 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003973 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3974 SDValue Ops[1];
3975 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003976 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003977 setValue(&I, Op);
3978 DAG.setRoot(Op.getValue(1));
3979 return 0;
3980 }
3981
3982 case Intrinsic::eh_selector_i32:
3983 case Intrinsic::eh_selector_i64: {
3984 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3985 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
3986 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003987
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003988 if (MMI) {
3989 if (CurMBB->isLandingPad())
3990 AddCatchInfo(I, MMI, CurMBB);
3991 else {
3992#ifndef NDEBUG
3993 FuncInfo.CatchInfoLost.insert(&I);
3994#endif
3995 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3996 unsigned Reg = TLI.getExceptionSelectorRegister();
3997 if (Reg) CurMBB->addLiveIn(Reg);
3998 }
3999
4000 // Insert the EHSELECTION instruction.
4001 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4002 SDValue Ops[2];
4003 Ops[0] = getValue(I.getOperand(1));
4004 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004005 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004006 setValue(&I, Op);
4007 DAG.setRoot(Op.getValue(1));
4008 } else {
4009 setValue(&I, DAG.getConstant(0, VT));
4010 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004011
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004012 return 0;
4013 }
4014
4015 case Intrinsic::eh_typeid_for_i32:
4016 case Intrinsic::eh_typeid_for_i64: {
4017 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4018 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4019 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004020
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004021 if (MMI) {
4022 // Find the type id for the given typeinfo.
4023 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4024
4025 unsigned TypeID = MMI->getTypeIDFor(GV);
4026 setValue(&I, DAG.getConstant(TypeID, VT));
4027 } else {
4028 // Return something different to eh_selector.
4029 setValue(&I, DAG.getConstant(1, VT));
4030 }
4031
4032 return 0;
4033 }
4034
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004035 case Intrinsic::eh_return_i32:
4036 case Intrinsic::eh_return_i64:
4037 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004038 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004039 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004040 MVT::Other,
4041 getControlRoot(),
4042 getValue(I.getOperand(1)),
4043 getValue(I.getOperand(2))));
4044 } else {
4045 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4046 }
4047
4048 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004049 case Intrinsic::eh_unwind_init:
4050 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4051 MMI->setCallsUnwindInit(true);
4052 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004053
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004054 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004055
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004056 case Intrinsic::eh_dwarf_cfa: {
4057 MVT VT = getValue(I.getOperand(1)).getValueType();
4058 SDValue CfaArg;
4059 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004060 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004061 TLI.getPointerTy(), getValue(I.getOperand(1)));
4062 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004063 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004064 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004065
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004066 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004067 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004068 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004069 TLI.getPointerTy()),
4070 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004071 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004072 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004073 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004074 TLI.getPointerTy(),
4075 DAG.getConstant(0,
4076 TLI.getPointerTy())),
4077 Offset));
4078 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004079 }
4080
Mon P Wang77cdf302008-11-10 20:54:11 +00004081 case Intrinsic::convertff:
4082 case Intrinsic::convertfsi:
4083 case Intrinsic::convertfui:
4084 case Intrinsic::convertsif:
4085 case Intrinsic::convertuif:
4086 case Intrinsic::convertss:
4087 case Intrinsic::convertsu:
4088 case Intrinsic::convertus:
4089 case Intrinsic::convertuu: {
4090 ISD::CvtCode Code = ISD::CVT_INVALID;
4091 switch (Intrinsic) {
4092 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4093 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4094 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4095 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4096 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4097 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4098 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4099 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4100 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4101 }
4102 MVT DestVT = TLI.getValueType(I.getType());
4103 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004104 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004105 DAG.getValueType(DestVT),
4106 DAG.getValueType(getValue(Op1).getValueType()),
4107 getValue(I.getOperand(2)),
4108 getValue(I.getOperand(3)),
4109 Code));
4110 return 0;
4111 }
4112
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004113 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004114 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004115 getValue(I.getOperand(1)).getValueType(),
4116 getValue(I.getOperand(1))));
4117 return 0;
4118 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004119 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004120 getValue(I.getOperand(1)).getValueType(),
4121 getValue(I.getOperand(1)),
4122 getValue(I.getOperand(2))));
4123 return 0;
4124 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004125 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004126 getValue(I.getOperand(1)).getValueType(),
4127 getValue(I.getOperand(1))));
4128 return 0;
4129 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004130 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004131 getValue(I.getOperand(1)).getValueType(),
4132 getValue(I.getOperand(1))));
4133 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004134 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004135 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004136 return 0;
4137 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004138 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004139 return 0;
4140 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004141 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004142 return 0;
4143 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004144 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004145 return 0;
4146 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004147 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004148 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004149 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004150 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004151 return 0;
4152 case Intrinsic::pcmarker: {
4153 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004154 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004155 return 0;
4156 }
4157 case Intrinsic::readcyclecounter: {
4158 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004159 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004160 DAG.getVTList(MVT::i64, MVT::Other),
4161 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004162 setValue(&I, Tmp);
4163 DAG.setRoot(Tmp.getValue(1));
4164 return 0;
4165 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004166 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004167 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004168 getValue(I.getOperand(1)).getValueType(),
4169 getValue(I.getOperand(1))));
4170 return 0;
4171 case Intrinsic::cttz: {
4172 SDValue Arg = getValue(I.getOperand(1));
4173 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004174 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004175 setValue(&I, result);
4176 return 0;
4177 }
4178 case Intrinsic::ctlz: {
4179 SDValue Arg = getValue(I.getOperand(1));
4180 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004181 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004182 setValue(&I, result);
4183 return 0;
4184 }
4185 case Intrinsic::ctpop: {
4186 SDValue Arg = getValue(I.getOperand(1));
4187 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004188 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004189 setValue(&I, result);
4190 return 0;
4191 }
4192 case Intrinsic::stacksave: {
4193 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004194 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004195 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004196 setValue(&I, Tmp);
4197 DAG.setRoot(Tmp.getValue(1));
4198 return 0;
4199 }
4200 case Intrinsic::stackrestore: {
4201 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004202 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004203 return 0;
4204 }
Bill Wendling57344502008-11-18 11:01:33 +00004205 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004206 // Emit code into the DAG to store the stack guard onto the stack.
4207 MachineFunction &MF = DAG.getMachineFunction();
4208 MachineFrameInfo *MFI = MF.getFrameInfo();
4209 MVT PtrTy = TLI.getPointerTy();
4210
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004211 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4212 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004213
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004214 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004215 MFI->setStackProtectorIndex(FI);
4216
4217 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4218
4219 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004220 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004221 PseudoSourceValue::getFixedStack(FI),
4222 0, true);
4223 setValue(&I, Result);
4224 DAG.setRoot(Result);
4225 return 0;
4226 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004227 case Intrinsic::var_annotation:
4228 // Discard annotate attributes
4229 return 0;
4230
4231 case Intrinsic::init_trampoline: {
4232 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4233
4234 SDValue Ops[6];
4235 Ops[0] = getRoot();
4236 Ops[1] = getValue(I.getOperand(1));
4237 Ops[2] = getValue(I.getOperand(2));
4238 Ops[3] = getValue(I.getOperand(3));
4239 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4240 Ops[5] = DAG.getSrcValue(F);
4241
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004242 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004243 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
4244 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004245
4246 setValue(&I, Tmp);
4247 DAG.setRoot(Tmp.getValue(1));
4248 return 0;
4249 }
4250
4251 case Intrinsic::gcroot:
4252 if (GFI) {
4253 Value *Alloca = I.getOperand(1);
4254 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004255
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004256 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4257 GFI->addStackRoot(FI->getIndex(), TypeMap);
4258 }
4259 return 0;
4260
4261 case Intrinsic::gcread:
4262 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004263 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004264 return 0;
4265
4266 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004267 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004268 return 0;
4269 }
4270
4271 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004272 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004273 return 0;
4274 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004275
Bill Wendlingef375462008-11-21 02:38:44 +00004276 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004277 return implVisitAluOverflow(I, ISD::UADDO);
4278 case Intrinsic::sadd_with_overflow:
4279 return implVisitAluOverflow(I, ISD::SADDO);
4280 case Intrinsic::usub_with_overflow:
4281 return implVisitAluOverflow(I, ISD::USUBO);
4282 case Intrinsic::ssub_with_overflow:
4283 return implVisitAluOverflow(I, ISD::SSUBO);
4284 case Intrinsic::umul_with_overflow:
4285 return implVisitAluOverflow(I, ISD::UMULO);
4286 case Intrinsic::smul_with_overflow:
4287 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004288
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004289 case Intrinsic::prefetch: {
4290 SDValue Ops[4];
4291 Ops[0] = getRoot();
4292 Ops[1] = getValue(I.getOperand(1));
4293 Ops[2] = getValue(I.getOperand(2));
4294 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004295 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004296 return 0;
4297 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004298
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004299 case Intrinsic::memory_barrier: {
4300 SDValue Ops[6];
4301 Ops[0] = getRoot();
4302 for (int x = 1; x < 6; ++x)
4303 Ops[x] = getValue(I.getOperand(x));
4304
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004305 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004306 return 0;
4307 }
4308 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004309 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004310 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004311 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004312 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4313 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004314 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004315 getValue(I.getOperand(2)),
4316 getValue(I.getOperand(3)),
4317 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004318 setValue(&I, L);
4319 DAG.setRoot(L.getValue(1));
4320 return 0;
4321 }
4322 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004323 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004324 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004325 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004326 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004327 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004328 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004329 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004330 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004331 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004332 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004333 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004334 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004335 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004336 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004337 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004339 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004340 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004341 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004342 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004343 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004344 }
4345}
4346
Dan Gohman98ca4f22009-08-05 01:29:28 +00004347/// Test if the given instruction is in a position to be optimized
4348/// with a tail-call. This roughly means that it's in a block with
4349/// a return and there's nothing that needs to be scheduled
4350/// between it and the return.
4351///
4352/// This function only tests target-independent requirements.
4353/// For target-dependent requirements, a target should override
4354/// TargetLowering::IsEligibleForTailCallOptimization.
4355///
4356static bool
4357isInTailCallPosition(const Instruction *I, Attributes RetAttr,
4358 const TargetLowering &TLI) {
4359 const BasicBlock *ExitBB = I->getParent();
4360 const TerminatorInst *Term = ExitBB->getTerminator();
4361 const ReturnInst *Ret = dyn_cast<ReturnInst>(Term);
4362 const Function *F = ExitBB->getParent();
4363
4364 // The block must end in a return statement or an unreachable.
4365 if (!Ret && !isa<UnreachableInst>(Term)) return false;
4366
4367 // If I will have a chain, make sure no other instruction that will have a
4368 // chain interposes between I and the return.
4369 if (I->mayHaveSideEffects() || I->mayReadFromMemory() ||
4370 !I->isSafeToSpeculativelyExecute())
4371 for (BasicBlock::const_iterator BBI = prior(prior(ExitBB->end())); ;
4372 --BBI) {
4373 if (&*BBI == I)
4374 break;
4375 if (BBI->mayHaveSideEffects() || BBI->mayReadFromMemory() ||
4376 !BBI->isSafeToSpeculativelyExecute())
4377 return false;
4378 }
4379
4380 // If the block ends with a void return or unreachable, it doesn't matter
4381 // what the call's return type is.
4382 if (!Ret || Ret->getNumOperands() == 0) return true;
4383
4384 // Conservatively require the attributes of the call to match those of
4385 // the return.
4386 if (F->getAttributes().getRetAttributes() != RetAttr)
4387 return false;
4388
4389 // Otherwise, make sure the unmodified return value of I is the return value.
4390 for (const Instruction *U = dyn_cast<Instruction>(Ret->getOperand(0)); ;
4391 U = dyn_cast<Instruction>(U->getOperand(0))) {
4392 if (!U)
4393 return false;
4394 if (!U->hasOneUse())
4395 return false;
4396 if (U == I)
4397 break;
4398 // Check for a truly no-op truncate.
4399 if (isa<TruncInst>(U) &&
4400 TLI.isTruncateFree(U->getOperand(0)->getType(), U->getType()))
4401 continue;
4402 // Check for a truly no-op bitcast.
4403 if (isa<BitCastInst>(U) &&
4404 (U->getOperand(0)->getType() == U->getType() ||
4405 (isa<PointerType>(U->getOperand(0)->getType()) &&
4406 isa<PointerType>(U->getType()))))
4407 continue;
4408 // Otherwise it's not a true no-op.
4409 return false;
4410 }
4411
4412 return true;
4413}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004414
4415void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004416 bool isTailCall,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004417 MachineBasicBlock *LandingPad) {
4418 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4419 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4420 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4421 unsigned BeginLabel = 0, EndLabel = 0;
4422
4423 TargetLowering::ArgListTy Args;
4424 TargetLowering::ArgListEntry Entry;
4425 Args.reserve(CS.arg_size());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004426 unsigned j = 1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004427 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Dan Gohman98ca4f22009-08-05 01:29:28 +00004428 i != e; ++i, ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004429 SDValue ArgNode = getValue(*i);
4430 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4431
4432 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004433 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4434 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4435 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4436 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4437 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4438 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004439 Entry.Alignment = CS.getParamAlignment(attrInd);
4440 Args.push_back(Entry);
4441 }
4442
4443 if (LandingPad && MMI) {
4444 // Insert a label before the invoke call to mark the try range. This can be
4445 // used to detect deletion of the invoke via the MachineModuleInfo.
4446 BeginLabel = MMI->NextLabelID();
4447 // Both PendingLoads and PendingExports must be flushed here;
4448 // this call might not return.
4449 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004450 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4451 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004452 }
4453
Dan Gohman98ca4f22009-08-05 01:29:28 +00004454 // Check if target-independent constraints permit a tail call here.
4455 // Target-dependent constraints are checked within TLI.LowerCallTo.
4456 if (isTailCall &&
4457 !isInTailCallPosition(CS.getInstruction(),
4458 CS.getAttributes().getRetAttributes(),
4459 TLI))
4460 isTailCall = false;
4461
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004462 std::pair<SDValue,SDValue> Result =
4463 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004464 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004465 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004466 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004467 CS.getCallingConv(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00004468 isTailCall,
4469 !CS.getInstruction()->use_empty(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004470 Callee, Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004471 assert((isTailCall || Result.second.getNode()) &&
4472 "Non-null chain expected with non-tail call!");
4473 assert((Result.second.getNode() || !Result.first.getNode()) &&
4474 "Null value expected with tail call!");
4475 if (Result.first.getNode())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004476 setValue(CS.getInstruction(), Result.first);
Dan Gohman98ca4f22009-08-05 01:29:28 +00004477 // As a special case, a null chain means that a tail call has
4478 // been emitted and the DAG root is already updated.
4479 if (Result.second.getNode())
4480 DAG.setRoot(Result.second);
4481 else
4482 HasTailCall = true;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004483
4484 if (LandingPad && MMI) {
4485 // Insert a label at the end of the invoke call to mark the try range. This
4486 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4487 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004488 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4489 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004490
4491 // Inform MachineModuleInfo of range.
4492 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4493 }
4494}
4495
4496
4497void SelectionDAGLowering::visitCall(CallInst &I) {
4498 const char *RenameFn = 0;
4499 if (Function *F = I.getCalledFunction()) {
4500 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004501 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4502 if (II) {
4503 if (unsigned IID = II->getIntrinsicID(F)) {
4504 RenameFn = visitIntrinsicCall(I, IID);
4505 if (!RenameFn)
4506 return;
4507 }
4508 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004509 if (unsigned IID = F->getIntrinsicID()) {
4510 RenameFn = visitIntrinsicCall(I, IID);
4511 if (!RenameFn)
4512 return;
4513 }
4514 }
4515
4516 // Check for well-known libc/libm calls. If the function is internal, it
4517 // can't be a library call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004518 if (!F->hasLocalLinkage() && F->hasName()) {
4519 StringRef Name = F->getName();
4520 if (Name == "copysign" || Name == "copysignf") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004521 if (I.getNumOperands() == 3 && // Basic sanity checks.
4522 I.getOperand(1)->getType()->isFloatingPoint() &&
4523 I.getType() == I.getOperand(1)->getType() &&
4524 I.getType() == I.getOperand(2)->getType()) {
4525 SDValue LHS = getValue(I.getOperand(1));
4526 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004527 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004528 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004529 return;
4530 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004531 } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004532 if (I.getNumOperands() == 2 && // Basic sanity checks.
4533 I.getOperand(1)->getType()->isFloatingPoint() &&
4534 I.getType() == I.getOperand(1)->getType()) {
4535 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004536 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004537 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004538 return;
4539 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004540 } else if (Name == "sin" || Name == "sinf" || Name == "sinl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004541 if (I.getNumOperands() == 2 && // Basic sanity checks.
4542 I.getOperand(1)->getType()->isFloatingPoint() &&
4543 I.getType() == I.getOperand(1)->getType()) {
4544 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() &&
4552 I.getType() == I.getOperand(1)->getType()) {
4553 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004554 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004555 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004556 return;
4557 }
4558 }
4559 }
4560 } else if (isa<InlineAsm>(I.getOperand(0))) {
4561 visitInlineAsm(&I);
4562 return;
4563 }
4564
4565 SDValue Callee;
4566 if (!RenameFn)
4567 Callee = getValue(I.getOperand(0));
4568 else
Bill Wendling056292f2008-09-16 21:48:12 +00004569 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004570
Dan Gohman98ca4f22009-08-05 01:29:28 +00004571 // Check if we can potentially perform a tail call. More detailed
4572 // checking is be done within LowerCallTo, after more information
4573 // about the call is known.
4574 bool isTailCall = PerformTailCallOpt && I.isTailCall();
4575
4576 LowerCallTo(&I, Callee, isTailCall);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004577}
4578
4579
4580/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004581/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004582/// Chain/Flag as the input and updates them for the output Chain/Flag.
4583/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004584SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004585 SDValue &Chain,
4586 SDValue *Flag) const {
4587 // Assemble the legal parts into the final values.
4588 SmallVector<SDValue, 4> Values(ValueVTs.size());
4589 SmallVector<SDValue, 8> Parts;
4590 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4591 // Copy the legal parts from the registers.
4592 MVT ValueVT = ValueVTs[Value];
4593 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4594 MVT RegisterVT = RegVTs[Value];
4595
4596 Parts.resize(NumRegs);
4597 for (unsigned i = 0; i != NumRegs; ++i) {
4598 SDValue P;
4599 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004600 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004601 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004602 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004603 *Flag = P.getValue(2);
4604 }
4605 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004606
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004607 // If the source register was virtual and if we know something about it,
4608 // add an assert node.
4609 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4610 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4611 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4612 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4613 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4614 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004615
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004616 unsigned RegSize = RegisterVT.getSizeInBits();
4617 unsigned NumSignBits = LOI.NumSignBits;
4618 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004619
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004620 // FIXME: We capture more information than the dag can represent. For
4621 // now, just use the tightest assertzext/assertsext possible.
4622 bool isSExt = true;
4623 MVT FromVT(MVT::Other);
4624 if (NumSignBits == RegSize)
4625 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4626 else if (NumZeroBits >= RegSize-1)
4627 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4628 else if (NumSignBits > RegSize-8)
4629 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004630 else if (NumZeroBits >= RegSize-8)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004631 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4632 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004633 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004634 else if (NumZeroBits >= RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004635 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004636 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004637 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004638 else if (NumZeroBits >= RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004639 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004640
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004641 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004642 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643 RegisterVT, P, DAG.getValueType(FromVT));
4644
4645 }
4646 }
4647 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004648
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004649 Parts[i] = P;
4650 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004651
Scott Michelfdc40a02009-02-17 22:15:04 +00004652 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004653 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004654 Part += NumRegs;
4655 Parts.clear();
4656 }
4657
Dale Johannesen66978ee2009-01-31 02:22:37 +00004658 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004659 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4660 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004661}
4662
4663/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004664/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004665/// Chain/Flag as the input and updates them for the output Chain/Flag.
4666/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004667void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004668 SDValue &Chain, SDValue *Flag) const {
4669 // Get the list of the values's legal parts.
4670 unsigned NumRegs = Regs.size();
4671 SmallVector<SDValue, 8> Parts(NumRegs);
4672 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4673 MVT ValueVT = ValueVTs[Value];
4674 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4675 MVT RegisterVT = RegVTs[Value];
4676
Dale Johannesen66978ee2009-01-31 02:22:37 +00004677 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004678 &Parts[Part], NumParts, RegisterVT);
4679 Part += NumParts;
4680 }
4681
4682 // Copy the parts into the registers.
4683 SmallVector<SDValue, 8> Chains(NumRegs);
4684 for (unsigned i = 0; i != NumRegs; ++i) {
4685 SDValue Part;
4686 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004687 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004688 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004689 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004690 *Flag = Part.getValue(1);
4691 }
4692 Chains[i] = Part.getValue(0);
4693 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004694
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004695 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004696 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004697 // flagged to it. That is the CopyToReg nodes and the user are considered
4698 // a single scheduling unit. If we create a TokenFactor and return it as
4699 // chain, then the TokenFactor is both a predecessor (operand) of the
4700 // user as well as a successor (the TF operands are flagged to the user).
4701 // c1, f1 = CopyToReg
4702 // c2, f2 = CopyToReg
4703 // c3 = TokenFactor c1, c2
4704 // ...
4705 // = op c3, ..., f2
4706 Chain = Chains[NumRegs-1];
4707 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004708 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004709}
4710
4711/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004712/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004713/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004714void RegsForValue::AddInlineAsmOperands(unsigned Code,
4715 bool HasMatching,unsigned MatchingIdx,
4716 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004717 std::vector<SDValue> &Ops) const {
4718 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004719 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4720 unsigned Flag = Code | (Regs.size() << 3);
4721 if (HasMatching)
4722 Flag |= 0x80000000 | (MatchingIdx << 16);
4723 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004724 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4725 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4726 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004727 for (unsigned i = 0; i != NumRegs; ++i) {
4728 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004729 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004730 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004731 }
4732}
4733
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004734/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004735/// i.e. it isn't a stack pointer or some other special register, return the
4736/// register class for the register. Otherwise, return null.
4737static const TargetRegisterClass *
4738isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4739 const TargetLowering &TLI,
4740 const TargetRegisterInfo *TRI) {
4741 MVT FoundVT = MVT::Other;
4742 const TargetRegisterClass *FoundRC = 0;
4743 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4744 E = TRI->regclass_end(); RCI != E; ++RCI) {
4745 MVT ThisVT = MVT::Other;
4746
4747 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004748 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004749 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4750 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4751 I != E; ++I) {
4752 if (TLI.isTypeLegal(*I)) {
4753 // If we have already found this register in a different register class,
4754 // choose the one with the largest VT specified. For example, on
4755 // PowerPC, we favor f64 register classes over f32.
4756 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4757 ThisVT = *I;
4758 break;
4759 }
4760 }
4761 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004762
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004763 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004764
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004765 // NOTE: This isn't ideal. In particular, this might allocate the
4766 // frame pointer in functions that need it (due to them not being taken
4767 // out of allocation, because a variable sized allocation hasn't been seen
4768 // yet). This is a slight code pessimization, but should still work.
4769 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4770 E = RC->allocation_order_end(MF); I != E; ++I)
4771 if (*I == Reg) {
4772 // We found a matching register class. Keep looking at others in case
4773 // we find one with larger registers that this physreg is also in.
4774 FoundRC = RC;
4775 FoundVT = ThisVT;
4776 break;
4777 }
4778 }
4779 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004780}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004781
4782
4783namespace llvm {
4784/// AsmOperandInfo - This contains information for each constraint that we are
4785/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004786class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004787 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004788public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004789 /// CallOperand - If this is the result output operand or a clobber
4790 /// this is null, otherwise it is the incoming operand to the CallInst.
4791 /// This gets modified as the asm is processed.
4792 SDValue CallOperand;
4793
4794 /// AssignedRegs - If this is a register or register class operand, this
4795 /// contains the set of register corresponding to the operand.
4796 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004797
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004798 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4799 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4800 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004801
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004802 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4803 /// busy in OutputRegs/InputRegs.
4804 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004805 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004806 std::set<unsigned> &InputRegs,
4807 const TargetRegisterInfo &TRI) const {
4808 if (isOutReg) {
4809 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4810 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4811 }
4812 if (isInReg) {
4813 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4814 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4815 }
4816 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004817
Chris Lattner81249c92008-10-17 17:05:25 +00004818 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4819 /// corresponds to. If there is no Value* for this operand, it returns
4820 /// MVT::Other.
4821 MVT getCallOperandValMVT(const TargetLowering &TLI,
4822 const TargetData *TD) const {
4823 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004824
Chris Lattner81249c92008-10-17 17:05:25 +00004825 if (isa<BasicBlock>(CallOperandVal))
4826 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004827
Chris Lattner81249c92008-10-17 17:05:25 +00004828 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004829
Chris Lattner81249c92008-10-17 17:05:25 +00004830 // If this is an indirect operand, the operand is a pointer to the
4831 // accessed type.
4832 if (isIndirect)
4833 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004834
Chris Lattner81249c92008-10-17 17:05:25 +00004835 // If OpTy is not a single value, it may be a struct/union that we
4836 // can tile with integers.
4837 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4838 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4839 switch (BitSize) {
4840 default: break;
4841 case 1:
4842 case 8:
4843 case 16:
4844 case 32:
4845 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004846 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004847 OpTy = IntegerType::get(BitSize);
4848 break;
4849 }
4850 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004851
Chris Lattner81249c92008-10-17 17:05:25 +00004852 return TLI.getValueType(OpTy, true);
4853 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004854
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004855private:
4856 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4857 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004858 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004859 const TargetRegisterInfo &TRI) {
4860 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4861 Regs.insert(Reg);
4862 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4863 for (; *Aliases; ++Aliases)
4864 Regs.insert(*Aliases);
4865 }
4866};
4867} // end llvm namespace.
4868
4869
4870/// GetRegistersForValue - Assign registers (virtual or physical) for the
4871/// specified operand. We prefer to assign virtual registers, to allow the
4872/// register allocator handle the assignment process. However, if the asm uses
4873/// features that we can't model on machineinstrs, we have SDISel do the
4874/// allocation. This produces generally horrible, but correct, code.
4875///
4876/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004877/// Input and OutputRegs are the set of already allocated physical registers.
4878///
4879void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004880GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004881 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004882 std::set<unsigned> &InputRegs) {
4883 // Compute whether this value requires an input register, an output register,
4884 // or both.
4885 bool isOutReg = false;
4886 bool isInReg = false;
4887 switch (OpInfo.Type) {
4888 case InlineAsm::isOutput:
4889 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004890
4891 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004892 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004893 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004894 break;
4895 case InlineAsm::isInput:
4896 isInReg = true;
4897 isOutReg = false;
4898 break;
4899 case InlineAsm::isClobber:
4900 isOutReg = true;
4901 isInReg = true;
4902 break;
4903 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004904
4905
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004906 MachineFunction &MF = DAG.getMachineFunction();
4907 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004908
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004909 // If this is a constraint for a single physreg, or a constraint for a
4910 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004911 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004912 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4913 OpInfo.ConstraintVT);
4914
4915 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004916 if (OpInfo.ConstraintVT != MVT::Other) {
4917 // If this is a FP input in an integer register (or visa versa) insert a bit
4918 // cast of the input value. More generally, handle any case where the input
4919 // value disagrees with the register class we plan to stick this in.
4920 if (OpInfo.Type == InlineAsm::isInput &&
4921 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4922 // Try to convert to the first MVT that the reg class contains. If the
4923 // types are identical size, use a bitcast to convert (e.g. two differing
4924 // vector types).
4925 MVT RegVT = *PhysReg.second->vt_begin();
4926 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004927 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004928 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004929 OpInfo.ConstraintVT = RegVT;
4930 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4931 // If the input is a FP value and we want it in FP registers, do a
4932 // bitcast to the corresponding integer type. This turns an f64 value
4933 // into i64, which can be passed with two i32 values on a 32-bit
4934 // machine.
4935 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004936 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004937 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004938 OpInfo.ConstraintVT = RegVT;
4939 }
4940 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004941
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004942 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004943 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004944
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004945 MVT RegVT;
4946 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004947
4948 // If this is a constraint for a specific physical register, like {r17},
4949 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004950 if (unsigned AssignedReg = PhysReg.first) {
4951 const TargetRegisterClass *RC = PhysReg.second;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004952 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004953 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004954
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004955 // Get the actual register value type. This is important, because the user
4956 // may have asked for (e.g.) the AX register in i32 type. We need to
4957 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004958 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004959
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004960 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004961 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004962
4963 // If this is an expanded reference, add the rest of the regs to Regs.
4964 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004965 TargetRegisterClass::iterator I = RC->begin();
4966 for (; *I != AssignedReg; ++I)
4967 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004968
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004969 // Already added the first reg.
4970 --NumRegs; ++I;
4971 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004972 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004973 Regs.push_back(*I);
4974 }
4975 }
4976 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4977 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4978 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4979 return;
4980 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004981
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004982 // Otherwise, if this was a reference to an LLVM register class, create vregs
4983 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00004984 if (const TargetRegisterClass *RC = PhysReg.second) {
4985 RegVT = *RC->vt_begin();
Evan Chengfb112882009-03-23 08:01:15 +00004986 if (OpInfo.ConstraintVT == MVT::Other)
4987 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004988
Evan Chengfb112882009-03-23 08:01:15 +00004989 // Create the appropriate number of virtual registers.
4990 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4991 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00004992 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004993
Evan Chengfb112882009-03-23 08:01:15 +00004994 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4995 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004996 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004997
4998 // This is a reference to a register class that doesn't directly correspond
4999 // to an LLVM register class. Allocate NumRegs consecutive, available,
5000 // registers from the class.
5001 std::vector<unsigned> RegClassRegs
5002 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
5003 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005004
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005005 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5006 unsigned NumAllocated = 0;
5007 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
5008 unsigned Reg = RegClassRegs[i];
5009 // See if this register is available.
5010 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
5011 (isInReg && InputRegs.count(Reg))) { // Already used.
5012 // Make sure we find consecutive registers.
5013 NumAllocated = 0;
5014 continue;
5015 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005016
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005017 // Check to see if this register is allocatable (i.e. don't give out the
5018 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005019 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
5020 if (!RC) { // Couldn't allocate this register.
5021 // Reset NumAllocated to make sure we return consecutive registers.
5022 NumAllocated = 0;
5023 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005024 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005025
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005026 // Okay, this register is good, we can use it.
5027 ++NumAllocated;
5028
5029 // If we allocated enough consecutive registers, succeed.
5030 if (NumAllocated == NumRegs) {
5031 unsigned RegStart = (i-NumAllocated)+1;
5032 unsigned RegEnd = i+1;
5033 // Mark all of the allocated registers used.
5034 for (unsigned i = RegStart; i != RegEnd; ++i)
5035 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005036
5037 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005038 OpInfo.ConstraintVT);
5039 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5040 return;
5041 }
5042 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005043
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005044 // Otherwise, we couldn't allocate enough registers for this.
5045}
5046
Evan Chengda43bcf2008-09-24 00:05:32 +00005047/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5048/// processed uses a memory 'm' constraint.
5049static bool
5050hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005051 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005052 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5053 InlineAsm::ConstraintInfo &CI = CInfos[i];
5054 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5055 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5056 if (CType == TargetLowering::C_Memory)
5057 return true;
5058 }
Chris Lattner6c147292009-04-30 00:48:50 +00005059
5060 // Indirect operand accesses access memory.
5061 if (CI.isIndirect)
5062 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005063 }
5064
5065 return false;
5066}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005067
5068/// visitInlineAsm - Handle a call to an InlineAsm object.
5069///
5070void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5071 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5072
5073 /// ConstraintOperands - Information about all of the constraints.
5074 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005075
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005076 std::set<unsigned> OutputRegs, InputRegs;
5077
5078 // Do a prepass over the constraints, canonicalizing them, and building up the
5079 // ConstraintOperands list.
5080 std::vector<InlineAsm::ConstraintInfo>
5081 ConstraintInfos = IA->ParseConstraints();
5082
Evan Chengda43bcf2008-09-24 00:05:32 +00005083 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005084
5085 SDValue Chain, Flag;
5086
5087 // We won't need to flush pending loads if this asm doesn't touch
5088 // memory and is nonvolatile.
5089 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005090 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005091 else
5092 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005093
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005094 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5095 unsigned ResNo = 0; // ResNo - The result number of the next output.
5096 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5097 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5098 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005099
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005100 MVT OpVT = MVT::Other;
5101
5102 // Compute the value type for each operand.
5103 switch (OpInfo.Type) {
5104 case InlineAsm::isOutput:
5105 // Indirect outputs just consume an argument.
5106 if (OpInfo.isIndirect) {
5107 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5108 break;
5109 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005110
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005111 // The return value of the call is this value. As such, there is no
5112 // corresponding argument.
5113 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5114 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5115 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5116 } else {
5117 assert(ResNo == 0 && "Asm only has one result!");
5118 OpVT = TLI.getValueType(CS.getType());
5119 }
5120 ++ResNo;
5121 break;
5122 case InlineAsm::isInput:
5123 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5124 break;
5125 case InlineAsm::isClobber:
5126 // Nothing to do.
5127 break;
5128 }
5129
5130 // If this is an input or an indirect output, process the call argument.
5131 // BasicBlocks are labels, currently appearing only in asm's.
5132 if (OpInfo.CallOperandVal) {
Dale Johannesen5339c552009-07-20 23:27:39 +00005133 // Strip bitcasts, if any. This mostly comes up for functions.
5134 ConstantExpr* CE = NULL;
5135 while ((CE = dyn_cast<ConstantExpr>(OpInfo.CallOperandVal)) &&
5136 CE->getOpcode()==Instruction::BitCast)
5137 OpInfo.CallOperandVal = CE->getOperand(0);
Chris Lattner81249c92008-10-17 17:05:25 +00005138 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005139 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005140 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005141 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005142 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005143
Chris Lattner81249c92008-10-17 17:05:25 +00005144 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005145 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005146
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005147 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005148 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005149
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005150 // Second pass over the constraints: compute which constraint option to use
5151 // and assign registers to constraints that want a specific physreg.
5152 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5153 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005154
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005155 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005156 // matching input. If their types mismatch, e.g. one is an integer, the
5157 // other is floating point, or their sizes are different, flag it as an
5158 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005159 if (OpInfo.hasMatchingInput()) {
5160 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5161 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005162 if ((OpInfo.ConstraintVT.isInteger() !=
5163 Input.ConstraintVT.isInteger()) ||
5164 (OpInfo.ConstraintVT.getSizeInBits() !=
5165 Input.ConstraintVT.getSizeInBits())) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005166 llvm_report_error("Unsupported asm: input constraint"
Torok Edwin7d696d82009-07-11 13:10:19 +00005167 " with a matching output constraint of incompatible"
5168 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005169 }
5170 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005171 }
5172 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005173
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005174 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005175 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005176
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005177 // If this is a memory input, and if the operand is not indirect, do what we
5178 // need to to provide an address for the memory input.
5179 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5180 !OpInfo.isIndirect) {
5181 assert(OpInfo.Type == InlineAsm::isInput &&
5182 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005183
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005184 // Memory operands really want the address of the value. If we don't have
5185 // an indirect input, put it in the constpool if we can, otherwise spill
5186 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005187
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005188 // If the operand is a float, integer, or vector constant, spill to a
5189 // constant pool entry to get its address.
5190 Value *OpVal = OpInfo.CallOperandVal;
5191 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5192 isa<ConstantVector>(OpVal)) {
5193 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5194 TLI.getPointerTy());
5195 } else {
5196 // Otherwise, create a stack slot and emit a store to it before the
5197 // asm.
5198 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005199 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005200 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5201 MachineFunction &MF = DAG.getMachineFunction();
5202 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5203 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005204 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005205 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005206 OpInfo.CallOperand = StackSlot;
5207 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005208
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005209 // There is no longer a Value* corresponding to this operand.
5210 OpInfo.CallOperandVal = 0;
5211 // It is now an indirect operand.
5212 OpInfo.isIndirect = true;
5213 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005214
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005215 // If this constraint is for a specific register, allocate it before
5216 // anything else.
5217 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005218 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005219 }
5220 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005221
5222
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005223 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005224 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005225 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5226 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005227
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005228 // C_Register operands have already been allocated, Other/Memory don't need
5229 // to be.
5230 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005231 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005232 }
5233
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005234 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5235 std::vector<SDValue> AsmNodeOperands;
5236 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5237 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005238 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005239
5240
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005241 // Loop over all of the inputs, copying the operand values into the
5242 // appropriate registers and processing the output regs.
5243 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005244
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005245 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5246 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005247
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005248 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5249 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5250
5251 switch (OpInfo.Type) {
5252 case InlineAsm::isOutput: {
5253 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5254 OpInfo.ConstraintType != TargetLowering::C_Register) {
5255 // Memory output, or 'other' output (e.g. 'X' constraint).
5256 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5257
5258 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005259 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5260 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005261 TLI.getPointerTy()));
5262 AsmNodeOperands.push_back(OpInfo.CallOperand);
5263 break;
5264 }
5265
5266 // Otherwise, this is a register or register class output.
5267
5268 // Copy the output from the appropriate register. Find a register that
5269 // we can use.
5270 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005271 llvm_report_error("Couldn't allocate output reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005272 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005273 }
5274
5275 // If this is an indirect operand, store through the pointer after the
5276 // asm.
5277 if (OpInfo.isIndirect) {
5278 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5279 OpInfo.CallOperandVal));
5280 } else {
5281 // This is the result value of the call.
5282 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5283 // Concatenate this output onto the outputs list.
5284 RetValRegs.append(OpInfo.AssignedRegs);
5285 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005286
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005287 // Add information to the INLINEASM node to know that this register is
5288 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005289 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5290 6 /* EARLYCLOBBER REGDEF */ :
5291 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005292 false,
5293 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005294 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005295 break;
5296 }
5297 case InlineAsm::isInput: {
5298 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005299
Chris Lattner6bdcda32008-10-17 16:47:46 +00005300 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005301 // If this is required to match an output register we have already set,
5302 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005303 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005304
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005305 // Scan until we find the definition we already emitted of this operand.
5306 // When we find it, create a RegsForValue operand.
5307 unsigned CurOp = 2; // The first operand.
5308 for (; OperandNo; --OperandNo) {
5309 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005310 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005311 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005312 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5313 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5314 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005315 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005316 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005317 }
5318
Evan Cheng697cbbf2009-03-20 18:03:34 +00005319 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005320 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005321 if ((OpFlag & 7) == 2 /*REGDEF*/
5322 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5323 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005324 if (OpInfo.isIndirect) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005325 llvm_report_error("Don't know how to handle tied indirect "
Torok Edwin7d696d82009-07-11 13:10:19 +00005326 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005327 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005328 RegsForValue MatchedRegs;
5329 MatchedRegs.TLI = &TLI;
5330 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Evan Chengfb112882009-03-23 08:01:15 +00005331 MVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
5332 MatchedRegs.RegVTs.push_back(RegVT);
5333 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005334 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005335 i != e; ++i)
5336 MatchedRegs.Regs.
5337 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005338
5339 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005340 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5341 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005342 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5343 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005344 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005345 break;
5346 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005347 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5348 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5349 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005350 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005351 // See InlineAsm.h isUseOperandTiedToDef.
5352 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005353 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005354 TLI.getPointerTy()));
5355 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5356 break;
5357 }
5358 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005359
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005360 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005361 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005362 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005363
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005364 std::vector<SDValue> Ops;
5365 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005366 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005367 if (Ops.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005368 llvm_report_error("Invalid operand for inline asm"
Torok Edwin7d696d82009-07-11 13:10:19 +00005369 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005370 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005371
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005372 // Add information to the INLINEASM node to know about this input.
5373 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005374 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005375 TLI.getPointerTy()));
5376 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5377 break;
5378 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5379 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5380 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5381 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005382
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005383 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005384 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5385 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005386 TLI.getPointerTy()));
5387 AsmNodeOperands.push_back(InOperandVal);
5388 break;
5389 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005390
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005391 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5392 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5393 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005394 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005395 "Don't know how to handle indirect register inputs yet!");
5396
5397 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005398 if (OpInfo.AssignedRegs.Regs.empty()) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +00005399 llvm_report_error("Couldn't allocate input reg for"
Torok Edwin7d696d82009-07-11 13:10:19 +00005400 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005401 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005402
Dale Johannesen66978ee2009-01-31 02:22:37 +00005403 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5404 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005405
Evan Cheng697cbbf2009-03-20 18:03:34 +00005406 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005407 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005408 break;
5409 }
5410 case InlineAsm::isClobber: {
5411 // Add the clobbered value to the operand list, so that the register
5412 // allocator is aware that the physreg got clobbered.
5413 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005414 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005415 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005416 break;
5417 }
5418 }
5419 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005420
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005421 // Finish up input operands.
5422 AsmNodeOperands[0] = Chain;
5423 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005424
Dale Johannesen66978ee2009-01-31 02:22:37 +00005425 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00005426 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005427 &AsmNodeOperands[0], AsmNodeOperands.size());
5428 Flag = Chain.getValue(1);
5429
5430 // If this asm returns a register value, copy the result from that register
5431 // and set it as the value of the call.
5432 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005433 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005434 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005435
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005436 // FIXME: Why don't we do this for inline asms with MRVs?
5437 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5438 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005439
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005440 // If any of the results of the inline asm is a vector, it may have the
5441 // wrong width/num elts. This can happen for register classes that can
5442 // contain multiple different value types. The preg or vreg allocated may
5443 // not have the same VT as was expected. Convert it to the right type
5444 // with bit_convert.
5445 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005446 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005447 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005448
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005449 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005450 ResultType.isInteger() && Val.getValueType().isInteger()) {
5451 // If a result value was tied to an input value, the computed result may
5452 // have a wider width than the expected result. Extract the relevant
5453 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005454 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005455 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005456
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005457 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005458 }
Dan Gohman95915732008-10-18 01:03:45 +00005459
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005460 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005461 // Don't need to use this as a chain in this case.
5462 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5463 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005464 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005465
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005466 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005467
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005468 // Process indirect outputs, first output all of the flagged copies out of
5469 // physregs.
5470 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5471 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5472 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005473 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5474 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005475 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005476
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005477 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005478
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005479 // Emit the non-flagged stores from the physregs.
5480 SmallVector<SDValue, 8> OutChains;
5481 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005482 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005483 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005484 getValue(StoresToEmit[i].second),
5485 StoresToEmit[i].second, 0));
5486 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005487 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005488 &OutChains[0], OutChains.size());
5489 DAG.setRoot(Chain);
5490}
5491
5492
5493void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5494 SDValue Src = getValue(I.getOperand(0));
5495
Chris Lattner0b18e592009-03-17 19:36:00 +00005496 // Scale up by the type size in the original i32 type width. Various
5497 // mid-level optimizers may make assumptions about demanded bits etc from the
5498 // i32-ness of the optimizer: we do not want to promote to i64 and then
5499 // multiply on 64-bit targets.
5500 // FIXME: Malloc inst should go away: PR715.
Duncan Sands777d2302009-05-09 07:06:46 +00005501 uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType());
Chris Lattner50340f62009-07-23 21:26:18 +00005502 if (ElementSize != 1) {
5503 // Src is always 32-bits, make sure the constant fits.
5504 assert(Src.getValueType() == MVT::i32);
5505 ElementSize = (uint32_t)ElementSize;
Chris Lattner0b18e592009-03-17 19:36:00 +00005506 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5507 Src, DAG.getConstant(ElementSize, Src.getValueType()));
Chris Lattner50340f62009-07-23 21:26:18 +00005508 }
Chris Lattner0b18e592009-03-17 19:36:00 +00005509
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005510 MVT IntPtr = TLI.getPointerTy();
5511
5512 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005513 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005514 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005515 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005516
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005517 TargetLowering::ArgListTy Args;
5518 TargetLowering::ArgListEntry Entry;
5519 Entry.Node = Src;
5520 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5521 Args.push_back(Entry);
5522
Dan Gohman98ca4f22009-08-05 01:29:28 +00005523 bool isTailCall = PerformTailCallOpt &&
5524 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005525 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005526 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005527 0, CallingConv::C, isTailCall,
5528 /*isReturnValueUsed=*/true,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005529 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005530 Args, DAG, getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005531 if (Result.first.getNode())
5532 setValue(&I, Result.first); // Pointers always fit in registers
5533 if (Result.second.getNode())
5534 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005535}
5536
5537void SelectionDAGLowering::visitFree(FreeInst &I) {
5538 TargetLowering::ArgListTy Args;
5539 TargetLowering::ArgListEntry Entry;
5540 Entry.Node = getValue(I.getOperand(0));
5541 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5542 Args.push_back(Entry);
5543 MVT IntPtr = TLI.getPointerTy();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005544 bool isTailCall = PerformTailCallOpt &&
5545 isInTailCallPosition(&I, Attribute::None, TLI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005546 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005547 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005548 0, CallingConv::C, isTailCall,
5549 /*isReturnValueUsed=*/true,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005550 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005551 getCurDebugLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00005552 if (Result.second.getNode())
5553 DAG.setRoot(Result.second);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005554}
5555
5556void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005557 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005558 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005559 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005560 DAG.getSrcValue(I.getOperand(1))));
5561}
5562
5563void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005564 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5565 getRoot(), getValue(I.getOperand(0)),
5566 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005567 setValue(&I, V);
5568 DAG.setRoot(V.getValue(1));
5569}
5570
5571void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005572 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005573 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005574 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005575 DAG.getSrcValue(I.getOperand(1))));
5576}
5577
5578void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005579 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005580 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005581 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005582 getValue(I.getOperand(2)),
5583 DAG.getSrcValue(I.getOperand(1)),
5584 DAG.getSrcValue(I.getOperand(2))));
5585}
5586
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005587/// TargetLowering::LowerCallTo - This is the default LowerCallTo
Dan Gohman98ca4f22009-08-05 01:29:28 +00005588/// implementation, which just calls LowerCall.
5589/// FIXME: When all targets are
5590/// migrated to using LowerCall, this hook should be integrated into SDISel.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005591std::pair<SDValue, SDValue>
5592TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5593 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005594 bool isInreg, unsigned NumFixedArgs,
Dan Gohman98ca4f22009-08-05 01:29:28 +00005595 unsigned CallConv, bool isTailCall,
5596 bool isReturnValueUsed,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005597 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005598 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00005599
Dan Gohman1937e2f2008-09-16 01:42:28 +00005600 assert((!isTailCall || PerformTailCallOpt) &&
5601 "isTailCall set when tail-call optimizations are disabled!");
5602
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005603 // Handle all of the outgoing arguments.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005604 SmallVector<ISD::OutputArg, 32> Outs;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005605 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5606 SmallVector<MVT, 4> ValueVTs;
5607 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5608 for (unsigned Value = 0, NumValues = ValueVTs.size();
5609 Value != NumValues; ++Value) {
5610 MVT VT = ValueVTs[Value];
Owen Andersondebcb012009-07-29 22:17:13 +00005611 const Type *ArgTy = VT.getTypeForMVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005612 SDValue Op = SDValue(Args[i].Node.getNode(),
5613 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005614 ISD::ArgFlagsTy Flags;
5615 unsigned OriginalAlignment =
5616 getTargetData()->getABITypeAlignment(ArgTy);
5617
5618 if (Args[i].isZExt)
5619 Flags.setZExt();
5620 if (Args[i].isSExt)
5621 Flags.setSExt();
5622 if (Args[i].isInReg)
5623 Flags.setInReg();
5624 if (Args[i].isSRet)
5625 Flags.setSRet();
5626 if (Args[i].isByVal) {
5627 Flags.setByVal();
5628 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5629 const Type *ElementTy = Ty->getElementType();
5630 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005631 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005632 // For ByVal, alignment should come from FE. BE will guess if this
5633 // info is not there but there are cases it cannot get right.
5634 if (Args[i].Alignment)
5635 FrameAlign = Args[i].Alignment;
5636 Flags.setByValAlign(FrameAlign);
5637 Flags.setByValSize(FrameSize);
5638 }
5639 if (Args[i].isNest)
5640 Flags.setNest();
5641 Flags.setOrigAlign(OriginalAlignment);
5642
5643 MVT PartVT = getRegisterType(VT);
5644 unsigned NumParts = getNumRegisters(VT);
5645 SmallVector<SDValue, 4> Parts(NumParts);
5646 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5647
5648 if (Args[i].isSExt)
5649 ExtendKind = ISD::SIGN_EXTEND;
5650 else if (Args[i].isZExt)
5651 ExtendKind = ISD::ZERO_EXTEND;
5652
Dale Johannesen66978ee2009-01-31 02:22:37 +00005653 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005654
Dan Gohman98ca4f22009-08-05 01:29:28 +00005655 for (unsigned j = 0; j != NumParts; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005656 // if it isn't first piece, alignment must be 1
Dan Gohman98ca4f22009-08-05 01:29:28 +00005657 ISD::OutputArg MyFlags(Flags, Parts[j], i < NumFixedArgs);
5658 if (NumParts > 1 && j == 0)
5659 MyFlags.Flags.setSplit();
5660 else if (j != 0)
5661 MyFlags.Flags.setOrigAlign(1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005662
Dan Gohman98ca4f22009-08-05 01:29:28 +00005663 Outs.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005664 }
5665 }
5666 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005667
Dan Gohman98ca4f22009-08-05 01:29:28 +00005668 // Handle the incoming return values from the call.
5669 SmallVector<ISD::InputArg, 32> Ins;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005670 SmallVector<MVT, 4> RetTys;
5671 ComputeValueVTs(*this, RetTy, RetTys);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005672 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5673 MVT VT = RetTys[I];
5674 MVT RegisterVT = getRegisterType(VT);
5675 unsigned NumRegs = getNumRegisters(VT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00005676 for (unsigned i = 0; i != NumRegs; ++i) {
5677 ISD::InputArg MyFlags;
5678 MyFlags.VT = RegisterVT;
5679 MyFlags.Used = isReturnValueUsed;
5680 if (RetSExt)
5681 MyFlags.Flags.setSExt();
5682 if (RetZExt)
5683 MyFlags.Flags.setZExt();
5684 if (isInreg)
5685 MyFlags.Flags.setInReg();
5686 Ins.push_back(MyFlags);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005687 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005688 }
5689
Dan Gohman98ca4f22009-08-05 01:29:28 +00005690 // Check if target-dependent constraints permit a tail call here.
5691 // Target-independent constraints should be checked by the caller.
5692 if (isTailCall &&
5693 !IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, Ins, DAG))
5694 isTailCall = false;
5695
5696 SmallVector<SDValue, 4> InVals;
5697 Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall,
5698 Outs, Ins, dl, DAG, InVals);
5699 assert((!isTailCall || InVals.empty()) && "Tail call had return SDValues!");
5700
5701 // For a tail call, the return value is merely live-out and there aren't
5702 // any nodes in the DAG representing it. Return a special value to
5703 // indicate that a tail call has been emitted and no more Instructions
5704 // should be processed in the current block.
5705 if (isTailCall) {
5706 DAG.setRoot(Chain);
5707 return std::make_pair(SDValue(), SDValue());
5708 }
5709
5710 // Collect the legal value parts into potentially illegal values
5711 // that correspond to the original function's return values.
5712 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5713 if (RetSExt)
5714 AssertOp = ISD::AssertSext;
5715 else if (RetZExt)
5716 AssertOp = ISD::AssertZext;
5717 SmallVector<SDValue, 4> ReturnValues;
5718 unsigned CurReg = 0;
5719 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5720 MVT VT = RetTys[I];
5721 MVT RegisterVT = getRegisterType(VT);
5722 unsigned NumRegs = getNumRegisters(VT);
5723
5724 SDValue ReturnValue =
5725 getCopyFromParts(DAG, dl, &InVals[CurReg], NumRegs, RegisterVT, VT,
5726 AssertOp);
5727 ReturnValues.push_back(ReturnValue);
5728 CurReg += NumRegs;
5729 }
5730
5731 // For a function returning void, there is no return value. We can't create
5732 // such a node, so we just return a null return value in that case. In
5733 // that case, nothing will actualy look at the value.
5734 if (ReturnValues.empty())
5735 return std::make_pair(SDValue(), Chain);
5736
5737 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl,
5738 DAG.getVTList(&RetTys[0], RetTys.size()),
5739 &ReturnValues[0], ReturnValues.size());
5740
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005741 return std::make_pair(Res, Chain);
5742}
5743
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005744void TargetLowering::LowerOperationWrapper(SDNode *N,
5745 SmallVectorImpl<SDValue> &Results,
5746 SelectionDAG &DAG) {
5747 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005748 if (Res.getNode())
5749 Results.push_back(Res);
5750}
5751
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005752SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005753 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005754 return SDValue();
5755}
5756
5757
5758void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5759 SDValue Op = getValue(V);
5760 assert((Op.getOpcode() != ISD::CopyFromReg ||
5761 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5762 "Copy from a reg to the same reg!");
5763 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5764
5765 RegsForValue RFV(TLI, Reg, V->getType());
5766 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005767 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005768 PendingExports.push_back(Chain);
5769}
5770
5771#include "llvm/CodeGen/SelectionDAGISel.h"
5772
5773void SelectionDAGISel::
5774LowerArguments(BasicBlock *LLVMBB) {
5775 // If this is the entry block, emit arguments.
5776 Function &F = *LLVMBB->getParent();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005777 SelectionDAG &DAG = SDL->DAG;
5778 SDValue OldRoot = DAG.getRoot();
5779 DebugLoc dl = SDL->getCurDebugLoc();
5780 const TargetData *TD = TLI.getTargetData();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005781
Dan Gohman98ca4f22009-08-05 01:29:28 +00005782 // Set up the incoming argument description vector.
5783 SmallVector<ISD::InputArg, 16> Ins;
5784 unsigned Idx = 1;
5785 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5786 I != E; ++I, ++Idx) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005787 SmallVector<MVT, 4> ValueVTs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00005788 ComputeValueVTs(TLI, I->getType(), ValueVTs);
5789 bool isArgValueUsed = !I->use_empty();
5790 for (unsigned Value = 0, NumValues = ValueVTs.size();
5791 Value != NumValues; ++Value) {
5792 MVT VT = ValueVTs[Value];
5793 const Type *ArgTy = VT.getTypeForMVT();
5794 ISD::ArgFlagsTy Flags;
5795 unsigned OriginalAlignment =
5796 TD->getABITypeAlignment(ArgTy);
5797
5798 if (F.paramHasAttr(Idx, Attribute::ZExt))
5799 Flags.setZExt();
5800 if (F.paramHasAttr(Idx, Attribute::SExt))
5801 Flags.setSExt();
5802 if (F.paramHasAttr(Idx, Attribute::InReg))
5803 Flags.setInReg();
5804 if (F.paramHasAttr(Idx, Attribute::StructRet))
5805 Flags.setSRet();
5806 if (F.paramHasAttr(Idx, Attribute::ByVal)) {
5807 Flags.setByVal();
5808 const PointerType *Ty = cast<PointerType>(I->getType());
5809 const Type *ElementTy = Ty->getElementType();
5810 unsigned FrameAlign = TLI.getByValTypeAlignment(ElementTy);
5811 unsigned FrameSize = TD->getTypeAllocSize(ElementTy);
5812 // For ByVal, alignment should be passed from FE. BE will guess if
5813 // this info is not there but there are cases it cannot get right.
5814 if (F.getParamAlignment(Idx))
5815 FrameAlign = F.getParamAlignment(Idx);
5816 Flags.setByValAlign(FrameAlign);
5817 Flags.setByValSize(FrameSize);
5818 }
5819 if (F.paramHasAttr(Idx, Attribute::Nest))
5820 Flags.setNest();
5821 Flags.setOrigAlign(OriginalAlignment);
5822
5823 MVT RegisterVT = TLI.getRegisterType(VT);
5824 unsigned NumRegs = TLI.getNumRegisters(VT);
5825 for (unsigned i = 0; i != NumRegs; ++i) {
5826 ISD::InputArg MyFlags(Flags, RegisterVT, isArgValueUsed);
5827 if (NumRegs > 1 && i == 0)
5828 MyFlags.Flags.setSplit();
5829 // if it isn't first piece, alignment must be 1
5830 else if (i > 0)
5831 MyFlags.Flags.setOrigAlign(1);
5832 Ins.push_back(MyFlags);
5833 }
5834 }
5835 }
5836
5837 // Call the target to set up the argument values.
5838 SmallVector<SDValue, 8> InVals;
5839 SDValue NewRoot = TLI.LowerFormalArguments(DAG.getRoot(), F.getCallingConv(),
5840 F.isVarArg(), Ins,
5841 dl, DAG, InVals);
5842 DAG.setRoot(NewRoot);
5843
5844 // Set up the argument values.
5845 unsigned i = 0;
5846 Idx = 1;
5847 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
5848 ++I, ++Idx) {
5849 SmallVector<SDValue, 4> ArgValues;
5850 SmallVector<MVT, 4> ValueVTs;
5851 ComputeValueVTs(TLI, I->getType(), ValueVTs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005852 unsigned NumValues = ValueVTs.size();
Dan Gohman98ca4f22009-08-05 01:29:28 +00005853 for (unsigned Value = 0; Value != NumValues; ++Value) {
5854 MVT VT = ValueVTs[Value];
5855 MVT PartVT = TLI.getRegisterType(VT);
5856 unsigned NumParts = TLI.getNumRegisters(VT);
5857
5858 if (!I->use_empty()) {
5859 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5860 if (F.paramHasAttr(Idx, Attribute::SExt))
5861 AssertOp = ISD::AssertSext;
5862 else if (F.paramHasAttr(Idx, Attribute::ZExt))
5863 AssertOp = ISD::AssertZext;
5864
5865 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], NumParts,
5866 PartVT, VT, AssertOp));
5867 }
5868 i += NumParts;
5869 }
5870 if (!I->use_empty()) {
5871 SDL->setValue(I, DAG.getMergeValues(&ArgValues[0], NumValues,
5872 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005873 // If this argument is live outside of the entry block, insert a copy from
5874 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohman98ca4f22009-08-05 01:29:28 +00005875 SDL->CopyToExportRegsIfNeeded(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005876 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005877 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00005878 assert(i == InVals.size() && "Argument register count mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005879
5880 // Finally, if the target has anything special to do, allow it to do so.
5881 // FIXME: this should insert code into the DAG!
5882 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5883}
5884
5885/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5886/// ensure constants are generated when needed. Remember the virtual registers
5887/// that need to be added to the Machine PHI nodes as input. We cannot just
5888/// directly add them, because expansion might result in multiple MBB's for one
5889/// BB. As such, the start of the BB might correspond to a different MBB than
5890/// the end.
5891///
5892void
5893SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5894 TerminatorInst *TI = LLVMBB->getTerminator();
5895
5896 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5897
5898 // Check successor nodes' PHI nodes that expect a constant to be available
5899 // from this block.
5900 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5901 BasicBlock *SuccBB = TI->getSuccessor(succ);
5902 if (!isa<PHINode>(SuccBB->begin())) continue;
5903 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005904
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005905 // If this terminator has multiple identical successors (common for
5906 // switches), only handle each succ once.
5907 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005908
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005909 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5910 PHINode *PN;
5911
5912 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5913 // nodes and Machine PHI nodes, but the incoming operands have not been
5914 // emitted yet.
5915 for (BasicBlock::iterator I = SuccBB->begin();
5916 (PN = dyn_cast<PHINode>(I)); ++I) {
5917 // Ignore dead phi's.
5918 if (PN->use_empty()) continue;
5919
5920 unsigned Reg;
5921 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5922
5923 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5924 unsigned &RegOut = SDL->ConstantsOut[C];
5925 if (RegOut == 0) {
5926 RegOut = FuncInfo->CreateRegForValue(C);
5927 SDL->CopyValueToVirtualRegister(C, RegOut);
5928 }
5929 Reg = RegOut;
5930 } else {
5931 Reg = FuncInfo->ValueMap[PHIOp];
5932 if (Reg == 0) {
5933 assert(isa<AllocaInst>(PHIOp) &&
5934 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5935 "Didn't codegen value into a register!??");
5936 Reg = FuncInfo->CreateRegForValue(PHIOp);
5937 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5938 }
5939 }
5940
5941 // Remember that this register needs to added to the machine PHI node as
5942 // the input for this MBB.
5943 SmallVector<MVT, 4> ValueVTs;
5944 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5945 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5946 MVT VT = ValueVTs[vti];
5947 unsigned NumRegisters = TLI.getNumRegisters(VT);
5948 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5949 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5950 Reg += NumRegisters;
5951 }
5952 }
5953 }
5954 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005955}
5956
Dan Gohman3df24e62008-09-03 23:12:08 +00005957/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5958/// supports legal types, and it emits MachineInstrs directly instead of
5959/// creating SelectionDAG nodes.
5960///
5961bool
5962SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5963 FastISel *F) {
5964 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005965
Dan Gohman3df24e62008-09-03 23:12:08 +00005966 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5967 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5968
5969 // Check successor nodes' PHI nodes that expect a constant to be available
5970 // from this block.
5971 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5972 BasicBlock *SuccBB = TI->getSuccessor(succ);
5973 if (!isa<PHINode>(SuccBB->begin())) continue;
5974 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005975
Dan Gohman3df24e62008-09-03 23:12:08 +00005976 // If this terminator has multiple identical successors (common for
5977 // switches), only handle each succ once.
5978 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005979
Dan Gohman3df24e62008-09-03 23:12:08 +00005980 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5981 PHINode *PN;
5982
5983 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5984 // nodes and Machine PHI nodes, but the incoming operands have not been
5985 // emitted yet.
5986 for (BasicBlock::iterator I = SuccBB->begin();
5987 (PN = dyn_cast<PHINode>(I)); ++I) {
5988 // Ignore dead phi's.
5989 if (PN->use_empty()) continue;
5990
5991 // Only handle legal types. Two interesting things to note here. First,
5992 // by bailing out early, we may leave behind some dead instructions,
5993 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5994 // own moves. Second, this check is necessary becuase FastISel doesn't
5995 // use CreateRegForValue to create registers, so it always creates
5996 // exactly one register for each non-void instruction.
5997 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5998 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005999 // Promote MVT::i1.
6000 if (VT == MVT::i1)
6001 VT = TLI.getTypeToTransformTo(VT);
6002 else {
6003 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6004 return false;
6005 }
Dan Gohman3df24e62008-09-03 23:12:08 +00006006 }
6007
6008 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6009
6010 unsigned Reg = F->getRegForValue(PHIOp);
6011 if (Reg == 0) {
6012 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6013 return false;
6014 }
6015 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
6016 }
6017 }
6018
6019 return true;
6020}