blob: 1e31b8f551d61643ecf0e3e8a7d3f017ef650ac2 [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
559 assert(0 && "Unknown mismatch!");
560 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 {
595 assert(0 && "Unknown mismatch!");
596 }
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 {
607 assert(0 && "Unknown mismatch!");
608 }
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 Edwin7d696d82009-07-11 13:10:19 +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();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000984 for (unsigned i = 0; i < NumParts; ++i) {
985 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000986 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000987 }
988 }
989 }
Dale Johannesen66978ee2009-01-31 02:22:37 +0000990 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000991 &NewValues[0], NewValues.size()));
992}
993
Dan Gohmanad62f532009-04-23 23:13:24 +0000994/// CopyToExportRegsIfNeeded - If the given value has virtual registers
995/// created for it, emit nodes to copy the value into the virtual
996/// registers.
997void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) {
998 if (!V->use_empty()) {
999 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1000 if (VMI != FuncInfo.ValueMap.end())
1001 CopyValueToVirtualRegister(V, VMI->second);
1002 }
1003}
1004
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001005/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1006/// the current basic block, add it to ValueMap now so that we'll get a
1007/// CopyTo/FromReg.
1008void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1009 // No need to export constants.
1010 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001011
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001012 // Already exported?
1013 if (FuncInfo.isExportedInst(V)) return;
1014
1015 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1016 CopyValueToVirtualRegister(V, Reg);
1017}
1018
1019bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1020 const BasicBlock *FromBB) {
1021 // The operands of the setcc have to be in this block. We don't know
1022 // how to export them from some other block.
1023 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1024 // Can export from current BB.
1025 if (VI->getParent() == FromBB)
1026 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001027
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001028 // Is already exported, noop.
1029 return FuncInfo.isExportedInst(V);
1030 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001031
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001032 // If this is an argument, we can export it if the BB is the entry block or
1033 // if it is already exported.
1034 if (isa<Argument>(V)) {
1035 if (FromBB == &FromBB->getParent()->getEntryBlock())
1036 return true;
1037
1038 // Otherwise, can only export this if it is already exported.
1039 return FuncInfo.isExportedInst(V);
1040 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001041
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001042 // Otherwise, constants can always be exported.
1043 return true;
1044}
1045
1046static bool InBlock(const Value *V, const BasicBlock *BB) {
1047 if (const Instruction *I = dyn_cast<Instruction>(V))
1048 return I->getParent() == BB;
1049 return true;
1050}
1051
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001052/// getFCmpCondCode - Return the ISD condition code corresponding to
1053/// the given LLVM IR floating-point condition code. This includes
1054/// consideration of global floating-point math flags.
1055///
1056static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1057 ISD::CondCode FPC, FOC;
1058 switch (Pred) {
1059 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1060 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1061 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1062 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1063 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1064 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1065 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1066 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1067 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1068 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1069 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1070 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1071 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1072 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1073 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1074 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1075 default:
1076 assert(0 && "Invalid FCmp predicate opcode!");
1077 FOC = FPC = ISD::SETFALSE;
1078 break;
1079 }
1080 if (FiniteOnlyFPMath())
1081 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001082 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001083 return FPC;
1084}
1085
1086/// getICmpCondCode - Return the ISD condition code corresponding to
1087/// the given LLVM IR integer condition code.
1088///
1089static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1090 switch (Pred) {
1091 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1092 case ICmpInst::ICMP_NE: return ISD::SETNE;
1093 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1094 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1095 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1096 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1097 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1098 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1099 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1100 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1101 default:
1102 assert(0 && "Invalid ICmp predicate opcode!");
1103 return ISD::SETNE;
1104 }
1105}
1106
Dan Gohmanc2277342008-10-17 21:16:08 +00001107/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1108/// This function emits a branch and is used at the leaves of an OR or an
1109/// AND operator tree.
1110///
1111void
1112SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1113 MachineBasicBlock *TBB,
1114 MachineBasicBlock *FBB,
1115 MachineBasicBlock *CurBB) {
1116 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001117
Dan Gohmanc2277342008-10-17 21:16:08 +00001118 // If the leaf of the tree is a comparison, merge the condition into
1119 // the caseblock.
1120 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1121 // The operands of the cmp have to be in this block. We don't know
1122 // how to export them from some other block. If this is the first block
1123 // of the sequence, no exporting is needed.
1124 if (CurBB == CurMBB ||
1125 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1126 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001127 ISD::CondCode Condition;
1128 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001129 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001130 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001131 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001132 } else {
1133 Condition = ISD::SETEQ; // silence warning.
1134 assert(0 && "Unknown compare instruction");
1135 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001136
1137 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001138 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1139 SwitchCases.push_back(CB);
1140 return;
1141 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001142 }
1143
1144 // Create a CaseBlock record representing this branch.
1145 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1146 NULL, TBB, FBB, CurBB);
1147 SwitchCases.push_back(CB);
1148}
1149
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001150/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001151void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1152 MachineBasicBlock *TBB,
1153 MachineBasicBlock *FBB,
1154 MachineBasicBlock *CurBB,
1155 unsigned Opc) {
1156 // If this node is not part of the or/and tree, emit it as a branch.
1157 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001158 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001159 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1160 BOp->getParent() != CurBB->getBasicBlock() ||
1161 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1162 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1163 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001164 return;
1165 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001166
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001167 // Create TmpBB after CurBB.
1168 MachineFunction::iterator BBI = CurBB;
1169 MachineFunction &MF = DAG.getMachineFunction();
1170 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1171 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001172
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001173 if (Opc == Instruction::Or) {
1174 // Codegen X | Y as:
1175 // jmp_if_X TBB
1176 // jmp TmpBB
1177 // TmpBB:
1178 // jmp_if_Y TBB
1179 // jmp FBB
1180 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001182 // Emit the LHS condition.
1183 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001184
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001185 // Emit the RHS condition into TmpBB.
1186 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1187 } else {
1188 assert(Opc == Instruction::And && "Unknown merge op!");
1189 // Codegen X & Y as:
1190 // jmp_if_X TmpBB
1191 // jmp FBB
1192 // TmpBB:
1193 // jmp_if_Y TBB
1194 // jmp FBB
1195 //
1196 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001197
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001198 // Emit the LHS condition.
1199 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001200
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001201 // Emit the RHS condition into TmpBB.
1202 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1203 }
1204}
1205
1206/// If the set of cases should be emitted as a series of branches, return true.
1207/// If we should emit this as a bunch of and/or'd together conditions, return
1208/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001209bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001210SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1211 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001212
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001213 // If this is two comparisons of the same values or'd or and'd together, they
1214 // will get folded into a single comparison, so don't emit two blocks.
1215 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1216 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1217 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1218 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1219 return false;
1220 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001221
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001222 return true;
1223}
1224
1225void SelectionDAGLowering::visitBr(BranchInst &I) {
1226 // Update machine-CFG edges.
1227 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1228
1229 // Figure out which block is immediately after the current one.
1230 MachineBasicBlock *NextBlock = 0;
1231 MachineFunction::iterator BBI = CurMBB;
1232 if (++BBI != CurMBB->getParent()->end())
1233 NextBlock = BBI;
1234
1235 if (I.isUnconditional()) {
1236 // Update machine-CFG edges.
1237 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001238
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001239 // If this is not a fall-through branch, emit the branch.
1240 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001241 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001242 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001243 DAG.getBasicBlock(Succ0MBB)));
1244 return;
1245 }
1246
1247 // If this condition is one of the special cases we handle, do special stuff
1248 // now.
1249 Value *CondVal = I.getCondition();
1250 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1251
1252 // If this is a series of conditions that are or'd or and'd together, emit
1253 // this as a sequence of branches instead of setcc's with and/or operations.
1254 // For example, instead of something like:
1255 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001256 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001257 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001258 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001259 // or C, F
1260 // jnz foo
1261 // Emit:
1262 // cmp A, B
1263 // je foo
1264 // cmp D, E
1265 // jle foo
1266 //
1267 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001268 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001269 (BOp->getOpcode() == Instruction::And ||
1270 BOp->getOpcode() == Instruction::Or)) {
1271 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1272 // If the compares in later blocks need to use values not currently
1273 // exported from this block, export them now. This block should always
1274 // be the first entry.
1275 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001276
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001277 // Allow some cases to be rejected.
1278 if (ShouldEmitAsBranches(SwitchCases)) {
1279 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1280 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1281 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1282 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001283
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001284 // Emit the branch for this block.
1285 visitSwitchCase(SwitchCases[0]);
1286 SwitchCases.erase(SwitchCases.begin());
1287 return;
1288 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001289
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001290 // Okay, we decided not to do this, remove any inserted MBB's and clear
1291 // SwitchCases.
1292 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1293 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001294
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001295 SwitchCases.clear();
1296 }
1297 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001298
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001299 // Create a CaseBlock record representing this branch.
1300 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1301 NULL, Succ0MBB, Succ1MBB, CurMBB);
1302 // Use visitSwitchCase to actually insert the fast branch sequence for this
1303 // cond branch.
1304 visitSwitchCase(CB);
1305}
1306
1307/// visitSwitchCase - Emits the necessary code to represent a single node in
1308/// the binary search tree resulting from lowering a switch instruction.
1309void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1310 SDValue Cond;
1311 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001312 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001313
1314 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001315 if (CB.CmpMHS == NULL) {
1316 // Fold "(X == true)" to X and "(X == false)" to !X to
1317 // handle common cases produced by branch lowering.
1318 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1319 Cond = CondLHS;
1320 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1321 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001322 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001323 } else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001324 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001325 } else {
1326 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1327
Anton Korobeynikov23218582008-12-23 22:25:27 +00001328 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1329 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001330
1331 SDValue CmpOp = getValue(CB.CmpMHS);
1332 MVT VT = CmpOp.getValueType();
1333
1334 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001335 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001336 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001337 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001338 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001339 VT, CmpOp, DAG.getConstant(Low, VT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001340 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001341 DAG.getConstant(High-Low, VT), ISD::SETULE);
1342 }
1343 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001344
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001345 // Update successor info
1346 CurMBB->addSuccessor(CB.TrueBB);
1347 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001348
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001349 // Set NextBlock to be the MBB immediately after the current one, if any.
1350 // This is used to avoid emitting unnecessary branches to the next block.
1351 MachineBasicBlock *NextBlock = 0;
1352 MachineFunction::iterator BBI = CurMBB;
1353 if (++BBI != CurMBB->getParent()->end())
1354 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001355
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001356 // If the lhs block is the next block, invert the condition so that we can
1357 // fall through to the lhs instead of the rhs block.
1358 if (CB.TrueBB == NextBlock) {
1359 std::swap(CB.TrueBB, CB.FalseBB);
1360 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001361 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001362 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001363 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001364 MVT::Other, getControlRoot(), Cond,
1365 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001366
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001367 // If the branch was constant folded, fix up the CFG.
1368 if (BrCond.getOpcode() == ISD::BR) {
1369 CurMBB->removeSuccessor(CB.FalseBB);
1370 DAG.setRoot(BrCond);
1371 } else {
1372 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001373 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001374 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001375
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001376 if (CB.FalseBB == NextBlock)
1377 DAG.setRoot(BrCond);
1378 else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001379 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001380 DAG.getBasicBlock(CB.FalseBB)));
1381 }
1382}
1383
1384/// visitJumpTable - Emit JumpTable node in the current MBB
1385void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1386 // Emit the code for the jump table
1387 assert(JT.Reg != -1U && "Should lower JT Header first!");
1388 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001389 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1390 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001391 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001392 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001393 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001394 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001395}
1396
1397/// visitJumpTableHeader - This function emits necessary code to produce index
1398/// in the JumpTable from switch case.
1399void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1400 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001401 // Subtract the lowest switch case value from the value being switched on and
1402 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001403 // difference between smallest and largest cases.
1404 SDValue SwitchOp = getValue(JTH.SValue);
1405 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001406 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001407 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001408
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001409 // The SDNode we just created, which holds the value being switched on minus
1410 // the the smallest case value, needs to be copied to a virtual register so it
1411 // can be used as an index into the jump table in a subsequent basic block.
1412 // This value may be smaller or larger than the target's pointer type, and
1413 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001414 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001415 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001416 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001417 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001418 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001419 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001420
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001421 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001422 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1423 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001424 JT.Reg = JumpTableReg;
1425
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001426 // Emit the range check for the jump table, and branch to the default block
1427 // for the switch statement if the value being switched on exceeds the largest
1428 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001429 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1430 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001431 DAG.getConstant(JTH.Last-JTH.First,VT),
1432 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001433
1434 // Set NextBlock to be the MBB immediately after the current one, if any.
1435 // This is used to avoid emitting unnecessary branches to the next block.
1436 MachineBasicBlock *NextBlock = 0;
1437 MachineFunction::iterator BBI = CurMBB;
1438 if (++BBI != CurMBB->getParent()->end())
1439 NextBlock = BBI;
1440
Dale Johannesen66978ee2009-01-31 02:22:37 +00001441 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001442 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001443 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001444
1445 if (JT.MBB == NextBlock)
1446 DAG.setRoot(BrCond);
1447 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001448 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001449 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001450}
1451
1452/// visitBitTestHeader - This function emits necessary code to produce value
1453/// suitable for "bit tests"
1454void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1455 // Subtract the minimum value
1456 SDValue SwitchOp = getValue(B.SValue);
1457 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001458 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001459 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001460
1461 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001462 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1463 TLI.getSetCCResultType(SUB.getValueType()),
1464 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001465 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001466
1467 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001468 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001469 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001470 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001471 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001472 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001473 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001474
Duncan Sands92abc622009-01-31 15:50:11 +00001475 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001476 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1477 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001478
1479 // Set NextBlock to be the MBB immediately after the current one, if any.
1480 // This is used to avoid emitting unnecessary branches to the next block.
1481 MachineBasicBlock *NextBlock = 0;
1482 MachineFunction::iterator BBI = CurMBB;
1483 if (++BBI != CurMBB->getParent()->end())
1484 NextBlock = BBI;
1485
1486 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1487
1488 CurMBB->addSuccessor(B.Default);
1489 CurMBB->addSuccessor(MBB);
1490
Dale Johannesen66978ee2009-01-31 02:22:37 +00001491 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001492 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001493 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001494
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001495 if (MBB == NextBlock)
1496 DAG.setRoot(BrRange);
1497 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001498 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001499 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001500}
1501
1502/// visitBitTestCase - this function produces one "bit test"
1503void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1504 unsigned Reg,
1505 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001506 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001507 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001508 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001509 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001510 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001511 DAG.getConstant(1, TLI.getPointerTy()),
1512 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001513
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001514 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001515 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001516 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001517 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001518 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1519 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001520 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001521 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001522
1523 CurMBB->addSuccessor(B.TargetBB);
1524 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001525
Dale Johannesen66978ee2009-01-31 02:22:37 +00001526 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001527 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001528 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001529
1530 // Set NextBlock to be the MBB immediately after the current one, if any.
1531 // This is used to avoid emitting unnecessary branches to the next block.
1532 MachineBasicBlock *NextBlock = 0;
1533 MachineFunction::iterator BBI = CurMBB;
1534 if (++BBI != CurMBB->getParent()->end())
1535 NextBlock = BBI;
1536
1537 if (NextMBB == NextBlock)
1538 DAG.setRoot(BrAnd);
1539 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001540 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001541 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001542}
1543
1544void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1545 // Retrieve successors.
1546 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1547 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1548
Gabor Greifb67e6b32009-01-15 11:10:44 +00001549 const Value *Callee(I.getCalledValue());
1550 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001551 visitInlineAsm(&I);
1552 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001553 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001554
1555 // If the value of the invoke is used outside of its defining block, make it
1556 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001557 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001558
1559 // Update successor info
1560 CurMBB->addSuccessor(Return);
1561 CurMBB->addSuccessor(LandingPad);
1562
1563 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001564 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001565 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001566 DAG.getBasicBlock(Return)));
1567}
1568
1569void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1570}
1571
1572/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1573/// small case ranges).
1574bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1575 CaseRecVector& WorkList,
1576 Value* SV,
1577 MachineBasicBlock* Default) {
1578 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001579
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001580 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001581 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001582 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001583 return false;
1584
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001585 // Get the MachineFunction which holds the current MBB. This is used when
1586 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001587 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001588
1589 // Figure out which block is immediately after the current one.
1590 MachineBasicBlock *NextBlock = 0;
1591 MachineFunction::iterator BBI = CR.CaseBB;
1592
1593 if (++BBI != CurMBB->getParent()->end())
1594 NextBlock = BBI;
1595
1596 // TODO: If any two of the cases has the same destination, and if one value
1597 // is the same as the other, but has one bit unset that the other has set,
1598 // use bit manipulation to do two compares at once. For example:
1599 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001600
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001601 // Rearrange the case blocks so that the last one falls through if possible.
1602 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1603 // The last case block won't fall through into 'NextBlock' if we emit the
1604 // branches in this order. See if rearranging a case value would help.
1605 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1606 if (I->BB == NextBlock) {
1607 std::swap(*I, BackCase);
1608 break;
1609 }
1610 }
1611 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001612
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001613 // Create a CaseBlock record representing a conditional branch to
1614 // the Case's target mbb if the value being switched on SV is equal
1615 // to C.
1616 MachineBasicBlock *CurBlock = CR.CaseBB;
1617 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1618 MachineBasicBlock *FallThrough;
1619 if (I != E-1) {
1620 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1621 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001622
1623 // Put SV in a virtual register to make it available from the new blocks.
1624 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001625 } else {
1626 // If the last case doesn't match, go to the default block.
1627 FallThrough = Default;
1628 }
1629
1630 Value *RHS, *LHS, *MHS;
1631 ISD::CondCode CC;
1632 if (I->High == I->Low) {
1633 // This is just small small case range :) containing exactly 1 case
1634 CC = ISD::SETEQ;
1635 LHS = SV; RHS = I->High; MHS = NULL;
1636 } else {
1637 CC = ISD::SETLE;
1638 LHS = I->Low; MHS = SV; RHS = I->High;
1639 }
1640 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001641
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001642 // If emitting the first comparison, just call visitSwitchCase to emit the
1643 // code into the current block. Otherwise, push the CaseBlock onto the
1644 // vector to be later processed by SDISel, and insert the node's MBB
1645 // before the next MBB.
1646 if (CurBlock == CurMBB)
1647 visitSwitchCase(CB);
1648 else
1649 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001650
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001651 CurBlock = FallThrough;
1652 }
1653
1654 return true;
1655}
1656
1657static inline bool areJTsAllowed(const TargetLowering &TLI) {
1658 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001659 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1660 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001661}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001662
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001663static APInt ComputeRange(const APInt &First, const APInt &Last) {
1664 APInt LastExt(Last), FirstExt(First);
1665 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1666 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1667 return (LastExt - FirstExt + 1ULL);
1668}
1669
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001670/// handleJTSwitchCase - Emit jumptable for current switch case range
1671bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1672 CaseRecVector& WorkList,
1673 Value* SV,
1674 MachineBasicBlock* Default) {
1675 Case& FrontCase = *CR.Range.first;
1676 Case& BackCase = *(CR.Range.second-1);
1677
Anton Korobeynikov23218582008-12-23 22:25:27 +00001678 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1679 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001680
Anton Korobeynikov23218582008-12-23 22:25:27 +00001681 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001682 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1683 I!=E; ++I)
1684 TSize += I->size();
1685
1686 if (!areJTsAllowed(TLI) || TSize <= 3)
1687 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001688
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001689 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001690 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001691 if (Density < 0.4)
1692 return false;
1693
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001694 DEBUG(errs() << "Lowering jump table\n"
1695 << "First entry: " << First << ". Last entry: " << Last << '\n'
1696 << "Range: " << Range
1697 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001698
1699 // Get the MachineFunction which holds the current MBB. This is used when
1700 // inserting any additional MBBs necessary to represent the switch.
1701 MachineFunction *CurMF = CurMBB->getParent();
1702
1703 // Figure out which block is immediately after the current one.
1704 MachineBasicBlock *NextBlock = 0;
1705 MachineFunction::iterator BBI = CR.CaseBB;
1706
1707 if (++BBI != CurMBB->getParent()->end())
1708 NextBlock = BBI;
1709
1710 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1711
1712 // Create a new basic block to hold the code for loading the address
1713 // of the jump table, and jumping to it. Update successor information;
1714 // we will either branch to the default case for the switch, or the jump
1715 // table.
1716 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1717 CurMF->insert(BBI, JumpTableBB);
1718 CR.CaseBB->addSuccessor(Default);
1719 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001720
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001721 // Build a vector of destination BBs, corresponding to each target
1722 // of the jump table. If the value of the jump table slot corresponds to
1723 // a case statement, push the case's BB onto the vector, otherwise, push
1724 // the default BB.
1725 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001726 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001727 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001728 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1729 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1730
1731 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001732 DestBBs.push_back(I->BB);
1733 if (TEI==High)
1734 ++I;
1735 } else {
1736 DestBBs.push_back(Default);
1737 }
1738 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001739
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001740 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001741 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1742 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001743 E = DestBBs.end(); I != E; ++I) {
1744 if (!SuccsHandled[(*I)->getNumber()]) {
1745 SuccsHandled[(*I)->getNumber()] = true;
1746 JumpTableBB->addSuccessor(*I);
1747 }
1748 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001749
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001750 // Create a jump table index for this jump table, or return an existing
1751 // one.
1752 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001753
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001754 // Set the jump table information so that we can codegen it as a second
1755 // MachineBasicBlock
1756 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1757 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1758 if (CR.CaseBB == CurMBB)
1759 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001760
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001761 JTCases.push_back(JumpTableBlock(JTH, JT));
1762
1763 return true;
1764}
1765
1766/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1767/// 2 subtrees.
1768bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1769 CaseRecVector& WorkList,
1770 Value* SV,
1771 MachineBasicBlock* Default) {
1772 // Get the MachineFunction which holds the current MBB. This is used when
1773 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001774 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001775
1776 // Figure out which block is immediately after the current one.
1777 MachineBasicBlock *NextBlock = 0;
1778 MachineFunction::iterator BBI = CR.CaseBB;
1779
1780 if (++BBI != CurMBB->getParent()->end())
1781 NextBlock = BBI;
1782
1783 Case& FrontCase = *CR.Range.first;
1784 Case& BackCase = *(CR.Range.second-1);
1785 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1786
1787 // Size is the number of Cases represented by this range.
1788 unsigned Size = CR.Range.second - CR.Range.first;
1789
Anton Korobeynikov23218582008-12-23 22:25:27 +00001790 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1791 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001792 double FMetric = 0;
1793 CaseItr Pivot = CR.Range.first + Size/2;
1794
1795 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1796 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001797 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001798 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1799 I!=E; ++I)
1800 TSize += I->size();
1801
Anton Korobeynikov23218582008-12-23 22:25:27 +00001802 size_t LSize = FrontCase.size();
1803 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001804 DEBUG(errs() << "Selecting best pivot: \n"
1805 << "First: " << First << ", Last: " << Last <<'\n'
1806 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001807 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1808 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001809 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1810 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001811 APInt Range = ComputeRange(LEnd, RBegin);
1812 assert((Range - 2ULL).isNonNegative() &&
1813 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001814 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1815 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001816 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001817 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001818 DEBUG(errs() <<"=>Step\n"
1819 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1820 << "LDensity: " << LDensity
1821 << ", RDensity: " << RDensity << '\n'
1822 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001823 if (FMetric < Metric) {
1824 Pivot = J;
1825 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001826 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001827 }
1828
1829 LSize += J->size();
1830 RSize -= J->size();
1831 }
1832 if (areJTsAllowed(TLI)) {
1833 // If our case is dense we *really* should handle it earlier!
1834 assert((FMetric > 0) && "Should handle dense range earlier!");
1835 } else {
1836 Pivot = CR.Range.first + Size/2;
1837 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001838
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001839 CaseRange LHSR(CR.Range.first, Pivot);
1840 CaseRange RHSR(Pivot, CR.Range.second);
1841 Constant *C = Pivot->Low;
1842 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001843
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001844 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001845 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001846 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001847 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001848 // Pivot's Value, then we can branch directly to the LHS's Target,
1849 // rather than creating a leaf node for it.
1850 if ((LHSR.second - LHSR.first) == 1 &&
1851 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001852 cast<ConstantInt>(C)->getValue() ==
1853 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001854 TrueBB = LHSR.first->BB;
1855 } else {
1856 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1857 CurMF->insert(BBI, TrueBB);
1858 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001859
1860 // Put SV in a virtual register to make it available from the new blocks.
1861 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001862 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001863
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001864 // Similar to the optimization above, if the Value being switched on is
1865 // known to be less than the Constant CR.LT, and the current Case Value
1866 // is CR.LT - 1, then we can branch directly to the target block for
1867 // the current Case Value, rather than emitting a RHS leaf node for it.
1868 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001869 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1870 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001871 FalseBB = RHSR.first->BB;
1872 } else {
1873 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1874 CurMF->insert(BBI, FalseBB);
1875 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001876
1877 // Put SV in a virtual register to make it available from the new blocks.
1878 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001879 }
1880
1881 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001882 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001883 // Otherwise, branch to LHS.
1884 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1885
1886 if (CR.CaseBB == CurMBB)
1887 visitSwitchCase(CB);
1888 else
1889 SwitchCases.push_back(CB);
1890
1891 return true;
1892}
1893
1894/// handleBitTestsSwitchCase - if current case range has few destination and
1895/// range span less, than machine word bitwidth, encode case range into series
1896/// of masks and emit bit tests with these masks.
1897bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1898 CaseRecVector& WorkList,
1899 Value* SV,
1900 MachineBasicBlock* Default){
1901 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1902
1903 Case& FrontCase = *CR.Range.first;
1904 Case& BackCase = *(CR.Range.second-1);
1905
1906 // Get the MachineFunction which holds the current MBB. This is used when
1907 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001908 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001909
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001910 // If target does not have legal shift left, do not emit bit tests at all.
1911 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1912 return false;
1913
Anton Korobeynikov23218582008-12-23 22:25:27 +00001914 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001915 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1916 I!=E; ++I) {
1917 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001918 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001919 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001920
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001921 // Count unique destinations
1922 SmallSet<MachineBasicBlock*, 4> Dests;
1923 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1924 Dests.insert(I->BB);
1925 if (Dests.size() > 3)
1926 // Don't bother the code below, if there are too much unique destinations
1927 return false;
1928 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001929 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1930 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001931
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001932 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001933 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1934 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001935 APInt cmpRange = maxValue - minValue;
1936
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001937 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1938 << "Low bound: " << minValue << '\n'
1939 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001940
1941 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001942 (!(Dests.size() == 1 && numCmps >= 3) &&
1943 !(Dests.size() == 2 && numCmps >= 5) &&
1944 !(Dests.size() >= 3 && numCmps >= 6)))
1945 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001946
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001947 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001948 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1949
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001950 // Optimize the case where all the case values fit in a
1951 // word without having to subtract minValue. In this case,
1952 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001953 if (minValue.isNonNegative() &&
1954 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1955 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001956 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001957 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001958 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001959
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001960 CaseBitsVector CasesBits;
1961 unsigned i, count = 0;
1962
1963 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1964 MachineBasicBlock* Dest = I->BB;
1965 for (i = 0; i < count; ++i)
1966 if (Dest == CasesBits[i].BB)
1967 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001968
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001969 if (i == count) {
1970 assert((count < 3) && "Too much destinations to test!");
1971 CasesBits.push_back(CaseBits(0, Dest, 0));
1972 count++;
1973 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001974
1975 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1976 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1977
1978 uint64_t lo = (lowValue - lowBound).getZExtValue();
1979 uint64_t hi = (highValue - lowBound).getZExtValue();
1980
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001981 for (uint64_t j = lo; j <= hi; j++) {
1982 CasesBits[i].Mask |= 1ULL << j;
1983 CasesBits[i].Bits++;
1984 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001985
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001986 }
1987 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001988
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001989 BitTestInfo BTC;
1990
1991 // Figure out which block is immediately after the current one.
1992 MachineFunction::iterator BBI = CR.CaseBB;
1993 ++BBI;
1994
1995 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1996
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001997 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001998 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001999 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2000 << ", Bits: " << CasesBits[i].Bits
2001 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002002
2003 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2004 CurMF->insert(BBI, CaseBB);
2005 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2006 CaseBB,
2007 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002008
2009 // Put SV in a virtual register to make it available from the new blocks.
2010 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002011 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002012
2013 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002014 -1U, (CR.CaseBB == CurMBB),
2015 CR.CaseBB, Default, BTC);
2016
2017 if (CR.CaseBB == CurMBB)
2018 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002019
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002020 BitTestCases.push_back(BTB);
2021
2022 return true;
2023}
2024
2025
2026/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002027size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002028 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002029 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002030
2031 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002032 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002033 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2034 Cases.push_back(Case(SI.getSuccessorValue(i),
2035 SI.getSuccessorValue(i),
2036 SMBB));
2037 }
2038 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2039
2040 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002041 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002042 // Must recompute end() each iteration because it may be
2043 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002044 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2045 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2046 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002047 MachineBasicBlock* nextBB = J->BB;
2048 MachineBasicBlock* currentBB = I->BB;
2049
2050 // If the two neighboring cases go to the same destination, merge them
2051 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002052 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002053 I->High = J->High;
2054 J = Cases.erase(J);
2055 } else {
2056 I = J++;
2057 }
2058 }
2059
2060 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2061 if (I->Low != I->High)
2062 // A range counts double, since it requires two compares.
2063 ++numCmps;
2064 }
2065
2066 return numCmps;
2067}
2068
Anton Korobeynikov23218582008-12-23 22:25:27 +00002069void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002070 // Figure out which block is immediately after the current one.
2071 MachineBasicBlock *NextBlock = 0;
2072 MachineFunction::iterator BBI = CurMBB;
2073
2074 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2075
2076 // If there is only the default destination, branch to it if it is not the
2077 // next basic block. Otherwise, just fall through.
2078 if (SI.getNumOperands() == 2) {
2079 // Update machine-CFG edges.
2080
2081 // If this is not a fall-through branch, emit the branch.
2082 CurMBB->addSuccessor(Default);
2083 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002084 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002085 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002086 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002087 return;
2088 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002089
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002090 // If there are any non-default case statements, create a vector of Cases
2091 // representing each one, and sort the vector so that we can efficiently
2092 // create a binary search tree from them.
2093 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002094 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002095 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2096 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002097 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002098
2099 // Get the Value to be switched on and default basic blocks, which will be
2100 // inserted into CaseBlock records, representing basic blocks in the binary
2101 // search tree.
2102 Value *SV = SI.getOperand(0);
2103
2104 // Push the initial CaseRec onto the worklist
2105 CaseRecVector WorkList;
2106 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2107
2108 while (!WorkList.empty()) {
2109 // Grab a record representing a case range to process off the worklist
2110 CaseRec CR = WorkList.back();
2111 WorkList.pop_back();
2112
2113 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2114 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002115
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002116 // If the range has few cases (two or less) emit a series of specific
2117 // tests.
2118 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2119 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002120
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002121 // If the switch has more than 5 blocks, and at least 40% dense, and the
2122 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002123 // lowering the switch to a binary tree of conditional branches.
2124 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2125 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002126
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002127 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2128 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2129 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2130 }
2131}
2132
2133
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002134void SelectionDAGLowering::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002135 // -0.0 - X --> fneg
2136 const Type *Ty = I.getType();
2137 if (isa<VectorType>(Ty)) {
2138 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2139 const VectorType *DestTy = cast<VectorType>(I.getType());
2140 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002141 unsigned VL = DestTy->getNumElements();
2142 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2143 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2144 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002145 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002146 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002147 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002148 return;
2149 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002150 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002151 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002152 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2153 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2154 SDValue Op2 = getValue(I.getOperand(1));
2155 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2156 Op2.getValueType(), Op2));
2157 return;
2158 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002159
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002160 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002161}
2162
2163void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2164 SDValue Op1 = getValue(I.getOperand(0));
2165 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002166
Scott Michelfdc40a02009-02-17 22:15:04 +00002167 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002168 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002169}
2170
2171void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2172 SDValue Op1 = getValue(I.getOperand(0));
2173 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002174 if (!isa<VectorType>(I.getType()) &&
2175 Op2.getValueType() != TLI.getShiftAmountTy()) {
2176 // If the operand is smaller than the shift count type, promote it.
2177 if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2178 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2179 TLI.getShiftAmountTy(), Op2);
2180 // If the operand is larger than the shift count type but the shift
2181 // count type has enough bits to represent any shift value, truncate
2182 // it now. This is a common case and it exposes the truncate to
2183 // optimization early.
2184 else if (TLI.getShiftAmountTy().getSizeInBits() >=
2185 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2186 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2187 TLI.getShiftAmountTy(), Op2);
2188 // Otherwise we'll need to temporarily settle for some other
2189 // convenient type; type legalization will make adjustments as
2190 // needed.
2191 else if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002192 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002193 TLI.getPointerTy(), Op2);
2194 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002195 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002196 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002197 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002198
Scott Michelfdc40a02009-02-17 22:15:04 +00002199 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002200 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002201}
2202
2203void SelectionDAGLowering::visitICmp(User &I) {
2204 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2205 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2206 predicate = IC->getPredicate();
2207 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2208 predicate = ICmpInst::Predicate(IC->getPredicate());
2209 SDValue Op1 = getValue(I.getOperand(0));
2210 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002211 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002212
2213 MVT DestVT = TLI.getValueType(I.getType());
2214 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002215}
2216
2217void SelectionDAGLowering::visitFCmp(User &I) {
2218 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2219 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2220 predicate = FC->getPredicate();
2221 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2222 predicate = FCmpInst::Predicate(FC->getPredicate());
2223 SDValue Op1 = getValue(I.getOperand(0));
2224 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002225 ISD::CondCode Condition = getFCmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002226 MVT DestVT = TLI.getValueType(I.getType());
2227 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002228}
2229
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002230void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002231 SmallVector<MVT, 4> ValueVTs;
2232 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2233 unsigned NumValues = ValueVTs.size();
2234 if (NumValues != 0) {
2235 SmallVector<SDValue, 4> Values(NumValues);
2236 SDValue Cond = getValue(I.getOperand(0));
2237 SDValue TrueVal = getValue(I.getOperand(1));
2238 SDValue FalseVal = getValue(I.getOperand(2));
2239
2240 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002241 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002242 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002243 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2244 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2245
Scott Michelfdc40a02009-02-17 22:15:04 +00002246 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002247 DAG.getVTList(&ValueVTs[0], NumValues),
2248 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002249 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002250}
2251
2252
2253void SelectionDAGLowering::visitTrunc(User &I) {
2254 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2255 SDValue N = getValue(I.getOperand(0));
2256 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002257 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002258}
2259
2260void SelectionDAGLowering::visitZExt(User &I) {
2261 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2262 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2263 SDValue N = getValue(I.getOperand(0));
2264 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002265 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002266}
2267
2268void SelectionDAGLowering::visitSExt(User &I) {
2269 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2270 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2271 SDValue N = getValue(I.getOperand(0));
2272 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002273 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002274}
2275
2276void SelectionDAGLowering::visitFPTrunc(User &I) {
2277 // FPTrunc is never a no-op cast, no need to check
2278 SDValue N = getValue(I.getOperand(0));
2279 MVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002280 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002281 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002282}
2283
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002284void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002285 // FPTrunc is never a no-op cast, no need to check
2286 SDValue N = getValue(I.getOperand(0));
2287 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002288 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002289}
2290
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002291void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002292 // FPToUI is never a no-op cast, no need to check
2293 SDValue N = getValue(I.getOperand(0));
2294 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002295 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002296}
2297
2298void SelectionDAGLowering::visitFPToSI(User &I) {
2299 // FPToSI is never a no-op cast, no need to check
2300 SDValue N = getValue(I.getOperand(0));
2301 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002302 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002303}
2304
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002305void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002306 // UIToFP is never a no-op cast, no need to check
2307 SDValue N = getValue(I.getOperand(0));
2308 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002309 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002310}
2311
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002312void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002313 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002314 SDValue N = getValue(I.getOperand(0));
2315 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002316 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002317}
2318
2319void SelectionDAGLowering::visitPtrToInt(User &I) {
2320 // What to do depends on the size of the integer and the size of the pointer.
2321 // We can either truncate, zero extend, or no-op, accordingly.
2322 SDValue N = getValue(I.getOperand(0));
2323 MVT SrcVT = N.getValueType();
2324 MVT DestVT = TLI.getValueType(I.getType());
2325 SDValue Result;
2326 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002327 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002328 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002329 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002330 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002331 setValue(&I, Result);
2332}
2333
2334void SelectionDAGLowering::visitIntToPtr(User &I) {
2335 // What to do depends on the size of the integer and the size of the pointer.
2336 // We can either truncate, zero extend, or no-op, accordingly.
2337 SDValue N = getValue(I.getOperand(0));
2338 MVT SrcVT = N.getValueType();
2339 MVT DestVT = TLI.getValueType(I.getType());
2340 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002341 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002342 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002343 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002344 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002345 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002346}
2347
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002348void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002349 SDValue N = getValue(I.getOperand(0));
2350 MVT DestVT = TLI.getValueType(I.getType());
2351
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002352 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002353 // is either a BIT_CONVERT or a no-op.
2354 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002355 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002356 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002357 else
2358 setValue(&I, N); // noop cast.
2359}
2360
2361void SelectionDAGLowering::visitInsertElement(User &I) {
2362 SDValue InVec = getValue(I.getOperand(0));
2363 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002364 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002365 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002366 getValue(I.getOperand(2)));
2367
Scott Michelfdc40a02009-02-17 22:15:04 +00002368 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002369 TLI.getValueType(I.getType()),
2370 InVec, InVal, InIdx));
2371}
2372
2373void SelectionDAGLowering::visitExtractElement(User &I) {
2374 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002375 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002376 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002377 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002378 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002379 TLI.getValueType(I.getType()), InVec, InIdx));
2380}
2381
Mon P Wangaeb06d22008-11-10 04:46:22 +00002382
2383// Utility for visitShuffleVector - Returns true if the mask is mask starting
2384// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002385static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2386 unsigned MaskNumElts = Mask.size();
2387 for (unsigned i = 0; i != MaskNumElts; ++i)
2388 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002389 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002390 return true;
2391}
2392
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002393void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002394 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002395 SDValue Src1 = getValue(I.getOperand(0));
2396 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002397
Nate Begeman9008ca62009-04-27 18:41:29 +00002398 // Convert the ConstantVector mask operand into an array of ints, with -1
2399 // representing undef values.
2400 SmallVector<Constant*, 8> MaskElts;
2401 cast<Constant>(I.getOperand(2))->getVectorElements(MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002402 unsigned MaskNumElts = MaskElts.size();
2403 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002404 if (isa<UndefValue>(MaskElts[i]))
2405 Mask.push_back(-1);
2406 else
2407 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2408 }
2409
Mon P Wangaeb06d22008-11-10 04:46:22 +00002410 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002411 MVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002412 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002413
Mon P Wangc7849c22008-11-16 05:06:27 +00002414 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002415 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2416 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002417 return;
2418 }
2419
2420 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002421 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2422 // Mask is longer than the source vectors and is a multiple of the source
2423 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002424 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002425 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2426 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002427 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002428 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002429 return;
2430 }
2431
Mon P Wangc7849c22008-11-16 05:06:27 +00002432 // Pad both vectors with undefs to make them the same length as the mask.
2433 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002434 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2435 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002436 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002437
Nate Begeman9008ca62009-04-27 18:41:29 +00002438 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2439 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002440 MOps1[0] = Src1;
2441 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002442
2443 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2444 getCurDebugLoc(), VT,
2445 &MOps1[0], NumConcat);
2446 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2447 getCurDebugLoc(), VT,
2448 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002449
Mon P Wangaeb06d22008-11-10 04:46:22 +00002450 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002451 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002452 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002453 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002454 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002455 MappedOps.push_back(Idx);
2456 else
2457 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002458 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002459 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2460 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002461 return;
2462 }
2463
Mon P Wangc7849c22008-11-16 05:06:27 +00002464 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002465 // Analyze the access pattern of the vector to see if we can extract
2466 // two subvectors and do the shuffle. The analysis is done by calculating
2467 // the range of elements the mask access on both vectors.
2468 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2469 int MaxRange[2] = {-1, -1};
2470
Nate Begeman5a5ca152009-04-29 05:20:52 +00002471 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002472 int Idx = Mask[i];
2473 int Input = 0;
2474 if (Idx < 0)
2475 continue;
2476
Nate Begeman5a5ca152009-04-29 05:20:52 +00002477 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002478 Input = 1;
2479 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002480 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002481 if (Idx > MaxRange[Input])
2482 MaxRange[Input] = Idx;
2483 if (Idx < MinRange[Input])
2484 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002485 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002486
Mon P Wangc7849c22008-11-16 05:06:27 +00002487 // Check if the access is smaller than the vector size and can we find
2488 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002489 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002490 int StartIdx[2]; // StartIdx to extract from
2491 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002492 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002493 RangeUse[Input] = 0; // Unused
2494 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002495 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002496 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002497 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002498 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002499 RangeUse[Input] = 1; // Extract from beginning of the vector
2500 StartIdx[Input] = 0;
2501 } else {
2502 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002503 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002504 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002505 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002506 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002507 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002508 }
2509
2510 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002511 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002512 return;
2513 }
2514 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2515 // Extract appropriate subvector and generate a vector shuffle
2516 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002517 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002518 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002519 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002520 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002521 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002522 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002523 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002524 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002525 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002526 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002527 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002528 int Idx = Mask[i];
2529 if (Idx < 0)
2530 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002531 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002532 MappedOps.push_back(Idx - StartIdx[0]);
2533 else
2534 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002535 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002536 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2537 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002538 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002539 }
2540 }
2541
Mon P Wangc7849c22008-11-16 05:06:27 +00002542 // We can't use either concat vectors or extract subvectors so fall back to
2543 // replacing the shuffle with extract and build vector.
2544 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002545 MVT EltVT = VT.getVectorElementType();
2546 MVT PtrVT = TLI.getPointerTy();
2547 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002548 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002549 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002550 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002551 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002552 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002553 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002554 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002555 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002556 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002557 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002558 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002559 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002560 }
2561 }
Evan Chenga87008d2009-02-25 22:49:59 +00002562 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2563 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002564}
2565
2566void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2567 const Value *Op0 = I.getOperand(0);
2568 const Value *Op1 = I.getOperand(1);
2569 const Type *AggTy = I.getType();
2570 const Type *ValTy = Op1->getType();
2571 bool IntoUndef = isa<UndefValue>(Op0);
2572 bool FromUndef = isa<UndefValue>(Op1);
2573
2574 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2575 I.idx_begin(), I.idx_end());
2576
2577 SmallVector<MVT, 4> AggValueVTs;
2578 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2579 SmallVector<MVT, 4> ValValueVTs;
2580 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2581
2582 unsigned NumAggValues = AggValueVTs.size();
2583 unsigned NumValValues = ValValueVTs.size();
2584 SmallVector<SDValue, 4> Values(NumAggValues);
2585
2586 SDValue Agg = getValue(Op0);
2587 SDValue Val = getValue(Op1);
2588 unsigned i = 0;
2589 // Copy the beginning value(s) from the original aggregate.
2590 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002591 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002592 SDValue(Agg.getNode(), Agg.getResNo() + i);
2593 // Copy values from the inserted value(s).
2594 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002595 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002596 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2597 // Copy remaining value(s) from the original aggregate.
2598 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002599 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002600 SDValue(Agg.getNode(), Agg.getResNo() + i);
2601
Scott Michelfdc40a02009-02-17 22:15:04 +00002602 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002603 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2604 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002605}
2606
2607void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2608 const Value *Op0 = I.getOperand(0);
2609 const Type *AggTy = Op0->getType();
2610 const Type *ValTy = I.getType();
2611 bool OutOfUndef = isa<UndefValue>(Op0);
2612
2613 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2614 I.idx_begin(), I.idx_end());
2615
2616 SmallVector<MVT, 4> ValValueVTs;
2617 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2618
2619 unsigned NumValValues = ValValueVTs.size();
2620 SmallVector<SDValue, 4> Values(NumValValues);
2621
2622 SDValue Agg = getValue(Op0);
2623 // Copy out the selected value(s).
2624 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2625 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002626 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002627 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002628 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002629
Scott Michelfdc40a02009-02-17 22:15:04 +00002630 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002631 DAG.getVTList(&ValValueVTs[0], NumValValues),
2632 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002633}
2634
2635
2636void SelectionDAGLowering::visitGetElementPtr(User &I) {
2637 SDValue N = getValue(I.getOperand(0));
2638 const Type *Ty = I.getOperand(0)->getType();
2639
2640 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2641 OI != E; ++OI) {
2642 Value *Idx = *OI;
2643 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2644 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2645 if (Field) {
2646 // N = N + Offset
2647 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002648 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002649 DAG.getIntPtrConstant(Offset));
2650 }
2651 Ty = StTy->getElementType(Field);
2652 } else {
2653 Ty = cast<SequentialType>(Ty)->getElementType();
2654
2655 // If this is a constant subscript, handle it quickly.
2656 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2657 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002658 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002659 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002660 SDValue OffsVal;
Evan Chengb1032a82009-02-09 20:54:38 +00002661 unsigned PtrBits = TLI.getPointerTy().getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002662 if (PtrBits < 64) {
2663 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2664 TLI.getPointerTy(),
2665 DAG.getConstant(Offs, MVT::i64));
2666 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002667 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002668 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002669 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002670 continue;
2671 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002672
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002673 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +00002674 uint64_t ElementSize = TD->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002675 SDValue IdxN = getValue(Idx);
2676
2677 // If the index is smaller or larger than intptr_t, truncate or extend
2678 // it.
2679 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002680 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002681 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002682 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002683 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002684 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002685
2686 // If this is a multiply by a power of two, turn it into a shl
2687 // immediately. This is a very common case.
2688 if (ElementSize != 1) {
2689 if (isPowerOf2_64(ElementSize)) {
2690 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002691 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002692 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002693 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002694 } else {
2695 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002696 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002697 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002698 }
2699 }
2700
Scott Michelfdc40a02009-02-17 22:15:04 +00002701 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002702 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002703 }
2704 }
2705 setValue(&I, N);
2706}
2707
2708void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2709 // If this is a fixed sized alloca in the entry block of the function,
2710 // allocate it statically on the stack.
2711 if (FuncInfo.StaticAllocaMap.count(&I))
2712 return; // getValue will auto-populate this.
2713
2714 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002715 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002716 unsigned Align =
2717 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2718 I.getAlignment());
2719
2720 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002721
2722 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2723 AllocSize,
2724 DAG.getConstant(TySize, AllocSize.getValueType()));
2725
2726
2727
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002728 MVT IntPtr = TLI.getPointerTy();
2729 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002730 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002731 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002732 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002733 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002734 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002735
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002736 // Handle alignment. If the requested alignment is less than or equal to
2737 // the stack alignment, ignore it. If the size is greater than or equal to
2738 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2739 unsigned StackAlign =
2740 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2741 if (Align <= StackAlign)
2742 Align = 0;
2743
2744 // Round the size of the allocation up to the stack alignment size
2745 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002746 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002747 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002748 DAG.getIntPtrConstant(StackAlign-1));
2749 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002750 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002751 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002752 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2753
2754 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Dan Gohmanfc166572009-04-09 23:54:40 +00002755 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002756 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002757 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002758 setValue(&I, DSA);
2759 DAG.setRoot(DSA.getValue(1));
2760
2761 // Inform the Frame Information that we have just allocated a variable-sized
2762 // object.
2763 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2764}
2765
2766void SelectionDAGLowering::visitLoad(LoadInst &I) {
2767 const Value *SV = I.getOperand(0);
2768 SDValue Ptr = getValue(SV);
2769
2770 const Type *Ty = I.getType();
2771 bool isVolatile = I.isVolatile();
2772 unsigned Alignment = I.getAlignment();
2773
2774 SmallVector<MVT, 4> ValueVTs;
2775 SmallVector<uint64_t, 4> Offsets;
2776 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2777 unsigned NumValues = ValueVTs.size();
2778 if (NumValues == 0)
2779 return;
2780
2781 SDValue Root;
2782 bool ConstantMemory = false;
2783 if (I.isVolatile())
2784 // Serialize volatile loads with other side effects.
2785 Root = getRoot();
2786 else if (AA->pointsToConstantMemory(SV)) {
2787 // Do not serialize (non-volatile) loads of constant memory with anything.
2788 Root = DAG.getEntryNode();
2789 ConstantMemory = true;
2790 } else {
2791 // Do not serialize non-volatile loads against each other.
2792 Root = DAG.getRoot();
2793 }
2794
2795 SmallVector<SDValue, 4> Values(NumValues);
2796 SmallVector<SDValue, 4> Chains(NumValues);
2797 MVT PtrVT = Ptr.getValueType();
2798 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002799 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002800 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002801 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002802 DAG.getConstant(Offsets[i], PtrVT)),
2803 SV, Offsets[i],
2804 isVolatile, Alignment);
2805 Values[i] = L;
2806 Chains[i] = L.getValue(1);
2807 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002808
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002809 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002810 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002811 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002812 &Chains[0], NumValues);
2813 if (isVolatile)
2814 DAG.setRoot(Chain);
2815 else
2816 PendingLoads.push_back(Chain);
2817 }
2818
Scott Michelfdc40a02009-02-17 22:15:04 +00002819 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002820 DAG.getVTList(&ValueVTs[0], NumValues),
2821 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002822}
2823
2824
2825void SelectionDAGLowering::visitStore(StoreInst &I) {
2826 Value *SrcV = I.getOperand(0);
2827 Value *PtrV = I.getOperand(1);
2828
2829 SmallVector<MVT, 4> ValueVTs;
2830 SmallVector<uint64_t, 4> Offsets;
2831 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2832 unsigned NumValues = ValueVTs.size();
2833 if (NumValues == 0)
2834 return;
2835
2836 // Get the lowered operands. Note that we do this after
2837 // checking if NumResults is zero, because with zero results
2838 // the operands won't have values in the map.
2839 SDValue Src = getValue(SrcV);
2840 SDValue Ptr = getValue(PtrV);
2841
2842 SDValue Root = getRoot();
2843 SmallVector<SDValue, 4> Chains(NumValues);
2844 MVT PtrVT = Ptr.getValueType();
2845 bool isVolatile = I.isVolatile();
2846 unsigned Alignment = I.getAlignment();
2847 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002848 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002849 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002850 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002851 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002852 DAG.getConstant(Offsets[i], PtrVT)),
2853 PtrV, Offsets[i],
2854 isVolatile, Alignment);
2855
Scott Michelfdc40a02009-02-17 22:15:04 +00002856 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002857 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002858}
2859
2860/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2861/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002862void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002863 unsigned Intrinsic) {
2864 bool HasChain = !I.doesNotAccessMemory();
2865 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2866
2867 // Build the operand list.
2868 SmallVector<SDValue, 8> Ops;
2869 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2870 if (OnlyLoad) {
2871 // We don't need to serialize loads against other loads.
2872 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002873 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002874 Ops.push_back(getRoot());
2875 }
2876 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002877
2878 // Info is set by getTgtMemInstrinsic
2879 TargetLowering::IntrinsicInfo Info;
2880 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2881
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002882 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002883 if (!IsTgtIntrinsic)
2884 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002885
2886 // Add all operands of the call to the operand list.
2887 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2888 SDValue Op = getValue(I.getOperand(i));
2889 assert(TLI.isTypeLegal(Op.getValueType()) &&
2890 "Intrinsic uses a non-legal type?");
2891 Ops.push_back(Op);
2892 }
2893
Dan Gohmanfc166572009-04-09 23:54:40 +00002894 std::vector<MVT> VTArray;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002895 if (I.getType() != Type::VoidTy) {
2896 MVT VT = TLI.getValueType(I.getType());
2897 if (VT.isVector()) {
2898 const VectorType *DestTy = cast<VectorType>(I.getType());
2899 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002900
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002901 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2902 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2903 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002904
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002905 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
Dan Gohmanfc166572009-04-09 23:54:40 +00002906 VTArray.push_back(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002907 }
2908 if (HasChain)
Dan Gohmanfc166572009-04-09 23:54:40 +00002909 VTArray.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002910
Dan Gohmanfc166572009-04-09 23:54:40 +00002911 SDVTList VTs = DAG.getVTList(&VTArray[0], VTArray.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002912
2913 // Create the node.
2914 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002915 if (IsTgtIntrinsic) {
2916 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002917 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002918 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002919 Info.memVT, Info.ptrVal, Info.offset,
2920 Info.align, Info.vol,
2921 Info.readMem, Info.writeMem);
2922 }
2923 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002924 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002925 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002926 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002927 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002928 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002929 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002930 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002931 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002932
2933 if (HasChain) {
2934 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2935 if (OnlyLoad)
2936 PendingLoads.push_back(Chain);
2937 else
2938 DAG.setRoot(Chain);
2939 }
2940 if (I.getType() != Type::VoidTy) {
2941 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2942 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002943 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002944 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002945 setValue(&I, Result);
2946 }
2947}
2948
2949/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2950static GlobalVariable *ExtractTypeInfo(Value *V) {
2951 V = V->stripPointerCasts();
2952 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2953 assert ((GV || isa<ConstantPointerNull>(V)) &&
2954 "TypeInfo must be a global variable or NULL");
2955 return GV;
2956}
2957
2958namespace llvm {
2959
2960/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2961/// call, and add them to the specified machine basic block.
2962void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2963 MachineBasicBlock *MBB) {
2964 // Inform the MachineModuleInfo of the personality for this landing pad.
2965 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2966 assert(CE->getOpcode() == Instruction::BitCast &&
2967 isa<Function>(CE->getOperand(0)) &&
2968 "Personality should be a function");
2969 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2970
2971 // Gather all the type infos for this landing pad and pass them along to
2972 // MachineModuleInfo.
2973 std::vector<GlobalVariable *> TyInfo;
2974 unsigned N = I.getNumOperands();
2975
2976 for (unsigned i = N - 1; i > 2; --i) {
2977 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2978 unsigned FilterLength = CI->getZExtValue();
2979 unsigned FirstCatch = i + FilterLength + !FilterLength;
2980 assert (FirstCatch <= N && "Invalid filter length");
2981
2982 if (FirstCatch < N) {
2983 TyInfo.reserve(N - FirstCatch);
2984 for (unsigned j = FirstCatch; j < N; ++j)
2985 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2986 MMI->addCatchTypeInfo(MBB, TyInfo);
2987 TyInfo.clear();
2988 }
2989
2990 if (!FilterLength) {
2991 // Cleanup.
2992 MMI->addCleanup(MBB);
2993 } else {
2994 // Filter.
2995 TyInfo.reserve(FilterLength - 1);
2996 for (unsigned j = i + 1; j < FirstCatch; ++j)
2997 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2998 MMI->addFilterTypeInfo(MBB, TyInfo);
2999 TyInfo.clear();
3000 }
3001
3002 N = i;
3003 }
3004 }
3005
3006 if (N > 3) {
3007 TyInfo.reserve(N - 3);
3008 for (unsigned j = 3; j < N; ++j)
3009 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3010 MMI->addCatchTypeInfo(MBB, TyInfo);
3011 }
3012}
3013
3014}
3015
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003016/// GetSignificand - Get the significand and build it into a floating-point
3017/// number with exponent of 1:
3018///
3019/// Op = (Op & 0x007fffff) | 0x3f800000;
3020///
3021/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003022static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003023GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3024 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003025 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003026 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003027 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003028 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003029}
3030
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003031/// GetExponent - Get the exponent:
3032///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003033/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003034///
3035/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003036static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003037GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3038 DebugLoc dl) {
3039 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003040 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003041 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003042 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003043 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003044 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003045 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003046}
3047
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003048/// getF32Constant - Get 32-bit floating point constant.
3049static SDValue
3050getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3051 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3052}
3053
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003054/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003055/// visitIntrinsicCall: I is a call instruction
3056/// Op is the associated NodeType for I
3057const char *
3058SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003059 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003060 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003061 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003062 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003063 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003064 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003065 getValue(I.getOperand(2)),
3066 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003067 setValue(&I, L);
3068 DAG.setRoot(L.getValue(1));
3069 return 0;
3070}
3071
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003072// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003073const char *
3074SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003075 SDValue Op1 = getValue(I.getOperand(1));
3076 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003077
Dan Gohmanfc166572009-04-09 23:54:40 +00003078 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
3079 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003080
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003081 setValue(&I, Result);
3082 return 0;
3083}
Bill Wendling74c37652008-12-09 22:08:41 +00003084
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003085/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3086/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003087void
3088SelectionDAGLowering::visitExp(CallInst &I) {
3089 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003090 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003091
3092 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3093 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3094 SDValue Op = getValue(I.getOperand(1));
3095
3096 // Put the exponent in the right bit position for later addition to the
3097 // final result:
3098 //
3099 // #define LOG2OFe 1.4426950f
3100 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003101 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003102 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003103 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003104
3105 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003106 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3107 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003108
3109 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003110 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003111 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003112
3113 if (LimitFloatPrecision <= 6) {
3114 // For floating-point precision of 6:
3115 //
3116 // TwoToFractionalPartOfX =
3117 // 0.997535578f +
3118 // (0.735607626f + 0.252464424f * x) * x;
3119 //
3120 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003121 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003122 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003123 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003124 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003125 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3126 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003127 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003128 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003129
3130 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003131 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003132 TwoToFracPartOfX, IntegerPartOfX);
3133
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003134 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003135 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3136 // For floating-point precision of 12:
3137 //
3138 // TwoToFractionalPartOfX =
3139 // 0.999892986f +
3140 // (0.696457318f +
3141 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3142 //
3143 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003144 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003145 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003146 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003147 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003148 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3149 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003150 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003151 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3152 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003153 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003154 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003155
3156 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003157 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003158 TwoToFracPartOfX, IntegerPartOfX);
3159
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003160 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003161 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3162 // For floating-point precision of 18:
3163 //
3164 // TwoToFractionalPartOfX =
3165 // 0.999999982f +
3166 // (0.693148872f +
3167 // (0.240227044f +
3168 // (0.554906021e-1f +
3169 // (0.961591928e-2f +
3170 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3171 //
3172 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003173 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003174 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003175 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003176 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003177 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3178 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003179 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003180 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3181 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003182 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003183 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3184 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003185 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003186 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3187 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003188 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003189 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3190 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003191 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003192 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003193 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003194
3195 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003196 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003197 TwoToFracPartOfX, IntegerPartOfX);
3198
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003199 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003200 }
3201 } else {
3202 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003203 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003204 getValue(I.getOperand(1)).getValueType(),
3205 getValue(I.getOperand(1)));
3206 }
3207
Dale Johannesen59e577f2008-09-05 18:38:42 +00003208 setValue(&I, result);
3209}
3210
Bill Wendling39150252008-09-09 20:39:27 +00003211/// visitLog - Lower a log intrinsic. Handles the special sequences for
3212/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003213void
3214SelectionDAGLowering::visitLog(CallInst &I) {
3215 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003216 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003217
3218 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3219 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3220 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003221 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003222
3223 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003224 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003225 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003226 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003227
3228 // Get the significand and build it into a floating-point number with
3229 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003230 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003231
3232 if (LimitFloatPrecision <= 6) {
3233 // For floating-point precision of 6:
3234 //
3235 // LogofMantissa =
3236 // -1.1609546f +
3237 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003238 //
Bill Wendling39150252008-09-09 20:39:27 +00003239 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003240 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003241 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003242 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003243 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003244 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3245 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003246 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003247
Scott Michelfdc40a02009-02-17 22:15:04 +00003248 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003249 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003250 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3251 // For floating-point precision of 12:
3252 //
3253 // LogOfMantissa =
3254 // -1.7417939f +
3255 // (2.8212026f +
3256 // (-1.4699568f +
3257 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3258 //
3259 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003260 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003261 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003262 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003263 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003264 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3265 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003266 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003267 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3268 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003269 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003270 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3271 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003272 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003273
Scott Michelfdc40a02009-02-17 22:15:04 +00003274 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003275 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003276 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3277 // For floating-point precision of 18:
3278 //
3279 // LogOfMantissa =
3280 // -2.1072184f +
3281 // (4.2372794f +
3282 // (-3.7029485f +
3283 // (2.2781945f +
3284 // (-0.87823314f +
3285 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3286 //
3287 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003288 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003289 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003290 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003291 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003292 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3293 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003294 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003295 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3296 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003297 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003298 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3299 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003300 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003301 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3302 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003303 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003304 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3305 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003306 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003307
Scott Michelfdc40a02009-02-17 22:15:04 +00003308 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003309 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003310 }
3311 } else {
3312 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003313 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003314 getValue(I.getOperand(1)).getValueType(),
3315 getValue(I.getOperand(1)));
3316 }
3317
Dale Johannesen59e577f2008-09-05 18:38:42 +00003318 setValue(&I, result);
3319}
3320
Bill Wendling3eb59402008-09-09 00:28:24 +00003321/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3322/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003323void
3324SelectionDAGLowering::visitLog2(CallInst &I) {
3325 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003326 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003327
Dale Johannesen853244f2008-09-05 23:49:37 +00003328 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003329 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3330 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003331 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003332
Bill Wendling39150252008-09-09 20:39:27 +00003333 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003334 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003335
3336 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003337 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003338 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003339
Bill Wendling3eb59402008-09-09 00:28:24 +00003340 // Different possible minimax approximations of significand in
3341 // floating-point for various degrees of accuracy over [1,2].
3342 if (LimitFloatPrecision <= 6) {
3343 // For floating-point precision of 6:
3344 //
3345 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3346 //
3347 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003348 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003349 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003350 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003351 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003352 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3353 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003354 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003355
Scott Michelfdc40a02009-02-17 22:15:04 +00003356 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003357 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003358 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3359 // For floating-point precision of 12:
3360 //
3361 // Log2ofMantissa =
3362 // -2.51285454f +
3363 // (4.07009056f +
3364 // (-2.12067489f +
3365 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003366 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003367 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003368 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003369 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003370 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003371 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003372 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3373 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003374 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003375 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3376 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003377 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003378 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3379 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003380 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003381
Scott Michelfdc40a02009-02-17 22:15:04 +00003382 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003383 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003384 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3385 // For floating-point precision of 18:
3386 //
3387 // Log2ofMantissa =
3388 // -3.0400495f +
3389 // (6.1129976f +
3390 // (-5.3420409f +
3391 // (3.2865683f +
3392 // (-1.2669343f +
3393 // (0.27515199f -
3394 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3395 //
3396 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003397 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003398 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003399 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003400 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003401 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3402 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003403 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003404 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3405 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003406 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003407 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3408 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003409 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003410 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3411 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003412 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003413 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3414 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003415 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003416
Scott Michelfdc40a02009-02-17 22:15:04 +00003417 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003418 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003419 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003420 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003421 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003422 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003423 getValue(I.getOperand(1)).getValueType(),
3424 getValue(I.getOperand(1)));
3425 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003426
Dale Johannesen59e577f2008-09-05 18:38:42 +00003427 setValue(&I, result);
3428}
3429
Bill Wendling3eb59402008-09-09 00:28:24 +00003430/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3431/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003432void
3433SelectionDAGLowering::visitLog10(CallInst &I) {
3434 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003435 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003436
Dale Johannesen852680a2008-09-05 21:27:19 +00003437 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003438 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3439 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003440 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003441
Bill Wendling39150252008-09-09 20:39:27 +00003442 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003443 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003444 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003445 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003446
3447 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003448 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003449 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003450
3451 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003452 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003453 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003454 // Log10ofMantissa =
3455 // -0.50419619f +
3456 // (0.60948995f - 0.10380950f * x) * x;
3457 //
3458 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003459 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003460 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003461 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003462 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003463 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3464 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003465 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003466
Scott Michelfdc40a02009-02-17 22:15:04 +00003467 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003468 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003469 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3470 // For floating-point precision of 12:
3471 //
3472 // Log10ofMantissa =
3473 // -0.64831180f +
3474 // (0.91751397f +
3475 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3476 //
3477 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003478 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003479 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003480 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003481 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003482 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3483 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003484 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003485 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3486 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003487 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003488
Scott Michelfdc40a02009-02-17 22:15:04 +00003489 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003490 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003491 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003492 // For floating-point precision of 18:
3493 //
3494 // Log10ofMantissa =
3495 // -0.84299375f +
3496 // (1.5327582f +
3497 // (-1.0688956f +
3498 // (0.49102474f +
3499 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3500 //
3501 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003502 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003503 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003504 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003505 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003506 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3507 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003508 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003509 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3510 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003511 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003512 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3513 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003514 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003515 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3516 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003517 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003518
Scott Michelfdc40a02009-02-17 22:15:04 +00003519 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003520 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003521 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003522 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003523 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003524 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003525 getValue(I.getOperand(1)).getValueType(),
3526 getValue(I.getOperand(1)));
3527 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003528
Dale Johannesen59e577f2008-09-05 18:38:42 +00003529 setValue(&I, result);
3530}
3531
Bill Wendlinge10c8142008-09-09 22:39:21 +00003532/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3533/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003534void
3535SelectionDAGLowering::visitExp2(CallInst &I) {
3536 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003537 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003538
Dale Johannesen601d3c02008-09-05 01:48:15 +00003539 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003540 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3541 SDValue Op = getValue(I.getOperand(1));
3542
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003543 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003544
3545 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003546 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3547 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003548
3549 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003550 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003551 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003552
3553 if (LimitFloatPrecision <= 6) {
3554 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003555 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003556 // TwoToFractionalPartOfX =
3557 // 0.997535578f +
3558 // (0.735607626f + 0.252464424f * x) * x;
3559 //
3560 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003561 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003562 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003563 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003564 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003565 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3566 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003567 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003568 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003569 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003570 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003571
Scott Michelfdc40a02009-02-17 22:15:04 +00003572 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003573 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003574 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3575 // For floating-point precision of 12:
3576 //
3577 // TwoToFractionalPartOfX =
3578 // 0.999892986f +
3579 // (0.696457318f +
3580 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3581 //
3582 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003583 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003584 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003585 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003586 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003587 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3588 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003589 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003590 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3591 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003592 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003593 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003594 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003595 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003596
Scott Michelfdc40a02009-02-17 22:15:04 +00003597 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003598 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003599 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3600 // For floating-point precision of 18:
3601 //
3602 // TwoToFractionalPartOfX =
3603 // 0.999999982f +
3604 // (0.693148872f +
3605 // (0.240227044f +
3606 // (0.554906021e-1f +
3607 // (0.961591928e-2f +
3608 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3609 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003610 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003611 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003612 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003613 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003614 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3615 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003616 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003617 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3618 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003619 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003620 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3621 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003622 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003623 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3624 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003625 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003626 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3627 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003628 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003629 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003630 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003631 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003632
Scott Michelfdc40a02009-02-17 22:15:04 +00003633 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003634 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003635 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003636 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003637 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003638 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003639 getValue(I.getOperand(1)).getValueType(),
3640 getValue(I.getOperand(1)));
3641 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003642
Dale Johannesen601d3c02008-09-05 01:48:15 +00003643 setValue(&I, result);
3644}
3645
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003646/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3647/// limited-precision mode with x == 10.0f.
3648void
3649SelectionDAGLowering::visitPow(CallInst &I) {
3650 SDValue result;
3651 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003652 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003653 bool IsExp10 = false;
3654
3655 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003656 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003657 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3658 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3659 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3660 APFloat Ten(10.0f);
3661 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3662 }
3663 }
3664 }
3665
3666 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3667 SDValue Op = getValue(I.getOperand(2));
3668
3669 // Put the exponent in the right bit position for later addition to the
3670 // final result:
3671 //
3672 // #define LOG2OF10 3.3219281f
3673 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003674 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003675 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003676 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003677
3678 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003679 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3680 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003681
3682 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003683 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003684 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003685
3686 if (LimitFloatPrecision <= 6) {
3687 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003688 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003689 // twoToFractionalPartOfX =
3690 // 0.997535578f +
3691 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003692 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003693 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003694 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003695 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003696 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003697 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003698 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3699 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003700 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003701 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003702 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003703 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003704
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003705 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3706 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003707 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3708 // For floating-point precision of 12:
3709 //
3710 // TwoToFractionalPartOfX =
3711 // 0.999892986f +
3712 // (0.696457318f +
3713 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3714 //
3715 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003716 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003717 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003718 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003719 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003720 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3721 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003722 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003723 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3724 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003725 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003726 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003727 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003728 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003729
Scott Michelfdc40a02009-02-17 22:15:04 +00003730 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003731 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003732 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3733 // For floating-point precision of 18:
3734 //
3735 // TwoToFractionalPartOfX =
3736 // 0.999999982f +
3737 // (0.693148872f +
3738 // (0.240227044f +
3739 // (0.554906021e-1f +
3740 // (0.961591928e-2f +
3741 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3742 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003743 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003744 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003745 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003746 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003747 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3748 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003749 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003750 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3751 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003752 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003753 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3754 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003755 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003756 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3757 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003758 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003759 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3760 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003761 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003762 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003763 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003764 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003765
Scott Michelfdc40a02009-02-17 22:15:04 +00003766 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003767 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003768 }
3769 } else {
3770 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003771 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003772 getValue(I.getOperand(1)).getValueType(),
3773 getValue(I.getOperand(1)),
3774 getValue(I.getOperand(2)));
3775 }
3776
3777 setValue(&I, result);
3778}
3779
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003780/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3781/// we want to emit this as a call to a named external function, return the name
3782/// otherwise lower it and return null.
3783const char *
3784SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003785 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003786 switch (Intrinsic) {
3787 default:
3788 // By default, turn this into a target intrinsic node.
3789 visitTargetIntrinsic(I, Intrinsic);
3790 return 0;
3791 case Intrinsic::vastart: visitVAStart(I); return 0;
3792 case Intrinsic::vaend: visitVAEnd(I); return 0;
3793 case Intrinsic::vacopy: visitVACopy(I); return 0;
3794 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003795 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003796 getValue(I.getOperand(1))));
3797 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003798 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003799 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003800 getValue(I.getOperand(1))));
3801 return 0;
3802 case Intrinsic::setjmp:
3803 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3804 break;
3805 case Intrinsic::longjmp:
3806 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3807 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003808 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003809 SDValue Op1 = getValue(I.getOperand(1));
3810 SDValue Op2 = getValue(I.getOperand(2));
3811 SDValue Op3 = getValue(I.getOperand(3));
3812 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003813 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003814 I.getOperand(1), 0, I.getOperand(2), 0));
3815 return 0;
3816 }
Chris Lattner824b9582008-11-21 16:42:48 +00003817 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003818 SDValue Op1 = getValue(I.getOperand(1));
3819 SDValue Op2 = getValue(I.getOperand(2));
3820 SDValue Op3 = getValue(I.getOperand(3));
3821 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003822 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003823 I.getOperand(1), 0));
3824 return 0;
3825 }
Chris Lattner824b9582008-11-21 16:42:48 +00003826 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003827 SDValue Op1 = getValue(I.getOperand(1));
3828 SDValue Op2 = getValue(I.getOperand(2));
3829 SDValue Op3 = getValue(I.getOperand(3));
3830 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3831
3832 // If the source and destination are known to not be aliases, we can
3833 // lower memmove as memcpy.
3834 uint64_t Size = -1ULL;
3835 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003836 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003837 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3838 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003839 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003840 I.getOperand(1), 0, I.getOperand(2), 0));
3841 return 0;
3842 }
3843
Dale Johannesena04b7572009-02-03 23:04:43 +00003844 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003845 I.getOperand(1), 0, I.getOperand(2), 0));
3846 return 0;
3847 }
3848 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003849 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003850 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003851 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003852 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003853 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003854
Bill Wendling98a366d2009-04-29 23:29:43 +00003855 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003856 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003857 SPI.getLine(),
3858 SPI.getColumn(),
3859 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003860 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003861 return 0;
3862 }
3863 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003864 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003865 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003866 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3867 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003868 unsigned LabelID =
3869 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Devang Patel48c7fa22009-04-13 18:13:16 +00003870 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3871 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003872 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003873 return 0;
3874 }
3875 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003876 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003877 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003878
Devang Patel7e1e31f2009-07-02 22:43:26 +00003879 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3880 || !DW->ShouldEmitDwarfDebug())
3881 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003882
Devang Patel7e1e31f2009-07-02 22:43:26 +00003883 MachineFunction &MF = DAG.getMachineFunction();
3884 DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext()));
3885
3886 if (isInlinedFnEnd(REI, MF.getFunction())) {
3887 // This is end of inlined function. Debugging information for inlined
3888 // function is not handled yet (only supported by FastISel).
3889 if (OptLevel == CodeGenOpt::None) {
3890 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3891 if (ID != 0)
3892 // Returned ID is 0 if this is unbalanced "end of inlined
3893 // scope". This could happen if optimizer eats dbg intrinsics or
3894 // "beginning of inlined scope" is not recoginized due to missing
3895 // location info. In such cases, do ignore this region.end.
3896 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3897 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003898 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003899 return 0;
3900 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003901
Devang Patel7e1e31f2009-07-02 22:43:26 +00003902 unsigned LabelID =
3903 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
3904 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3905 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003906 return 0;
3907 }
3908 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003909 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003910 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003911 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None) || !DW
3912 || !DW->ShouldEmitDwarfDebug())
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003913 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003914
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003915 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003916 // This is a beginning of an inlined function.
3917 if (isInlinedFnStart(FSI, MF.getFunction())) {
3918 if (OptLevel != CodeGenOpt::None)
3919 // FIXME: Debugging informaation for inlined function is only
3920 // supported at CodeGenOpt::Node.
3921 return 0;
3922
Bill Wendlingc677fe52009-05-10 00:10:50 +00003923 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003924 // If llvm.dbg.func.start is seen in a new block before any
3925 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3926 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3927 if (PrevLoc.isUnknown())
3928 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003929
Devang Patel7e1e31f2009-07-02 22:43:26 +00003930 // Record the source line.
3931 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3932
3933 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
3934 DISubprogram SP(cast<GlobalVariable>(FSI.getSubprogram()));
3935 DICompileUnit CU(PrevLocTpl.CompileUnit);
3936 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3937 PrevLocTpl.Line,
3938 PrevLocTpl.Col);
3939 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3940 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003941 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003942 }
3943
Devang Patel07b0ec02009-07-02 00:08:09 +00003944 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003945 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Devang Patel07b0ec02009-07-02 00:08:09 +00003946
Devang Patel7e1e31f2009-07-02 22:43:26 +00003947 // llvm.dbg.func_start also defines beginning of function scope.
3948 DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003949 return 0;
3950 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003951 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003952 if (OptLevel != CodeGenOpt::None)
3953 // FIXME: Variable debug info is not supported here.
3954 return 0;
3955
3956 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3957 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3958 return 0;
3959
3960 Value *Variable = DI.getVariable();
3961 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
3962 getValue(DI.getAddress()), getValue(Variable)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003963 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003964 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003965 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003966 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003967 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003968 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3969 SDValue Ops[1];
3970 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003971 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003972 setValue(&I, Op);
3973 DAG.setRoot(Op.getValue(1));
3974 return 0;
3975 }
3976
3977 case Intrinsic::eh_selector_i32:
3978 case Intrinsic::eh_selector_i64: {
3979 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3980 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
3981 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003982
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003983 if (MMI) {
3984 if (CurMBB->isLandingPad())
3985 AddCatchInfo(I, MMI, CurMBB);
3986 else {
3987#ifndef NDEBUG
3988 FuncInfo.CatchInfoLost.insert(&I);
3989#endif
3990 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3991 unsigned Reg = TLI.getExceptionSelectorRegister();
3992 if (Reg) CurMBB->addLiveIn(Reg);
3993 }
3994
3995 // Insert the EHSELECTION instruction.
3996 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
3997 SDValue Ops[2];
3998 Ops[0] = getValue(I.getOperand(1));
3999 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004000 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004001 setValue(&I, Op);
4002 DAG.setRoot(Op.getValue(1));
4003 } else {
4004 setValue(&I, DAG.getConstant(0, VT));
4005 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004006
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004007 return 0;
4008 }
4009
4010 case Intrinsic::eh_typeid_for_i32:
4011 case Intrinsic::eh_typeid_for_i64: {
4012 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4013 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4014 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004015
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004016 if (MMI) {
4017 // Find the type id for the given typeinfo.
4018 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4019
4020 unsigned TypeID = MMI->getTypeIDFor(GV);
4021 setValue(&I, DAG.getConstant(TypeID, VT));
4022 } else {
4023 // Return something different to eh_selector.
4024 setValue(&I, DAG.getConstant(1, VT));
4025 }
4026
4027 return 0;
4028 }
4029
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004030 case Intrinsic::eh_return_i32:
4031 case Intrinsic::eh_return_i64:
4032 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004033 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004034 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004035 MVT::Other,
4036 getControlRoot(),
4037 getValue(I.getOperand(1)),
4038 getValue(I.getOperand(2))));
4039 } else {
4040 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4041 }
4042
4043 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004044 case Intrinsic::eh_unwind_init:
4045 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4046 MMI->setCallsUnwindInit(true);
4047 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004048
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004049 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004050
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004051 case Intrinsic::eh_dwarf_cfa: {
4052 MVT VT = getValue(I.getOperand(1)).getValueType();
4053 SDValue CfaArg;
4054 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004055 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004056 TLI.getPointerTy(), getValue(I.getOperand(1)));
4057 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004058 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004059 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004060
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004061 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004062 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004063 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004064 TLI.getPointerTy()),
4065 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004066 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004067 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004068 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004069 TLI.getPointerTy(),
4070 DAG.getConstant(0,
4071 TLI.getPointerTy())),
4072 Offset));
4073 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004074 }
4075
Mon P Wang77cdf302008-11-10 20:54:11 +00004076 case Intrinsic::convertff:
4077 case Intrinsic::convertfsi:
4078 case Intrinsic::convertfui:
4079 case Intrinsic::convertsif:
4080 case Intrinsic::convertuif:
4081 case Intrinsic::convertss:
4082 case Intrinsic::convertsu:
4083 case Intrinsic::convertus:
4084 case Intrinsic::convertuu: {
4085 ISD::CvtCode Code = ISD::CVT_INVALID;
4086 switch (Intrinsic) {
4087 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4088 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4089 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4090 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4091 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4092 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4093 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4094 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4095 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4096 }
4097 MVT DestVT = TLI.getValueType(I.getType());
4098 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004099 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004100 DAG.getValueType(DestVT),
4101 DAG.getValueType(getValue(Op1).getValueType()),
4102 getValue(I.getOperand(2)),
4103 getValue(I.getOperand(3)),
4104 Code));
4105 return 0;
4106 }
4107
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004108 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004109 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004110 getValue(I.getOperand(1)).getValueType(),
4111 getValue(I.getOperand(1))));
4112 return 0;
4113 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004114 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004115 getValue(I.getOperand(1)).getValueType(),
4116 getValue(I.getOperand(1)),
4117 getValue(I.getOperand(2))));
4118 return 0;
4119 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004120 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004121 getValue(I.getOperand(1)).getValueType(),
4122 getValue(I.getOperand(1))));
4123 return 0;
4124 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004125 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004126 getValue(I.getOperand(1)).getValueType(),
4127 getValue(I.getOperand(1))));
4128 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004129 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004130 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004131 return 0;
4132 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004133 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004134 return 0;
4135 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004136 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004137 return 0;
4138 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004139 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004140 return 0;
4141 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004142 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004143 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004144 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004145 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004146 return 0;
4147 case Intrinsic::pcmarker: {
4148 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004149 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004150 return 0;
4151 }
4152 case Intrinsic::readcyclecounter: {
4153 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004154 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004155 DAG.getVTList(MVT::i64, MVT::Other),
4156 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004157 setValue(&I, Tmp);
4158 DAG.setRoot(Tmp.getValue(1));
4159 return 0;
4160 }
4161 case Intrinsic::part_select: {
4162 // Currently not implemented: just abort
Torok Edwin7d696d82009-07-11 13:10:19 +00004163 llvm_report_error("part_select intrinsic not implemented");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004164 }
4165 case Intrinsic::part_set: {
4166 // Currently not implemented: just abort
Torok Edwin7d696d82009-07-11 13:10:19 +00004167 llvm_report_error("part_set intrinsic not implemented");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004168 }
4169 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004170 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004171 getValue(I.getOperand(1)).getValueType(),
4172 getValue(I.getOperand(1))));
4173 return 0;
4174 case Intrinsic::cttz: {
4175 SDValue Arg = getValue(I.getOperand(1));
4176 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004177 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004178 setValue(&I, result);
4179 return 0;
4180 }
4181 case Intrinsic::ctlz: {
4182 SDValue Arg = getValue(I.getOperand(1));
4183 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004184 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004185 setValue(&I, result);
4186 return 0;
4187 }
4188 case Intrinsic::ctpop: {
4189 SDValue Arg = getValue(I.getOperand(1));
4190 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004191 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004192 setValue(&I, result);
4193 return 0;
4194 }
4195 case Intrinsic::stacksave: {
4196 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004197 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004198 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004199 setValue(&I, Tmp);
4200 DAG.setRoot(Tmp.getValue(1));
4201 return 0;
4202 }
4203 case Intrinsic::stackrestore: {
4204 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004205 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004206 return 0;
4207 }
Bill Wendling57344502008-11-18 11:01:33 +00004208 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004209 // Emit code into the DAG to store the stack guard onto the stack.
4210 MachineFunction &MF = DAG.getMachineFunction();
4211 MachineFrameInfo *MFI = MF.getFrameInfo();
4212 MVT PtrTy = TLI.getPointerTy();
4213
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004214 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4215 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004216
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004217 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004218 MFI->setStackProtectorIndex(FI);
4219
4220 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4221
4222 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004223 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004224 PseudoSourceValue::getFixedStack(FI),
4225 0, true);
4226 setValue(&I, Result);
4227 DAG.setRoot(Result);
4228 return 0;
4229 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004230 case Intrinsic::var_annotation:
4231 // Discard annotate attributes
4232 return 0;
4233
4234 case Intrinsic::init_trampoline: {
4235 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4236
4237 SDValue Ops[6];
4238 Ops[0] = getRoot();
4239 Ops[1] = getValue(I.getOperand(1));
4240 Ops[2] = getValue(I.getOperand(2));
4241 Ops[3] = getValue(I.getOperand(3));
4242 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4243 Ops[5] = DAG.getSrcValue(F);
4244
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004245 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004246 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
4247 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004248
4249 setValue(&I, Tmp);
4250 DAG.setRoot(Tmp.getValue(1));
4251 return 0;
4252 }
4253
4254 case Intrinsic::gcroot:
4255 if (GFI) {
4256 Value *Alloca = I.getOperand(1);
4257 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004258
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004259 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4260 GFI->addStackRoot(FI->getIndex(), TypeMap);
4261 }
4262 return 0;
4263
4264 case Intrinsic::gcread:
4265 case Intrinsic::gcwrite:
4266 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4267 return 0;
4268
4269 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004270 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004271 return 0;
4272 }
4273
4274 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004275 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004276 return 0;
4277 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004278
Bill Wendlingef375462008-11-21 02:38:44 +00004279 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004280 return implVisitAluOverflow(I, ISD::UADDO);
4281 case Intrinsic::sadd_with_overflow:
4282 return implVisitAluOverflow(I, ISD::SADDO);
4283 case Intrinsic::usub_with_overflow:
4284 return implVisitAluOverflow(I, ISD::USUBO);
4285 case Intrinsic::ssub_with_overflow:
4286 return implVisitAluOverflow(I, ISD::SSUBO);
4287 case Intrinsic::umul_with_overflow:
4288 return implVisitAluOverflow(I, ISD::UMULO);
4289 case Intrinsic::smul_with_overflow:
4290 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004291
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004292 case Intrinsic::prefetch: {
4293 SDValue Ops[4];
4294 Ops[0] = getRoot();
4295 Ops[1] = getValue(I.getOperand(1));
4296 Ops[2] = getValue(I.getOperand(2));
4297 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004298 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004299 return 0;
4300 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004302 case Intrinsic::memory_barrier: {
4303 SDValue Ops[6];
4304 Ops[0] = getRoot();
4305 for (int x = 1; x < 6; ++x)
4306 Ops[x] = getValue(I.getOperand(x));
4307
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004308 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004309 return 0;
4310 }
4311 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004312 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004313 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004314 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004315 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4316 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004317 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004318 getValue(I.getOperand(2)),
4319 getValue(I.getOperand(3)),
4320 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004321 setValue(&I, L);
4322 DAG.setRoot(L.getValue(1));
4323 return 0;
4324 }
4325 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004326 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004327 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004328 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004329 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004330 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004331 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004332 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004333 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004334 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004335 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004336 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004337 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004338 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004339 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004340 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004341 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004342 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004343 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004344 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004345 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004346 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004347 }
4348}
4349
4350
4351void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4352 bool IsTailCall,
4353 MachineBasicBlock *LandingPad) {
4354 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4355 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4356 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4357 unsigned BeginLabel = 0, EndLabel = 0;
4358
4359 TargetLowering::ArgListTy Args;
4360 TargetLowering::ArgListEntry Entry;
4361 Args.reserve(CS.arg_size());
4362 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4363 i != e; ++i) {
4364 SDValue ArgNode = getValue(*i);
4365 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4366
4367 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004368 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4369 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4370 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4371 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4372 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4373 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004374 Entry.Alignment = CS.getParamAlignment(attrInd);
4375 Args.push_back(Entry);
4376 }
4377
4378 if (LandingPad && MMI) {
4379 // Insert a label before the invoke call to mark the try range. This can be
4380 // used to detect deletion of the invoke via the MachineModuleInfo.
4381 BeginLabel = MMI->NextLabelID();
4382 // Both PendingLoads and PendingExports must be flushed here;
4383 // this call might not return.
4384 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004385 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4386 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004387 }
4388
4389 std::pair<SDValue,SDValue> Result =
4390 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004391 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004392 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004393 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004394 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004395 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004396 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004397 if (CS.getType() != Type::VoidTy)
4398 setValue(CS.getInstruction(), Result.first);
4399 DAG.setRoot(Result.second);
4400
4401 if (LandingPad && MMI) {
4402 // Insert a label at the end of the invoke call to mark the try range. This
4403 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4404 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004405 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4406 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004407
4408 // Inform MachineModuleInfo of range.
4409 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4410 }
4411}
4412
4413
4414void SelectionDAGLowering::visitCall(CallInst &I) {
4415 const char *RenameFn = 0;
4416 if (Function *F = I.getCalledFunction()) {
4417 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004418 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4419 if (II) {
4420 if (unsigned IID = II->getIntrinsicID(F)) {
4421 RenameFn = visitIntrinsicCall(I, IID);
4422 if (!RenameFn)
4423 return;
4424 }
4425 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004426 if (unsigned IID = F->getIntrinsicID()) {
4427 RenameFn = visitIntrinsicCall(I, IID);
4428 if (!RenameFn)
4429 return;
4430 }
4431 }
4432
4433 // Check for well-known libc/libm calls. If the function is internal, it
4434 // can't be a library call.
4435 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004436 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004437 const char *NameStr = F->getNameStart();
4438 if (NameStr[0] == 'c' &&
4439 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4440 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4441 if (I.getNumOperands() == 3 && // Basic sanity checks.
4442 I.getOperand(1)->getType()->isFloatingPoint() &&
4443 I.getType() == I.getOperand(1)->getType() &&
4444 I.getType() == I.getOperand(2)->getType()) {
4445 SDValue LHS = getValue(I.getOperand(1));
4446 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004447 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004448 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004449 return;
4450 }
4451 } else if (NameStr[0] == 'f' &&
4452 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4453 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4454 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4455 if (I.getNumOperands() == 2 && // Basic sanity checks.
4456 I.getOperand(1)->getType()->isFloatingPoint() &&
4457 I.getType() == I.getOperand(1)->getType()) {
4458 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004459 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004460 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004461 return;
4462 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004463 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004464 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4465 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4466 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4467 if (I.getNumOperands() == 2 && // Basic sanity checks.
4468 I.getOperand(1)->getType()->isFloatingPoint() &&
4469 I.getType() == I.getOperand(1)->getType()) {
4470 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004471 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004472 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004473 return;
4474 }
4475 } else if (NameStr[0] == 'c' &&
4476 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4477 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4478 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4479 if (I.getNumOperands() == 2 && // Basic sanity checks.
4480 I.getOperand(1)->getType()->isFloatingPoint() &&
4481 I.getType() == I.getOperand(1)->getType()) {
4482 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004483 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004484 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004485 return;
4486 }
4487 }
4488 }
4489 } else if (isa<InlineAsm>(I.getOperand(0))) {
4490 visitInlineAsm(&I);
4491 return;
4492 }
4493
4494 SDValue Callee;
4495 if (!RenameFn)
4496 Callee = getValue(I.getOperand(0));
4497 else
Bill Wendling056292f2008-09-16 21:48:12 +00004498 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004499
4500 LowerCallTo(&I, Callee, I.isTailCall());
4501}
4502
4503
4504/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004505/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004506/// Chain/Flag as the input and updates them for the output Chain/Flag.
4507/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004508SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004509 SDValue &Chain,
4510 SDValue *Flag) const {
4511 // Assemble the legal parts into the final values.
4512 SmallVector<SDValue, 4> Values(ValueVTs.size());
4513 SmallVector<SDValue, 8> Parts;
4514 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4515 // Copy the legal parts from the registers.
4516 MVT ValueVT = ValueVTs[Value];
4517 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4518 MVT RegisterVT = RegVTs[Value];
4519
4520 Parts.resize(NumRegs);
4521 for (unsigned i = 0; i != NumRegs; ++i) {
4522 SDValue P;
4523 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004524 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004525 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004526 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004527 *Flag = P.getValue(2);
4528 }
4529 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004530
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004531 // If the source register was virtual and if we know something about it,
4532 // add an assert node.
4533 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4534 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4535 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4536 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4537 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4538 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004539
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004540 unsigned RegSize = RegisterVT.getSizeInBits();
4541 unsigned NumSignBits = LOI.NumSignBits;
4542 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004543
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004544 // FIXME: We capture more information than the dag can represent. For
4545 // now, just use the tightest assertzext/assertsext possible.
4546 bool isSExt = true;
4547 MVT FromVT(MVT::Other);
4548 if (NumSignBits == RegSize)
4549 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4550 else if (NumZeroBits >= RegSize-1)
4551 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4552 else if (NumSignBits > RegSize-8)
4553 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004554 else if (NumZeroBits >= RegSize-8)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004555 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4556 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004557 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004558 else if (NumZeroBits >= RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004559 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004560 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004561 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004562 else if (NumZeroBits >= RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004563 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004564
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004565 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004566 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004567 RegisterVT, P, DAG.getValueType(FromVT));
4568
4569 }
4570 }
4571 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004572
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004573 Parts[i] = P;
4574 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004575
Scott Michelfdc40a02009-02-17 22:15:04 +00004576 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004577 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004578 Part += NumRegs;
4579 Parts.clear();
4580 }
4581
Dale Johannesen66978ee2009-01-31 02:22:37 +00004582 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004583 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4584 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004585}
4586
4587/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004588/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004589/// Chain/Flag as the input and updates them for the output Chain/Flag.
4590/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004591void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004592 SDValue &Chain, SDValue *Flag) const {
4593 // Get the list of the values's legal parts.
4594 unsigned NumRegs = Regs.size();
4595 SmallVector<SDValue, 8> Parts(NumRegs);
4596 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4597 MVT ValueVT = ValueVTs[Value];
4598 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4599 MVT RegisterVT = RegVTs[Value];
4600
Dale Johannesen66978ee2009-01-31 02:22:37 +00004601 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004602 &Parts[Part], NumParts, RegisterVT);
4603 Part += NumParts;
4604 }
4605
4606 // Copy the parts into the registers.
4607 SmallVector<SDValue, 8> Chains(NumRegs);
4608 for (unsigned i = 0; i != NumRegs; ++i) {
4609 SDValue Part;
4610 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004611 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004612 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004613 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004614 *Flag = Part.getValue(1);
4615 }
4616 Chains[i] = Part.getValue(0);
4617 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004618
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004619 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004620 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004621 // flagged to it. That is the CopyToReg nodes and the user are considered
4622 // a single scheduling unit. If we create a TokenFactor and return it as
4623 // chain, then the TokenFactor is both a predecessor (operand) of the
4624 // user as well as a successor (the TF operands are flagged to the user).
4625 // c1, f1 = CopyToReg
4626 // c2, f2 = CopyToReg
4627 // c3 = TokenFactor c1, c2
4628 // ...
4629 // = op c3, ..., f2
4630 Chain = Chains[NumRegs-1];
4631 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004632 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004633}
4634
4635/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004636/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004637/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004638void RegsForValue::AddInlineAsmOperands(unsigned Code,
4639 bool HasMatching,unsigned MatchingIdx,
4640 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004641 std::vector<SDValue> &Ops) const {
4642 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004643 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4644 unsigned Flag = Code | (Regs.size() << 3);
4645 if (HasMatching)
4646 Flag |= 0x80000000 | (MatchingIdx << 16);
4647 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004648 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4649 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4650 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004651 for (unsigned i = 0; i != NumRegs; ++i) {
4652 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004653 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004654 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004655 }
4656}
4657
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004658/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004659/// i.e. it isn't a stack pointer or some other special register, return the
4660/// register class for the register. Otherwise, return null.
4661static const TargetRegisterClass *
4662isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4663 const TargetLowering &TLI,
4664 const TargetRegisterInfo *TRI) {
4665 MVT FoundVT = MVT::Other;
4666 const TargetRegisterClass *FoundRC = 0;
4667 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4668 E = TRI->regclass_end(); RCI != E; ++RCI) {
4669 MVT ThisVT = MVT::Other;
4670
4671 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004672 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004673 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4674 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4675 I != E; ++I) {
4676 if (TLI.isTypeLegal(*I)) {
4677 // If we have already found this register in a different register class,
4678 // choose the one with the largest VT specified. For example, on
4679 // PowerPC, we favor f64 register classes over f32.
4680 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4681 ThisVT = *I;
4682 break;
4683 }
4684 }
4685 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004686
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004687 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004688
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004689 // NOTE: This isn't ideal. In particular, this might allocate the
4690 // frame pointer in functions that need it (due to them not being taken
4691 // out of allocation, because a variable sized allocation hasn't been seen
4692 // yet). This is a slight code pessimization, but should still work.
4693 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4694 E = RC->allocation_order_end(MF); I != E; ++I)
4695 if (*I == Reg) {
4696 // We found a matching register class. Keep looking at others in case
4697 // we find one with larger registers that this physreg is also in.
4698 FoundRC = RC;
4699 FoundVT = ThisVT;
4700 break;
4701 }
4702 }
4703 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004704}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004705
4706
4707namespace llvm {
4708/// AsmOperandInfo - This contains information for each constraint that we are
4709/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004710class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004711 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004712public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004713 /// CallOperand - If this is the result output operand or a clobber
4714 /// this is null, otherwise it is the incoming operand to the CallInst.
4715 /// This gets modified as the asm is processed.
4716 SDValue CallOperand;
4717
4718 /// AssignedRegs - If this is a register or register class operand, this
4719 /// contains the set of register corresponding to the operand.
4720 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004721
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004722 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4723 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4724 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004725
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004726 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4727 /// busy in OutputRegs/InputRegs.
4728 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004729 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004730 std::set<unsigned> &InputRegs,
4731 const TargetRegisterInfo &TRI) const {
4732 if (isOutReg) {
4733 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4734 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4735 }
4736 if (isInReg) {
4737 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4738 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4739 }
4740 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004741
Chris Lattner81249c92008-10-17 17:05:25 +00004742 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4743 /// corresponds to. If there is no Value* for this operand, it returns
4744 /// MVT::Other.
4745 MVT getCallOperandValMVT(const TargetLowering &TLI,
4746 const TargetData *TD) const {
4747 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004748
Chris Lattner81249c92008-10-17 17:05:25 +00004749 if (isa<BasicBlock>(CallOperandVal))
4750 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004751
Chris Lattner81249c92008-10-17 17:05:25 +00004752 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004753
Chris Lattner81249c92008-10-17 17:05:25 +00004754 // If this is an indirect operand, the operand is a pointer to the
4755 // accessed type.
4756 if (isIndirect)
4757 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004758
Chris Lattner81249c92008-10-17 17:05:25 +00004759 // If OpTy is not a single value, it may be a struct/union that we
4760 // can tile with integers.
4761 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4762 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4763 switch (BitSize) {
4764 default: break;
4765 case 1:
4766 case 8:
4767 case 16:
4768 case 32:
4769 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004770 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004771 OpTy = IntegerType::get(BitSize);
4772 break;
4773 }
4774 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004775
Chris Lattner81249c92008-10-17 17:05:25 +00004776 return TLI.getValueType(OpTy, true);
4777 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004778
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004779private:
4780 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4781 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004782 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004783 const TargetRegisterInfo &TRI) {
4784 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4785 Regs.insert(Reg);
4786 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4787 for (; *Aliases; ++Aliases)
4788 Regs.insert(*Aliases);
4789 }
4790};
4791} // end llvm namespace.
4792
4793
4794/// GetRegistersForValue - Assign registers (virtual or physical) for the
4795/// specified operand. We prefer to assign virtual registers, to allow the
4796/// register allocator handle the assignment process. However, if the asm uses
4797/// features that we can't model on machineinstrs, we have SDISel do the
4798/// allocation. This produces generally horrible, but correct, code.
4799///
4800/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004801/// Input and OutputRegs are the set of already allocated physical registers.
4802///
4803void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004804GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004805 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004806 std::set<unsigned> &InputRegs) {
4807 // Compute whether this value requires an input register, an output register,
4808 // or both.
4809 bool isOutReg = false;
4810 bool isInReg = false;
4811 switch (OpInfo.Type) {
4812 case InlineAsm::isOutput:
4813 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004814
4815 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004816 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004817 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004818 break;
4819 case InlineAsm::isInput:
4820 isInReg = true;
4821 isOutReg = false;
4822 break;
4823 case InlineAsm::isClobber:
4824 isOutReg = true;
4825 isInReg = true;
4826 break;
4827 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004828
4829
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004830 MachineFunction &MF = DAG.getMachineFunction();
4831 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004832
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004833 // If this is a constraint for a single physreg, or a constraint for a
4834 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004835 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004836 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4837 OpInfo.ConstraintVT);
4838
4839 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004840 if (OpInfo.ConstraintVT != MVT::Other) {
4841 // If this is a FP input in an integer register (or visa versa) insert a bit
4842 // cast of the input value. More generally, handle any case where the input
4843 // value disagrees with the register class we plan to stick this in.
4844 if (OpInfo.Type == InlineAsm::isInput &&
4845 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4846 // Try to convert to the first MVT that the reg class contains. If the
4847 // types are identical size, use a bitcast to convert (e.g. two differing
4848 // vector types).
4849 MVT RegVT = *PhysReg.second->vt_begin();
4850 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004851 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004852 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004853 OpInfo.ConstraintVT = RegVT;
4854 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4855 // If the input is a FP value and we want it in FP registers, do a
4856 // bitcast to the corresponding integer type. This turns an f64 value
4857 // into i64, which can be passed with two i32 values on a 32-bit
4858 // machine.
4859 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004860 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004861 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004862 OpInfo.ConstraintVT = RegVT;
4863 }
4864 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004865
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004866 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004867 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004868
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004869 MVT RegVT;
4870 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004871
4872 // If this is a constraint for a specific physical register, like {r17},
4873 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004874 if (unsigned AssignedReg = PhysReg.first) {
4875 const TargetRegisterClass *RC = PhysReg.second;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004876 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004877 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004878
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004879 // Get the actual register value type. This is important, because the user
4880 // may have asked for (e.g.) the AX register in i32 type. We need to
4881 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004882 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004883
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004884 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004885 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004886
4887 // If this is an expanded reference, add the rest of the regs to Regs.
4888 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004889 TargetRegisterClass::iterator I = RC->begin();
4890 for (; *I != AssignedReg; ++I)
4891 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004892
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004893 // Already added the first reg.
4894 --NumRegs; ++I;
4895 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004896 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004897 Regs.push_back(*I);
4898 }
4899 }
4900 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4901 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4902 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4903 return;
4904 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004905
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004906 // Otherwise, if this was a reference to an LLVM register class, create vregs
4907 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00004908 if (const TargetRegisterClass *RC = PhysReg.second) {
4909 RegVT = *RC->vt_begin();
Evan Chengfb112882009-03-23 08:01:15 +00004910 if (OpInfo.ConstraintVT == MVT::Other)
4911 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004912
Evan Chengfb112882009-03-23 08:01:15 +00004913 // Create the appropriate number of virtual registers.
4914 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4915 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00004916 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004917
Evan Chengfb112882009-03-23 08:01:15 +00004918 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4919 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004920 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004921
4922 // This is a reference to a register class that doesn't directly correspond
4923 // to an LLVM register class. Allocate NumRegs consecutive, available,
4924 // registers from the class.
4925 std::vector<unsigned> RegClassRegs
4926 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4927 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004928
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004929 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4930 unsigned NumAllocated = 0;
4931 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4932 unsigned Reg = RegClassRegs[i];
4933 // See if this register is available.
4934 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4935 (isInReg && InputRegs.count(Reg))) { // Already used.
4936 // Make sure we find consecutive registers.
4937 NumAllocated = 0;
4938 continue;
4939 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004940
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004941 // Check to see if this register is allocatable (i.e. don't give out the
4942 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004943 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4944 if (!RC) { // Couldn't allocate this register.
4945 // Reset NumAllocated to make sure we return consecutive registers.
4946 NumAllocated = 0;
4947 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004948 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004949
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004950 // Okay, this register is good, we can use it.
4951 ++NumAllocated;
4952
4953 // If we allocated enough consecutive registers, succeed.
4954 if (NumAllocated == NumRegs) {
4955 unsigned RegStart = (i-NumAllocated)+1;
4956 unsigned RegEnd = i+1;
4957 // Mark all of the allocated registers used.
4958 for (unsigned i = RegStart; i != RegEnd; ++i)
4959 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004960
4961 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004962 OpInfo.ConstraintVT);
4963 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4964 return;
4965 }
4966 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004967
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004968 // Otherwise, we couldn't allocate enough registers for this.
4969}
4970
Evan Chengda43bcf2008-09-24 00:05:32 +00004971/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
4972/// processed uses a memory 'm' constraint.
4973static bool
4974hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00004975 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00004976 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
4977 InlineAsm::ConstraintInfo &CI = CInfos[i];
4978 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
4979 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
4980 if (CType == TargetLowering::C_Memory)
4981 return true;
4982 }
Chris Lattner6c147292009-04-30 00:48:50 +00004983
4984 // Indirect operand accesses access memory.
4985 if (CI.isIndirect)
4986 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00004987 }
4988
4989 return false;
4990}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004991
4992/// visitInlineAsm - Handle a call to an InlineAsm object.
4993///
4994void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4995 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
4996
4997 /// ConstraintOperands - Information about all of the constraints.
4998 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004999
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005000 std::set<unsigned> OutputRegs, InputRegs;
5001
5002 // Do a prepass over the constraints, canonicalizing them, and building up the
5003 // ConstraintOperands list.
5004 std::vector<InlineAsm::ConstraintInfo>
5005 ConstraintInfos = IA->ParseConstraints();
5006
Evan Chengda43bcf2008-09-24 00:05:32 +00005007 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005008
5009 SDValue Chain, Flag;
5010
5011 // We won't need to flush pending loads if this asm doesn't touch
5012 // memory and is nonvolatile.
5013 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005014 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005015 else
5016 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005017
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005018 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5019 unsigned ResNo = 0; // ResNo - The result number of the next output.
5020 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5021 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5022 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005023
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005024 MVT OpVT = MVT::Other;
5025
5026 // Compute the value type for each operand.
5027 switch (OpInfo.Type) {
5028 case InlineAsm::isOutput:
5029 // Indirect outputs just consume an argument.
5030 if (OpInfo.isIndirect) {
5031 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5032 break;
5033 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005034
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005035 // The return value of the call is this value. As such, there is no
5036 // corresponding argument.
5037 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5038 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5039 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5040 } else {
5041 assert(ResNo == 0 && "Asm only has one result!");
5042 OpVT = TLI.getValueType(CS.getType());
5043 }
5044 ++ResNo;
5045 break;
5046 case InlineAsm::isInput:
5047 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5048 break;
5049 case InlineAsm::isClobber:
5050 // Nothing to do.
5051 break;
5052 }
5053
5054 // If this is an input or an indirect output, process the call argument.
5055 // BasicBlocks are labels, currently appearing only in asm's.
5056 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005057 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005058 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005059 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005060 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005061 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005062
Chris Lattner81249c92008-10-17 17:05:25 +00005063 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005064 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005065
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005066 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005067 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005068
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005069 // Second pass over the constraints: compute which constraint option to use
5070 // and assign registers to constraints that want a specific physreg.
5071 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5072 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005073
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005074 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005075 // matching input. If their types mismatch, e.g. one is an integer, the
5076 // other is floating point, or their sizes are different, flag it as an
5077 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005078 if (OpInfo.hasMatchingInput()) {
5079 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5080 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005081 if ((OpInfo.ConstraintVT.isInteger() !=
5082 Input.ConstraintVT.isInteger()) ||
5083 (OpInfo.ConstraintVT.getSizeInBits() !=
5084 Input.ConstraintVT.getSizeInBits())) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005085 llvm_report_error("llvm: error: Unsupported asm: input constraint"
5086 " with a matching output constraint of incompatible"
5087 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005088 }
5089 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005090 }
5091 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005092
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005093 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005094 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005095
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005096 // If this is a memory input, and if the operand is not indirect, do what we
5097 // need to to provide an address for the memory input.
5098 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5099 !OpInfo.isIndirect) {
5100 assert(OpInfo.Type == InlineAsm::isInput &&
5101 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005102
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005103 // Memory operands really want the address of the value. If we don't have
5104 // an indirect input, put it in the constpool if we can, otherwise spill
5105 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005106
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005107 // If the operand is a float, integer, or vector constant, spill to a
5108 // constant pool entry to get its address.
5109 Value *OpVal = OpInfo.CallOperandVal;
5110 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5111 isa<ConstantVector>(OpVal)) {
5112 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5113 TLI.getPointerTy());
5114 } else {
5115 // Otherwise, create a stack slot and emit a store to it before the
5116 // asm.
5117 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005118 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005119 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5120 MachineFunction &MF = DAG.getMachineFunction();
5121 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5122 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005123 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005124 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005125 OpInfo.CallOperand = StackSlot;
5126 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005127
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005128 // There is no longer a Value* corresponding to this operand.
5129 OpInfo.CallOperandVal = 0;
5130 // It is now an indirect operand.
5131 OpInfo.isIndirect = true;
5132 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005133
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005134 // If this constraint is for a specific register, allocate it before
5135 // anything else.
5136 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005137 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005138 }
5139 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005140
5141
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005142 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005143 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005144 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5145 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005146
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005147 // C_Register operands have already been allocated, Other/Memory don't need
5148 // to be.
5149 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005150 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005151 }
5152
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005153 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5154 std::vector<SDValue> AsmNodeOperands;
5155 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5156 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005157 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005158
5159
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005160 // Loop over all of the inputs, copying the operand values into the
5161 // appropriate registers and processing the output regs.
5162 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005163
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005164 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5165 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005166
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005167 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5168 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5169
5170 switch (OpInfo.Type) {
5171 case InlineAsm::isOutput: {
5172 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5173 OpInfo.ConstraintType != TargetLowering::C_Register) {
5174 // Memory output, or 'other' output (e.g. 'X' constraint).
5175 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5176
5177 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005178 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5179 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005180 TLI.getPointerTy()));
5181 AsmNodeOperands.push_back(OpInfo.CallOperand);
5182 break;
5183 }
5184
5185 // Otherwise, this is a register or register class output.
5186
5187 // Copy the output from the appropriate register. Find a register that
5188 // we can use.
5189 if (OpInfo.AssignedRegs.Regs.empty()) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005190 llvm_report_error("llvm: error: Couldn't allocate output reg for"
5191 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005192 }
5193
5194 // If this is an indirect operand, store through the pointer after the
5195 // asm.
5196 if (OpInfo.isIndirect) {
5197 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5198 OpInfo.CallOperandVal));
5199 } else {
5200 // This is the result value of the call.
5201 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5202 // Concatenate this output onto the outputs list.
5203 RetValRegs.append(OpInfo.AssignedRegs);
5204 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005205
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005206 // Add information to the INLINEASM node to know that this register is
5207 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005208 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5209 6 /* EARLYCLOBBER REGDEF */ :
5210 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005211 false,
5212 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005213 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005214 break;
5215 }
5216 case InlineAsm::isInput: {
5217 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005218
Chris Lattner6bdcda32008-10-17 16:47:46 +00005219 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005220 // If this is required to match an output register we have already set,
5221 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005222 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005223
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005224 // Scan until we find the definition we already emitted of this operand.
5225 // When we find it, create a RegsForValue operand.
5226 unsigned CurOp = 2; // The first operand.
5227 for (; OperandNo; --OperandNo) {
5228 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005229 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005230 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005231 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5232 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5233 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005234 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005235 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005236 }
5237
Evan Cheng697cbbf2009-03-20 18:03:34 +00005238 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005239 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005240 if ((OpFlag & 7) == 2 /*REGDEF*/
5241 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5242 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005243 if (OpInfo.isIndirect) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005244 llvm_report_error("llvm: error: "
5245 "Don't know how to handle tied indirect "
5246 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005247 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005248 RegsForValue MatchedRegs;
5249 MatchedRegs.TLI = &TLI;
5250 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Evan Chengfb112882009-03-23 08:01:15 +00005251 MVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
5252 MatchedRegs.RegVTs.push_back(RegVT);
5253 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005254 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005255 i != e; ++i)
5256 MatchedRegs.Regs.
5257 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005258
5259 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005260 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5261 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005262 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5263 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005264 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005265 break;
5266 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005267 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5268 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5269 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005270 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005271 // See InlineAsm.h isUseOperandTiedToDef.
5272 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005273 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005274 TLI.getPointerTy()));
5275 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5276 break;
5277 }
5278 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005279
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005280 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005281 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005282 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005283
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005284 std::vector<SDValue> Ops;
5285 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005286 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005287 if (Ops.empty()) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005288 llvm_report_error("llvm: error: Invalid operand for inline asm"
5289 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005290 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005291
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005292 // Add information to the INLINEASM node to know about this input.
5293 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005294 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005295 TLI.getPointerTy()));
5296 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5297 break;
5298 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5299 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5300 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5301 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005302
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005303 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005304 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5305 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005306 TLI.getPointerTy()));
5307 AsmNodeOperands.push_back(InOperandVal);
5308 break;
5309 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005310
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005311 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5312 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5313 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005314 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005315 "Don't know how to handle indirect register inputs yet!");
5316
5317 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005318 if (OpInfo.AssignedRegs.Regs.empty()) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005319 llvm_report_error("llvm: error: Couldn't allocate input reg for"
5320 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005321 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005322
Dale Johannesen66978ee2009-01-31 02:22:37 +00005323 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5324 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005325
Evan Cheng697cbbf2009-03-20 18:03:34 +00005326 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005327 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005328 break;
5329 }
5330 case InlineAsm::isClobber: {
5331 // Add the clobbered value to the operand list, so that the register
5332 // allocator is aware that the physreg got clobbered.
5333 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005334 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005335 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005336 break;
5337 }
5338 }
5339 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005340
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005341 // Finish up input operands.
5342 AsmNodeOperands[0] = Chain;
5343 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005344
Dale Johannesen66978ee2009-01-31 02:22:37 +00005345 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00005346 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005347 &AsmNodeOperands[0], AsmNodeOperands.size());
5348 Flag = Chain.getValue(1);
5349
5350 // If this asm returns a register value, copy the result from that register
5351 // and set it as the value of the call.
5352 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005353 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005354 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005355
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005356 // FIXME: Why don't we do this for inline asms with MRVs?
5357 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5358 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005359
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005360 // If any of the results of the inline asm is a vector, it may have the
5361 // wrong width/num elts. This can happen for register classes that can
5362 // contain multiple different value types. The preg or vreg allocated may
5363 // not have the same VT as was expected. Convert it to the right type
5364 // with bit_convert.
5365 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005366 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005367 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005368
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005369 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005370 ResultType.isInteger() && Val.getValueType().isInteger()) {
5371 // If a result value was tied to an input value, the computed result may
5372 // have a wider width than the expected result. Extract the relevant
5373 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005374 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005375 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005376
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005377 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005378 }
Dan Gohman95915732008-10-18 01:03:45 +00005379
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005380 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005381 // Don't need to use this as a chain in this case.
5382 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5383 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005384 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005385
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005386 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005387
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005388 // Process indirect outputs, first output all of the flagged copies out of
5389 // physregs.
5390 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5391 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5392 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005393 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5394 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005395 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005396
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005397 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005398
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005399 // Emit the non-flagged stores from the physregs.
5400 SmallVector<SDValue, 8> OutChains;
5401 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005402 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005403 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005404 getValue(StoresToEmit[i].second),
5405 StoresToEmit[i].second, 0));
5406 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005407 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005408 &OutChains[0], OutChains.size());
5409 DAG.setRoot(Chain);
5410}
5411
5412
5413void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5414 SDValue Src = getValue(I.getOperand(0));
5415
Chris Lattner0b18e592009-03-17 19:36:00 +00005416 // Scale up by the type size in the original i32 type width. Various
5417 // mid-level optimizers may make assumptions about demanded bits etc from the
5418 // i32-ness of the optimizer: we do not want to promote to i64 and then
5419 // multiply on 64-bit targets.
5420 // FIXME: Malloc inst should go away: PR715.
Duncan Sands777d2302009-05-09 07:06:46 +00005421 uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType());
Chris Lattner0b18e592009-03-17 19:36:00 +00005422 if (ElementSize != 1)
5423 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5424 Src, DAG.getConstant(ElementSize, Src.getValueType()));
5425
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005426 MVT IntPtr = TLI.getPointerTy();
5427
5428 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005429 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005430 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005431 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005432
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005433 TargetLowering::ArgListTy Args;
5434 TargetLowering::ArgListEntry Entry;
5435 Entry.Node = Src;
5436 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5437 Args.push_back(Entry);
5438
5439 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005440 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005441 0, CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005442 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005443 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005444 setValue(&I, Result.first); // Pointers always fit in registers
5445 DAG.setRoot(Result.second);
5446}
5447
5448void SelectionDAGLowering::visitFree(FreeInst &I) {
5449 TargetLowering::ArgListTy Args;
5450 TargetLowering::ArgListEntry Entry;
5451 Entry.Node = getValue(I.getOperand(0));
5452 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5453 Args.push_back(Entry);
5454 MVT IntPtr = TLI.getPointerTy();
5455 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005456 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005457 0, CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005458 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005459 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005460 DAG.setRoot(Result.second);
5461}
5462
5463void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005464 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005465 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005466 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005467 DAG.getSrcValue(I.getOperand(1))));
5468}
5469
5470void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005471 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5472 getRoot(), getValue(I.getOperand(0)),
5473 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005474 setValue(&I, V);
5475 DAG.setRoot(V.getValue(1));
5476}
5477
5478void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005479 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005480 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005481 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005482 DAG.getSrcValue(I.getOperand(1))));
5483}
5484
5485void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005486 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005487 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005488 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005489 getValue(I.getOperand(2)),
5490 DAG.getSrcValue(I.getOperand(1)),
5491 DAG.getSrcValue(I.getOperand(2))));
5492}
5493
5494/// TargetLowering::LowerArguments - This is the default LowerArguments
5495/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005496/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005497/// integrated into SDISel.
5498void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005499 SmallVectorImpl<SDValue> &ArgValues,
5500 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005501 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5502 SmallVector<SDValue, 3+16> Ops;
5503 Ops.push_back(DAG.getRoot());
5504 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5505 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5506
5507 // Add one result value for each formal argument.
5508 SmallVector<MVT, 16> RetVals;
5509 unsigned j = 1;
5510 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5511 I != E; ++I, ++j) {
5512 SmallVector<MVT, 4> ValueVTs;
5513 ComputeValueVTs(*this, I->getType(), ValueVTs);
5514 for (unsigned Value = 0, NumValues = ValueVTs.size();
5515 Value != NumValues; ++Value) {
5516 MVT VT = ValueVTs[Value];
Owen Andersond1474d02009-07-09 17:57:24 +00005517 const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005518 ISD::ArgFlagsTy Flags;
5519 unsigned OriginalAlignment =
5520 getTargetData()->getABITypeAlignment(ArgTy);
5521
Devang Patel05988662008-09-25 21:00:45 +00005522 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005523 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005524 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005525 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005526 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005527 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005528 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005529 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005530 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005531 Flags.setByVal();
5532 const PointerType *Ty = cast<PointerType>(I->getType());
5533 const Type *ElementTy = Ty->getElementType();
5534 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005535 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005536 // For ByVal, alignment should be passed from FE. BE will guess if
5537 // this info is not there but there are cases it cannot get right.
5538 if (F.getParamAlignment(j))
5539 FrameAlign = F.getParamAlignment(j);
5540 Flags.setByValAlign(FrameAlign);
5541 Flags.setByValSize(FrameSize);
5542 }
Devang Patel05988662008-09-25 21:00:45 +00005543 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005544 Flags.setNest();
5545 Flags.setOrigAlign(OriginalAlignment);
5546
5547 MVT RegisterVT = getRegisterType(VT);
5548 unsigned NumRegs = getNumRegisters(VT);
5549 for (unsigned i = 0; i != NumRegs; ++i) {
5550 RetVals.push_back(RegisterVT);
5551 ISD::ArgFlagsTy MyFlags = Flags;
5552 if (NumRegs > 1 && i == 0)
5553 MyFlags.setSplit();
5554 // if it isn't first piece, alignment must be 1
5555 else if (i > 0)
5556 MyFlags.setOrigAlign(1);
5557 Ops.push_back(DAG.getArgFlags(MyFlags));
5558 }
5559 }
5560 }
5561
5562 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005563
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005564 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005565 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005566 DAG.getVTList(&RetVals[0], RetVals.size()),
5567 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005568
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005569 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5570 // allows exposing the loads that may be part of the argument access to the
5571 // first DAGCombiner pass.
5572 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005573
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005574 // The number of results should match up, except that the lowered one may have
5575 // an extra flag result.
5576 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5577 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5578 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5579 && "Lowering produced unexpected number of results!");
5580
5581 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5582 if (Result != TmpRes.getNode() && Result->use_empty()) {
5583 HandleSDNode Dummy(DAG.getRoot());
5584 DAG.RemoveDeadNode(Result);
5585 }
5586
5587 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005588
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005589 unsigned NumArgRegs = Result->getNumValues() - 1;
5590 DAG.setRoot(SDValue(Result, NumArgRegs));
5591
5592 // Set up the return result vector.
5593 unsigned i = 0;
5594 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005595 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005596 ++I, ++Idx) {
5597 SmallVector<MVT, 4> ValueVTs;
5598 ComputeValueVTs(*this, I->getType(), ValueVTs);
5599 for (unsigned Value = 0, NumValues = ValueVTs.size();
5600 Value != NumValues; ++Value) {
5601 MVT VT = ValueVTs[Value];
5602 MVT PartVT = getRegisterType(VT);
5603
5604 unsigned NumParts = getNumRegisters(VT);
5605 SmallVector<SDValue, 4> Parts(NumParts);
5606 for (unsigned j = 0; j != NumParts; ++j)
5607 Parts[j] = SDValue(Result, i++);
5608
5609 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005610 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005611 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005612 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005613 AssertOp = ISD::AssertZext;
5614
Dale Johannesen66978ee2009-01-31 02:22:37 +00005615 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5616 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005617 }
5618 }
5619 assert(i == NumArgRegs && "Argument register count mismatch!");
5620}
5621
5622
5623/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5624/// implementation, which just inserts an ISD::CALL node, which is later custom
5625/// lowered by the target to something concrete. FIXME: When all targets are
5626/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5627std::pair<SDValue, SDValue>
5628TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5629 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005630 bool isInreg, unsigned NumFixedArgs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005631 unsigned CallingConv, bool isTailCall,
5632 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005633 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005634 assert((!isTailCall || PerformTailCallOpt) &&
5635 "isTailCall set when tail-call optimizations are disabled!");
5636
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005637 SmallVector<SDValue, 32> Ops;
5638 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005639 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005640
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005641 // Handle all of the outgoing arguments.
5642 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5643 SmallVector<MVT, 4> ValueVTs;
5644 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5645 for (unsigned Value = 0, NumValues = ValueVTs.size();
5646 Value != NumValues; ++Value) {
5647 MVT VT = ValueVTs[Value];
Owen Andersond1474d02009-07-09 17:57:24 +00005648 const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005649 SDValue Op = SDValue(Args[i].Node.getNode(),
5650 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005651 ISD::ArgFlagsTy Flags;
5652 unsigned OriginalAlignment =
5653 getTargetData()->getABITypeAlignment(ArgTy);
5654
5655 if (Args[i].isZExt)
5656 Flags.setZExt();
5657 if (Args[i].isSExt)
5658 Flags.setSExt();
5659 if (Args[i].isInReg)
5660 Flags.setInReg();
5661 if (Args[i].isSRet)
5662 Flags.setSRet();
5663 if (Args[i].isByVal) {
5664 Flags.setByVal();
5665 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5666 const Type *ElementTy = Ty->getElementType();
5667 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005668 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005669 // For ByVal, alignment should come from FE. BE will guess if this
5670 // info is not there but there are cases it cannot get right.
5671 if (Args[i].Alignment)
5672 FrameAlign = Args[i].Alignment;
5673 Flags.setByValAlign(FrameAlign);
5674 Flags.setByValSize(FrameSize);
5675 }
5676 if (Args[i].isNest)
5677 Flags.setNest();
5678 Flags.setOrigAlign(OriginalAlignment);
5679
5680 MVT PartVT = getRegisterType(VT);
5681 unsigned NumParts = getNumRegisters(VT);
5682 SmallVector<SDValue, 4> Parts(NumParts);
5683 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5684
5685 if (Args[i].isSExt)
5686 ExtendKind = ISD::SIGN_EXTEND;
5687 else if (Args[i].isZExt)
5688 ExtendKind = ISD::ZERO_EXTEND;
5689
Dale Johannesen66978ee2009-01-31 02:22:37 +00005690 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005691
5692 for (unsigned i = 0; i != NumParts; ++i) {
5693 // if it isn't first piece, alignment must be 1
5694 ISD::ArgFlagsTy MyFlags = Flags;
5695 if (NumParts > 1 && i == 0)
5696 MyFlags.setSplit();
5697 else if (i != 0)
5698 MyFlags.setOrigAlign(1);
5699
5700 Ops.push_back(Parts[i]);
5701 Ops.push_back(DAG.getArgFlags(MyFlags));
5702 }
5703 }
5704 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005705
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005706 // Figure out the result value types. We start by making a list of
5707 // the potentially illegal return value types.
5708 SmallVector<MVT, 4> LoweredRetTys;
5709 SmallVector<MVT, 4> RetTys;
5710 ComputeValueVTs(*this, RetTy, RetTys);
5711
5712 // Then we translate that to a list of legal types.
5713 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5714 MVT VT = RetTys[I];
5715 MVT RegisterVT = getRegisterType(VT);
5716 unsigned NumRegs = getNumRegisters(VT);
5717 for (unsigned i = 0; i != NumRegs; ++i)
5718 LoweredRetTys.push_back(RegisterVT);
5719 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005720
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005721 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005722
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005723 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005724 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005725 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005726 DAG.getVTList(&LoweredRetTys[0],
5727 LoweredRetTys.size()),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005728 &Ops[0], Ops.size(), NumFixedArgs
Dale Johannesen86098bd2008-09-26 19:31:26 +00005729 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005730 Chain = Res.getValue(LoweredRetTys.size() - 1);
5731
5732 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005733 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005734 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5735
5736 if (RetSExt)
5737 AssertOp = ISD::AssertSext;
5738 else if (RetZExt)
5739 AssertOp = ISD::AssertZext;
5740
5741 SmallVector<SDValue, 4> ReturnValues;
5742 unsigned RegNo = 0;
5743 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5744 MVT VT = RetTys[I];
5745 MVT RegisterVT = getRegisterType(VT);
5746 unsigned NumRegs = getNumRegisters(VT);
5747 unsigned RegNoEnd = NumRegs + RegNo;
5748 SmallVector<SDValue, 4> Results;
5749 for (; RegNo != RegNoEnd; ++RegNo)
5750 Results.push_back(Res.getValue(RegNo));
5751 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005752 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005753 AssertOp);
5754 ReturnValues.push_back(ReturnValue);
5755 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005756 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005757 DAG.getVTList(&RetTys[0], RetTys.size()),
5758 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005759 }
5760
5761 return std::make_pair(Res, Chain);
5762}
5763
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005764void TargetLowering::LowerOperationWrapper(SDNode *N,
5765 SmallVectorImpl<SDValue> &Results,
5766 SelectionDAG &DAG) {
5767 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005768 if (Res.getNode())
5769 Results.push_back(Res);
5770}
5771
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005772SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005773 LLVM_UNREACHABLE("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005774 return SDValue();
5775}
5776
5777
5778void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5779 SDValue Op = getValue(V);
5780 assert((Op.getOpcode() != ISD::CopyFromReg ||
5781 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5782 "Copy from a reg to the same reg!");
5783 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5784
5785 RegsForValue RFV(TLI, Reg, V->getType());
5786 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005787 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005788 PendingExports.push_back(Chain);
5789}
5790
5791#include "llvm/CodeGen/SelectionDAGISel.h"
5792
5793void SelectionDAGISel::
5794LowerArguments(BasicBlock *LLVMBB) {
5795 // If this is the entry block, emit arguments.
5796 Function &F = *LLVMBB->getParent();
5797 SDValue OldRoot = SDL->DAG.getRoot();
5798 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005799 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005800
5801 unsigned a = 0;
5802 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5803 AI != E; ++AI) {
5804 SmallVector<MVT, 4> ValueVTs;
5805 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5806 unsigned NumValues = ValueVTs.size();
5807 if (!AI->use_empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005808 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues,
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005809 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005810 // If this argument is live outside of the entry block, insert a copy from
5811 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohmanad62f532009-04-23 23:13:24 +00005812 SDL->CopyToExportRegsIfNeeded(AI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005813 }
5814 a += NumValues;
5815 }
5816
5817 // Finally, if the target has anything special to do, allow it to do so.
5818 // FIXME: this should insert code into the DAG!
5819 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5820}
5821
5822/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5823/// ensure constants are generated when needed. Remember the virtual registers
5824/// that need to be added to the Machine PHI nodes as input. We cannot just
5825/// directly add them, because expansion might result in multiple MBB's for one
5826/// BB. As such, the start of the BB might correspond to a different MBB than
5827/// the end.
5828///
5829void
5830SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5831 TerminatorInst *TI = LLVMBB->getTerminator();
5832
5833 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5834
5835 // Check successor nodes' PHI nodes that expect a constant to be available
5836 // from this block.
5837 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5838 BasicBlock *SuccBB = TI->getSuccessor(succ);
5839 if (!isa<PHINode>(SuccBB->begin())) continue;
5840 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005841
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005842 // If this terminator has multiple identical successors (common for
5843 // switches), only handle each succ once.
5844 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005845
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005846 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5847 PHINode *PN;
5848
5849 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5850 // nodes and Machine PHI nodes, but the incoming operands have not been
5851 // emitted yet.
5852 for (BasicBlock::iterator I = SuccBB->begin();
5853 (PN = dyn_cast<PHINode>(I)); ++I) {
5854 // Ignore dead phi's.
5855 if (PN->use_empty()) continue;
5856
5857 unsigned Reg;
5858 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5859
5860 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5861 unsigned &RegOut = SDL->ConstantsOut[C];
5862 if (RegOut == 0) {
5863 RegOut = FuncInfo->CreateRegForValue(C);
5864 SDL->CopyValueToVirtualRegister(C, RegOut);
5865 }
5866 Reg = RegOut;
5867 } else {
5868 Reg = FuncInfo->ValueMap[PHIOp];
5869 if (Reg == 0) {
5870 assert(isa<AllocaInst>(PHIOp) &&
5871 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5872 "Didn't codegen value into a register!??");
5873 Reg = FuncInfo->CreateRegForValue(PHIOp);
5874 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5875 }
5876 }
5877
5878 // Remember that this register needs to added to the machine PHI node as
5879 // the input for this MBB.
5880 SmallVector<MVT, 4> ValueVTs;
5881 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5882 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5883 MVT VT = ValueVTs[vti];
5884 unsigned NumRegisters = TLI.getNumRegisters(VT);
5885 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5886 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5887 Reg += NumRegisters;
5888 }
5889 }
5890 }
5891 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005892}
5893
Dan Gohman3df24e62008-09-03 23:12:08 +00005894/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5895/// supports legal types, and it emits MachineInstrs directly instead of
5896/// creating SelectionDAG nodes.
5897///
5898bool
5899SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5900 FastISel *F) {
5901 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005902
Dan Gohman3df24e62008-09-03 23:12:08 +00005903 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5904 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5905
5906 // Check successor nodes' PHI nodes that expect a constant to be available
5907 // from this block.
5908 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5909 BasicBlock *SuccBB = TI->getSuccessor(succ);
5910 if (!isa<PHINode>(SuccBB->begin())) continue;
5911 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005912
Dan Gohman3df24e62008-09-03 23:12:08 +00005913 // If this terminator has multiple identical successors (common for
5914 // switches), only handle each succ once.
5915 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005916
Dan Gohman3df24e62008-09-03 23:12:08 +00005917 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5918 PHINode *PN;
5919
5920 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5921 // nodes and Machine PHI nodes, but the incoming operands have not been
5922 // emitted yet.
5923 for (BasicBlock::iterator I = SuccBB->begin();
5924 (PN = dyn_cast<PHINode>(I)); ++I) {
5925 // Ignore dead phi's.
5926 if (PN->use_empty()) continue;
5927
5928 // Only handle legal types. Two interesting things to note here. First,
5929 // by bailing out early, we may leave behind some dead instructions,
5930 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5931 // own moves. Second, this check is necessary becuase FastISel doesn't
5932 // use CreateRegForValue to create registers, so it always creates
5933 // exactly one register for each non-void instruction.
5934 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5935 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005936 // Promote MVT::i1.
5937 if (VT == MVT::i1)
5938 VT = TLI.getTypeToTransformTo(VT);
5939 else {
5940 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5941 return false;
5942 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005943 }
5944
5945 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5946
5947 unsigned Reg = F->getRegForValue(PHIOp);
5948 if (Reg == 0) {
5949 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5950 return false;
5951 }
5952 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5953 }
5954 }
5955
5956 return true;
5957}