blob: 4f90bb31fcf1f9ab50b00a94edac90330b51ab41 [file] [log] [blame]
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001//===-- SelectionDAGBuild.cpp - Selection-DAG building --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements routines for translating from LLVM IR into SelectionDAG IR.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
15#include "SelectionDAGBuild.h"
16#include "llvm/ADT/BitVector.h"
Dan Gohman5b229802008-09-04 20:49:27 +000017#include "llvm/ADT/SmallSet.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000018#include "llvm/Analysis/AliasAnalysis.h"
19#include "llvm/Constants.h"
20#include "llvm/CallingConv.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
23#include "llvm/GlobalVariable.h"
24#include "llvm/InlineAsm.h"
25#include "llvm/Instructions.h"
26#include "llvm/Intrinsics.h"
27#include "llvm/IntrinsicInst.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000028#include "llvm/Module.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000029#include "llvm/CodeGen/FastISel.h"
30#include "llvm/CodeGen/GCStrategy.h"
31#include "llvm/CodeGen/GCMetadata.h"
32#include "llvm/CodeGen/MachineFunction.h"
33#include "llvm/CodeGen/MachineFrameInfo.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
35#include "llvm/CodeGen/MachineJumpTableInfo.h"
36#include "llvm/CodeGen/MachineModuleInfo.h"
37#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000038#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000039#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel83489bb2009-01-13 00:35:13 +000040#include "llvm/CodeGen/DwarfWriter.h"
41#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000042#include "llvm/Target/TargetRegisterInfo.h"
43#include "llvm/Target/TargetData.h"
44#include "llvm/Target/TargetFrameInfo.h"
45#include "llvm/Target/TargetInstrInfo.h"
Dale Johannesen49de9822009-02-05 01:49:45 +000046#include "llvm/Target/TargetIntrinsicInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000047#include "llvm/Target/TargetLowering.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000048#include "llvm/Target/TargetOptions.h"
49#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000050#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000051#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000052#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000053#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000054#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000055#include <algorithm>
56using namespace llvm;
57
Dale Johannesen601d3c02008-09-05 01:48:15 +000058/// LimitFloatPrecision - Generate low-precision inline sequences for
59/// some float libcalls (6, 8 or 12 bits).
60static unsigned LimitFloatPrecision;
61
62static cl::opt<unsigned, true>
63LimitFPPrecision("limit-float-precision",
64 cl::desc("Generate low-precision inline sequences "
65 "for some float libcalls"),
66 cl::location(LimitFloatPrecision),
67 cl::init(0));
68
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000069/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
Dan Gohman2c91d102009-01-06 22:53:52 +000070/// of insertvalue or extractvalue indices that identify a member, return
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000071/// the linearized index of the start of the member.
72///
73static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
74 const unsigned *Indices,
75 const unsigned *IndicesEnd,
76 unsigned CurIndex = 0) {
77 // Base case: We're done.
78 if (Indices && Indices == IndicesEnd)
79 return CurIndex;
80
81 // Given a struct type, recursively traverse the elements.
82 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
83 for (StructType::element_iterator EB = STy->element_begin(),
84 EI = EB,
85 EE = STy->element_end();
86 EI != EE; ++EI) {
87 if (Indices && *Indices == unsigned(EI - EB))
88 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
89 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
90 }
Dan Gohman2c91d102009-01-06 22:53:52 +000091 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000092 }
93 // Given an array type, recursively traverse the elements.
94 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
95 const Type *EltTy = ATy->getElementType();
96 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
97 if (Indices && *Indices == i)
98 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
99 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
100 }
Dan Gohman2c91d102009-01-06 22:53:52 +0000101 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000102 }
103 // We haven't found the type we're looking for, so keep searching.
104 return CurIndex + 1;
105}
106
107/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
108/// MVTs that represent all the individual underlying
109/// non-aggregate types that comprise it.
110///
111/// If Offsets is non-null, it points to a vector to be filled in
112/// with the in-memory offsets of each of the individual values.
113///
114static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
115 SmallVectorImpl<MVT> &ValueVTs,
116 SmallVectorImpl<uint64_t> *Offsets = 0,
117 uint64_t StartingOffset = 0) {
118 // Given a struct type, recursively traverse the elements.
119 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
120 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
121 for (StructType::element_iterator EB = STy->element_begin(),
122 EI = EB,
123 EE = STy->element_end();
124 EI != EE; ++EI)
125 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
126 StartingOffset + SL->getElementOffset(EI - EB));
127 return;
128 }
129 // Given an array type, recursively traverse the elements.
130 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
131 const Type *EltTy = ATy->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000132 uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000133 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
134 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
135 StartingOffset + i * EltSize);
136 return;
137 }
Dan Gohman5e5558b2009-04-23 22:50:03 +0000138 // Interpret void as zero return values.
139 if (Ty == Type::VoidTy)
140 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000141 // Base case: we can get an MVT for this LLVM IR type.
142 ValueVTs.push_back(TLI.getValueType(Ty));
143 if (Offsets)
144 Offsets->push_back(StartingOffset);
145}
146
Dan Gohman2a7c6712008-09-03 23:18:39 +0000147namespace llvm {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000148 /// RegsForValue - This struct represents the registers (physical or virtual)
149 /// that a particular set of values is assigned, and the type information about
150 /// the value. The most common situation is to represent one value at a time,
151 /// but struct or array values are handled element-wise as multiple values.
152 /// The splitting of aggregates is performed recursively, so that we never
153 /// have aggregate-typed registers. The values at this point do not necessarily
154 /// have legal types, so each value may require one or more registers of some
155 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000156 ///
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000157 struct VISIBILITY_HIDDEN RegsForValue {
158 /// TLI - The TargetLowering object.
159 ///
160 const TargetLowering *TLI;
161
162 /// ValueVTs - The value types of the values, which may not be legal, and
163 /// may need be promoted or synthesized from one or more registers.
164 ///
165 SmallVector<MVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000166
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000167 /// RegVTs - The value types of the registers. This is the same size as
168 /// ValueVTs and it records, for each value, what the type of the assigned
169 /// register or registers are. (Individual values are never synthesized
170 /// from more than one type of register.)
171 ///
172 /// With virtual registers, the contents of RegVTs is redundant with TLI's
173 /// getRegisterType member function, however when with physical registers
174 /// it is necessary to have a separate record of the types.
175 ///
176 SmallVector<MVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000177
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000178 /// Regs - This list holds the registers assigned to the values.
179 /// Each legal or promoted value requires one register, and each
180 /// expanded value requires multiple registers.
181 ///
182 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000183
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000184 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000185
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000186 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000187 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000188 MVT regvt, MVT valuevt)
189 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
190 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000191 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000192 const SmallVector<MVT, 4> &regvts,
193 const SmallVector<MVT, 4> &valuevts)
194 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
195 RegsForValue(const TargetLowering &tli,
196 unsigned Reg, const Type *Ty) : TLI(&tli) {
197 ComputeValueVTs(tli, Ty, ValueVTs);
198
199 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
200 MVT ValueVT = ValueVTs[Value];
201 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
202 MVT RegisterVT = TLI->getRegisterType(ValueVT);
203 for (unsigned i = 0; i != NumRegs; ++i)
204 Regs.push_back(Reg + i);
205 RegVTs.push_back(RegisterVT);
206 Reg += NumRegs;
207 }
208 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000209
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000210 /// append - Add the specified values to this one.
211 void append(const RegsForValue &RHS) {
212 TLI = RHS.TLI;
213 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
214 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
215 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
216 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000217
218
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000219 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000220 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000221 /// Chain/Flag as the input and updates them for the output Chain/Flag.
222 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000223 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000224 SDValue &Chain, SDValue *Flag) const;
225
226 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000227 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000228 /// Chain/Flag as the input and updates them for the output Chain/Flag.
229 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000230 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000231 SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000232
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000233 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Evan Cheng697cbbf2009-03-20 18:03:34 +0000234 /// operand list. This adds the code marker, matching input operand index
235 /// (if applicable), and includes the number of values added into it.
236 void AddInlineAsmOperands(unsigned Code,
237 bool HasMatching, unsigned MatchingIdx,
238 SelectionDAG &DAG, std::vector<SDValue> &Ops) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000239 };
240}
241
242/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000243/// PHI nodes or outside of the basic block that defines it, or used by a
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000244/// switch or atomic instruction, which may expand to multiple basic blocks.
245static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
246 if (isa<PHINode>(I)) return true;
247 BasicBlock *BB = I->getParent();
248 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Dan Gohman8e5c0da2009-04-09 02:33:36 +0000249 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000250 return true;
251 return false;
252}
253
254/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
255/// entry block, return true. This includes arguments used by switches, since
256/// the switch may expand into multiple basic blocks.
257static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) {
258 // With FastISel active, we may be splitting blocks, so force creation
259 // of virtual registers for all non-dead arguments.
Dan Gohman33134c42008-09-25 17:05:24 +0000260 // Don't force virtual registers for byval arguments though, because
261 // fast-isel can't handle those in all cases.
262 if (EnableFastISel && !A->hasByValAttr())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000263 return A->use_empty();
264
265 BasicBlock *Entry = A->getParent()->begin();
266 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
267 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
268 return false; // Use not in entry block.
269 return true;
270}
271
272FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli)
273 : TLI(tli) {
274}
275
276void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000277 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000278 bool EnableFastISel) {
279 Fn = &fn;
280 MF = &mf;
281 RegInfo = &MF->getRegInfo();
282
283 // Create a vreg for each argument register that is not dead and is used
284 // outside of the entry block for the function.
285 for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
286 AI != E; ++AI)
287 if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
288 InitializeRegForValue(AI);
289
290 // Initialize the mapping of values to registers. This is only set up for
291 // instruction values that are used outside of the block that defines
292 // them.
293 Function::iterator BB = Fn->begin(), EB = Fn->end();
294 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
295 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
296 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
297 const Type *Ty = AI->getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +0000298 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000299 unsigned Align =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000300 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
301 AI->getAlignment());
302
303 TySize *= CUI->getZExtValue(); // Get total allocated size.
304 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
305 StaticAllocaMap[AI] =
306 MF->getFrameInfo()->CreateStackObject(TySize, Align);
307 }
308
309 for (; BB != EB; ++BB)
310 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
311 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
312 if (!isa<AllocaInst>(I) ||
313 !StaticAllocaMap.count(cast<AllocaInst>(I)))
314 InitializeRegForValue(I);
315
316 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
317 // also creates the initial PHI MachineInstrs, though none of the input
318 // operands are populated.
319 for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) {
320 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
321 MBBMap[BB] = MBB;
322 MF->push_back(MBB);
323
324 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
325 // appropriate.
326 PHINode *PN;
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000327 DebugLoc DL;
328 for (BasicBlock::iterator
329 I = BB->begin(), E = BB->end(); I != E; ++I) {
330 if (CallInst *CI = dyn_cast<CallInst>(I)) {
331 if (Function *F = CI->getCalledFunction()) {
332 switch (F->getIntrinsicID()) {
333 default: break;
334 case Intrinsic::dbg_stoppoint: {
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000335 DbgStopPointInst *SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000336 if (isValidDebugInfoIntrinsic(*SPI, CodeGenOpt::Default))
337 DL = ExtractDebugLocation(*SPI, MF->getDebugLocInfo());
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000338 break;
339 }
340 case Intrinsic::dbg_func_start: {
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +0000341 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000342 if (isValidDebugInfoIntrinsic(*FSI, CodeGenOpt::Default))
343 DL = ExtractDebugLocation(*FSI, MF->getDebugLocInfo());
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000344 break;
345 }
346 }
347 }
348 }
349
350 PN = dyn_cast<PHINode>(I);
351 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000352
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000353 unsigned PHIReg = ValueMap[PN];
354 assert(PHIReg && "PHI node does not have an assigned virtual register!");
355
356 SmallVector<MVT, 4> ValueVTs;
357 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
358 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
359 MVT VT = ValueVTs[vti];
360 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000361 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000362 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000363 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000364 PHIReg += NumRegisters;
365 }
366 }
367 }
368}
369
370unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
371 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
372}
373
374/// CreateRegForValue - Allocate the appropriate number of virtual registers of
375/// the correctly promoted or expanded types. Assign these registers
376/// consecutive vreg numbers and return the first assigned number.
377///
378/// In the case that the given value has struct or array type, this function
379/// will assign registers for each member or element.
380///
381unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
382 SmallVector<MVT, 4> ValueVTs;
383 ComputeValueVTs(TLI, V->getType(), ValueVTs);
384
385 unsigned FirstReg = 0;
386 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
387 MVT ValueVT = ValueVTs[Value];
388 MVT RegisterVT = TLI.getRegisterType(ValueVT);
389
390 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
391 for (unsigned i = 0; i != NumRegs; ++i) {
392 unsigned R = MakeReg(RegisterVT);
393 if (!FirstReg) FirstReg = R;
394 }
395 }
396 return FirstReg;
397}
398
399/// getCopyFromParts - Create a value that contains the specified legal parts
400/// combined into the value they represent. If the parts combine to a type
401/// larger then ValueVT then AssertOp can be used to specify whether the extra
402/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
403/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000404static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
405 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000406 unsigned NumParts, MVT PartVT, MVT ValueVT,
407 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000408 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000409 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000410 SDValue Val = Parts[0];
411
412 if (NumParts > 1) {
413 // Assemble the value from multiple parts.
Eli Friedman2ac8b322009-05-20 06:02:09 +0000414 if (!ValueVT.isVector() && ValueVT.isInteger()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000415 unsigned PartBits = PartVT.getSizeInBits();
416 unsigned ValueBits = ValueVT.getSizeInBits();
417
418 // Assemble the power of 2 part.
419 unsigned RoundParts = NumParts & (NumParts - 1) ?
420 1 << Log2_32(NumParts) : NumParts;
421 unsigned RoundBits = PartBits * RoundParts;
422 MVT RoundVT = RoundBits == ValueBits ?
423 ValueVT : MVT::getIntegerVT(RoundBits);
424 SDValue Lo, Hi;
425
Eli Friedman2ac8b322009-05-20 06:02:09 +0000426 MVT HalfVT = MVT::getIntegerVT(RoundBits/2);
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000427
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000428 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000429 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
430 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000431 PartVT, HalfVT);
432 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000433 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
434 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000435 }
436 if (TLI.isBigEndian())
437 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000438 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000439
440 if (RoundParts < NumParts) {
441 // Assemble the trailing non-power-of-2 part.
442 unsigned OddParts = NumParts - RoundParts;
443 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Scott Michelfdc40a02009-02-17 22:15:04 +0000444 Hi = getCopyFromParts(DAG, dl,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000445 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000446
447 // Combine the round and odd parts.
448 Lo = Val;
449 if (TLI.isBigEndian())
450 std::swap(Lo, Hi);
451 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000452 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
453 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000454 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000455 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000456 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
457 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000458 }
Eli Friedman2ac8b322009-05-20 06:02:09 +0000459 } else if (ValueVT.isVector()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000460 // Handle a multi-element vector.
461 MVT IntermediateVT, RegisterVT;
462 unsigned NumIntermediates;
463 unsigned NumRegs =
464 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
465 RegisterVT);
466 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
467 NumParts = NumRegs; // Silence a compiler warning.
468 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
469 assert(RegisterVT == Parts[0].getValueType() &&
470 "Part type doesn't match part!");
471
472 // Assemble the parts into intermediate operands.
473 SmallVector<SDValue, 8> Ops(NumIntermediates);
474 if (NumIntermediates == NumParts) {
475 // If the register was not expanded, truncate or copy the value,
476 // as appropriate.
477 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000478 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000479 PartVT, IntermediateVT);
480 } else if (NumParts > 0) {
481 // If the intermediate type was expanded, build the intermediate operands
482 // from the parts.
483 assert(NumParts % NumIntermediates == 0 &&
484 "Must expand into a divisible number of parts!");
485 unsigned Factor = NumParts / NumIntermediates;
486 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000487 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000488 PartVT, IntermediateVT);
489 }
490
491 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
492 // operands.
493 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000494 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000495 ValueVT, &Ops[0], NumIntermediates);
Eli Friedman2ac8b322009-05-20 06:02:09 +0000496 } else if (PartVT.isFloatingPoint()) {
497 // FP split into multiple FP parts (for ppcf128)
498 assert(ValueVT == MVT(MVT::ppcf128) && PartVT == MVT(MVT::f64) &&
499 "Unexpected split");
500 SDValue Lo, Hi;
501 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[0]);
502 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, MVT(MVT::f64), Parts[1]);
503 if (TLI.isBigEndian())
504 std::swap(Lo, Hi);
505 Val = DAG.getNode(ISD::BUILD_PAIR, dl, ValueVT, Lo, Hi);
506 } else {
507 // FP split into integer parts (soft fp)
508 assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
509 !PartVT.isVector() && "Unexpected split");
510 MVT IntVT = MVT::getIntegerVT(ValueVT.getSizeInBits());
511 Val = getCopyFromParts(DAG, dl, Parts, NumParts, PartVT, IntVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000512 }
513 }
514
515 // There is now one part, held in Val. Correct it to match ValueVT.
516 PartVT = Val.getValueType();
517
518 if (PartVT == ValueVT)
519 return Val;
520
521 if (PartVT.isVector()) {
522 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000523 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000524 }
525
526 if (ValueVT.isVector()) {
527 assert(ValueVT.getVectorElementType() == PartVT &&
528 ValueVT.getVectorNumElements() == 1 &&
529 "Only trivial scalar-to-vector conversions should get here!");
Evan Chenga87008d2009-02-25 22:49:59 +0000530 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000531 }
532
533 if (PartVT.isInteger() &&
534 ValueVT.isInteger()) {
535 if (ValueVT.bitsLT(PartVT)) {
536 // For a truncate, see if we have any information to
537 // indicate whether the truncated bits will always be
538 // zero or sign-extension.
539 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000540 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000541 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000542 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000543 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000544 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000545 }
546 }
547
548 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
549 if (ValueVT.bitsLT(Val.getValueType()))
550 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000551 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000552 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000553 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000554 }
555
556 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000557 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000558
Torok Edwinc23197a2009-07-14 16:55:14 +0000559 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000560 return SDValue();
561}
562
563/// getCopyToParts - Create a series of nodes that contain the specified value
564/// split into legal parts. If the parts contain more bits than Val, then, for
565/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000566static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Chris Lattner01426e12008-10-21 00:45:36 +0000567 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000568 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000569 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000570 MVT PtrVT = TLI.getPointerTy();
571 MVT ValueVT = Val.getValueType();
572 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000573 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000574 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
575
576 if (!NumParts)
577 return;
578
579 if (!ValueVT.isVector()) {
580 if (PartVT == ValueVT) {
581 assert(NumParts == 1 && "No-op copy with multiple parts!");
582 Parts[0] = Val;
583 return;
584 }
585
586 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
587 // If the parts cover more bits than the value has, promote the value.
588 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
589 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000590 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000591 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
592 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000593 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000594 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000595 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000596 }
597 } else if (PartBits == ValueVT.getSizeInBits()) {
598 // Different types of the same size.
599 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000600 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000601 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
602 // If the parts cover less bits than value has, truncate the value.
603 if (PartVT.isInteger() && ValueVT.isInteger()) {
604 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000605 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000606 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000607 llvm_unreachable("Unknown mismatch!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000608 }
609 }
610
611 // The value may have changed - recompute ValueVT.
612 ValueVT = Val.getValueType();
613 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
614 "Failed to tile the value with PartVT!");
615
616 if (NumParts == 1) {
617 assert(PartVT == ValueVT && "Type conversion failed!");
618 Parts[0] = Val;
619 return;
620 }
621
622 // Expand the value into multiple parts.
623 if (NumParts & (NumParts - 1)) {
624 // The number of parts is not a power of 2. Split off and copy the tail.
625 assert(PartVT.isInteger() && ValueVT.isInteger() &&
626 "Do not know what to expand to!");
627 unsigned RoundParts = 1 << Log2_32(NumParts);
628 unsigned RoundBits = RoundParts * PartBits;
629 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000630 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000631 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000632 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000633 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000634 if (TLI.isBigEndian())
635 // The odd parts were reversed by getCopyToParts - unreverse them.
636 std::reverse(Parts + RoundParts, Parts + NumParts);
637 NumParts = RoundParts;
638 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000639 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000640 }
641
642 // The number of parts is a power of 2. Repeatedly bisect the value using
643 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000644 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000645 MVT::getIntegerVT(ValueVT.getSizeInBits()),
646 Val);
647 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
648 for (unsigned i = 0; i < NumParts; i += StepSize) {
649 unsigned ThisBits = StepSize * PartBits / 2;
650 MVT ThisVT = MVT::getIntegerVT (ThisBits);
651 SDValue &Part0 = Parts[i];
652 SDValue &Part1 = Parts[i+StepSize/2];
653
Scott Michelfdc40a02009-02-17 22:15:04 +0000654 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000655 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000656 DAG.getConstant(1, PtrVT));
Scott Michelfdc40a02009-02-17 22:15:04 +0000657 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000658 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000659 DAG.getConstant(0, PtrVT));
660
661 if (ThisBits == PartBits && ThisVT != PartVT) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000662 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000663 PartVT, Part0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000664 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000665 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000666 }
667 }
668 }
669
670 if (TLI.isBigEndian())
Dale Johannesen8a36f502009-02-25 22:39:13 +0000671 std::reverse(Parts, Parts + OrigNumParts);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000672
673 return;
674 }
675
676 // Vector ValueVT.
677 if (NumParts == 1) {
678 if (PartVT != ValueVT) {
679 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000680 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000681 } else {
682 assert(ValueVT.getVectorElementType() == PartVT &&
683 ValueVT.getVectorNumElements() == 1 &&
684 "Only trivial vector-to-scalar conversions should get here!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000685 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000686 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000687 DAG.getConstant(0, PtrVT));
688 }
689 }
690
691 Parts[0] = Val;
692 return;
693 }
694
695 // Handle a multi-element vector.
696 MVT IntermediateVT, RegisterVT;
697 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000698 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000699 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
700 RegisterVT);
701 unsigned NumElements = ValueVT.getVectorNumElements();
702
703 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
704 NumParts = NumRegs; // Silence a compiler warning.
705 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
706
707 // Split the vector into intermediate operands.
708 SmallVector<SDValue, 8> Ops(NumIntermediates);
709 for (unsigned i = 0; i != NumIntermediates; ++i)
710 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000711 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000712 IntermediateVT, Val,
713 DAG.getConstant(i * (NumElements / NumIntermediates),
714 PtrVT));
715 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000716 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000717 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000718 DAG.getConstant(i, PtrVT));
719
720 // Split the intermediate operands into legal parts.
721 if (NumParts == NumIntermediates) {
722 // If the register was not expanded, promote or copy the value,
723 // as appropriate.
724 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000725 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000726 } else if (NumParts > 0) {
727 // If the intermediate type was expanded, split each the value into
728 // legal parts.
729 assert(NumParts % NumIntermediates == 0 &&
730 "Must expand into a divisible number of parts!");
731 unsigned Factor = NumParts / NumIntermediates;
732 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000733 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000734 }
735}
736
737
738void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
739 AA = &aa;
740 GFI = gfi;
741 TD = DAG.getTarget().getTargetData();
742}
743
744/// clear - Clear out the curret SelectionDAG and the associated
745/// state and prepare this SelectionDAGLowering object to be used
746/// for a new block. This doesn't clear out information about
747/// additional blocks that are needed to complete switch lowering
748/// or PHI node updating; that information is cleared out as it is
749/// consumed.
750void SelectionDAGLowering::clear() {
751 NodeMap.clear();
752 PendingLoads.clear();
753 PendingExports.clear();
754 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000755 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000756}
757
758/// getRoot - Return the current virtual root of the Selection DAG,
759/// flushing any PendingLoad items. This must be done before emitting
760/// a store or any other node that may need to be ordered after any
761/// prior load instructions.
762///
763SDValue SelectionDAGLowering::getRoot() {
764 if (PendingLoads.empty())
765 return DAG.getRoot();
766
767 if (PendingLoads.size() == 1) {
768 SDValue Root = PendingLoads[0];
769 DAG.setRoot(Root);
770 PendingLoads.clear();
771 return Root;
772 }
773
774 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000775 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000776 &PendingLoads[0], PendingLoads.size());
777 PendingLoads.clear();
778 DAG.setRoot(Root);
779 return Root;
780}
781
782/// getControlRoot - Similar to getRoot, but instead of flushing all the
783/// PendingLoad items, flush all the PendingExports items. It is necessary
784/// to do this before emitting a terminator instruction.
785///
786SDValue SelectionDAGLowering::getControlRoot() {
787 SDValue Root = DAG.getRoot();
788
789 if (PendingExports.empty())
790 return Root;
791
792 // Turn all of the CopyToReg chains into one factored node.
793 if (Root.getOpcode() != ISD::EntryToken) {
794 unsigned i = 0, e = PendingExports.size();
795 for (; i != e; ++i) {
796 assert(PendingExports[i].getNode()->getNumOperands() > 1);
797 if (PendingExports[i].getNode()->getOperand(0) == Root)
798 break; // Don't add the root if we already indirectly depend on it.
799 }
800
801 if (i == e)
802 PendingExports.push_back(Root);
803 }
804
Dale Johannesen66978ee2009-01-31 02:22:37 +0000805 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000806 &PendingExports[0],
807 PendingExports.size());
808 PendingExports.clear();
809 DAG.setRoot(Root);
810 return Root;
811}
812
813void SelectionDAGLowering::visit(Instruction &I) {
814 visit(I.getOpcode(), I);
815}
816
817void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
818 // Note: this doesn't use InstVisitor, because it has to work with
819 // ConstantExpr's in addition to instructions.
820 switch (Opcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000821 default: llvm_unreachable("Unknown instruction type encountered!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000822 // Build the switch statement using the Instruction.def file.
823#define HANDLE_INST(NUM, OPCODE, CLASS) \
824 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
825#include "llvm/Instruction.def"
826 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000827}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000828
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000829SDValue SelectionDAGLowering::getValue(const Value *V) {
830 SDValue &N = NodeMap[V];
831 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000832
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000833 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
834 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000835
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000836 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000837 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000838
839 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
840 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000841
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000842 if (isa<ConstantPointerNull>(C))
843 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000844
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000845 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000846 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000847
Nate Begeman9008ca62009-04-27 18:41:29 +0000848 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000849 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000850
851 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
852 visit(CE->getOpcode(), *CE);
853 SDValue N1 = NodeMap[V];
854 assert(N1.getNode() && "visit didn't populate the ValueMap!");
855 return N1;
856 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000857
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000858 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
859 SmallVector<SDValue, 4> Constants;
860 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
861 OI != OE; ++OI) {
862 SDNode *Val = getValue(*OI).getNode();
863 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
864 Constants.push_back(SDValue(Val, i));
865 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000866 return DAG.getMergeValues(&Constants[0], Constants.size(),
867 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000868 }
869
870 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
871 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
872 "Unknown struct or array constant!");
873
874 SmallVector<MVT, 4> ValueVTs;
875 ComputeValueVTs(TLI, C->getType(), ValueVTs);
876 unsigned NumElts = ValueVTs.size();
877 if (NumElts == 0)
878 return SDValue(); // empty struct
879 SmallVector<SDValue, 4> Constants(NumElts);
880 for (unsigned i = 0; i != NumElts; ++i) {
881 MVT EltVT = ValueVTs[i];
882 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000883 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000884 else if (EltVT.isFloatingPoint())
885 Constants[i] = DAG.getConstantFP(0, EltVT);
886 else
887 Constants[i] = DAG.getConstant(0, EltVT);
888 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000889 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000890 }
891
892 const VectorType *VecTy = cast<VectorType>(V->getType());
893 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000894
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000895 // Now that we know the number and type of the elements, get that number of
896 // elements into the Ops array based on what kind of constant it is.
897 SmallVector<SDValue, 16> Ops;
898 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
899 for (unsigned i = 0; i != NumElements; ++i)
900 Ops.push_back(getValue(CP->getOperand(i)));
901 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000902 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000903 MVT EltVT = TLI.getValueType(VecTy->getElementType());
904
905 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000906 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000907 Op = DAG.getConstantFP(0, EltVT);
908 else
909 Op = DAG.getConstant(0, EltVT);
910 Ops.assign(NumElements, Op);
911 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000912
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000913 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000914 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
915 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000916 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000917
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000918 // If this is a static alloca, generate it as the frameindex instead of
919 // computation.
920 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
921 DenseMap<const AllocaInst*, int>::iterator SI =
922 FuncInfo.StaticAllocaMap.find(AI);
923 if (SI != FuncInfo.StaticAllocaMap.end())
924 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
925 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000926
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000927 unsigned InReg = FuncInfo.ValueMap[V];
928 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000929
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000930 RegsForValue RFV(TLI, InReg, V->getType());
931 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000932 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000933}
934
935
936void SelectionDAGLowering::visitRet(ReturnInst &I) {
937 if (I.getNumOperands() == 0) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000938 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000939 MVT::Other, getControlRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000940 return;
941 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000942
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000943 SmallVector<SDValue, 8> NewValues;
944 NewValues.push_back(getControlRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000945 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000946 SmallVector<MVT, 4> ValueVTs;
947 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000948 unsigned NumValues = ValueVTs.size();
949 if (NumValues == 0) continue;
950
951 SDValue RetOp = getValue(I.getOperand(i));
952 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000953 MVT VT = ValueVTs[j];
954
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000955 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000956
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000957 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000958 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000959 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000960 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000961 ExtendKind = ISD::ZERO_EXTEND;
962
Evan Cheng3927f432009-03-25 20:20:11 +0000963 // FIXME: C calling convention requires the return type to be promoted to
964 // at least 32-bit. But this is not necessary for non-C calling
965 // conventions. The frontend should mark functions whose return values
966 // require promoting with signext or zeroext attributes.
967 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
968 MVT MinVT = TLI.getRegisterType(MVT::i32);
969 if (VT.bitsLT(MinVT))
970 VT = MinVT;
971 }
972
973 unsigned NumParts = TLI.getNumRegisters(VT);
974 MVT PartVT = TLI.getRegisterType(VT);
975 SmallVector<SDValue, 4> Parts(NumParts);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000976 getCopyToParts(DAG, getCurDebugLoc(),
977 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000978 &Parts[0], NumParts, PartVT, ExtendKind);
979
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000980 // 'inreg' on function refers to return value
981 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +0000982 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000983 Flags.setInReg();
Anton Korobeynikov0692fab2009-07-16 13:35:48 +0000984
985 // Propagate extension type if any
986 if (F->paramHasAttr(0, Attribute::SExt))
987 Flags.setSExt();
988 else if (F->paramHasAttr(0, Attribute::ZExt))
989 Flags.setZExt();
990
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000991 for (unsigned i = 0; i < NumParts; ++i) {
992 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000993 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000994 }
995 }
996 }
Dale Johannesen66978ee2009-01-31 02:22:37 +0000997 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000998 &NewValues[0], NewValues.size()));
999}
1000
Dan Gohmanad62f532009-04-23 23:13:24 +00001001/// CopyToExportRegsIfNeeded - If the given value has virtual registers
1002/// created for it, emit nodes to copy the value into the virtual
1003/// registers.
1004void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) {
1005 if (!V->use_empty()) {
1006 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1007 if (VMI != FuncInfo.ValueMap.end())
1008 CopyValueToVirtualRegister(V, VMI->second);
1009 }
1010}
1011
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001012/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1013/// the current basic block, add it to ValueMap now so that we'll get a
1014/// CopyTo/FromReg.
1015void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1016 // No need to export constants.
1017 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001018
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001019 // Already exported?
1020 if (FuncInfo.isExportedInst(V)) return;
1021
1022 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1023 CopyValueToVirtualRegister(V, Reg);
1024}
1025
1026bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1027 const BasicBlock *FromBB) {
1028 // The operands of the setcc have to be in this block. We don't know
1029 // how to export them from some other block.
1030 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1031 // Can export from current BB.
1032 if (VI->getParent() == FromBB)
1033 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001034
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001035 // Is already exported, noop.
1036 return FuncInfo.isExportedInst(V);
1037 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001038
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001039 // If this is an argument, we can export it if the BB is the entry block or
1040 // if it is already exported.
1041 if (isa<Argument>(V)) {
1042 if (FromBB == &FromBB->getParent()->getEntryBlock())
1043 return true;
1044
1045 // Otherwise, can only export this if it is already exported.
1046 return FuncInfo.isExportedInst(V);
1047 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001048
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001049 // Otherwise, constants can always be exported.
1050 return true;
1051}
1052
1053static bool InBlock(const Value *V, const BasicBlock *BB) {
1054 if (const Instruction *I = dyn_cast<Instruction>(V))
1055 return I->getParent() == BB;
1056 return true;
1057}
1058
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001059/// getFCmpCondCode - Return the ISD condition code corresponding to
1060/// the given LLVM IR floating-point condition code. This includes
1061/// consideration of global floating-point math flags.
1062///
1063static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1064 ISD::CondCode FPC, FOC;
1065 switch (Pred) {
1066 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1067 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1068 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1069 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1070 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1071 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1072 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1073 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1074 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1075 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1076 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1077 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1078 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1079 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1080 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1081 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1082 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001083 llvm_unreachable("Invalid FCmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001084 FOC = FPC = ISD::SETFALSE;
1085 break;
1086 }
1087 if (FiniteOnlyFPMath())
1088 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001089 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001090 return FPC;
1091}
1092
1093/// getICmpCondCode - Return the ISD condition code corresponding to
1094/// the given LLVM IR integer condition code.
1095///
1096static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1097 switch (Pred) {
1098 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1099 case ICmpInst::ICMP_NE: return ISD::SETNE;
1100 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1101 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1102 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1103 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1104 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1105 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1106 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1107 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1108 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001109 llvm_unreachable("Invalid ICmp predicate opcode!");
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001110 return ISD::SETNE;
1111 }
1112}
1113
Dan Gohmanc2277342008-10-17 21:16:08 +00001114/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1115/// This function emits a branch and is used at the leaves of an OR or an
1116/// AND operator tree.
1117///
1118void
1119SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1120 MachineBasicBlock *TBB,
1121 MachineBasicBlock *FBB,
1122 MachineBasicBlock *CurBB) {
1123 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001124
Dan Gohmanc2277342008-10-17 21:16:08 +00001125 // If the leaf of the tree is a comparison, merge the condition into
1126 // the caseblock.
1127 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1128 // The operands of the cmp have to be in this block. We don't know
1129 // how to export them from some other block. If this is the first block
1130 // of the sequence, no exporting is needed.
1131 if (CurBB == CurMBB ||
1132 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1133 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001134 ISD::CondCode Condition;
1135 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001136 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001137 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001138 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001139 } else {
1140 Condition = ISD::SETEQ; // silence warning.
Torok Edwinc23197a2009-07-14 16:55:14 +00001141 llvm_unreachable("Unknown compare instruction");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001142 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001143
1144 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001145 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1146 SwitchCases.push_back(CB);
1147 return;
1148 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001149 }
1150
1151 // Create a CaseBlock record representing this branch.
1152 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1153 NULL, TBB, FBB, CurBB);
1154 SwitchCases.push_back(CB);
1155}
1156
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001157/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001158void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1159 MachineBasicBlock *TBB,
1160 MachineBasicBlock *FBB,
1161 MachineBasicBlock *CurBB,
1162 unsigned Opc) {
1163 // If this node is not part of the or/and tree, emit it as a branch.
1164 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001165 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001166 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1167 BOp->getParent() != CurBB->getBasicBlock() ||
1168 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1169 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1170 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001171 return;
1172 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001173
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001174 // Create TmpBB after CurBB.
1175 MachineFunction::iterator BBI = CurBB;
1176 MachineFunction &MF = DAG.getMachineFunction();
1177 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1178 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001179
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001180 if (Opc == Instruction::Or) {
1181 // Codegen X | Y as:
1182 // jmp_if_X TBB
1183 // jmp TmpBB
1184 // TmpBB:
1185 // jmp_if_Y TBB
1186 // jmp FBB
1187 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001188
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001189 // Emit the LHS condition.
1190 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001191
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001192 // Emit the RHS condition into TmpBB.
1193 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1194 } else {
1195 assert(Opc == Instruction::And && "Unknown merge op!");
1196 // Codegen X & Y as:
1197 // jmp_if_X TmpBB
1198 // jmp FBB
1199 // TmpBB:
1200 // jmp_if_Y TBB
1201 // jmp FBB
1202 //
1203 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001204
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001205 // Emit the LHS condition.
1206 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001207
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001208 // Emit the RHS condition into TmpBB.
1209 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1210 }
1211}
1212
1213/// If the set of cases should be emitted as a series of branches, return true.
1214/// If we should emit this as a bunch of and/or'd together conditions, return
1215/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001216bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001217SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1218 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001219
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001220 // If this is two comparisons of the same values or'd or and'd together, they
1221 // will get folded into a single comparison, so don't emit two blocks.
1222 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1223 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1224 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1225 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1226 return false;
1227 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001228
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001229 return true;
1230}
1231
1232void SelectionDAGLowering::visitBr(BranchInst &I) {
1233 // Update machine-CFG edges.
1234 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1235
1236 // Figure out which block is immediately after the current one.
1237 MachineBasicBlock *NextBlock = 0;
1238 MachineFunction::iterator BBI = CurMBB;
1239 if (++BBI != CurMBB->getParent()->end())
1240 NextBlock = BBI;
1241
1242 if (I.isUnconditional()) {
1243 // Update machine-CFG edges.
1244 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001245
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001246 // If this is not a fall-through branch, emit the branch.
1247 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001248 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001249 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001250 DAG.getBasicBlock(Succ0MBB)));
1251 return;
1252 }
1253
1254 // If this condition is one of the special cases we handle, do special stuff
1255 // now.
1256 Value *CondVal = I.getCondition();
1257 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1258
1259 // If this is a series of conditions that are or'd or and'd together, emit
1260 // this as a sequence of branches instead of setcc's with and/or operations.
1261 // For example, instead of something like:
1262 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001263 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001264 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001265 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001266 // or C, F
1267 // jnz foo
1268 // Emit:
1269 // cmp A, B
1270 // je foo
1271 // cmp D, E
1272 // jle foo
1273 //
1274 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001275 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001276 (BOp->getOpcode() == Instruction::And ||
1277 BOp->getOpcode() == Instruction::Or)) {
1278 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1279 // If the compares in later blocks need to use values not currently
1280 // exported from this block, export them now. This block should always
1281 // be the first entry.
1282 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001283
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001284 // Allow some cases to be rejected.
1285 if (ShouldEmitAsBranches(SwitchCases)) {
1286 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1287 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1288 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1289 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001290
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001291 // Emit the branch for this block.
1292 visitSwitchCase(SwitchCases[0]);
1293 SwitchCases.erase(SwitchCases.begin());
1294 return;
1295 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001296
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001297 // Okay, we decided not to do this, remove any inserted MBB's and clear
1298 // SwitchCases.
1299 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1300 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001302 SwitchCases.clear();
1303 }
1304 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001305
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001306 // Create a CaseBlock record representing this branch.
1307 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1308 NULL, Succ0MBB, Succ1MBB, CurMBB);
1309 // Use visitSwitchCase to actually insert the fast branch sequence for this
1310 // cond branch.
1311 visitSwitchCase(CB);
1312}
1313
1314/// visitSwitchCase - Emits the necessary code to represent a single node in
1315/// the binary search tree resulting from lowering a switch instruction.
1316void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1317 SDValue Cond;
1318 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001319 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001320
1321 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001322 if (CB.CmpMHS == NULL) {
1323 // Fold "(X == true)" to X and "(X == false)" to !X to
1324 // handle common cases produced by branch lowering.
1325 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1326 Cond = CondLHS;
1327 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1328 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001329 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001330 } else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001331 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001332 } else {
1333 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1334
Anton Korobeynikov23218582008-12-23 22:25:27 +00001335 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1336 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001337
1338 SDValue CmpOp = getValue(CB.CmpMHS);
1339 MVT VT = CmpOp.getValueType();
1340
1341 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001342 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001343 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001344 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001345 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001346 VT, CmpOp, DAG.getConstant(Low, VT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001347 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001348 DAG.getConstant(High-Low, VT), ISD::SETULE);
1349 }
1350 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001351
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001352 // Update successor info
1353 CurMBB->addSuccessor(CB.TrueBB);
1354 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001355
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001356 // Set NextBlock to be the MBB immediately after the current one, if any.
1357 // This is used to avoid emitting unnecessary branches to the next block.
1358 MachineBasicBlock *NextBlock = 0;
1359 MachineFunction::iterator BBI = CurMBB;
1360 if (++BBI != CurMBB->getParent()->end())
1361 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001362
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001363 // If the lhs block is the next block, invert the condition so that we can
1364 // fall through to the lhs instead of the rhs block.
1365 if (CB.TrueBB == NextBlock) {
1366 std::swap(CB.TrueBB, CB.FalseBB);
1367 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001368 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001369 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001370 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001371 MVT::Other, getControlRoot(), Cond,
1372 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001373
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001374 // If the branch was constant folded, fix up the CFG.
1375 if (BrCond.getOpcode() == ISD::BR) {
1376 CurMBB->removeSuccessor(CB.FalseBB);
1377 DAG.setRoot(BrCond);
1378 } else {
1379 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001380 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001381 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001382
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001383 if (CB.FalseBB == NextBlock)
1384 DAG.setRoot(BrCond);
1385 else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001386 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001387 DAG.getBasicBlock(CB.FalseBB)));
1388 }
1389}
1390
1391/// visitJumpTable - Emit JumpTable node in the current MBB
1392void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1393 // Emit the code for the jump table
1394 assert(JT.Reg != -1U && "Should lower JT Header first!");
1395 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001396 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1397 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001398 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001399 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001400 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001401 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001402}
1403
1404/// visitJumpTableHeader - This function emits necessary code to produce index
1405/// in the JumpTable from switch case.
1406void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1407 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001408 // Subtract the lowest switch case value from the value being switched on and
1409 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001410 // difference between smallest and largest cases.
1411 SDValue SwitchOp = getValue(JTH.SValue);
1412 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001413 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001414 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001415
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001416 // The SDNode we just created, which holds the value being switched on minus
1417 // the the smallest case value, needs to be copied to a virtual register so it
1418 // can be used as an index into the jump table in a subsequent basic block.
1419 // This value may be smaller or larger than the target's pointer type, and
1420 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001421 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001422 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001423 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001424 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001425 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001426 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001427
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001428 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001429 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1430 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001431 JT.Reg = JumpTableReg;
1432
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001433 // Emit the range check for the jump table, and branch to the default block
1434 // for the switch statement if the value being switched on exceeds the largest
1435 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001436 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1437 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001438 DAG.getConstant(JTH.Last-JTH.First,VT),
1439 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001440
1441 // Set NextBlock to be the MBB immediately after the current one, if any.
1442 // This is used to avoid emitting unnecessary branches to the next block.
1443 MachineBasicBlock *NextBlock = 0;
1444 MachineFunction::iterator BBI = CurMBB;
1445 if (++BBI != CurMBB->getParent()->end())
1446 NextBlock = BBI;
1447
Dale Johannesen66978ee2009-01-31 02:22:37 +00001448 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001449 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001450 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001451
1452 if (JT.MBB == NextBlock)
1453 DAG.setRoot(BrCond);
1454 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001455 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001456 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001457}
1458
1459/// visitBitTestHeader - This function emits necessary code to produce value
1460/// suitable for "bit tests"
1461void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1462 // Subtract the minimum value
1463 SDValue SwitchOp = getValue(B.SValue);
1464 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001465 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001466 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001467
1468 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001469 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1470 TLI.getSetCCResultType(SUB.getValueType()),
1471 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001472 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001473
1474 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001475 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001476 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001477 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001478 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001479 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001480 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001481
Duncan Sands92abc622009-01-31 15:50:11 +00001482 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001483 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1484 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001485
1486 // Set NextBlock to be the MBB immediately after the current one, if any.
1487 // This is used to avoid emitting unnecessary branches to the next block.
1488 MachineBasicBlock *NextBlock = 0;
1489 MachineFunction::iterator BBI = CurMBB;
1490 if (++BBI != CurMBB->getParent()->end())
1491 NextBlock = BBI;
1492
1493 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1494
1495 CurMBB->addSuccessor(B.Default);
1496 CurMBB->addSuccessor(MBB);
1497
Dale Johannesen66978ee2009-01-31 02:22:37 +00001498 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001499 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001500 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001501
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001502 if (MBB == NextBlock)
1503 DAG.setRoot(BrRange);
1504 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001505 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001506 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001507}
1508
1509/// visitBitTestCase - this function produces one "bit test"
1510void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1511 unsigned Reg,
1512 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001513 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001514 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001515 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001516 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001517 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001518 DAG.getConstant(1, TLI.getPointerTy()),
1519 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001520
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001521 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001522 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001523 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001524 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001525 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1526 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001527 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001528 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001529
1530 CurMBB->addSuccessor(B.TargetBB);
1531 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001532
Dale Johannesen66978ee2009-01-31 02:22:37 +00001533 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001534 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001535 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001536
1537 // Set NextBlock to be the MBB immediately after the current one, if any.
1538 // This is used to avoid emitting unnecessary branches to the next block.
1539 MachineBasicBlock *NextBlock = 0;
1540 MachineFunction::iterator BBI = CurMBB;
1541 if (++BBI != CurMBB->getParent()->end())
1542 NextBlock = BBI;
1543
1544 if (NextMBB == NextBlock)
1545 DAG.setRoot(BrAnd);
1546 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001547 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001548 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001549}
1550
1551void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1552 // Retrieve successors.
1553 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1554 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1555
Gabor Greifb67e6b32009-01-15 11:10:44 +00001556 const Value *Callee(I.getCalledValue());
1557 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001558 visitInlineAsm(&I);
1559 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001560 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001561
1562 // If the value of the invoke is used outside of its defining block, make it
1563 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001564 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001565
1566 // Update successor info
1567 CurMBB->addSuccessor(Return);
1568 CurMBB->addSuccessor(LandingPad);
1569
1570 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001571 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001572 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001573 DAG.getBasicBlock(Return)));
1574}
1575
1576void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1577}
1578
1579/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1580/// small case ranges).
1581bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1582 CaseRecVector& WorkList,
1583 Value* SV,
1584 MachineBasicBlock* Default) {
1585 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001586
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001587 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001588 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001589 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001590 return false;
1591
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001592 // Get the MachineFunction which holds the current MBB. This is used when
1593 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001594 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001595
1596 // Figure out which block is immediately after the current one.
1597 MachineBasicBlock *NextBlock = 0;
1598 MachineFunction::iterator BBI = CR.CaseBB;
1599
1600 if (++BBI != CurMBB->getParent()->end())
1601 NextBlock = BBI;
1602
1603 // TODO: If any two of the cases has the same destination, and if one value
1604 // is the same as the other, but has one bit unset that the other has set,
1605 // use bit manipulation to do two compares at once. For example:
1606 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001607
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001608 // Rearrange the case blocks so that the last one falls through if possible.
1609 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1610 // The last case block won't fall through into 'NextBlock' if we emit the
1611 // branches in this order. See if rearranging a case value would help.
1612 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1613 if (I->BB == NextBlock) {
1614 std::swap(*I, BackCase);
1615 break;
1616 }
1617 }
1618 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001619
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001620 // Create a CaseBlock record representing a conditional branch to
1621 // the Case's target mbb if the value being switched on SV is equal
1622 // to C.
1623 MachineBasicBlock *CurBlock = CR.CaseBB;
1624 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1625 MachineBasicBlock *FallThrough;
1626 if (I != E-1) {
1627 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1628 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001629
1630 // Put SV in a virtual register to make it available from the new blocks.
1631 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001632 } else {
1633 // If the last case doesn't match, go to the default block.
1634 FallThrough = Default;
1635 }
1636
1637 Value *RHS, *LHS, *MHS;
1638 ISD::CondCode CC;
1639 if (I->High == I->Low) {
1640 // This is just small small case range :) containing exactly 1 case
1641 CC = ISD::SETEQ;
1642 LHS = SV; RHS = I->High; MHS = NULL;
1643 } else {
1644 CC = ISD::SETLE;
1645 LHS = I->Low; MHS = SV; RHS = I->High;
1646 }
1647 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001648
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001649 // If emitting the first comparison, just call visitSwitchCase to emit the
1650 // code into the current block. Otherwise, push the CaseBlock onto the
1651 // vector to be later processed by SDISel, and insert the node's MBB
1652 // before the next MBB.
1653 if (CurBlock == CurMBB)
1654 visitSwitchCase(CB);
1655 else
1656 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001657
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001658 CurBlock = FallThrough;
1659 }
1660
1661 return true;
1662}
1663
1664static inline bool areJTsAllowed(const TargetLowering &TLI) {
1665 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001666 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1667 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001668}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001669
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001670static APInt ComputeRange(const APInt &First, const APInt &Last) {
1671 APInt LastExt(Last), FirstExt(First);
1672 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1673 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1674 return (LastExt - FirstExt + 1ULL);
1675}
1676
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001677/// handleJTSwitchCase - Emit jumptable for current switch case range
1678bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1679 CaseRecVector& WorkList,
1680 Value* SV,
1681 MachineBasicBlock* Default) {
1682 Case& FrontCase = *CR.Range.first;
1683 Case& BackCase = *(CR.Range.second-1);
1684
Anton Korobeynikov23218582008-12-23 22:25:27 +00001685 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1686 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001687
Anton Korobeynikov23218582008-12-23 22:25:27 +00001688 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001689 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1690 I!=E; ++I)
1691 TSize += I->size();
1692
1693 if (!areJTsAllowed(TLI) || TSize <= 3)
1694 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001695
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001696 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001697 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001698 if (Density < 0.4)
1699 return false;
1700
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001701 DEBUG(errs() << "Lowering jump table\n"
1702 << "First entry: " << First << ". Last entry: " << Last << '\n'
1703 << "Range: " << Range
1704 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001705
1706 // Get the MachineFunction which holds the current MBB. This is used when
1707 // inserting any additional MBBs necessary to represent the switch.
1708 MachineFunction *CurMF = CurMBB->getParent();
1709
1710 // Figure out which block is immediately after the current one.
1711 MachineBasicBlock *NextBlock = 0;
1712 MachineFunction::iterator BBI = CR.CaseBB;
1713
1714 if (++BBI != CurMBB->getParent()->end())
1715 NextBlock = BBI;
1716
1717 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1718
1719 // Create a new basic block to hold the code for loading the address
1720 // of the jump table, and jumping to it. Update successor information;
1721 // we will either branch to the default case for the switch, or the jump
1722 // table.
1723 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1724 CurMF->insert(BBI, JumpTableBB);
1725 CR.CaseBB->addSuccessor(Default);
1726 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001727
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001728 // Build a vector of destination BBs, corresponding to each target
1729 // of the jump table. If the value of the jump table slot corresponds to
1730 // a case statement, push the case's BB onto the vector, otherwise, push
1731 // the default BB.
1732 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001733 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001734 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001735 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1736 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1737
1738 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001739 DestBBs.push_back(I->BB);
1740 if (TEI==High)
1741 ++I;
1742 } else {
1743 DestBBs.push_back(Default);
1744 }
1745 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001746
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001747 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001748 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1749 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001750 E = DestBBs.end(); I != E; ++I) {
1751 if (!SuccsHandled[(*I)->getNumber()]) {
1752 SuccsHandled[(*I)->getNumber()] = true;
1753 JumpTableBB->addSuccessor(*I);
1754 }
1755 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001756
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001757 // Create a jump table index for this jump table, or return an existing
1758 // one.
1759 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001760
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001761 // Set the jump table information so that we can codegen it as a second
1762 // MachineBasicBlock
1763 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1764 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1765 if (CR.CaseBB == CurMBB)
1766 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001767
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001768 JTCases.push_back(JumpTableBlock(JTH, JT));
1769
1770 return true;
1771}
1772
1773/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1774/// 2 subtrees.
1775bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1776 CaseRecVector& WorkList,
1777 Value* SV,
1778 MachineBasicBlock* Default) {
1779 // Get the MachineFunction which holds the current MBB. This is used when
1780 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001781 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001782
1783 // Figure out which block is immediately after the current one.
1784 MachineBasicBlock *NextBlock = 0;
1785 MachineFunction::iterator BBI = CR.CaseBB;
1786
1787 if (++BBI != CurMBB->getParent()->end())
1788 NextBlock = BBI;
1789
1790 Case& FrontCase = *CR.Range.first;
1791 Case& BackCase = *(CR.Range.second-1);
1792 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1793
1794 // Size is the number of Cases represented by this range.
1795 unsigned Size = CR.Range.second - CR.Range.first;
1796
Anton Korobeynikov23218582008-12-23 22:25:27 +00001797 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1798 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001799 double FMetric = 0;
1800 CaseItr Pivot = CR.Range.first + Size/2;
1801
1802 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1803 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001804 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001805 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1806 I!=E; ++I)
1807 TSize += I->size();
1808
Anton Korobeynikov23218582008-12-23 22:25:27 +00001809 size_t LSize = FrontCase.size();
1810 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001811 DEBUG(errs() << "Selecting best pivot: \n"
1812 << "First: " << First << ", Last: " << Last <<'\n'
1813 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001814 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1815 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001816 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1817 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001818 APInt Range = ComputeRange(LEnd, RBegin);
1819 assert((Range - 2ULL).isNonNegative() &&
1820 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001821 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1822 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001823 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001824 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001825 DEBUG(errs() <<"=>Step\n"
1826 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1827 << "LDensity: " << LDensity
1828 << ", RDensity: " << RDensity << '\n'
1829 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001830 if (FMetric < Metric) {
1831 Pivot = J;
1832 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001833 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001834 }
1835
1836 LSize += J->size();
1837 RSize -= J->size();
1838 }
1839 if (areJTsAllowed(TLI)) {
1840 // If our case is dense we *really* should handle it earlier!
1841 assert((FMetric > 0) && "Should handle dense range earlier!");
1842 } else {
1843 Pivot = CR.Range.first + Size/2;
1844 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001845
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001846 CaseRange LHSR(CR.Range.first, Pivot);
1847 CaseRange RHSR(Pivot, CR.Range.second);
1848 Constant *C = Pivot->Low;
1849 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001851 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001852 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001853 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001854 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 // Pivot's Value, then we can branch directly to the LHS's Target,
1856 // rather than creating a leaf node for it.
1857 if ((LHSR.second - LHSR.first) == 1 &&
1858 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001859 cast<ConstantInt>(C)->getValue() ==
1860 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001861 TrueBB = LHSR.first->BB;
1862 } else {
1863 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1864 CurMF->insert(BBI, TrueBB);
1865 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001866
1867 // Put SV in a virtual register to make it available from the new blocks.
1868 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001869 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001870
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001871 // Similar to the optimization above, if the Value being switched on is
1872 // known to be less than the Constant CR.LT, and the current Case Value
1873 // is CR.LT - 1, then we can branch directly to the target block for
1874 // the current Case Value, rather than emitting a RHS leaf node for it.
1875 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001876 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1877 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001878 FalseBB = RHSR.first->BB;
1879 } else {
1880 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1881 CurMF->insert(BBI, FalseBB);
1882 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001883
1884 // Put SV in a virtual register to make it available from the new blocks.
1885 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001886 }
1887
1888 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001889 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001890 // Otherwise, branch to LHS.
1891 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1892
1893 if (CR.CaseBB == CurMBB)
1894 visitSwitchCase(CB);
1895 else
1896 SwitchCases.push_back(CB);
1897
1898 return true;
1899}
1900
1901/// handleBitTestsSwitchCase - if current case range has few destination and
1902/// range span less, than machine word bitwidth, encode case range into series
1903/// of masks and emit bit tests with these masks.
1904bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1905 CaseRecVector& WorkList,
1906 Value* SV,
1907 MachineBasicBlock* Default){
1908 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1909
1910 Case& FrontCase = *CR.Range.first;
1911 Case& BackCase = *(CR.Range.second-1);
1912
1913 // Get the MachineFunction which holds the current MBB. This is used when
1914 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001915 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001916
Anton Korobeynikovd34167a2009-05-08 18:51:34 +00001917 // If target does not have legal shift left, do not emit bit tests at all.
1918 if (!TLI.isOperationLegal(ISD::SHL, TLI.getPointerTy()))
1919 return false;
1920
Anton Korobeynikov23218582008-12-23 22:25:27 +00001921 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001922 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1923 I!=E; ++I) {
1924 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001925 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001926 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001927
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001928 // Count unique destinations
1929 SmallSet<MachineBasicBlock*, 4> Dests;
1930 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1931 Dests.insert(I->BB);
1932 if (Dests.size() > 3)
1933 // Don't bother the code below, if there are too much unique destinations
1934 return false;
1935 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001936 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1937 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001938
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001939 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001940 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1941 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001942 APInt cmpRange = maxValue - minValue;
1943
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001944 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1945 << "Low bound: " << minValue << '\n'
1946 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001947
1948 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001949 (!(Dests.size() == 1 && numCmps >= 3) &&
1950 !(Dests.size() == 2 && numCmps >= 5) &&
1951 !(Dests.size() >= 3 && numCmps >= 6)))
1952 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001953
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001954 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001955 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1956
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001957 // Optimize the case where all the case values fit in a
1958 // word without having to subtract minValue. In this case,
1959 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001960 if (minValue.isNonNegative() &&
1961 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1962 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001963 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001964 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001965 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001966
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001967 CaseBitsVector CasesBits;
1968 unsigned i, count = 0;
1969
1970 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1971 MachineBasicBlock* Dest = I->BB;
1972 for (i = 0; i < count; ++i)
1973 if (Dest == CasesBits[i].BB)
1974 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001975
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001976 if (i == count) {
1977 assert((count < 3) && "Too much destinations to test!");
1978 CasesBits.push_back(CaseBits(0, Dest, 0));
1979 count++;
1980 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001981
1982 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1983 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1984
1985 uint64_t lo = (lowValue - lowBound).getZExtValue();
1986 uint64_t hi = (highValue - lowBound).getZExtValue();
1987
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001988 for (uint64_t j = lo; j <= hi; j++) {
1989 CasesBits[i].Mask |= 1ULL << j;
1990 CasesBits[i].Bits++;
1991 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001992
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001993 }
1994 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001995
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001996 BitTestInfo BTC;
1997
1998 // Figure out which block is immediately after the current one.
1999 MachineFunction::iterator BBI = CR.CaseBB;
2000 ++BBI;
2001
2002 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2003
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002004 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002005 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002006 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2007 << ", Bits: " << CasesBits[i].Bits
2008 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002009
2010 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2011 CurMF->insert(BBI, CaseBB);
2012 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2013 CaseBB,
2014 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002015
2016 // Put SV in a virtual register to make it available from the new blocks.
2017 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002018 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002019
2020 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002021 -1U, (CR.CaseBB == CurMBB),
2022 CR.CaseBB, Default, BTC);
2023
2024 if (CR.CaseBB == CurMBB)
2025 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002026
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002027 BitTestCases.push_back(BTB);
2028
2029 return true;
2030}
2031
2032
2033/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002034size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002035 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002036 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002037
2038 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002039 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002040 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2041 Cases.push_back(Case(SI.getSuccessorValue(i),
2042 SI.getSuccessorValue(i),
2043 SMBB));
2044 }
2045 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2046
2047 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002048 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002049 // Must recompute end() each iteration because it may be
2050 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002051 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2052 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2053 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002054 MachineBasicBlock* nextBB = J->BB;
2055 MachineBasicBlock* currentBB = I->BB;
2056
2057 // If the two neighboring cases go to the same destination, merge them
2058 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002059 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002060 I->High = J->High;
2061 J = Cases.erase(J);
2062 } else {
2063 I = J++;
2064 }
2065 }
2066
2067 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2068 if (I->Low != I->High)
2069 // A range counts double, since it requires two compares.
2070 ++numCmps;
2071 }
2072
2073 return numCmps;
2074}
2075
Anton Korobeynikov23218582008-12-23 22:25:27 +00002076void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002077 // Figure out which block is immediately after the current one.
2078 MachineBasicBlock *NextBlock = 0;
2079 MachineFunction::iterator BBI = CurMBB;
2080
2081 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2082
2083 // If there is only the default destination, branch to it if it is not the
2084 // next basic block. Otherwise, just fall through.
2085 if (SI.getNumOperands() == 2) {
2086 // Update machine-CFG edges.
2087
2088 // If this is not a fall-through branch, emit the branch.
2089 CurMBB->addSuccessor(Default);
2090 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002091 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002092 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002093 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002094 return;
2095 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002096
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002097 // If there are any non-default case statements, create a vector of Cases
2098 // representing each one, and sort the vector so that we can efficiently
2099 // create a binary search tree from them.
2100 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002101 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002102 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2103 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002104 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002105
2106 // Get the Value to be switched on and default basic blocks, which will be
2107 // inserted into CaseBlock records, representing basic blocks in the binary
2108 // search tree.
2109 Value *SV = SI.getOperand(0);
2110
2111 // Push the initial CaseRec onto the worklist
2112 CaseRecVector WorkList;
2113 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2114
2115 while (!WorkList.empty()) {
2116 // Grab a record representing a case range to process off the worklist
2117 CaseRec CR = WorkList.back();
2118 WorkList.pop_back();
2119
2120 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2121 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002122
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002123 // If the range has few cases (two or less) emit a series of specific
2124 // tests.
2125 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2126 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002127
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002128 // If the switch has more than 5 blocks, and at least 40% dense, and the
2129 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002130 // lowering the switch to a binary tree of conditional branches.
2131 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2132 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002133
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002134 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2135 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2136 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2137 }
2138}
2139
2140
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002141void SelectionDAGLowering::visitFSub(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002142 // -0.0 - X --> fneg
2143 const Type *Ty = I.getType();
2144 if (isa<VectorType>(Ty)) {
2145 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2146 const VectorType *DestTy = cast<VectorType>(I.getType());
2147 const Type *ElTy = DestTy->getElementType();
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002148 unsigned VL = DestTy->getNumElements();
Owen Anderson0a5372e2009-07-13 04:09:18 +00002149 std::vector<Constant*> NZ(VL, Context->getConstantFPNegativeZero(ElTy));
Owen Andersona90b3dc2009-07-15 21:51:10 +00002150 Constant *CNZ = DAG.getContext()->getConstantVector(&NZ[0], NZ.size());
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002151 if (CV == CNZ) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002152 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002153 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002154 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002155 return;
2156 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002157 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002158 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002159 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
Owen Anderson0a5372e2009-07-13 04:09:18 +00002160 if (CFP->isExactlyValue(
2161 Context->getConstantFPNegativeZero(Ty)->getValueAPF())) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002162 SDValue Op2 = getValue(I.getOperand(1));
2163 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
2164 Op2.getValueType(), Op2));
2165 return;
2166 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002167
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002168 visitBinary(I, ISD::FSUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002169}
2170
2171void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2172 SDValue Op1 = getValue(I.getOperand(0));
2173 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002174
Scott Michelfdc40a02009-02-17 22:15:04 +00002175 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002176 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002177}
2178
2179void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2180 SDValue Op1 = getValue(I.getOperand(0));
2181 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002182 if (!isa<VectorType>(I.getType()) &&
2183 Op2.getValueType() != TLI.getShiftAmountTy()) {
2184 // If the operand is smaller than the shift count type, promote it.
2185 if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2186 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2187 TLI.getShiftAmountTy(), Op2);
2188 // If the operand is larger than the shift count type but the shift
2189 // count type has enough bits to represent any shift value, truncate
2190 // it now. This is a common case and it exposes the truncate to
2191 // optimization early.
2192 else if (TLI.getShiftAmountTy().getSizeInBits() >=
2193 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2194 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2195 TLI.getShiftAmountTy(), Op2);
2196 // Otherwise we'll need to temporarily settle for some other
2197 // convenient type; type legalization will make adjustments as
2198 // needed.
2199 else if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002200 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002201 TLI.getPointerTy(), Op2);
2202 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002203 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002204 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002205 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002206
Scott Michelfdc40a02009-02-17 22:15:04 +00002207 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002208 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002209}
2210
2211void SelectionDAGLowering::visitICmp(User &I) {
2212 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2213 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2214 predicate = IC->getPredicate();
2215 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2216 predicate = ICmpInst::Predicate(IC->getPredicate());
2217 SDValue Op1 = getValue(I.getOperand(0));
2218 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002219 ISD::CondCode Opcode = getICmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002220
2221 MVT DestVT = TLI.getValueType(I.getType());
2222 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002223}
2224
2225void SelectionDAGLowering::visitFCmp(User &I) {
2226 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2227 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2228 predicate = FC->getPredicate();
2229 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2230 predicate = FCmpInst::Predicate(FC->getPredicate());
2231 SDValue Op1 = getValue(I.getOperand(0));
2232 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002233 ISD::CondCode Condition = getFCmpCondCode(predicate);
Chris Lattner9800e842009-07-07 22:41:32 +00002234 MVT DestVT = TLI.getValueType(I.getType());
2235 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002236}
2237
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002238void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002239 SmallVector<MVT, 4> ValueVTs;
2240 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2241 unsigned NumValues = ValueVTs.size();
2242 if (NumValues != 0) {
2243 SmallVector<SDValue, 4> Values(NumValues);
2244 SDValue Cond = getValue(I.getOperand(0));
2245 SDValue TrueVal = getValue(I.getOperand(1));
2246 SDValue FalseVal = getValue(I.getOperand(2));
2247
2248 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002249 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002250 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002251 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2252 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2253
Scott Michelfdc40a02009-02-17 22:15:04 +00002254 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002255 DAG.getVTList(&ValueVTs[0], NumValues),
2256 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002257 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002258}
2259
2260
2261void SelectionDAGLowering::visitTrunc(User &I) {
2262 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2263 SDValue N = getValue(I.getOperand(0));
2264 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002265 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002266}
2267
2268void SelectionDAGLowering::visitZExt(User &I) {
2269 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2270 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2271 SDValue N = getValue(I.getOperand(0));
2272 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002273 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002274}
2275
2276void SelectionDAGLowering::visitSExt(User &I) {
2277 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2278 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2279 SDValue N = getValue(I.getOperand(0));
2280 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002281 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002282}
2283
2284void SelectionDAGLowering::visitFPTrunc(User &I) {
2285 // FPTrunc is never a no-op cast, no need to check
2286 SDValue N = getValue(I.getOperand(0));
2287 MVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002288 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002289 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002290}
2291
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002292void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002293 // FPTrunc is never a no-op cast, no need to check
2294 SDValue N = getValue(I.getOperand(0));
2295 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002296 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002297}
2298
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002299void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002300 // FPToUI is never a no-op cast, no need to check
2301 SDValue N = getValue(I.getOperand(0));
2302 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002303 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002304}
2305
2306void SelectionDAGLowering::visitFPToSI(User &I) {
2307 // FPToSI is never a no-op cast, no need to check
2308 SDValue N = getValue(I.getOperand(0));
2309 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002310 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002311}
2312
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002313void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002314 // UIToFP is never a no-op cast, no need to check
2315 SDValue N = getValue(I.getOperand(0));
2316 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002317 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002318}
2319
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002320void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002321 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002322 SDValue N = getValue(I.getOperand(0));
2323 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002324 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002325}
2326
2327void SelectionDAGLowering::visitPtrToInt(User &I) {
2328 // What to do depends on the size of the integer and the size of the pointer.
2329 // We can either truncate, zero extend, or no-op, accordingly.
2330 SDValue N = getValue(I.getOperand(0));
2331 MVT SrcVT = N.getValueType();
2332 MVT DestVT = TLI.getValueType(I.getType());
2333 SDValue Result;
2334 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002335 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002336 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002337 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002338 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002339 setValue(&I, Result);
2340}
2341
2342void SelectionDAGLowering::visitIntToPtr(User &I) {
2343 // What to do depends on the size of the integer and the size of the pointer.
2344 // We can either truncate, zero extend, or no-op, accordingly.
2345 SDValue N = getValue(I.getOperand(0));
2346 MVT SrcVT = N.getValueType();
2347 MVT DestVT = TLI.getValueType(I.getType());
2348 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002349 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002350 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002351 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002352 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002353 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002354}
2355
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002356void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002357 SDValue N = getValue(I.getOperand(0));
2358 MVT DestVT = TLI.getValueType(I.getType());
2359
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002360 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002361 // is either a BIT_CONVERT or a no-op.
2362 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002363 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002364 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002365 else
2366 setValue(&I, N); // noop cast.
2367}
2368
2369void SelectionDAGLowering::visitInsertElement(User &I) {
2370 SDValue InVec = getValue(I.getOperand(0));
2371 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002372 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002373 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002374 getValue(I.getOperand(2)));
2375
Scott Michelfdc40a02009-02-17 22:15:04 +00002376 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002377 TLI.getValueType(I.getType()),
2378 InVec, InVal, InIdx));
2379}
2380
2381void SelectionDAGLowering::visitExtractElement(User &I) {
2382 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002383 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002384 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002385 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002386 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002387 TLI.getValueType(I.getType()), InVec, InIdx));
2388}
2389
Mon P Wangaeb06d22008-11-10 04:46:22 +00002390
2391// Utility for visitShuffleVector - Returns true if the mask is mask starting
2392// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002393static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2394 unsigned MaskNumElts = Mask.size();
2395 for (unsigned i = 0; i != MaskNumElts; ++i)
2396 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002397 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002398 return true;
2399}
2400
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002401void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002402 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002403 SDValue Src1 = getValue(I.getOperand(0));
2404 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002405
Nate Begeman9008ca62009-04-27 18:41:29 +00002406 // Convert the ConstantVector mask operand into an array of ints, with -1
2407 // representing undef values.
2408 SmallVector<Constant*, 8> MaskElts;
Owen Anderson001dbfe2009-07-16 18:04:31 +00002409 cast<Constant>(I.getOperand(2))->getVectorElements(*DAG.getContext(),
2410 MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002411 unsigned MaskNumElts = MaskElts.size();
2412 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002413 if (isa<UndefValue>(MaskElts[i]))
2414 Mask.push_back(-1);
2415 else
2416 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2417 }
2418
Mon P Wangaeb06d22008-11-10 04:46:22 +00002419 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002420 MVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002421 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002422
Mon P Wangc7849c22008-11-16 05:06:27 +00002423 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002424 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2425 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002426 return;
2427 }
2428
2429 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002430 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2431 // Mask is longer than the source vectors and is a multiple of the source
2432 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002433 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002434 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2435 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002436 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002437 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002438 return;
2439 }
2440
Mon P Wangc7849c22008-11-16 05:06:27 +00002441 // Pad both vectors with undefs to make them the same length as the mask.
2442 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002443 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2444 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002445 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002446
Nate Begeman9008ca62009-04-27 18:41:29 +00002447 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2448 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002449 MOps1[0] = Src1;
2450 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002451
2452 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2453 getCurDebugLoc(), VT,
2454 &MOps1[0], NumConcat);
2455 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2456 getCurDebugLoc(), VT,
2457 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002458
Mon P Wangaeb06d22008-11-10 04:46:22 +00002459 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002460 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002461 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002462 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002463 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002464 MappedOps.push_back(Idx);
2465 else
2466 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002467 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002468 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2469 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002470 return;
2471 }
2472
Mon P Wangc7849c22008-11-16 05:06:27 +00002473 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002474 // Analyze the access pattern of the vector to see if we can extract
2475 // two subvectors and do the shuffle. The analysis is done by calculating
2476 // the range of elements the mask access on both vectors.
2477 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2478 int MaxRange[2] = {-1, -1};
2479
Nate Begeman5a5ca152009-04-29 05:20:52 +00002480 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002481 int Idx = Mask[i];
2482 int Input = 0;
2483 if (Idx < 0)
2484 continue;
2485
Nate Begeman5a5ca152009-04-29 05:20:52 +00002486 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002487 Input = 1;
2488 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002489 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002490 if (Idx > MaxRange[Input])
2491 MaxRange[Input] = Idx;
2492 if (Idx < MinRange[Input])
2493 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002494 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002495
Mon P Wangc7849c22008-11-16 05:06:27 +00002496 // Check if the access is smaller than the vector size and can we find
2497 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002498 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002499 int StartIdx[2]; // StartIdx to extract from
2500 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002501 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002502 RangeUse[Input] = 0; // Unused
2503 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002504 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002505 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002506 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002507 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002508 RangeUse[Input] = 1; // Extract from beginning of the vector
2509 StartIdx[Input] = 0;
2510 } else {
2511 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002512 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002513 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002514 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002515 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002516 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002517 }
2518
2519 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002520 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002521 return;
2522 }
2523 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2524 // Extract appropriate subvector and generate a vector shuffle
2525 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002526 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002527 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002528 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002529 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002530 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002531 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002532 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002533 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002534 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002535 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002536 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002537 int Idx = Mask[i];
2538 if (Idx < 0)
2539 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002540 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002541 MappedOps.push_back(Idx - StartIdx[0]);
2542 else
2543 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002544 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002545 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2546 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002547 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002548 }
2549 }
2550
Mon P Wangc7849c22008-11-16 05:06:27 +00002551 // We can't use either concat vectors or extract subvectors so fall back to
2552 // replacing the shuffle with extract and build vector.
2553 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002554 MVT EltVT = VT.getVectorElementType();
2555 MVT PtrVT = TLI.getPointerTy();
2556 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002557 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002558 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002559 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002560 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002561 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002562 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002563 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002564 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002565 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002566 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002567 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002568 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002569 }
2570 }
Evan Chenga87008d2009-02-25 22:49:59 +00002571 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2572 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002573}
2574
2575void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2576 const Value *Op0 = I.getOperand(0);
2577 const Value *Op1 = I.getOperand(1);
2578 const Type *AggTy = I.getType();
2579 const Type *ValTy = Op1->getType();
2580 bool IntoUndef = isa<UndefValue>(Op0);
2581 bool FromUndef = isa<UndefValue>(Op1);
2582
2583 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2584 I.idx_begin(), I.idx_end());
2585
2586 SmallVector<MVT, 4> AggValueVTs;
2587 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2588 SmallVector<MVT, 4> ValValueVTs;
2589 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2590
2591 unsigned NumAggValues = AggValueVTs.size();
2592 unsigned NumValValues = ValValueVTs.size();
2593 SmallVector<SDValue, 4> Values(NumAggValues);
2594
2595 SDValue Agg = getValue(Op0);
2596 SDValue Val = getValue(Op1);
2597 unsigned i = 0;
2598 // Copy the beginning value(s) from the original aggregate.
2599 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002600 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002601 SDValue(Agg.getNode(), Agg.getResNo() + i);
2602 // Copy values from the inserted value(s).
2603 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002604 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002605 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2606 // Copy remaining value(s) from the original aggregate.
2607 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002608 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002609 SDValue(Agg.getNode(), Agg.getResNo() + i);
2610
Scott Michelfdc40a02009-02-17 22:15:04 +00002611 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002612 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2613 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002614}
2615
2616void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2617 const Value *Op0 = I.getOperand(0);
2618 const Type *AggTy = Op0->getType();
2619 const Type *ValTy = I.getType();
2620 bool OutOfUndef = isa<UndefValue>(Op0);
2621
2622 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2623 I.idx_begin(), I.idx_end());
2624
2625 SmallVector<MVT, 4> ValValueVTs;
2626 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2627
2628 unsigned NumValValues = ValValueVTs.size();
2629 SmallVector<SDValue, 4> Values(NumValValues);
2630
2631 SDValue Agg = getValue(Op0);
2632 // Copy out the selected value(s).
2633 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2634 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002635 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002636 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002637 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002638
Scott Michelfdc40a02009-02-17 22:15:04 +00002639 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002640 DAG.getVTList(&ValValueVTs[0], NumValValues),
2641 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002642}
2643
2644
2645void SelectionDAGLowering::visitGetElementPtr(User &I) {
2646 SDValue N = getValue(I.getOperand(0));
2647 const Type *Ty = I.getOperand(0)->getType();
2648
2649 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2650 OI != E; ++OI) {
2651 Value *Idx = *OI;
2652 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2653 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2654 if (Field) {
2655 // N = N + Offset
2656 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002657 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002658 DAG.getIntPtrConstant(Offset));
2659 }
2660 Ty = StTy->getElementType(Field);
2661 } else {
2662 Ty = cast<SequentialType>(Ty)->getElementType();
2663
2664 // If this is a constant subscript, handle it quickly.
2665 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2666 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002667 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +00002668 TD->getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002669 SDValue OffsVal;
Evan Chengb1032a82009-02-09 20:54:38 +00002670 unsigned PtrBits = TLI.getPointerTy().getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002671 if (PtrBits < 64) {
2672 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2673 TLI.getPointerTy(),
2674 DAG.getConstant(Offs, MVT::i64));
2675 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002676 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002677 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002678 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002679 continue;
2680 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002681
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002682 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +00002683 uint64_t ElementSize = TD->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002684 SDValue IdxN = getValue(Idx);
2685
2686 // If the index is smaller or larger than intptr_t, truncate or extend
2687 // it.
2688 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002689 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002690 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002691 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002692 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002693 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002694
2695 // If this is a multiply by a power of two, turn it into a shl
2696 // immediately. This is a very common case.
2697 if (ElementSize != 1) {
2698 if (isPowerOf2_64(ElementSize)) {
2699 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002700 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002701 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002702 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002703 } else {
2704 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002705 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002706 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002707 }
2708 }
2709
Scott Michelfdc40a02009-02-17 22:15:04 +00002710 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002711 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002712 }
2713 }
2714 setValue(&I, N);
2715}
2716
2717void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2718 // If this is a fixed sized alloca in the entry block of the function,
2719 // allocate it statically on the stack.
2720 if (FuncInfo.StaticAllocaMap.count(&I))
2721 return; // getValue will auto-populate this.
2722
2723 const Type *Ty = I.getAllocatedType();
Duncan Sands777d2302009-05-09 07:06:46 +00002724 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002725 unsigned Align =
2726 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2727 I.getAlignment());
2728
2729 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002730
2731 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2732 AllocSize,
2733 DAG.getConstant(TySize, AllocSize.getValueType()));
2734
2735
2736
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002737 MVT IntPtr = TLI.getPointerTy();
2738 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002739 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002740 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002741 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002742 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002743 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002744
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002745 // Handle alignment. If the requested alignment is less than or equal to
2746 // the stack alignment, ignore it. If the size is greater than or equal to
2747 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2748 unsigned StackAlign =
2749 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2750 if (Align <= StackAlign)
2751 Align = 0;
2752
2753 // Round the size of the allocation up to the stack alignment size
2754 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002755 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002756 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002757 DAG.getIntPtrConstant(StackAlign-1));
2758 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002759 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002760 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002761 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2762
2763 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Dan Gohmanfc166572009-04-09 23:54:40 +00002764 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002765 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002766 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002767 setValue(&I, DSA);
2768 DAG.setRoot(DSA.getValue(1));
2769
2770 // Inform the Frame Information that we have just allocated a variable-sized
2771 // object.
2772 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2773}
2774
2775void SelectionDAGLowering::visitLoad(LoadInst &I) {
2776 const Value *SV = I.getOperand(0);
2777 SDValue Ptr = getValue(SV);
2778
2779 const Type *Ty = I.getType();
2780 bool isVolatile = I.isVolatile();
2781 unsigned Alignment = I.getAlignment();
2782
2783 SmallVector<MVT, 4> ValueVTs;
2784 SmallVector<uint64_t, 4> Offsets;
2785 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2786 unsigned NumValues = ValueVTs.size();
2787 if (NumValues == 0)
2788 return;
2789
2790 SDValue Root;
2791 bool ConstantMemory = false;
2792 if (I.isVolatile())
2793 // Serialize volatile loads with other side effects.
2794 Root = getRoot();
2795 else if (AA->pointsToConstantMemory(SV)) {
2796 // Do not serialize (non-volatile) loads of constant memory with anything.
2797 Root = DAG.getEntryNode();
2798 ConstantMemory = true;
2799 } else {
2800 // Do not serialize non-volatile loads against each other.
2801 Root = DAG.getRoot();
2802 }
2803
2804 SmallVector<SDValue, 4> Values(NumValues);
2805 SmallVector<SDValue, 4> Chains(NumValues);
2806 MVT PtrVT = Ptr.getValueType();
2807 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002808 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002809 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002810 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002811 DAG.getConstant(Offsets[i], PtrVT)),
2812 SV, Offsets[i],
2813 isVolatile, Alignment);
2814 Values[i] = L;
2815 Chains[i] = L.getValue(1);
2816 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002817
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002818 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002819 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002820 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002821 &Chains[0], NumValues);
2822 if (isVolatile)
2823 DAG.setRoot(Chain);
2824 else
2825 PendingLoads.push_back(Chain);
2826 }
2827
Scott Michelfdc40a02009-02-17 22:15:04 +00002828 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002829 DAG.getVTList(&ValueVTs[0], NumValues),
2830 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002831}
2832
2833
2834void SelectionDAGLowering::visitStore(StoreInst &I) {
2835 Value *SrcV = I.getOperand(0);
2836 Value *PtrV = I.getOperand(1);
2837
2838 SmallVector<MVT, 4> ValueVTs;
2839 SmallVector<uint64_t, 4> Offsets;
2840 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2841 unsigned NumValues = ValueVTs.size();
2842 if (NumValues == 0)
2843 return;
2844
2845 // Get the lowered operands. Note that we do this after
2846 // checking if NumResults is zero, because with zero results
2847 // the operands won't have values in the map.
2848 SDValue Src = getValue(SrcV);
2849 SDValue Ptr = getValue(PtrV);
2850
2851 SDValue Root = getRoot();
2852 SmallVector<SDValue, 4> Chains(NumValues);
2853 MVT PtrVT = Ptr.getValueType();
2854 bool isVolatile = I.isVolatile();
2855 unsigned Alignment = I.getAlignment();
2856 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002857 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002858 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002859 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002860 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002861 DAG.getConstant(Offsets[i], PtrVT)),
2862 PtrV, Offsets[i],
2863 isVolatile, Alignment);
2864
Scott Michelfdc40a02009-02-17 22:15:04 +00002865 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002866 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002867}
2868
2869/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2870/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002871void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002872 unsigned Intrinsic) {
2873 bool HasChain = !I.doesNotAccessMemory();
2874 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2875
2876 // Build the operand list.
2877 SmallVector<SDValue, 8> Ops;
2878 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2879 if (OnlyLoad) {
2880 // We don't need to serialize loads against other loads.
2881 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002882 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002883 Ops.push_back(getRoot());
2884 }
2885 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002886
2887 // Info is set by getTgtMemInstrinsic
2888 TargetLowering::IntrinsicInfo Info;
2889 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2890
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002891 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002892 if (!IsTgtIntrinsic)
2893 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002894
2895 // Add all operands of the call to the operand list.
2896 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2897 SDValue Op = getValue(I.getOperand(i));
2898 assert(TLI.isTypeLegal(Op.getValueType()) &&
2899 "Intrinsic uses a non-legal type?");
2900 Ops.push_back(Op);
2901 }
2902
Dan Gohmanfc166572009-04-09 23:54:40 +00002903 std::vector<MVT> VTArray;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002904 if (I.getType() != Type::VoidTy) {
2905 MVT VT = TLI.getValueType(I.getType());
2906 if (VT.isVector()) {
2907 const VectorType *DestTy = cast<VectorType>(I.getType());
2908 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002909
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002910 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2911 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2912 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002913
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002914 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
Dan Gohmanfc166572009-04-09 23:54:40 +00002915 VTArray.push_back(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002916 }
2917 if (HasChain)
Dan Gohmanfc166572009-04-09 23:54:40 +00002918 VTArray.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002919
Dan Gohmanfc166572009-04-09 23:54:40 +00002920 SDVTList VTs = DAG.getVTList(&VTArray[0], VTArray.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002921
2922 // Create the node.
2923 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002924 if (IsTgtIntrinsic) {
2925 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002926 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002927 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002928 Info.memVT, Info.ptrVal, Info.offset,
2929 Info.align, Info.vol,
2930 Info.readMem, Info.writeMem);
2931 }
2932 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002933 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002934 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002935 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002936 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002937 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002938 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002939 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002940 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002941
2942 if (HasChain) {
2943 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2944 if (OnlyLoad)
2945 PendingLoads.push_back(Chain);
2946 else
2947 DAG.setRoot(Chain);
2948 }
2949 if (I.getType() != Type::VoidTy) {
2950 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2951 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002952 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002953 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002954 setValue(&I, Result);
2955 }
2956}
2957
2958/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2959static GlobalVariable *ExtractTypeInfo(Value *V) {
2960 V = V->stripPointerCasts();
2961 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2962 assert ((GV || isa<ConstantPointerNull>(V)) &&
2963 "TypeInfo must be a global variable or NULL");
2964 return GV;
2965}
2966
2967namespace llvm {
2968
2969/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2970/// call, and add them to the specified machine basic block.
2971void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2972 MachineBasicBlock *MBB) {
2973 // Inform the MachineModuleInfo of the personality for this landing pad.
2974 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2975 assert(CE->getOpcode() == Instruction::BitCast &&
2976 isa<Function>(CE->getOperand(0)) &&
2977 "Personality should be a function");
2978 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
2979
2980 // Gather all the type infos for this landing pad and pass them along to
2981 // MachineModuleInfo.
2982 std::vector<GlobalVariable *> TyInfo;
2983 unsigned N = I.getNumOperands();
2984
2985 for (unsigned i = N - 1; i > 2; --i) {
2986 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
2987 unsigned FilterLength = CI->getZExtValue();
2988 unsigned FirstCatch = i + FilterLength + !FilterLength;
2989 assert (FirstCatch <= N && "Invalid filter length");
2990
2991 if (FirstCatch < N) {
2992 TyInfo.reserve(N - FirstCatch);
2993 for (unsigned j = FirstCatch; j < N; ++j)
2994 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
2995 MMI->addCatchTypeInfo(MBB, TyInfo);
2996 TyInfo.clear();
2997 }
2998
2999 if (!FilterLength) {
3000 // Cleanup.
3001 MMI->addCleanup(MBB);
3002 } else {
3003 // Filter.
3004 TyInfo.reserve(FilterLength - 1);
3005 for (unsigned j = i + 1; j < FirstCatch; ++j)
3006 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3007 MMI->addFilterTypeInfo(MBB, TyInfo);
3008 TyInfo.clear();
3009 }
3010
3011 N = i;
3012 }
3013 }
3014
3015 if (N > 3) {
3016 TyInfo.reserve(N - 3);
3017 for (unsigned j = 3; j < N; ++j)
3018 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3019 MMI->addCatchTypeInfo(MBB, TyInfo);
3020 }
3021}
3022
3023}
3024
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003025/// GetSignificand - Get the significand and build it into a floating-point
3026/// number with exponent of 1:
3027///
3028/// Op = (Op & 0x007fffff) | 0x3f800000;
3029///
3030/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003031static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003032GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3033 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003034 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003035 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003036 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003037 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003038}
3039
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003040/// GetExponent - Get the exponent:
3041///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003042/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003043///
3044/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003045static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003046GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3047 DebugLoc dl) {
3048 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003049 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003050 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003051 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003052 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003053 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003054 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003055}
3056
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003057/// getF32Constant - Get 32-bit floating point constant.
3058static SDValue
3059getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3060 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3061}
3062
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003063/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003064/// visitIntrinsicCall: I is a call instruction
3065/// Op is the associated NodeType for I
3066const char *
3067SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003068 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003069 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003070 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003071 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003072 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003073 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003074 getValue(I.getOperand(2)),
3075 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003076 setValue(&I, L);
3077 DAG.setRoot(L.getValue(1));
3078 return 0;
3079}
3080
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003081// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003082const char *
3083SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003084 SDValue Op1 = getValue(I.getOperand(1));
3085 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003086
Dan Gohmanfc166572009-04-09 23:54:40 +00003087 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
3088 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003089
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003090 setValue(&I, Result);
3091 return 0;
3092}
Bill Wendling74c37652008-12-09 22:08:41 +00003093
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003094/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3095/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003096void
3097SelectionDAGLowering::visitExp(CallInst &I) {
3098 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003099 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003100
3101 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3102 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3103 SDValue Op = getValue(I.getOperand(1));
3104
3105 // Put the exponent in the right bit position for later addition to the
3106 // final result:
3107 //
3108 // #define LOG2OFe 1.4426950f
3109 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003110 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003111 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003112 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003113
3114 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003115 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3116 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003117
3118 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003119 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003120 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003121
3122 if (LimitFloatPrecision <= 6) {
3123 // For floating-point precision of 6:
3124 //
3125 // TwoToFractionalPartOfX =
3126 // 0.997535578f +
3127 // (0.735607626f + 0.252464424f * x) * x;
3128 //
3129 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003130 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003131 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003132 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003133 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003134 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3135 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003136 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003137 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003138
3139 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003140 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003141 TwoToFracPartOfX, IntegerPartOfX);
3142
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003143 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003144 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3145 // For floating-point precision of 12:
3146 //
3147 // TwoToFractionalPartOfX =
3148 // 0.999892986f +
3149 // (0.696457318f +
3150 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3151 //
3152 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003153 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003154 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003155 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003156 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003157 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3158 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003159 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003160 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3161 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003162 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003163 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003164
3165 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003166 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003167 TwoToFracPartOfX, IntegerPartOfX);
3168
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003169 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003170 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3171 // For floating-point precision of 18:
3172 //
3173 // TwoToFractionalPartOfX =
3174 // 0.999999982f +
3175 // (0.693148872f +
3176 // (0.240227044f +
3177 // (0.554906021e-1f +
3178 // (0.961591928e-2f +
3179 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3180 //
3181 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003182 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003183 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003184 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003185 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003186 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3187 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003188 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003189 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3190 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003191 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003192 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3193 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003194 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003195 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3196 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003197 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003198 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3199 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003200 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003201 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003202 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003203
3204 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003205 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003206 TwoToFracPartOfX, IntegerPartOfX);
3207
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003208 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003209 }
3210 } else {
3211 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003212 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003213 getValue(I.getOperand(1)).getValueType(),
3214 getValue(I.getOperand(1)));
3215 }
3216
Dale Johannesen59e577f2008-09-05 18:38:42 +00003217 setValue(&I, result);
3218}
3219
Bill Wendling39150252008-09-09 20:39:27 +00003220/// visitLog - Lower a log intrinsic. Handles the special sequences for
3221/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003222void
3223SelectionDAGLowering::visitLog(CallInst &I) {
3224 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003225 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003226
3227 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3228 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3229 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003230 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003231
3232 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003233 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003234 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003235 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003236
3237 // Get the significand and build it into a floating-point number with
3238 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003239 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003240
3241 if (LimitFloatPrecision <= 6) {
3242 // For floating-point precision of 6:
3243 //
3244 // LogofMantissa =
3245 // -1.1609546f +
3246 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003247 //
Bill Wendling39150252008-09-09 20:39:27 +00003248 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003249 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003250 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003251 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003252 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003253 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3254 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003255 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003256
Scott Michelfdc40a02009-02-17 22:15:04 +00003257 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003258 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003259 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3260 // For floating-point precision of 12:
3261 //
3262 // LogOfMantissa =
3263 // -1.7417939f +
3264 // (2.8212026f +
3265 // (-1.4699568f +
3266 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3267 //
3268 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003269 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003270 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003271 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003272 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003273 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3274 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003275 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003276 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3277 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003278 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003279 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3280 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003281 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003282
Scott Michelfdc40a02009-02-17 22:15:04 +00003283 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003284 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003285 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3286 // For floating-point precision of 18:
3287 //
3288 // LogOfMantissa =
3289 // -2.1072184f +
3290 // (4.2372794f +
3291 // (-3.7029485f +
3292 // (2.2781945f +
3293 // (-0.87823314f +
3294 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3295 //
3296 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003297 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003298 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003299 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003300 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003301 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3302 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003303 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003304 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3305 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003306 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003307 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3308 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003309 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003310 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3311 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003312 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003313 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3314 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003315 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003316
Scott Michelfdc40a02009-02-17 22:15:04 +00003317 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003318 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003319 }
3320 } else {
3321 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003322 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003323 getValue(I.getOperand(1)).getValueType(),
3324 getValue(I.getOperand(1)));
3325 }
3326
Dale Johannesen59e577f2008-09-05 18:38:42 +00003327 setValue(&I, result);
3328}
3329
Bill Wendling3eb59402008-09-09 00:28:24 +00003330/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3331/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003332void
3333SelectionDAGLowering::visitLog2(CallInst &I) {
3334 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003335 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003336
Dale Johannesen853244f2008-09-05 23:49:37 +00003337 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003338 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3339 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003340 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003341
Bill Wendling39150252008-09-09 20:39:27 +00003342 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003343 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003344
3345 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003346 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003347 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003348
Bill Wendling3eb59402008-09-09 00:28:24 +00003349 // Different possible minimax approximations of significand in
3350 // floating-point for various degrees of accuracy over [1,2].
3351 if (LimitFloatPrecision <= 6) {
3352 // For floating-point precision of 6:
3353 //
3354 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3355 //
3356 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003357 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003358 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003359 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003360 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003361 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3362 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003363 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003364
Scott Michelfdc40a02009-02-17 22:15:04 +00003365 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003366 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003367 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3368 // For floating-point precision of 12:
3369 //
3370 // Log2ofMantissa =
3371 // -2.51285454f +
3372 // (4.07009056f +
3373 // (-2.12067489f +
3374 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003375 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003376 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003377 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003378 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003379 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003380 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003381 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3382 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003383 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003384 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3385 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003386 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003387 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3388 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003389 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003390
Scott Michelfdc40a02009-02-17 22:15:04 +00003391 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003392 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003393 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3394 // For floating-point precision of 18:
3395 //
3396 // Log2ofMantissa =
3397 // -3.0400495f +
3398 // (6.1129976f +
3399 // (-5.3420409f +
3400 // (3.2865683f +
3401 // (-1.2669343f +
3402 // (0.27515199f -
3403 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3404 //
3405 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003406 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003407 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003408 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003409 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003410 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3411 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003412 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003413 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3414 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003415 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003416 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3417 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003418 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003419 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3420 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003421 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003422 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3423 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003424 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003425
Scott Michelfdc40a02009-02-17 22:15:04 +00003426 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003427 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003428 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003429 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003430 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003431 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003432 getValue(I.getOperand(1)).getValueType(),
3433 getValue(I.getOperand(1)));
3434 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003435
Dale Johannesen59e577f2008-09-05 18:38:42 +00003436 setValue(&I, result);
3437}
3438
Bill Wendling3eb59402008-09-09 00:28:24 +00003439/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3440/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003441void
3442SelectionDAGLowering::visitLog10(CallInst &I) {
3443 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003444 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003445
Dale Johannesen852680a2008-09-05 21:27:19 +00003446 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003447 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3448 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003449 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003450
Bill Wendling39150252008-09-09 20:39:27 +00003451 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003452 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003453 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003454 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003455
3456 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003457 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003458 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003459
3460 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003461 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003462 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003463 // Log10ofMantissa =
3464 // -0.50419619f +
3465 // (0.60948995f - 0.10380950f * x) * x;
3466 //
3467 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003468 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003469 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003470 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003471 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003472 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3473 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003474 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003475
Scott Michelfdc40a02009-02-17 22:15:04 +00003476 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003477 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003478 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3479 // For floating-point precision of 12:
3480 //
3481 // Log10ofMantissa =
3482 // -0.64831180f +
3483 // (0.91751397f +
3484 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3485 //
3486 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003487 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003488 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003489 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003490 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003491 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3492 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003493 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003494 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3495 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003496 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003497
Scott Michelfdc40a02009-02-17 22:15:04 +00003498 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003499 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003500 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003501 // For floating-point precision of 18:
3502 //
3503 // Log10ofMantissa =
3504 // -0.84299375f +
3505 // (1.5327582f +
3506 // (-1.0688956f +
3507 // (0.49102474f +
3508 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3509 //
3510 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003511 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003512 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003513 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003514 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003515 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3516 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003517 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003518 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3519 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003520 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003521 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3522 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003523 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003524 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3525 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003526 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003527
Scott Michelfdc40a02009-02-17 22:15:04 +00003528 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003529 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003530 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003531 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003532 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003533 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003534 getValue(I.getOperand(1)).getValueType(),
3535 getValue(I.getOperand(1)));
3536 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003537
Dale Johannesen59e577f2008-09-05 18:38:42 +00003538 setValue(&I, result);
3539}
3540
Bill Wendlinge10c8142008-09-09 22:39:21 +00003541/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3542/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003543void
3544SelectionDAGLowering::visitExp2(CallInst &I) {
3545 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003546 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003547
Dale Johannesen601d3c02008-09-05 01:48:15 +00003548 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003549 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3550 SDValue Op = getValue(I.getOperand(1));
3551
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003552 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003553
3554 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003555 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3556 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003557
3558 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003559 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003560 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003561
3562 if (LimitFloatPrecision <= 6) {
3563 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003564 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003565 // TwoToFractionalPartOfX =
3566 // 0.997535578f +
3567 // (0.735607626f + 0.252464424f * x) * x;
3568 //
3569 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003570 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003571 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003572 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003573 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003574 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3575 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003576 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003577 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003578 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003579 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003580
Scott Michelfdc40a02009-02-17 22:15:04 +00003581 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003582 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003583 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3584 // For floating-point precision of 12:
3585 //
3586 // TwoToFractionalPartOfX =
3587 // 0.999892986f +
3588 // (0.696457318f +
3589 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3590 //
3591 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003592 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003593 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003594 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003595 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003596 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3597 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003598 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003599 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3600 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003601 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003602 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003603 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003604 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003605
Scott Michelfdc40a02009-02-17 22:15:04 +00003606 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003607 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003608 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3609 // For floating-point precision of 18:
3610 //
3611 // TwoToFractionalPartOfX =
3612 // 0.999999982f +
3613 // (0.693148872f +
3614 // (0.240227044f +
3615 // (0.554906021e-1f +
3616 // (0.961591928e-2f +
3617 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3618 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003619 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003620 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003621 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003622 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003623 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3624 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003625 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003626 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3627 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003628 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003629 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3630 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003631 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003632 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3633 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003634 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003635 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3636 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003637 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003638 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003639 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003640 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003641
Scott Michelfdc40a02009-02-17 22:15:04 +00003642 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003643 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003644 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003645 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003646 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003647 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003648 getValue(I.getOperand(1)).getValueType(),
3649 getValue(I.getOperand(1)));
3650 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003651
Dale Johannesen601d3c02008-09-05 01:48:15 +00003652 setValue(&I, result);
3653}
3654
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003655/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3656/// limited-precision mode with x == 10.0f.
3657void
3658SelectionDAGLowering::visitPow(CallInst &I) {
3659 SDValue result;
3660 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003661 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003662 bool IsExp10 = false;
3663
3664 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003665 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003666 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3667 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3668 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3669 APFloat Ten(10.0f);
3670 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3671 }
3672 }
3673 }
3674
3675 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3676 SDValue Op = getValue(I.getOperand(2));
3677
3678 // Put the exponent in the right bit position for later addition to the
3679 // final result:
3680 //
3681 // #define LOG2OF10 3.3219281f
3682 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003683 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003684 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003685 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003686
3687 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003688 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3689 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003690
3691 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003692 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003693 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003694
3695 if (LimitFloatPrecision <= 6) {
3696 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003697 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003698 // twoToFractionalPartOfX =
3699 // 0.997535578f +
3700 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003701 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003702 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003703 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003704 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003705 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003706 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003707 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3708 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003709 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003710 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003711 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003712 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003713
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003714 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3715 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003716 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3717 // For floating-point precision of 12:
3718 //
3719 // TwoToFractionalPartOfX =
3720 // 0.999892986f +
3721 // (0.696457318f +
3722 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3723 //
3724 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003725 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003726 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003727 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003728 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003729 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3730 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003731 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003732 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3733 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003734 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003735 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003736 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003737 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003738
Scott Michelfdc40a02009-02-17 22:15:04 +00003739 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003740 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003741 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3742 // For floating-point precision of 18:
3743 //
3744 // TwoToFractionalPartOfX =
3745 // 0.999999982f +
3746 // (0.693148872f +
3747 // (0.240227044f +
3748 // (0.554906021e-1f +
3749 // (0.961591928e-2f +
3750 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3751 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003752 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003753 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003754 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003755 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003756 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3757 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003758 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003759 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3760 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003761 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003762 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3763 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003764 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003765 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3766 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003767 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003768 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3769 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003770 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003771 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003772 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003773 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003774
Scott Michelfdc40a02009-02-17 22:15:04 +00003775 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003776 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003777 }
3778 } else {
3779 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003780 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003781 getValue(I.getOperand(1)).getValueType(),
3782 getValue(I.getOperand(1)),
3783 getValue(I.getOperand(2)));
3784 }
3785
3786 setValue(&I, result);
3787}
3788
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003789/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3790/// we want to emit this as a call to a named external function, return the name
3791/// otherwise lower it and return null.
3792const char *
3793SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003794 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003795 switch (Intrinsic) {
3796 default:
3797 // By default, turn this into a target intrinsic node.
3798 visitTargetIntrinsic(I, Intrinsic);
3799 return 0;
3800 case Intrinsic::vastart: visitVAStart(I); return 0;
3801 case Intrinsic::vaend: visitVAEnd(I); return 0;
3802 case Intrinsic::vacopy: visitVACopy(I); return 0;
3803 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003804 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003805 getValue(I.getOperand(1))));
3806 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003807 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003808 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003809 getValue(I.getOperand(1))));
3810 return 0;
3811 case Intrinsic::setjmp:
3812 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3813 break;
3814 case Intrinsic::longjmp:
3815 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3816 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003817 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003818 SDValue Op1 = getValue(I.getOperand(1));
3819 SDValue Op2 = getValue(I.getOperand(2));
3820 SDValue Op3 = getValue(I.getOperand(3));
3821 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003822 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003823 I.getOperand(1), 0, I.getOperand(2), 0));
3824 return 0;
3825 }
Chris Lattner824b9582008-11-21 16:42:48 +00003826 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003827 SDValue Op1 = getValue(I.getOperand(1));
3828 SDValue Op2 = getValue(I.getOperand(2));
3829 SDValue Op3 = getValue(I.getOperand(3));
3830 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003831 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003832 I.getOperand(1), 0));
3833 return 0;
3834 }
Chris Lattner824b9582008-11-21 16:42:48 +00003835 case Intrinsic::memmove: {
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();
3840
3841 // If the source and destination are known to not be aliases, we can
3842 // lower memmove as memcpy.
3843 uint64_t Size = -1ULL;
3844 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003845 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003846 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3847 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003848 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003849 I.getOperand(1), 0, I.getOperand(2), 0));
3850 return 0;
3851 }
3852
Dale Johannesena04b7572009-02-03 23:04:43 +00003853 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003854 I.getOperand(1), 0, I.getOperand(2), 0));
3855 return 0;
3856 }
3857 case Intrinsic::dbg_stoppoint: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003858 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003859 if (isValidDebugInfoIntrinsic(SPI, CodeGenOpt::Default)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003860 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003861 DebugLoc Loc = ExtractDebugLocation(SPI, MF.getDebugLocInfo());
Chris Lattneraf29a522009-05-04 22:10:05 +00003862 setCurDebugLoc(Loc);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003863
Bill Wendling98a366d2009-04-29 23:29:43 +00003864 if (OptLevel == CodeGenOpt::None)
Chris Lattneraf29a522009-05-04 22:10:05 +00003865 DAG.setRoot(DAG.getDbgStopPoint(Loc, getRoot(),
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003866 SPI.getLine(),
3867 SPI.getColumn(),
3868 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003869 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003870 return 0;
3871 }
3872 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003873 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003874 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003875 if (isValidDebugInfoIntrinsic(RSI, OptLevel) && DW
3876 && DW->ShouldEmitDwarfDebug()) {
Bill Wendlingdf7d5d32009-05-21 00:04:55 +00003877 unsigned LabelID =
3878 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Devang Patel48c7fa22009-04-13 18:13:16 +00003879 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3880 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003881 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003882 return 0;
3883 }
3884 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003885 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003886 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003887
Devang Patel7e1e31f2009-07-02 22:43:26 +00003888 if (!isValidDebugInfoIntrinsic(REI, OptLevel) || !DW
3889 || !DW->ShouldEmitDwarfDebug())
3890 return 0;
Bill Wendling6c4311d2009-05-08 21:14:49 +00003891
Devang Patel7e1e31f2009-07-02 22:43:26 +00003892 MachineFunction &MF = DAG.getMachineFunction();
3893 DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext()));
3894
3895 if (isInlinedFnEnd(REI, MF.getFunction())) {
3896 // This is end of inlined function. Debugging information for inlined
3897 // function is not handled yet (only supported by FastISel).
3898 if (OptLevel == CodeGenOpt::None) {
3899 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3900 if (ID != 0)
3901 // Returned ID is 0 if this is unbalanced "end of inlined
3902 // scope". This could happen if optimizer eats dbg intrinsics or
3903 // "beginning of inlined scope" is not recoginized due to missing
3904 // location info. In such cases, do ignore this region.end.
3905 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3906 getRoot(), ID));
Devang Patel0f7fef32009-04-13 17:02:03 +00003907 }
Devang Patel7e1e31f2009-07-02 22:43:26 +00003908 return 0;
3909 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003910
Devang Patel7e1e31f2009-07-02 22:43:26 +00003911 unsigned LabelID =
3912 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
3913 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3914 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003915 return 0;
3916 }
3917 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003918 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003919 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
Devang Patel7e1e31f2009-07-02 22:43:26 +00003920 if (!isValidDebugInfoIntrinsic(FSI, CodeGenOpt::None) || !DW
3921 || !DW->ShouldEmitDwarfDebug())
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003922 return 0;
Devang Patel16f2ffd2009-04-16 02:33:41 +00003923
Argyrios Kyrtzidis77eaa682009-05-03 08:50:41 +00003924 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel7e1e31f2009-07-02 22:43:26 +00003925 // This is a beginning of an inlined function.
3926 if (isInlinedFnStart(FSI, MF.getFunction())) {
3927 if (OptLevel != CodeGenOpt::None)
3928 // FIXME: Debugging informaation for inlined function is only
3929 // supported at CodeGenOpt::Node.
3930 return 0;
3931
Bill Wendlingc677fe52009-05-10 00:10:50 +00003932 DebugLoc PrevLoc = CurDebugLoc;
Devang Patel07b0ec02009-07-02 00:08:09 +00003933 // If llvm.dbg.func.start is seen in a new block before any
3934 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3935 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3936 if (PrevLoc.isUnknown())
3937 return 0;
Devang Patel07b0ec02009-07-02 00:08:09 +00003938
Devang Patel7e1e31f2009-07-02 22:43:26 +00003939 // Record the source line.
3940 setCurDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
3941
3942 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
3943 DISubprogram SP(cast<GlobalVariable>(FSI.getSubprogram()));
3944 DICompileUnit CU(PrevLocTpl.CompileUnit);
3945 unsigned LabelID = DW->RecordInlinedFnStart(SP, CU,
3946 PrevLocTpl.Line,
3947 PrevLocTpl.Col);
3948 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3949 getRoot(), LabelID));
Devang Patel07b0ec02009-07-02 00:08:09 +00003950 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003951 }
3952
Devang Patel07b0ec02009-07-02 00:08:09 +00003953 // This is a beginning of a new function.
Devang Patel7e1e31f2009-07-02 22:43:26 +00003954 MF.setDefaultDebugLoc(ExtractDebugLocation(FSI, MF.getDebugLocInfo()));
Devang Patel07b0ec02009-07-02 00:08:09 +00003955
Devang Patel7e1e31f2009-07-02 22:43:26 +00003956 // llvm.dbg.func_start also defines beginning of function scope.
3957 DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003958 return 0;
3959 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003960 case Intrinsic::dbg_declare: {
Devang Patel7e1e31f2009-07-02 22:43:26 +00003961 if (OptLevel != CodeGenOpt::None)
3962 // FIXME: Variable debug info is not supported here.
3963 return 0;
3964
3965 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3966 if (!isValidDebugInfoIntrinsic(DI, CodeGenOpt::None))
3967 return 0;
3968
3969 Value *Variable = DI.getVariable();
3970 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
3971 getValue(DI.getAddress()), getValue(Variable)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003972 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003973 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003974 case Intrinsic::eh_exception: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003975 // Insert the EXCEPTIONADDR instruction.
Duncan Sandsb0f1e172009-05-22 20:36:31 +00003976 assert(CurMBB->isLandingPad() &&"Call to eh.exception not in landing pad!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003977 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3978 SDValue Ops[1];
3979 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003980 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003981 setValue(&I, Op);
3982 DAG.setRoot(Op.getValue(1));
3983 return 0;
3984 }
3985
3986 case Intrinsic::eh_selector_i32:
3987 case Intrinsic::eh_selector_i64: {
3988 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3989 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
3990 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003991
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003992 if (MMI) {
3993 if (CurMBB->isLandingPad())
3994 AddCatchInfo(I, MMI, CurMBB);
3995 else {
3996#ifndef NDEBUG
3997 FuncInfo.CatchInfoLost.insert(&I);
3998#endif
3999 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4000 unsigned Reg = TLI.getExceptionSelectorRegister();
4001 if (Reg) CurMBB->addLiveIn(Reg);
4002 }
4003
4004 // Insert the EHSELECTION instruction.
4005 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4006 SDValue Ops[2];
4007 Ops[0] = getValue(I.getOperand(1));
4008 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004009 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004010 setValue(&I, Op);
4011 DAG.setRoot(Op.getValue(1));
4012 } else {
4013 setValue(&I, DAG.getConstant(0, VT));
4014 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004015
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004016 return 0;
4017 }
4018
4019 case Intrinsic::eh_typeid_for_i32:
4020 case Intrinsic::eh_typeid_for_i64: {
4021 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4022 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4023 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004024
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004025 if (MMI) {
4026 // Find the type id for the given typeinfo.
4027 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4028
4029 unsigned TypeID = MMI->getTypeIDFor(GV);
4030 setValue(&I, DAG.getConstant(TypeID, VT));
4031 } else {
4032 // Return something different to eh_selector.
4033 setValue(&I, DAG.getConstant(1, VT));
4034 }
4035
4036 return 0;
4037 }
4038
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004039 case Intrinsic::eh_return_i32:
4040 case Intrinsic::eh_return_i64:
4041 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004042 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004043 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004044 MVT::Other,
4045 getControlRoot(),
4046 getValue(I.getOperand(1)),
4047 getValue(I.getOperand(2))));
4048 } else {
4049 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4050 }
4051
4052 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004053 case Intrinsic::eh_unwind_init:
4054 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4055 MMI->setCallsUnwindInit(true);
4056 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004057
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004058 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004059
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004060 case Intrinsic::eh_dwarf_cfa: {
4061 MVT VT = getValue(I.getOperand(1)).getValueType();
4062 SDValue CfaArg;
4063 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004064 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004065 TLI.getPointerTy(), getValue(I.getOperand(1)));
4066 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004067 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004068 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004069
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004070 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004071 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004072 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004073 TLI.getPointerTy()),
4074 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004075 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004076 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004077 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004078 TLI.getPointerTy(),
4079 DAG.getConstant(0,
4080 TLI.getPointerTy())),
4081 Offset));
4082 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004083 }
4084
Mon P Wang77cdf302008-11-10 20:54:11 +00004085 case Intrinsic::convertff:
4086 case Intrinsic::convertfsi:
4087 case Intrinsic::convertfui:
4088 case Intrinsic::convertsif:
4089 case Intrinsic::convertuif:
4090 case Intrinsic::convertss:
4091 case Intrinsic::convertsu:
4092 case Intrinsic::convertus:
4093 case Intrinsic::convertuu: {
4094 ISD::CvtCode Code = ISD::CVT_INVALID;
4095 switch (Intrinsic) {
4096 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4097 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4098 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4099 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4100 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4101 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4102 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4103 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4104 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4105 }
4106 MVT DestVT = TLI.getValueType(I.getType());
4107 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004108 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004109 DAG.getValueType(DestVT),
4110 DAG.getValueType(getValue(Op1).getValueType()),
4111 getValue(I.getOperand(2)),
4112 getValue(I.getOperand(3)),
4113 Code));
4114 return 0;
4115 }
4116
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004117 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004118 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004119 getValue(I.getOperand(1)).getValueType(),
4120 getValue(I.getOperand(1))));
4121 return 0;
4122 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004123 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004124 getValue(I.getOperand(1)).getValueType(),
4125 getValue(I.getOperand(1)),
4126 getValue(I.getOperand(2))));
4127 return 0;
4128 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004129 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004130 getValue(I.getOperand(1)).getValueType(),
4131 getValue(I.getOperand(1))));
4132 return 0;
4133 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004134 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004135 getValue(I.getOperand(1)).getValueType(),
4136 getValue(I.getOperand(1))));
4137 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004138 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004139 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004140 return 0;
4141 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004142 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004143 return 0;
4144 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004145 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004146 return 0;
4147 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004148 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004149 return 0;
4150 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004151 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004152 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004153 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004154 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004155 return 0;
4156 case Intrinsic::pcmarker: {
4157 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004158 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004159 return 0;
4160 }
4161 case Intrinsic::readcyclecounter: {
4162 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004163 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004164 DAG.getVTList(MVT::i64, MVT::Other),
4165 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004166 setValue(&I, Tmp);
4167 DAG.setRoot(Tmp.getValue(1));
4168 return 0;
4169 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004170 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004171 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004172 getValue(I.getOperand(1)).getValueType(),
4173 getValue(I.getOperand(1))));
4174 return 0;
4175 case Intrinsic::cttz: {
4176 SDValue Arg = getValue(I.getOperand(1));
4177 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004178 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004179 setValue(&I, result);
4180 return 0;
4181 }
4182 case Intrinsic::ctlz: {
4183 SDValue Arg = getValue(I.getOperand(1));
4184 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004185 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004186 setValue(&I, result);
4187 return 0;
4188 }
4189 case Intrinsic::ctpop: {
4190 SDValue Arg = getValue(I.getOperand(1));
4191 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004192 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004193 setValue(&I, result);
4194 return 0;
4195 }
4196 case Intrinsic::stacksave: {
4197 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004198 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004199 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004200 setValue(&I, Tmp);
4201 DAG.setRoot(Tmp.getValue(1));
4202 return 0;
4203 }
4204 case Intrinsic::stackrestore: {
4205 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004206 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004207 return 0;
4208 }
Bill Wendling57344502008-11-18 11:01:33 +00004209 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004210 // Emit code into the DAG to store the stack guard onto the stack.
4211 MachineFunction &MF = DAG.getMachineFunction();
4212 MachineFrameInfo *MFI = MF.getFrameInfo();
4213 MVT PtrTy = TLI.getPointerTy();
4214
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004215 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4216 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004217
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004218 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004219 MFI->setStackProtectorIndex(FI);
4220
4221 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4222
4223 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004224 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004225 PseudoSourceValue::getFixedStack(FI),
4226 0, true);
4227 setValue(&I, Result);
4228 DAG.setRoot(Result);
4229 return 0;
4230 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004231 case Intrinsic::var_annotation:
4232 // Discard annotate attributes
4233 return 0;
4234
4235 case Intrinsic::init_trampoline: {
4236 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4237
4238 SDValue Ops[6];
4239 Ops[0] = getRoot();
4240 Ops[1] = getValue(I.getOperand(1));
4241 Ops[2] = getValue(I.getOperand(2));
4242 Ops[3] = getValue(I.getOperand(3));
4243 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4244 Ops[5] = DAG.getSrcValue(F);
4245
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004246 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004247 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
4248 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004249
4250 setValue(&I, Tmp);
4251 DAG.setRoot(Tmp.getValue(1));
4252 return 0;
4253 }
4254
4255 case Intrinsic::gcroot:
4256 if (GFI) {
4257 Value *Alloca = I.getOperand(1);
4258 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004259
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004260 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4261 GFI->addStackRoot(FI->getIndex(), TypeMap);
4262 }
4263 return 0;
4264
4265 case Intrinsic::gcread:
4266 case Intrinsic::gcwrite:
Torok Edwinc23197a2009-07-14 16:55:14 +00004267 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004268 return 0;
4269
4270 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004271 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004272 return 0;
4273 }
4274
4275 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004276 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004277 return 0;
4278 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004279
Bill Wendlingef375462008-11-21 02:38:44 +00004280 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004281 return implVisitAluOverflow(I, ISD::UADDO);
4282 case Intrinsic::sadd_with_overflow:
4283 return implVisitAluOverflow(I, ISD::SADDO);
4284 case Intrinsic::usub_with_overflow:
4285 return implVisitAluOverflow(I, ISD::USUBO);
4286 case Intrinsic::ssub_with_overflow:
4287 return implVisitAluOverflow(I, ISD::SSUBO);
4288 case Intrinsic::umul_with_overflow:
4289 return implVisitAluOverflow(I, ISD::UMULO);
4290 case Intrinsic::smul_with_overflow:
4291 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004292
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004293 case Intrinsic::prefetch: {
4294 SDValue Ops[4];
4295 Ops[0] = getRoot();
4296 Ops[1] = getValue(I.getOperand(1));
4297 Ops[2] = getValue(I.getOperand(2));
4298 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004299 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004300 return 0;
4301 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004302
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004303 case Intrinsic::memory_barrier: {
4304 SDValue Ops[6];
4305 Ops[0] = getRoot();
4306 for (int x = 1; x < 6; ++x)
4307 Ops[x] = getValue(I.getOperand(x));
4308
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004309 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004310 return 0;
4311 }
4312 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004313 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004314 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004315 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004316 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4317 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004318 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004319 getValue(I.getOperand(2)),
4320 getValue(I.getOperand(3)),
4321 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004322 setValue(&I, L);
4323 DAG.setRoot(L.getValue(1));
4324 return 0;
4325 }
4326 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004327 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004328 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004329 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004330 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004331 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004332 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004333 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004334 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004335 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004336 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004337 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004339 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004340 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004341 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004342 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004343 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004344 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004345 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004346 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004348 }
4349}
4350
4351
4352void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4353 bool IsTailCall,
4354 MachineBasicBlock *LandingPad) {
4355 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4356 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4357 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4358 unsigned BeginLabel = 0, EndLabel = 0;
4359
4360 TargetLowering::ArgListTy Args;
4361 TargetLowering::ArgListEntry Entry;
4362 Args.reserve(CS.arg_size());
4363 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4364 i != e; ++i) {
4365 SDValue ArgNode = getValue(*i);
4366 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4367
4368 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004369 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4370 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4371 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4372 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4373 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4374 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004375 Entry.Alignment = CS.getParamAlignment(attrInd);
4376 Args.push_back(Entry);
4377 }
4378
4379 if (LandingPad && MMI) {
4380 // Insert a label before the invoke call to mark the try range. This can be
4381 // used to detect deletion of the invoke via the MachineModuleInfo.
4382 BeginLabel = MMI->NextLabelID();
4383 // Both PendingLoads and PendingExports must be flushed here;
4384 // this call might not return.
4385 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004386 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4387 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004388 }
4389
4390 std::pair<SDValue,SDValue> Result =
4391 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004392 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004393 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00004394 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004395 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004396 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004397 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004398 if (CS.getType() != Type::VoidTy)
4399 setValue(CS.getInstruction(), Result.first);
4400 DAG.setRoot(Result.second);
4401
4402 if (LandingPad && MMI) {
4403 // Insert a label at the end of the invoke call to mark the try range. This
4404 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4405 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004406 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4407 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004408
4409 // Inform MachineModuleInfo of range.
4410 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4411 }
4412}
4413
4414
4415void SelectionDAGLowering::visitCall(CallInst &I) {
4416 const char *RenameFn = 0;
4417 if (Function *F = I.getCalledFunction()) {
4418 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004419 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4420 if (II) {
4421 if (unsigned IID = II->getIntrinsicID(F)) {
4422 RenameFn = visitIntrinsicCall(I, IID);
4423 if (!RenameFn)
4424 return;
4425 }
4426 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004427 if (unsigned IID = F->getIntrinsicID()) {
4428 RenameFn = visitIntrinsicCall(I, IID);
4429 if (!RenameFn)
4430 return;
4431 }
4432 }
4433
4434 // Check for well-known libc/libm calls. If the function is internal, it
4435 // can't be a library call.
4436 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004437 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004438 const char *NameStr = F->getNameStart();
4439 if (NameStr[0] == 'c' &&
4440 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4441 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4442 if (I.getNumOperands() == 3 && // Basic sanity checks.
4443 I.getOperand(1)->getType()->isFloatingPoint() &&
4444 I.getType() == I.getOperand(1)->getType() &&
4445 I.getType() == I.getOperand(2)->getType()) {
4446 SDValue LHS = getValue(I.getOperand(1));
4447 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004448 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004449 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004450 return;
4451 }
4452 } else if (NameStr[0] == 'f' &&
4453 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4454 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4455 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4456 if (I.getNumOperands() == 2 && // Basic sanity checks.
4457 I.getOperand(1)->getType()->isFloatingPoint() &&
4458 I.getType() == I.getOperand(1)->getType()) {
4459 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004460 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004461 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004462 return;
4463 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004464 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004465 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4466 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4467 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4468 if (I.getNumOperands() == 2 && // Basic sanity checks.
4469 I.getOperand(1)->getType()->isFloatingPoint() &&
4470 I.getType() == I.getOperand(1)->getType()) {
4471 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004472 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004473 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004474 return;
4475 }
4476 } else if (NameStr[0] == 'c' &&
4477 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4478 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4479 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4480 if (I.getNumOperands() == 2 && // Basic sanity checks.
4481 I.getOperand(1)->getType()->isFloatingPoint() &&
4482 I.getType() == I.getOperand(1)->getType()) {
4483 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004484 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004485 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004486 return;
4487 }
4488 }
4489 }
4490 } else if (isa<InlineAsm>(I.getOperand(0))) {
4491 visitInlineAsm(&I);
4492 return;
4493 }
4494
4495 SDValue Callee;
4496 if (!RenameFn)
4497 Callee = getValue(I.getOperand(0));
4498 else
Bill Wendling056292f2008-09-16 21:48:12 +00004499 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004500
4501 LowerCallTo(&I, Callee, I.isTailCall());
4502}
4503
4504
4505/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004506/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004507/// Chain/Flag as the input and updates them for the output Chain/Flag.
4508/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004509SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004510 SDValue &Chain,
4511 SDValue *Flag) const {
4512 // Assemble the legal parts into the final values.
4513 SmallVector<SDValue, 4> Values(ValueVTs.size());
4514 SmallVector<SDValue, 8> Parts;
4515 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4516 // Copy the legal parts from the registers.
4517 MVT ValueVT = ValueVTs[Value];
4518 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4519 MVT RegisterVT = RegVTs[Value];
4520
4521 Parts.resize(NumRegs);
4522 for (unsigned i = 0; i != NumRegs; ++i) {
4523 SDValue P;
4524 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004525 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004526 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004527 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004528 *Flag = P.getValue(2);
4529 }
4530 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004531
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004532 // If the source register was virtual and if we know something about it,
4533 // add an assert node.
4534 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4535 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4536 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4537 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4538 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4539 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004540
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004541 unsigned RegSize = RegisterVT.getSizeInBits();
4542 unsigned NumSignBits = LOI.NumSignBits;
4543 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004544
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004545 // FIXME: We capture more information than the dag can represent. For
4546 // now, just use the tightest assertzext/assertsext possible.
4547 bool isSExt = true;
4548 MVT FromVT(MVT::Other);
4549 if (NumSignBits == RegSize)
4550 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4551 else if (NumZeroBits >= RegSize-1)
4552 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4553 else if (NumSignBits > RegSize-8)
4554 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004555 else if (NumZeroBits >= RegSize-8)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004556 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4557 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004558 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004559 else if (NumZeroBits >= RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004560 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004561 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004562 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004563 else if (NumZeroBits >= RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004564 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004565
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004566 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004567 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004568 RegisterVT, P, DAG.getValueType(FromVT));
4569
4570 }
4571 }
4572 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004573
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004574 Parts[i] = P;
4575 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004576
Scott Michelfdc40a02009-02-17 22:15:04 +00004577 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004578 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004579 Part += NumRegs;
4580 Parts.clear();
4581 }
4582
Dale Johannesen66978ee2009-01-31 02:22:37 +00004583 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004584 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4585 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004586}
4587
4588/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004589/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004590/// Chain/Flag as the input and updates them for the output Chain/Flag.
4591/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004592void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004593 SDValue &Chain, SDValue *Flag) const {
4594 // Get the list of the values's legal parts.
4595 unsigned NumRegs = Regs.size();
4596 SmallVector<SDValue, 8> Parts(NumRegs);
4597 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4598 MVT ValueVT = ValueVTs[Value];
4599 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4600 MVT RegisterVT = RegVTs[Value];
4601
Dale Johannesen66978ee2009-01-31 02:22:37 +00004602 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004603 &Parts[Part], NumParts, RegisterVT);
4604 Part += NumParts;
4605 }
4606
4607 // Copy the parts into the registers.
4608 SmallVector<SDValue, 8> Chains(NumRegs);
4609 for (unsigned i = 0; i != NumRegs; ++i) {
4610 SDValue Part;
4611 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004612 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004613 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004614 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004615 *Flag = Part.getValue(1);
4616 }
4617 Chains[i] = Part.getValue(0);
4618 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004619
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004620 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004621 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004622 // flagged to it. That is the CopyToReg nodes and the user are considered
4623 // a single scheduling unit. If we create a TokenFactor and return it as
4624 // chain, then the TokenFactor is both a predecessor (operand) of the
4625 // user as well as a successor (the TF operands are flagged to the user).
4626 // c1, f1 = CopyToReg
4627 // c2, f2 = CopyToReg
4628 // c3 = TokenFactor c1, c2
4629 // ...
4630 // = op c3, ..., f2
4631 Chain = Chains[NumRegs-1];
4632 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004633 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004634}
4635
4636/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004637/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004638/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004639void RegsForValue::AddInlineAsmOperands(unsigned Code,
4640 bool HasMatching,unsigned MatchingIdx,
4641 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004642 std::vector<SDValue> &Ops) const {
4643 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004644 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4645 unsigned Flag = Code | (Regs.size() << 3);
4646 if (HasMatching)
4647 Flag |= 0x80000000 | (MatchingIdx << 16);
4648 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004649 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4650 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4651 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004652 for (unsigned i = 0; i != NumRegs; ++i) {
4653 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004654 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004655 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004656 }
4657}
4658
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004659/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004660/// i.e. it isn't a stack pointer or some other special register, return the
4661/// register class for the register. Otherwise, return null.
4662static const TargetRegisterClass *
4663isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4664 const TargetLowering &TLI,
4665 const TargetRegisterInfo *TRI) {
4666 MVT FoundVT = MVT::Other;
4667 const TargetRegisterClass *FoundRC = 0;
4668 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4669 E = TRI->regclass_end(); RCI != E; ++RCI) {
4670 MVT ThisVT = MVT::Other;
4671
4672 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004673 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004674 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4675 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4676 I != E; ++I) {
4677 if (TLI.isTypeLegal(*I)) {
4678 // If we have already found this register in a different register class,
4679 // choose the one with the largest VT specified. For example, on
4680 // PowerPC, we favor f64 register classes over f32.
4681 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4682 ThisVT = *I;
4683 break;
4684 }
4685 }
4686 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004687
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004688 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004689
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004690 // NOTE: This isn't ideal. In particular, this might allocate the
4691 // frame pointer in functions that need it (due to them not being taken
4692 // out of allocation, because a variable sized allocation hasn't been seen
4693 // yet). This is a slight code pessimization, but should still work.
4694 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4695 E = RC->allocation_order_end(MF); I != E; ++I)
4696 if (*I == Reg) {
4697 // We found a matching register class. Keep looking at others in case
4698 // we find one with larger registers that this physreg is also in.
4699 FoundRC = RC;
4700 FoundVT = ThisVT;
4701 break;
4702 }
4703 }
4704 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004705}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004706
4707
4708namespace llvm {
4709/// AsmOperandInfo - This contains information for each constraint that we are
4710/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004711class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004712 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004713public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004714 /// CallOperand - If this is the result output operand or a clobber
4715 /// this is null, otherwise it is the incoming operand to the CallInst.
4716 /// This gets modified as the asm is processed.
4717 SDValue CallOperand;
4718
4719 /// AssignedRegs - If this is a register or register class operand, this
4720 /// contains the set of register corresponding to the operand.
4721 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004722
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004723 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4724 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4725 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004726
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004727 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4728 /// busy in OutputRegs/InputRegs.
4729 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004730 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004731 std::set<unsigned> &InputRegs,
4732 const TargetRegisterInfo &TRI) const {
4733 if (isOutReg) {
4734 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4735 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4736 }
4737 if (isInReg) {
4738 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4739 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4740 }
4741 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004742
Chris Lattner81249c92008-10-17 17:05:25 +00004743 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4744 /// corresponds to. If there is no Value* for this operand, it returns
4745 /// MVT::Other.
4746 MVT getCallOperandValMVT(const TargetLowering &TLI,
4747 const TargetData *TD) const {
4748 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004749
Chris Lattner81249c92008-10-17 17:05:25 +00004750 if (isa<BasicBlock>(CallOperandVal))
4751 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004752
Chris Lattner81249c92008-10-17 17:05:25 +00004753 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004754
Chris Lattner81249c92008-10-17 17:05:25 +00004755 // If this is an indirect operand, the operand is a pointer to the
4756 // accessed type.
4757 if (isIndirect)
4758 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004759
Chris Lattner81249c92008-10-17 17:05:25 +00004760 // If OpTy is not a single value, it may be a struct/union that we
4761 // can tile with integers.
4762 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4763 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4764 switch (BitSize) {
4765 default: break;
4766 case 1:
4767 case 8:
4768 case 16:
4769 case 32:
4770 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004771 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004772 OpTy = IntegerType::get(BitSize);
4773 break;
4774 }
4775 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004776
Chris Lattner81249c92008-10-17 17:05:25 +00004777 return TLI.getValueType(OpTy, true);
4778 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004779
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004780private:
4781 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4782 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004783 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004784 const TargetRegisterInfo &TRI) {
4785 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4786 Regs.insert(Reg);
4787 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4788 for (; *Aliases; ++Aliases)
4789 Regs.insert(*Aliases);
4790 }
4791};
4792} // end llvm namespace.
4793
4794
4795/// GetRegistersForValue - Assign registers (virtual or physical) for the
4796/// specified operand. We prefer to assign virtual registers, to allow the
4797/// register allocator handle the assignment process. However, if the asm uses
4798/// features that we can't model on machineinstrs, we have SDISel do the
4799/// allocation. This produces generally horrible, but correct, code.
4800///
4801/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004802/// Input and OutputRegs are the set of already allocated physical registers.
4803///
4804void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004805GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004806 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004807 std::set<unsigned> &InputRegs) {
4808 // Compute whether this value requires an input register, an output register,
4809 // or both.
4810 bool isOutReg = false;
4811 bool isInReg = false;
4812 switch (OpInfo.Type) {
4813 case InlineAsm::isOutput:
4814 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004815
4816 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004817 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004818 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004819 break;
4820 case InlineAsm::isInput:
4821 isInReg = true;
4822 isOutReg = false;
4823 break;
4824 case InlineAsm::isClobber:
4825 isOutReg = true;
4826 isInReg = true;
4827 break;
4828 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004829
4830
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004831 MachineFunction &MF = DAG.getMachineFunction();
4832 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004833
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004834 // If this is a constraint for a single physreg, or a constraint for a
4835 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004836 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004837 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4838 OpInfo.ConstraintVT);
4839
4840 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004841 if (OpInfo.ConstraintVT != MVT::Other) {
4842 // If this is a FP input in an integer register (or visa versa) insert a bit
4843 // cast of the input value. More generally, handle any case where the input
4844 // value disagrees with the register class we plan to stick this in.
4845 if (OpInfo.Type == InlineAsm::isInput &&
4846 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4847 // Try to convert to the first MVT that the reg class contains. If the
4848 // types are identical size, use a bitcast to convert (e.g. two differing
4849 // vector types).
4850 MVT RegVT = *PhysReg.second->vt_begin();
4851 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004852 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004853 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004854 OpInfo.ConstraintVT = RegVT;
4855 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4856 // If the input is a FP value and we want it in FP registers, do a
4857 // bitcast to the corresponding integer type. This turns an f64 value
4858 // into i64, which can be passed with two i32 values on a 32-bit
4859 // machine.
4860 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004861 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004862 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004863 OpInfo.ConstraintVT = RegVT;
4864 }
4865 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004866
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004867 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004868 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004869
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004870 MVT RegVT;
4871 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004872
4873 // If this is a constraint for a specific physical register, like {r17},
4874 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004875 if (unsigned AssignedReg = PhysReg.first) {
4876 const TargetRegisterClass *RC = PhysReg.second;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004877 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004878 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004879
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004880 // Get the actual register value type. This is important, because the user
4881 // may have asked for (e.g.) the AX register in i32 type. We need to
4882 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004883 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004884
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004885 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004886 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004887
4888 // If this is an expanded reference, add the rest of the regs to Regs.
4889 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004890 TargetRegisterClass::iterator I = RC->begin();
4891 for (; *I != AssignedReg; ++I)
4892 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004893
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004894 // Already added the first reg.
4895 --NumRegs; ++I;
4896 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004897 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004898 Regs.push_back(*I);
4899 }
4900 }
4901 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4902 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4903 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4904 return;
4905 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004906
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004907 // Otherwise, if this was a reference to an LLVM register class, create vregs
4908 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00004909 if (const TargetRegisterClass *RC = PhysReg.second) {
4910 RegVT = *RC->vt_begin();
Evan Chengfb112882009-03-23 08:01:15 +00004911 if (OpInfo.ConstraintVT == MVT::Other)
4912 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004913
Evan Chengfb112882009-03-23 08:01:15 +00004914 // Create the appropriate number of virtual registers.
4915 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4916 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00004917 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004918
Evan Chengfb112882009-03-23 08:01:15 +00004919 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4920 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004921 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004922
4923 // This is a reference to a register class that doesn't directly correspond
4924 // to an LLVM register class. Allocate NumRegs consecutive, available,
4925 // registers from the class.
4926 std::vector<unsigned> RegClassRegs
4927 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4928 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004929
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004930 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4931 unsigned NumAllocated = 0;
4932 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4933 unsigned Reg = RegClassRegs[i];
4934 // See if this register is available.
4935 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4936 (isInReg && InputRegs.count(Reg))) { // Already used.
4937 // Make sure we find consecutive registers.
4938 NumAllocated = 0;
4939 continue;
4940 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004941
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004942 // Check to see if this register is allocatable (i.e. don't give out the
4943 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004944 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4945 if (!RC) { // Couldn't allocate this register.
4946 // Reset NumAllocated to make sure we return consecutive registers.
4947 NumAllocated = 0;
4948 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004949 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004950
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004951 // Okay, this register is good, we can use it.
4952 ++NumAllocated;
4953
4954 // If we allocated enough consecutive registers, succeed.
4955 if (NumAllocated == NumRegs) {
4956 unsigned RegStart = (i-NumAllocated)+1;
4957 unsigned RegEnd = i+1;
4958 // Mark all of the allocated registers used.
4959 for (unsigned i = RegStart; i != RegEnd; ++i)
4960 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004961
4962 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004963 OpInfo.ConstraintVT);
4964 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4965 return;
4966 }
4967 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004968
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004969 // Otherwise, we couldn't allocate enough registers for this.
4970}
4971
Evan Chengda43bcf2008-09-24 00:05:32 +00004972/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
4973/// processed uses a memory 'm' constraint.
4974static bool
4975hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00004976 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00004977 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
4978 InlineAsm::ConstraintInfo &CI = CInfos[i];
4979 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
4980 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
4981 if (CType == TargetLowering::C_Memory)
4982 return true;
4983 }
Chris Lattner6c147292009-04-30 00:48:50 +00004984
4985 // Indirect operand accesses access memory.
4986 if (CI.isIndirect)
4987 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00004988 }
4989
4990 return false;
4991}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004992
4993/// visitInlineAsm - Handle a call to an InlineAsm object.
4994///
4995void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4996 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
4997
4998 /// ConstraintOperands - Information about all of the constraints.
4999 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005000
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005001 std::set<unsigned> OutputRegs, InputRegs;
5002
5003 // Do a prepass over the constraints, canonicalizing them, and building up the
5004 // ConstraintOperands list.
5005 std::vector<InlineAsm::ConstraintInfo>
5006 ConstraintInfos = IA->ParseConstraints();
5007
Evan Chengda43bcf2008-09-24 00:05:32 +00005008 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005009
5010 SDValue Chain, Flag;
5011
5012 // We won't need to flush pending loads if this asm doesn't touch
5013 // memory and is nonvolatile.
5014 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005015 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005016 else
5017 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005018
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005019 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5020 unsigned ResNo = 0; // ResNo - The result number of the next output.
5021 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5022 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5023 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005024
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005025 MVT OpVT = MVT::Other;
5026
5027 // Compute the value type for each operand.
5028 switch (OpInfo.Type) {
5029 case InlineAsm::isOutput:
5030 // Indirect outputs just consume an argument.
5031 if (OpInfo.isIndirect) {
5032 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5033 break;
5034 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005035
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005036 // The return value of the call is this value. As such, there is no
5037 // corresponding argument.
5038 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5039 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5040 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5041 } else {
5042 assert(ResNo == 0 && "Asm only has one result!");
5043 OpVT = TLI.getValueType(CS.getType());
5044 }
5045 ++ResNo;
5046 break;
5047 case InlineAsm::isInput:
5048 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5049 break;
5050 case InlineAsm::isClobber:
5051 // Nothing to do.
5052 break;
5053 }
5054
5055 // If this is an input or an indirect output, process the call argument.
5056 // BasicBlocks are labels, currently appearing only in asm's.
5057 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005058 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005059 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005060 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005061 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005062 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005063
Chris Lattner81249c92008-10-17 17:05:25 +00005064 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005065 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005066
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005067 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005068 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005069
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005070 // Second pass over the constraints: compute which constraint option to use
5071 // and assign registers to constraints that want a specific physreg.
5072 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5073 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005074
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005075 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005076 // matching input. If their types mismatch, e.g. one is an integer, the
5077 // other is floating point, or their sizes are different, flag it as an
5078 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005079 if (OpInfo.hasMatchingInput()) {
5080 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5081 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005082 if ((OpInfo.ConstraintVT.isInteger() !=
5083 Input.ConstraintVT.isInteger()) ||
5084 (OpInfo.ConstraintVT.getSizeInBits() !=
5085 Input.ConstraintVT.getSizeInBits())) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005086 llvm_report_error("llvm: error: Unsupported asm: input constraint"
5087 " with a matching output constraint of incompatible"
5088 " type!");
Evan Cheng09dc9c02008-12-16 18:21:39 +00005089 }
5090 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005091 }
5092 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005093
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005094 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005095 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005096
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005097 // If this is a memory input, and if the operand is not indirect, do what we
5098 // need to to provide an address for the memory input.
5099 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5100 !OpInfo.isIndirect) {
5101 assert(OpInfo.Type == InlineAsm::isInput &&
5102 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005103
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005104 // Memory operands really want the address of the value. If we don't have
5105 // an indirect input, put it in the constpool if we can, otherwise spill
5106 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005107
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005108 // If the operand is a float, integer, or vector constant, spill to a
5109 // constant pool entry to get its address.
5110 Value *OpVal = OpInfo.CallOperandVal;
5111 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5112 isa<ConstantVector>(OpVal)) {
5113 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5114 TLI.getPointerTy());
5115 } else {
5116 // Otherwise, create a stack slot and emit a store to it before the
5117 // asm.
5118 const Type *Ty = OpVal->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00005119 uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005120 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5121 MachineFunction &MF = DAG.getMachineFunction();
5122 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5123 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005124 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005125 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005126 OpInfo.CallOperand = StackSlot;
5127 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005128
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005129 // There is no longer a Value* corresponding to this operand.
5130 OpInfo.CallOperandVal = 0;
5131 // It is now an indirect operand.
5132 OpInfo.isIndirect = true;
5133 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005134
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005135 // If this constraint is for a specific register, allocate it before
5136 // anything else.
5137 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005138 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005139 }
5140 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005141
5142
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005143 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005144 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005145 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5146 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005147
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005148 // C_Register operands have already been allocated, Other/Memory don't need
5149 // to be.
5150 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005151 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005152 }
5153
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005154 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5155 std::vector<SDValue> AsmNodeOperands;
5156 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5157 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005158 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005159
5160
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005161 // Loop over all of the inputs, copying the operand values into the
5162 // appropriate registers and processing the output regs.
5163 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005164
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005165 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5166 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005167
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005168 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5169 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5170
5171 switch (OpInfo.Type) {
5172 case InlineAsm::isOutput: {
5173 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5174 OpInfo.ConstraintType != TargetLowering::C_Register) {
5175 // Memory output, or 'other' output (e.g. 'X' constraint).
5176 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5177
5178 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005179 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5180 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005181 TLI.getPointerTy()));
5182 AsmNodeOperands.push_back(OpInfo.CallOperand);
5183 break;
5184 }
5185
5186 // Otherwise, this is a register or register class output.
5187
5188 // Copy the output from the appropriate register. Find a register that
5189 // we can use.
5190 if (OpInfo.AssignedRegs.Regs.empty()) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005191 llvm_report_error("llvm: error: Couldn't allocate output reg for"
5192 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005193 }
5194
5195 // If this is an indirect operand, store through the pointer after the
5196 // asm.
5197 if (OpInfo.isIndirect) {
5198 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5199 OpInfo.CallOperandVal));
5200 } else {
5201 // This is the result value of the call.
5202 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5203 // Concatenate this output onto the outputs list.
5204 RetValRegs.append(OpInfo.AssignedRegs);
5205 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005206
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005207 // Add information to the INLINEASM node to know that this register is
5208 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005209 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5210 6 /* EARLYCLOBBER REGDEF */ :
5211 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005212 false,
5213 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005214 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005215 break;
5216 }
5217 case InlineAsm::isInput: {
5218 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005219
Chris Lattner6bdcda32008-10-17 16:47:46 +00005220 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005221 // If this is required to match an output register we have already set,
5222 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005223 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005224
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005225 // Scan until we find the definition we already emitted of this operand.
5226 // When we find it, create a RegsForValue operand.
5227 unsigned CurOp = 2; // The first operand.
5228 for (; OperandNo; --OperandNo) {
5229 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005230 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005231 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005232 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5233 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5234 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005235 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005236 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005237 }
5238
Evan Cheng697cbbf2009-03-20 18:03:34 +00005239 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005240 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005241 if ((OpFlag & 7) == 2 /*REGDEF*/
5242 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5243 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohman15480bd2009-06-15 22:32:41 +00005244 if (OpInfo.isIndirect) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005245 llvm_report_error("llvm: error: "
5246 "Don't know how to handle tied indirect "
5247 "register inputs yet!");
Dan Gohman15480bd2009-06-15 22:32:41 +00005248 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005249 RegsForValue MatchedRegs;
5250 MatchedRegs.TLI = &TLI;
5251 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Evan Chengfb112882009-03-23 08:01:15 +00005252 MVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
5253 MatchedRegs.RegVTs.push_back(RegVT);
5254 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005255 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005256 i != e; ++i)
5257 MatchedRegs.Regs.
5258 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005259
5260 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005261 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5262 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005263 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5264 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005265 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005266 break;
5267 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005268 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5269 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5270 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005271 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005272 // See InlineAsm.h isUseOperandTiedToDef.
5273 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005274 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005275 TLI.getPointerTy()));
5276 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5277 break;
5278 }
5279 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005280
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005281 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005282 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005283 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005284
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005285 std::vector<SDValue> Ops;
5286 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005287 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005288 if (Ops.empty()) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005289 llvm_report_error("llvm: error: Invalid operand for inline asm"
5290 " constraint '" + OpInfo.ConstraintCode + "'!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005291 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005292
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005293 // Add information to the INLINEASM node to know about this input.
5294 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005295 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005296 TLI.getPointerTy()));
5297 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5298 break;
5299 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5300 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5301 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5302 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005303
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005304 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005305 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5306 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005307 TLI.getPointerTy()));
5308 AsmNodeOperands.push_back(InOperandVal);
5309 break;
5310 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005311
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005312 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5313 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5314 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005315 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005316 "Don't know how to handle indirect register inputs yet!");
5317
5318 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005319 if (OpInfo.AssignedRegs.Regs.empty()) {
Torok Edwin7d696d82009-07-11 13:10:19 +00005320 llvm_report_error("llvm: error: Couldn't allocate input reg for"
5321 " constraint '"+ OpInfo.ConstraintCode +"'!");
Evan Chengaa765b82008-09-25 00:14:04 +00005322 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005323
Dale Johannesen66978ee2009-01-31 02:22:37 +00005324 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5325 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005326
Evan Cheng697cbbf2009-03-20 18:03:34 +00005327 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005328 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005329 break;
5330 }
5331 case InlineAsm::isClobber: {
5332 // Add the clobbered value to the operand list, so that the register
5333 // allocator is aware that the physreg got clobbered.
5334 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005335 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005336 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005337 break;
5338 }
5339 }
5340 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005341
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005342 // Finish up input operands.
5343 AsmNodeOperands[0] = Chain;
5344 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005345
Dale Johannesen66978ee2009-01-31 02:22:37 +00005346 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00005347 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005348 &AsmNodeOperands[0], AsmNodeOperands.size());
5349 Flag = Chain.getValue(1);
5350
5351 // If this asm returns a register value, copy the result from that register
5352 // and set it as the value of the call.
5353 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005354 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005355 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005356
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005357 // FIXME: Why don't we do this for inline asms with MRVs?
5358 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5359 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005360
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005361 // If any of the results of the inline asm is a vector, it may have the
5362 // wrong width/num elts. This can happen for register classes that can
5363 // contain multiple different value types. The preg or vreg allocated may
5364 // not have the same VT as was expected. Convert it to the right type
5365 // with bit_convert.
5366 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005367 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005368 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005369
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005370 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005371 ResultType.isInteger() && Val.getValueType().isInteger()) {
5372 // If a result value was tied to an input value, the computed result may
5373 // have a wider width than the expected result. Extract the relevant
5374 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005375 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005376 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005377
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005378 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005379 }
Dan Gohman95915732008-10-18 01:03:45 +00005380
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005381 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005382 // Don't need to use this as a chain in this case.
5383 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5384 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005385 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005386
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005387 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005388
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005389 // Process indirect outputs, first output all of the flagged copies out of
5390 // physregs.
5391 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5392 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5393 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005394 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5395 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005396 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005397
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005398 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005399
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005400 // Emit the non-flagged stores from the physregs.
5401 SmallVector<SDValue, 8> OutChains;
5402 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005403 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005404 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005405 getValue(StoresToEmit[i].second),
5406 StoresToEmit[i].second, 0));
5407 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005408 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005409 &OutChains[0], OutChains.size());
5410 DAG.setRoot(Chain);
5411}
5412
5413
5414void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5415 SDValue Src = getValue(I.getOperand(0));
5416
Chris Lattner0b18e592009-03-17 19:36:00 +00005417 // Scale up by the type size in the original i32 type width. Various
5418 // mid-level optimizers may make assumptions about demanded bits etc from the
5419 // i32-ness of the optimizer: we do not want to promote to i64 and then
5420 // multiply on 64-bit targets.
5421 // FIXME: Malloc inst should go away: PR715.
Duncan Sands777d2302009-05-09 07:06:46 +00005422 uint64_t ElementSize = TD->getTypeAllocSize(I.getType()->getElementType());
Chris Lattner0b18e592009-03-17 19:36:00 +00005423 if (ElementSize != 1)
5424 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5425 Src, DAG.getConstant(ElementSize, Src.getValueType()));
5426
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005427 MVT IntPtr = TLI.getPointerTy();
5428
5429 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005430 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005431 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005432 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005433
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005434 TargetLowering::ArgListTy Args;
5435 TargetLowering::ArgListEntry Entry;
5436 Entry.Node = Src;
5437 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5438 Args.push_back(Entry);
5439
5440 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005441 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005442 0, CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005443 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005444 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005445 setValue(&I, Result.first); // Pointers always fit in registers
5446 DAG.setRoot(Result.second);
5447}
5448
5449void SelectionDAGLowering::visitFree(FreeInst &I) {
5450 TargetLowering::ArgListTy Args;
5451 TargetLowering::ArgListEntry Entry;
5452 Entry.Node = getValue(I.getOperand(0));
5453 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5454 Args.push_back(Entry);
5455 MVT IntPtr = TLI.getPointerTy();
5456 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005457 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005458 0, CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005459 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005460 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005461 DAG.setRoot(Result.second);
5462}
5463
5464void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005465 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005466 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005467 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005468 DAG.getSrcValue(I.getOperand(1))));
5469}
5470
5471void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005472 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5473 getRoot(), getValue(I.getOperand(0)),
5474 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005475 setValue(&I, V);
5476 DAG.setRoot(V.getValue(1));
5477}
5478
5479void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005480 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005481 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005482 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005483 DAG.getSrcValue(I.getOperand(1))));
5484}
5485
5486void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005487 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005488 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005489 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005490 getValue(I.getOperand(2)),
5491 DAG.getSrcValue(I.getOperand(1)),
5492 DAG.getSrcValue(I.getOperand(2))));
5493}
5494
5495/// TargetLowering::LowerArguments - This is the default LowerArguments
5496/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005497/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005498/// integrated into SDISel.
5499void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005500 SmallVectorImpl<SDValue> &ArgValues,
5501 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005502 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5503 SmallVector<SDValue, 3+16> Ops;
5504 Ops.push_back(DAG.getRoot());
5505 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5506 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5507
5508 // Add one result value for each formal argument.
5509 SmallVector<MVT, 16> RetVals;
5510 unsigned j = 1;
5511 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5512 I != E; ++I, ++j) {
5513 SmallVector<MVT, 4> ValueVTs;
5514 ComputeValueVTs(*this, I->getType(), ValueVTs);
5515 for (unsigned Value = 0, NumValues = ValueVTs.size();
5516 Value != NumValues; ++Value) {
5517 MVT VT = ValueVTs[Value];
Owen Andersond1474d02009-07-09 17:57:24 +00005518 const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005519 ISD::ArgFlagsTy Flags;
5520 unsigned OriginalAlignment =
5521 getTargetData()->getABITypeAlignment(ArgTy);
5522
Devang Patel05988662008-09-25 21:00:45 +00005523 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005524 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005525 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005526 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005527 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005528 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005529 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005530 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005531 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005532 Flags.setByVal();
5533 const PointerType *Ty = cast<PointerType>(I->getType());
5534 const Type *ElementTy = Ty->getElementType();
5535 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005536 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005537 // For ByVal, alignment should be passed from FE. BE will guess if
5538 // this info is not there but there are cases it cannot get right.
5539 if (F.getParamAlignment(j))
5540 FrameAlign = F.getParamAlignment(j);
5541 Flags.setByValAlign(FrameAlign);
5542 Flags.setByValSize(FrameSize);
5543 }
Devang Patel05988662008-09-25 21:00:45 +00005544 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005545 Flags.setNest();
5546 Flags.setOrigAlign(OriginalAlignment);
5547
5548 MVT RegisterVT = getRegisterType(VT);
5549 unsigned NumRegs = getNumRegisters(VT);
5550 for (unsigned i = 0; i != NumRegs; ++i) {
5551 RetVals.push_back(RegisterVT);
5552 ISD::ArgFlagsTy MyFlags = Flags;
5553 if (NumRegs > 1 && i == 0)
5554 MyFlags.setSplit();
5555 // if it isn't first piece, alignment must be 1
5556 else if (i > 0)
5557 MyFlags.setOrigAlign(1);
5558 Ops.push_back(DAG.getArgFlags(MyFlags));
5559 }
5560 }
5561 }
5562
5563 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005564
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005565 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005566 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005567 DAG.getVTList(&RetVals[0], RetVals.size()),
5568 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005569
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005570 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5571 // allows exposing the loads that may be part of the argument access to the
5572 // first DAGCombiner pass.
5573 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005574
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005575 // The number of results should match up, except that the lowered one may have
5576 // an extra flag result.
5577 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5578 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5579 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5580 && "Lowering produced unexpected number of results!");
5581
5582 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5583 if (Result != TmpRes.getNode() && Result->use_empty()) {
5584 HandleSDNode Dummy(DAG.getRoot());
5585 DAG.RemoveDeadNode(Result);
5586 }
5587
5588 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005589
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005590 unsigned NumArgRegs = Result->getNumValues() - 1;
5591 DAG.setRoot(SDValue(Result, NumArgRegs));
5592
5593 // Set up the return result vector.
5594 unsigned i = 0;
5595 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005596 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005597 ++I, ++Idx) {
5598 SmallVector<MVT, 4> ValueVTs;
5599 ComputeValueVTs(*this, I->getType(), ValueVTs);
5600 for (unsigned Value = 0, NumValues = ValueVTs.size();
5601 Value != NumValues; ++Value) {
5602 MVT VT = ValueVTs[Value];
5603 MVT PartVT = getRegisterType(VT);
5604
5605 unsigned NumParts = getNumRegisters(VT);
5606 SmallVector<SDValue, 4> Parts(NumParts);
5607 for (unsigned j = 0; j != NumParts; ++j)
5608 Parts[j] = SDValue(Result, i++);
5609
5610 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005611 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005612 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005613 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005614 AssertOp = ISD::AssertZext;
5615
Dale Johannesen66978ee2009-01-31 02:22:37 +00005616 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5617 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005618 }
5619 }
5620 assert(i == NumArgRegs && "Argument register count mismatch!");
5621}
5622
5623
5624/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5625/// implementation, which just inserts an ISD::CALL node, which is later custom
5626/// lowered by the target to something concrete. FIXME: When all targets are
5627/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5628std::pair<SDValue, SDValue>
5629TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5630 bool RetSExt, bool RetZExt, bool isVarArg,
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005631 bool isInreg, unsigned NumFixedArgs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005632 unsigned CallingConv, bool isTailCall,
5633 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005634 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005635 assert((!isTailCall || PerformTailCallOpt) &&
5636 "isTailCall set when tail-call optimizations are disabled!");
5637
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005638 SmallVector<SDValue, 32> Ops;
5639 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005640 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005641
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005642 // Handle all of the outgoing arguments.
5643 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5644 SmallVector<MVT, 4> ValueVTs;
5645 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5646 for (unsigned Value = 0, NumValues = ValueVTs.size();
5647 Value != NumValues; ++Value) {
5648 MVT VT = ValueVTs[Value];
Owen Andersond1474d02009-07-09 17:57:24 +00005649 const Type *ArgTy = VT.getTypeForMVT(*DAG.getContext());
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005650 SDValue Op = SDValue(Args[i].Node.getNode(),
5651 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005652 ISD::ArgFlagsTy Flags;
5653 unsigned OriginalAlignment =
5654 getTargetData()->getABITypeAlignment(ArgTy);
5655
5656 if (Args[i].isZExt)
5657 Flags.setZExt();
5658 if (Args[i].isSExt)
5659 Flags.setSExt();
5660 if (Args[i].isInReg)
5661 Flags.setInReg();
5662 if (Args[i].isSRet)
5663 Flags.setSRet();
5664 if (Args[i].isByVal) {
5665 Flags.setByVal();
5666 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5667 const Type *ElementTy = Ty->getElementType();
5668 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sands777d2302009-05-09 07:06:46 +00005669 unsigned FrameSize = getTargetData()->getTypeAllocSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005670 // For ByVal, alignment should come from FE. BE will guess if this
5671 // info is not there but there are cases it cannot get right.
5672 if (Args[i].Alignment)
5673 FrameAlign = Args[i].Alignment;
5674 Flags.setByValAlign(FrameAlign);
5675 Flags.setByValSize(FrameSize);
5676 }
5677 if (Args[i].isNest)
5678 Flags.setNest();
5679 Flags.setOrigAlign(OriginalAlignment);
5680
5681 MVT PartVT = getRegisterType(VT);
5682 unsigned NumParts = getNumRegisters(VT);
5683 SmallVector<SDValue, 4> Parts(NumParts);
5684 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5685
5686 if (Args[i].isSExt)
5687 ExtendKind = ISD::SIGN_EXTEND;
5688 else if (Args[i].isZExt)
5689 ExtendKind = ISD::ZERO_EXTEND;
5690
Dale Johannesen66978ee2009-01-31 02:22:37 +00005691 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005692
5693 for (unsigned i = 0; i != NumParts; ++i) {
5694 // if it isn't first piece, alignment must be 1
5695 ISD::ArgFlagsTy MyFlags = Flags;
5696 if (NumParts > 1 && i == 0)
5697 MyFlags.setSplit();
5698 else if (i != 0)
5699 MyFlags.setOrigAlign(1);
5700
5701 Ops.push_back(Parts[i]);
5702 Ops.push_back(DAG.getArgFlags(MyFlags));
5703 }
5704 }
5705 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005706
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005707 // Figure out the result value types. We start by making a list of
5708 // the potentially illegal return value types.
5709 SmallVector<MVT, 4> LoweredRetTys;
5710 SmallVector<MVT, 4> RetTys;
5711 ComputeValueVTs(*this, RetTy, RetTys);
5712
5713 // Then we translate that to a list of legal types.
5714 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5715 MVT VT = RetTys[I];
5716 MVT RegisterVT = getRegisterType(VT);
5717 unsigned NumRegs = getNumRegisters(VT);
5718 for (unsigned i = 0; i != NumRegs; ++i)
5719 LoweredRetTys.push_back(RegisterVT);
5720 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005721
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005722 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005723
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005724 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005725 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005726 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005727 DAG.getVTList(&LoweredRetTys[0],
5728 LoweredRetTys.size()),
Tilmann Scheller6b61cd12009-07-03 06:44:53 +00005729 &Ops[0], Ops.size(), NumFixedArgs
Dale Johannesen86098bd2008-09-26 19:31:26 +00005730 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005731 Chain = Res.getValue(LoweredRetTys.size() - 1);
5732
5733 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005734 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005735 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5736
5737 if (RetSExt)
5738 AssertOp = ISD::AssertSext;
5739 else if (RetZExt)
5740 AssertOp = ISD::AssertZext;
5741
5742 SmallVector<SDValue, 4> ReturnValues;
5743 unsigned RegNo = 0;
5744 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5745 MVT VT = RetTys[I];
5746 MVT RegisterVT = getRegisterType(VT);
5747 unsigned NumRegs = getNumRegisters(VT);
5748 unsigned RegNoEnd = NumRegs + RegNo;
5749 SmallVector<SDValue, 4> Results;
5750 for (; RegNo != RegNoEnd; ++RegNo)
5751 Results.push_back(Res.getValue(RegNo));
5752 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005753 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005754 AssertOp);
5755 ReturnValues.push_back(ReturnValue);
5756 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005757 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005758 DAG.getVTList(&RetTys[0], RetTys.size()),
5759 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005760 }
5761
5762 return std::make_pair(Res, Chain);
5763}
5764
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005765void TargetLowering::LowerOperationWrapper(SDNode *N,
5766 SmallVectorImpl<SDValue> &Results,
5767 SelectionDAG &DAG) {
5768 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005769 if (Res.getNode())
5770 Results.push_back(Res);
5771}
5772
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005773SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005774 llvm_unreachable("LowerOperation not implemented for this target!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005775 return SDValue();
5776}
5777
5778
5779void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5780 SDValue Op = getValue(V);
5781 assert((Op.getOpcode() != ISD::CopyFromReg ||
5782 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5783 "Copy from a reg to the same reg!");
5784 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5785
5786 RegsForValue RFV(TLI, Reg, V->getType());
5787 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005788 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005789 PendingExports.push_back(Chain);
5790}
5791
5792#include "llvm/CodeGen/SelectionDAGISel.h"
5793
5794void SelectionDAGISel::
5795LowerArguments(BasicBlock *LLVMBB) {
5796 // If this is the entry block, emit arguments.
5797 Function &F = *LLVMBB->getParent();
5798 SDValue OldRoot = SDL->DAG.getRoot();
5799 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005800 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005801
5802 unsigned a = 0;
5803 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5804 AI != E; ++AI) {
5805 SmallVector<MVT, 4> ValueVTs;
5806 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5807 unsigned NumValues = ValueVTs.size();
5808 if (!AI->use_empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005809 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues,
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005810 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005811 // If this argument is live outside of the entry block, insert a copy from
5812 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohmanad62f532009-04-23 23:13:24 +00005813 SDL->CopyToExportRegsIfNeeded(AI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005814 }
5815 a += NumValues;
5816 }
5817
5818 // Finally, if the target has anything special to do, allow it to do so.
5819 // FIXME: this should insert code into the DAG!
5820 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5821}
5822
5823/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5824/// ensure constants are generated when needed. Remember the virtual registers
5825/// that need to be added to the Machine PHI nodes as input. We cannot just
5826/// directly add them, because expansion might result in multiple MBB's for one
5827/// BB. As such, the start of the BB might correspond to a different MBB than
5828/// the end.
5829///
5830void
5831SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5832 TerminatorInst *TI = LLVMBB->getTerminator();
5833
5834 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5835
5836 // Check successor nodes' PHI nodes that expect a constant to be available
5837 // from this block.
5838 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5839 BasicBlock *SuccBB = TI->getSuccessor(succ);
5840 if (!isa<PHINode>(SuccBB->begin())) continue;
5841 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005842
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005843 // If this terminator has multiple identical successors (common for
5844 // switches), only handle each succ once.
5845 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005846
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005847 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5848 PHINode *PN;
5849
5850 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5851 // nodes and Machine PHI nodes, but the incoming operands have not been
5852 // emitted yet.
5853 for (BasicBlock::iterator I = SuccBB->begin();
5854 (PN = dyn_cast<PHINode>(I)); ++I) {
5855 // Ignore dead phi's.
5856 if (PN->use_empty()) continue;
5857
5858 unsigned Reg;
5859 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5860
5861 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5862 unsigned &RegOut = SDL->ConstantsOut[C];
5863 if (RegOut == 0) {
5864 RegOut = FuncInfo->CreateRegForValue(C);
5865 SDL->CopyValueToVirtualRegister(C, RegOut);
5866 }
5867 Reg = RegOut;
5868 } else {
5869 Reg = FuncInfo->ValueMap[PHIOp];
5870 if (Reg == 0) {
5871 assert(isa<AllocaInst>(PHIOp) &&
5872 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5873 "Didn't codegen value into a register!??");
5874 Reg = FuncInfo->CreateRegForValue(PHIOp);
5875 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5876 }
5877 }
5878
5879 // Remember that this register needs to added to the machine PHI node as
5880 // the input for this MBB.
5881 SmallVector<MVT, 4> ValueVTs;
5882 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5883 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5884 MVT VT = ValueVTs[vti];
5885 unsigned NumRegisters = TLI.getNumRegisters(VT);
5886 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5887 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5888 Reg += NumRegisters;
5889 }
5890 }
5891 }
5892 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005893}
5894
Dan Gohman3df24e62008-09-03 23:12:08 +00005895/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5896/// supports legal types, and it emits MachineInstrs directly instead of
5897/// creating SelectionDAG nodes.
5898///
5899bool
5900SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5901 FastISel *F) {
5902 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005903
Dan Gohman3df24e62008-09-03 23:12:08 +00005904 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5905 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5906
5907 // Check successor nodes' PHI nodes that expect a constant to be available
5908 // from this block.
5909 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5910 BasicBlock *SuccBB = TI->getSuccessor(succ);
5911 if (!isa<PHINode>(SuccBB->begin())) continue;
5912 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005913
Dan Gohman3df24e62008-09-03 23:12:08 +00005914 // If this terminator has multiple identical successors (common for
5915 // switches), only handle each succ once.
5916 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005917
Dan Gohman3df24e62008-09-03 23:12:08 +00005918 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5919 PHINode *PN;
5920
5921 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5922 // nodes and Machine PHI nodes, but the incoming operands have not been
5923 // emitted yet.
5924 for (BasicBlock::iterator I = SuccBB->begin();
5925 (PN = dyn_cast<PHINode>(I)); ++I) {
5926 // Ignore dead phi's.
5927 if (PN->use_empty()) continue;
5928
5929 // Only handle legal types. Two interesting things to note here. First,
5930 // by bailing out early, we may leave behind some dead instructions,
5931 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5932 // own moves. Second, this check is necessary becuase FastISel doesn't
5933 // use CreateRegForValue to create registers, so it always creates
5934 // exactly one register for each non-void instruction.
5935 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5936 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005937 // Promote MVT::i1.
5938 if (VT == MVT::i1)
5939 VT = TLI.getTypeToTransformTo(VT);
5940 else {
5941 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5942 return false;
5943 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005944 }
5945
5946 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5947
5948 unsigned Reg = F->getRegForValue(PHIOp);
5949 if (Reg == 0) {
5950 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5951 return false;
5952 }
5953 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5954 }
5955 }
5956
5957 return true;
5958}