blob: cc672ac22c31735c1097a75a6b21f032adf40225 [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"
52#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000053#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000054#include <algorithm>
55using namespace llvm;
56
Dale Johannesen601d3c02008-09-05 01:48:15 +000057/// LimitFloatPrecision - Generate low-precision inline sequences for
58/// some float libcalls (6, 8 or 12 bits).
59static unsigned LimitFloatPrecision;
60
61static cl::opt<unsigned, true>
62LimitFPPrecision("limit-float-precision",
63 cl::desc("Generate low-precision inline sequences "
64 "for some float libcalls"),
65 cl::location(LimitFloatPrecision),
66 cl::init(0));
67
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000068/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
Dan Gohman2c91d102009-01-06 22:53:52 +000069/// of insertvalue or extractvalue indices that identify a member, return
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000070/// the linearized index of the start of the member.
71///
72static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
73 const unsigned *Indices,
74 const unsigned *IndicesEnd,
75 unsigned CurIndex = 0) {
76 // Base case: We're done.
77 if (Indices && Indices == IndicesEnd)
78 return CurIndex;
79
80 // Given a struct type, recursively traverse the elements.
81 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
82 for (StructType::element_iterator EB = STy->element_begin(),
83 EI = EB,
84 EE = STy->element_end();
85 EI != EE; ++EI) {
86 if (Indices && *Indices == unsigned(EI - EB))
87 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
88 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
89 }
Dan Gohman2c91d102009-01-06 22:53:52 +000090 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000091 }
92 // Given an array type, recursively traverse the elements.
93 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
94 const Type *EltTy = ATy->getElementType();
95 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
96 if (Indices && *Indices == i)
97 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
98 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
99 }
Dan Gohman2c91d102009-01-06 22:53:52 +0000100 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000101 }
102 // We haven't found the type we're looking for, so keep searching.
103 return CurIndex + 1;
104}
105
106/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
107/// MVTs that represent all the individual underlying
108/// non-aggregate types that comprise it.
109///
110/// If Offsets is non-null, it points to a vector to be filled in
111/// with the in-memory offsets of each of the individual values.
112///
113static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
114 SmallVectorImpl<MVT> &ValueVTs,
115 SmallVectorImpl<uint64_t> *Offsets = 0,
116 uint64_t StartingOffset = 0) {
117 // Given a struct type, recursively traverse the elements.
118 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
119 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
120 for (StructType::element_iterator EB = STy->element_begin(),
121 EI = EB,
122 EE = STy->element_end();
123 EI != EE; ++EI)
124 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
125 StartingOffset + SL->getElementOffset(EI - EB));
126 return;
127 }
128 // Given an array type, recursively traverse the elements.
129 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
130 const Type *EltTy = ATy->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000131 uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000132 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
133 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
134 StartingOffset + i * EltSize);
135 return;
136 }
Dan Gohman5e5558b2009-04-23 22:50:03 +0000137 // Interpret void as zero return values.
138 if (Ty == Type::VoidTy)
139 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000140 // Base case: we can get an MVT for this LLVM IR type.
141 ValueVTs.push_back(TLI.getValueType(Ty));
142 if (Offsets)
143 Offsets->push_back(StartingOffset);
144}
145
Dan Gohman2a7c6712008-09-03 23:18:39 +0000146namespace llvm {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000147 /// RegsForValue - This struct represents the registers (physical or virtual)
148 /// that a particular set of values is assigned, and the type information about
149 /// the value. The most common situation is to represent one value at a time,
150 /// but struct or array values are handled element-wise as multiple values.
151 /// The splitting of aggregates is performed recursively, so that we never
152 /// have aggregate-typed registers. The values at this point do not necessarily
153 /// have legal types, so each value may require one or more registers of some
154 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000155 ///
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000156 struct VISIBILITY_HIDDEN RegsForValue {
157 /// TLI - The TargetLowering object.
158 ///
159 const TargetLowering *TLI;
160
161 /// ValueVTs - The value types of the values, which may not be legal, and
162 /// may need be promoted or synthesized from one or more registers.
163 ///
164 SmallVector<MVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000165
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000166 /// RegVTs - The value types of the registers. This is the same size as
167 /// ValueVTs and it records, for each value, what the type of the assigned
168 /// register or registers are. (Individual values are never synthesized
169 /// from more than one type of register.)
170 ///
171 /// With virtual registers, the contents of RegVTs is redundant with TLI's
172 /// getRegisterType member function, however when with physical registers
173 /// it is necessary to have a separate record of the types.
174 ///
175 SmallVector<MVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000176
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000177 /// Regs - This list holds the registers assigned to the values.
178 /// Each legal or promoted value requires one register, and each
179 /// expanded value requires multiple registers.
180 ///
181 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000182
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000183 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000184
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000185 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000186 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000187 MVT regvt, MVT valuevt)
188 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
189 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000190 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000191 const SmallVector<MVT, 4> &regvts,
192 const SmallVector<MVT, 4> &valuevts)
193 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
194 RegsForValue(const TargetLowering &tli,
195 unsigned Reg, const Type *Ty) : TLI(&tli) {
196 ComputeValueVTs(tli, Ty, ValueVTs);
197
198 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
199 MVT ValueVT = ValueVTs[Value];
200 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
201 MVT RegisterVT = TLI->getRegisterType(ValueVT);
202 for (unsigned i = 0; i != NumRegs; ++i)
203 Regs.push_back(Reg + i);
204 RegVTs.push_back(RegisterVT);
205 Reg += NumRegs;
206 }
207 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000208
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000209 /// append - Add the specified values to this one.
210 void append(const RegsForValue &RHS) {
211 TLI = RHS.TLI;
212 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
213 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
214 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
215 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000216
217
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000218 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000219 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000220 /// Chain/Flag as the input and updates them for the output Chain/Flag.
221 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000222 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000223 SDValue &Chain, SDValue *Flag) const;
224
225 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000226 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000227 /// Chain/Flag as the input and updates them for the output Chain/Flag.
228 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000229 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000230 SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000231
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000232 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Evan Cheng697cbbf2009-03-20 18:03:34 +0000233 /// operand list. This adds the code marker, matching input operand index
234 /// (if applicable), and includes the number of values added into it.
235 void AddInlineAsmOperands(unsigned Code,
236 bool HasMatching, unsigned MatchingIdx,
237 SelectionDAG &DAG, std::vector<SDValue> &Ops) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000238 };
239}
240
241/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000242/// PHI nodes or outside of the basic block that defines it, or used by a
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000243/// switch or atomic instruction, which may expand to multiple basic blocks.
244static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
245 if (isa<PHINode>(I)) return true;
246 BasicBlock *BB = I->getParent();
247 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Dan Gohman8e5c0da2009-04-09 02:33:36 +0000248 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000249 return true;
250 return false;
251}
252
253/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
254/// entry block, return true. This includes arguments used by switches, since
255/// the switch may expand into multiple basic blocks.
256static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) {
257 // With FastISel active, we may be splitting blocks, so force creation
258 // of virtual registers for all non-dead arguments.
Dan Gohman33134c42008-09-25 17:05:24 +0000259 // Don't force virtual registers for byval arguments though, because
260 // fast-isel can't handle those in all cases.
261 if (EnableFastISel && !A->hasByValAttr())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000262 return A->use_empty();
263
264 BasicBlock *Entry = A->getParent()->begin();
265 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
266 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
267 return false; // Use not in entry block.
268 return true;
269}
270
271FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli)
272 : TLI(tli) {
273}
274
275void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000276 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000277 bool EnableFastISel) {
278 Fn = &fn;
279 MF = &mf;
280 RegInfo = &MF->getRegInfo();
281
282 // Create a vreg for each argument register that is not dead and is used
283 // outside of the entry block for the function.
284 for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
285 AI != E; ++AI)
286 if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
287 InitializeRegForValue(AI);
288
289 // Initialize the mapping of values to registers. This is only set up for
290 // instruction values that are used outside of the block that defines
291 // them.
292 Function::iterator BB = Fn->begin(), EB = Fn->end();
293 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
294 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
295 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
296 const Type *Ty = AI->getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +0000297 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000298 unsigned Align =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000299 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
300 AI->getAlignment());
301
302 TySize *= CUI->getZExtValue(); // Get total allocated size.
303 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
304 StaticAllocaMap[AI] =
305 MF->getFrameInfo()->CreateStackObject(TySize, Align);
306 }
307
308 for (; BB != EB; ++BB)
309 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
310 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
311 if (!isa<AllocaInst>(I) ||
312 !StaticAllocaMap.count(cast<AllocaInst>(I)))
313 InitializeRegForValue(I);
314
315 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
316 // also creates the initial PHI MachineInstrs, though none of the input
317 // operands are populated.
318 for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) {
319 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
320 MBBMap[BB] = MBB;
321 MF->push_back(MBB);
322
323 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
324 // appropriate.
325 PHINode *PN;
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000326 DebugLoc DL;
327 for (BasicBlock::iterator
328 I = BB->begin(), E = BB->end(); I != E; ++I) {
329 if (CallInst *CI = dyn_cast<CallInst>(I)) {
330 if (Function *F = CI->getCalledFunction()) {
331 switch (F->getIntrinsicID()) {
332 default: break;
333 case Intrinsic::dbg_stoppoint: {
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000334 DbgStopPointInst *SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000335 if (isValidDebugInfoIntrinsic(*SPI, CodeGenOpt::Default))
336 DL = ExtractDebugLocation(*SPI, MF->getDebugLocInfo());
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000337 break;
338 }
339 case Intrinsic::dbg_func_start: {
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +0000340 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000341 if (isValidDebugInfoIntrinsic(*FSI, CodeGenOpt::Default))
342 DL = ExtractDebugLocation(*FSI, MF->getDebugLocInfo());
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000343 break;
344 }
345 }
346 }
347 }
348
349 PN = dyn_cast<PHINode>(I);
350 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000351
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000352 unsigned PHIReg = ValueMap[PN];
353 assert(PHIReg && "PHI node does not have an assigned virtual register!");
354
355 SmallVector<MVT, 4> ValueVTs;
356 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
357 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
358 MVT VT = ValueVTs[vti];
359 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000360 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000361 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000362 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000363 PHIReg += NumRegisters;
364 }
365 }
366 }
367}
368
369unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
370 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
371}
372
373/// CreateRegForValue - Allocate the appropriate number of virtual registers of
374/// the correctly promoted or expanded types. Assign these registers
375/// consecutive vreg numbers and return the first assigned number.
376///
377/// In the case that the given value has struct or array type, this function
378/// will assign registers for each member or element.
379///
380unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
381 SmallVector<MVT, 4> ValueVTs;
382 ComputeValueVTs(TLI, V->getType(), ValueVTs);
383
384 unsigned FirstReg = 0;
385 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
386 MVT ValueVT = ValueVTs[Value];
387 MVT RegisterVT = TLI.getRegisterType(ValueVT);
388
389 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
390 for (unsigned i = 0; i != NumRegs; ++i) {
391 unsigned R = MakeReg(RegisterVT);
392 if (!FirstReg) FirstReg = R;
393 }
394 }
395 return FirstReg;
396}
397
398/// getCopyFromParts - Create a value that contains the specified legal parts
399/// combined into the value they represent. If the parts combine to a type
400/// larger then ValueVT then AssertOp can be used to specify whether the extra
401/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
402/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000403static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
404 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000405 unsigned NumParts, MVT PartVT, MVT ValueVT,
406 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000407 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000408 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000409 SDValue Val = Parts[0];
410
411 if (NumParts > 1) {
412 // Assemble the value from multiple parts.
Eli Friedman2ac8b322009-05-20 06:02:09 +0000413 if (!ValueVT.isVector() && ValueVT.isInteger()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000414 unsigned PartBits = PartVT.getSizeInBits();
415 unsigned ValueBits = ValueVT.getSizeInBits();
416
417 // Assemble the power of 2 part.
418 unsigned RoundParts = NumParts & (NumParts - 1) ?
419 1 << Log2_32(NumParts) : NumParts;
420 unsigned RoundBits = PartBits * RoundParts;
421 MVT RoundVT = RoundBits == ValueBits ?
422 ValueVT : MVT::getIntegerVT(RoundBits);
423 SDValue Lo, Hi;
424
Eli Friedman2ac8b322009-05-20 06:02:09 +0000425 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000426
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000427 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000428 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
429 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000430 PartVT, HalfVT);
431 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000432 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
433 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000434 }
435 if (TLI.isBigEndian())
436 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000437 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000438
439 if (RoundParts < NumParts) {
440 // Assemble the trailing non-power-of-2 part.
441 unsigned OddParts = NumParts - RoundParts;
442 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Scott Michelfdc40a02009-02-17 22:15:04 +0000443 Hi = getCopyFromParts(DAG, dl,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000444 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000445
446 // Combine the round and odd parts.
447 Lo = Val;
448 if (TLI.isBigEndian())
449 std::swap(Lo, Hi);
450 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000451 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
452 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000453 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000454 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000455 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
456 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000457 }
Eli Friedman2ac8b322009-05-20 06:02:09 +0000458 } else if (ValueVT.isVector()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000459 // Handle a multi-element vector.
460 MVT IntermediateVT, RegisterVT;
461 unsigned NumIntermediates;
462 unsigned NumRegs =
463 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
464 RegisterVT);
465 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
466 NumParts = NumRegs; // Silence a compiler warning.
467 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
468 assert(RegisterVT == Parts[0].getValueType() &&
469 "Part type doesn't match part!");
470
471 // Assemble the parts into intermediate operands.
472 SmallVector<SDValue, 8> Ops(NumIntermediates);
473 if (NumIntermediates == NumParts) {
474 // If the register was not expanded, truncate or copy the value,
475 // as appropriate.
476 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000477 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000478 PartVT, IntermediateVT);
479 } else if (NumParts > 0) {
480 // If the intermediate type was expanded, build the intermediate operands
481 // from the parts.
482 assert(NumParts % NumIntermediates == 0 &&
483 "Must expand into a divisible number of parts!");
484 unsigned Factor = NumParts / NumIntermediates;
485 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000486 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000487 PartVT, IntermediateVT);
488 }
489
490 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
491 // operands.
492 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000493 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000494 ValueVT, &Ops[0], NumIntermediates);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000495 } else if (PartVT.isFloatingPoint()) {
496 // FP split into multiple FP parts (for ppcf128)
497 assert(ValueVT == MVT(MVT::ppcf128) && PartVT == MVT(MVT::f64) &&
498 "Unexpected split");
499 SDValue Lo, Hi;
500 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[0]);
501 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[1]);
502 if (TLI.isBigEndian())
503 std::swap(Lo, Hi);
504 Val = DAG.getNode(ISD::BUILD_PAIR, dl, ValueVT, Lo, Hi);
505 } else {
506 // FP split into integer parts (soft fp)
507 assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
508 !PartVT.isVector() && "Unexpected split");
509 MVT IntVT = MVT::getIntegerVT(ValueVT.getSizeInBits());
510 Val = getCopyFromParts(DAG, dl, Parts, NumParts, PartVT, IntVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000511 }
512 }
513
514 // There is now one part, held in Val. Correct it to match ValueVT.
515 PartVT = Val.getValueType();
516
517 if (PartVT == ValueVT)
518 return Val;
519
520 if (PartVT.isVector()) {
521 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000522 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000523 }
524
525 if (ValueVT.isVector()) {
526 assert(ValueVT.getVectorElementType() == PartVT &&
527 ValueVT.getVectorNumElements() == 1 &&
528 "Only trivial scalar-to-vector conversions should get here!");
Evan Chenga87008d2009-02-25 22:49:59 +0000529 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000530 }
531
532 if (PartVT.isInteger() &&
533 ValueVT.isInteger()) {
534 if (ValueVT.bitsLT(PartVT)) {
535 // For a truncate, see if we have any information to
536 // indicate whether the truncated bits will always be
537 // zero or sign-extension.
538 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000539 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000540 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000541 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000542 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000543 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000544 }
545 }
546
547 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
548 if (ValueVT.bitsLT(Val.getValueType()))
549 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000550 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000551 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000552 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000553 }
554
555 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000556 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000557
558 assert(0 && "Unknown mismatch!");
559 return SDValue();
560}
561
562/// getCopyToParts - Create a series of nodes that contain the specified value
563/// split into legal parts. If the parts contain more bits than Val, then, for
564/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000565static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Chris Lattner01426e12008-10-21 00:45:36 +0000566 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000567 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000568 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000569 MVT PtrVT = TLI.getPointerTy();
570 MVT ValueVT = Val.getValueType();
571 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000572 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000573 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
574
575 if (!NumParts)
576 return;
577
578 if (!ValueVT.isVector()) {
579 if (PartVT == ValueVT) {
580 assert(NumParts == 1 && "No-op copy with multiple parts!");
581 Parts[0] = Val;
582 return;
583 }
584
585 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
586 // If the parts cover more bits than the value has, promote the value.
587 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
588 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000589 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000590 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
591 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000592 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000593 } else {
594 assert(0 && "Unknown mismatch!");
595 }
596 } else if (PartBits == ValueVT.getSizeInBits()) {
597 // Different types of the same size.
598 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000599 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000600 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
601 // If the parts cover less bits than value has, truncate the value.
602 if (PartVT.isInteger() && ValueVT.isInteger()) {
603 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000604 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000605 } else {
606 assert(0 && "Unknown mismatch!");
607 }
608 }
609
610 // The value may have changed - recompute ValueVT.
611 ValueVT = Val.getValueType();
612 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
613 "Failed to tile the value with PartVT!");
614
615 if (NumParts == 1) {
616 assert(PartVT == ValueVT && "Type conversion failed!");
617 Parts[0] = Val;
618 return;
619 }
620
621 // Expand the value into multiple parts.
622 if (NumParts & (NumParts - 1)) {
623 // The number of parts is not a power of 2. Split off and copy the tail.
624 assert(PartVT.isInteger() && ValueVT.isInteger() &&
625 "Do not know what to expand to!");
626 unsigned RoundParts = 1 << Log2_32(NumParts);
627 unsigned RoundBits = RoundParts * PartBits;
628 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000629 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000630 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000631 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000632 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000633 if (TLI.isBigEndian())
634 // The odd parts were reversed by getCopyToParts - unreverse them.
635 std::reverse(Parts + RoundParts, Parts + NumParts);
636 NumParts = RoundParts;
637 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000638 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000639 }
640
641 // The number of parts is a power of 2. Repeatedly bisect the value using
642 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000643 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000644 MVT::getIntegerVT(ValueVT.getSizeInBits()),
645 Val);
646 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
647 for (unsigned i = 0; i < NumParts; i += StepSize) {
648 unsigned ThisBits = StepSize * PartBits / 2;
649 MVT ThisVT = MVT::getIntegerVT (ThisBits);
650 SDValue &Part0 = Parts[i];
651 SDValue &Part1 = Parts[i+StepSize/2];
652
Scott Michelfdc40a02009-02-17 22:15:04 +0000653 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000654 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000655 DAG.getConstant(1, PtrVT));
Scott Michelfdc40a02009-02-17 22:15:04 +0000656 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000657 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000658 DAG.getConstant(0, PtrVT));
659
660 if (ThisBits == PartBits && ThisVT != PartVT) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000661 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000662 PartVT, Part0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000663 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000664 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000665 }
666 }
667 }
668
669 if (TLI.isBigEndian())
Dale Johannesen8a36f502009-02-25 22:39:13 +0000670 std::reverse(Parts, Parts + OrigNumParts);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000671
672 return;
673 }
674
675 // Vector ValueVT.
676 if (NumParts == 1) {
677 if (PartVT != ValueVT) {
678 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000679 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000680 } else {
681 assert(ValueVT.getVectorElementType() == PartVT &&
682 ValueVT.getVectorNumElements() == 1 &&
683 "Only trivial vector-to-scalar conversions should get here!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000684 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000685 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000686 DAG.getConstant(0, PtrVT));
687 }
688 }
689
690 Parts[0] = Val;
691 return;
692 }
693
694 // Handle a multi-element vector.
695 MVT IntermediateVT, RegisterVT;
696 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000697 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000698 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
699 RegisterVT);
700 unsigned NumElements = ValueVT.getVectorNumElements();
701
702 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
703 NumParts = NumRegs; // Silence a compiler warning.
704 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
705
706 // Split the vector into intermediate operands.
707 SmallVector<SDValue, 8> Ops(NumIntermediates);
708 for (unsigned i = 0; i != NumIntermediates; ++i)
709 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000710 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000711 IntermediateVT, Val,
712 DAG.getConstant(i * (NumElements / NumIntermediates),
713 PtrVT));
714 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000715 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000716 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000717 DAG.getConstant(i, PtrVT));
718
719 // Split the intermediate operands into legal parts.
720 if (NumParts == NumIntermediates) {
721 // If the register was not expanded, promote or copy the value,
722 // as appropriate.
723 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000724 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000725 } else if (NumParts > 0) {
726 // If the intermediate type was expanded, split each the value into
727 // legal parts.
728 assert(NumParts % NumIntermediates == 0 &&
729 "Must expand into a divisible number of parts!");
730 unsigned Factor = NumParts / NumIntermediates;
731 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000732 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000733 }
734}
735
736
737void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
738 AA = &aa;
739 GFI = gfi;
740 TD = DAG.getTarget().getTargetData();
741}
742
743/// clear - Clear out the curret SelectionDAG and the associated
744/// state and prepare this SelectionDAGLowering object to be used
745/// for a new block. This doesn't clear out information about
746/// additional blocks that are needed to complete switch lowering
747/// or PHI node updating; that information is cleared out as it is
748/// consumed.
749void SelectionDAGLowering::clear() {
750 NodeMap.clear();
751 PendingLoads.clear();
752 PendingExports.clear();
753 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000754 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000755}
756
757/// getRoot - Return the current virtual root of the Selection DAG,
758/// flushing any PendingLoad items. This must be done before emitting
759/// a store or any other node that may need to be ordered after any
760/// prior load instructions.
761///
762SDValue SelectionDAGLowering::getRoot() {
763 if (PendingLoads.empty())
764 return DAG.getRoot();
765
766 if (PendingLoads.size() == 1) {
767 SDValue Root = PendingLoads[0];
768 DAG.setRoot(Root);
769 PendingLoads.clear();
770 return Root;
771 }
772
773 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000774 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000775 &PendingLoads[0], PendingLoads.size());
776 PendingLoads.clear();
777 DAG.setRoot(Root);
778 return Root;
779}
780
781/// getControlRoot - Similar to getRoot, but instead of flushing all the
782/// PendingLoad items, flush all the PendingExports items. It is necessary
783/// to do this before emitting a terminator instruction.
784///
785SDValue SelectionDAGLowering::getControlRoot() {
786 SDValue Root = DAG.getRoot();
787
788 if (PendingExports.empty())
789 return Root;
790
791 // Turn all of the CopyToReg chains into one factored node.
792 if (Root.getOpcode() != ISD::EntryToken) {
793 unsigned i = 0, e = PendingExports.size();
794 for (; i != e; ++i) {
795 assert(PendingExports[i].getNode()->getNumOperands() > 1);
796 if (PendingExports[i].getNode()->getOperand(0) == Root)
797 break; // Don't add the root if we already indirectly depend on it.
798 }
799
800 if (i == e)
801 PendingExports.push_back(Root);
802 }
803
Dale Johannesen66978ee2009-01-31 02:22:37 +0000804 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000805 &PendingExports[0],
806 PendingExports.size());
807 PendingExports.clear();
808 DAG.setRoot(Root);
809 return Root;
810}
811
812void SelectionDAGLowering::visit(Instruction &I) {
813 visit(I.getOpcode(), I);
814}
815
816void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
817 // Note: this doesn't use InstVisitor, because it has to work with
818 // ConstantExpr's in addition to instructions.
819 switch (Opcode) {
820 default: assert(0 && "Unknown instruction type encountered!");
821 abort();
822 // 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
2230void SelectionDAGLowering::visitVICmp(User &I) {
2231 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2232 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2233 predicate = IC->getPredicate();
2234 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2235 predicate = ICmpInst::Predicate(IC->getPredicate());
2236 SDValue Op1 = getValue(I.getOperand(0));
2237 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002238 ISD::CondCode Opcode = getICmpCondCode(predicate);
Scott Michelfdc40a02009-02-17 22:15:04 +00002239 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), Op1.getValueType(),
Dale Johannesenf5d97892009-02-04 01:48:28 +00002240 Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002241}
2242
2243void SelectionDAGLowering::visitVFCmp(User &I) {
2244 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2245 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2246 predicate = FC->getPredicate();
2247 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2248 predicate = FCmpInst::Predicate(FC->getPredicate());
2249 SDValue Op1 = getValue(I.getOperand(0));
2250 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002251 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002252 MVT DestVT = TLI.getValueType(I.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002253
Dale Johannesenf5d97892009-02-04 01:48:28 +00002254 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002255}
2256
2257void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002258 SmallVector<MVT, 4> ValueVTs;
2259 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2260 unsigned NumValues = ValueVTs.size();
2261 if (NumValues != 0) {
2262 SmallVector<SDValue, 4> Values(NumValues);
2263 SDValue Cond = getValue(I.getOperand(0));
2264 SDValue TrueVal = getValue(I.getOperand(1));
2265 SDValue FalseVal = getValue(I.getOperand(2));
2266
2267 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002268 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002269 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002270 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2271 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2272
Scott Michelfdc40a02009-02-17 22:15:04 +00002273 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002274 DAG.getVTList(&ValueVTs[0], NumValues),
2275 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002276 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002277}
2278
2279
2280void SelectionDAGLowering::visitTrunc(User &I) {
2281 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2282 SDValue N = getValue(I.getOperand(0));
2283 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002284 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002285}
2286
2287void SelectionDAGLowering::visitZExt(User &I) {
2288 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2289 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2290 SDValue N = getValue(I.getOperand(0));
2291 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002292 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002293}
2294
2295void SelectionDAGLowering::visitSExt(User &I) {
2296 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2297 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2298 SDValue N = getValue(I.getOperand(0));
2299 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002300 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002301}
2302
2303void SelectionDAGLowering::visitFPTrunc(User &I) {
2304 // FPTrunc is never a no-op cast, no need to check
2305 SDValue N = getValue(I.getOperand(0));
2306 MVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002307 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002308 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002309}
2310
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002311void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002312 // FPTrunc is never a no-op cast, no need to check
2313 SDValue N = getValue(I.getOperand(0));
2314 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002315 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002316}
2317
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002318void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002319 // FPToUI is never a no-op cast, no need to check
2320 SDValue N = getValue(I.getOperand(0));
2321 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002322 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002323}
2324
2325void SelectionDAGLowering::visitFPToSI(User &I) {
2326 // FPToSI is never a no-op cast, no need to check
2327 SDValue N = getValue(I.getOperand(0));
2328 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002329 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002330}
2331
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002332void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002333 // UIToFP is never a no-op cast, no need to check
2334 SDValue N = getValue(I.getOperand(0));
2335 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002336 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002337}
2338
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002339void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002340 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002341 SDValue N = getValue(I.getOperand(0));
2342 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002343 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002344}
2345
2346void SelectionDAGLowering::visitPtrToInt(User &I) {
2347 // What to do depends on the size of the integer and the size of the pointer.
2348 // We can either truncate, zero extend, or no-op, accordingly.
2349 SDValue N = getValue(I.getOperand(0));
2350 MVT SrcVT = N.getValueType();
2351 MVT DestVT = TLI.getValueType(I.getType());
2352 SDValue Result;
2353 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002354 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002355 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002356 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002357 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002358 setValue(&I, Result);
2359}
2360
2361void SelectionDAGLowering::visitIntToPtr(User &I) {
2362 // What to do depends on the size of the integer and the size of the pointer.
2363 // We can either truncate, zero extend, or no-op, accordingly.
2364 SDValue N = getValue(I.getOperand(0));
2365 MVT SrcVT = N.getValueType();
2366 MVT DestVT = TLI.getValueType(I.getType());
2367 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002368 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002369 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002370 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002371 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002372 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002373}
2374
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002375void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002376 SDValue N = getValue(I.getOperand(0));
2377 MVT DestVT = TLI.getValueType(I.getType());
2378
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002379 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002380 // is either a BIT_CONVERT or a no-op.
2381 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002382 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002383 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002384 else
2385 setValue(&I, N); // noop cast.
2386}
2387
2388void SelectionDAGLowering::visitInsertElement(User &I) {
2389 SDValue InVec = getValue(I.getOperand(0));
2390 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002391 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002392 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002393 getValue(I.getOperand(2)));
2394
Scott Michelfdc40a02009-02-17 22:15:04 +00002395 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002396 TLI.getValueType(I.getType()),
2397 InVec, InVal, InIdx));
2398}
2399
2400void SelectionDAGLowering::visitExtractElement(User &I) {
2401 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002402 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002403 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002404 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002405 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002406 TLI.getValueType(I.getType()), InVec, InIdx));
2407}
2408
Mon P Wangaeb06d22008-11-10 04:46:22 +00002409
2410// Utility for visitShuffleVector - Returns true if the mask is mask starting
2411// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002412static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2413 unsigned MaskNumElts = Mask.size();
2414 for (unsigned i = 0; i != MaskNumElts; ++i)
2415 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002416 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002417 return true;
2418}
2419
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002420void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002421 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002422 SDValue Src1 = getValue(I.getOperand(0));
2423 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002424
Nate Begeman9008ca62009-04-27 18:41:29 +00002425 // Convert the ConstantVector mask operand into an array of ints, with -1
2426 // representing undef values.
2427 SmallVector<Constant*, 8> MaskElts;
2428 cast<Constant>(I.getOperand(2))->getVectorElements(MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002429 unsigned MaskNumElts = MaskElts.size();
2430 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002431 if (isa<UndefValue>(MaskElts[i]))
2432 Mask.push_back(-1);
2433 else
2434 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2435 }
2436
Mon P Wangaeb06d22008-11-10 04:46:22 +00002437 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002438 MVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002439 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002440
Mon P Wangc7849c22008-11-16 05:06:27 +00002441 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002442 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2443 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002444 return;
2445 }
2446
2447 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002448 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2449 // Mask is longer than the source vectors and is a multiple of the source
2450 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002451 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002452 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2453 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002454 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002455 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002456 return;
2457 }
2458
Mon P Wangc7849c22008-11-16 05:06:27 +00002459 // Pad both vectors with undefs to make them the same length as the mask.
2460 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002461 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2462 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002463 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002464
Nate Begeman9008ca62009-04-27 18:41:29 +00002465 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2466 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002467 MOps1[0] = Src1;
2468 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002469
2470 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2471 getCurDebugLoc(), VT,
2472 &MOps1[0], NumConcat);
2473 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2474 getCurDebugLoc(), VT,
2475 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002476
Mon P Wangaeb06d22008-11-10 04:46:22 +00002477 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002478 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002479 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002480 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002481 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002482 MappedOps.push_back(Idx);
2483 else
2484 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002485 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002486 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2487 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002488 return;
2489 }
2490
Mon P Wangc7849c22008-11-16 05:06:27 +00002491 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002492 // Analyze the access pattern of the vector to see if we can extract
2493 // two subvectors and do the shuffle. The analysis is done by calculating
2494 // the range of elements the mask access on both vectors.
2495 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2496 int MaxRange[2] = {-1, -1};
2497
Nate Begeman5a5ca152009-04-29 05:20:52 +00002498 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002499 int Idx = Mask[i];
2500 int Input = 0;
2501 if (Idx < 0)
2502 continue;
2503
Nate Begeman5a5ca152009-04-29 05:20:52 +00002504 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002505 Input = 1;
2506 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002507 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002508 if (Idx > MaxRange[Input])
2509 MaxRange[Input] = Idx;
2510 if (Idx < MinRange[Input])
2511 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002512 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002513
Mon P Wangc7849c22008-11-16 05:06:27 +00002514 // Check if the access is smaller than the vector size and can we find
2515 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002516 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002517 int StartIdx[2]; // StartIdx to extract from
2518 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002519 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002520 RangeUse[Input] = 0; // Unused
2521 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002522 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002523 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002524 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002525 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002526 RangeUse[Input] = 1; // Extract from beginning of the vector
2527 StartIdx[Input] = 0;
2528 } else {
2529 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002530 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002531 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002532 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002533 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002534 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002535 }
2536
2537 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002538 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002539 return;
2540 }
2541 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2542 // Extract appropriate subvector and generate a vector shuffle
2543 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002544 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002545 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002546 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002547 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002548 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002549 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002550 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002551 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002552 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002553 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002554 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002555 int Idx = Mask[i];
2556 if (Idx < 0)
2557 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002558 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002559 MappedOps.push_back(Idx - StartIdx[0]);
2560 else
2561 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002562 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002563 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2564 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002565 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002566 }
2567 }
2568
Mon P Wangc7849c22008-11-16 05:06:27 +00002569 // We can't use either concat vectors or extract subvectors so fall back to
2570 // replacing the shuffle with extract and build vector.
2571 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002572 MVT EltVT = VT.getVectorElementType();
2573 MVT PtrVT = TLI.getPointerTy();
2574 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002575 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002576 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002577 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002578 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002579 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002580 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002581 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002582 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002583 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002584 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002585 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002586 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002587 }
2588 }
Evan Chenga87008d2009-02-25 22:49:59 +00002589 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2590 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002591}
2592
2593void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2594 const Value *Op0 = I.getOperand(0);
2595 const Value *Op1 = I.getOperand(1);
2596 const Type *AggTy = I.getType();
2597 const Type *ValTy = Op1->getType();
2598 bool IntoUndef = isa<UndefValue>(Op0);
2599 bool FromUndef = isa<UndefValue>(Op1);
2600
2601 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2602 I.idx_begin(), I.idx_end());
2603
2604 SmallVector<MVT, 4> AggValueVTs;
2605 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2606 SmallVector<MVT, 4> ValValueVTs;
2607 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2608
2609 unsigned NumAggValues = AggValueVTs.size();
2610 unsigned NumValValues = ValValueVTs.size();
2611 SmallVector<SDValue, 4> Values(NumAggValues);
2612
2613 SDValue Agg = getValue(Op0);
2614 SDValue Val = getValue(Op1);
2615 unsigned i = 0;
2616 // Copy the beginning value(s) from the original aggregate.
2617 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002618 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002619 SDValue(Agg.getNode(), Agg.getResNo() + i);
2620 // Copy values from the inserted value(s).
2621 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002622 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002623 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2624 // Copy remaining value(s) from the original aggregate.
2625 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002626 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002627 SDValue(Agg.getNode(), Agg.getResNo() + i);
2628
Scott Michelfdc40a02009-02-17 22:15:04 +00002629 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002630 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2631 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002632}
2633
2634void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2635 const Value *Op0 = I.getOperand(0);
2636 const Type *AggTy = Op0->getType();
2637 const Type *ValTy = I.getType();
2638 bool OutOfUndef = isa<UndefValue>(Op0);
2639
2640 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2641 I.idx_begin(), I.idx_end());
2642
2643 SmallVector<MVT, 4> ValValueVTs;
2644 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2645
2646 unsigned NumValValues = ValValueVTs.size();
2647 SmallVector<SDValue, 4> Values(NumValValues);
2648
2649 SDValue Agg = getValue(Op0);
2650 // Copy out the selected value(s).
2651 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2652 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002653 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002654 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002655 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002656
Scott Michelfdc40a02009-02-17 22:15:04 +00002657 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002658 DAG.getVTList(&ValValueVTs[0], NumValValues),
2659 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002660}
2661
2662
2663void SelectionDAGLowering::visitGetElementPtr(User &I) {
2664 SDValue N = getValue(I.getOperand(0));
2665 const Type *Ty = I.getOperand(0)->getType();
2666
2667 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2668 OI != E; ++OI) {
2669 Value *Idx = *OI;
2670 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2671 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2672 if (Field) {
2673 // N = N + Offset
2674 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002675 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002676 DAG.getIntPtrConstant(Offset));
2677 }
2678 Ty = StTy->getElementType(Field);
2679 } else {
2680 Ty = cast<SequentialType>(Ty)->getElementType();
2681
2682 // If this is a constant subscript, handle it quickly.
2683 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2684 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002685 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002686 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002687 SDValue OffsVal;
Evan Chengb1032a82009-02-09 20:54:38 +00002688 unsigned PtrBits = TLI.getPointerTy().getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002689 if (PtrBits < 64) {
2690 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2691 TLI.getPointerTy(),
2692 DAG.getConstant(Offs, MVT::i64));
2693 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002694 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002695 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002696 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002697 continue;
2698 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002699
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002700 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +00002701 uint64_t ElementSize = TD->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002702 SDValue IdxN = getValue(Idx);
2703
2704 // If the index is smaller or larger than intptr_t, truncate or extend
2705 // it.
2706 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002707 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002708 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002709 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002710 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002711 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002712
2713 // If this is a multiply by a power of two, turn it into a shl
2714 // immediately. This is a very common case.
2715 if (ElementSize != 1) {
2716 if (isPowerOf2_64(ElementSize)) {
2717 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002718 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002719 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002720 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002721 } else {
2722 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002723 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002724 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002725 }
2726 }
2727
Scott Michelfdc40a02009-02-17 22:15:04 +00002728 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002729 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002730 }
2731 }
2732 setValue(&I, N);
2733}
2734
2735void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2736 // If this is a fixed sized alloca in the entry block of the function,
2737 // allocate it statically on the stack.
2738 if (FuncInfo.StaticAllocaMap.count(&I))
2739 return; // getValue will auto-populate this.
2740
2741 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002742 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002743 unsigned Align =
2744 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2745 I.getAlignment());
2746
2747 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002748
2749 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2750 AllocSize,
2751 DAG.getConstant(TySize, AllocSize.getValueType()));
2752
2753
2754
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002755 MVT IntPtr = TLI.getPointerTy();
2756 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002757 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002758 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002759 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002760 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002761 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002762
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002763 // Handle alignment. If the requested alignment is less than or equal to
2764 // the stack alignment, ignore it. If the size is greater than or equal to
2765 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2766 unsigned StackAlign =
2767 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2768 if (Align <= StackAlign)
2769 Align = 0;
2770
2771 // Round the size of the allocation up to the stack alignment size
2772 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002773 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002774 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002775 DAG.getIntPtrConstant(StackAlign-1));
2776 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002777 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002778 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002779 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2780
2781 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Dan Gohmanfc166572009-04-09 23:54:40 +00002782 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002783 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002784 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002785 setValue(&I, DSA);
2786 DAG.setRoot(DSA.getValue(1));
2787
2788 // Inform the Frame Information that we have just allocated a variable-sized
2789 // object.
2790 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2791}
2792
2793void SelectionDAGLowering::visitLoad(LoadInst &I) {
2794 const Value *SV = I.getOperand(0);
2795 SDValue Ptr = getValue(SV);
2796
2797 const Type *Ty = I.getType();
2798 bool isVolatile = I.isVolatile();
2799 unsigned Alignment = I.getAlignment();
2800
2801 SmallVector<MVT, 4> ValueVTs;
2802 SmallVector<uint64_t, 4> Offsets;
2803 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2804 unsigned NumValues = ValueVTs.size();
2805 if (NumValues == 0)
2806 return;
2807
2808 SDValue Root;
2809 bool ConstantMemory = false;
2810 if (I.isVolatile())
2811 // Serialize volatile loads with other side effects.
2812 Root = getRoot();
2813 else if (AA->pointsToConstantMemory(SV)) {
2814 // Do not serialize (non-volatile) loads of constant memory with anything.
2815 Root = DAG.getEntryNode();
2816 ConstantMemory = true;
2817 } else {
2818 // Do not serialize non-volatile loads against each other.
2819 Root = DAG.getRoot();
2820 }
2821
2822 SmallVector<SDValue, 4> Values(NumValues);
2823 SmallVector<SDValue, 4> Chains(NumValues);
2824 MVT PtrVT = Ptr.getValueType();
2825 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002826 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002827 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002828 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002829 DAG.getConstant(Offsets[i], PtrVT)),
2830 SV, Offsets[i],
2831 isVolatile, Alignment);
2832 Values[i] = L;
2833 Chains[i] = L.getValue(1);
2834 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002835
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002836 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002837 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002838 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002839 &Chains[0], NumValues);
2840 if (isVolatile)
2841 DAG.setRoot(Chain);
2842 else
2843 PendingLoads.push_back(Chain);
2844 }
2845
Scott Michelfdc40a02009-02-17 22:15:04 +00002846 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002847 DAG.getVTList(&ValueVTs[0], NumValues),
2848 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002849}
2850
2851
2852void SelectionDAGLowering::visitStore(StoreInst &I) {
2853 Value *SrcV = I.getOperand(0);
2854 Value *PtrV = I.getOperand(1);
2855
2856 SmallVector<MVT, 4> ValueVTs;
2857 SmallVector<uint64_t, 4> Offsets;
2858 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2859 unsigned NumValues = ValueVTs.size();
2860 if (NumValues == 0)
2861 return;
2862
2863 // Get the lowered operands. Note that we do this after
2864 // checking if NumResults is zero, because with zero results
2865 // the operands won't have values in the map.
2866 SDValue Src = getValue(SrcV);
2867 SDValue Ptr = getValue(PtrV);
2868
2869 SDValue Root = getRoot();
2870 SmallVector<SDValue, 4> Chains(NumValues);
2871 MVT PtrVT = Ptr.getValueType();
2872 bool isVolatile = I.isVolatile();
2873 unsigned Alignment = I.getAlignment();
2874 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002875 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002876 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002877 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002878 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002879 DAG.getConstant(Offsets[i], PtrVT)),
2880 PtrV, Offsets[i],
2881 isVolatile, Alignment);
2882
Scott Michelfdc40a02009-02-17 22:15:04 +00002883 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002884 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002885}
2886
2887/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2888/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002889void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002890 unsigned Intrinsic) {
2891 bool HasChain = !I.doesNotAccessMemory();
2892 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2893
2894 // Build the operand list.
2895 SmallVector<SDValue, 8> Ops;
2896 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2897 if (OnlyLoad) {
2898 // We don't need to serialize loads against other loads.
2899 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002900 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002901 Ops.push_back(getRoot());
2902 }
2903 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002904
2905 // Info is set by getTgtMemInstrinsic
2906 TargetLowering::IntrinsicInfo Info;
2907 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2908
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002909 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002910 if (!IsTgtIntrinsic)
2911 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002912
2913 // Add all operands of the call to the operand list.
2914 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2915 SDValue Op = getValue(I.getOperand(i));
2916 assert(TLI.isTypeLegal(Op.getValueType()) &&
2917 "Intrinsic uses a non-legal type?");
2918 Ops.push_back(Op);
2919 }
2920
Dan Gohmanfc166572009-04-09 23:54:40 +00002921 std::vector<MVT> VTArray;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002922 if (I.getType() != Type::VoidTy) {
2923 MVT VT = TLI.getValueType(I.getType());
2924 if (VT.isVector()) {
2925 const VectorType *DestTy = cast<VectorType>(I.getType());
2926 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002927
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002928 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2929 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2930 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002931
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002932 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
Dan Gohmanfc166572009-04-09 23:54:40 +00002933 VTArray.push_back(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002934 }
2935 if (HasChain)
Dan Gohmanfc166572009-04-09 23:54:40 +00002936 VTArray.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002937
Dan Gohmanfc166572009-04-09 23:54:40 +00002938 SDVTList VTs = DAG.getVTList(&VTArray[0], VTArray.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002939
2940 // Create the node.
2941 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002942 if (IsTgtIntrinsic) {
2943 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002944 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002945 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002946 Info.memVT, Info.ptrVal, Info.offset,
2947 Info.align, Info.vol,
2948 Info.readMem, Info.writeMem);
2949 }
2950 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002951 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002952 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002953 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002954 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002955 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002956 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002957 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002958 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002959
2960 if (HasChain) {
2961 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2962 if (OnlyLoad)
2963 PendingLoads.push_back(Chain);
2964 else
2965 DAG.setRoot(Chain);
2966 }
2967 if (I.getType() != Type::VoidTy) {
2968 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2969 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002970 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002971 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002972 setValue(&I, Result);
2973 }
2974}
2975
2976/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2977static GlobalVariable *ExtractTypeInfo(Value *V) {
2978 V = V->stripPointerCasts();
2979 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2980 assert ((GV || isa<ConstantPointerNull>(V)) &&
2981 "TypeInfo must be a global variable or NULL");
2982 return GV;
2983}
2984
2985namespace llvm {
2986
2987/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2988/// call, and add them to the specified machine basic block.
2989void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2990 MachineBasicBlock *MBB) {
2991 // Inform the MachineModuleInfo of the personality for this landing pad.
2992 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2993 assert(CE->getOpcode() == Instruction::BitCast &&
2994 isa<Function>(CE->getOperand(0)) &&
2995 "Personality should be a function");
2996 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2997
2998 // Gather all the type infos for this landing pad and pass them along to
2999 // MachineModuleInfo.
3000 std::vector<GlobalVariable *> TyInfo;
3001 unsigned N = I.getNumOperands();
3002
3003 for (unsigned i = N - 1; i > 2; --i) {
3004 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3005 unsigned FilterLength = CI->getZExtValue();
3006 unsigned FirstCatch = i + FilterLength + !FilterLength;
3007 assert (FirstCatch <= N && "Invalid filter length");
3008
3009 if (FirstCatch < N) {
3010 TyInfo.reserve(N - FirstCatch);
3011 for (unsigned j = FirstCatch; j < N; ++j)
3012 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3013 MMI->addCatchTypeInfo(MBB, TyInfo);
3014 TyInfo.clear();
3015 }
3016
3017 if (!FilterLength) {
3018 // Cleanup.
3019 MMI->addCleanup(MBB);
3020 } else {
3021 // Filter.
3022 TyInfo.reserve(FilterLength - 1);
3023 for (unsigned j = i + 1; j < FirstCatch; ++j)
3024 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3025 MMI->addFilterTypeInfo(MBB, TyInfo);
3026 TyInfo.clear();
3027 }
3028
3029 N = i;
3030 }
3031 }
3032
3033 if (N > 3) {
3034 TyInfo.reserve(N - 3);
3035 for (unsigned j = 3; j < N; ++j)
3036 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3037 MMI->addCatchTypeInfo(MBB, TyInfo);
3038 }
3039}
3040
3041}
3042
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003043/// GetSignificand - Get the significand and build it into a floating-point
3044/// number with exponent of 1:
3045///
3046/// Op = (Op & 0x007fffff) | 0x3f800000;
3047///
3048/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003049static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003050GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3051 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003052 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003053 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003054 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003055 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003056}
3057
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003058/// GetExponent - Get the exponent:
3059///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003060/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003061///
3062/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003063static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003064GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3065 DebugLoc dl) {
3066 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003067 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003068 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003069 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003070 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003071 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003072 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003073}
3074
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003075/// getF32Constant - Get 32-bit floating point constant.
3076static SDValue
3077getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3078 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3079}
3080
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003081/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003082/// visitIntrinsicCall: I is a call instruction
3083/// Op is the associated NodeType for I
3084const char *
3085SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003086 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003087 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003088 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003089 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003090 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003091 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003092 getValue(I.getOperand(2)),
3093 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003094 setValue(&I, L);
3095 DAG.setRoot(L.getValue(1));
3096 return 0;
3097}
3098
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003099// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003100const char *
3101SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003102 SDValue Op1 = getValue(I.getOperand(1));
3103 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003104
Dan Gohmanfc166572009-04-09 23:54:40 +00003105 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
3106 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003107
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003108 setValue(&I, Result);
3109 return 0;
3110}
Bill Wendling74c37652008-12-09 22:08:41 +00003111
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003112/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3113/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003114void
3115SelectionDAGLowering::visitExp(CallInst &I) {
3116 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003117 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003118
3119 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3120 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3121 SDValue Op = getValue(I.getOperand(1));
3122
3123 // Put the exponent in the right bit position for later addition to the
3124 // final result:
3125 //
3126 // #define LOG2OFe 1.4426950f
3127 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003128 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003129 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003130 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003131
3132 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003133 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3134 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003135
3136 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003137 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003138 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003139
3140 if (LimitFloatPrecision <= 6) {
3141 // For floating-point precision of 6:
3142 //
3143 // TwoToFractionalPartOfX =
3144 // 0.997535578f +
3145 // (0.735607626f + 0.252464424f * x) * x;
3146 //
3147 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003148 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003149 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003150 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003151 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003152 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3153 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003154 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003155 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003156
3157 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003158 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003159 TwoToFracPartOfX, IntegerPartOfX);
3160
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003161 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003162 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3163 // For floating-point precision of 12:
3164 //
3165 // TwoToFractionalPartOfX =
3166 // 0.999892986f +
3167 // (0.696457318f +
3168 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3169 //
3170 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003171 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003172 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003173 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003174 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003175 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3176 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003177 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003178 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3179 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003180 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003181 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003182
3183 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003184 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003185 TwoToFracPartOfX, IntegerPartOfX);
3186
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003187 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003188 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3189 // For floating-point precision of 18:
3190 //
3191 // TwoToFractionalPartOfX =
3192 // 0.999999982f +
3193 // (0.693148872f +
3194 // (0.240227044f +
3195 // (0.554906021e-1f +
3196 // (0.961591928e-2f +
3197 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3198 //
3199 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003200 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003201 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003202 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003203 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003204 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3205 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003206 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003207 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3208 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003209 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003210 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3211 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003212 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003213 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3214 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003215 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003216 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3217 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003218 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003219 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003220 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003221
3222 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003223 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003224 TwoToFracPartOfX, IntegerPartOfX);
3225
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003226 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003227 }
3228 } else {
3229 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003230 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003231 getValue(I.getOperand(1)).getValueType(),
3232 getValue(I.getOperand(1)));
3233 }
3234
Dale Johannesen59e577f2008-09-05 18:38:42 +00003235 setValue(&I, result);
3236}
3237
Bill Wendling39150252008-09-09 20:39:27 +00003238/// visitLog - Lower a log intrinsic. Handles the special sequences for
3239/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003240void
3241SelectionDAGLowering::visitLog(CallInst &I) {
3242 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003243 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003244
3245 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3246 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3247 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003248 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003249
3250 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003251 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003252 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003253 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003254
3255 // Get the significand and build it into a floating-point number with
3256 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003257 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003258
3259 if (LimitFloatPrecision <= 6) {
3260 // For floating-point precision of 6:
3261 //
3262 // LogofMantissa =
3263 // -1.1609546f +
3264 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003265 //
Bill Wendling39150252008-09-09 20:39:27 +00003266 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003267 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003268 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003269 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003270 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003271 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3272 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003273 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003274
Scott Michelfdc40a02009-02-17 22:15:04 +00003275 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003276 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003277 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3278 // For floating-point precision of 12:
3279 //
3280 // LogOfMantissa =
3281 // -1.7417939f +
3282 // (2.8212026f +
3283 // (-1.4699568f +
3284 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3285 //
3286 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003287 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003288 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003289 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003290 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003291 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3292 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003293 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003294 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3295 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003296 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003297 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3298 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003299 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003300
Scott Michelfdc40a02009-02-17 22:15:04 +00003301 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003302 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003303 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3304 // For floating-point precision of 18:
3305 //
3306 // LogOfMantissa =
3307 // -2.1072184f +
3308 // (4.2372794f +
3309 // (-3.7029485f +
3310 // (2.2781945f +
3311 // (-0.87823314f +
3312 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3313 //
3314 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003315 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003316 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003317 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003318 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003319 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3320 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003321 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003322 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3323 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003324 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003325 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3326 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003327 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003328 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3329 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003330 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003331 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3332 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003333 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003334
Scott Michelfdc40a02009-02-17 22:15:04 +00003335 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003336 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003337 }
3338 } else {
3339 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003340 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003341 getValue(I.getOperand(1)).getValueType(),
3342 getValue(I.getOperand(1)));
3343 }
3344
Dale Johannesen59e577f2008-09-05 18:38:42 +00003345 setValue(&I, result);
3346}
3347
Bill Wendling3eb59402008-09-09 00:28:24 +00003348/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3349/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003350void
3351SelectionDAGLowering::visitLog2(CallInst &I) {
3352 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003353 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003354
Dale Johannesen853244f2008-09-05 23:49:37 +00003355 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003356 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3357 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003358 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003359
Bill Wendling39150252008-09-09 20:39:27 +00003360 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003361 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003362
3363 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003364 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003365 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003366
Bill Wendling3eb59402008-09-09 00:28:24 +00003367 // Different possible minimax approximations of significand in
3368 // floating-point for various degrees of accuracy over [1,2].
3369 if (LimitFloatPrecision <= 6) {
3370 // For floating-point precision of 6:
3371 //
3372 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3373 //
3374 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003375 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003376 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003377 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003378 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003379 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3380 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003381 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003382
Scott Michelfdc40a02009-02-17 22:15:04 +00003383 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003384 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003385 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3386 // For floating-point precision of 12:
3387 //
3388 // Log2ofMantissa =
3389 // -2.51285454f +
3390 // (4.07009056f +
3391 // (-2.12067489f +
3392 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003393 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003394 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003395 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003396 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003397 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003398 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003399 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3400 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003401 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003402 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3403 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003404 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003405 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3406 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003407 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003408
Scott Michelfdc40a02009-02-17 22:15:04 +00003409 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003410 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003411 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3412 // For floating-point precision of 18:
3413 //
3414 // Log2ofMantissa =
3415 // -3.0400495f +
3416 // (6.1129976f +
3417 // (-5.3420409f +
3418 // (3.2865683f +
3419 // (-1.2669343f +
3420 // (0.27515199f -
3421 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3422 //
3423 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003424 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003425 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003426 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003427 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003428 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3429 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003430 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003431 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3432 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003433 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003434 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3435 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003436 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003437 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3438 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003439 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003440 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3441 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003442 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003443
Scott Michelfdc40a02009-02-17 22:15:04 +00003444 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003445 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003446 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003447 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003448 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003449 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003450 getValue(I.getOperand(1)).getValueType(),
3451 getValue(I.getOperand(1)));
3452 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003453
Dale Johannesen59e577f2008-09-05 18:38:42 +00003454 setValue(&I, result);
3455}
3456
Bill Wendling3eb59402008-09-09 00:28:24 +00003457/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3458/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003459void
3460SelectionDAGLowering::visitLog10(CallInst &I) {
3461 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003462 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003463
Dale Johannesen852680a2008-09-05 21:27:19 +00003464 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003465 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3466 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003467 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003468
Bill Wendling39150252008-09-09 20:39:27 +00003469 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003470 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003471 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003472 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003473
3474 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003475 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003476 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003477
3478 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003479 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003480 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003481 // Log10ofMantissa =
3482 // -0.50419619f +
3483 // (0.60948995f - 0.10380950f * x) * x;
3484 //
3485 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003486 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003487 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003488 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003489 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003490 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3491 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003492 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003493
Scott Michelfdc40a02009-02-17 22:15:04 +00003494 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003495 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003496 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3497 // For floating-point precision of 12:
3498 //
3499 // Log10ofMantissa =
3500 // -0.64831180f +
3501 // (0.91751397f +
3502 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3503 //
3504 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003505 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003506 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003507 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003508 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003509 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3510 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003511 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003512 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3513 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003514 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003515
Scott Michelfdc40a02009-02-17 22:15:04 +00003516 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003517 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003518 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003519 // For floating-point precision of 18:
3520 //
3521 // Log10ofMantissa =
3522 // -0.84299375f +
3523 // (1.5327582f +
3524 // (-1.0688956f +
3525 // (0.49102474f +
3526 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3527 //
3528 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003529 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003530 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003531 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003532 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003533 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3534 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003535 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003536 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3537 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003538 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003539 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3540 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003541 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003542 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3543 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003544 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003545
Scott Michelfdc40a02009-02-17 22:15:04 +00003546 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003547 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003548 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003549 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003550 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003551 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003552 getValue(I.getOperand(1)).getValueType(),
3553 getValue(I.getOperand(1)));
3554 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003555
Dale Johannesen59e577f2008-09-05 18:38:42 +00003556 setValue(&I, result);
3557}
3558
Bill Wendlinge10c8142008-09-09 22:39:21 +00003559/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3560/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003561void
3562SelectionDAGLowering::visitExp2(CallInst &I) {
3563 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003564 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003565
Dale Johannesen601d3c02008-09-05 01:48:15 +00003566 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003567 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3568 SDValue Op = getValue(I.getOperand(1));
3569
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003570 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003571
3572 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003573 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3574 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003575
3576 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003577 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003578 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003579
3580 if (LimitFloatPrecision <= 6) {
3581 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003582 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003583 // TwoToFractionalPartOfX =
3584 // 0.997535578f +
3585 // (0.735607626f + 0.252464424f * x) * x;
3586 //
3587 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003588 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003589 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003590 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003591 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003592 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3593 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003594 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003595 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003596 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003597 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003598
Scott Michelfdc40a02009-02-17 22:15:04 +00003599 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003600 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003601 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3602 // For floating-point precision of 12:
3603 //
3604 // TwoToFractionalPartOfX =
3605 // 0.999892986f +
3606 // (0.696457318f +
3607 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3608 //
3609 // error 0.000107046256, which is 13 to 14 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, 0x3da235e3));
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, 0x3e65b8f3));
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, 0x3f324b07));
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, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003620 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003621 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003622 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003623
Scott Michelfdc40a02009-02-17 22:15:04 +00003624 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003625 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003626 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3627 // For floating-point precision of 18:
3628 //
3629 // TwoToFractionalPartOfX =
3630 // 0.999999982f +
3631 // (0.693148872f +
3632 // (0.240227044f +
3633 // (0.554906021e-1f +
3634 // (0.961591928e-2f +
3635 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3636 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003637 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003638 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003639 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003640 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003641 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3642 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003643 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003644 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3645 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003646 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003647 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3648 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003649 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003650 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3651 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003652 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003653 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3654 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003655 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003656 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003657 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003658 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003659
Scott Michelfdc40a02009-02-17 22:15:04 +00003660 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003661 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003662 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003663 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003664 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003665 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003666 getValue(I.getOperand(1)).getValueType(),
3667 getValue(I.getOperand(1)));
3668 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003669
Dale Johannesen601d3c02008-09-05 01:48:15 +00003670 setValue(&I, result);
3671}
3672
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003673/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3674/// limited-precision mode with x == 10.0f.
3675void
3676SelectionDAGLowering::visitPow(CallInst &I) {
3677 SDValue result;
3678 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003679 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003680 bool IsExp10 = false;
3681
3682 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003683 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003684 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3685 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3686 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3687 APFloat Ten(10.0f);
3688 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3689 }
3690 }
3691 }
3692
3693 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3694 SDValue Op = getValue(I.getOperand(2));
3695
3696 // Put the exponent in the right bit position for later addition to the
3697 // final result:
3698 //
3699 // #define LOG2OF10 3.3219281f
3700 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003701 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003702 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003703 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003704
3705 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003706 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3707 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003708
3709 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003710 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003711 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003712
3713 if (LimitFloatPrecision <= 6) {
3714 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003715 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003716 // twoToFractionalPartOfX =
3717 // 0.997535578f +
3718 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003719 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003720 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003721 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003722 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003723 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003724 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003725 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3726 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003727 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003728 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003729 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003730 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003731
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003732 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3733 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003734 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3735 // For floating-point precision of 12:
3736 //
3737 // TwoToFractionalPartOfX =
3738 // 0.999892986f +
3739 // (0.696457318f +
3740 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3741 //
3742 // error 0.000107046256, which is 13 to 14 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, 0x3da235e3));
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, 0x3e65b8f3));
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, 0x3f324b07));
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, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003753 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003754 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003755 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003756
Scott Michelfdc40a02009-02-17 22:15:04 +00003757 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003758 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003759 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3760 // For floating-point precision of 18:
3761 //
3762 // TwoToFractionalPartOfX =
3763 // 0.999999982f +
3764 // (0.693148872f +
3765 // (0.240227044f +
3766 // (0.554906021e-1f +
3767 // (0.961591928e-2f +
3768 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3769 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003770 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003771 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003772 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003773 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003774 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3775 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003776 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003777 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3778 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003779 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003780 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3781 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003782 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003783 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3784 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003785 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003786 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3787 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003788 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003789 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003790 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003791 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003792
Scott Michelfdc40a02009-02-17 22:15:04 +00003793 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003794 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003795 }
3796 } else {
3797 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003798 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003799 getValue(I.getOperand(1)).getValueType(),
3800 getValue(I.getOperand(1)),
3801 getValue(I.getOperand(2)));
3802 }
3803
3804 setValue(&I, result);
3805}
3806
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003807/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3808/// we want to emit this as a call to a named external function, return the name
3809/// otherwise lower it and return null.
3810const char *
3811SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003812 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003813 switch (Intrinsic) {
3814 default:
3815 // By default, turn this into a target intrinsic node.
3816 visitTargetIntrinsic(I, Intrinsic);
3817 return 0;
3818 case Intrinsic::vastart: visitVAStart(I); return 0;
3819 case Intrinsic::vaend: visitVAEnd(I); return 0;
3820 case Intrinsic::vacopy: visitVACopy(I); return 0;
3821 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003822 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003823 getValue(I.getOperand(1))));
3824 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003825 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003826 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003827 getValue(I.getOperand(1))));
3828 return 0;
3829 case Intrinsic::setjmp:
3830 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3831 break;
3832 case Intrinsic::longjmp:
3833 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3834 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003835 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003836 SDValue Op1 = getValue(I.getOperand(1));
3837 SDValue Op2 = getValue(I.getOperand(2));
3838 SDValue Op3 = getValue(I.getOperand(3));
3839 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003840 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003841 I.getOperand(1), 0, I.getOperand(2), 0));
3842 return 0;
3843 }
Chris Lattner824b9582008-11-21 16:42:48 +00003844 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003845 SDValue Op1 = getValue(I.getOperand(1));
3846 SDValue Op2 = getValue(I.getOperand(2));
3847 SDValue Op3 = getValue(I.getOperand(3));
3848 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003849 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003850 I.getOperand(1), 0));
3851 return 0;
3852 }
Chris Lattner824b9582008-11-21 16:42:48 +00003853 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003854 SDValue Op1 = getValue(I.getOperand(1));
3855 SDValue Op2 = getValue(I.getOperand(2));
3856 SDValue Op3 = getValue(I.getOperand(3));
3857 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3858
3859 // If the source and destination are known to not be aliases, we can
3860 // lower memmove as memcpy.
3861 uint64_t Size = -1ULL;
3862 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003863 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003864 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3865 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003866 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003867 I.getOperand(1), 0, I.getOperand(2), 0));
3868 return 0;
3869 }
3870
Dale Johannesena04b7572009-02-03 23:04:43 +00003871 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003872 I.getOperand(1), 0, I.getOperand(2), 0));
3873 return 0;
3874 }
3875 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003876 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003877 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003878 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003879 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003880 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003881
Bill Wendling98a366d2009-04-29 23:29:43 +00003882 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003883 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003884 SPI.getLine(),
3885 SPI.getColumn(),
3886 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003887 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003888 return 0;
3889 }
3890 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003891 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003892 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003893 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3894 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003895 unsigned LabelID =
3896 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Devang Patel48c7fa22009-04-13 18:13:16 +00003897 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3898 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003899 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003900 return 0;
3901 }
3902 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003903 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003904 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003905
Devang Patel7e1e31f2009-07-02 22:43:26 +00003906 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3907 || !DW->ShouldEmitDwarfDebug())
3908 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003909
Devang Patel7e1e31f2009-07-02 22:43:26 +00003910 MachineFunction &MF = DAG.getMachineFunction();
3911 DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext()));
3912
3913 if (isInlinedFnEnd(REI, MF.getFunction())) {
3914 // This is end of inlined function. Debugging information for inlined
3915 // function is not handled yet (only supported by FastISel).
3916 if (OptLevel == CodeGenOpt::None) {
3917 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3918 if (ID != 0)
3919 // Returned ID is 0 if this is unbalanced "end of inlined
3920 // scope". This could happen if optimizer eats dbg intrinsics or
3921 // "beginning of inlined scope" is not recoginized due to missing
3922 // location info. In such cases, do ignore this region.end.
3923 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3924 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003925 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003926 return 0;
3927 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003928
Devang Patel7e1e31f2009-07-02 22:43:26 +00003929 unsigned LabelID =
3930 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
3931 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3932 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003933 return 0;
3934 }
3935 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003936 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003937 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003938 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None) || !DW
3939 || !DW->ShouldEmitDwarfDebug())
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003940 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003941
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003942 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003943 // This is a beginning of an inlined function.
3944 if (isInlinedFnStart(FSI, MF.getFunction())) {
3945 if (OptLevel != CodeGenOpt::None)
3946 // FIXME: Debugging informaation for inlined function is only
3947 // supported at CodeGenOpt::Node.
3948 return 0;
3949
Bill Wendlingc677fe52009-05-10 00:10:50 +00003950 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003951 // If llvm.dbg.func.start is seen in a new block before any
3952 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3953 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3954 if (PrevLoc.isUnknown())
3955 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003956
Devang Patel7e1e31f2009-07-02 22:43:26 +00003957 // Record the source line.
3958 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3959
3960 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
3961 DISubprogram SP(cast<GlobalVariable>(FSI.getSubprogram()));
3962 DICompileUnit CU(PrevLocTpl.CompileUnit);
3963 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3964 PrevLocTpl.Line,
3965 PrevLocTpl.Col);
3966 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3967 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003968 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003969 }
3970
Devang Patel07b0ec02009-07-02 00:08:09 +00003971 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003972 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Devang Patel07b0ec02009-07-02 00:08:09 +00003973
Devang Patel7e1e31f2009-07-02 22:43:26 +00003974 // llvm.dbg.func_start also defines beginning of function scope.
3975 DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003976 return 0;
3977 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003978 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003979 if (OptLevel != CodeGenOpt::None)
3980 // FIXME: Variable debug info is not supported here.
3981 return 0;
3982
3983 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3984 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3985 return 0;
3986
3987 Value *Variable = DI.getVariable();
3988 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
3989 getValue(DI.getAddress()), getValue(Variable)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003990 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003991 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003992 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003993 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003994 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003995 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3996 SDValue Ops[1];
3997 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003998 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003999 setValue(&I, Op);
4000 DAG.setRoot(Op.getValue(1));
4001 return 0;
4002 }
4003
4004 case Intrinsic::eh_selector_i32:
4005 case Intrinsic::eh_selector_i64: {
4006 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4007 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
4008 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004009
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004010 if (MMI) {
4011 if (CurMBB->isLandingPad())
4012 AddCatchInfo(I, MMI, CurMBB);
4013 else {
4014#ifndef NDEBUG
4015 FuncInfo.CatchInfoLost.insert(&I);
4016#endif
4017 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4018 unsigned Reg = TLI.getExceptionSelectorRegister();
4019 if (Reg) CurMBB->addLiveIn(Reg);
4020 }
4021
4022 // Insert the EHSELECTION instruction.
4023 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4024 SDValue Ops[2];
4025 Ops[0] = getValue(I.getOperand(1));
4026 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004027 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004028 setValue(&I, Op);
4029 DAG.setRoot(Op.getValue(1));
4030 } else {
4031 setValue(&I, DAG.getConstant(0, VT));
4032 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004033
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004034 return 0;
4035 }
4036
4037 case Intrinsic::eh_typeid_for_i32:
4038 case Intrinsic::eh_typeid_for_i64: {
4039 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4040 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4041 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004042
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004043 if (MMI) {
4044 // Find the type id for the given typeinfo.
4045 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4046
4047 unsigned TypeID = MMI->getTypeIDFor(GV);
4048 setValue(&I, DAG.getConstant(TypeID, VT));
4049 } else {
4050 // Return something different to eh_selector.
4051 setValue(&I, DAG.getConstant(1, VT));
4052 }
4053
4054 return 0;
4055 }
4056
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004057 case Intrinsic::eh_return_i32:
4058 case Intrinsic::eh_return_i64:
4059 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004060 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004061 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004062 MVT::Other,
4063 getControlRoot(),
4064 getValue(I.getOperand(1)),
4065 getValue(I.getOperand(2))));
4066 } else {
4067 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4068 }
4069
4070 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004071 case Intrinsic::eh_unwind_init:
4072 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4073 MMI->setCallsUnwindInit(true);
4074 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004075
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004076 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004077
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004078 case Intrinsic::eh_dwarf_cfa: {
4079 MVT VT = getValue(I.getOperand(1)).getValueType();
4080 SDValue CfaArg;
4081 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004082 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004083 TLI.getPointerTy(), getValue(I.getOperand(1)));
4084 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004085 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004086 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004087
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004088 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004089 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004090 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004091 TLI.getPointerTy()),
4092 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004093 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004094 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004095 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004096 TLI.getPointerTy(),
4097 DAG.getConstant(0,
4098 TLI.getPointerTy())),
4099 Offset));
4100 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004101 }
4102
Mon P Wang77cdf302008-11-10 20:54:11 +00004103 case Intrinsic::convertff:
4104 case Intrinsic::convertfsi:
4105 case Intrinsic::convertfui:
4106 case Intrinsic::convertsif:
4107 case Intrinsic::convertuif:
4108 case Intrinsic::convertss:
4109 case Intrinsic::convertsu:
4110 case Intrinsic::convertus:
4111 case Intrinsic::convertuu: {
4112 ISD::CvtCode Code = ISD::CVT_INVALID;
4113 switch (Intrinsic) {
4114 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4115 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4116 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4117 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4118 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4119 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4120 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4121 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4122 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4123 }
4124 MVT DestVT = TLI.getValueType(I.getType());
4125 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004126 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004127 DAG.getValueType(DestVT),
4128 DAG.getValueType(getValue(Op1).getValueType()),
4129 getValue(I.getOperand(2)),
4130 getValue(I.getOperand(3)),
4131 Code));
4132 return 0;
4133 }
4134
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004135 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004136 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004137 getValue(I.getOperand(1)).getValueType(),
4138 getValue(I.getOperand(1))));
4139 return 0;
4140 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004141 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004142 getValue(I.getOperand(1)).getValueType(),
4143 getValue(I.getOperand(1)),
4144 getValue(I.getOperand(2))));
4145 return 0;
4146 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004147 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004148 getValue(I.getOperand(1)).getValueType(),
4149 getValue(I.getOperand(1))));
4150 return 0;
4151 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004152 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004153 getValue(I.getOperand(1)).getValueType(),
4154 getValue(I.getOperand(1))));
4155 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004156 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004157 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004158 return 0;
4159 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004160 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004161 return 0;
4162 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004163 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004164 return 0;
4165 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004166 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004167 return 0;
4168 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004169 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004170 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004171 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004172 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004173 return 0;
4174 case Intrinsic::pcmarker: {
4175 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004176 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004177 return 0;
4178 }
4179 case Intrinsic::readcyclecounter: {
4180 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004181 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004182 DAG.getVTList(MVT::i64, MVT::Other),
4183 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004184 setValue(&I, Tmp);
4185 DAG.setRoot(Tmp.getValue(1));
4186 return 0;
4187 }
4188 case Intrinsic::part_select: {
4189 // Currently not implemented: just abort
4190 assert(0 && "part_select intrinsic not implemented");
4191 abort();
4192 }
4193 case Intrinsic::part_set: {
4194 // Currently not implemented: just abort
4195 assert(0 && "part_set intrinsic not implemented");
4196 abort();
4197 }
4198 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004199 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004200 getValue(I.getOperand(1)).getValueType(),
4201 getValue(I.getOperand(1))));
4202 return 0;
4203 case Intrinsic::cttz: {
4204 SDValue Arg = getValue(I.getOperand(1));
4205 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004206 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004207 setValue(&I, result);
4208 return 0;
4209 }
4210 case Intrinsic::ctlz: {
4211 SDValue Arg = getValue(I.getOperand(1));
4212 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004213 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004214 setValue(&I, result);
4215 return 0;
4216 }
4217 case Intrinsic::ctpop: {
4218 SDValue Arg = getValue(I.getOperand(1));
4219 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004220 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004221 setValue(&I, result);
4222 return 0;
4223 }
4224 case Intrinsic::stacksave: {
4225 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004226 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004227 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004228 setValue(&I, Tmp);
4229 DAG.setRoot(Tmp.getValue(1));
4230 return 0;
4231 }
4232 case Intrinsic::stackrestore: {
4233 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004234 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004235 return 0;
4236 }
Bill Wendling57344502008-11-18 11:01:33 +00004237 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004238 // Emit code into the DAG to store the stack guard onto the stack.
4239 MachineFunction &MF = DAG.getMachineFunction();
4240 MachineFrameInfo *MFI = MF.getFrameInfo();
4241 MVT PtrTy = TLI.getPointerTy();
4242
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004243 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4244 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004245
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004246 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004247 MFI->setStackProtectorIndex(FI);
4248
4249 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4250
4251 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004252 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004253 PseudoSourceValue::getFixedStack(FI),
4254 0, true);
4255 setValue(&I, Result);
4256 DAG.setRoot(Result);
4257 return 0;
4258 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004259 case Intrinsic::var_annotation:
4260 // Discard annotate attributes
4261 return 0;
4262
4263 case Intrinsic::init_trampoline: {
4264 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4265
4266 SDValue Ops[6];
4267 Ops[0] = getRoot();
4268 Ops[1] = getValue(I.getOperand(1));
4269 Ops[2] = getValue(I.getOperand(2));
4270 Ops[3] = getValue(I.getOperand(3));
4271 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4272 Ops[5] = DAG.getSrcValue(F);
4273
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004274 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004275 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
4276 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004277
4278 setValue(&I, Tmp);
4279 DAG.setRoot(Tmp.getValue(1));
4280 return 0;
4281 }
4282
4283 case Intrinsic::gcroot:
4284 if (GFI) {
4285 Value *Alloca = I.getOperand(1);
4286 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004287
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004288 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4289 GFI->addStackRoot(FI->getIndex(), TypeMap);
4290 }
4291 return 0;
4292
4293 case Intrinsic::gcread:
4294 case Intrinsic::gcwrite:
4295 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4296 return 0;
4297
4298 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004299 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004300 return 0;
4301 }
4302
4303 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004304 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004305 return 0;
4306 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004307
Bill Wendlingef375462008-11-21 02:38:44 +00004308 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004309 return implVisitAluOverflow(I, ISD::UADDO);
4310 case Intrinsic::sadd_with_overflow:
4311 return implVisitAluOverflow(I, ISD::SADDO);
4312 case Intrinsic::usub_with_overflow:
4313 return implVisitAluOverflow(I, ISD::USUBO);
4314 case Intrinsic::ssub_with_overflow:
4315 return implVisitAluOverflow(I, ISD::SSUBO);
4316 case Intrinsic::umul_with_overflow:
4317 return implVisitAluOverflow(I, ISD::UMULO);
4318 case Intrinsic::smul_with_overflow:
4319 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004320
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004321 case Intrinsic::prefetch: {
4322 SDValue Ops[4];
4323 Ops[0] = getRoot();
4324 Ops[1] = getValue(I.getOperand(1));
4325 Ops[2] = getValue(I.getOperand(2));
4326 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004327 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004328 return 0;
4329 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004330
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004331 case Intrinsic::memory_barrier: {
4332 SDValue Ops[6];
4333 Ops[0] = getRoot();
4334 for (int x = 1; x < 6; ++x)
4335 Ops[x] = getValue(I.getOperand(x));
4336
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004337 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 return 0;
4339 }
4340 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004341 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004342 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004343 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004344 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4345 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004346 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 getValue(I.getOperand(2)),
4348 getValue(I.getOperand(3)),
4349 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004350 setValue(&I, L);
4351 DAG.setRoot(L.getValue(1));
4352 return 0;
4353 }
4354 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004355 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004356 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004357 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004358 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004359 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004360 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004361 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004362 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004363 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004364 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004365 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004366 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004367 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004368 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004369 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004370 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004371 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004372 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004373 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004374 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004375 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004376 }
4377}
4378
4379
4380void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4381 bool IsTailCall,
4382 MachineBasicBlock *LandingPad) {
4383 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4384 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4385 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4386 unsigned BeginLabel = 0, EndLabel = 0;
4387
4388 TargetLowering::ArgListTy Args;
4389 TargetLowering::ArgListEntry Entry;
4390 Args.reserve(CS.arg_size());
4391 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4392 i != e; ++i) {
4393 SDValue ArgNode = getValue(*i);
4394 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4395
4396 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004397 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4398 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4399 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4400 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4401 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4402 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004403 Entry.Alignment = CS.getParamAlignment(attrInd);
4404 Args.push_back(Entry);
4405 }
4406
4407 if (LandingPad && MMI) {
4408 // Insert a label before the invoke call to mark the try range. This can be
4409 // used to detect deletion of the invoke via the MachineModuleInfo.
4410 BeginLabel = MMI->NextLabelID();
4411 // Both PendingLoads and PendingExports must be flushed here;
4412 // this call might not return.
4413 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004414 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4415 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004416 }
4417
4418 std::pair<SDValue,SDValue> Result =
4419 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004420 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004421 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004422 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004423 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004424 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004425 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004426 if (CS.getType() != Type::VoidTy)
4427 setValue(CS.getInstruction(), Result.first);
4428 DAG.setRoot(Result.second);
4429
4430 if (LandingPad && MMI) {
4431 // Insert a label at the end of the invoke call to mark the try range. This
4432 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4433 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004434 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4435 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004436
4437 // Inform MachineModuleInfo of range.
4438 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4439 }
4440}
4441
4442
4443void SelectionDAGLowering::visitCall(CallInst &I) {
4444 const char *RenameFn = 0;
4445 if (Function *F = I.getCalledFunction()) {
4446 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004447 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4448 if (II) {
4449 if (unsigned IID = II->getIntrinsicID(F)) {
4450 RenameFn = visitIntrinsicCall(I, IID);
4451 if (!RenameFn)
4452 return;
4453 }
4454 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004455 if (unsigned IID = F->getIntrinsicID()) {
4456 RenameFn = visitIntrinsicCall(I, IID);
4457 if (!RenameFn)
4458 return;
4459 }
4460 }
4461
4462 // Check for well-known libc/libm calls. If the function is internal, it
4463 // can't be a library call.
4464 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004465 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004466 const char *NameStr = F->getNameStart();
4467 if (NameStr[0] == 'c' &&
4468 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4469 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4470 if (I.getNumOperands() == 3 && // Basic sanity checks.
4471 I.getOperand(1)->getType()->isFloatingPoint() &&
4472 I.getType() == I.getOperand(1)->getType() &&
4473 I.getType() == I.getOperand(2)->getType()) {
4474 SDValue LHS = getValue(I.getOperand(1));
4475 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004476 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004477 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004478 return;
4479 }
4480 } else if (NameStr[0] == 'f' &&
4481 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4482 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4483 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4484 if (I.getNumOperands() == 2 && // Basic sanity checks.
4485 I.getOperand(1)->getType()->isFloatingPoint() &&
4486 I.getType() == I.getOperand(1)->getType()) {
4487 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004488 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004489 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004490 return;
4491 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004492 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004493 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4494 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4495 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4496 if (I.getNumOperands() == 2 && // Basic sanity checks.
4497 I.getOperand(1)->getType()->isFloatingPoint() &&
4498 I.getType() == I.getOperand(1)->getType()) {
4499 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004500 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004501 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004502 return;
4503 }
4504 } else if (NameStr[0] == 'c' &&
4505 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4506 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4507 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4508 if (I.getNumOperands() == 2 && // Basic sanity checks.
4509 I.getOperand(1)->getType()->isFloatingPoint() &&
4510 I.getType() == I.getOperand(1)->getType()) {
4511 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004512 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004513 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004514 return;
4515 }
4516 }
4517 }
4518 } else if (isa<InlineAsm>(I.getOperand(0))) {
4519 visitInlineAsm(&I);
4520 return;
4521 }
4522
4523 SDValue Callee;
4524 if (!RenameFn)
4525 Callee = getValue(I.getOperand(0));
4526 else
Bill Wendling056292f2008-09-16 21:48:12 +00004527 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004528
4529 LowerCallTo(&I, Callee, I.isTailCall());
4530}
4531
4532
4533/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004534/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004535/// Chain/Flag as the input and updates them for the output Chain/Flag.
4536/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004537SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004538 SDValue &Chain,
4539 SDValue *Flag) const {
4540 // Assemble the legal parts into the final values.
4541 SmallVector<SDValue, 4> Values(ValueVTs.size());
4542 SmallVector<SDValue, 8> Parts;
4543 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4544 // Copy the legal parts from the registers.
4545 MVT ValueVT = ValueVTs[Value];
4546 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4547 MVT RegisterVT = RegVTs[Value];
4548
4549 Parts.resize(NumRegs);
4550 for (unsigned i = 0; i != NumRegs; ++i) {
4551 SDValue P;
4552 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004553 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004554 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004555 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004556 *Flag = P.getValue(2);
4557 }
4558 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004559
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004560 // If the source register was virtual and if we know something about it,
4561 // add an assert node.
4562 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4563 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4564 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4565 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4566 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4567 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004568
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004569 unsigned RegSize = RegisterVT.getSizeInBits();
4570 unsigned NumSignBits = LOI.NumSignBits;
4571 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004572
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004573 // FIXME: We capture more information than the dag can represent. For
4574 // now, just use the tightest assertzext/assertsext possible.
4575 bool isSExt = true;
4576 MVT FromVT(MVT::Other);
4577 if (NumSignBits == RegSize)
4578 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4579 else if (NumZeroBits >= RegSize-1)
4580 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4581 else if (NumSignBits > RegSize-8)
4582 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004583 else if (NumZeroBits >= RegSize-8)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004584 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4585 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004586 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004587 else if (NumZeroBits >= RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004588 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004589 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004590 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004591 else if (NumZeroBits >= RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004592 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004593
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004594 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004595 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004596 RegisterVT, P, DAG.getValueType(FromVT));
4597
4598 }
4599 }
4600 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004601
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004602 Parts[i] = P;
4603 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004604
Scott Michelfdc40a02009-02-17 22:15:04 +00004605 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004606 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004607 Part += NumRegs;
4608 Parts.clear();
4609 }
4610
Dale Johannesen66978ee2009-01-31 02:22:37 +00004611 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004612 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4613 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004614}
4615
4616/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004617/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004618/// Chain/Flag as the input and updates them for the output Chain/Flag.
4619/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004620void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004621 SDValue &Chain, SDValue *Flag) const {
4622 // Get the list of the values's legal parts.
4623 unsigned NumRegs = Regs.size();
4624 SmallVector<SDValue, 8> Parts(NumRegs);
4625 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4626 MVT ValueVT = ValueVTs[Value];
4627 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4628 MVT RegisterVT = RegVTs[Value];
4629
Dale Johannesen66978ee2009-01-31 02:22:37 +00004630 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004631 &Parts[Part], NumParts, RegisterVT);
4632 Part += NumParts;
4633 }
4634
4635 // Copy the parts into the registers.
4636 SmallVector<SDValue, 8> Chains(NumRegs);
4637 for (unsigned i = 0; i != NumRegs; ++i) {
4638 SDValue Part;
4639 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004640 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004641 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004642 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643 *Flag = Part.getValue(1);
4644 }
4645 Chains[i] = Part.getValue(0);
4646 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004647
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004648 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004649 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004650 // flagged to it. That is the CopyToReg nodes and the user are considered
4651 // a single scheduling unit. If we create a TokenFactor and return it as
4652 // chain, then the TokenFactor is both a predecessor (operand) of the
4653 // user as well as a successor (the TF operands are flagged to the user).
4654 // c1, f1 = CopyToReg
4655 // c2, f2 = CopyToReg
4656 // c3 = TokenFactor c1, c2
4657 // ...
4658 // = op c3, ..., f2
4659 Chain = Chains[NumRegs-1];
4660 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004661 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004662}
4663
4664/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004665/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004666/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004667void RegsForValue::AddInlineAsmOperands(unsigned Code,
4668 bool HasMatching,unsigned MatchingIdx,
4669 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004670 std::vector<SDValue> &Ops) const {
4671 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004672 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4673 unsigned Flag = Code | (Regs.size() << 3);
4674 if (HasMatching)
4675 Flag |= 0x80000000 | (MatchingIdx << 16);
4676 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004677 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4678 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4679 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004680 for (unsigned i = 0; i != NumRegs; ++i) {
4681 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004682 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004683 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004684 }
4685}
4686
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004687/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004688/// i.e. it isn't a stack pointer or some other special register, return the
4689/// register class for the register. Otherwise, return null.
4690static const TargetRegisterClass *
4691isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4692 const TargetLowering &TLI,
4693 const TargetRegisterInfo *TRI) {
4694 MVT FoundVT = MVT::Other;
4695 const TargetRegisterClass *FoundRC = 0;
4696 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4697 E = TRI->regclass_end(); RCI != E; ++RCI) {
4698 MVT ThisVT = MVT::Other;
4699
4700 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004701 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004702 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4703 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4704 I != E; ++I) {
4705 if (TLI.isTypeLegal(*I)) {
4706 // If we have already found this register in a different register class,
4707 // choose the one with the largest VT specified. For example, on
4708 // PowerPC, we favor f64 register classes over f32.
4709 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4710 ThisVT = *I;
4711 break;
4712 }
4713 }
4714 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004715
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004716 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004717
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004718 // NOTE: This isn't ideal. In particular, this might allocate the
4719 // frame pointer in functions that need it (due to them not being taken
4720 // out of allocation, because a variable sized allocation hasn't been seen
4721 // yet). This is a slight code pessimization, but should still work.
4722 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4723 E = RC->allocation_order_end(MF); I != E; ++I)
4724 if (*I == Reg) {
4725 // We found a matching register class. Keep looking at others in case
4726 // we find one with larger registers that this physreg is also in.
4727 FoundRC = RC;
4728 FoundVT = ThisVT;
4729 break;
4730 }
4731 }
4732 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004733}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004734
4735
4736namespace llvm {
4737/// AsmOperandInfo - This contains information for each constraint that we are
4738/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004739class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004740 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004741public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004742 /// CallOperand - If this is the result output operand or a clobber
4743 /// this is null, otherwise it is the incoming operand to the CallInst.
4744 /// This gets modified as the asm is processed.
4745 SDValue CallOperand;
4746
4747 /// AssignedRegs - If this is a register or register class operand, this
4748 /// contains the set of register corresponding to the operand.
4749 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004750
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004751 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4752 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4753 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004754
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004755 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4756 /// busy in OutputRegs/InputRegs.
4757 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004758 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004759 std::set<unsigned> &InputRegs,
4760 const TargetRegisterInfo &TRI) const {
4761 if (isOutReg) {
4762 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4763 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4764 }
4765 if (isInReg) {
4766 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4767 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4768 }
4769 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004770
Chris Lattner81249c92008-10-17 17:05:25 +00004771 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4772 /// corresponds to. If there is no Value* for this operand, it returns
4773 /// MVT::Other.
4774 MVT getCallOperandValMVT(const TargetLowering &TLI,
4775 const TargetData *TD) const {
4776 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004777
Chris Lattner81249c92008-10-17 17:05:25 +00004778 if (isa<BasicBlock>(CallOperandVal))
4779 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004780
Chris Lattner81249c92008-10-17 17:05:25 +00004781 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004782
Chris Lattner81249c92008-10-17 17:05:25 +00004783 // If this is an indirect operand, the operand is a pointer to the
4784 // accessed type.
4785 if (isIndirect)
4786 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004787
Chris Lattner81249c92008-10-17 17:05:25 +00004788 // If OpTy is not a single value, it may be a struct/union that we
4789 // can tile with integers.
4790 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4791 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4792 switch (BitSize) {
4793 default: break;
4794 case 1:
4795 case 8:
4796 case 16:
4797 case 32:
4798 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004799 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004800 OpTy = IntegerType::get(BitSize);
4801 break;
4802 }
4803 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004804
Chris Lattner81249c92008-10-17 17:05:25 +00004805 return TLI.getValueType(OpTy, true);
4806 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004807
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004808private:
4809 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4810 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004811 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004812 const TargetRegisterInfo &TRI) {
4813 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4814 Regs.insert(Reg);
4815 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4816 for (; *Aliases; ++Aliases)
4817 Regs.insert(*Aliases);
4818 }
4819};
4820} // end llvm namespace.
4821
4822
4823/// GetRegistersForValue - Assign registers (virtual or physical) for the
4824/// specified operand. We prefer to assign virtual registers, to allow the
4825/// register allocator handle the assignment process. However, if the asm uses
4826/// features that we can't model on machineinstrs, we have SDISel do the
4827/// allocation. This produces generally horrible, but correct, code.
4828///
4829/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004830/// Input and OutputRegs are the set of already allocated physical registers.
4831///
4832void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004833GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004834 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004835 std::set<unsigned> &InputRegs) {
4836 // Compute whether this value requires an input register, an output register,
4837 // or both.
4838 bool isOutReg = false;
4839 bool isInReg = false;
4840 switch (OpInfo.Type) {
4841 case InlineAsm::isOutput:
4842 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004843
4844 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004845 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004846 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004847 break;
4848 case InlineAsm::isInput:
4849 isInReg = true;
4850 isOutReg = false;
4851 break;
4852 case InlineAsm::isClobber:
4853 isOutReg = true;
4854 isInReg = true;
4855 break;
4856 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004857
4858
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004859 MachineFunction &MF = DAG.getMachineFunction();
4860 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004861
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004862 // If this is a constraint for a single physreg, or a constraint for a
4863 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004864 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004865 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4866 OpInfo.ConstraintVT);
4867
4868 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004869 if (OpInfo.ConstraintVT != MVT::Other) {
4870 // If this is a FP input in an integer register (or visa versa) insert a bit
4871 // cast of the input value. More generally, handle any case where the input
4872 // value disagrees with the register class we plan to stick this in.
4873 if (OpInfo.Type == InlineAsm::isInput &&
4874 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4875 // Try to convert to the first MVT that the reg class contains. If the
4876 // types are identical size, use a bitcast to convert (e.g. two differing
4877 // vector types).
4878 MVT RegVT = *PhysReg.second->vt_begin();
4879 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004880 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004881 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004882 OpInfo.ConstraintVT = RegVT;
4883 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4884 // If the input is a FP value and we want it in FP registers, do a
4885 // bitcast to the corresponding integer type. This turns an f64 value
4886 // into i64, which can be passed with two i32 values on a 32-bit
4887 // machine.
4888 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004889 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004890 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004891 OpInfo.ConstraintVT = RegVT;
4892 }
4893 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004894
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004895 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004896 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004897
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004898 MVT RegVT;
4899 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004900
4901 // If this is a constraint for a specific physical register, like {r17},
4902 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004903 if (unsigned AssignedReg = PhysReg.first) {
4904 const TargetRegisterClass *RC = PhysReg.second;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004905 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004906 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004907
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004908 // Get the actual register value type. This is important, because the user
4909 // may have asked for (e.g.) the AX register in i32 type. We need to
4910 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004911 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004912
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004913 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004914 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004915
4916 // If this is an expanded reference, add the rest of the regs to Regs.
4917 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004918 TargetRegisterClass::iterator I = RC->begin();
4919 for (; *I != AssignedReg; ++I)
4920 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004921
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004922 // Already added the first reg.
4923 --NumRegs; ++I;
4924 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004925 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004926 Regs.push_back(*I);
4927 }
4928 }
4929 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4930 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4931 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4932 return;
4933 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004934
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004935 // Otherwise, if this was a reference to an LLVM register class, create vregs
4936 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00004937 if (const TargetRegisterClass *RC = PhysReg.second) {
4938 RegVT = *RC->vt_begin();
Evan Chengfb112882009-03-23 08:01:15 +00004939 if (OpInfo.ConstraintVT == MVT::Other)
4940 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004941
Evan Chengfb112882009-03-23 08:01:15 +00004942 // Create the appropriate number of virtual registers.
4943 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4944 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00004945 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004946
Evan Chengfb112882009-03-23 08:01:15 +00004947 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4948 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004949 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004950
4951 // This is a reference to a register class that doesn't directly correspond
4952 // to an LLVM register class. Allocate NumRegs consecutive, available,
4953 // registers from the class.
4954 std::vector<unsigned> RegClassRegs
4955 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4956 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004957
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004958 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4959 unsigned NumAllocated = 0;
4960 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4961 unsigned Reg = RegClassRegs[i];
4962 // See if this register is available.
4963 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4964 (isInReg && InputRegs.count(Reg))) { // Already used.
4965 // Make sure we find consecutive registers.
4966 NumAllocated = 0;
4967 continue;
4968 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004969
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004970 // Check to see if this register is allocatable (i.e. don't give out the
4971 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004972 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4973 if (!RC) { // Couldn't allocate this register.
4974 // Reset NumAllocated to make sure we return consecutive registers.
4975 NumAllocated = 0;
4976 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004977 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004978
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004979 // Okay, this register is good, we can use it.
4980 ++NumAllocated;
4981
4982 // If we allocated enough consecutive registers, succeed.
4983 if (NumAllocated == NumRegs) {
4984 unsigned RegStart = (i-NumAllocated)+1;
4985 unsigned RegEnd = i+1;
4986 // Mark all of the allocated registers used.
4987 for (unsigned i = RegStart; i != RegEnd; ++i)
4988 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004989
4990 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004991 OpInfo.ConstraintVT);
4992 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4993 return;
4994 }
4995 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004996
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004997 // Otherwise, we couldn't allocate enough registers for this.
4998}
4999
Evan Chengda43bcf2008-09-24 00:05:32 +00005000/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5001/// processed uses a memory 'm' constraint.
5002static bool
5003hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005004 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005005 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5006 InlineAsm::ConstraintInfo &CI = CInfos[i];
5007 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5008 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5009 if (CType == TargetLowering::C_Memory)
5010 return true;
5011 }
Chris Lattner6c147292009-04-30 00:48:50 +00005012
5013 // Indirect operand accesses access memory.
5014 if (CI.isIndirect)
5015 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005016 }
5017
5018 return false;
5019}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005020
5021/// visitInlineAsm - Handle a call to an InlineAsm object.
5022///
5023void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5024 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5025
5026 /// ConstraintOperands - Information about all of the constraints.
5027 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005028
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005029 std::set<unsigned> OutputRegs, InputRegs;
5030
5031 // Do a prepass over the constraints, canonicalizing them, and building up the
5032 // ConstraintOperands list.
5033 std::vector<InlineAsm::ConstraintInfo>
5034 ConstraintInfos = IA->ParseConstraints();
5035
Evan Chengda43bcf2008-09-24 00:05:32 +00005036 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005037
5038 SDValue Chain, Flag;
5039
5040 // We won't need to flush pending loads if this asm doesn't touch
5041 // memory and is nonvolatile.
5042 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005043 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005044 else
5045 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005046
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005047 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5048 unsigned ResNo = 0; // ResNo - The result number of the next output.
5049 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5050 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5051 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005052
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005053 MVT OpVT = MVT::Other;
5054
5055 // Compute the value type for each operand.
5056 switch (OpInfo.Type) {
5057 case InlineAsm::isOutput:
5058 // Indirect outputs just consume an argument.
5059 if (OpInfo.isIndirect) {
5060 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5061 break;
5062 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005063
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005064 // The return value of the call is this value. As such, there is no
5065 // corresponding argument.
5066 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5067 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5068 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5069 } else {
5070 assert(ResNo == 0 && "Asm only has one result!");
5071 OpVT = TLI.getValueType(CS.getType());
5072 }
5073 ++ResNo;
5074 break;
5075 case InlineAsm::isInput:
5076 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5077 break;
5078 case InlineAsm::isClobber:
5079 // Nothing to do.
5080 break;
5081 }
5082
5083 // If this is an input or an indirect output, process the call argument.
5084 // BasicBlocks are labels, currently appearing only in asm's.
5085 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005086 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005087 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005088 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005089 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005090 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005091
Chris Lattner81249c92008-10-17 17:05:25 +00005092 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005093 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005094
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005095 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005096 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005097
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005098 // Second pass over the constraints: compute which constraint option to use
5099 // and assign registers to constraints that want a specific physreg.
5100 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5101 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005102
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005103 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005104 // matching input. If their types mismatch, e.g. one is an integer, the
5105 // other is floating point, or their sizes are different, flag it as an
5106 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005107 if (OpInfo.hasMatchingInput()) {
5108 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5109 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005110 if ((OpInfo.ConstraintVT.isInteger() !=
5111 Input.ConstraintVT.isInteger()) ||
5112 (OpInfo.ConstraintVT.getSizeInBits() !=
5113 Input.ConstraintVT.getSizeInBits())) {
Daniel Dunbar4cbb1732009-04-13 22:26:09 +00005114 cerr << "llvm: error: Unsupported asm: input constraint with a "
5115 << "matching output constraint of incompatible type!\n";
Evan Cheng09dc9c02008-12-16 18:21:39 +00005116 exit(1);
5117 }
5118 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005119 }
5120 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005121
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005122 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005123 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005124
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005125 // If this is a memory input, and if the operand is not indirect, do what we
5126 // need to to provide an address for the memory input.
5127 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5128 !OpInfo.isIndirect) {
5129 assert(OpInfo.Type == InlineAsm::isInput &&
5130 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005131
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005132 // Memory operands really want the address of the value. If we don't have
5133 // an indirect input, put it in the constpool if we can, otherwise spill
5134 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005135
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005136 // If the operand is a float, integer, or vector constant, spill to a
5137 // constant pool entry to get its address.
5138 Value *OpVal = OpInfo.CallOperandVal;
5139 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5140 isa<ConstantVector>(OpVal)) {
5141 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5142 TLI.getPointerTy());
5143 } else {
5144 // Otherwise, create a stack slot and emit a store to it before the
5145 // asm.
5146 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005147 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005148 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5149 MachineFunction &MF = DAG.getMachineFunction();
5150 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5151 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005152 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005153 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005154 OpInfo.CallOperand = StackSlot;
5155 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005156
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005157 // There is no longer a Value* corresponding to this operand.
5158 OpInfo.CallOperandVal = 0;
5159 // It is now an indirect operand.
5160 OpInfo.isIndirect = true;
5161 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005162
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005163 // If this constraint is for a specific register, allocate it before
5164 // anything else.
5165 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005166 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005167 }
5168 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005169
5170
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005171 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005172 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005173 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5174 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005175
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005176 // C_Register operands have already been allocated, Other/Memory don't need
5177 // to be.
5178 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005179 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005180 }
5181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005182 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5183 std::vector<SDValue> AsmNodeOperands;
5184 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5185 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005186 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005187
5188
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005189 // Loop over all of the inputs, copying the operand values into the
5190 // appropriate registers and processing the output regs.
5191 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005192
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005193 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5194 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005195
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005196 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5197 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5198
5199 switch (OpInfo.Type) {
5200 case InlineAsm::isOutput: {
5201 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5202 OpInfo.ConstraintType != TargetLowering::C_Register) {
5203 // Memory output, or 'other' output (e.g. 'X' constraint).
5204 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5205
5206 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005207 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5208 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005209 TLI.getPointerTy()));
5210 AsmNodeOperands.push_back(OpInfo.CallOperand);
5211 break;
5212 }
5213
5214 // Otherwise, this is a register or register class output.
5215
5216 // Copy the output from the appropriate register. Find a register that
5217 // we can use.
5218 if (OpInfo.AssignedRegs.Regs.empty()) {
Daniel Dunbar4cbb1732009-04-13 22:26:09 +00005219 cerr << "llvm: error: Couldn't allocate output reg for constraint '"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005220 << OpInfo.ConstraintCode << "'!\n";
5221 exit(1);
5222 }
5223
5224 // If this is an indirect operand, store through the pointer after the
5225 // asm.
5226 if (OpInfo.isIndirect) {
5227 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5228 OpInfo.CallOperandVal));
5229 } else {
5230 // This is the result value of the call.
5231 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5232 // Concatenate this output onto the outputs list.
5233 RetValRegs.append(OpInfo.AssignedRegs);
5234 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005235
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005236 // Add information to the INLINEASM node to know that this register is
5237 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005238 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5239 6 /* EARLYCLOBBER REGDEF */ :
5240 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005241 false,
5242 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005243 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005244 break;
5245 }
5246 case InlineAsm::isInput: {
5247 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005248
Chris Lattner6bdcda32008-10-17 16:47:46 +00005249 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005250 // If this is required to match an output register we have already set,
5251 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005252 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005253
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005254 // Scan until we find the definition we already emitted of this operand.
5255 // When we find it, create a RegsForValue operand.
5256 unsigned CurOp = 2; // The first operand.
5257 for (; OperandNo; --OperandNo) {
5258 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005259 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005260 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005261 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5262 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5263 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005264 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005265 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005266 }
5267
Evan Cheng697cbbf2009-03-20 18:03:34 +00005268 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005269 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005270 if ((OpFlag & 7) == 2 /*REGDEF*/
5271 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5272 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005273 if (OpInfo.isIndirect) {
5274 cerr << "llvm: error: "
5275 "Don't know how to handle tied indirect "
5276 "register inputs yet!\n";
5277 exit(1);
5278 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005279 RegsForValue MatchedRegs;
5280 MatchedRegs.TLI = &TLI;
5281 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Evan Chengfb112882009-03-23 08:01:15 +00005282 MVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
5283 MatchedRegs.RegVTs.push_back(RegVT);
5284 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005285 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005286 i != e; ++i)
5287 MatchedRegs.Regs.
5288 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005289
5290 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005291 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5292 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005293 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5294 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005295 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005296 break;
5297 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005298 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5299 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5300 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005301 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005302 // See InlineAsm.h isUseOperandTiedToDef.
5303 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005304 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005305 TLI.getPointerTy()));
5306 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5307 break;
5308 }
5309 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005310
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005311 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005312 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005313 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005314
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005315 std::vector<SDValue> Ops;
5316 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005317 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005318 if (Ops.empty()) {
Daniel Dunbar4cbb1732009-04-13 22:26:09 +00005319 cerr << "llvm: error: Invalid operand for inline asm constraint '"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005320 << OpInfo.ConstraintCode << "'!\n";
5321 exit(1);
5322 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005323
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005324 // Add information to the INLINEASM node to know about this input.
5325 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005326 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005327 TLI.getPointerTy()));
5328 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5329 break;
5330 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5331 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5332 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5333 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005334
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005335 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005336 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5337 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005338 TLI.getPointerTy()));
5339 AsmNodeOperands.push_back(InOperandVal);
5340 break;
5341 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005342
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005343 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5344 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5345 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005346 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005347 "Don't know how to handle indirect register inputs yet!");
5348
5349 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005350 if (OpInfo.AssignedRegs.Regs.empty()) {
Daniel Dunbar4cbb1732009-04-13 22:26:09 +00005351 cerr << "llvm: error: Couldn't allocate output reg for constraint '"
Evan Chengaa765b82008-09-25 00:14:04 +00005352 << OpInfo.ConstraintCode << "'!\n";
5353 exit(1);
5354 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005355
Dale Johannesen66978ee2009-01-31 02:22:37 +00005356 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5357 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005358
Evan Cheng697cbbf2009-03-20 18:03:34 +00005359 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005360 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005361 break;
5362 }
5363 case InlineAsm::isClobber: {
5364 // Add the clobbered value to the operand list, so that the register
5365 // allocator is aware that the physreg got clobbered.
5366 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005367 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005368 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005369 break;
5370 }
5371 }
5372 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005373
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005374 // Finish up input operands.
5375 AsmNodeOperands[0] = Chain;
5376 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005377
Dale Johannesen66978ee2009-01-31 02:22:37 +00005378 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00005379 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005380 &AsmNodeOperands[0], AsmNodeOperands.size());
5381 Flag = Chain.getValue(1);
5382
5383 // If this asm returns a register value, copy the result from that register
5384 // and set it as the value of the call.
5385 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005386 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005387 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005388
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005389 // FIXME: Why don't we do this for inline asms with MRVs?
5390 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5391 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005392
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005393 // If any of the results of the inline asm is a vector, it may have the
5394 // wrong width/num elts. This can happen for register classes that can
5395 // contain multiple different value types. The preg or vreg allocated may
5396 // not have the same VT as was expected. Convert it to the right type
5397 // with bit_convert.
5398 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005399 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005400 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005401
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005402 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005403 ResultType.isInteger() && Val.getValueType().isInteger()) {
5404 // If a result value was tied to an input value, the computed result may
5405 // have a wider width than the expected result. Extract the relevant
5406 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005407 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005408 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005409
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005410 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005411 }
Dan Gohman95915732008-10-18 01:03:45 +00005412
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005413 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005414 // Don't need to use this as a chain in this case.
5415 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5416 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005417 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005418
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005419 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005420
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005421 // Process indirect outputs, first output all of the flagged copies out of
5422 // physregs.
5423 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5424 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5425 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005426 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5427 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005428 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005429
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005430 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005431
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005432 // Emit the non-flagged stores from the physregs.
5433 SmallVector<SDValue, 8> OutChains;
5434 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005435 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005436 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005437 getValue(StoresToEmit[i].second),
5438 StoresToEmit[i].second, 0));
5439 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005440 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005441 &OutChains[0], OutChains.size());
5442 DAG.setRoot(Chain);
5443}
5444
5445
5446void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5447 SDValue Src = getValue(I.getOperand(0));
5448
Chris Lattner0b18e592009-03-17 19:36:00 +00005449 // Scale up by the type size in the original i32 type width. Various
5450 // mid-level optimizers may make assumptions about demanded bits etc from the
5451 // i32-ness of the optimizer: we do not want to promote to i64 and then
5452 // multiply on 64-bit targets.
5453 // FIXME: Malloc inst should go away: PR715.
Duncan Sands777d2302009-05-09 07:06:46 +00005454 uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType());
Chris Lattner0b18e592009-03-17 19:36:00 +00005455 if (ElementSize != 1)
5456 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5457 Src, DAG.getConstant(ElementSize, Src.getValueType()));
5458
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005459 MVT IntPtr = TLI.getPointerTy();
5460
5461 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005462 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005463 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005464 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005465
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005466 TargetLowering::ArgListTy Args;
5467 TargetLowering::ArgListEntry Entry;
5468 Entry.Node = Src;
5469 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5470 Args.push_back(Entry);
5471
5472 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005473 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005474 0, CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005475 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005476 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005477 setValue(&I, Result.first); // Pointers always fit in registers
5478 DAG.setRoot(Result.second);
5479}
5480
5481void SelectionDAGLowering::visitFree(FreeInst &I) {
5482 TargetLowering::ArgListTy Args;
5483 TargetLowering::ArgListEntry Entry;
5484 Entry.Node = getValue(I.getOperand(0));
5485 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5486 Args.push_back(Entry);
5487 MVT IntPtr = TLI.getPointerTy();
5488 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005489 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005490 0, CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005491 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005492 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005493 DAG.setRoot(Result.second);
5494}
5495
5496void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005497 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005498 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005499 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005500 DAG.getSrcValue(I.getOperand(1))));
5501}
5502
5503void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005504 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5505 getRoot(), getValue(I.getOperand(0)),
5506 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005507 setValue(&I, V);
5508 DAG.setRoot(V.getValue(1));
5509}
5510
5511void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005512 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005513 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005514 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005515 DAG.getSrcValue(I.getOperand(1))));
5516}
5517
5518void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005519 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005520 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005521 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005522 getValue(I.getOperand(2)),
5523 DAG.getSrcValue(I.getOperand(1)),
5524 DAG.getSrcValue(I.getOperand(2))));
5525}
5526
5527/// TargetLowering::LowerArguments - This is the default LowerArguments
5528/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005529/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005530/// integrated into SDISel.
5531void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005532 SmallVectorImpl<SDValue> &ArgValues,
5533 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005534 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5535 SmallVector<SDValue, 3+16> Ops;
5536 Ops.push_back(DAG.getRoot());
5537 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5538 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5539
5540 // Add one result value for each formal argument.
5541 SmallVector<MVT, 16> RetVals;
5542 unsigned j = 1;
5543 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5544 I != E; ++I, ++j) {
5545 SmallVector<MVT, 4> ValueVTs;
5546 ComputeValueVTs(*this, I->getType(), ValueVTs);
5547 for (unsigned Value = 0, NumValues = ValueVTs.size();
5548 Value != NumValues; ++Value) {
5549 MVT VT = ValueVTs[Value];
5550 const Type *ArgTy = VT.getTypeForMVT();
5551 ISD::ArgFlagsTy Flags;
5552 unsigned OriginalAlignment =
5553 getTargetData()->getABITypeAlignment(ArgTy);
5554
Devang Patel05988662008-09-25 21:00:45 +00005555 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005556 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005557 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005558 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005559 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005560 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005561 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005562 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005563 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005564 Flags.setByVal();
5565 const PointerType *Ty = cast<PointerType>(I->getType());
5566 const Type *ElementTy = Ty->getElementType();
5567 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005568 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005569 // For ByVal, alignment should be passed from FE. BE will guess if
5570 // this info is not there but there are cases it cannot get right.
5571 if (F.getParamAlignment(j))
5572 FrameAlign = F.getParamAlignment(j);
5573 Flags.setByValAlign(FrameAlign);
5574 Flags.setByValSize(FrameSize);
5575 }
Devang Patel05988662008-09-25 21:00:45 +00005576 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005577 Flags.setNest();
5578 Flags.setOrigAlign(OriginalAlignment);
5579
5580 MVT RegisterVT = getRegisterType(VT);
5581 unsigned NumRegs = getNumRegisters(VT);
5582 for (unsigned i = 0; i != NumRegs; ++i) {
5583 RetVals.push_back(RegisterVT);
5584 ISD::ArgFlagsTy MyFlags = Flags;
5585 if (NumRegs > 1 && i == 0)
5586 MyFlags.setSplit();
5587 // if it isn't first piece, alignment must be 1
5588 else if (i > 0)
5589 MyFlags.setOrigAlign(1);
5590 Ops.push_back(DAG.getArgFlags(MyFlags));
5591 }
5592 }
5593 }
5594
5595 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005596
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005597 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005598 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005599 DAG.getVTList(&RetVals[0], RetVals.size()),
5600 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005601
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005602 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5603 // allows exposing the loads that may be part of the argument access to the
5604 // first DAGCombiner pass.
5605 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005606
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005607 // The number of results should match up, except that the lowered one may have
5608 // an extra flag result.
5609 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5610 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5611 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5612 && "Lowering produced unexpected number of results!");
5613
5614 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5615 if (Result != TmpRes.getNode() && Result->use_empty()) {
5616 HandleSDNode Dummy(DAG.getRoot());
5617 DAG.RemoveDeadNode(Result);
5618 }
5619
5620 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005621
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005622 unsigned NumArgRegs = Result->getNumValues() - 1;
5623 DAG.setRoot(SDValue(Result, NumArgRegs));
5624
5625 // Set up the return result vector.
5626 unsigned i = 0;
5627 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005628 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005629 ++I, ++Idx) {
5630 SmallVector<MVT, 4> ValueVTs;
5631 ComputeValueVTs(*this, I->getType(), ValueVTs);
5632 for (unsigned Value = 0, NumValues = ValueVTs.size();
5633 Value != NumValues; ++Value) {
5634 MVT VT = ValueVTs[Value];
5635 MVT PartVT = getRegisterType(VT);
5636
5637 unsigned NumParts = getNumRegisters(VT);
5638 SmallVector<SDValue, 4> Parts(NumParts);
5639 for (unsigned j = 0; j != NumParts; ++j)
5640 Parts[j] = SDValue(Result, i++);
5641
5642 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005643 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005644 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005645 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005646 AssertOp = ISD::AssertZext;
5647
Dale Johannesen66978ee2009-01-31 02:22:37 +00005648 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5649 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005650 }
5651 }
5652 assert(i == NumArgRegs && "Argument register count mismatch!");
5653}
5654
5655
5656/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5657/// implementation, which just inserts an ISD::CALL node, which is later custom
5658/// lowered by the target to something concrete. FIXME: When all targets are
5659/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5660std::pair<SDValue, SDValue>
5661TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5662 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005663 bool isInreg, unsigned NumFixedArgs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005664 unsigned CallingConv, bool isTailCall,
5665 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005666 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005667 assert((!isTailCall || PerformTailCallOpt) &&
5668 "isTailCall set when tail-call optimizations are disabled!");
5669
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005670 SmallVector<SDValue, 32> Ops;
5671 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005672 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005673
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005674 // Handle all of the outgoing arguments.
5675 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5676 SmallVector<MVT, 4> ValueVTs;
5677 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5678 for (unsigned Value = 0, NumValues = ValueVTs.size();
5679 Value != NumValues; ++Value) {
5680 MVT VT = ValueVTs[Value];
5681 const Type *ArgTy = VT.getTypeForMVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005682 SDValue Op = SDValue(Args[i].Node.getNode(),
5683 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005684 ISD::ArgFlagsTy Flags;
5685 unsigned OriginalAlignment =
5686 getTargetData()->getABITypeAlignment(ArgTy);
5687
5688 if (Args[i].isZExt)
5689 Flags.setZExt();
5690 if (Args[i].isSExt)
5691 Flags.setSExt();
5692 if (Args[i].isInReg)
5693 Flags.setInReg();
5694 if (Args[i].isSRet)
5695 Flags.setSRet();
5696 if (Args[i].isByVal) {
5697 Flags.setByVal();
5698 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5699 const Type *ElementTy = Ty->getElementType();
5700 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005701 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005702 // For ByVal, alignment should come from FE. BE will guess if this
5703 // info is not there but there are cases it cannot get right.
5704 if (Args[i].Alignment)
5705 FrameAlign = Args[i].Alignment;
5706 Flags.setByValAlign(FrameAlign);
5707 Flags.setByValSize(FrameSize);
5708 }
5709 if (Args[i].isNest)
5710 Flags.setNest();
5711 Flags.setOrigAlign(OriginalAlignment);
5712
5713 MVT PartVT = getRegisterType(VT);
5714 unsigned NumParts = getNumRegisters(VT);
5715 SmallVector<SDValue, 4> Parts(NumParts);
5716 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5717
5718 if (Args[i].isSExt)
5719 ExtendKind = ISD::SIGN_EXTEND;
5720 else if (Args[i].isZExt)
5721 ExtendKind = ISD::ZERO_EXTEND;
5722
Dale Johannesen66978ee2009-01-31 02:22:37 +00005723 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005724
5725 for (unsigned i = 0; i != NumParts; ++i) {
5726 // if it isn't first piece, alignment must be 1
5727 ISD::ArgFlagsTy MyFlags = Flags;
5728 if (NumParts > 1 && i == 0)
5729 MyFlags.setSplit();
5730 else if (i != 0)
5731 MyFlags.setOrigAlign(1);
5732
5733 Ops.push_back(Parts[i]);
5734 Ops.push_back(DAG.getArgFlags(MyFlags));
5735 }
5736 }
5737 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005738
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005739 // Figure out the result value types. We start by making a list of
5740 // the potentially illegal return value types.
5741 SmallVector<MVT, 4> LoweredRetTys;
5742 SmallVector<MVT, 4> RetTys;
5743 ComputeValueVTs(*this, RetTy, RetTys);
5744
5745 // Then we translate that to a list of legal types.
5746 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5747 MVT VT = RetTys[I];
5748 MVT RegisterVT = getRegisterType(VT);
5749 unsigned NumRegs = getNumRegisters(VT);
5750 for (unsigned i = 0; i != NumRegs; ++i)
5751 LoweredRetTys.push_back(RegisterVT);
5752 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005753
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005754 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005755
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005756 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005757 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005758 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005759 DAG.getVTList(&LoweredRetTys[0],
5760 LoweredRetTys.size()),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005761 &Ops[0], Ops.size(), NumFixedArgs
Dale Johannesen86098bd2008-09-26 19:31:26 +00005762 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005763 Chain = Res.getValue(LoweredRetTys.size() - 1);
5764
5765 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005766 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005767 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5768
5769 if (RetSExt)
5770 AssertOp = ISD::AssertSext;
5771 else if (RetZExt)
5772 AssertOp = ISD::AssertZext;
5773
5774 SmallVector<SDValue, 4> ReturnValues;
5775 unsigned RegNo = 0;
5776 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5777 MVT VT = RetTys[I];
5778 MVT RegisterVT = getRegisterType(VT);
5779 unsigned NumRegs = getNumRegisters(VT);
5780 unsigned RegNoEnd = NumRegs + RegNo;
5781 SmallVector<SDValue, 4> Results;
5782 for (; RegNo != RegNoEnd; ++RegNo)
5783 Results.push_back(Res.getValue(RegNo));
5784 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005785 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005786 AssertOp);
5787 ReturnValues.push_back(ReturnValue);
5788 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005789 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005790 DAG.getVTList(&RetTys[0], RetTys.size()),
5791 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005792 }
5793
5794 return std::make_pair(Res, Chain);
5795}
5796
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005797void TargetLowering::LowerOperationWrapper(SDNode *N,
5798 SmallVectorImpl<SDValue> &Results,
5799 SelectionDAG &DAG) {
5800 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005801 if (Res.getNode())
5802 Results.push_back(Res);
5803}
5804
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005805SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
5806 assert(0 && "LowerOperation not implemented for this target!");
5807 abort();
5808 return SDValue();
5809}
5810
5811
5812void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5813 SDValue Op = getValue(V);
5814 assert((Op.getOpcode() != ISD::CopyFromReg ||
5815 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5816 "Copy from a reg to the same reg!");
5817 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5818
5819 RegsForValue RFV(TLI, Reg, V->getType());
5820 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005821 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005822 PendingExports.push_back(Chain);
5823}
5824
5825#include "llvm/CodeGen/SelectionDAGISel.h"
5826
5827void SelectionDAGISel::
5828LowerArguments(BasicBlock *LLVMBB) {
5829 // If this is the entry block, emit arguments.
5830 Function &F = *LLVMBB->getParent();
5831 SDValue OldRoot = SDL->DAG.getRoot();
5832 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005833 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005834
5835 unsigned a = 0;
5836 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5837 AI != E; ++AI) {
5838 SmallVector<MVT, 4> ValueVTs;
5839 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5840 unsigned NumValues = ValueVTs.size();
5841 if (!AI->use_empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005842 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues,
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005843 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005844 // If this argument is live outside of the entry block, insert a copy from
5845 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohmanad62f532009-04-23 23:13:24 +00005846 SDL->CopyToExportRegsIfNeeded(AI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005847 }
5848 a += NumValues;
5849 }
5850
5851 // Finally, if the target has anything special to do, allow it to do so.
5852 // FIXME: this should insert code into the DAG!
5853 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5854}
5855
5856/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5857/// ensure constants are generated when needed. Remember the virtual registers
5858/// that need to be added to the Machine PHI nodes as input. We cannot just
5859/// directly add them, because expansion might result in multiple MBB's for one
5860/// BB. As such, the start of the BB might correspond to a different MBB than
5861/// the end.
5862///
5863void
5864SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5865 TerminatorInst *TI = LLVMBB->getTerminator();
5866
5867 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5868
5869 // Check successor nodes' PHI nodes that expect a constant to be available
5870 // from this block.
5871 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5872 BasicBlock *SuccBB = TI->getSuccessor(succ);
5873 if (!isa<PHINode>(SuccBB->begin())) continue;
5874 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005875
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005876 // If this terminator has multiple identical successors (common for
5877 // switches), only handle each succ once.
5878 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005879
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005880 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5881 PHINode *PN;
5882
5883 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5884 // nodes and Machine PHI nodes, but the incoming operands have not been
5885 // emitted yet.
5886 for (BasicBlock::iterator I = SuccBB->begin();
5887 (PN = dyn_cast<PHINode>(I)); ++I) {
5888 // Ignore dead phi's.
5889 if (PN->use_empty()) continue;
5890
5891 unsigned Reg;
5892 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5893
5894 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5895 unsigned &RegOut = SDL->ConstantsOut[C];
5896 if (RegOut == 0) {
5897 RegOut = FuncInfo->CreateRegForValue(C);
5898 SDL->CopyValueToVirtualRegister(C, RegOut);
5899 }
5900 Reg = RegOut;
5901 } else {
5902 Reg = FuncInfo->ValueMap[PHIOp];
5903 if (Reg == 0) {
5904 assert(isa<AllocaInst>(PHIOp) &&
5905 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5906 "Didn't codegen value into a register!??");
5907 Reg = FuncInfo->CreateRegForValue(PHIOp);
5908 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5909 }
5910 }
5911
5912 // Remember that this register needs to added to the machine PHI node as
5913 // the input for this MBB.
5914 SmallVector<MVT, 4> ValueVTs;
5915 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5916 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5917 MVT VT = ValueVTs[vti];
5918 unsigned NumRegisters = TLI.getNumRegisters(VT);
5919 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5920 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5921 Reg += NumRegisters;
5922 }
5923 }
5924 }
5925 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005926}
5927
Dan Gohman3df24e62008-09-03 23:12:08 +00005928/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5929/// supports legal types, and it emits MachineInstrs directly instead of
5930/// creating SelectionDAG nodes.
5931///
5932bool
5933SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5934 FastISel *F) {
5935 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005936
Dan Gohman3df24e62008-09-03 23:12:08 +00005937 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5938 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5939
5940 // Check successor nodes' PHI nodes that expect a constant to be available
5941 // from this block.
5942 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5943 BasicBlock *SuccBB = TI->getSuccessor(succ);
5944 if (!isa<PHINode>(SuccBB->begin())) continue;
5945 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005946
Dan Gohman3df24e62008-09-03 23:12:08 +00005947 // If this terminator has multiple identical successors (common for
5948 // switches), only handle each succ once.
5949 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005950
Dan Gohman3df24e62008-09-03 23:12:08 +00005951 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5952 PHINode *PN;
5953
5954 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5955 // nodes and Machine PHI nodes, but the incoming operands have not been
5956 // emitted yet.
5957 for (BasicBlock::iterator I = SuccBB->begin();
5958 (PN = dyn_cast<PHINode>(I)); ++I) {
5959 // Ignore dead phi's.
5960 if (PN->use_empty()) continue;
5961
5962 // Only handle legal types. Two interesting things to note here. First,
5963 // by bailing out early, we may leave behind some dead instructions,
5964 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5965 // own moves. Second, this check is necessary becuase FastISel doesn't
5966 // use CreateRegForValue to create registers, so it always creates
5967 // exactly one register for each non-void instruction.
5968 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5969 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005970 // Promote MVT::i1.
5971 if (VT == MVT::i1)
5972 VT = TLI.getTypeToTransformTo(VT);
5973 else {
5974 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5975 return false;
5976 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005977 }
5978
5979 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5980
5981 unsigned Reg = F->getRegForValue(PHIOp);
5982 if (Reg == 0) {
5983 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5984 return false;
5985 }
5986 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5987 }
5988 }
5989
5990 return true;
5991}