blob: 3a8b782564c161ce9fa333a58e10ccd7c8107cbb [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"
20#include "llvm/CallingConv.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
23#include "llvm/GlobalVariable.h"
24#include "llvm/InlineAsm.h"
25#include "llvm/Instructions.h"
26#include "llvm/Intrinsics.h"
27#include "llvm/IntrinsicInst.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000028#include "llvm/Module.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000029#include "llvm/CodeGen/FastISel.h"
30#include "llvm/CodeGen/GCStrategy.h"
31#include "llvm/CodeGen/GCMetadata.h"
32#include "llvm/CodeGen/MachineFunction.h"
33#include "llvm/CodeGen/MachineFrameInfo.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
35#include "llvm/CodeGen/MachineJumpTableInfo.h"
36#include "llvm/CodeGen/MachineModuleInfo.h"
37#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000038#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000039#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel83489bb2009-01-13 00:35:13 +000040#include "llvm/CodeGen/DwarfWriter.h"
41#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000042#include "llvm/Target/TargetRegisterInfo.h"
43#include "llvm/Target/TargetData.h"
44#include "llvm/Target/TargetFrameInfo.h"
45#include "llvm/Target/TargetInstrInfo.h"
Dale Johannesen49de9822009-02-05 01:49:45 +000046#include "llvm/Target/TargetIntrinsicInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000047#include "llvm/Target/TargetLowering.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000048#include "llvm/Target/TargetOptions.h"
49#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000050#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000051#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000052#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000053#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000054#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000055#include <algorithm>
56using namespace llvm;
57
Dale Johannesen601d3c02008-09-05 01:48:15 +000058/// LimitFloatPrecision - Generate low-precision inline sequences for
59/// some float libcalls (6, 8 or 12 bits).
60static unsigned LimitFloatPrecision;
61
62static cl::opt<unsigned, true>
63LimitFPPrecision("limit-float-precision",
64 cl::desc("Generate low-precision inline sequences "
65 "for some float libcalls"),
66 cl::location(LimitFloatPrecision),
67 cl::init(0));
68
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000069/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
Dan Gohman2c91d102009-01-06 22:53:52 +000070/// of insertvalue or extractvalue indices that identify a member, return
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000071/// the linearized index of the start of the member.
72///
73static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
74 const unsigned *Indices,
75 const unsigned *IndicesEnd,
76 unsigned CurIndex = 0) {
77 // Base case: We're done.
78 if (Indices && Indices == IndicesEnd)
79 return CurIndex;
80
81 // Given a struct type, recursively traverse the elements.
82 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
83 for (StructType::element_iterator EB = STy->element_begin(),
84 EI = EB,
85 EE = STy->element_end();
86 EI != EE; ++EI) {
87 if (Indices && *Indices == unsigned(EI - EB))
88 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
89 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
90 }
Dan Gohman2c91d102009-01-06 22:53:52 +000091 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000092 }
93 // Given an array type, recursively traverse the elements.
94 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
95 const Type *EltTy = ATy->getElementType();
96 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
97 if (Indices && *Indices == i)
98 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
99 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
100 }
Dan Gohman2c91d102009-01-06 22:53:52 +0000101 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000102 }
103 // We haven't found the type we're looking for, so keep searching.
104 return CurIndex + 1;
105}
106
107/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
108/// MVTs that represent all the individual underlying
109/// non-aggregate types that comprise it.
110///
111/// If Offsets is non-null, it points to a vector to be filled in
112/// with the in-memory offsets of each of the individual values.
113///
114static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
115 SmallVectorImpl<MVT> &ValueVTs,
116 SmallVectorImpl<uint64_t> *Offsets = 0,
117 uint64_t StartingOffset = 0) {
118 // Given a struct type, recursively traverse the elements.
119 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
120 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
121 for (StructType::element_iterator EB = STy->element_begin(),
122 EI = EB,
123 EE = STy->element_end();
124 EI != EE; ++EI)
125 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
126 StartingOffset + SL->getElementOffset(EI - EB));
127 return;
128 }
129 // Given an array type, recursively traverse the elements.
130 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
131 const Type *EltTy = ATy->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000132 uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000133 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
134 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
135 StartingOffset + i * EltSize);
136 return;
137 }
Dan Gohman5e5558b2009-04-23 22:50:03 +0000138 // Interpret void as zero return values.
139 if (Ty == Type::VoidTy)
140 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000141 // Base case: we can get an MVT for this LLVM IR type.
142 ValueVTs.push_back(TLI.getValueType(Ty));
143 if (Offsets)
144 Offsets->push_back(StartingOffset);
145}
146
Dan Gohman2a7c6712008-09-03 23:18:39 +0000147namespace llvm {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000148 /// RegsForValue - This struct represents the registers (physical or virtual)
149 /// that a particular set of values is assigned, and the type information about
150 /// the value. The most common situation is to represent one value at a time,
151 /// but struct or array values are handled element-wise as multiple values.
152 /// The splitting of aggregates is performed recursively, so that we never
153 /// have aggregate-typed registers. The values at this point do not necessarily
154 /// have legal types, so each value may require one or more registers of some
155 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000156 ///
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000157 struct VISIBILITY_HIDDEN RegsForValue {
158 /// TLI - The TargetLowering object.
159 ///
160 const TargetLowering *TLI;
161
162 /// ValueVTs - The value types of the values, which may not be legal, and
163 /// may need be promoted or synthesized from one or more registers.
164 ///
165 SmallVector<MVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000166
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000167 /// RegVTs - The value types of the registers. This is the same size as
168 /// ValueVTs and it records, for each value, what the type of the assigned
169 /// register or registers are. (Individual values are never synthesized
170 /// from more than one type of register.)
171 ///
172 /// With virtual registers, the contents of RegVTs is redundant with TLI's
173 /// getRegisterType member function, however when with physical registers
174 /// it is necessary to have a separate record of the types.
175 ///
176 SmallVector<MVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000177
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000178 /// Regs - This list holds the registers assigned to the values.
179 /// Each legal or promoted value requires one register, and each
180 /// expanded value requires multiple registers.
181 ///
182 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000183
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000184 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000185
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000186 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000187 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000188 MVT regvt, MVT valuevt)
189 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
190 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000191 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000192 const SmallVector<MVT, 4> &regvts,
193 const SmallVector<MVT, 4> &valuevts)
194 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
195 RegsForValue(const TargetLowering &tli,
196 unsigned Reg, const Type *Ty) : TLI(&tli) {
197 ComputeValueVTs(tli, Ty, ValueVTs);
198
199 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
200 MVT ValueVT = ValueVTs[Value];
201 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
202 MVT RegisterVT = TLI->getRegisterType(ValueVT);
203 for (unsigned i = 0; i != NumRegs; ++i)
204 Regs.push_back(Reg + i);
205 RegVTs.push_back(RegisterVT);
206 Reg += NumRegs;
207 }
208 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000209
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000210 /// append - Add the specified values to this one.
211 void append(const RegsForValue &RHS) {
212 TLI = RHS.TLI;
213 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
214 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
215 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
216 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000217
218
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000219 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000220 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000221 /// Chain/Flag as the input and updates them for the output Chain/Flag.
222 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000223 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000224 SDValue &Chain, SDValue *Flag) const;
225
226 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000227 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000228 /// Chain/Flag as the input and updates them for the output Chain/Flag.
229 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000230 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000231 SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000232
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000233 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Evan Cheng697cbbf2009-03-20 18:03:34 +0000234 /// operand list. This adds the code marker, matching input operand index
235 /// (if applicable), and includes the number of values added into it.
236 void AddInlineAsmOperands(unsigned Code,
237 bool HasMatching, unsigned MatchingIdx,
238 SelectionDAG &DAG, std::vector<SDValue> &Ops) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000239 };
240}
241
242/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000243/// PHI nodes or outside of the basic block that defines it, or used by a
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000244/// switch or atomic instruction, which may expand to multiple basic blocks.
245static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
246 if (isa<PHINode>(I)) return true;
247 BasicBlock *BB = I->getParent();
248 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Dan Gohman8e5c0da2009-04-09 02:33:36 +0000249 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000250 return true;
251 return false;
252}
253
254/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
255/// entry block, return true. This includes arguments used by switches, since
256/// the switch may expand into multiple basic blocks.
257static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) {
258 // With FastISel active, we may be splitting blocks, so force creation
259 // of virtual registers for all non-dead arguments.
Dan Gohman33134c42008-09-25 17:05:24 +0000260 // Don't force virtual registers for byval arguments though, because
261 // fast-isel can't handle those in all cases.
262 if (EnableFastISel && !A->hasByValAttr())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000263 return A->use_empty();
264
265 BasicBlock *Entry = A->getParent()->begin();
266 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
267 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
268 return false; // Use not in entry block.
269 return true;
270}
271
272FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli)
273 : TLI(tli) {
274}
275
276void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000277 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000278 bool EnableFastISel) {
279 Fn = &fn;
280 MF = &mf;
281 RegInfo = &MF->getRegInfo();
282
283 // Create a vreg for each argument register that is not dead and is used
284 // outside of the entry block for the function.
285 for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
286 AI != E; ++AI)
287 if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
288 InitializeRegForValue(AI);
289
290 // Initialize the mapping of values to registers. This is only set up for
291 // instruction values that are used outside of the block that defines
292 // them.
293 Function::iterator BB = Fn->begin(), EB = Fn->end();
294 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
295 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
296 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
297 const Type *Ty = AI->getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +0000298 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000299 unsigned Align =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000300 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
301 AI->getAlignment());
302
303 TySize *= CUI->getZExtValue(); // Get total allocated size.
304 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
305 StaticAllocaMap[AI] =
306 MF->getFrameInfo()->CreateStackObject(TySize, Align);
307 }
308
309 for (; BB != EB; ++BB)
310 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
311 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
312 if (!isa<AllocaInst>(I) ||
313 !StaticAllocaMap.count(cast<AllocaInst>(I)))
314 InitializeRegForValue(I);
315
316 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
317 // also creates the initial PHI MachineInstrs, though none of the input
318 // operands are populated.
319 for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) {
320 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
321 MBBMap[BB] = MBB;
322 MF->push_back(MBB);
323
324 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
325 // appropriate.
326 PHINode *PN;
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000327 DebugLoc DL;
328 for (BasicBlock::iterator
329 I = BB->begin(), E = BB->end(); I != E; ++I) {
330 if (CallInst *CI = dyn_cast<CallInst>(I)) {
331 if (Function *F = CI->getCalledFunction()) {
332 switch (F->getIntrinsicID()) {
333 default: break;
334 case Intrinsic::dbg_stoppoint: {
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000335 DbgStopPointInst *SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000336 if (isValidDebugInfoIntrinsic(*SPI, CodeGenOpt::Default))
337 DL = ExtractDebugLocation(*SPI, MF->getDebugLocInfo());
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000338 break;
339 }
340 case Intrinsic::dbg_func_start: {
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +0000341 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000342 if (isValidDebugInfoIntrinsic(*FSI, CodeGenOpt::Default))
343 DL = ExtractDebugLocation(*FSI, MF->getDebugLocInfo());
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000344 break;
345 }
346 }
347 }
348 }
349
350 PN = dyn_cast<PHINode>(I);
351 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000352
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000353 unsigned PHIReg = ValueMap[PN];
354 assert(PHIReg && "PHI node does not have an assigned virtual register!");
355
356 SmallVector<MVT, 4> ValueVTs;
357 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
358 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
359 MVT VT = ValueVTs[vti];
360 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000361 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000362 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000363 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000364 PHIReg += NumRegisters;
365 }
366 }
367 }
368}
369
370unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
371 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
372}
373
374/// CreateRegForValue - Allocate the appropriate number of virtual registers of
375/// the correctly promoted or expanded types. Assign these registers
376/// consecutive vreg numbers and return the first assigned number.
377///
378/// In the case that the given value has struct or array type, this function
379/// will assign registers for each member or element.
380///
381unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
382 SmallVector<MVT, 4> ValueVTs;
383 ComputeValueVTs(TLI, V->getType(), ValueVTs);
384
385 unsigned FirstReg = 0;
386 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
387 MVT ValueVT = ValueVTs[Value];
388 MVT RegisterVT = TLI.getRegisterType(ValueVT);
389
390 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
391 for (unsigned i = 0; i != NumRegs; ++i) {
392 unsigned R = MakeReg(RegisterVT);
393 if (!FirstReg) FirstReg = R;
394 }
395 }
396 return FirstReg;
397}
398
399/// getCopyFromParts - Create a value that contains the specified legal parts
400/// combined into the value they represent. If the parts combine to a type
401/// larger then ValueVT then AssertOp can be used to specify whether the extra
402/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
403/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000404static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
405 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000406 unsigned NumParts, MVT PartVT, MVT ValueVT,
407 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000408 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000409 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000410 SDValue Val = Parts[0];
411
412 if (NumParts > 1) {
413 // Assemble the value from multiple parts.
Eli Friedman2ac8b322009-05-20 06:02:09 +0000414 if (!ValueVT.isVector() && ValueVT.isInteger()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000415 unsigned PartBits = PartVT.getSizeInBits();
416 unsigned ValueBits = ValueVT.getSizeInBits();
417
418 // Assemble the power of 2 part.
419 unsigned RoundParts = NumParts & (NumParts - 1) ?
420 1 << Log2_32(NumParts) : NumParts;
421 unsigned RoundBits = PartBits * RoundParts;
422 MVT RoundVT = RoundBits == ValueBits ?
423 ValueVT : MVT::getIntegerVT(RoundBits);
424 SDValue Lo, Hi;
425
Eli Friedman2ac8b322009-05-20 06:02:09 +0000426 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000427
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000428 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000429 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
430 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000431 PartVT, HalfVT);
432 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000433 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
434 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000435 }
436 if (TLI.isBigEndian())
437 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000438 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000439
440 if (RoundParts < NumParts) {
441 // Assemble the trailing non-power-of-2 part.
442 unsigned OddParts = NumParts - RoundParts;
443 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Scott Michelfdc40a02009-02-17 22:15:04 +0000444 Hi = getCopyFromParts(DAG, dl,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000445 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000446
447 // Combine the round and odd parts.
448 Lo = Val;
449 if (TLI.isBigEndian())
450 std::swap(Lo, Hi);
451 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000452 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
453 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000454 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000455 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000456 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
457 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000458 }
Eli Friedman2ac8b322009-05-20 06:02:09 +0000459 } else if (ValueVT.isVector()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000460 // Handle a multi-element vector.
461 MVT IntermediateVT, RegisterVT;
462 unsigned NumIntermediates;
463 unsigned NumRegs =
464 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
465 RegisterVT);
466 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
467 NumParts = NumRegs; // Silence a compiler warning.
468 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
469 assert(RegisterVT == Parts[0].getValueType() &&
470 "Part type doesn't match part!");
471
472 // Assemble the parts into intermediate operands.
473 SmallVector<SDValue, 8> Ops(NumIntermediates);
474 if (NumIntermediates == NumParts) {
475 // If the register was not expanded, truncate or copy the value,
476 // as appropriate.
477 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000478 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000479 PartVT, IntermediateVT);
480 } else if (NumParts > 0) {
481 // If the intermediate type was expanded, build the intermediate operands
482 // from the parts.
483 assert(NumParts % NumIntermediates == 0 &&
484 "Must expand into a divisible number of parts!");
485 unsigned Factor = NumParts / NumIntermediates;
486 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000487 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000488 PartVT, IntermediateVT);
489 }
490
491 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
492 // operands.
493 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000494 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000495 ValueVT, &Ops[0], NumIntermediates);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000496 } else if (PartVT.isFloatingPoint()) {
497 // FP split into multiple FP parts (for ppcf128)
498 assert(ValueVT == MVT(MVT::ppcf128) && PartVT == MVT(MVT::f64) &&
499 "Unexpected split");
500 SDValue Lo, Hi;
501 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[0]);
502 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[1]);
503 if (TLI.isBigEndian())
504 std::swap(Lo, Hi);
505 Val = DAG.getNode(ISD::BUILD_PAIR, dl, ValueVT, Lo, Hi);
506 } else {
507 // FP split into integer parts (soft fp)
508 assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
509 !PartVT.isVector() && "Unexpected split");
510 MVT IntVT = MVT::getIntegerVT(ValueVT.getSizeInBits());
511 Val = getCopyFromParts(DAG, dl, Parts, NumParts, PartVT, IntVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000512 }
513 }
514
515 // There is now one part, held in Val. Correct it to match ValueVT.
516 PartVT = Val.getValueType();
517
518 if (PartVT == ValueVT)
519 return Val;
520
521 if (PartVT.isVector()) {
522 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000523 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000524 }
525
526 if (ValueVT.isVector()) {
527 assert(ValueVT.getVectorElementType() == PartVT &&
528 ValueVT.getVectorNumElements() == 1 &&
529 "Only trivial scalar-to-vector conversions should get here!");
Evan Chenga87008d2009-02-25 22:49:59 +0000530 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000531 }
532
533 if (PartVT.isInteger() &&
534 ValueVT.isInteger()) {
535 if (ValueVT.bitsLT(PartVT)) {
536 // For a truncate, see if we have any information to
537 // indicate whether the truncated bits will always be
538 // zero or sign-extension.
539 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000540 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000541 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000542 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000543 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000544 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000545 }
546 }
547
548 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
549 if (ValueVT.bitsLT(Val.getValueType()))
550 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000551 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000552 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000553 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000554 }
555
556 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000557 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000558
Torok Edwinc23197a2009-07-14 16:55:14 +0000559 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000560 return SDValue();
561}
562
563/// getCopyToParts - Create a series of nodes that contain the specified value
564/// split into legal parts. If the parts contain more bits than Val, then, for
565/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000566static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Chris Lattner01426e12008-10-21 00:45:36 +0000567 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000568 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000569 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000570 MVT PtrVT = TLI.getPointerTy();
571 MVT ValueVT = Val.getValueType();
572 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000573 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000574 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
575
576 if (!NumParts)
577 return;
578
579 if (!ValueVT.isVector()) {
580 if (PartVT == ValueVT) {
581 assert(NumParts == 1 && "No-op copy with multiple parts!");
582 Parts[0] = Val;
583 return;
584 }
585
586 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
587 // If the parts cover more bits than the value has, promote the value.
588 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
589 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000590 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000591 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
592 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000593 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000594 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000595 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000596 }
597 } else if (PartBits == ValueVT.getSizeInBits()) {
598 // Different types of the same size.
599 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000600 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000601 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
602 // If the parts cover less bits than value has, truncate the value.
603 if (PartVT.isInteger() && ValueVT.isInteger()) {
604 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000605 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000606 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000607 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000608 }
609 }
610
611 // The value may have changed - recompute ValueVT.
612 ValueVT = Val.getValueType();
613 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
614 "Failed to tile the value with PartVT!");
615
616 if (NumParts == 1) {
617 assert(PartVT == ValueVT && "Type conversion failed!");
618 Parts[0] = Val;
619 return;
620 }
621
622 // Expand the value into multiple parts.
623 if (NumParts & (NumParts - 1)) {
624 // The number of parts is not a power of 2. Split off and copy the tail.
625 assert(PartVT.isInteger() && ValueVT.isInteger() &&
626 "Do not know what to expand to!");
627 unsigned RoundParts = 1 << Log2_32(NumParts);
628 unsigned RoundBits = RoundParts * PartBits;
629 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000630 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000631 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000632 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000633 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000634 if (TLI.isBigEndian())
635 // The odd parts were reversed by getCopyToParts - unreverse them.
636 std::reverse(Parts + RoundParts, Parts + NumParts);
637 NumParts = RoundParts;
638 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000639 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000640 }
641
642 // The number of parts is a power of 2. Repeatedly bisect the value using
643 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000644 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000645 MVT::getIntegerVT(ValueVT.getSizeInBits()),
646 Val);
647 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
648 for (unsigned i = 0; i < NumParts; i += StepSize) {
649 unsigned ThisBits = StepSize * PartBits / 2;
650 MVT ThisVT = MVT::getIntegerVT (ThisBits);
651 SDValue &Part0 = Parts[i];
652 SDValue &Part1 = Parts[i+StepSize/2];
653
Scott Michelfdc40a02009-02-17 22:15:04 +0000654 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000655 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000656 DAG.getConstant(1, PtrVT));
Scott Michelfdc40a02009-02-17 22:15:04 +0000657 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000658 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000659 DAG.getConstant(0, PtrVT));
660
661 if (ThisBits == PartBits && ThisVT != PartVT) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000662 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000663 PartVT, Part0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000664 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000665 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000666 }
667 }
668 }
669
670 if (TLI.isBigEndian())
Dale Johannesen8a36f502009-02-25 22:39:13 +0000671 std::reverse(Parts, Parts + OrigNumParts);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000672
673 return;
674 }
675
676 // Vector ValueVT.
677 if (NumParts == 1) {
678 if (PartVT != ValueVT) {
679 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000680 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000681 } else {
682 assert(ValueVT.getVectorElementType() == PartVT &&
683 ValueVT.getVectorNumElements() == 1 &&
684 "Only trivial vector-to-scalar conversions should get here!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000685 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000686 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000687 DAG.getConstant(0, PtrVT));
688 }
689 }
690
691 Parts[0] = Val;
692 return;
693 }
694
695 // Handle a multi-element vector.
696 MVT IntermediateVT, RegisterVT;
697 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000698 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000699 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
700 RegisterVT);
701 unsigned NumElements = ValueVT.getVectorNumElements();
702
703 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
704 NumParts = NumRegs; // Silence a compiler warning.
705 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
706
707 // Split the vector into intermediate operands.
708 SmallVector<SDValue, 8> Ops(NumIntermediates);
709 for (unsigned i = 0; i != NumIntermediates; ++i)
710 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000711 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000712 IntermediateVT, Val,
713 DAG.getConstant(i * (NumElements / NumIntermediates),
714 PtrVT));
715 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000716 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000717 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000718 DAG.getConstant(i, PtrVT));
719
720 // Split the intermediate operands into legal parts.
721 if (NumParts == NumIntermediates) {
722 // If the register was not expanded, promote or copy the value,
723 // as appropriate.
724 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000725 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000726 } else if (NumParts > 0) {
727 // If the intermediate type was expanded, split each the value into
728 // legal parts.
729 assert(NumParts % NumIntermediates == 0 &&
730 "Must expand into a divisible number of parts!");
731 unsigned Factor = NumParts / NumIntermediates;
732 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000733 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000734 }
735}
736
737
738void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
739 AA = &aa;
740 GFI = gfi;
741 TD = DAG.getTarget().getTargetData();
742}
743
744/// clear - Clear out the curret SelectionDAG and the associated
745/// state and prepare this SelectionDAGLowering object to be used
746/// for a new block. This doesn't clear out information about
747/// additional blocks that are needed to complete switch lowering
748/// or PHI node updating; that information is cleared out as it is
749/// consumed.
750void SelectionDAGLowering::clear() {
751 NodeMap.clear();
752 PendingLoads.clear();
753 PendingExports.clear();
754 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000755 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000756}
757
758/// getRoot - Return the current virtual root of the Selection DAG,
759/// flushing any PendingLoad items. This must be done before emitting
760/// a store or any other node that may need to be ordered after any
761/// prior load instructions.
762///
763SDValue SelectionDAGLowering::getRoot() {
764 if (PendingLoads.empty())
765 return DAG.getRoot();
766
767 if (PendingLoads.size() == 1) {
768 SDValue Root = PendingLoads[0];
769 DAG.setRoot(Root);
770 PendingLoads.clear();
771 return Root;
772 }
773
774 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000775 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000776 &PendingLoads[0], PendingLoads.size());
777 PendingLoads.clear();
778 DAG.setRoot(Root);
779 return Root;
780}
781
782/// getControlRoot - Similar to getRoot, but instead of flushing all the
783/// PendingLoad items, flush all the PendingExports items. It is necessary
784/// to do this before emitting a terminator instruction.
785///
786SDValue SelectionDAGLowering::getControlRoot() {
787 SDValue Root = DAG.getRoot();
788
789 if (PendingExports.empty())
790 return Root;
791
792 // Turn all of the CopyToReg chains into one factored node.
793 if (Root.getOpcode() != ISD::EntryToken) {
794 unsigned i = 0, e = PendingExports.size();
795 for (; i != e; ++i) {
796 assert(PendingExports[i].getNode()->getNumOperands() > 1);
797 if (PendingExports[i].getNode()->getOperand(0) == Root)
798 break; // Don't add the root if we already indirectly depend on it.
799 }
800
801 if (i == e)
802 PendingExports.push_back(Root);
803 }
804
Dale Johannesen66978ee2009-01-31 02:22:37 +0000805 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000806 &PendingExports[0],
807 PendingExports.size());
808 PendingExports.clear();
809 DAG.setRoot(Root);
810 return Root;
811}
812
813void SelectionDAGLowering::visit(Instruction &I) {
814 visit(I.getOpcode(), I);
815}
816
817void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
818 // Note: this doesn't use InstVisitor, because it has to work with
819 // ConstantExpr's in addition to instructions.
820 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000821 default: llvm_unreachable("Unknown instruction type encountered!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000822 // Build the switch statement using the Instruction.def file.
823#define HANDLE_INST(NUM, OPCODE, CLASS) \
824 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
825#include "llvm/Instruction.def"
826 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000827}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000828
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000829SDValue SelectionDAGLowering::getValue(const Value *V) {
830 SDValue &N = NodeMap[V];
831 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000832
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000833 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
834 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000835
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000836 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000837 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000838
839 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
840 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000841
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000842 if (isa<ConstantPointerNull>(C))
843 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000844
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000845 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000846 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000847
Nate Begeman9008ca62009-04-27 18:41:29 +0000848 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000849 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000850
851 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
852 visit(CE->getOpcode(), *CE);
853 SDValue N1 = NodeMap[V];
854 assert(N1.getNode() && "visit didn't populate the ValueMap!");
855 return N1;
856 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000857
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000858 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
859 SmallVector<SDValue, 4> Constants;
860 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
861 OI != OE; ++OI) {
862 SDNode *Val = getValue(*OI).getNode();
863 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
864 Constants.push_back(SDValue(Val, i));
865 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000866 return DAG.getMergeValues(&Constants[0], Constants.size(),
867 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000868 }
869
870 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
871 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
872 "Unknown struct or array constant!");
873
874 SmallVector<MVT, 4> ValueVTs;
875 ComputeValueVTs(TLI, C->getType(), ValueVTs);
876 unsigned NumElts = ValueVTs.size();
877 if (NumElts == 0)
878 return SDValue(); // empty struct
879 SmallVector<SDValue, 4> Constants(NumElts);
880 for (unsigned i = 0; i != NumElts; ++i) {
881 MVT EltVT = ValueVTs[i];
882 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000883 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000884 else if (EltVT.isFloatingPoint())
885 Constants[i] = DAG.getConstantFP(0, EltVT);
886 else
887 Constants[i] = DAG.getConstant(0, EltVT);
888 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000889 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000890 }
891
892 const VectorType *VecTy = cast<VectorType>(V->getType());
893 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000894
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000895 // Now that we know the number and type of the elements, get that number of
896 // elements into the Ops array based on what kind of constant it is.
897 SmallVector<SDValue, 16> Ops;
898 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
899 for (unsigned i = 0; i != NumElements; ++i)
900 Ops.push_back(getValue(CP->getOperand(i)));
901 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000902 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000903 MVT EltVT = TLI.getValueType(VecTy->getElementType());
904
905 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000906 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000907 Op = DAG.getConstantFP(0, EltVT);
908 else
909 Op = DAG.getConstant(0, EltVT);
910 Ops.assign(NumElements, Op);
911 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000912
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000913 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000914 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
915 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000916 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000917
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000918 // If this is a static alloca, generate it as the frameindex instead of
919 // computation.
920 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
921 DenseMap<const AllocaInst*, int>::iterator SI =
922 FuncInfo.StaticAllocaMap.find(AI);
923 if (SI != FuncInfo.StaticAllocaMap.end())
924 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
925 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000926
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000927 unsigned InReg = FuncInfo.ValueMap[V];
928 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000929
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000930 RegsForValue RFV(TLI, InReg, V->getType());
931 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000932 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000933}
934
935
936void SelectionDAGLowering::visitRet(ReturnInst &I) {
937 if (I.getNumOperands() == 0) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000938 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000939 MVT::Other, getControlRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000940 return;
941 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000942
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000943 SmallVector<SDValue, 8> NewValues;
944 NewValues.push_back(getControlRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000945 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000946 SmallVector<MVT, 4> ValueVTs;
947 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000948 unsigned NumValues = ValueVTs.size();
949 if (NumValues == 0) continue;
950
951 SDValue RetOp = getValue(I.getOperand(i));
952 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000953 MVT VT = ValueVTs[j];
954
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000955 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000956
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000957 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000958 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000959 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000960 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000961 ExtendKind = ISD::ZERO_EXTEND;
962
Evan Cheng3927f432009-03-25 20:20:11 +0000963 // FIXME: C calling convention requires the return type to be promoted to
964 // at least 32-bit. But this is not necessary for non-C calling
965 // conventions. The frontend should mark functions whose return values
966 // require promoting with signext or zeroext attributes.
967 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
968 MVT MinVT = TLI.getRegisterType(MVT::i32);
969 if (VT.bitsLT(MinVT))
970 VT = MinVT;
971 }
972
973 unsigned NumParts = TLI.getNumRegisters(VT);
974 MVT PartVT = TLI.getRegisterType(VT);
975 SmallVector<SDValue, 4> Parts(NumParts);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000976 getCopyToParts(DAG, getCurDebugLoc(),
977 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000978 &Parts[0], NumParts, PartVT, ExtendKind);
979
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000980 // 'inreg' on function refers to return value
981 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +0000982 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000983 Flags.setInReg();
Anton Korobeynikov0692fab2009-07-16 13:35:48 +0000984
985 // Propagate extension type if any
986 if (F->paramHasAttr(0, Attribute::SExt))
987 Flags.setSExt();
988 else if (F->paramHasAttr(0, Attribute::ZExt))
989 Flags.setZExt();
990
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000991 for (unsigned i = 0; i < NumParts; ++i) {
992 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000993 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000994 }
995 }
996 }
Dale Johannesen66978ee2009-01-31 02:22:37 +0000997 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000998 &NewValues[0], NewValues.size()));
999}
1000
Dan Gohmanad62f532009-04-23 23:13:24 +00001001/// CopyToExportRegsIfNeeded - If the given value has virtual registers
1002/// created for it, emit nodes to copy the value into the virtual
1003/// registers.
1004void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) {
1005 if (!V->use_empty()) {
1006 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1007 if (VMI != FuncInfo.ValueMap.end())
1008 CopyValueToVirtualRegister(V, VMI->second);
1009 }
1010}
1011
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001012/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1013/// the current basic block, add it to ValueMap now so that we'll get a
1014/// CopyTo/FromReg.
1015void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1016 // No need to export constants.
1017 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001018
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001019 // Already exported?
1020 if (FuncInfo.isExportedInst(V)) return;
1021
1022 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1023 CopyValueToVirtualRegister(V, Reg);
1024}
1025
1026bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1027 const BasicBlock *FromBB) {
1028 // The operands of the setcc have to be in this block. We don't know
1029 // how to export them from some other block.
1030 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1031 // Can export from current BB.
1032 if (VI->getParent() == FromBB)
1033 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001034
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001035 // Is already exported, noop.
1036 return FuncInfo.isExportedInst(V);
1037 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001038
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001039 // If this is an argument, we can export it if the BB is the entry block or
1040 // if it is already exported.
1041 if (isa<Argument>(V)) {
1042 if (FromBB == &FromBB->getParent()->getEntryBlock())
1043 return true;
1044
1045 // Otherwise, can only export this if it is already exported.
1046 return FuncInfo.isExportedInst(V);
1047 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001048
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001049 // Otherwise, constants can always be exported.
1050 return true;
1051}
1052
1053static bool InBlock(const Value *V, const BasicBlock *BB) {
1054 if (const Instruction *I = dyn_cast<Instruction>(V))
1055 return I->getParent() == BB;
1056 return true;
1057}
1058
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001059/// getFCmpCondCode - Return the ISD condition code corresponding to
1060/// the given LLVM IR floating-point condition code. This includes
1061/// consideration of global floating-point math flags.
1062///
1063static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1064 ISD::CondCode FPC, FOC;
1065 switch (Pred) {
1066 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1067 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1068 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1069 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1070 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1071 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1072 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1073 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1074 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1075 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1076 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1077 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1078 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1079 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1080 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1081 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1082 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001083 llvm_unreachable("Invalid FCmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001084 FOC = FPC = ISD::SETFALSE;
1085 break;
1086 }
1087 if (FiniteOnlyFPMath())
1088 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001089 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001090 return FPC;
1091}
1092
1093/// getICmpCondCode - Return the ISD condition code corresponding to
1094/// the given LLVM IR integer condition code.
1095///
1096static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1097 switch (Pred) {
1098 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1099 case ICmpInst::ICMP_NE: return ISD::SETNE;
1100 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1101 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1102 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1103 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1104 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1105 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1106 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1107 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1108 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001109 llvm_unreachable("Invalid ICmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001110 return ISD::SETNE;
1111 }
1112}
1113
Dan Gohmanc2277342008-10-17 21:16:08 +00001114/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1115/// This function emits a branch and is used at the leaves of an OR or an
1116/// AND operator tree.
1117///
1118void
1119SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1120 MachineBasicBlock *TBB,
1121 MachineBasicBlock *FBB,
1122 MachineBasicBlock *CurBB) {
1123 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001124
Dan Gohmanc2277342008-10-17 21:16:08 +00001125 // If the leaf of the tree is a comparison, merge the condition into
1126 // the caseblock.
1127 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1128 // The operands of the cmp have to be in this block. We don't know
1129 // how to export them from some other block. If this is the first block
1130 // of the sequence, no exporting is needed.
1131 if (CurBB == CurMBB ||
1132 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1133 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001134 ISD::CondCode Condition;
1135 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001136 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001137 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001138 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001139 } else {
1140 Condition = ISD::SETEQ; // silence warning.
Torok Edwinc23197a2009-07-14 16:55:14 +00001141 llvm_unreachable("Unknown compare instruction");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001142 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001143
1144 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001145 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1146 SwitchCases.push_back(CB);
1147 return;
1148 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001149 }
1150
1151 // Create a CaseBlock record representing this branch.
Owen Andersonb3056fa2009-07-21 18:03:38 +00001152 CaseBlock CB(ISD::SETEQ, Cond, DAG.getContext()->getTrue(),
Dan Gohmanc2277342008-10-17 21:16:08 +00001153 NULL, TBB, FBB, CurBB);
1154 SwitchCases.push_back(CB);
1155}
1156
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001157/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001158void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1159 MachineBasicBlock *TBB,
1160 MachineBasicBlock *FBB,
1161 MachineBasicBlock *CurBB,
1162 unsigned Opc) {
1163 // If this node is not part of the or/and tree, emit it as a branch.
1164 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001165 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001166 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1167 BOp->getParent() != CurBB->getBasicBlock() ||
1168 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1169 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1170 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001171 return;
1172 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001173
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001174 // Create TmpBB after CurBB.
1175 MachineFunction::iterator BBI = CurBB;
1176 MachineFunction &MF = DAG.getMachineFunction();
1177 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1178 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001179
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001180 if (Opc == Instruction::Or) {
1181 // Codegen X | Y as:
1182 // jmp_if_X TBB
1183 // jmp TmpBB
1184 // TmpBB:
1185 // jmp_if_Y TBB
1186 // jmp FBB
1187 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001188
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001189 // Emit the LHS condition.
1190 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001191
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001192 // Emit the RHS condition into TmpBB.
1193 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1194 } else {
1195 assert(Opc == Instruction::And && "Unknown merge op!");
1196 // Codegen X & Y as:
1197 // jmp_if_X TmpBB
1198 // jmp FBB
1199 // TmpBB:
1200 // jmp_if_Y TBB
1201 // jmp FBB
1202 //
1203 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001204
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001205 // Emit the LHS condition.
1206 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001207
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001208 // Emit the RHS condition into TmpBB.
1209 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1210 }
1211}
1212
1213/// If the set of cases should be emitted as a series of branches, return true.
1214/// If we should emit this as a bunch of and/or'd together conditions, return
1215/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001216bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001217SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1218 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001219
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001220 // If this is two comparisons of the same values or'd or and'd together, they
1221 // will get folded into a single comparison, so don't emit two blocks.
1222 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1223 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1224 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1225 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1226 return false;
1227 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001228
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001229 return true;
1230}
1231
1232void SelectionDAGLowering::visitBr(BranchInst &I) {
1233 // Update machine-CFG edges.
1234 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1235
1236 // Figure out which block is immediately after the current one.
1237 MachineBasicBlock *NextBlock = 0;
1238 MachineFunction::iterator BBI = CurMBB;
1239 if (++BBI != CurMBB->getParent()->end())
1240 NextBlock = BBI;
1241
1242 if (I.isUnconditional()) {
1243 // Update machine-CFG edges.
1244 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001245
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001246 // If this is not a fall-through branch, emit the branch.
1247 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001248 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001249 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001250 DAG.getBasicBlock(Succ0MBB)));
1251 return;
1252 }
1253
1254 // If this condition is one of the special cases we handle, do special stuff
1255 // now.
1256 Value *CondVal = I.getCondition();
1257 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1258
1259 // If this is a series of conditions that are or'd or and'd together, emit
1260 // this as a sequence of branches instead of setcc's with and/or operations.
1261 // For example, instead of something like:
1262 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001263 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001264 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001265 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001266 // or C, F
1267 // jnz foo
1268 // Emit:
1269 // cmp A, B
1270 // je foo
1271 // cmp D, E
1272 // jle foo
1273 //
1274 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001275 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001276 (BOp->getOpcode() == Instruction::And ||
1277 BOp->getOpcode() == Instruction::Or)) {
1278 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1279 // If the compares in later blocks need to use values not currently
1280 // exported from this block, export them now. This block should always
1281 // be the first entry.
1282 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001283
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001284 // Allow some cases to be rejected.
1285 if (ShouldEmitAsBranches(SwitchCases)) {
1286 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1287 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1288 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1289 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001290
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001291 // Emit the branch for this block.
1292 visitSwitchCase(SwitchCases[0]);
1293 SwitchCases.erase(SwitchCases.begin());
1294 return;
1295 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001296
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001297 // Okay, we decided not to do this, remove any inserted MBB's and clear
1298 // SwitchCases.
1299 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1300 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001302 SwitchCases.clear();
1303 }
1304 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001305
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001306 // Create a CaseBlock record representing this branch.
Owen Andersonb3056fa2009-07-21 18:03:38 +00001307 CaseBlock CB(ISD::SETEQ, CondVal, DAG.getContext()->getTrue(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001308 NULL, Succ0MBB, Succ1MBB, CurMBB);
1309 // Use visitSwitchCase to actually insert the fast branch sequence for this
1310 // cond branch.
1311 visitSwitchCase(CB);
1312}
1313
1314/// visitSwitchCase - Emits the necessary code to represent a single node in
1315/// the binary search tree resulting from lowering a switch instruction.
1316void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1317 SDValue Cond;
1318 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001319 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001320
1321 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001322 if (CB.CmpMHS == NULL) {
1323 // Fold "(X == true)" to X and "(X == false)" to !X to
1324 // handle common cases produced by branch lowering.
Owen Andersonb3056fa2009-07-21 18:03:38 +00001325 if (CB.CmpRHS == DAG.getContext()->getTrue() &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001326 CB.CC == ISD::SETEQ)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001327 Cond = CondLHS;
Owen Andersonb3056fa2009-07-21 18:03:38 +00001328 else if (CB.CmpRHS == DAG.getContext()->getFalse() &&
Owen Andersonf53c3712009-07-21 02:47:59 +00001329 CB.CC == ISD::SETEQ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001330 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001331 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001332 } else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001333 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001334 } else {
1335 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1336
Anton Korobeynikov23218582008-12-23 22:25:27 +00001337 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1338 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001339
1340 SDValue CmpOp = getValue(CB.CmpMHS);
1341 MVT VT = CmpOp.getValueType();
1342
1343 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001344 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001345 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001346 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001347 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001348 VT, CmpOp, DAG.getConstant(Low, VT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001349 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001350 DAG.getConstant(High-Low, VT), ISD::SETULE);
1351 }
1352 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001353
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001354 // Update successor info
1355 CurMBB->addSuccessor(CB.TrueBB);
1356 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001357
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001358 // Set NextBlock to be the MBB immediately after the current one, if any.
1359 // This is used to avoid emitting unnecessary branches to the next block.
1360 MachineBasicBlock *NextBlock = 0;
1361 MachineFunction::iterator BBI = CurMBB;
1362 if (++BBI != CurMBB->getParent()->end())
1363 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001364
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001365 // If the lhs block is the next block, invert the condition so that we can
1366 // fall through to the lhs instead of the rhs block.
1367 if (CB.TrueBB == NextBlock) {
1368 std::swap(CB.TrueBB, CB.FalseBB);
1369 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001370 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001371 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001372 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001373 MVT::Other, getControlRoot(), Cond,
1374 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001375
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001376 // If the branch was constant folded, fix up the CFG.
1377 if (BrCond.getOpcode() == ISD::BR) {
1378 CurMBB->removeSuccessor(CB.FalseBB);
1379 DAG.setRoot(BrCond);
1380 } else {
1381 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001382 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001383 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001384
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001385 if (CB.FalseBB == NextBlock)
1386 DAG.setRoot(BrCond);
1387 else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001388 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001389 DAG.getBasicBlock(CB.FalseBB)));
1390 }
1391}
1392
1393/// visitJumpTable - Emit JumpTable node in the current MBB
1394void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1395 // Emit the code for the jump table
1396 assert(JT.Reg != -1U && "Should lower JT Header first!");
1397 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001398 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1399 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001400 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001401 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001402 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001403 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001404}
1405
1406/// visitJumpTableHeader - This function emits necessary code to produce index
1407/// in the JumpTable from switch case.
1408void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1409 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001410 // Subtract the lowest switch case value from the value being switched on and
1411 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001412 // difference between smallest and largest cases.
1413 SDValue SwitchOp = getValue(JTH.SValue);
1414 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001415 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001416 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001417
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001418 // The SDNode we just created, which holds the value being switched on minus
1419 // the the smallest case value, needs to be copied to a virtual register so it
1420 // can be used as an index into the jump table in a subsequent basic block.
1421 // This value may be smaller or larger than the target's pointer type, and
1422 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001423 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001424 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001425 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001426 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001427 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001428 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001429
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001430 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001431 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1432 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001433 JT.Reg = JumpTableReg;
1434
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001435 // Emit the range check for the jump table, and branch to the default block
1436 // for the switch statement if the value being switched on exceeds the largest
1437 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001438 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1439 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001440 DAG.getConstant(JTH.Last-JTH.First,VT),
1441 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001442
1443 // Set NextBlock to be the MBB immediately after the current one, if any.
1444 // This is used to avoid emitting unnecessary branches to the next block.
1445 MachineBasicBlock *NextBlock = 0;
1446 MachineFunction::iterator BBI = CurMBB;
1447 if (++BBI != CurMBB->getParent()->end())
1448 NextBlock = BBI;
1449
Dale Johannesen66978ee2009-01-31 02:22:37 +00001450 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001451 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001452 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001453
1454 if (JT.MBB == NextBlock)
1455 DAG.setRoot(BrCond);
1456 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001457 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001458 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001459}
1460
1461/// visitBitTestHeader - This function emits necessary code to produce value
1462/// suitable for "bit tests"
1463void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1464 // Subtract the minimum value
1465 SDValue SwitchOp = getValue(B.SValue);
1466 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001467 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001468 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001469
1470 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001471 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1472 TLI.getSetCCResultType(SUB.getValueType()),
1473 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001474 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001475
1476 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001477 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001478 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001479 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001480 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001481 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001482 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001483
Duncan Sands92abc622009-01-31 15:50:11 +00001484 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001485 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1486 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001487
1488 // Set NextBlock to be the MBB immediately after the current one, if any.
1489 // This is used to avoid emitting unnecessary branches to the next block.
1490 MachineBasicBlock *NextBlock = 0;
1491 MachineFunction::iterator BBI = CurMBB;
1492 if (++BBI != CurMBB->getParent()->end())
1493 NextBlock = BBI;
1494
1495 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1496
1497 CurMBB->addSuccessor(B.Default);
1498 CurMBB->addSuccessor(MBB);
1499
Dale Johannesen66978ee2009-01-31 02:22:37 +00001500 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001501 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001502 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001503
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001504 if (MBB == NextBlock)
1505 DAG.setRoot(BrRange);
1506 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001507 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001508 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001509}
1510
1511/// visitBitTestCase - this function produces one "bit test"
1512void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1513 unsigned Reg,
1514 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001515 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001516 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001517 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001518 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001519 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001520 DAG.getConstant(1, TLI.getPointerTy()),
1521 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001522
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001523 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001524 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001525 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001526 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001527 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1528 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001529 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001530 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001531
1532 CurMBB->addSuccessor(B.TargetBB);
1533 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001534
Dale Johannesen66978ee2009-01-31 02:22:37 +00001535 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001536 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001537 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001538
1539 // Set NextBlock to be the MBB immediately after the current one, if any.
1540 // This is used to avoid emitting unnecessary branches to the next block.
1541 MachineBasicBlock *NextBlock = 0;
1542 MachineFunction::iterator BBI = CurMBB;
1543 if (++BBI != CurMBB->getParent()->end())
1544 NextBlock = BBI;
1545
1546 if (NextMBB == NextBlock)
1547 DAG.setRoot(BrAnd);
1548 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001549 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001550 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001551}
1552
1553void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1554 // Retrieve successors.
1555 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1556 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1557
Gabor Greifb67e6b32009-01-15 11:10:44 +00001558 const Value *Callee(I.getCalledValue());
1559 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001560 visitInlineAsm(&I);
1561 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001562 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001563
1564 // If the value of the invoke is used outside of its defining block, make it
1565 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001566 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001567
1568 // Update successor info
1569 CurMBB->addSuccessor(Return);
1570 CurMBB->addSuccessor(LandingPad);
1571
1572 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001573 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001574 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001575 DAG.getBasicBlock(Return)));
1576}
1577
1578void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1579}
1580
1581/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1582/// small case ranges).
1583bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1584 CaseRecVector& WorkList,
1585 Value* SV,
1586 MachineBasicBlock* Default) {
1587 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001588
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001589 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001590 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001591 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001592 return false;
1593
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001594 // Get the MachineFunction which holds the current MBB. This is used when
1595 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001596 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001597
1598 // Figure out which block is immediately after the current one.
1599 MachineBasicBlock *NextBlock = 0;
1600 MachineFunction::iterator BBI = CR.CaseBB;
1601
1602 if (++BBI != CurMBB->getParent()->end())
1603 NextBlock = BBI;
1604
1605 // TODO: If any two of the cases has the same destination, and if one value
1606 // is the same as the other, but has one bit unset that the other has set,
1607 // use bit manipulation to do two compares at once. For example:
1608 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001609
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001610 // Rearrange the case blocks so that the last one falls through if possible.
1611 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1612 // The last case block won't fall through into 'NextBlock' if we emit the
1613 // branches in this order. See if rearranging a case value would help.
1614 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1615 if (I->BB == NextBlock) {
1616 std::swap(*I, BackCase);
1617 break;
1618 }
1619 }
1620 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001621
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001622 // Create a CaseBlock record representing a conditional branch to
1623 // the Case's target mbb if the value being switched on SV is equal
1624 // to C.
1625 MachineBasicBlock *CurBlock = CR.CaseBB;
1626 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1627 MachineBasicBlock *FallThrough;
1628 if (I != E-1) {
1629 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1630 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001631
1632 // Put SV in a virtual register to make it available from the new blocks.
1633 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001634 } else {
1635 // If the last case doesn't match, go to the default block.
1636 FallThrough = Default;
1637 }
1638
1639 Value *RHS, *LHS, *MHS;
1640 ISD::CondCode CC;
1641 if (I->High == I->Low) {
1642 // This is just small small case range :) containing exactly 1 case
1643 CC = ISD::SETEQ;
1644 LHS = SV; RHS = I->High; MHS = NULL;
1645 } else {
1646 CC = ISD::SETLE;
1647 LHS = I->Low; MHS = SV; RHS = I->High;
1648 }
1649 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001650
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001651 // If emitting the first comparison, just call visitSwitchCase to emit the
1652 // code into the current block. Otherwise, push the CaseBlock onto the
1653 // vector to be later processed by SDISel, and insert the node's MBB
1654 // before the next MBB.
1655 if (CurBlock == CurMBB)
1656 visitSwitchCase(CB);
1657 else
1658 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001659
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001660 CurBlock = FallThrough;
1661 }
1662
1663 return true;
1664}
1665
1666static inline bool areJTsAllowed(const TargetLowering &TLI) {
1667 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001668 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1669 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001670}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001671
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001672static APInt ComputeRange(const APInt &First, const APInt &Last) {
1673 APInt LastExt(Last), FirstExt(First);
1674 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1675 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1676 return (LastExt - FirstExt + 1ULL);
1677}
1678
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001679/// handleJTSwitchCase - Emit jumptable for current switch case range
1680bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1681 CaseRecVector& WorkList,
1682 Value* SV,
1683 MachineBasicBlock* Default) {
1684 Case& FrontCase = *CR.Range.first;
1685 Case& BackCase = *(CR.Range.second-1);
1686
Anton Korobeynikov23218582008-12-23 22:25:27 +00001687 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1688 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001689
Anton Korobeynikov23218582008-12-23 22:25:27 +00001690 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001691 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1692 I!=E; ++I)
1693 TSize += I->size();
1694
1695 if (!areJTsAllowed(TLI) || TSize <= 3)
1696 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001697
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001698 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001699 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001700 if (Density < 0.4)
1701 return false;
1702
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001703 DEBUG(errs() << "Lowering jump table\n"
1704 << "First entry: " << First << ". Last entry: " << Last << '\n'
1705 << "Range: " << Range
1706 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001707
1708 // Get the MachineFunction which holds the current MBB. This is used when
1709 // inserting any additional MBBs necessary to represent the switch.
1710 MachineFunction *CurMF = CurMBB->getParent();
1711
1712 // Figure out which block is immediately after the current one.
1713 MachineBasicBlock *NextBlock = 0;
1714 MachineFunction::iterator BBI = CR.CaseBB;
1715
1716 if (++BBI != CurMBB->getParent()->end())
1717 NextBlock = BBI;
1718
1719 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1720
1721 // Create a new basic block to hold the code for loading the address
1722 // of the jump table, and jumping to it. Update successor information;
1723 // we will either branch to the default case for the switch, or the jump
1724 // table.
1725 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1726 CurMF->insert(BBI, JumpTableBB);
1727 CR.CaseBB->addSuccessor(Default);
1728 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001729
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001730 // Build a vector of destination BBs, corresponding to each target
1731 // of the jump table. If the value of the jump table slot corresponds to
1732 // a case statement, push the case's BB onto the vector, otherwise, push
1733 // the default BB.
1734 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001735 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001736 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001737 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1738 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1739
1740 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001741 DestBBs.push_back(I->BB);
1742 if (TEI==High)
1743 ++I;
1744 } else {
1745 DestBBs.push_back(Default);
1746 }
1747 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001748
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001749 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001750 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1751 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001752 E = DestBBs.end(); I != E; ++I) {
1753 if (!SuccsHandled[(*I)->getNumber()]) {
1754 SuccsHandled[(*I)->getNumber()] = true;
1755 JumpTableBB->addSuccessor(*I);
1756 }
1757 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001758
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001759 // Create a jump table index for this jump table, or return an existing
1760 // one.
1761 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001762
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001763 // Set the jump table information so that we can codegen it as a second
1764 // MachineBasicBlock
1765 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1766 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1767 if (CR.CaseBB == CurMBB)
1768 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001769
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001770 JTCases.push_back(JumpTableBlock(JTH, JT));
1771
1772 return true;
1773}
1774
1775/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1776/// 2 subtrees.
1777bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1778 CaseRecVector& WorkList,
1779 Value* SV,
1780 MachineBasicBlock* Default) {
1781 // Get the MachineFunction which holds the current MBB. This is used when
1782 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001783 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001784
1785 // Figure out which block is immediately after the current one.
1786 MachineBasicBlock *NextBlock = 0;
1787 MachineFunction::iterator BBI = CR.CaseBB;
1788
1789 if (++BBI != CurMBB->getParent()->end())
1790 NextBlock = BBI;
1791
1792 Case& FrontCase = *CR.Range.first;
1793 Case& BackCase = *(CR.Range.second-1);
1794 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1795
1796 // Size is the number of Cases represented by this range.
1797 unsigned Size = CR.Range.second - CR.Range.first;
1798
Anton Korobeynikov23218582008-12-23 22:25:27 +00001799 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1800 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001801 double FMetric = 0;
1802 CaseItr Pivot = CR.Range.first + Size/2;
1803
1804 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1805 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001806 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001807 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1808 I!=E; ++I)
1809 TSize += I->size();
1810
Anton Korobeynikov23218582008-12-23 22:25:27 +00001811 size_t LSize = FrontCase.size();
1812 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001813 DEBUG(errs() << "Selecting best pivot: \n"
1814 << "First: " << First << ", Last: " << Last <<'\n'
1815 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001816 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1817 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001818 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1819 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001820 APInt Range = ComputeRange(LEnd, RBegin);
1821 assert((Range - 2ULL).isNonNegative() &&
1822 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001823 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1824 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001825 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001826 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001827 DEBUG(errs() <<"=>Step\n"
1828 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1829 << "LDensity: " << LDensity
1830 << ", RDensity: " << RDensity << '\n'
1831 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001832 if (FMetric < Metric) {
1833 Pivot = J;
1834 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001835 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001836 }
1837
1838 LSize += J->size();
1839 RSize -= J->size();
1840 }
1841 if (areJTsAllowed(TLI)) {
1842 // If our case is dense we *really* should handle it earlier!
1843 assert((FMetric > 0) && "Should handle dense range earlier!");
1844 } else {
1845 Pivot = CR.Range.first + Size/2;
1846 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001847
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001848 CaseRange LHSR(CR.Range.first, Pivot);
1849 CaseRange RHSR(Pivot, CR.Range.second);
1850 Constant *C = Pivot->Low;
1851 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001852
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001853 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001854 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001856 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001857 // Pivot's Value, then we can branch directly to the LHS's Target,
1858 // rather than creating a leaf node for it.
1859 if ((LHSR.second - LHSR.first) == 1 &&
1860 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001861 cast<ConstantInt>(C)->getValue() ==
1862 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001863 TrueBB = LHSR.first->BB;
1864 } else {
1865 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1866 CurMF->insert(BBI, TrueBB);
1867 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001868
1869 // Put SV in a virtual register to make it available from the new blocks.
1870 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001871 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001872
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001873 // Similar to the optimization above, if the Value being switched on is
1874 // known to be less than the Constant CR.LT, and the current Case Value
1875 // is CR.LT - 1, then we can branch directly to the target block for
1876 // the current Case Value, rather than emitting a RHS leaf node for it.
1877 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001878 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1879 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001880 FalseBB = RHSR.first->BB;
1881 } else {
1882 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1883 CurMF->insert(BBI, FalseBB);
1884 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001885
1886 // Put SV in a virtual register to make it available from the new blocks.
1887 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001888 }
1889
1890 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001891 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001892 // Otherwise, branch to LHS.
1893 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1894
1895 if (CR.CaseBB == CurMBB)
1896 visitSwitchCase(CB);
1897 else
1898 SwitchCases.push_back(CB);
1899
1900 return true;
1901}
1902
1903/// handleBitTestsSwitchCase - if current case range has few destination and
1904/// range span less, than machine word bitwidth, encode case range into series
1905/// of masks and emit bit tests with these masks.
1906bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1907 CaseRecVector& WorkList,
1908 Value* SV,
1909 MachineBasicBlock* Default){
1910 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1911
1912 Case& FrontCase = *CR.Range.first;
1913 Case& BackCase = *(CR.Range.second-1);
1914
1915 // Get the MachineFunction which holds the current MBB. This is used when
1916 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001917 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001918
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001919 // If target does not have legal shift left, do not emit bit tests at all.
1920 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1921 return false;
1922
Anton Korobeynikov23218582008-12-23 22:25:27 +00001923 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001924 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1925 I!=E; ++I) {
1926 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001927 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001928 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001929
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001930 // Count unique destinations
1931 SmallSet<MachineBasicBlock*, 4> Dests;
1932 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1933 Dests.insert(I->BB);
1934 if (Dests.size() > 3)
1935 // Don't bother the code below, if there are too much unique destinations
1936 return false;
1937 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001938 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1939 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001940
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001941 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001942 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1943 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001944 APInt cmpRange = maxValue - minValue;
1945
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001946 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1947 << "Low bound: " << minValue << '\n'
1948 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001949
1950 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001951 (!(Dests.size() == 1 && numCmps >= 3) &&
1952 !(Dests.size() == 2 && numCmps >= 5) &&
1953 !(Dests.size() >= 3 && numCmps >= 6)))
1954 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001955
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001956 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001957 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1958
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001959 // Optimize the case where all the case values fit in a
1960 // word without having to subtract minValue. In this case,
1961 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001962 if (minValue.isNonNegative() &&
1963 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1964 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001965 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001966 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001967 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001968
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001969 CaseBitsVector CasesBits;
1970 unsigned i, count = 0;
1971
1972 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1973 MachineBasicBlock* Dest = I->BB;
1974 for (i = 0; i < count; ++i)
1975 if (Dest == CasesBits[i].BB)
1976 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001977
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001978 if (i == count) {
1979 assert((count < 3) && "Too much destinations to test!");
1980 CasesBits.push_back(CaseBits(0, Dest, 0));
1981 count++;
1982 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001983
1984 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1985 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1986
1987 uint64_t lo = (lowValue - lowBound).getZExtValue();
1988 uint64_t hi = (highValue - lowBound).getZExtValue();
1989
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001990 for (uint64_t j = lo; j <= hi; j++) {
1991 CasesBits[i].Mask |= 1ULL << j;
1992 CasesBits[i].Bits++;
1993 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001994
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001995 }
1996 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001997
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001998 BitTestInfo BTC;
1999
2000 // Figure out which block is immediately after the current one.
2001 MachineFunction::iterator BBI = CR.CaseBB;
2002 ++BBI;
2003
2004 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2005
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002006 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002007 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002008 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2009 << ", Bits: " << CasesBits[i].Bits
2010 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002011
2012 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2013 CurMF->insert(BBI, CaseBB);
2014 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2015 CaseBB,
2016 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002017
2018 // Put SV in a virtual register to make it available from the new blocks.
2019 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002020 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002021
2022 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002023 -1U, (CR.CaseBB == CurMBB),
2024 CR.CaseBB, Default, BTC);
2025
2026 if (CR.CaseBB == CurMBB)
2027 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002028
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002029 BitTestCases.push_back(BTB);
2030
2031 return true;
2032}
2033
2034
2035/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002036size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002037 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002038 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002039
2040 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002041 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002042 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2043 Cases.push_back(Case(SI.getSuccessorValue(i),
2044 SI.getSuccessorValue(i),
2045 SMBB));
2046 }
2047 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2048
2049 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002050 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002051 // Must recompute end() each iteration because it may be
2052 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002053 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2054 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2055 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002056 MachineBasicBlock* nextBB = J->BB;
2057 MachineBasicBlock* currentBB = I->BB;
2058
2059 // If the two neighboring cases go to the same destination, merge them
2060 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002061 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002062 I->High = J->High;
2063 J = Cases.erase(J);
2064 } else {
2065 I = J++;
2066 }
2067 }
2068
2069 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2070 if (I->Low != I->High)
2071 // A range counts double, since it requires two compares.
2072 ++numCmps;
2073 }
2074
2075 return numCmps;
2076}
2077
Anton Korobeynikov23218582008-12-23 22:25:27 +00002078void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002079 // Figure out which block is immediately after the current one.
2080 MachineBasicBlock *NextBlock = 0;
2081 MachineFunction::iterator BBI = CurMBB;
2082
2083 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2084
2085 // If there is only the default destination, branch to it if it is not the
2086 // next basic block. Otherwise, just fall through.
2087 if (SI.getNumOperands() == 2) {
2088 // Update machine-CFG edges.
2089
2090 // If this is not a fall-through branch, emit the branch.
2091 CurMBB->addSuccessor(Default);
2092 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002093 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002094 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002095 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002096 return;
2097 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002098
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002099 // If there are any non-default case statements, create a vector of Cases
2100 // representing each one, and sort the vector so that we can efficiently
2101 // create a binary search tree from them.
2102 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002103 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002104 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2105 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002106 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002107
2108 // Get the Value to be switched on and default basic blocks, which will be
2109 // inserted into CaseBlock records, representing basic blocks in the binary
2110 // search tree.
2111 Value *SV = SI.getOperand(0);
2112
2113 // Push the initial CaseRec onto the worklist
2114 CaseRecVector WorkList;
2115 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2116
2117 while (!WorkList.empty()) {
2118 // Grab a record representing a case range to process off the worklist
2119 CaseRec CR = WorkList.back();
2120 WorkList.pop_back();
2121
2122 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2123 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002124
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002125 // If the range has few cases (two or less) emit a series of specific
2126 // tests.
2127 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2128 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002129
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002130 // If the switch has more than 5 blocks, and at least 40% dense, and the
2131 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002132 // lowering the switch to a binary tree of conditional branches.
2133 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2134 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002135
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002136 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2137 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2138 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2139 }
2140}
2141
2142
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002143void SelectionDAGLowering::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002144 // -0.0 - X --> fneg
2145 const Type *Ty = I.getType();
2146 if (isa<VectorType>(Ty)) {
2147 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2148 const VectorType *DestTy = cast<VectorType>(I.getType());
2149 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002150 unsigned VL = DestTy->getNumElements();
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002151 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
Owen Andersona90b3dc2009-07-15 21:51:10 +00002152 Constant *CNZ = DAG.getContext()->getConstantVector(&NZ[0], NZ.size());
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002153 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002154 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002155 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002156 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002157 return;
2158 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002159 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002160 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002161 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002162 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002163 SDValue Op2 = getValue(I.getOperand(1));
2164 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2165 Op2.getValueType(), Op2));
2166 return;
2167 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002168
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002169 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002170}
2171
2172void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2173 SDValue Op1 = getValue(I.getOperand(0));
2174 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002175
Scott Michelfdc40a02009-02-17 22:15:04 +00002176 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002177 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002178}
2179
2180void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2181 SDValue Op1 = getValue(I.getOperand(0));
2182 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002183 if (!isa<VectorType>(I.getType()) &&
2184 Op2.getValueType() != TLI.getShiftAmountTy()) {
2185 // If the operand is smaller than the shift count type, promote it.
2186 if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2187 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2188 TLI.getShiftAmountTy(), Op2);
2189 // If the operand is larger than the shift count type but the shift
2190 // count type has enough bits to represent any shift value, truncate
2191 // it now. This is a common case and it exposes the truncate to
2192 // optimization early.
2193 else if (TLI.getShiftAmountTy().getSizeInBits() >=
2194 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2195 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2196 TLI.getShiftAmountTy(), Op2);
2197 // Otherwise we'll need to temporarily settle for some other
2198 // convenient type; type legalization will make adjustments as
2199 // needed.
2200 else if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002201 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002202 TLI.getPointerTy(), Op2);
2203 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002204 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002205 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002206 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002207
Scott Michelfdc40a02009-02-17 22:15:04 +00002208 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002209 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002210}
2211
2212void SelectionDAGLowering::visitICmp(User &I) {
2213 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2214 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2215 predicate = IC->getPredicate();
2216 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2217 predicate = ICmpInst::Predicate(IC->getPredicate());
2218 SDValue Op1 = getValue(I.getOperand(0));
2219 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002220 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002221
2222 MVT DestVT = TLI.getValueType(I.getType());
2223 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002224}
2225
2226void SelectionDAGLowering::visitFCmp(User &I) {
2227 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2228 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2229 predicate = FC->getPredicate();
2230 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2231 predicate = FCmpInst::Predicate(FC->getPredicate());
2232 SDValue Op1 = getValue(I.getOperand(0));
2233 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002234 ISD::CondCode Condition = getFCmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002235 MVT DestVT = TLI.getValueType(I.getType());
2236 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002237}
2238
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002239void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002240 SmallVector<MVT, 4> ValueVTs;
2241 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2242 unsigned NumValues = ValueVTs.size();
2243 if (NumValues != 0) {
2244 SmallVector<SDValue, 4> Values(NumValues);
2245 SDValue Cond = getValue(I.getOperand(0));
2246 SDValue TrueVal = getValue(I.getOperand(1));
2247 SDValue FalseVal = getValue(I.getOperand(2));
2248
2249 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002250 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002251 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002252 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2253 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2254
Scott Michelfdc40a02009-02-17 22:15:04 +00002255 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002256 DAG.getVTList(&ValueVTs[0], NumValues),
2257 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002258 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002259}
2260
2261
2262void SelectionDAGLowering::visitTrunc(User &I) {
2263 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2264 SDValue N = getValue(I.getOperand(0));
2265 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002266 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002267}
2268
2269void SelectionDAGLowering::visitZExt(User &I) {
2270 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2271 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2272 SDValue N = getValue(I.getOperand(0));
2273 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002274 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002275}
2276
2277void SelectionDAGLowering::visitSExt(User &I) {
2278 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2279 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2280 SDValue N = getValue(I.getOperand(0));
2281 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002282 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002283}
2284
2285void SelectionDAGLowering::visitFPTrunc(User &I) {
2286 // FPTrunc is never a no-op cast, no need to check
2287 SDValue N = getValue(I.getOperand(0));
2288 MVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002289 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002290 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002291}
2292
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002293void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002294 // FPTrunc is never a no-op cast, no need to check
2295 SDValue N = getValue(I.getOperand(0));
2296 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002297 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002298}
2299
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002300void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002301 // FPToUI is never a no-op cast, no need to check
2302 SDValue N = getValue(I.getOperand(0));
2303 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002304 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002305}
2306
2307void SelectionDAGLowering::visitFPToSI(User &I) {
2308 // FPToSI is never a no-op cast, no need to check
2309 SDValue N = getValue(I.getOperand(0));
2310 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002311 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002312}
2313
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002314void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002315 // UIToFP is never a no-op cast, no need to check
2316 SDValue N = getValue(I.getOperand(0));
2317 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002318 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002319}
2320
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002321void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002322 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002323 SDValue N = getValue(I.getOperand(0));
2324 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002325 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002326}
2327
2328void SelectionDAGLowering::visitPtrToInt(User &I) {
2329 // What to do depends on the size of the integer and the size of the pointer.
2330 // We can either truncate, zero extend, or no-op, accordingly.
2331 SDValue N = getValue(I.getOperand(0));
2332 MVT SrcVT = N.getValueType();
2333 MVT DestVT = TLI.getValueType(I.getType());
2334 SDValue Result;
2335 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002336 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002337 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002338 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002339 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002340 setValue(&I, Result);
2341}
2342
2343void SelectionDAGLowering::visitIntToPtr(User &I) {
2344 // What to do depends on the size of the integer and the size of the pointer.
2345 // We can either truncate, zero extend, or no-op, accordingly.
2346 SDValue N = getValue(I.getOperand(0));
2347 MVT SrcVT = N.getValueType();
2348 MVT DestVT = TLI.getValueType(I.getType());
2349 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002350 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002351 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002352 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002353 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002354 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002355}
2356
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002357void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002358 SDValue N = getValue(I.getOperand(0));
2359 MVT DestVT = TLI.getValueType(I.getType());
2360
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002361 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002362 // is either a BIT_CONVERT or a no-op.
2363 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002364 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002365 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002366 else
2367 setValue(&I, N); // noop cast.
2368}
2369
2370void SelectionDAGLowering::visitInsertElement(User &I) {
2371 SDValue InVec = getValue(I.getOperand(0));
2372 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002373 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002374 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002375 getValue(I.getOperand(2)));
2376
Scott Michelfdc40a02009-02-17 22:15:04 +00002377 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002378 TLI.getValueType(I.getType()),
2379 InVec, InVal, InIdx));
2380}
2381
2382void SelectionDAGLowering::visitExtractElement(User &I) {
2383 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002384 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002385 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002386 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002387 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002388 TLI.getValueType(I.getType()), InVec, InIdx));
2389}
2390
Mon P Wangaeb06d22008-11-10 04:46:22 +00002391
2392// Utility for visitShuffleVector - Returns true if the mask is mask starting
2393// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002394static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2395 unsigned MaskNumElts = Mask.size();
2396 for (unsigned i = 0; i != MaskNumElts; ++i)
2397 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002398 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002399 return true;
2400}
2401
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002402void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002403 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002404 SDValue Src1 = getValue(I.getOperand(0));
2405 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002406
Nate Begeman9008ca62009-04-27 18:41:29 +00002407 // Convert the ConstantVector mask operand into an array of ints, with -1
2408 // representing undef values.
2409 SmallVector<Constant*, 8> MaskElts;
Owen Anderson001dbfe2009-07-16 18:04:31 +00002410 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
2411 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002412 unsigned MaskNumElts = MaskElts.size();
2413 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002414 if (isa<UndefValue>(MaskElts[i]))
2415 Mask.push_back(-1);
2416 else
2417 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2418 }
2419
Mon P Wangaeb06d22008-11-10 04:46:22 +00002420 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002421 MVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002422 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002423
Mon P Wangc7849c22008-11-16 05:06:27 +00002424 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002425 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2426 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002427 return;
2428 }
2429
2430 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002431 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2432 // Mask is longer than the source vectors and is a multiple of the source
2433 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002434 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002435 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2436 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002437 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002438 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002439 return;
2440 }
2441
Mon P Wangc7849c22008-11-16 05:06:27 +00002442 // Pad both vectors with undefs to make them the same length as the mask.
2443 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002444 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2445 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002446 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002447
Nate Begeman9008ca62009-04-27 18:41:29 +00002448 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2449 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002450 MOps1[0] = Src1;
2451 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002452
2453 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2454 getCurDebugLoc(), VT,
2455 &MOps1[0], NumConcat);
2456 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2457 getCurDebugLoc(), VT,
2458 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002459
Mon P Wangaeb06d22008-11-10 04:46:22 +00002460 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002461 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002462 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002463 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002464 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002465 MappedOps.push_back(Idx);
2466 else
2467 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002468 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002469 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2470 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002471 return;
2472 }
2473
Mon P Wangc7849c22008-11-16 05:06:27 +00002474 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002475 // Analyze the access pattern of the vector to see if we can extract
2476 // two subvectors and do the shuffle. The analysis is done by calculating
2477 // the range of elements the mask access on both vectors.
2478 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2479 int MaxRange[2] = {-1, -1};
2480
Nate Begeman5a5ca152009-04-29 05:20:52 +00002481 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002482 int Idx = Mask[i];
2483 int Input = 0;
2484 if (Idx < 0)
2485 continue;
2486
Nate Begeman5a5ca152009-04-29 05:20:52 +00002487 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002488 Input = 1;
2489 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002490 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002491 if (Idx > MaxRange[Input])
2492 MaxRange[Input] = Idx;
2493 if (Idx < MinRange[Input])
2494 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002495 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002496
Mon P Wangc7849c22008-11-16 05:06:27 +00002497 // Check if the access is smaller than the vector size and can we find
2498 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002499 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002500 int StartIdx[2]; // StartIdx to extract from
2501 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002502 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002503 RangeUse[Input] = 0; // Unused
2504 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002505 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002506 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002507 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002508 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002509 RangeUse[Input] = 1; // Extract from beginning of the vector
2510 StartIdx[Input] = 0;
2511 } else {
2512 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002513 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002514 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002515 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002516 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002517 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002518 }
2519
2520 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002521 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002522 return;
2523 }
2524 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2525 // Extract appropriate subvector and generate a vector shuffle
2526 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002527 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002528 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002529 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002530 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002531 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002532 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002533 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002534 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002535 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002536 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002537 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002538 int Idx = Mask[i];
2539 if (Idx < 0)
2540 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002541 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002542 MappedOps.push_back(Idx - StartIdx[0]);
2543 else
2544 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002545 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002546 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2547 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002548 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002549 }
2550 }
2551
Mon P Wangc7849c22008-11-16 05:06:27 +00002552 // We can't use either concat vectors or extract subvectors so fall back to
2553 // replacing the shuffle with extract and build vector.
2554 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002555 MVT EltVT = VT.getVectorElementType();
2556 MVT PtrVT = TLI.getPointerTy();
2557 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002558 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002559 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002560 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002561 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002562 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002563 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002564 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002565 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002566 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002567 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002568 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002569 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002570 }
2571 }
Evan Chenga87008d2009-02-25 22:49:59 +00002572 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2573 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002574}
2575
2576void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2577 const Value *Op0 = I.getOperand(0);
2578 const Value *Op1 = I.getOperand(1);
2579 const Type *AggTy = I.getType();
2580 const Type *ValTy = Op1->getType();
2581 bool IntoUndef = isa<UndefValue>(Op0);
2582 bool FromUndef = isa<UndefValue>(Op1);
2583
2584 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2585 I.idx_begin(), I.idx_end());
2586
2587 SmallVector<MVT, 4> AggValueVTs;
2588 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2589 SmallVector<MVT, 4> ValValueVTs;
2590 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2591
2592 unsigned NumAggValues = AggValueVTs.size();
2593 unsigned NumValValues = ValValueVTs.size();
2594 SmallVector<SDValue, 4> Values(NumAggValues);
2595
2596 SDValue Agg = getValue(Op0);
2597 SDValue Val = getValue(Op1);
2598 unsigned i = 0;
2599 // Copy the beginning value(s) from the original aggregate.
2600 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002601 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002602 SDValue(Agg.getNode(), Agg.getResNo() + i);
2603 // Copy values from the inserted value(s).
2604 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002605 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002606 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2607 // Copy remaining value(s) from the original aggregate.
2608 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002609 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002610 SDValue(Agg.getNode(), Agg.getResNo() + i);
2611
Scott Michelfdc40a02009-02-17 22:15:04 +00002612 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002613 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2614 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002615}
2616
2617void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2618 const Value *Op0 = I.getOperand(0);
2619 const Type *AggTy = Op0->getType();
2620 const Type *ValTy = I.getType();
2621 bool OutOfUndef = isa<UndefValue>(Op0);
2622
2623 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2624 I.idx_begin(), I.idx_end());
2625
2626 SmallVector<MVT, 4> ValValueVTs;
2627 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2628
2629 unsigned NumValValues = ValValueVTs.size();
2630 SmallVector<SDValue, 4> Values(NumValValues);
2631
2632 SDValue Agg = getValue(Op0);
2633 // Copy out the selected value(s).
2634 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2635 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002636 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002637 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002638 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002639
Scott Michelfdc40a02009-02-17 22:15:04 +00002640 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002641 DAG.getVTList(&ValValueVTs[0], NumValValues),
2642 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002643}
2644
2645
2646void SelectionDAGLowering::visitGetElementPtr(User &I) {
2647 SDValue N = getValue(I.getOperand(0));
2648 const Type *Ty = I.getOperand(0)->getType();
2649
2650 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2651 OI != E; ++OI) {
2652 Value *Idx = *OI;
2653 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2654 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2655 if (Field) {
2656 // N = N + Offset
2657 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002658 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002659 DAG.getIntPtrConstant(Offset));
2660 }
2661 Ty = StTy->getElementType(Field);
2662 } else {
2663 Ty = cast<SequentialType>(Ty)->getElementType();
2664
2665 // If this is a constant subscript, handle it quickly.
2666 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2667 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002668 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002669 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002670 SDValue OffsVal;
Evan Chengb1032a82009-02-09 20:54:38 +00002671 unsigned PtrBits = TLI.getPointerTy().getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002672 if (PtrBits < 64) {
2673 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2674 TLI.getPointerTy(),
2675 DAG.getConstant(Offs, MVT::i64));
2676 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002677 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002678 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002679 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002680 continue;
2681 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002682
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002683 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +00002684 uint64_t ElementSize = TD->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002685 SDValue IdxN = getValue(Idx);
2686
2687 // If the index is smaller or larger than intptr_t, truncate or extend
2688 // it.
2689 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002690 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002691 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002692 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002693 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002694 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002695
2696 // If this is a multiply by a power of two, turn it into a shl
2697 // immediately. This is a very common case.
2698 if (ElementSize != 1) {
2699 if (isPowerOf2_64(ElementSize)) {
2700 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002701 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002702 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002703 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002704 } else {
2705 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002706 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002707 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002708 }
2709 }
2710
Scott Michelfdc40a02009-02-17 22:15:04 +00002711 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002712 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002713 }
2714 }
2715 setValue(&I, N);
2716}
2717
2718void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2719 // If this is a fixed sized alloca in the entry block of the function,
2720 // allocate it statically on the stack.
2721 if (FuncInfo.StaticAllocaMap.count(&I))
2722 return; // getValue will auto-populate this.
2723
2724 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002725 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002726 unsigned Align =
2727 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2728 I.getAlignment());
2729
2730 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002731
2732 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2733 AllocSize,
2734 DAG.getConstant(TySize, AllocSize.getValueType()));
2735
2736
2737
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002738 MVT IntPtr = TLI.getPointerTy();
2739 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002740 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002741 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002742 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002743 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002744 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002745
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002746 // Handle alignment. If the requested alignment is less than or equal to
2747 // the stack alignment, ignore it. If the size is greater than or equal to
2748 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2749 unsigned StackAlign =
2750 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2751 if (Align <= StackAlign)
2752 Align = 0;
2753
2754 // Round the size of the allocation up to the stack alignment size
2755 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002756 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002757 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002758 DAG.getIntPtrConstant(StackAlign-1));
2759 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002760 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002761 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002762 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2763
2764 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Dan Gohmanfc166572009-04-09 23:54:40 +00002765 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002766 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002767 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002768 setValue(&I, DSA);
2769 DAG.setRoot(DSA.getValue(1));
2770
2771 // Inform the Frame Information that we have just allocated a variable-sized
2772 // object.
2773 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2774}
2775
2776void SelectionDAGLowering::visitLoad(LoadInst &I) {
2777 const Value *SV = I.getOperand(0);
2778 SDValue Ptr = getValue(SV);
2779
2780 const Type *Ty = I.getType();
2781 bool isVolatile = I.isVolatile();
2782 unsigned Alignment = I.getAlignment();
2783
2784 SmallVector<MVT, 4> ValueVTs;
2785 SmallVector<uint64_t, 4> Offsets;
2786 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2787 unsigned NumValues = ValueVTs.size();
2788 if (NumValues == 0)
2789 return;
2790
2791 SDValue Root;
2792 bool ConstantMemory = false;
2793 if (I.isVolatile())
2794 // Serialize volatile loads with other side effects.
2795 Root = getRoot();
2796 else if (AA->pointsToConstantMemory(SV)) {
2797 // Do not serialize (non-volatile) loads of constant memory with anything.
2798 Root = DAG.getEntryNode();
2799 ConstantMemory = true;
2800 } else {
2801 // Do not serialize non-volatile loads against each other.
2802 Root = DAG.getRoot();
2803 }
2804
2805 SmallVector<SDValue, 4> Values(NumValues);
2806 SmallVector<SDValue, 4> Chains(NumValues);
2807 MVT PtrVT = Ptr.getValueType();
2808 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002809 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002810 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002811 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002812 DAG.getConstant(Offsets[i], PtrVT)),
2813 SV, Offsets[i],
2814 isVolatile, Alignment);
2815 Values[i] = L;
2816 Chains[i] = L.getValue(1);
2817 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002818
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002819 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002820 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002821 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002822 &Chains[0], NumValues);
2823 if (isVolatile)
2824 DAG.setRoot(Chain);
2825 else
2826 PendingLoads.push_back(Chain);
2827 }
2828
Scott Michelfdc40a02009-02-17 22:15:04 +00002829 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002830 DAG.getVTList(&ValueVTs[0], NumValues),
2831 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002832}
2833
2834
2835void SelectionDAGLowering::visitStore(StoreInst &I) {
2836 Value *SrcV = I.getOperand(0);
2837 Value *PtrV = I.getOperand(1);
2838
2839 SmallVector<MVT, 4> ValueVTs;
2840 SmallVector<uint64_t, 4> Offsets;
2841 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2842 unsigned NumValues = ValueVTs.size();
2843 if (NumValues == 0)
2844 return;
2845
2846 // Get the lowered operands. Note that we do this after
2847 // checking if NumResults is zero, because with zero results
2848 // the operands won't have values in the map.
2849 SDValue Src = getValue(SrcV);
2850 SDValue Ptr = getValue(PtrV);
2851
2852 SDValue Root = getRoot();
2853 SmallVector<SDValue, 4> Chains(NumValues);
2854 MVT PtrVT = Ptr.getValueType();
2855 bool isVolatile = I.isVolatile();
2856 unsigned Alignment = I.getAlignment();
2857 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002858 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002859 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002860 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002861 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002862 DAG.getConstant(Offsets[i], PtrVT)),
2863 PtrV, Offsets[i],
2864 isVolatile, Alignment);
2865
Scott Michelfdc40a02009-02-17 22:15:04 +00002866 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002867 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002868}
2869
2870/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2871/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002872void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002873 unsigned Intrinsic) {
2874 bool HasChain = !I.doesNotAccessMemory();
2875 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2876
2877 // Build the operand list.
2878 SmallVector<SDValue, 8> Ops;
2879 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2880 if (OnlyLoad) {
2881 // We don't need to serialize loads against other loads.
2882 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002883 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002884 Ops.push_back(getRoot());
2885 }
2886 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002887
2888 // Info is set by getTgtMemInstrinsic
2889 TargetLowering::IntrinsicInfo Info;
2890 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2891
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002892 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002893 if (!IsTgtIntrinsic)
2894 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002895
2896 // Add all operands of the call to the operand list.
2897 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2898 SDValue Op = getValue(I.getOperand(i));
2899 assert(TLI.isTypeLegal(Op.getValueType()) &&
2900 "Intrinsic uses a non-legal type?");
2901 Ops.push_back(Op);
2902 }
2903
Dan Gohmanfc166572009-04-09 23:54:40 +00002904 std::vector<MVT> VTArray;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002905 if (I.getType() != Type::VoidTy) {
2906 MVT VT = TLI.getValueType(I.getType());
2907 if (VT.isVector()) {
2908 const VectorType *DestTy = cast<VectorType>(I.getType());
2909 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002910
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002911 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2912 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2913 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002914
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002915 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
Dan Gohmanfc166572009-04-09 23:54:40 +00002916 VTArray.push_back(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002917 }
2918 if (HasChain)
Dan Gohmanfc166572009-04-09 23:54:40 +00002919 VTArray.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002920
Dan Gohmanfc166572009-04-09 23:54:40 +00002921 SDVTList VTs = DAG.getVTList(&VTArray[0], VTArray.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002922
2923 // Create the node.
2924 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002925 if (IsTgtIntrinsic) {
2926 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002927 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002928 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002929 Info.memVT, Info.ptrVal, Info.offset,
2930 Info.align, Info.vol,
2931 Info.readMem, Info.writeMem);
2932 }
2933 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002934 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002935 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002936 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002937 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002938 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002939 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002940 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002941 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002942
2943 if (HasChain) {
2944 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2945 if (OnlyLoad)
2946 PendingLoads.push_back(Chain);
2947 else
2948 DAG.setRoot(Chain);
2949 }
2950 if (I.getType() != Type::VoidTy) {
2951 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2952 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002953 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002954 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002955 setValue(&I, Result);
2956 }
2957}
2958
2959/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2960static GlobalVariable *ExtractTypeInfo(Value *V) {
2961 V = V->stripPointerCasts();
2962 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2963 assert ((GV || isa<ConstantPointerNull>(V)) &&
2964 "TypeInfo must be a global variable or NULL");
2965 return GV;
2966}
2967
2968namespace llvm {
2969
2970/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2971/// call, and add them to the specified machine basic block.
2972void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2973 MachineBasicBlock *MBB) {
2974 // Inform the MachineModuleInfo of the personality for this landing pad.
2975 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2976 assert(CE->getOpcode() == Instruction::BitCast &&
2977 isa<Function>(CE->getOperand(0)) &&
2978 "Personality should be a function");
2979 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2980
2981 // Gather all the type infos for this landing pad and pass them along to
2982 // MachineModuleInfo.
2983 std::vector<GlobalVariable *> TyInfo;
2984 unsigned N = I.getNumOperands();
2985
2986 for (unsigned i = N - 1; i > 2; --i) {
2987 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2988 unsigned FilterLength = CI->getZExtValue();
2989 unsigned FirstCatch = i + FilterLength + !FilterLength;
2990 assert (FirstCatch <= N && "Invalid filter length");
2991
2992 if (FirstCatch < N) {
2993 TyInfo.reserve(N - FirstCatch);
2994 for (unsigned j = FirstCatch; j < N; ++j)
2995 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2996 MMI->addCatchTypeInfo(MBB, TyInfo);
2997 TyInfo.clear();
2998 }
2999
3000 if (!FilterLength) {
3001 // Cleanup.
3002 MMI->addCleanup(MBB);
3003 } else {
3004 // Filter.
3005 TyInfo.reserve(FilterLength - 1);
3006 for (unsigned j = i + 1; j < FirstCatch; ++j)
3007 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3008 MMI->addFilterTypeInfo(MBB, TyInfo);
3009 TyInfo.clear();
3010 }
3011
3012 N = i;
3013 }
3014 }
3015
3016 if (N > 3) {
3017 TyInfo.reserve(N - 3);
3018 for (unsigned j = 3; j < N; ++j)
3019 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3020 MMI->addCatchTypeInfo(MBB, TyInfo);
3021 }
3022}
3023
3024}
3025
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003026/// GetSignificand - Get the significand and build it into a floating-point
3027/// number with exponent of 1:
3028///
3029/// Op = (Op & 0x007fffff) | 0x3f800000;
3030///
3031/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003032static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003033GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3034 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003035 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003036 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003037 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003038 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003039}
3040
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003041/// GetExponent - Get the exponent:
3042///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003043/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003044///
3045/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003046static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003047GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3048 DebugLoc dl) {
3049 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003050 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003051 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003052 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003053 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003054 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003055 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003056}
3057
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003058/// getF32Constant - Get 32-bit floating point constant.
3059static SDValue
3060getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3061 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3062}
3063
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003064/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003065/// visitIntrinsicCall: I is a call instruction
3066/// Op is the associated NodeType for I
3067const char *
3068SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003069 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003070 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003071 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003072 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003073 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003074 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003075 getValue(I.getOperand(2)),
3076 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003077 setValue(&I, L);
3078 DAG.setRoot(L.getValue(1));
3079 return 0;
3080}
3081
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003082// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003083const char *
3084SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003085 SDValue Op1 = getValue(I.getOperand(1));
3086 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003087
Dan Gohmanfc166572009-04-09 23:54:40 +00003088 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
3089 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003090
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003091 setValue(&I, Result);
3092 return 0;
3093}
Bill Wendling74c37652008-12-09 22:08:41 +00003094
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003095/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3096/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003097void
3098SelectionDAGLowering::visitExp(CallInst &I) {
3099 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003100 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003101
3102 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3103 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3104 SDValue Op = getValue(I.getOperand(1));
3105
3106 // Put the exponent in the right bit position for later addition to the
3107 // final result:
3108 //
3109 // #define LOG2OFe 1.4426950f
3110 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003111 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003112 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003113 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003114
3115 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003116 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3117 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003118
3119 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003120 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003121 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003122
3123 if (LimitFloatPrecision <= 6) {
3124 // For floating-point precision of 6:
3125 //
3126 // TwoToFractionalPartOfX =
3127 // 0.997535578f +
3128 // (0.735607626f + 0.252464424f * x) * x;
3129 //
3130 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003131 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003132 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003133 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003134 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003135 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3136 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003137 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003138 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003139
3140 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003141 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003142 TwoToFracPartOfX, IntegerPartOfX);
3143
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003144 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003145 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3146 // For floating-point precision of 12:
3147 //
3148 // TwoToFractionalPartOfX =
3149 // 0.999892986f +
3150 // (0.696457318f +
3151 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3152 //
3153 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003154 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003155 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003156 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003157 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003158 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3159 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003160 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003161 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3162 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003163 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003164 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003165
3166 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003167 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003168 TwoToFracPartOfX, IntegerPartOfX);
3169
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003170 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003171 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3172 // For floating-point precision of 18:
3173 //
3174 // TwoToFractionalPartOfX =
3175 // 0.999999982f +
3176 // (0.693148872f +
3177 // (0.240227044f +
3178 // (0.554906021e-1f +
3179 // (0.961591928e-2f +
3180 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3181 //
3182 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003183 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003184 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003185 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003186 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003187 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3188 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003189 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003190 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3191 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003192 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003193 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3194 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003195 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003196 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3197 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003198 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003199 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3200 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003201 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003202 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003203 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003204
3205 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003206 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003207 TwoToFracPartOfX, IntegerPartOfX);
3208
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003209 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003210 }
3211 } else {
3212 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003213 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003214 getValue(I.getOperand(1)).getValueType(),
3215 getValue(I.getOperand(1)));
3216 }
3217
Dale Johannesen59e577f2008-09-05 18:38:42 +00003218 setValue(&I, result);
3219}
3220
Bill Wendling39150252008-09-09 20:39:27 +00003221/// visitLog - Lower a log intrinsic. Handles the special sequences for
3222/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003223void
3224SelectionDAGLowering::visitLog(CallInst &I) {
3225 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003226 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003227
3228 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3229 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3230 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003231 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003232
3233 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003234 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003235 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003236 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003237
3238 // Get the significand and build it into a floating-point number with
3239 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003240 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003241
3242 if (LimitFloatPrecision <= 6) {
3243 // For floating-point precision of 6:
3244 //
3245 // LogofMantissa =
3246 // -1.1609546f +
3247 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003248 //
Bill Wendling39150252008-09-09 20:39:27 +00003249 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003250 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003251 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003252 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003253 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003254 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3255 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003256 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003257
Scott Michelfdc40a02009-02-17 22:15:04 +00003258 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003259 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003260 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3261 // For floating-point precision of 12:
3262 //
3263 // LogOfMantissa =
3264 // -1.7417939f +
3265 // (2.8212026f +
3266 // (-1.4699568f +
3267 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3268 //
3269 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003270 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003271 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003272 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003273 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003274 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3275 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003276 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003277 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3278 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003279 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003280 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3281 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003282 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003283
Scott Michelfdc40a02009-02-17 22:15:04 +00003284 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003285 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003286 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3287 // For floating-point precision of 18:
3288 //
3289 // LogOfMantissa =
3290 // -2.1072184f +
3291 // (4.2372794f +
3292 // (-3.7029485f +
3293 // (2.2781945f +
3294 // (-0.87823314f +
3295 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3296 //
3297 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003298 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003299 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003300 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003301 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003302 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3303 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003304 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003305 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3306 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003307 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003308 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3309 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003310 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003311 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3312 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003313 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003314 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3315 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003316 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003317
Scott Michelfdc40a02009-02-17 22:15:04 +00003318 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003319 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003320 }
3321 } else {
3322 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003323 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003324 getValue(I.getOperand(1)).getValueType(),
3325 getValue(I.getOperand(1)));
3326 }
3327
Dale Johannesen59e577f2008-09-05 18:38:42 +00003328 setValue(&I, result);
3329}
3330
Bill Wendling3eb59402008-09-09 00:28:24 +00003331/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3332/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003333void
3334SelectionDAGLowering::visitLog2(CallInst &I) {
3335 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003336 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003337
Dale Johannesen853244f2008-09-05 23:49:37 +00003338 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003339 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3340 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003341 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003342
Bill Wendling39150252008-09-09 20:39:27 +00003343 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003344 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003345
3346 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003347 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003348 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003349
Bill Wendling3eb59402008-09-09 00:28:24 +00003350 // Different possible minimax approximations of significand in
3351 // floating-point for various degrees of accuracy over [1,2].
3352 if (LimitFloatPrecision <= 6) {
3353 // For floating-point precision of 6:
3354 //
3355 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3356 //
3357 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003358 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003359 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003360 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003361 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003362 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3363 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003364 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003365
Scott Michelfdc40a02009-02-17 22:15:04 +00003366 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003367 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003368 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3369 // For floating-point precision of 12:
3370 //
3371 // Log2ofMantissa =
3372 // -2.51285454f +
3373 // (4.07009056f +
3374 // (-2.12067489f +
3375 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003376 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003377 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003378 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003379 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003380 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003381 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003382 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3383 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003384 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003385 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3386 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003387 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003388 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3389 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003390 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003391
Scott Michelfdc40a02009-02-17 22:15:04 +00003392 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003393 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003394 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3395 // For floating-point precision of 18:
3396 //
3397 // Log2ofMantissa =
3398 // -3.0400495f +
3399 // (6.1129976f +
3400 // (-5.3420409f +
3401 // (3.2865683f +
3402 // (-1.2669343f +
3403 // (0.27515199f -
3404 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3405 //
3406 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003407 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003408 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003409 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003410 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003411 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3412 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003413 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003414 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3415 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003416 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003417 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3418 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003419 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003420 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3421 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003422 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003423 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3424 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003425 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003426
Scott Michelfdc40a02009-02-17 22:15:04 +00003427 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003428 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003429 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003430 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003431 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003432 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003433 getValue(I.getOperand(1)).getValueType(),
3434 getValue(I.getOperand(1)));
3435 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003436
Dale Johannesen59e577f2008-09-05 18:38:42 +00003437 setValue(&I, result);
3438}
3439
Bill Wendling3eb59402008-09-09 00:28:24 +00003440/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3441/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003442void
3443SelectionDAGLowering::visitLog10(CallInst &I) {
3444 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003445 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003446
Dale Johannesen852680a2008-09-05 21:27:19 +00003447 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003448 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3449 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003450 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003451
Bill Wendling39150252008-09-09 20:39:27 +00003452 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003453 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003454 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003455 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003456
3457 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003458 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003459 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003460
3461 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003462 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003463 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003464 // Log10ofMantissa =
3465 // -0.50419619f +
3466 // (0.60948995f - 0.10380950f * x) * x;
3467 //
3468 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003469 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003470 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003471 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003472 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003473 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3474 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003475 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003476
Scott Michelfdc40a02009-02-17 22:15:04 +00003477 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003478 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003479 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3480 // For floating-point precision of 12:
3481 //
3482 // Log10ofMantissa =
3483 // -0.64831180f +
3484 // (0.91751397f +
3485 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3486 //
3487 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003488 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003489 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003490 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003491 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003492 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3493 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003494 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003495 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3496 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003497 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003498
Scott Michelfdc40a02009-02-17 22:15:04 +00003499 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003500 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003501 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003502 // For floating-point precision of 18:
3503 //
3504 // Log10ofMantissa =
3505 // -0.84299375f +
3506 // (1.5327582f +
3507 // (-1.0688956f +
3508 // (0.49102474f +
3509 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3510 //
3511 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003512 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003513 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003514 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003515 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003516 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3517 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003518 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003519 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3520 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003521 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003522 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3523 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003524 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003525 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3526 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003527 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003528
Scott Michelfdc40a02009-02-17 22:15:04 +00003529 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003530 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003531 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003532 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003533 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003534 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003535 getValue(I.getOperand(1)).getValueType(),
3536 getValue(I.getOperand(1)));
3537 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003538
Dale Johannesen59e577f2008-09-05 18:38:42 +00003539 setValue(&I, result);
3540}
3541
Bill Wendlinge10c8142008-09-09 22:39:21 +00003542/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3543/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003544void
3545SelectionDAGLowering::visitExp2(CallInst &I) {
3546 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003547 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003548
Dale Johannesen601d3c02008-09-05 01:48:15 +00003549 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003550 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3551 SDValue Op = getValue(I.getOperand(1));
3552
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003553 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003554
3555 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003556 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3557 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003558
3559 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003560 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003561 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003562
3563 if (LimitFloatPrecision <= 6) {
3564 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003565 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003566 // TwoToFractionalPartOfX =
3567 // 0.997535578f +
3568 // (0.735607626f + 0.252464424f * x) * x;
3569 //
3570 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003571 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003572 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003573 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003574 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003575 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3576 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003577 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003578 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003579 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003580 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003581
Scott Michelfdc40a02009-02-17 22:15:04 +00003582 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003583 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003584 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3585 // For floating-point precision of 12:
3586 //
3587 // TwoToFractionalPartOfX =
3588 // 0.999892986f +
3589 // (0.696457318f +
3590 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3591 //
3592 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003593 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003594 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003595 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003596 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003597 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3598 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003599 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003600 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3601 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003602 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003603 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003604 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003605 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003606
Scott Michelfdc40a02009-02-17 22:15:04 +00003607 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003608 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003609 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3610 // For floating-point precision of 18:
3611 //
3612 // TwoToFractionalPartOfX =
3613 // 0.999999982f +
3614 // (0.693148872f +
3615 // (0.240227044f +
3616 // (0.554906021e-1f +
3617 // (0.961591928e-2f +
3618 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3619 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003620 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003621 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003622 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003623 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003624 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3625 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003626 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003627 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3628 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003629 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003630 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3631 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003632 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003633 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3634 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003635 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003636 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3637 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003638 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003639 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003640 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003641 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003642
Scott Michelfdc40a02009-02-17 22:15:04 +00003643 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003644 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003645 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003646 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003647 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003648 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003649 getValue(I.getOperand(1)).getValueType(),
3650 getValue(I.getOperand(1)));
3651 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003652
Dale Johannesen601d3c02008-09-05 01:48:15 +00003653 setValue(&I, result);
3654}
3655
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003656/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3657/// limited-precision mode with x == 10.0f.
3658void
3659SelectionDAGLowering::visitPow(CallInst &I) {
3660 SDValue result;
3661 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003662 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003663 bool IsExp10 = false;
3664
3665 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003666 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003667 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3668 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3669 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3670 APFloat Ten(10.0f);
3671 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3672 }
3673 }
3674 }
3675
3676 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3677 SDValue Op = getValue(I.getOperand(2));
3678
3679 // Put the exponent in the right bit position for later addition to the
3680 // final result:
3681 //
3682 // #define LOG2OF10 3.3219281f
3683 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003684 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003685 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003686 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003687
3688 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003689 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3690 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003691
3692 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003693 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003694 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003695
3696 if (LimitFloatPrecision <= 6) {
3697 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003698 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003699 // twoToFractionalPartOfX =
3700 // 0.997535578f +
3701 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003702 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003703 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003704 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003705 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003706 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003707 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003708 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3709 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003710 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003711 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003712 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003713 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003714
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003715 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3716 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003717 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3718 // For floating-point precision of 12:
3719 //
3720 // TwoToFractionalPartOfX =
3721 // 0.999892986f +
3722 // (0.696457318f +
3723 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3724 //
3725 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003726 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003727 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003728 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003729 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003730 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3731 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003732 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003733 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3734 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003735 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003736 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003737 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003738 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003739
Scott Michelfdc40a02009-02-17 22:15:04 +00003740 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003741 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003742 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3743 // For floating-point precision of 18:
3744 //
3745 // TwoToFractionalPartOfX =
3746 // 0.999999982f +
3747 // (0.693148872f +
3748 // (0.240227044f +
3749 // (0.554906021e-1f +
3750 // (0.961591928e-2f +
3751 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3752 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003753 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003754 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003755 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003756 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003757 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3758 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003759 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003760 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3761 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003762 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003763 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3764 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003765 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003766 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3767 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003768 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003769 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3770 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003771 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003772 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003773 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003774 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003775
Scott Michelfdc40a02009-02-17 22:15:04 +00003776 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003777 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003778 }
3779 } else {
3780 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003781 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003782 getValue(I.getOperand(1)).getValueType(),
3783 getValue(I.getOperand(1)),
3784 getValue(I.getOperand(2)));
3785 }
3786
3787 setValue(&I, result);
3788}
3789
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003790/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3791/// we want to emit this as a call to a named external function, return the name
3792/// otherwise lower it and return null.
3793const char *
3794SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003795 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003796 switch (Intrinsic) {
3797 default:
3798 // By default, turn this into a target intrinsic node.
3799 visitTargetIntrinsic(I, Intrinsic);
3800 return 0;
3801 case Intrinsic::vastart: visitVAStart(I); return 0;
3802 case Intrinsic::vaend: visitVAEnd(I); return 0;
3803 case Intrinsic::vacopy: visitVACopy(I); return 0;
3804 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003805 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003806 getValue(I.getOperand(1))));
3807 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003808 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003809 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003810 getValue(I.getOperand(1))));
3811 return 0;
3812 case Intrinsic::setjmp:
3813 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3814 break;
3815 case Intrinsic::longjmp:
3816 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3817 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003818 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003819 SDValue Op1 = getValue(I.getOperand(1));
3820 SDValue Op2 = getValue(I.getOperand(2));
3821 SDValue Op3 = getValue(I.getOperand(3));
3822 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003823 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003824 I.getOperand(1), 0, I.getOperand(2), 0));
3825 return 0;
3826 }
Chris Lattner824b9582008-11-21 16:42:48 +00003827 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003828 SDValue Op1 = getValue(I.getOperand(1));
3829 SDValue Op2 = getValue(I.getOperand(2));
3830 SDValue Op3 = getValue(I.getOperand(3));
3831 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003832 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003833 I.getOperand(1), 0));
3834 return 0;
3835 }
Chris Lattner824b9582008-11-21 16:42:48 +00003836 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003837 SDValue Op1 = getValue(I.getOperand(1));
3838 SDValue Op2 = getValue(I.getOperand(2));
3839 SDValue Op3 = getValue(I.getOperand(3));
3840 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3841
3842 // If the source and destination are known to not be aliases, we can
3843 // lower memmove as memcpy.
3844 uint64_t Size = -1ULL;
3845 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003846 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003847 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3848 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003849 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003850 I.getOperand(1), 0, I.getOperand(2), 0));
3851 return 0;
3852 }
3853
Dale Johannesena04b7572009-02-03 23:04:43 +00003854 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003855 I.getOperand(1), 0, I.getOperand(2), 0));
3856 return 0;
3857 }
3858 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003859 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003860 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003861 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003862 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003863 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003864
Bill Wendling98a366d2009-04-29 23:29:43 +00003865 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003866 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003867 SPI.getLine(),
3868 SPI.getColumn(),
3869 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003870 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003871 return 0;
3872 }
3873 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003874 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003875 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003876 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3877 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003878 unsigned LabelID =
3879 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Devang Patel48c7fa22009-04-13 18:13:16 +00003880 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3881 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003882 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003883 return 0;
3884 }
3885 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003886 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003887 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003888
Devang Patel7e1e31f2009-07-02 22:43:26 +00003889 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3890 || !DW->ShouldEmitDwarfDebug())
3891 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003892
Devang Patel7e1e31f2009-07-02 22:43:26 +00003893 MachineFunction &MF = DAG.getMachineFunction();
3894 DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext()));
3895
3896 if (isInlinedFnEnd(REI, MF.getFunction())) {
3897 // This is end of inlined function. Debugging information for inlined
3898 // function is not handled yet (only supported by FastISel).
3899 if (OptLevel == CodeGenOpt::None) {
3900 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3901 if (ID != 0)
3902 // Returned ID is 0 if this is unbalanced "end of inlined
3903 // scope". This could happen if optimizer eats dbg intrinsics or
3904 // "beginning of inlined scope" is not recoginized due to missing
3905 // location info. In such cases, do ignore this region.end.
3906 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3907 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003908 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003909 return 0;
3910 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003911
Devang Patel7e1e31f2009-07-02 22:43:26 +00003912 unsigned LabelID =
3913 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
3914 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3915 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003916 return 0;
3917 }
3918 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003919 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003920 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003921 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None))
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003922 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003923
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003924 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003925 // This is a beginning of an inlined function.
3926 if (isInlinedFnStart(FSI, MF.getFunction())) {
3927 if (OptLevel != CodeGenOpt::None)
3928 // FIXME: Debugging informaation for inlined function is only
3929 // supported at CodeGenOpt::Node.
3930 return 0;
3931
Bill Wendlingc677fe52009-05-10 00:10:50 +00003932 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003933 // If llvm.dbg.func.start is seen in a new block before any
3934 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3935 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3936 if (PrevLoc.isUnknown())
3937 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003938
Devang Patel7e1e31f2009-07-02 22:43:26 +00003939 // Record the source line.
3940 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3941
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003942 if (!DW || !DW->ShouldEmitDwarfDebug())
3943 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003944 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
3945 DISubprogram SP(cast<GlobalVariable>(FSI.getSubprogram()));
3946 DICompileUnit CU(PrevLocTpl.CompileUnit);
3947 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3948 PrevLocTpl.Line,
3949 PrevLocTpl.Col);
3950 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3951 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003952 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003953 }
3954
Devang Patel07b0ec02009-07-02 00:08:09 +00003955 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003956 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Jeffrey Yasskin32360a72009-07-16 21:07:26 +00003957
3958 if (!DW || !DW->ShouldEmitDwarfDebug())
3959 return 0;
Devang Patel7e1e31f2009-07-02 22:43:26 +00003960 // llvm.dbg.func_start also defines beginning of function scope.
3961 DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003962 return 0;
3963 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003964 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003965 if (OptLevel != CodeGenOpt::None)
3966 // FIXME: Variable debug info is not supported here.
3967 return 0;
3968
3969 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3970 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3971 return 0;
3972
3973 Value *Variable = DI.getVariable();
3974 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
3975 getValue(DI.getAddress()), getValue(Variable)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003976 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003977 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003978 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003979 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003980 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003981 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3982 SDValue Ops[1];
3983 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003984 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003985 setValue(&I, Op);
3986 DAG.setRoot(Op.getValue(1));
3987 return 0;
3988 }
3989
3990 case Intrinsic::eh_selector_i32:
3991 case Intrinsic::eh_selector_i64: {
3992 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3993 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
3994 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003995
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003996 if (MMI) {
3997 if (CurMBB->isLandingPad())
3998 AddCatchInfo(I, MMI, CurMBB);
3999 else {
4000#ifndef NDEBUG
4001 FuncInfo.CatchInfoLost.insert(&I);
4002#endif
4003 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4004 unsigned Reg = TLI.getExceptionSelectorRegister();
4005 if (Reg) CurMBB->addLiveIn(Reg);
4006 }
4007
4008 // Insert the EHSELECTION instruction.
4009 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4010 SDValue Ops[2];
4011 Ops[0] = getValue(I.getOperand(1));
4012 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004013 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004014 setValue(&I, Op);
4015 DAG.setRoot(Op.getValue(1));
4016 } else {
4017 setValue(&I, DAG.getConstant(0, VT));
4018 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004019
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004020 return 0;
4021 }
4022
4023 case Intrinsic::eh_typeid_for_i32:
4024 case Intrinsic::eh_typeid_for_i64: {
4025 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4026 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4027 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004028
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004029 if (MMI) {
4030 // Find the type id for the given typeinfo.
4031 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4032
4033 unsigned TypeID = MMI->getTypeIDFor(GV);
4034 setValue(&I, DAG.getConstant(TypeID, VT));
4035 } else {
4036 // Return something different to eh_selector.
4037 setValue(&I, DAG.getConstant(1, VT));
4038 }
4039
4040 return 0;
4041 }
4042
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004043 case Intrinsic::eh_return_i32:
4044 case Intrinsic::eh_return_i64:
4045 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004046 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004047 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004048 MVT::Other,
4049 getControlRoot(),
4050 getValue(I.getOperand(1)),
4051 getValue(I.getOperand(2))));
4052 } else {
4053 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4054 }
4055
4056 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004057 case Intrinsic::eh_unwind_init:
4058 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4059 MMI->setCallsUnwindInit(true);
4060 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004061
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004062 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004063
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004064 case Intrinsic::eh_dwarf_cfa: {
4065 MVT VT = getValue(I.getOperand(1)).getValueType();
4066 SDValue CfaArg;
4067 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004068 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004069 TLI.getPointerTy(), getValue(I.getOperand(1)));
4070 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004071 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004072 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004073
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004074 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004075 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004076 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004077 TLI.getPointerTy()),
4078 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004079 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004080 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004081 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004082 TLI.getPointerTy(),
4083 DAG.getConstant(0,
4084 TLI.getPointerTy())),
4085 Offset));
4086 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004087 }
4088
Mon P Wang77cdf302008-11-10 20:54:11 +00004089 case Intrinsic::convertff:
4090 case Intrinsic::convertfsi:
4091 case Intrinsic::convertfui:
4092 case Intrinsic::convertsif:
4093 case Intrinsic::convertuif:
4094 case Intrinsic::convertss:
4095 case Intrinsic::convertsu:
4096 case Intrinsic::convertus:
4097 case Intrinsic::convertuu: {
4098 ISD::CvtCode Code = ISD::CVT_INVALID;
4099 switch (Intrinsic) {
4100 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4101 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4102 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4103 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4104 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4105 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4106 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4107 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4108 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4109 }
4110 MVT DestVT = TLI.getValueType(I.getType());
4111 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004112 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004113 DAG.getValueType(DestVT),
4114 DAG.getValueType(getValue(Op1).getValueType()),
4115 getValue(I.getOperand(2)),
4116 getValue(I.getOperand(3)),
4117 Code));
4118 return 0;
4119 }
4120
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004121 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004122 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004123 getValue(I.getOperand(1)).getValueType(),
4124 getValue(I.getOperand(1))));
4125 return 0;
4126 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004127 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004128 getValue(I.getOperand(1)).getValueType(),
4129 getValue(I.getOperand(1)),
4130 getValue(I.getOperand(2))));
4131 return 0;
4132 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004133 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004134 getValue(I.getOperand(1)).getValueType(),
4135 getValue(I.getOperand(1))));
4136 return 0;
4137 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004138 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004139 getValue(I.getOperand(1)).getValueType(),
4140 getValue(I.getOperand(1))));
4141 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004142 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004143 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004144 return 0;
4145 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004146 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004147 return 0;
4148 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004149 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004150 return 0;
4151 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004152 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004153 return 0;
4154 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004155 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004156 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004157 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004158 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004159 return 0;
4160 case Intrinsic::pcmarker: {
4161 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004162 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004163 return 0;
4164 }
4165 case Intrinsic::readcyclecounter: {
4166 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004167 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004168 DAG.getVTList(MVT::i64, MVT::Other),
4169 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004170 setValue(&I, Tmp);
4171 DAG.setRoot(Tmp.getValue(1));
4172 return 0;
4173 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004174 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004175 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004176 getValue(I.getOperand(1)).getValueType(),
4177 getValue(I.getOperand(1))));
4178 return 0;
4179 case Intrinsic::cttz: {
4180 SDValue Arg = getValue(I.getOperand(1));
4181 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004182 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004183 setValue(&I, result);
4184 return 0;
4185 }
4186 case Intrinsic::ctlz: {
4187 SDValue Arg = getValue(I.getOperand(1));
4188 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004189 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004190 setValue(&I, result);
4191 return 0;
4192 }
4193 case Intrinsic::ctpop: {
4194 SDValue Arg = getValue(I.getOperand(1));
4195 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004196 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004197 setValue(&I, result);
4198 return 0;
4199 }
4200 case Intrinsic::stacksave: {
4201 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004202 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004203 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004204 setValue(&I, Tmp);
4205 DAG.setRoot(Tmp.getValue(1));
4206 return 0;
4207 }
4208 case Intrinsic::stackrestore: {
4209 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004210 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004211 return 0;
4212 }
Bill Wendling57344502008-11-18 11:01:33 +00004213 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004214 // Emit code into the DAG to store the stack guard onto the stack.
4215 MachineFunction &MF = DAG.getMachineFunction();
4216 MachineFrameInfo *MFI = MF.getFrameInfo();
4217 MVT PtrTy = TLI.getPointerTy();
4218
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004219 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4220 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004221
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004222 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004223 MFI->setStackProtectorIndex(FI);
4224
4225 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4226
4227 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004228 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004229 PseudoSourceValue::getFixedStack(FI),
4230 0, true);
4231 setValue(&I, Result);
4232 DAG.setRoot(Result);
4233 return 0;
4234 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004235 case Intrinsic::var_annotation:
4236 // Discard annotate attributes
4237 return 0;
4238
4239 case Intrinsic::init_trampoline: {
4240 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4241
4242 SDValue Ops[6];
4243 Ops[0] = getRoot();
4244 Ops[1] = getValue(I.getOperand(1));
4245 Ops[2] = getValue(I.getOperand(2));
4246 Ops[3] = getValue(I.getOperand(3));
4247 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4248 Ops[5] = DAG.getSrcValue(F);
4249
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004250 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004251 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
4252 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004253
4254 setValue(&I, Tmp);
4255 DAG.setRoot(Tmp.getValue(1));
4256 return 0;
4257 }
4258
4259 case Intrinsic::gcroot:
4260 if (GFI) {
4261 Value *Alloca = I.getOperand(1);
4262 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004263
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004264 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4265 GFI->addStackRoot(FI->getIndex(), TypeMap);
4266 }
4267 return 0;
4268
4269 case Intrinsic::gcread:
4270 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004271 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004272 return 0;
4273
4274 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004275 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004276 return 0;
4277 }
4278
4279 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004280 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004281 return 0;
4282 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004283
Bill Wendlingef375462008-11-21 02:38:44 +00004284 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004285 return implVisitAluOverflow(I, ISD::UADDO);
4286 case Intrinsic::sadd_with_overflow:
4287 return implVisitAluOverflow(I, ISD::SADDO);
4288 case Intrinsic::usub_with_overflow:
4289 return implVisitAluOverflow(I, ISD::USUBO);
4290 case Intrinsic::ssub_with_overflow:
4291 return implVisitAluOverflow(I, ISD::SSUBO);
4292 case Intrinsic::umul_with_overflow:
4293 return implVisitAluOverflow(I, ISD::UMULO);
4294 case Intrinsic::smul_with_overflow:
4295 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004296
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004297 case Intrinsic::prefetch: {
4298 SDValue Ops[4];
4299 Ops[0] = getRoot();
4300 Ops[1] = getValue(I.getOperand(1));
4301 Ops[2] = getValue(I.getOperand(2));
4302 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004303 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004304 return 0;
4305 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004306
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004307 case Intrinsic::memory_barrier: {
4308 SDValue Ops[6];
4309 Ops[0] = getRoot();
4310 for (int x = 1; x < 6; ++x)
4311 Ops[x] = getValue(I.getOperand(x));
4312
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004313 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004314 return 0;
4315 }
4316 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004317 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004318 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004319 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004320 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4321 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004322 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004323 getValue(I.getOperand(2)),
4324 getValue(I.getOperand(3)),
4325 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004326 setValue(&I, L);
4327 DAG.setRoot(L.getValue(1));
4328 return 0;
4329 }
4330 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004331 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004332 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004333 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004334 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004335 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004336 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004337 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004339 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004340 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004341 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004342 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004343 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004344 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004345 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004346 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004348 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004349 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004350 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004351 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004352 }
4353}
4354
4355
4356void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4357 bool IsTailCall,
4358 MachineBasicBlock *LandingPad) {
4359 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4360 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4361 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4362 unsigned BeginLabel = 0, EndLabel = 0;
4363
4364 TargetLowering::ArgListTy Args;
4365 TargetLowering::ArgListEntry Entry;
4366 Args.reserve(CS.arg_size());
4367 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4368 i != e; ++i) {
4369 SDValue ArgNode = getValue(*i);
4370 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4371
4372 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004373 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4374 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4375 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4376 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4377 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4378 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004379 Entry.Alignment = CS.getParamAlignment(attrInd);
4380 Args.push_back(Entry);
4381 }
4382
4383 if (LandingPad && MMI) {
4384 // Insert a label before the invoke call to mark the try range. This can be
4385 // used to detect deletion of the invoke via the MachineModuleInfo.
4386 BeginLabel = MMI->NextLabelID();
4387 // Both PendingLoads and PendingExports must be flushed here;
4388 // this call might not return.
4389 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004390 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4391 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004392 }
4393
4394 std::pair<SDValue,SDValue> Result =
4395 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004396 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004397 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004398 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004399 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004400 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004401 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004402 if (CS.getType() != Type::VoidTy)
4403 setValue(CS.getInstruction(), Result.first);
4404 DAG.setRoot(Result.second);
4405
4406 if (LandingPad && MMI) {
4407 // Insert a label at the end of the invoke call to mark the try range. This
4408 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4409 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004410 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4411 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004412
4413 // Inform MachineModuleInfo of range.
4414 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4415 }
4416}
4417
4418
4419void SelectionDAGLowering::visitCall(CallInst &I) {
4420 const char *RenameFn = 0;
4421 if (Function *F = I.getCalledFunction()) {
4422 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004423 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4424 if (II) {
4425 if (unsigned IID = II->getIntrinsicID(F)) {
4426 RenameFn = visitIntrinsicCall(I, IID);
4427 if (!RenameFn)
4428 return;
4429 }
4430 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004431 if (unsigned IID = F->getIntrinsicID()) {
4432 RenameFn = visitIntrinsicCall(I, IID);
4433 if (!RenameFn)
4434 return;
4435 }
4436 }
4437
4438 // Check for well-known libc/libm calls. If the function is internal, it
4439 // can't be a library call.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004440 if (!F->hasLocalLinkage() && F->hasName()) {
4441 StringRef Name = F->getName();
4442 if (Name == "copysign" || Name == "copysignf") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004443 if (I.getNumOperands() == 3 && // Basic sanity checks.
4444 I.getOperand(1)->getType()->isFloatingPoint() &&
4445 I.getType() == I.getOperand(1)->getType() &&
4446 I.getType() == I.getOperand(2)->getType()) {
4447 SDValue LHS = getValue(I.getOperand(1));
4448 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004449 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004450 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004451 return;
4452 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004453 } else if (Name == "fabs" || Name == "fabsf" || Name == "fabsl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004454 if (I.getNumOperands() == 2 && // Basic sanity checks.
4455 I.getOperand(1)->getType()->isFloatingPoint() &&
4456 I.getType() == I.getOperand(1)->getType()) {
4457 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004458 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004459 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004460 return;
4461 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004462 } else if (Name == "sin" || Name == "sinf" || Name == "sinl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004463 if (I.getNumOperands() == 2 && // Basic sanity checks.
4464 I.getOperand(1)->getType()->isFloatingPoint() &&
4465 I.getType() == I.getOperand(1)->getType()) {
4466 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004467 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004468 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004469 return;
4470 }
Daniel Dunbarf0443c12009-07-26 08:34:35 +00004471 } else if (Name == "cos" || Name == "cosf" || Name == "cosl") {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004472 if (I.getNumOperands() == 2 && // Basic sanity checks.
4473 I.getOperand(1)->getType()->isFloatingPoint() &&
4474 I.getType() == I.getOperand(1)->getType()) {
4475 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004476 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004477 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004478 return;
4479 }
4480 }
4481 }
4482 } else if (isa<InlineAsm>(I.getOperand(0))) {
4483 visitInlineAsm(&I);
4484 return;
4485 }
4486
4487 SDValue Callee;
4488 if (!RenameFn)
4489 Callee = getValue(I.getOperand(0));
4490 else
Bill Wendling056292f2008-09-16 21:48:12 +00004491 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004492
4493 LowerCallTo(&I, Callee, I.isTailCall());
4494}
4495
4496
4497/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004498/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004499/// Chain/Flag as the input and updates them for the output Chain/Flag.
4500/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004501SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004502 SDValue &Chain,
4503 SDValue *Flag) const {
4504 // Assemble the legal parts into the final values.
4505 SmallVector<SDValue, 4> Values(ValueVTs.size());
4506 SmallVector<SDValue, 8> Parts;
4507 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4508 // Copy the legal parts from the registers.
4509 MVT ValueVT = ValueVTs[Value];
4510 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4511 MVT RegisterVT = RegVTs[Value];
4512
4513 Parts.resize(NumRegs);
4514 for (unsigned i = 0; i != NumRegs; ++i) {
4515 SDValue P;
4516 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004517 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004518 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004519 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004520 *Flag = P.getValue(2);
4521 }
4522 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004523
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004524 // If the source register was virtual and if we know something about it,
4525 // add an assert node.
4526 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4527 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4528 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4529 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4530 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4531 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004532
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004533 unsigned RegSize = RegisterVT.getSizeInBits();
4534 unsigned NumSignBits = LOI.NumSignBits;
4535 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004536
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004537 // FIXME: We capture more information than the dag can represent. For
4538 // now, just use the tightest assertzext/assertsext possible.
4539 bool isSExt = true;
4540 MVT FromVT(MVT::Other);
4541 if (NumSignBits == RegSize)
4542 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4543 else if (NumZeroBits >= RegSize-1)
4544 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4545 else if (NumSignBits > RegSize-8)
4546 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004547 else if (NumZeroBits >= RegSize-8)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004548 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4549 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004550 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004551 else if (NumZeroBits >= RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004552 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004553 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004554 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004555 else if (NumZeroBits >= RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004556 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004557
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004558 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004559 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004560 RegisterVT, P, DAG.getValueType(FromVT));
4561
4562 }
4563 }
4564 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004565
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004566 Parts[i] = P;
4567 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004568
Scott Michelfdc40a02009-02-17 22:15:04 +00004569 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004570 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004571 Part += NumRegs;
4572 Parts.clear();
4573 }
4574
Dale Johannesen66978ee2009-01-31 02:22:37 +00004575 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004576 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4577 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004578}
4579
4580/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004581/// specified value into the registers specified by this object. 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 +00004584void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004585 SDValue &Chain, SDValue *Flag) const {
4586 // Get the list of the values's legal parts.
4587 unsigned NumRegs = Regs.size();
4588 SmallVector<SDValue, 8> Parts(NumRegs);
4589 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4590 MVT ValueVT = ValueVTs[Value];
4591 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4592 MVT RegisterVT = RegVTs[Value];
4593
Dale Johannesen66978ee2009-01-31 02:22:37 +00004594 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004595 &Parts[Part], NumParts, RegisterVT);
4596 Part += NumParts;
4597 }
4598
4599 // Copy the parts into the registers.
4600 SmallVector<SDValue, 8> Chains(NumRegs);
4601 for (unsigned i = 0; i != NumRegs; ++i) {
4602 SDValue Part;
4603 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004604 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004605 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004606 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004607 *Flag = Part.getValue(1);
4608 }
4609 Chains[i] = Part.getValue(0);
4610 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004611
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004612 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004613 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004614 // flagged to it. That is the CopyToReg nodes and the user are considered
4615 // a single scheduling unit. If we create a TokenFactor and return it as
4616 // chain, then the TokenFactor is both a predecessor (operand) of the
4617 // user as well as a successor (the TF operands are flagged to the user).
4618 // c1, f1 = CopyToReg
4619 // c2, f2 = CopyToReg
4620 // c3 = TokenFactor c1, c2
4621 // ...
4622 // = op c3, ..., f2
4623 Chain = Chains[NumRegs-1];
4624 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004625 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004626}
4627
4628/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004629/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004630/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004631void RegsForValue::AddInlineAsmOperands(unsigned Code,
4632 bool HasMatching,unsigned MatchingIdx,
4633 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004634 std::vector<SDValue> &Ops) const {
4635 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004636 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4637 unsigned Flag = Code | (Regs.size() << 3);
4638 if (HasMatching)
4639 Flag |= 0x80000000 | (MatchingIdx << 16);
4640 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004641 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4642 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4643 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004644 for (unsigned i = 0; i != NumRegs; ++i) {
4645 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004646 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004647 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004648 }
4649}
4650
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004651/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004652/// i.e. it isn't a stack pointer or some other special register, return the
4653/// register class for the register. Otherwise, return null.
4654static const TargetRegisterClass *
4655isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4656 const TargetLowering &TLI,
4657 const TargetRegisterInfo *TRI) {
4658 MVT FoundVT = MVT::Other;
4659 const TargetRegisterClass *FoundRC = 0;
4660 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4661 E = TRI->regclass_end(); RCI != E; ++RCI) {
4662 MVT ThisVT = MVT::Other;
4663
4664 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004665 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004666 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4667 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4668 I != E; ++I) {
4669 if (TLI.isTypeLegal(*I)) {
4670 // If we have already found this register in a different register class,
4671 // choose the one with the largest VT specified. For example, on
4672 // PowerPC, we favor f64 register classes over f32.
4673 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4674 ThisVT = *I;
4675 break;
4676 }
4677 }
4678 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004679
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004680 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004681
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004682 // NOTE: This isn't ideal. In particular, this might allocate the
4683 // frame pointer in functions that need it (due to them not being taken
4684 // out of allocation, because a variable sized allocation hasn't been seen
4685 // yet). This is a slight code pessimization, but should still work.
4686 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4687 E = RC->allocation_order_end(MF); I != E; ++I)
4688 if (*I == Reg) {
4689 // We found a matching register class. Keep looking at others in case
4690 // we find one with larger registers that this physreg is also in.
4691 FoundRC = RC;
4692 FoundVT = ThisVT;
4693 break;
4694 }
4695 }
4696 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004697}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004698
4699
4700namespace llvm {
4701/// AsmOperandInfo - This contains information for each constraint that we are
4702/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004703class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004704 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004705public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004706 /// CallOperand - If this is the result output operand or a clobber
4707 /// this is null, otherwise it is the incoming operand to the CallInst.
4708 /// This gets modified as the asm is processed.
4709 SDValue CallOperand;
4710
4711 /// AssignedRegs - If this is a register or register class operand, this
4712 /// contains the set of register corresponding to the operand.
4713 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004714
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004715 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4716 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4717 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004718
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004719 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4720 /// busy in OutputRegs/InputRegs.
4721 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004722 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004723 std::set<unsigned> &InputRegs,
4724 const TargetRegisterInfo &TRI) const {
4725 if (isOutReg) {
4726 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4727 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4728 }
4729 if (isInReg) {
4730 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4731 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4732 }
4733 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004734
Chris Lattner81249c92008-10-17 17:05:25 +00004735 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4736 /// corresponds to. If there is no Value* for this operand, it returns
4737 /// MVT::Other.
4738 MVT getCallOperandValMVT(const TargetLowering &TLI,
4739 const TargetData *TD) const {
4740 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004741
Chris Lattner81249c92008-10-17 17:05:25 +00004742 if (isa<BasicBlock>(CallOperandVal))
4743 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004744
Chris Lattner81249c92008-10-17 17:05:25 +00004745 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004746
Chris Lattner81249c92008-10-17 17:05:25 +00004747 // If this is an indirect operand, the operand is a pointer to the
4748 // accessed type.
4749 if (isIndirect)
4750 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004751
Chris Lattner81249c92008-10-17 17:05:25 +00004752 // If OpTy is not a single value, it may be a struct/union that we
4753 // can tile with integers.
4754 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4755 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4756 switch (BitSize) {
4757 default: break;
4758 case 1:
4759 case 8:
4760 case 16:
4761 case 32:
4762 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004763 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004764 OpTy = IntegerType::get(BitSize);
4765 break;
4766 }
4767 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004768
Chris Lattner81249c92008-10-17 17:05:25 +00004769 return TLI.getValueType(OpTy, true);
4770 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004771
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004772private:
4773 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4774 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004775 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004776 const TargetRegisterInfo &TRI) {
4777 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4778 Regs.insert(Reg);
4779 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4780 for (; *Aliases; ++Aliases)
4781 Regs.insert(*Aliases);
4782 }
4783};
4784} // end llvm namespace.
4785
4786
4787/// GetRegistersForValue - Assign registers (virtual or physical) for the
4788/// specified operand. We prefer to assign virtual registers, to allow the
4789/// register allocator handle the assignment process. However, if the asm uses
4790/// features that we can't model on machineinstrs, we have SDISel do the
4791/// allocation. This produces generally horrible, but correct, code.
4792///
4793/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004794/// Input and OutputRegs are the set of already allocated physical registers.
4795///
4796void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004797GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004798 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004799 std::set<unsigned> &InputRegs) {
4800 // Compute whether this value requires an input register, an output register,
4801 // or both.
4802 bool isOutReg = false;
4803 bool isInReg = false;
4804 switch (OpInfo.Type) {
4805 case InlineAsm::isOutput:
4806 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004807
4808 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004809 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004810 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004811 break;
4812 case InlineAsm::isInput:
4813 isInReg = true;
4814 isOutReg = false;
4815 break;
4816 case InlineAsm::isClobber:
4817 isOutReg = true;
4818 isInReg = true;
4819 break;
4820 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004821
4822
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004823 MachineFunction &MF = DAG.getMachineFunction();
4824 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004825
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004826 // If this is a constraint for a single physreg, or a constraint for a
4827 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004828 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004829 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4830 OpInfo.ConstraintVT);
4831
4832 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004833 if (OpInfo.ConstraintVT != MVT::Other) {
4834 // If this is a FP input in an integer register (or visa versa) insert a bit
4835 // cast of the input value. More generally, handle any case where the input
4836 // value disagrees with the register class we plan to stick this in.
4837 if (OpInfo.Type == InlineAsm::isInput &&
4838 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4839 // Try to convert to the first MVT that the reg class contains. If the
4840 // types are identical size, use a bitcast to convert (e.g. two differing
4841 // vector types).
4842 MVT RegVT = *PhysReg.second->vt_begin();
4843 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004844 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004845 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004846 OpInfo.ConstraintVT = RegVT;
4847 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4848 // If the input is a FP value and we want it in FP registers, do a
4849 // bitcast to the corresponding integer type. This turns an f64 value
4850 // into i64, which can be passed with two i32 values on a 32-bit
4851 // machine.
4852 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004853 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004854 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004855 OpInfo.ConstraintVT = RegVT;
4856 }
4857 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004858
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004859 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004860 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004861
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004862 MVT RegVT;
4863 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004864
4865 // If this is a constraint for a specific physical register, like {r17},
4866 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004867 if (unsigned AssignedReg = PhysReg.first) {
4868 const TargetRegisterClass *RC = PhysReg.second;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004869 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004870 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004871
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004872 // Get the actual register value type. This is important, because the user
4873 // may have asked for (e.g.) the AX register in i32 type. We need to
4874 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004875 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004876
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004877 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004878 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004879
4880 // If this is an expanded reference, add the rest of the regs to Regs.
4881 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004882 TargetRegisterClass::iterator I = RC->begin();
4883 for (; *I != AssignedReg; ++I)
4884 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004885
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004886 // Already added the first reg.
4887 --NumRegs; ++I;
4888 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004889 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004890 Regs.push_back(*I);
4891 }
4892 }
4893 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4894 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4895 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4896 return;
4897 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004898
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004899 // Otherwise, if this was a reference to an LLVM register class, create vregs
4900 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00004901 if (const TargetRegisterClass *RC = PhysReg.second) {
4902 RegVT = *RC->vt_begin();
Evan Chengfb112882009-03-23 08:01:15 +00004903 if (OpInfo.ConstraintVT == MVT::Other)
4904 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004905
Evan Chengfb112882009-03-23 08:01:15 +00004906 // Create the appropriate number of virtual registers.
4907 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4908 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00004909 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004910
Evan Chengfb112882009-03-23 08:01:15 +00004911 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4912 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004913 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004914
4915 // This is a reference to a register class that doesn't directly correspond
4916 // to an LLVM register class. Allocate NumRegs consecutive, available,
4917 // registers from the class.
4918 std::vector<unsigned> RegClassRegs
4919 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4920 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004921
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004922 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4923 unsigned NumAllocated = 0;
4924 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4925 unsigned Reg = RegClassRegs[i];
4926 // See if this register is available.
4927 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4928 (isInReg && InputRegs.count(Reg))) { // Already used.
4929 // Make sure we find consecutive registers.
4930 NumAllocated = 0;
4931 continue;
4932 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004933
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004934 // Check to see if this register is allocatable (i.e. don't give out the
4935 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004936 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4937 if (!RC) { // Couldn't allocate this register.
4938 // Reset NumAllocated to make sure we return consecutive registers.
4939 NumAllocated = 0;
4940 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004941 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004942
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004943 // Okay, this register is good, we can use it.
4944 ++NumAllocated;
4945
4946 // If we allocated enough consecutive registers, succeed.
4947 if (NumAllocated == NumRegs) {
4948 unsigned RegStart = (i-NumAllocated)+1;
4949 unsigned RegEnd = i+1;
4950 // Mark all of the allocated registers used.
4951 for (unsigned i = RegStart; i != RegEnd; ++i)
4952 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004953
4954 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004955 OpInfo.ConstraintVT);
4956 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4957 return;
4958 }
4959 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004960
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004961 // Otherwise, we couldn't allocate enough registers for this.
4962}
4963
Evan Chengda43bcf2008-09-24 00:05:32 +00004964/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
4965/// processed uses a memory 'm' constraint.
4966static bool
4967hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00004968 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00004969 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
4970 InlineAsm::ConstraintInfo &CI = CInfos[i];
4971 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
4972 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
4973 if (CType == TargetLowering::C_Memory)
4974 return true;
4975 }
Chris Lattner6c147292009-04-30 00:48:50 +00004976
4977 // Indirect operand accesses access memory.
4978 if (CI.isIndirect)
4979 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00004980 }
4981
4982 return false;
4983}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004984
4985/// visitInlineAsm - Handle a call to an InlineAsm object.
4986///
4987void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4988 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
4989
4990 /// ConstraintOperands - Information about all of the constraints.
4991 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004992
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004993 std::set<unsigned> OutputRegs, InputRegs;
4994
4995 // Do a prepass over the constraints, canonicalizing them, and building up the
4996 // ConstraintOperands list.
4997 std::vector<InlineAsm::ConstraintInfo>
4998 ConstraintInfos = IA->ParseConstraints();
4999
Evan Chengda43bcf2008-09-24 00:05:32 +00005000 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005001
5002 SDValue Chain, Flag;
5003
5004 // We won't need to flush pending loads if this asm doesn't touch
5005 // memory and is nonvolatile.
5006 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005007 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005008 else
5009 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005010
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005011 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5012 unsigned ResNo = 0; // ResNo - The result number of the next output.
5013 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5014 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5015 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005016
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005017 MVT OpVT = MVT::Other;
5018
5019 // Compute the value type for each operand.
5020 switch (OpInfo.Type) {
5021 case InlineAsm::isOutput:
5022 // Indirect outputs just consume an argument.
5023 if (OpInfo.isIndirect) {
5024 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5025 break;
5026 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005027
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005028 // The return value of the call is this value. As such, there is no
5029 // corresponding argument.
5030 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5031 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5032 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5033 } else {
5034 assert(ResNo == 0 && "Asm only has one result!");
5035 OpVT = TLI.getValueType(CS.getType());
5036 }
5037 ++ResNo;
5038 break;
5039 case InlineAsm::isInput:
5040 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5041 break;
5042 case InlineAsm::isClobber:
5043 // Nothing to do.
5044 break;
5045 }
5046
5047 // If this is an input or an indirect output, process the call argument.
5048 // BasicBlocks are labels, currently appearing only in asm's.
5049 if (OpInfo.CallOperandVal) {
Dale Johannesen5339c552009-07-20 23:27:39 +00005050 // Strip bitcasts, if any. This mostly comes up for functions.
5051 ConstantExpr* CE = NULL;
5052 while ((CE = dyn_cast<ConstantExpr>(OpInfo.CallOperandVal)) &&
5053 CE->getOpcode()==Instruction::BitCast)
5054 OpInfo.CallOperandVal = CE->getOperand(0);
Chris Lattner81249c92008-10-17 17:05:25 +00005055 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005056 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005057 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005058 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005059 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005060
Chris Lattner81249c92008-10-17 17:05:25 +00005061 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005062 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005063
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005064 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005065 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005066
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005067 // Second pass over the constraints: compute which constraint option to use
5068 // and assign registers to constraints that want a specific physreg.
5069 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5070 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005071
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005072 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005073 // matching input. If their types mismatch, e.g. one is an integer, the
5074 // other is floating point, or their sizes are different, flag it as an
5075 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005076 if (OpInfo.hasMatchingInput()) {
5077 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5078 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005079 if ((OpInfo.ConstraintVT.isInteger() !=
5080 Input.ConstraintVT.isInteger()) ||
5081 (OpInfo.ConstraintVT.getSizeInBits() !=
5082 Input.ConstraintVT.getSizeInBits())) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005083 llvm_report_error("llvm: error: Unsupported asm: input constraint"
5084 " with a matching output constraint of incompatible"
5085 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005086 }
5087 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005088 }
5089 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005090
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005091 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005092 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005093
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005094 // If this is a memory input, and if the operand is not indirect, do what we
5095 // need to to provide an address for the memory input.
5096 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5097 !OpInfo.isIndirect) {
5098 assert(OpInfo.Type == InlineAsm::isInput &&
5099 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005100
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005101 // Memory operands really want the address of the value. If we don't have
5102 // an indirect input, put it in the constpool if we can, otherwise spill
5103 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005104
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005105 // If the operand is a float, integer, or vector constant, spill to a
5106 // constant pool entry to get its address.
5107 Value *OpVal = OpInfo.CallOperandVal;
5108 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5109 isa<ConstantVector>(OpVal)) {
5110 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5111 TLI.getPointerTy());
5112 } else {
5113 // Otherwise, create a stack slot and emit a store to it before the
5114 // asm.
5115 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005116 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005117 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5118 MachineFunction &MF = DAG.getMachineFunction();
5119 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5120 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005121 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005122 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005123 OpInfo.CallOperand = StackSlot;
5124 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005125
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005126 // There is no longer a Value* corresponding to this operand.
5127 OpInfo.CallOperandVal = 0;
5128 // It is now an indirect operand.
5129 OpInfo.isIndirect = true;
5130 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005131
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005132 // If this constraint is for a specific register, allocate it before
5133 // anything else.
5134 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005135 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005136 }
5137 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005138
5139
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005140 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005141 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005142 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5143 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005144
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005145 // C_Register operands have already been allocated, Other/Memory don't need
5146 // to be.
5147 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005148 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005149 }
5150
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005151 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5152 std::vector<SDValue> AsmNodeOperands;
5153 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5154 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005155 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005156
5157
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005158 // Loop over all of the inputs, copying the operand values into the
5159 // appropriate registers and processing the output regs.
5160 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005161
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005162 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5163 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005164
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005165 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5166 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5167
5168 switch (OpInfo.Type) {
5169 case InlineAsm::isOutput: {
5170 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5171 OpInfo.ConstraintType != TargetLowering::C_Register) {
5172 // Memory output, or 'other' output (e.g. 'X' constraint).
5173 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5174
5175 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005176 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5177 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005178 TLI.getPointerTy()));
5179 AsmNodeOperands.push_back(OpInfo.CallOperand);
5180 break;
5181 }
5182
5183 // Otherwise, this is a register or register class output.
5184
5185 // Copy the output from the appropriate register. Find a register that
5186 // we can use.
5187 if (OpInfo.AssignedRegs.Regs.empty()) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005188 llvm_report_error("llvm: error: Couldn't allocate output reg for"
5189 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005190 }
5191
5192 // If this is an indirect operand, store through the pointer after the
5193 // asm.
5194 if (OpInfo.isIndirect) {
5195 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5196 OpInfo.CallOperandVal));
5197 } else {
5198 // This is the result value of the call.
5199 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5200 // Concatenate this output onto the outputs list.
5201 RetValRegs.append(OpInfo.AssignedRegs);
5202 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005203
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005204 // Add information to the INLINEASM node to know that this register is
5205 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005206 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5207 6 /* EARLYCLOBBER REGDEF */ :
5208 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005209 false,
5210 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005211 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005212 break;
5213 }
5214 case InlineAsm::isInput: {
5215 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005216
Chris Lattner6bdcda32008-10-17 16:47:46 +00005217 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005218 // If this is required to match an output register we have already set,
5219 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005220 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005221
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005222 // Scan until we find the definition we already emitted of this operand.
5223 // When we find it, create a RegsForValue operand.
5224 unsigned CurOp = 2; // The first operand.
5225 for (; OperandNo; --OperandNo) {
5226 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005227 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005228 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005229 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5230 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5231 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005232 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005233 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005234 }
5235
Evan Cheng697cbbf2009-03-20 18:03:34 +00005236 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005237 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005238 if ((OpFlag & 7) == 2 /*REGDEF*/
5239 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5240 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005241 if (OpInfo.isIndirect) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005242 llvm_report_error("llvm: error: "
5243 "Don't know how to handle tied indirect "
5244 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005245 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005246 RegsForValue MatchedRegs;
5247 MatchedRegs.TLI = &TLI;
5248 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Evan Chengfb112882009-03-23 08:01:15 +00005249 MVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
5250 MatchedRegs.RegVTs.push_back(RegVT);
5251 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005252 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005253 i != e; ++i)
5254 MatchedRegs.Regs.
5255 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005256
5257 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005258 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5259 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005260 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5261 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005262 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005263 break;
5264 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005265 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5266 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5267 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005268 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005269 // See InlineAsm.h isUseOperandTiedToDef.
5270 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005271 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005272 TLI.getPointerTy()));
5273 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5274 break;
5275 }
5276 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005277
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005278 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005279 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005280 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005281
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005282 std::vector<SDValue> Ops;
5283 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005284 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005285 if (Ops.empty()) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005286 llvm_report_error("llvm: error: Invalid operand for inline asm"
5287 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005288 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005289
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005290 // Add information to the INLINEASM node to know about this input.
5291 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005292 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005293 TLI.getPointerTy()));
5294 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5295 break;
5296 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5297 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5298 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5299 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005300
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005301 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005302 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5303 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005304 TLI.getPointerTy()));
5305 AsmNodeOperands.push_back(InOperandVal);
5306 break;
5307 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005308
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005309 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5310 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5311 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005312 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005313 "Don't know how to handle indirect register inputs yet!");
5314
5315 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005316 if (OpInfo.AssignedRegs.Regs.empty()) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005317 llvm_report_error("llvm: error: Couldn't allocate input reg for"
5318 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005319 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005320
Dale Johannesen66978ee2009-01-31 02:22:37 +00005321 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5322 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005323
Evan Cheng697cbbf2009-03-20 18:03:34 +00005324 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005325 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005326 break;
5327 }
5328 case InlineAsm::isClobber: {
5329 // Add the clobbered value to the operand list, so that the register
5330 // allocator is aware that the physreg got clobbered.
5331 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005332 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005333 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005334 break;
5335 }
5336 }
5337 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005338
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005339 // Finish up input operands.
5340 AsmNodeOperands[0] = Chain;
5341 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005342
Dale Johannesen66978ee2009-01-31 02:22:37 +00005343 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00005344 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005345 &AsmNodeOperands[0], AsmNodeOperands.size());
5346 Flag = Chain.getValue(1);
5347
5348 // If this asm returns a register value, copy the result from that register
5349 // and set it as the value of the call.
5350 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005351 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005352 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005353
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005354 // FIXME: Why don't we do this for inline asms with MRVs?
5355 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5356 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005357
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005358 // If any of the results of the inline asm is a vector, it may have the
5359 // wrong width/num elts. This can happen for register classes that can
5360 // contain multiple different value types. The preg or vreg allocated may
5361 // not have the same VT as was expected. Convert it to the right type
5362 // with bit_convert.
5363 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005364 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005365 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005366
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005367 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005368 ResultType.isInteger() && Val.getValueType().isInteger()) {
5369 // If a result value was tied to an input value, the computed result may
5370 // have a wider width than the expected result. Extract the relevant
5371 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005372 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005373 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005374
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005375 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005376 }
Dan Gohman95915732008-10-18 01:03:45 +00005377
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005378 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005379 // Don't need to use this as a chain in this case.
5380 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5381 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005382 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005383
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005384 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005385
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005386 // Process indirect outputs, first output all of the flagged copies out of
5387 // physregs.
5388 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5389 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5390 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005391 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5392 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005393 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005394
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005395 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005396
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005397 // Emit the non-flagged stores from the physregs.
5398 SmallVector<SDValue, 8> OutChains;
5399 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005400 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005401 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005402 getValue(StoresToEmit[i].second),
5403 StoresToEmit[i].second, 0));
5404 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005405 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005406 &OutChains[0], OutChains.size());
5407 DAG.setRoot(Chain);
5408}
5409
5410
5411void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5412 SDValue Src = getValue(I.getOperand(0));
5413
Chris Lattner0b18e592009-03-17 19:36:00 +00005414 // Scale up by the type size in the original i32 type width. Various
5415 // mid-level optimizers may make assumptions about demanded bits etc from the
5416 // i32-ness of the optimizer: we do not want to promote to i64 and then
5417 // multiply on 64-bit targets.
5418 // FIXME: Malloc inst should go away: PR715.
Duncan Sands777d2302009-05-09 07:06:46 +00005419 uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType());
Chris Lattner50340f62009-07-23 21:26:18 +00005420 if (ElementSize != 1) {
5421 // Src is always 32-bits, make sure the constant fits.
5422 assert(Src.getValueType() == MVT::i32);
5423 ElementSize = (uint32_t)ElementSize;
Chris Lattner0b18e592009-03-17 19:36:00 +00005424 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5425 Src, DAG.getConstant(ElementSize, Src.getValueType()));
Chris Lattner50340f62009-07-23 21:26:18 +00005426 }
Chris Lattner0b18e592009-03-17 19:36:00 +00005427
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005428 MVT IntPtr = TLI.getPointerTy();
5429
5430 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005431 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005432 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005433 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005434
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005435 TargetLowering::ArgListTy Args;
5436 TargetLowering::ArgListEntry Entry;
5437 Entry.Node = Src;
5438 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5439 Args.push_back(Entry);
5440
5441 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005442 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005443 0, CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005444 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005445 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005446 setValue(&I, Result.first); // Pointers always fit in registers
5447 DAG.setRoot(Result.second);
5448}
5449
5450void SelectionDAGLowering::visitFree(FreeInst &I) {
5451 TargetLowering::ArgListTy Args;
5452 TargetLowering::ArgListEntry Entry;
5453 Entry.Node = getValue(I.getOperand(0));
5454 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5455 Args.push_back(Entry);
5456 MVT IntPtr = TLI.getPointerTy();
5457 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005458 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005459 0, CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005460 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005461 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005462 DAG.setRoot(Result.second);
5463}
5464
5465void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005466 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005467 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005468 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005469 DAG.getSrcValue(I.getOperand(1))));
5470}
5471
5472void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005473 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5474 getRoot(), getValue(I.getOperand(0)),
5475 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005476 setValue(&I, V);
5477 DAG.setRoot(V.getValue(1));
5478}
5479
5480void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005481 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005482 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005483 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005484 DAG.getSrcValue(I.getOperand(1))));
5485}
5486
5487void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005488 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005489 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005490 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005491 getValue(I.getOperand(2)),
5492 DAG.getSrcValue(I.getOperand(1)),
5493 DAG.getSrcValue(I.getOperand(2))));
5494}
5495
5496/// TargetLowering::LowerArguments - This is the default LowerArguments
5497/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005498/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005499/// integrated into SDISel.
5500void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005501 SmallVectorImpl<SDValue> &ArgValues,
5502 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005503 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5504 SmallVector<SDValue, 3+16> Ops;
5505 Ops.push_back(DAG.getRoot());
5506 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5507 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5508
5509 // Add one result value for each formal argument.
5510 SmallVector<MVT, 16> RetVals;
5511 unsigned j = 1;
5512 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5513 I != E; ++I, ++j) {
5514 SmallVector<MVT, 4> ValueVTs;
5515 ComputeValueVTs(*this, I->getType(), ValueVTs);
5516 for (unsigned Value = 0, NumValues = ValueVTs.size();
5517 Value != NumValues; ++Value) {
5518 MVT VT = ValueVTs[Value];
Owen Andersond1474d02009-07-09 17:57:24 +00005519 const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005520 ISD::ArgFlagsTy Flags;
5521 unsigned OriginalAlignment =
5522 getTargetData()->getABITypeAlignment(ArgTy);
5523
Devang Patel05988662008-09-25 21:00:45 +00005524 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005525 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005526 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005527 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005528 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005529 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005530 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005531 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005532 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005533 Flags.setByVal();
5534 const PointerType *Ty = cast<PointerType>(I->getType());
5535 const Type *ElementTy = Ty->getElementType();
5536 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005537 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005538 // For ByVal, alignment should be passed from FE. BE will guess if
5539 // this info is not there but there are cases it cannot get right.
5540 if (F.getParamAlignment(j))
5541 FrameAlign = F.getParamAlignment(j);
5542 Flags.setByValAlign(FrameAlign);
5543 Flags.setByValSize(FrameSize);
5544 }
Devang Patel05988662008-09-25 21:00:45 +00005545 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005546 Flags.setNest();
5547 Flags.setOrigAlign(OriginalAlignment);
5548
5549 MVT RegisterVT = getRegisterType(VT);
5550 unsigned NumRegs = getNumRegisters(VT);
5551 for (unsigned i = 0; i != NumRegs; ++i) {
5552 RetVals.push_back(RegisterVT);
5553 ISD::ArgFlagsTy MyFlags = Flags;
5554 if (NumRegs > 1 && i == 0)
5555 MyFlags.setSplit();
5556 // if it isn't first piece, alignment must be 1
5557 else if (i > 0)
5558 MyFlags.setOrigAlign(1);
5559 Ops.push_back(DAG.getArgFlags(MyFlags));
5560 }
5561 }
5562 }
5563
5564 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005565
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005566 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005567 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005568 DAG.getVTList(&RetVals[0], RetVals.size()),
5569 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005570
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005571 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5572 // allows exposing the loads that may be part of the argument access to the
5573 // first DAGCombiner pass.
5574 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005575
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005576 // The number of results should match up, except that the lowered one may have
5577 // an extra flag result.
5578 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5579 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5580 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5581 && "Lowering produced unexpected number of results!");
5582
5583 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5584 if (Result != TmpRes.getNode() && Result->use_empty()) {
5585 HandleSDNode Dummy(DAG.getRoot());
5586 DAG.RemoveDeadNode(Result);
5587 }
5588
5589 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005590
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005591 unsigned NumArgRegs = Result->getNumValues() - 1;
5592 DAG.setRoot(SDValue(Result, NumArgRegs));
5593
5594 // Set up the return result vector.
5595 unsigned i = 0;
5596 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005597 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005598 ++I, ++Idx) {
5599 SmallVector<MVT, 4> ValueVTs;
5600 ComputeValueVTs(*this, I->getType(), ValueVTs);
5601 for (unsigned Value = 0, NumValues = ValueVTs.size();
5602 Value != NumValues; ++Value) {
5603 MVT VT = ValueVTs[Value];
5604 MVT PartVT = getRegisterType(VT);
5605
5606 unsigned NumParts = getNumRegisters(VT);
5607 SmallVector<SDValue, 4> Parts(NumParts);
5608 for (unsigned j = 0; j != NumParts; ++j)
5609 Parts[j] = SDValue(Result, i++);
5610
5611 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005612 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005613 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005614 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005615 AssertOp = ISD::AssertZext;
5616
Dale Johannesen66978ee2009-01-31 02:22:37 +00005617 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5618 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005619 }
5620 }
5621 assert(i == NumArgRegs && "Argument register count mismatch!");
5622}
5623
5624
5625/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5626/// implementation, which just inserts an ISD::CALL node, which is later custom
5627/// lowered by the target to something concrete. FIXME: When all targets are
5628/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5629std::pair<SDValue, SDValue>
5630TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5631 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005632 bool isInreg, unsigned NumFixedArgs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005633 unsigned CallingConv, bool isTailCall,
5634 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005635 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005636 assert((!isTailCall || PerformTailCallOpt) &&
5637 "isTailCall set when tail-call optimizations are disabled!");
5638
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005639 SmallVector<SDValue, 32> Ops;
5640 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005641 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005642
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005643 // Handle all of the outgoing arguments.
5644 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5645 SmallVector<MVT, 4> ValueVTs;
5646 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5647 for (unsigned Value = 0, NumValues = ValueVTs.size();
5648 Value != NumValues; ++Value) {
5649 MVT VT = ValueVTs[Value];
Owen Andersond1474d02009-07-09 17:57:24 +00005650 const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005651 SDValue Op = SDValue(Args[i].Node.getNode(),
5652 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005653 ISD::ArgFlagsTy Flags;
5654 unsigned OriginalAlignment =
5655 getTargetData()->getABITypeAlignment(ArgTy);
5656
5657 if (Args[i].isZExt)
5658 Flags.setZExt();
5659 if (Args[i].isSExt)
5660 Flags.setSExt();
5661 if (Args[i].isInReg)
5662 Flags.setInReg();
5663 if (Args[i].isSRet)
5664 Flags.setSRet();
5665 if (Args[i].isByVal) {
5666 Flags.setByVal();
5667 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5668 const Type *ElementTy = Ty->getElementType();
5669 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005670 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005671 // For ByVal, alignment should come from FE. BE will guess if this
5672 // info is not there but there are cases it cannot get right.
5673 if (Args[i].Alignment)
5674 FrameAlign = Args[i].Alignment;
5675 Flags.setByValAlign(FrameAlign);
5676 Flags.setByValSize(FrameSize);
5677 }
5678 if (Args[i].isNest)
5679 Flags.setNest();
5680 Flags.setOrigAlign(OriginalAlignment);
5681
5682 MVT PartVT = getRegisterType(VT);
5683 unsigned NumParts = getNumRegisters(VT);
5684 SmallVector<SDValue, 4> Parts(NumParts);
5685 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5686
5687 if (Args[i].isSExt)
5688 ExtendKind = ISD::SIGN_EXTEND;
5689 else if (Args[i].isZExt)
5690 ExtendKind = ISD::ZERO_EXTEND;
5691
Dale Johannesen66978ee2009-01-31 02:22:37 +00005692 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005693
5694 for (unsigned i = 0; i != NumParts; ++i) {
5695 // if it isn't first piece, alignment must be 1
5696 ISD::ArgFlagsTy MyFlags = Flags;
5697 if (NumParts > 1 && i == 0)
5698 MyFlags.setSplit();
5699 else if (i != 0)
5700 MyFlags.setOrigAlign(1);
5701
5702 Ops.push_back(Parts[i]);
5703 Ops.push_back(DAG.getArgFlags(MyFlags));
5704 }
5705 }
5706 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005707
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005708 // Figure out the result value types. We start by making a list of
5709 // the potentially illegal return value types.
5710 SmallVector<MVT, 4> LoweredRetTys;
5711 SmallVector<MVT, 4> RetTys;
5712 ComputeValueVTs(*this, RetTy, RetTys);
5713
5714 // Then we translate that to a list of legal types.
5715 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5716 MVT VT = RetTys[I];
5717 MVT RegisterVT = getRegisterType(VT);
5718 unsigned NumRegs = getNumRegisters(VT);
5719 for (unsigned i = 0; i != NumRegs; ++i)
5720 LoweredRetTys.push_back(RegisterVT);
5721 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005722
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005723 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005724
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005725 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005726 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005727 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005728 DAG.getVTList(&LoweredRetTys[0],
5729 LoweredRetTys.size()),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005730 &Ops[0], Ops.size(), NumFixedArgs
Dale Johannesen86098bd2008-09-26 19:31:26 +00005731 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005732 Chain = Res.getValue(LoweredRetTys.size() - 1);
5733
5734 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005735 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005736 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5737
5738 if (RetSExt)
5739 AssertOp = ISD::AssertSext;
5740 else if (RetZExt)
5741 AssertOp = ISD::AssertZext;
5742
5743 SmallVector<SDValue, 4> ReturnValues;
5744 unsigned RegNo = 0;
5745 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5746 MVT VT = RetTys[I];
5747 MVT RegisterVT = getRegisterType(VT);
5748 unsigned NumRegs = getNumRegisters(VT);
5749 unsigned RegNoEnd = NumRegs + RegNo;
5750 SmallVector<SDValue, 4> Results;
5751 for (; RegNo != RegNoEnd; ++RegNo)
5752 Results.push_back(Res.getValue(RegNo));
5753 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005754 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005755 AssertOp);
5756 ReturnValues.push_back(ReturnValue);
5757 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005758 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005759 DAG.getVTList(&RetTys[0], RetTys.size()),
5760 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005761 }
5762
5763 return std::make_pair(Res, Chain);
5764}
5765
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005766void TargetLowering::LowerOperationWrapper(SDNode *N,
5767 SmallVectorImpl<SDValue> &Results,
5768 SelectionDAG &DAG) {
5769 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005770 if (Res.getNode())
5771 Results.push_back(Res);
5772}
5773
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005774SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005775 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005776 return SDValue();
5777}
5778
5779
5780void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5781 SDValue Op = getValue(V);
5782 assert((Op.getOpcode() != ISD::CopyFromReg ||
5783 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5784 "Copy from a reg to the same reg!");
5785 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5786
5787 RegsForValue RFV(TLI, Reg, V->getType());
5788 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005789 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005790 PendingExports.push_back(Chain);
5791}
5792
5793#include "llvm/CodeGen/SelectionDAGISel.h"
5794
5795void SelectionDAGISel::
5796LowerArguments(BasicBlock *LLVMBB) {
5797 // If this is the entry block, emit arguments.
5798 Function &F = *LLVMBB->getParent();
5799 SDValue OldRoot = SDL->DAG.getRoot();
5800 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005801 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005802
5803 unsigned a = 0;
5804 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5805 AI != E; ++AI) {
5806 SmallVector<MVT, 4> ValueVTs;
5807 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5808 unsigned NumValues = ValueVTs.size();
5809 if (!AI->use_empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005810 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues,
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005811 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005812 // If this argument is live outside of the entry block, insert a copy from
5813 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohmanad62f532009-04-23 23:13:24 +00005814 SDL->CopyToExportRegsIfNeeded(AI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005815 }
5816 a += NumValues;
5817 }
5818
5819 // Finally, if the target has anything special to do, allow it to do so.
5820 // FIXME: this should insert code into the DAG!
5821 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5822}
5823
5824/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5825/// ensure constants are generated when needed. Remember the virtual registers
5826/// that need to be added to the Machine PHI nodes as input. We cannot just
5827/// directly add them, because expansion might result in multiple MBB's for one
5828/// BB. As such, the start of the BB might correspond to a different MBB than
5829/// the end.
5830///
5831void
5832SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5833 TerminatorInst *TI = LLVMBB->getTerminator();
5834
5835 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5836
5837 // Check successor nodes' PHI nodes that expect a constant to be available
5838 // from this block.
5839 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5840 BasicBlock *SuccBB = TI->getSuccessor(succ);
5841 if (!isa<PHINode>(SuccBB->begin())) continue;
5842 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005843
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005844 // If this terminator has multiple identical successors (common for
5845 // switches), only handle each succ once.
5846 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005847
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005848 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5849 PHINode *PN;
5850
5851 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5852 // nodes and Machine PHI nodes, but the incoming operands have not been
5853 // emitted yet.
5854 for (BasicBlock::iterator I = SuccBB->begin();
5855 (PN = dyn_cast<PHINode>(I)); ++I) {
5856 // Ignore dead phi's.
5857 if (PN->use_empty()) continue;
5858
5859 unsigned Reg;
5860 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5861
5862 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5863 unsigned &RegOut = SDL->ConstantsOut[C];
5864 if (RegOut == 0) {
5865 RegOut = FuncInfo->CreateRegForValue(C);
5866 SDL->CopyValueToVirtualRegister(C, RegOut);
5867 }
5868 Reg = RegOut;
5869 } else {
5870 Reg = FuncInfo->ValueMap[PHIOp];
5871 if (Reg == 0) {
5872 assert(isa<AllocaInst>(PHIOp) &&
5873 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5874 "Didn't codegen value into a register!??");
5875 Reg = FuncInfo->CreateRegForValue(PHIOp);
5876 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5877 }
5878 }
5879
5880 // Remember that this register needs to added to the machine PHI node as
5881 // the input for this MBB.
5882 SmallVector<MVT, 4> ValueVTs;
5883 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5884 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5885 MVT VT = ValueVTs[vti];
5886 unsigned NumRegisters = TLI.getNumRegisters(VT);
5887 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5888 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5889 Reg += NumRegisters;
5890 }
5891 }
5892 }
5893 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005894}
5895
Dan Gohman3df24e62008-09-03 23:12:08 +00005896/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5897/// supports legal types, and it emits MachineInstrs directly instead of
5898/// creating SelectionDAG nodes.
5899///
5900bool
5901SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5902 FastISel *F) {
5903 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005904
Dan Gohman3df24e62008-09-03 23:12:08 +00005905 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5906 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5907
5908 // Check successor nodes' PHI nodes that expect a constant to be available
5909 // from this block.
5910 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5911 BasicBlock *SuccBB = TI->getSuccessor(succ);
5912 if (!isa<PHINode>(SuccBB->begin())) continue;
5913 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005914
Dan Gohman3df24e62008-09-03 23:12:08 +00005915 // If this terminator has multiple identical successors (common for
5916 // switches), only handle each succ once.
5917 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005918
Dan Gohman3df24e62008-09-03 23:12:08 +00005919 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5920 PHINode *PN;
5921
5922 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5923 // nodes and Machine PHI nodes, but the incoming operands have not been
5924 // emitted yet.
5925 for (BasicBlock::iterator I = SuccBB->begin();
5926 (PN = dyn_cast<PHINode>(I)); ++I) {
5927 // Ignore dead phi's.
5928 if (PN->use_empty()) continue;
5929
5930 // Only handle legal types. Two interesting things to note here. First,
5931 // by bailing out early, we may leave behind some dead instructions,
5932 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5933 // own moves. Second, this check is necessary becuase FastISel doesn't
5934 // use CreateRegForValue to create registers, so it always creates
5935 // exactly one register for each non-void instruction.
5936 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5937 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005938 // Promote MVT::i1.
5939 if (VT == MVT::i1)
5940 VT = TLI.getTypeToTransformTo(VT);
5941 else {
5942 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5943 return false;
5944 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005945 }
5946
5947 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5948
5949 unsigned Reg = F->getRegForValue(PHIOp);
5950 if (Reg == 0) {
5951 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5952 return false;
5953 }
5954 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5955 }
5956 }
5957
5958 return true;
5959}