blob: 71f5d813144cfd2ffd70669a62568523e29529bb [file] [log] [blame]
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001//===-- SelectionDAGBuild.cpp - Selection-DAG building --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements routines for translating from LLVM IR into SelectionDAG IR.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
15#include "SelectionDAGBuild.h"
16#include "llvm/ADT/BitVector.h"
Dan Gohman5b229802008-09-04 20:49:27 +000017#include "llvm/ADT/SmallSet.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000018#include "llvm/Analysis/AliasAnalysis.h"
19#include "llvm/Constants.h"
20#include "llvm/CallingConv.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
23#include "llvm/GlobalVariable.h"
24#include "llvm/InlineAsm.h"
25#include "llvm/Instructions.h"
26#include "llvm/Intrinsics.h"
27#include "llvm/IntrinsicInst.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000028#include "llvm/Module.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000029#include "llvm/CodeGen/FastISel.h"
30#include "llvm/CodeGen/GCStrategy.h"
31#include "llvm/CodeGen/GCMetadata.h"
32#include "llvm/CodeGen/MachineFunction.h"
33#include "llvm/CodeGen/MachineFrameInfo.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
35#include "llvm/CodeGen/MachineJumpTableInfo.h"
36#include "llvm/CodeGen/MachineModuleInfo.h"
37#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000038#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000039#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel83489bb2009-01-13 00:35:13 +000040#include "llvm/CodeGen/DwarfWriter.h"
41#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000042#include "llvm/Target/TargetRegisterInfo.h"
43#include "llvm/Target/TargetData.h"
44#include "llvm/Target/TargetFrameInfo.h"
45#include "llvm/Target/TargetInstrInfo.h"
Dale Johannesen49de9822009-02-05 01:49:45 +000046#include "llvm/Target/TargetIntrinsicInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000047#include "llvm/Target/TargetLowering.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000048#include "llvm/Target/TargetOptions.h"
49#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000050#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000051#include "llvm/Support/Debug.h"
52#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000053#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000054#include <algorithm>
55using namespace llvm;
56
Dale Johannesen601d3c02008-09-05 01:48:15 +000057/// LimitFloatPrecision - Generate low-precision inline sequences for
58/// some float libcalls (6, 8 or 12 bits).
59static unsigned LimitFloatPrecision;
60
61static cl::opt<unsigned, true>
62LimitFPPrecision("limit-float-precision",
63 cl::desc("Generate low-precision inline sequences "
64 "for some float libcalls"),
65 cl::location(LimitFloatPrecision),
66 cl::init(0));
67
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000068/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
Dan Gohman2c91d102009-01-06 22:53:52 +000069/// of insertvalue or extractvalue indices that identify a member, return
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000070/// the linearized index of the start of the member.
71///
72static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
73 const unsigned *Indices,
74 const unsigned *IndicesEnd,
75 unsigned CurIndex = 0) {
76 // Base case: We're done.
77 if (Indices && Indices == IndicesEnd)
78 return CurIndex;
79
80 // Given a struct type, recursively traverse the elements.
81 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
82 for (StructType::element_iterator EB = STy->element_begin(),
83 EI = EB,
84 EE = STy->element_end();
85 EI != EE; ++EI) {
86 if (Indices && *Indices == unsigned(EI - EB))
87 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
88 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
89 }
Dan Gohman2c91d102009-01-06 22:53:52 +000090 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000091 }
92 // Given an array type, recursively traverse the elements.
93 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
94 const Type *EltTy = ATy->getElementType();
95 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
96 if (Indices && *Indices == i)
97 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
98 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
99 }
Dan Gohman2c91d102009-01-06 22:53:52 +0000100 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000101 }
102 // We haven't found the type we're looking for, so keep searching.
103 return CurIndex + 1;
104}
105
106/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
107/// MVTs that represent all the individual underlying
108/// non-aggregate types that comprise it.
109///
110/// If Offsets is non-null, it points to a vector to be filled in
111/// with the in-memory offsets of each of the individual values.
112///
113static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
114 SmallVectorImpl<MVT> &ValueVTs,
115 SmallVectorImpl<uint64_t> *Offsets = 0,
116 uint64_t StartingOffset = 0) {
117 // Given a struct type, recursively traverse the elements.
118 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
119 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
120 for (StructType::element_iterator EB = STy->element_begin(),
121 EI = EB,
122 EE = STy->element_end();
123 EI != EE; ++EI)
124 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
125 StartingOffset + SL->getElementOffset(EI - EB));
126 return;
127 }
128 // Given an array type, recursively traverse the elements.
129 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
130 const Type *EltTy = ATy->getElementType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000131 uint64_t EltSize = TLI.getTargetData()->getTypePaddedSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000132 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
133 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
134 StartingOffset + i * EltSize);
135 return;
136 }
Dan Gohman5e5558b2009-04-23 22:50:03 +0000137 // Interpret void as zero return values.
138 if (Ty == Type::VoidTy)
139 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000140 // Base case: we can get an MVT for this LLVM IR type.
141 ValueVTs.push_back(TLI.getValueType(Ty));
142 if (Offsets)
143 Offsets->push_back(StartingOffset);
144}
145
Dan Gohman2a7c6712008-09-03 23:18:39 +0000146namespace llvm {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000147 /// RegsForValue - This struct represents the registers (physical or virtual)
148 /// that a particular set of values is assigned, and the type information about
149 /// the value. The most common situation is to represent one value at a time,
150 /// but struct or array values are handled element-wise as multiple values.
151 /// The splitting of aggregates is performed recursively, so that we never
152 /// have aggregate-typed registers. The values at this point do not necessarily
153 /// have legal types, so each value may require one or more registers of some
154 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000155 ///
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000156 struct VISIBILITY_HIDDEN RegsForValue {
157 /// TLI - The TargetLowering object.
158 ///
159 const TargetLowering *TLI;
160
161 /// ValueVTs - The value types of the values, which may not be legal, and
162 /// may need be promoted or synthesized from one or more registers.
163 ///
164 SmallVector<MVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000165
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000166 /// RegVTs - The value types of the registers. This is the same size as
167 /// ValueVTs and it records, for each value, what the type of the assigned
168 /// register or registers are. (Individual values are never synthesized
169 /// from more than one type of register.)
170 ///
171 /// With virtual registers, the contents of RegVTs is redundant with TLI's
172 /// getRegisterType member function, however when with physical registers
173 /// it is necessary to have a separate record of the types.
174 ///
175 SmallVector<MVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000176
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000177 /// Regs - This list holds the registers assigned to the values.
178 /// Each legal or promoted value requires one register, and each
179 /// expanded value requires multiple registers.
180 ///
181 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000182
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000183 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000184
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000185 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000186 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000187 MVT regvt, MVT valuevt)
188 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
189 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000190 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000191 const SmallVector<MVT, 4> &regvts,
192 const SmallVector<MVT, 4> &valuevts)
193 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
194 RegsForValue(const TargetLowering &tli,
195 unsigned Reg, const Type *Ty) : TLI(&tli) {
196 ComputeValueVTs(tli, Ty, ValueVTs);
197
198 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
199 MVT ValueVT = ValueVTs[Value];
200 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
201 MVT RegisterVT = TLI->getRegisterType(ValueVT);
202 for (unsigned i = 0; i != NumRegs; ++i)
203 Regs.push_back(Reg + i);
204 RegVTs.push_back(RegisterVT);
205 Reg += NumRegs;
206 }
207 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000208
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000209 /// append - Add the specified values to this one.
210 void append(const RegsForValue &RHS) {
211 TLI = RHS.TLI;
212 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
213 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
214 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
215 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000216
217
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000218 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000219 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000220 /// Chain/Flag as the input and updates them for the output Chain/Flag.
221 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000222 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000223 SDValue &Chain, SDValue *Flag) const;
224
225 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000226 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000227 /// Chain/Flag as the input and updates them for the output Chain/Flag.
228 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000229 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000230 SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000231
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000232 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Evan Cheng697cbbf2009-03-20 18:03:34 +0000233 /// operand list. This adds the code marker, matching input operand index
234 /// (if applicable), and includes the number of values added into it.
235 void AddInlineAsmOperands(unsigned Code,
236 bool HasMatching, unsigned MatchingIdx,
237 SelectionDAG &DAG, std::vector<SDValue> &Ops) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000238 };
239}
240
241/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000242/// PHI nodes or outside of the basic block that defines it, or used by a
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000243/// switch or atomic instruction, which may expand to multiple basic blocks.
244static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
245 if (isa<PHINode>(I)) return true;
246 BasicBlock *BB = I->getParent();
247 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Dan Gohman8e5c0da2009-04-09 02:33:36 +0000248 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000249 return true;
250 return false;
251}
252
253/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
254/// entry block, return true. This includes arguments used by switches, since
255/// the switch may expand into multiple basic blocks.
256static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) {
257 // With FastISel active, we may be splitting blocks, so force creation
258 // of virtual registers for all non-dead arguments.
Dan Gohman33134c42008-09-25 17:05:24 +0000259 // Don't force virtual registers for byval arguments though, because
260 // fast-isel can't handle those in all cases.
261 if (EnableFastISel && !A->hasByValAttr())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000262 return A->use_empty();
263
264 BasicBlock *Entry = A->getParent()->begin();
265 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
266 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
267 return false; // Use not in entry block.
268 return true;
269}
270
271FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli)
272 : TLI(tli) {
273}
274
275void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000276 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000277 bool EnableFastISel) {
278 Fn = &fn;
279 MF = &mf;
280 RegInfo = &MF->getRegInfo();
281
282 // Create a vreg for each argument register that is not dead and is used
283 // outside of the entry block for the function.
284 for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
285 AI != E; ++AI)
286 if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
287 InitializeRegForValue(AI);
288
289 // Initialize the mapping of values to registers. This is only set up for
290 // instruction values that are used outside of the block that defines
291 // them.
292 Function::iterator BB = Fn->begin(), EB = Fn->end();
293 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
294 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
295 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
296 const Type *Ty = AI->getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000297 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000298 unsigned Align =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000299 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
300 AI->getAlignment());
301
302 TySize *= CUI->getZExtValue(); // Get total allocated size.
303 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
304 StaticAllocaMap[AI] =
305 MF->getFrameInfo()->CreateStackObject(TySize, Align);
306 }
307
308 for (; BB != EB; ++BB)
309 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
310 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
311 if (!isa<AllocaInst>(I) ||
312 !StaticAllocaMap.count(cast<AllocaInst>(I)))
313 InitializeRegForValue(I);
314
315 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
316 // also creates the initial PHI MachineInstrs, though none of the input
317 // operands are populated.
318 for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) {
319 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
320 MBBMap[BB] = MBB;
321 MF->push_back(MBB);
322
323 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
324 // appropriate.
325 PHINode *PN;
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000326 DebugLoc DL;
327 for (BasicBlock::iterator
328 I = BB->begin(), E = BB->end(); I != E; ++I) {
329 if (CallInst *CI = dyn_cast<CallInst>(I)) {
330 if (Function *F = CI->getCalledFunction()) {
331 switch (F->getIntrinsicID()) {
332 default: break;
333 case Intrinsic::dbg_stoppoint: {
334 DwarfWriter *DW = DAG.getDwarfWriter();
335 DbgStopPointInst *SPI = cast<DbgStopPointInst>(I);
336
Bill Wendling98a366d2009-04-29 23:29:43 +0000337 if (DW && DW->ValidDebugInfo(SPI->getContext(),
338 CodeGenOpt::Default)) {
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000339 DICompileUnit CU(cast<GlobalVariable>(SPI->getContext()));
Bill Wendling0582ae92009-03-13 04:39:26 +0000340 std::string Dir, FN;
341 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
342 CU.getFilename(FN));
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000343 unsigned idx = MF->getOrCreateDebugLocID(SrcFile,
Scott Michelfdc40a02009-02-17 22:15:04 +0000344 SPI->getLine(),
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000345 SPI->getColumn());
346 DL = DebugLoc::get(idx);
347 }
348
349 break;
350 }
351 case Intrinsic::dbg_func_start: {
352 DwarfWriter *DW = DAG.getDwarfWriter();
353 if (DW) {
354 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
355 Value *SP = FSI->getSubprogram();
356
Bill Wendling98a366d2009-04-29 23:29:43 +0000357 if (DW->ValidDebugInfo(SP, CodeGenOpt::Default)) {
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000358 DISubprogram Subprogram(cast<GlobalVariable>(SP));
359 DICompileUnit CU(Subprogram.getCompileUnit());
Bill Wendling0582ae92009-03-13 04:39:26 +0000360 std::string Dir, FN;
361 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
362 CU.getFilename(FN));
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000363 unsigned Line = Subprogram.getLineNumber();
364 DL = DebugLoc::get(MF->getOrCreateDebugLocID(SrcFile, Line, 0));
365 }
366 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000367
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000368 break;
369 }
370 }
371 }
372 }
373
374 PN = dyn_cast<PHINode>(I);
375 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000376
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000377 unsigned PHIReg = ValueMap[PN];
378 assert(PHIReg && "PHI node does not have an assigned virtual register!");
379
380 SmallVector<MVT, 4> ValueVTs;
381 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
382 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
383 MVT VT = ValueVTs[vti];
384 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000385 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000386 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000387 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000388 PHIReg += NumRegisters;
389 }
390 }
391 }
392}
393
394unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
395 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
396}
397
398/// CreateRegForValue - Allocate the appropriate number of virtual registers of
399/// the correctly promoted or expanded types. Assign these registers
400/// consecutive vreg numbers and return the first assigned number.
401///
402/// In the case that the given value has struct or array type, this function
403/// will assign registers for each member or element.
404///
405unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
406 SmallVector<MVT, 4> ValueVTs;
407 ComputeValueVTs(TLI, V->getType(), ValueVTs);
408
409 unsigned FirstReg = 0;
410 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
411 MVT ValueVT = ValueVTs[Value];
412 MVT RegisterVT = TLI.getRegisterType(ValueVT);
413
414 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
415 for (unsigned i = 0; i != NumRegs; ++i) {
416 unsigned R = MakeReg(RegisterVT);
417 if (!FirstReg) FirstReg = R;
418 }
419 }
420 return FirstReg;
421}
422
423/// getCopyFromParts - Create a value that contains the specified legal parts
424/// combined into the value they represent. If the parts combine to a type
425/// larger then ValueVT then AssertOp can be used to specify whether the extra
426/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
427/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000428static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
429 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000430 unsigned NumParts, MVT PartVT, MVT ValueVT,
431 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000432 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000433 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000434 SDValue Val = Parts[0];
435
436 if (NumParts > 1) {
437 // Assemble the value from multiple parts.
438 if (!ValueVT.isVector()) {
439 unsigned PartBits = PartVT.getSizeInBits();
440 unsigned ValueBits = ValueVT.getSizeInBits();
441
442 // Assemble the power of 2 part.
443 unsigned RoundParts = NumParts & (NumParts - 1) ?
444 1 << Log2_32(NumParts) : NumParts;
445 unsigned RoundBits = PartBits * RoundParts;
446 MVT RoundVT = RoundBits == ValueBits ?
447 ValueVT : MVT::getIntegerVT(RoundBits);
448 SDValue Lo, Hi;
449
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000450 MVT HalfVT = ValueVT.isInteger() ?
451 MVT::getIntegerVT(RoundBits/2) :
452 MVT::getFloatingPointVT(RoundBits/2);
453
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000454 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000455 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
456 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000457 PartVT, HalfVT);
458 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000459 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
460 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000461 }
462 if (TLI.isBigEndian())
463 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000464 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000465
466 if (RoundParts < NumParts) {
467 // Assemble the trailing non-power-of-2 part.
468 unsigned OddParts = NumParts - RoundParts;
469 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Scott Michelfdc40a02009-02-17 22:15:04 +0000470 Hi = getCopyFromParts(DAG, dl,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000471 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000472
473 // Combine the round and odd parts.
474 Lo = Val;
475 if (TLI.isBigEndian())
476 std::swap(Lo, Hi);
477 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000478 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
479 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000480 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000481 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000482 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
483 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000484 }
485 } else {
486 // Handle a multi-element vector.
487 MVT IntermediateVT, RegisterVT;
488 unsigned NumIntermediates;
489 unsigned NumRegs =
490 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
491 RegisterVT);
492 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
493 NumParts = NumRegs; // Silence a compiler warning.
494 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
495 assert(RegisterVT == Parts[0].getValueType() &&
496 "Part type doesn't match part!");
497
498 // Assemble the parts into intermediate operands.
499 SmallVector<SDValue, 8> Ops(NumIntermediates);
500 if (NumIntermediates == NumParts) {
501 // If the register was not expanded, truncate or copy the value,
502 // as appropriate.
503 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000504 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000505 PartVT, IntermediateVT);
506 } else if (NumParts > 0) {
507 // If the intermediate type was expanded, build the intermediate operands
508 // from the parts.
509 assert(NumParts % NumIntermediates == 0 &&
510 "Must expand into a divisible number of parts!");
511 unsigned Factor = NumParts / NumIntermediates;
512 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000513 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000514 PartVT, IntermediateVT);
515 }
516
517 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
518 // operands.
519 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000520 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000521 ValueVT, &Ops[0], NumIntermediates);
522 }
523 }
524
525 // There is now one part, held in Val. Correct it to match ValueVT.
526 PartVT = Val.getValueType();
527
528 if (PartVT == ValueVT)
529 return Val;
530
531 if (PartVT.isVector()) {
532 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000533 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000534 }
535
536 if (ValueVT.isVector()) {
537 assert(ValueVT.getVectorElementType() == PartVT &&
538 ValueVT.getVectorNumElements() == 1 &&
539 "Only trivial scalar-to-vector conversions should get here!");
Evan Chenga87008d2009-02-25 22:49:59 +0000540 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000541 }
542
543 if (PartVT.isInteger() &&
544 ValueVT.isInteger()) {
545 if (ValueVT.bitsLT(PartVT)) {
546 // For a truncate, see if we have any information to
547 // indicate whether the truncated bits will always be
548 // zero or sign-extension.
549 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000550 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000551 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000552 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000553 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000554 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000555 }
556 }
557
558 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
559 if (ValueVT.bitsLT(Val.getValueType()))
560 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000561 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000562 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000563 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000564 }
565
566 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000567 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000568
569 assert(0 && "Unknown mismatch!");
570 return SDValue();
571}
572
573/// getCopyToParts - Create a series of nodes that contain the specified value
574/// split into legal parts. If the parts contain more bits than Val, then, for
575/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000576static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Chris Lattner01426e12008-10-21 00:45:36 +0000577 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000578 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000579 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000580 MVT PtrVT = TLI.getPointerTy();
581 MVT ValueVT = Val.getValueType();
582 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000583 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000584 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
585
586 if (!NumParts)
587 return;
588
589 if (!ValueVT.isVector()) {
590 if (PartVT == ValueVT) {
591 assert(NumParts == 1 && "No-op copy with multiple parts!");
592 Parts[0] = Val;
593 return;
594 }
595
596 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
597 // If the parts cover more bits than the value has, promote the value.
598 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
599 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000600 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000601 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
602 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000603 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000604 } else {
605 assert(0 && "Unknown mismatch!");
606 }
607 } else if (PartBits == ValueVT.getSizeInBits()) {
608 // Different types of the same size.
609 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000610 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000611 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
612 // If the parts cover less bits than value has, truncate the value.
613 if (PartVT.isInteger() && ValueVT.isInteger()) {
614 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000615 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000616 } else {
617 assert(0 && "Unknown mismatch!");
618 }
619 }
620
621 // The value may have changed - recompute ValueVT.
622 ValueVT = Val.getValueType();
623 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
624 "Failed to tile the value with PartVT!");
625
626 if (NumParts == 1) {
627 assert(PartVT == ValueVT && "Type conversion failed!");
628 Parts[0] = Val;
629 return;
630 }
631
632 // Expand the value into multiple parts.
633 if (NumParts & (NumParts - 1)) {
634 // The number of parts is not a power of 2. Split off and copy the tail.
635 assert(PartVT.isInteger() && ValueVT.isInteger() &&
636 "Do not know what to expand to!");
637 unsigned RoundParts = 1 << Log2_32(NumParts);
638 unsigned RoundBits = RoundParts * PartBits;
639 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000640 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000641 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000642 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000643 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000644 if (TLI.isBigEndian())
645 // The odd parts were reversed by getCopyToParts - unreverse them.
646 std::reverse(Parts + RoundParts, Parts + NumParts);
647 NumParts = RoundParts;
648 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000649 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000650 }
651
652 // The number of parts is a power of 2. Repeatedly bisect the value using
653 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000654 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000655 MVT::getIntegerVT(ValueVT.getSizeInBits()),
656 Val);
657 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
658 for (unsigned i = 0; i < NumParts; i += StepSize) {
659 unsigned ThisBits = StepSize * PartBits / 2;
660 MVT ThisVT = MVT::getIntegerVT (ThisBits);
661 SDValue &Part0 = Parts[i];
662 SDValue &Part1 = Parts[i+StepSize/2];
663
Scott Michelfdc40a02009-02-17 22:15:04 +0000664 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000665 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000666 DAG.getConstant(1, PtrVT));
Scott Michelfdc40a02009-02-17 22:15:04 +0000667 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000668 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000669 DAG.getConstant(0, PtrVT));
670
671 if (ThisBits == PartBits && ThisVT != PartVT) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000672 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000673 PartVT, Part0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000674 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000675 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000676 }
677 }
678 }
679
680 if (TLI.isBigEndian())
Dale Johannesen8a36f502009-02-25 22:39:13 +0000681 std::reverse(Parts, Parts + OrigNumParts);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000682
683 return;
684 }
685
686 // Vector ValueVT.
687 if (NumParts == 1) {
688 if (PartVT != ValueVT) {
689 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000690 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000691 } else {
692 assert(ValueVT.getVectorElementType() == PartVT &&
693 ValueVT.getVectorNumElements() == 1 &&
694 "Only trivial vector-to-scalar conversions should get here!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000695 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000696 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000697 DAG.getConstant(0, PtrVT));
698 }
699 }
700
701 Parts[0] = Val;
702 return;
703 }
704
705 // Handle a multi-element vector.
706 MVT IntermediateVT, RegisterVT;
707 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000708 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000709 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
710 RegisterVT);
711 unsigned NumElements = ValueVT.getVectorNumElements();
712
713 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
714 NumParts = NumRegs; // Silence a compiler warning.
715 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
716
717 // Split the vector into intermediate operands.
718 SmallVector<SDValue, 8> Ops(NumIntermediates);
719 for (unsigned i = 0; i != NumIntermediates; ++i)
720 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000721 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000722 IntermediateVT, Val,
723 DAG.getConstant(i * (NumElements / NumIntermediates),
724 PtrVT));
725 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000726 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000727 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000728 DAG.getConstant(i, PtrVT));
729
730 // Split the intermediate operands into legal parts.
731 if (NumParts == NumIntermediates) {
732 // If the register was not expanded, promote or copy the value,
733 // as appropriate.
734 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000735 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000736 } else if (NumParts > 0) {
737 // If the intermediate type was expanded, split each the value into
738 // legal parts.
739 assert(NumParts % NumIntermediates == 0 &&
740 "Must expand into a divisible number of parts!");
741 unsigned Factor = NumParts / NumIntermediates;
742 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000743 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000744 }
745}
746
747
748void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
749 AA = &aa;
750 GFI = gfi;
751 TD = DAG.getTarget().getTargetData();
752}
753
754/// clear - Clear out the curret SelectionDAG and the associated
755/// state and prepare this SelectionDAGLowering object to be used
756/// for a new block. This doesn't clear out information about
757/// additional blocks that are needed to complete switch lowering
758/// or PHI node updating; that information is cleared out as it is
759/// consumed.
760void SelectionDAGLowering::clear() {
761 NodeMap.clear();
762 PendingLoads.clear();
763 PendingExports.clear();
764 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000765 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000766}
767
768/// getRoot - Return the current virtual root of the Selection DAG,
769/// flushing any PendingLoad items. This must be done before emitting
770/// a store or any other node that may need to be ordered after any
771/// prior load instructions.
772///
773SDValue SelectionDAGLowering::getRoot() {
774 if (PendingLoads.empty())
775 return DAG.getRoot();
776
777 if (PendingLoads.size() == 1) {
778 SDValue Root = PendingLoads[0];
779 DAG.setRoot(Root);
780 PendingLoads.clear();
781 return Root;
782 }
783
784 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000785 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000786 &PendingLoads[0], PendingLoads.size());
787 PendingLoads.clear();
788 DAG.setRoot(Root);
789 return Root;
790}
791
792/// getControlRoot - Similar to getRoot, but instead of flushing all the
793/// PendingLoad items, flush all the PendingExports items. It is necessary
794/// to do this before emitting a terminator instruction.
795///
796SDValue SelectionDAGLowering::getControlRoot() {
797 SDValue Root = DAG.getRoot();
798
799 if (PendingExports.empty())
800 return Root;
801
802 // Turn all of the CopyToReg chains into one factored node.
803 if (Root.getOpcode() != ISD::EntryToken) {
804 unsigned i = 0, e = PendingExports.size();
805 for (; i != e; ++i) {
806 assert(PendingExports[i].getNode()->getNumOperands() > 1);
807 if (PendingExports[i].getNode()->getOperand(0) == Root)
808 break; // Don't add the root if we already indirectly depend on it.
809 }
810
811 if (i == e)
812 PendingExports.push_back(Root);
813 }
814
Dale Johannesen66978ee2009-01-31 02:22:37 +0000815 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000816 &PendingExports[0],
817 PendingExports.size());
818 PendingExports.clear();
819 DAG.setRoot(Root);
820 return Root;
821}
822
823void SelectionDAGLowering::visit(Instruction &I) {
824 visit(I.getOpcode(), I);
825}
826
827void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
828 // Note: this doesn't use InstVisitor, because it has to work with
829 // ConstantExpr's in addition to instructions.
830 switch (Opcode) {
831 default: assert(0 && "Unknown instruction type encountered!");
832 abort();
833 // Build the switch statement using the Instruction.def file.
834#define HANDLE_INST(NUM, OPCODE, CLASS) \
835 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
836#include "llvm/Instruction.def"
837 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000838}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000839
840void SelectionDAGLowering::visitAdd(User &I) {
841 if (I.getType()->isFPOrFPVector())
842 visitBinary(I, ISD::FADD);
843 else
844 visitBinary(I, ISD::ADD);
845}
846
847void SelectionDAGLowering::visitMul(User &I) {
848 if (I.getType()->isFPOrFPVector())
849 visitBinary(I, ISD::FMUL);
850 else
851 visitBinary(I, ISD::MUL);
852}
853
854SDValue SelectionDAGLowering::getValue(const Value *V) {
855 SDValue &N = NodeMap[V];
856 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000857
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000858 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
859 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000860
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000861 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000862 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000863
864 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
865 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000866
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000867 if (isa<ConstantPointerNull>(C))
868 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000869
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000870 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000871 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000872
Nate Begeman9008ca62009-04-27 18:41:29 +0000873 if (isa<UndefValue>(C) && !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000874 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000875
876 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
877 visit(CE->getOpcode(), *CE);
878 SDValue N1 = NodeMap[V];
879 assert(N1.getNode() && "visit didn't populate the ValueMap!");
880 return N1;
881 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000882
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000883 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
884 SmallVector<SDValue, 4> Constants;
885 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
886 OI != OE; ++OI) {
887 SDNode *Val = getValue(*OI).getNode();
888 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
889 Constants.push_back(SDValue(Val, i));
890 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000891 return DAG.getMergeValues(&Constants[0], Constants.size(),
892 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000893 }
894
895 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
896 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
897 "Unknown struct or array constant!");
898
899 SmallVector<MVT, 4> ValueVTs;
900 ComputeValueVTs(TLI, C->getType(), ValueVTs);
901 unsigned NumElts = ValueVTs.size();
902 if (NumElts == 0)
903 return SDValue(); // empty struct
904 SmallVector<SDValue, 4> Constants(NumElts);
905 for (unsigned i = 0; i != NumElts; ++i) {
906 MVT EltVT = ValueVTs[i];
907 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000908 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000909 else if (EltVT.isFloatingPoint())
910 Constants[i] = DAG.getConstantFP(0, EltVT);
911 else
912 Constants[i] = DAG.getConstant(0, EltVT);
913 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000914 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000915 }
916
917 const VectorType *VecTy = cast<VectorType>(V->getType());
918 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000919
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000920 // Now that we know the number and type of the elements, get that number of
921 // elements into the Ops array based on what kind of constant it is.
922 SmallVector<SDValue, 16> Ops;
923 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
924 for (unsigned i = 0; i != NumElements; ++i)
925 Ops.push_back(getValue(CP->getOperand(i)));
926 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000927 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000928 MVT EltVT = TLI.getValueType(VecTy->getElementType());
929
930 SDValue Op;
Nate Begeman9008ca62009-04-27 18:41:29 +0000931 if (EltVT.isFloatingPoint())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000932 Op = DAG.getConstantFP(0, EltVT);
933 else
934 Op = DAG.getConstant(0, EltVT);
935 Ops.assign(NumElements, Op);
936 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000937
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000938 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000939 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
940 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000941 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000942
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000943 // If this is a static alloca, generate it as the frameindex instead of
944 // computation.
945 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
946 DenseMap<const AllocaInst*, int>::iterator SI =
947 FuncInfo.StaticAllocaMap.find(AI);
948 if (SI != FuncInfo.StaticAllocaMap.end())
949 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
950 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000951
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000952 unsigned InReg = FuncInfo.ValueMap[V];
953 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000954
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000955 RegsForValue RFV(TLI, InReg, V->getType());
956 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000957 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000958}
959
960
961void SelectionDAGLowering::visitRet(ReturnInst &I) {
962 if (I.getNumOperands() == 0) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000963 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000964 MVT::Other, getControlRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000965 return;
966 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000967
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000968 SmallVector<SDValue, 8> NewValues;
969 NewValues.push_back(getControlRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000970 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000971 SmallVector<MVT, 4> ValueVTs;
972 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000973 unsigned NumValues = ValueVTs.size();
974 if (NumValues == 0) continue;
975
976 SDValue RetOp = getValue(I.getOperand(i));
977 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000978 MVT VT = ValueVTs[j];
979
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000980 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000981
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000982 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000983 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000984 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000985 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000986 ExtendKind = ISD::ZERO_EXTEND;
987
Evan Cheng3927f432009-03-25 20:20:11 +0000988 // FIXME: C calling convention requires the return type to be promoted to
989 // at least 32-bit. But this is not necessary for non-C calling
990 // conventions. The frontend should mark functions whose return values
991 // require promoting with signext or zeroext attributes.
992 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
993 MVT MinVT = TLI.getRegisterType(MVT::i32);
994 if (VT.bitsLT(MinVT))
995 VT = MinVT;
996 }
997
998 unsigned NumParts = TLI.getNumRegisters(VT);
999 MVT PartVT = TLI.getRegisterType(VT);
1000 SmallVector<SDValue, 4> Parts(NumParts);
Dale Johannesen66978ee2009-01-31 02:22:37 +00001001 getCopyToParts(DAG, getCurDebugLoc(),
1002 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001003 &Parts[0], NumParts, PartVT, ExtendKind);
1004
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001005 // 'inreg' on function refers to return value
1006 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +00001007 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001008 Flags.setInReg();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001009 for (unsigned i = 0; i < NumParts; ++i) {
1010 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001011 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001012 }
1013 }
1014 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00001015 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001016 &NewValues[0], NewValues.size()));
1017}
1018
Dan Gohmanad62f532009-04-23 23:13:24 +00001019/// CopyToExportRegsIfNeeded - If the given value has virtual registers
1020/// created for it, emit nodes to copy the value into the virtual
1021/// registers.
1022void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) {
1023 if (!V->use_empty()) {
1024 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V);
1025 if (VMI != FuncInfo.ValueMap.end())
1026 CopyValueToVirtualRegister(V, VMI->second);
1027 }
1028}
1029
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001030/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1031/// the current basic block, add it to ValueMap now so that we'll get a
1032/// CopyTo/FromReg.
1033void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1034 // No need to export constants.
1035 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001036
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001037 // Already exported?
1038 if (FuncInfo.isExportedInst(V)) return;
1039
1040 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1041 CopyValueToVirtualRegister(V, Reg);
1042}
1043
1044bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1045 const BasicBlock *FromBB) {
1046 // The operands of the setcc have to be in this block. We don't know
1047 // how to export them from some other block.
1048 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1049 // Can export from current BB.
1050 if (VI->getParent() == FromBB)
1051 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001052
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001053 // Is already exported, noop.
1054 return FuncInfo.isExportedInst(V);
1055 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001056
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001057 // If this is an argument, we can export it if the BB is the entry block or
1058 // if it is already exported.
1059 if (isa<Argument>(V)) {
1060 if (FromBB == &FromBB->getParent()->getEntryBlock())
1061 return true;
1062
1063 // Otherwise, can only export this if it is already exported.
1064 return FuncInfo.isExportedInst(V);
1065 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001066
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001067 // Otherwise, constants can always be exported.
1068 return true;
1069}
1070
1071static bool InBlock(const Value *V, const BasicBlock *BB) {
1072 if (const Instruction *I = dyn_cast<Instruction>(V))
1073 return I->getParent() == BB;
1074 return true;
1075}
1076
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001077/// getFCmpCondCode - Return the ISD condition code corresponding to
1078/// the given LLVM IR floating-point condition code. This includes
1079/// consideration of global floating-point math flags.
1080///
1081static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1082 ISD::CondCode FPC, FOC;
1083 switch (Pred) {
1084 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1085 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1086 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1087 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1088 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1089 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1090 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1091 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1092 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1093 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1094 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1095 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1096 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1097 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1098 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1099 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1100 default:
1101 assert(0 && "Invalid FCmp predicate opcode!");
1102 FOC = FPC = ISD::SETFALSE;
1103 break;
1104 }
1105 if (FiniteOnlyFPMath())
1106 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001107 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001108 return FPC;
1109}
1110
1111/// getICmpCondCode - Return the ISD condition code corresponding to
1112/// the given LLVM IR integer condition code.
1113///
1114static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1115 switch (Pred) {
1116 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1117 case ICmpInst::ICMP_NE: return ISD::SETNE;
1118 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1119 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1120 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1121 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1122 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1123 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1124 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1125 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1126 default:
1127 assert(0 && "Invalid ICmp predicate opcode!");
1128 return ISD::SETNE;
1129 }
1130}
1131
Dan Gohmanc2277342008-10-17 21:16:08 +00001132/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1133/// This function emits a branch and is used at the leaves of an OR or an
1134/// AND operator tree.
1135///
1136void
1137SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1138 MachineBasicBlock *TBB,
1139 MachineBasicBlock *FBB,
1140 MachineBasicBlock *CurBB) {
1141 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001142
Dan Gohmanc2277342008-10-17 21:16:08 +00001143 // If the leaf of the tree is a comparison, merge the condition into
1144 // the caseblock.
1145 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1146 // The operands of the cmp have to be in this block. We don't know
1147 // how to export them from some other block. If this is the first block
1148 // of the sequence, no exporting is needed.
1149 if (CurBB == CurMBB ||
1150 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1151 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001152 ISD::CondCode Condition;
1153 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001154 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001155 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001156 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001157 } else {
1158 Condition = ISD::SETEQ; // silence warning.
1159 assert(0 && "Unknown compare instruction");
1160 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001161
1162 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001163 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1164 SwitchCases.push_back(CB);
1165 return;
1166 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001167 }
1168
1169 // Create a CaseBlock record representing this branch.
1170 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1171 NULL, TBB, FBB, CurBB);
1172 SwitchCases.push_back(CB);
1173}
1174
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001175/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001176void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1177 MachineBasicBlock *TBB,
1178 MachineBasicBlock *FBB,
1179 MachineBasicBlock *CurBB,
1180 unsigned Opc) {
1181 // If this node is not part of the or/and tree, emit it as a branch.
1182 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001183 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001184 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1185 BOp->getParent() != CurBB->getBasicBlock() ||
1186 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1187 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1188 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001189 return;
1190 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001191
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001192 // Create TmpBB after CurBB.
1193 MachineFunction::iterator BBI = CurBB;
1194 MachineFunction &MF = DAG.getMachineFunction();
1195 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1196 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001197
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001198 if (Opc == Instruction::Or) {
1199 // Codegen X | Y as:
1200 // jmp_if_X TBB
1201 // jmp TmpBB
1202 // TmpBB:
1203 // jmp_if_Y TBB
1204 // jmp FBB
1205 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001206
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001207 // Emit the LHS condition.
1208 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001209
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001210 // Emit the RHS condition into TmpBB.
1211 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1212 } else {
1213 assert(Opc == Instruction::And && "Unknown merge op!");
1214 // Codegen X & Y as:
1215 // jmp_if_X TmpBB
1216 // jmp FBB
1217 // TmpBB:
1218 // jmp_if_Y TBB
1219 // jmp FBB
1220 //
1221 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001222
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001223 // Emit the LHS condition.
1224 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001225
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001226 // Emit the RHS condition into TmpBB.
1227 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1228 }
1229}
1230
1231/// If the set of cases should be emitted as a series of branches, return true.
1232/// If we should emit this as a bunch of and/or'd together conditions, return
1233/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001234bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001235SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1236 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001237
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001238 // If this is two comparisons of the same values or'd or and'd together, they
1239 // will get folded into a single comparison, so don't emit two blocks.
1240 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1241 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1242 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1243 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1244 return false;
1245 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001246
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001247 return true;
1248}
1249
1250void SelectionDAGLowering::visitBr(BranchInst &I) {
1251 // Update machine-CFG edges.
1252 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1253
1254 // Figure out which block is immediately after the current one.
1255 MachineBasicBlock *NextBlock = 0;
1256 MachineFunction::iterator BBI = CurMBB;
1257 if (++BBI != CurMBB->getParent()->end())
1258 NextBlock = BBI;
1259
1260 if (I.isUnconditional()) {
1261 // Update machine-CFG edges.
1262 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001263
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001264 // If this is not a fall-through branch, emit the branch.
1265 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001266 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001267 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001268 DAG.getBasicBlock(Succ0MBB)));
1269 return;
1270 }
1271
1272 // If this condition is one of the special cases we handle, do special stuff
1273 // now.
1274 Value *CondVal = I.getCondition();
1275 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1276
1277 // If this is a series of conditions that are or'd or and'd together, emit
1278 // this as a sequence of branches instead of setcc's with and/or operations.
1279 // For example, instead of something like:
1280 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001281 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001282 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001283 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001284 // or C, F
1285 // jnz foo
1286 // Emit:
1287 // cmp A, B
1288 // je foo
1289 // cmp D, E
1290 // jle foo
1291 //
1292 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001293 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001294 (BOp->getOpcode() == Instruction::And ||
1295 BOp->getOpcode() == Instruction::Or)) {
1296 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1297 // If the compares in later blocks need to use values not currently
1298 // exported from this block, export them now. This block should always
1299 // be the first entry.
1300 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001302 // Allow some cases to be rejected.
1303 if (ShouldEmitAsBranches(SwitchCases)) {
1304 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1305 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1306 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1307 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001308
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001309 // Emit the branch for this block.
1310 visitSwitchCase(SwitchCases[0]);
1311 SwitchCases.erase(SwitchCases.begin());
1312 return;
1313 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001314
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001315 // Okay, we decided not to do this, remove any inserted MBB's and clear
1316 // SwitchCases.
1317 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1318 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001319
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001320 SwitchCases.clear();
1321 }
1322 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001323
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001324 // Create a CaseBlock record representing this branch.
1325 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1326 NULL, Succ0MBB, Succ1MBB, CurMBB);
1327 // Use visitSwitchCase to actually insert the fast branch sequence for this
1328 // cond branch.
1329 visitSwitchCase(CB);
1330}
1331
1332/// visitSwitchCase - Emits the necessary code to represent a single node in
1333/// the binary search tree resulting from lowering a switch instruction.
1334void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1335 SDValue Cond;
1336 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001337 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001338
1339 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001340 if (CB.CmpMHS == NULL) {
1341 // Fold "(X == true)" to X and "(X == false)" to !X to
1342 // handle common cases produced by branch lowering.
1343 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1344 Cond = CondLHS;
1345 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1346 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001347 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001348 } else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001349 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001350 } else {
1351 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1352
Anton Korobeynikov23218582008-12-23 22:25:27 +00001353 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1354 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001355
1356 SDValue CmpOp = getValue(CB.CmpMHS);
1357 MVT VT = CmpOp.getValueType();
1358
1359 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001360 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001361 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001362 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001363 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001364 VT, CmpOp, DAG.getConstant(Low, VT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001365 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001366 DAG.getConstant(High-Low, VT), ISD::SETULE);
1367 }
1368 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001369
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001370 // Update successor info
1371 CurMBB->addSuccessor(CB.TrueBB);
1372 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001373
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001374 // Set NextBlock to be the MBB immediately after the current one, if any.
1375 // This is used to avoid emitting unnecessary branches to the next block.
1376 MachineBasicBlock *NextBlock = 0;
1377 MachineFunction::iterator BBI = CurMBB;
1378 if (++BBI != CurMBB->getParent()->end())
1379 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001380
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001381 // If the lhs block is the next block, invert the condition so that we can
1382 // fall through to the lhs instead of the rhs block.
1383 if (CB.TrueBB == NextBlock) {
1384 std::swap(CB.TrueBB, CB.FalseBB);
1385 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001386 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001387 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001388 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001389 MVT::Other, getControlRoot(), Cond,
1390 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001391
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001392 // If the branch was constant folded, fix up the CFG.
1393 if (BrCond.getOpcode() == ISD::BR) {
1394 CurMBB->removeSuccessor(CB.FalseBB);
1395 DAG.setRoot(BrCond);
1396 } else {
1397 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001398 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001399 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001400
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001401 if (CB.FalseBB == NextBlock)
1402 DAG.setRoot(BrCond);
1403 else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001404 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001405 DAG.getBasicBlock(CB.FalseBB)));
1406 }
1407}
1408
1409/// visitJumpTable - Emit JumpTable node in the current MBB
1410void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1411 // Emit the code for the jump table
1412 assert(JT.Reg != -1U && "Should lower JT Header first!");
1413 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001414 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1415 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001416 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001417 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001418 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001419 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001420}
1421
1422/// visitJumpTableHeader - This function emits necessary code to produce index
1423/// in the JumpTable from switch case.
1424void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1425 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001426 // Subtract the lowest switch case value from the value being switched on and
1427 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001428 // difference between smallest and largest cases.
1429 SDValue SwitchOp = getValue(JTH.SValue);
1430 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001431 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001432 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001433
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001434 // The SDNode we just created, which holds the value being switched on minus
1435 // the the smallest case value, needs to be copied to a virtual register so it
1436 // can be used as an index into the jump table in a subsequent basic block.
1437 // This value may be smaller or larger than the target's pointer type, and
1438 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001439 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001440 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001441 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001442 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001443 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001444 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001445
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001446 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001447 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1448 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001449 JT.Reg = JumpTableReg;
1450
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001451 // Emit the range check for the jump table, and branch to the default block
1452 // for the switch statement if the value being switched on exceeds the largest
1453 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001454 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1455 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001456 DAG.getConstant(JTH.Last-JTH.First,VT),
1457 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001458
1459 // Set NextBlock to be the MBB immediately after the current one, if any.
1460 // This is used to avoid emitting unnecessary branches to the next block.
1461 MachineBasicBlock *NextBlock = 0;
1462 MachineFunction::iterator BBI = CurMBB;
1463 if (++BBI != CurMBB->getParent()->end())
1464 NextBlock = BBI;
1465
Dale Johannesen66978ee2009-01-31 02:22:37 +00001466 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001467 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001468 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001469
1470 if (JT.MBB == NextBlock)
1471 DAG.setRoot(BrCond);
1472 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001473 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001474 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001475}
1476
1477/// visitBitTestHeader - This function emits necessary code to produce value
1478/// suitable for "bit tests"
1479void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1480 // Subtract the minimum value
1481 SDValue SwitchOp = getValue(B.SValue);
1482 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001483 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001484 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001485
1486 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001487 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1488 TLI.getSetCCResultType(SUB.getValueType()),
1489 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001490 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001491
1492 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001493 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001494 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001495 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001496 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001497 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001498 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001499
Duncan Sands92abc622009-01-31 15:50:11 +00001500 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001501 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1502 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001503
1504 // Set NextBlock to be the MBB immediately after the current one, if any.
1505 // This is used to avoid emitting unnecessary branches to the next block.
1506 MachineBasicBlock *NextBlock = 0;
1507 MachineFunction::iterator BBI = CurMBB;
1508 if (++BBI != CurMBB->getParent()->end())
1509 NextBlock = BBI;
1510
1511 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1512
1513 CurMBB->addSuccessor(B.Default);
1514 CurMBB->addSuccessor(MBB);
1515
Dale Johannesen66978ee2009-01-31 02:22:37 +00001516 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001517 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001518 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001519
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001520 if (MBB == NextBlock)
1521 DAG.setRoot(BrRange);
1522 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001523 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001524 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001525}
1526
1527/// visitBitTestCase - this function produces one "bit test"
1528void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1529 unsigned Reg,
1530 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001531 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001532 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001533 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001534 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001535 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001536 DAG.getConstant(1, TLI.getPointerTy()),
1537 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001538
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001539 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001540 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001541 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001542 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001543 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1544 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001545 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001546 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001547
1548 CurMBB->addSuccessor(B.TargetBB);
1549 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001550
Dale Johannesen66978ee2009-01-31 02:22:37 +00001551 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001552 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001553 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001554
1555 // Set NextBlock to be the MBB immediately after the current one, if any.
1556 // This is used to avoid emitting unnecessary branches to the next block.
1557 MachineBasicBlock *NextBlock = 0;
1558 MachineFunction::iterator BBI = CurMBB;
1559 if (++BBI != CurMBB->getParent()->end())
1560 NextBlock = BBI;
1561
1562 if (NextMBB == NextBlock)
1563 DAG.setRoot(BrAnd);
1564 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001565 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001566 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001567}
1568
1569void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1570 // Retrieve successors.
1571 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1572 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1573
Gabor Greifb67e6b32009-01-15 11:10:44 +00001574 const Value *Callee(I.getCalledValue());
1575 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001576 visitInlineAsm(&I);
1577 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001578 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001579
1580 // If the value of the invoke is used outside of its defining block, make it
1581 // available as a virtual register.
Dan Gohmanad62f532009-04-23 23:13:24 +00001582 CopyToExportRegsIfNeeded(&I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001583
1584 // Update successor info
1585 CurMBB->addSuccessor(Return);
1586 CurMBB->addSuccessor(LandingPad);
1587
1588 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001589 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001590 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001591 DAG.getBasicBlock(Return)));
1592}
1593
1594void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1595}
1596
1597/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1598/// small case ranges).
1599bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1600 CaseRecVector& WorkList,
1601 Value* SV,
1602 MachineBasicBlock* Default) {
1603 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001604
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001605 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001606 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001607 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001608 return false;
1609
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001610 // Get the MachineFunction which holds the current MBB. This is used when
1611 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001612 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001613
1614 // Figure out which block is immediately after the current one.
1615 MachineBasicBlock *NextBlock = 0;
1616 MachineFunction::iterator BBI = CR.CaseBB;
1617
1618 if (++BBI != CurMBB->getParent()->end())
1619 NextBlock = BBI;
1620
1621 // TODO: If any two of the cases has the same destination, and if one value
1622 // is the same as the other, but has one bit unset that the other has set,
1623 // use bit manipulation to do two compares at once. For example:
1624 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001625
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001626 // Rearrange the case blocks so that the last one falls through if possible.
1627 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1628 // The last case block won't fall through into 'NextBlock' if we emit the
1629 // branches in this order. See if rearranging a case value would help.
1630 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1631 if (I->BB == NextBlock) {
1632 std::swap(*I, BackCase);
1633 break;
1634 }
1635 }
1636 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001637
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001638 // Create a CaseBlock record representing a conditional branch to
1639 // the Case's target mbb if the value being switched on SV is equal
1640 // to C.
1641 MachineBasicBlock *CurBlock = CR.CaseBB;
1642 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1643 MachineBasicBlock *FallThrough;
1644 if (I != E-1) {
1645 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1646 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001647
1648 // Put SV in a virtual register to make it available from the new blocks.
1649 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001650 } else {
1651 // If the last case doesn't match, go to the default block.
1652 FallThrough = Default;
1653 }
1654
1655 Value *RHS, *LHS, *MHS;
1656 ISD::CondCode CC;
1657 if (I->High == I->Low) {
1658 // This is just small small case range :) containing exactly 1 case
1659 CC = ISD::SETEQ;
1660 LHS = SV; RHS = I->High; MHS = NULL;
1661 } else {
1662 CC = ISD::SETLE;
1663 LHS = I->Low; MHS = SV; RHS = I->High;
1664 }
1665 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001666
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001667 // If emitting the first comparison, just call visitSwitchCase to emit the
1668 // code into the current block. Otherwise, push the CaseBlock onto the
1669 // vector to be later processed by SDISel, and insert the node's MBB
1670 // before the next MBB.
1671 if (CurBlock == CurMBB)
1672 visitSwitchCase(CB);
1673 else
1674 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001675
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001676 CurBlock = FallThrough;
1677 }
1678
1679 return true;
1680}
1681
1682static inline bool areJTsAllowed(const TargetLowering &TLI) {
1683 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001684 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1685 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001686}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001687
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001688static APInt ComputeRange(const APInt &First, const APInt &Last) {
1689 APInt LastExt(Last), FirstExt(First);
1690 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1691 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1692 return (LastExt - FirstExt + 1ULL);
1693}
1694
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001695/// handleJTSwitchCase - Emit jumptable for current switch case range
1696bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1697 CaseRecVector& WorkList,
1698 Value* SV,
1699 MachineBasicBlock* Default) {
1700 Case& FrontCase = *CR.Range.first;
1701 Case& BackCase = *(CR.Range.second-1);
1702
Anton Korobeynikov23218582008-12-23 22:25:27 +00001703 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1704 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001705
Anton Korobeynikov23218582008-12-23 22:25:27 +00001706 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001707 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1708 I!=E; ++I)
1709 TSize += I->size();
1710
1711 if (!areJTsAllowed(TLI) || TSize <= 3)
1712 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001713
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001714 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001715 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001716 if (Density < 0.4)
1717 return false;
1718
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001719 DEBUG(errs() << "Lowering jump table\n"
1720 << "First entry: " << First << ". Last entry: " << Last << '\n'
1721 << "Range: " << Range
1722 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001723
1724 // Get the MachineFunction which holds the current MBB. This is used when
1725 // inserting any additional MBBs necessary to represent the switch.
1726 MachineFunction *CurMF = CurMBB->getParent();
1727
1728 // Figure out which block is immediately after the current one.
1729 MachineBasicBlock *NextBlock = 0;
1730 MachineFunction::iterator BBI = CR.CaseBB;
1731
1732 if (++BBI != CurMBB->getParent()->end())
1733 NextBlock = BBI;
1734
1735 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1736
1737 // Create a new basic block to hold the code for loading the address
1738 // of the jump table, and jumping to it. Update successor information;
1739 // we will either branch to the default case for the switch, or the jump
1740 // table.
1741 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1742 CurMF->insert(BBI, JumpTableBB);
1743 CR.CaseBB->addSuccessor(Default);
1744 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001745
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001746 // Build a vector of destination BBs, corresponding to each target
1747 // of the jump table. If the value of the jump table slot corresponds to
1748 // a case statement, push the case's BB onto the vector, otherwise, push
1749 // the default BB.
1750 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001751 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001752 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001753 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1754 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1755
1756 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001757 DestBBs.push_back(I->BB);
1758 if (TEI==High)
1759 ++I;
1760 } else {
1761 DestBBs.push_back(Default);
1762 }
1763 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001764
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001765 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001766 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1767 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001768 E = DestBBs.end(); I != E; ++I) {
1769 if (!SuccsHandled[(*I)->getNumber()]) {
1770 SuccsHandled[(*I)->getNumber()] = true;
1771 JumpTableBB->addSuccessor(*I);
1772 }
1773 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001774
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001775 // Create a jump table index for this jump table, or return an existing
1776 // one.
1777 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001778
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001779 // Set the jump table information so that we can codegen it as a second
1780 // MachineBasicBlock
1781 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1782 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1783 if (CR.CaseBB == CurMBB)
1784 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001785
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001786 JTCases.push_back(JumpTableBlock(JTH, JT));
1787
1788 return true;
1789}
1790
1791/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1792/// 2 subtrees.
1793bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1794 CaseRecVector& WorkList,
1795 Value* SV,
1796 MachineBasicBlock* Default) {
1797 // Get the MachineFunction which holds the current MBB. This is used when
1798 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001799 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001800
1801 // Figure out which block is immediately after the current one.
1802 MachineBasicBlock *NextBlock = 0;
1803 MachineFunction::iterator BBI = CR.CaseBB;
1804
1805 if (++BBI != CurMBB->getParent()->end())
1806 NextBlock = BBI;
1807
1808 Case& FrontCase = *CR.Range.first;
1809 Case& BackCase = *(CR.Range.second-1);
1810 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1811
1812 // Size is the number of Cases represented by this range.
1813 unsigned Size = CR.Range.second - CR.Range.first;
1814
Anton Korobeynikov23218582008-12-23 22:25:27 +00001815 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1816 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001817 double FMetric = 0;
1818 CaseItr Pivot = CR.Range.first + Size/2;
1819
1820 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1821 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001822 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001823 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1824 I!=E; ++I)
1825 TSize += I->size();
1826
Anton Korobeynikov23218582008-12-23 22:25:27 +00001827 size_t LSize = FrontCase.size();
1828 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001829 DEBUG(errs() << "Selecting best pivot: \n"
1830 << "First: " << First << ", Last: " << Last <<'\n'
1831 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001832 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1833 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001834 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1835 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001836 APInt Range = ComputeRange(LEnd, RBegin);
1837 assert((Range - 2ULL).isNonNegative() &&
1838 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001839 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1840 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001841 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001842 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001843 DEBUG(errs() <<"=>Step\n"
1844 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1845 << "LDensity: " << LDensity
1846 << ", RDensity: " << RDensity << '\n'
1847 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001848 if (FMetric < Metric) {
1849 Pivot = J;
1850 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001851 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001852 }
1853
1854 LSize += J->size();
1855 RSize -= J->size();
1856 }
1857 if (areJTsAllowed(TLI)) {
1858 // If our case is dense we *really* should handle it earlier!
1859 assert((FMetric > 0) && "Should handle dense range earlier!");
1860 } else {
1861 Pivot = CR.Range.first + Size/2;
1862 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001863
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001864 CaseRange LHSR(CR.Range.first, Pivot);
1865 CaseRange RHSR(Pivot, CR.Range.second);
1866 Constant *C = Pivot->Low;
1867 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001868
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001869 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001870 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001871 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001872 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001873 // Pivot's Value, then we can branch directly to the LHS's Target,
1874 // rather than creating a leaf node for it.
1875 if ((LHSR.second - LHSR.first) == 1 &&
1876 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001877 cast<ConstantInt>(C)->getValue() ==
1878 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001879 TrueBB = LHSR.first->BB;
1880 } else {
1881 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1882 CurMF->insert(BBI, TrueBB);
1883 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001884
1885 // Put SV in a virtual register to make it available from the new blocks.
1886 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001887 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001888
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001889 // Similar to the optimization above, if the Value being switched on is
1890 // known to be less than the Constant CR.LT, and the current Case Value
1891 // is CR.LT - 1, then we can branch directly to the target block for
1892 // the current Case Value, rather than emitting a RHS leaf node for it.
1893 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001894 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1895 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001896 FalseBB = RHSR.first->BB;
1897 } else {
1898 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1899 CurMF->insert(BBI, FalseBB);
1900 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001901
1902 // Put SV in a virtual register to make it available from the new blocks.
1903 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001904 }
1905
1906 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001907 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001908 // Otherwise, branch to LHS.
1909 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1910
1911 if (CR.CaseBB == CurMBB)
1912 visitSwitchCase(CB);
1913 else
1914 SwitchCases.push_back(CB);
1915
1916 return true;
1917}
1918
1919/// handleBitTestsSwitchCase - if current case range has few destination and
1920/// range span less, than machine word bitwidth, encode case range into series
1921/// of masks and emit bit tests with these masks.
1922bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1923 CaseRecVector& WorkList,
1924 Value* SV,
1925 MachineBasicBlock* Default){
1926 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1927
1928 Case& FrontCase = *CR.Range.first;
1929 Case& BackCase = *(CR.Range.second-1);
1930
1931 // Get the MachineFunction which holds the current MBB. This is used when
1932 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001933 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001934
Anton Korobeynikov23218582008-12-23 22:25:27 +00001935 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001936 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1937 I!=E; ++I) {
1938 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001939 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001940 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001941
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001942 // Count unique destinations
1943 SmallSet<MachineBasicBlock*, 4> Dests;
1944 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1945 Dests.insert(I->BB);
1946 if (Dests.size() > 3)
1947 // Don't bother the code below, if there are too much unique destinations
1948 return false;
1949 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001950 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1951 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001952
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001953 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001954 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1955 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001956 APInt cmpRange = maxValue - minValue;
1957
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001958 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1959 << "Low bound: " << minValue << '\n'
1960 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001961
1962 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001963 (!(Dests.size() == 1 && numCmps >= 3) &&
1964 !(Dests.size() == 2 && numCmps >= 5) &&
1965 !(Dests.size() >= 3 && numCmps >= 6)))
1966 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001967
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001968 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001969 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1970
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001971 // Optimize the case where all the case values fit in a
1972 // word without having to subtract minValue. In this case,
1973 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001974 if (minValue.isNonNegative() &&
1975 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1976 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001977 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001978 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001979 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001980
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001981 CaseBitsVector CasesBits;
1982 unsigned i, count = 0;
1983
1984 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1985 MachineBasicBlock* Dest = I->BB;
1986 for (i = 0; i < count; ++i)
1987 if (Dest == CasesBits[i].BB)
1988 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001989
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001990 if (i == count) {
1991 assert((count < 3) && "Too much destinations to test!");
1992 CasesBits.push_back(CaseBits(0, Dest, 0));
1993 count++;
1994 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001995
1996 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1997 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1998
1999 uint64_t lo = (lowValue - lowBound).getZExtValue();
2000 uint64_t hi = (highValue - lowBound).getZExtValue();
2001
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002002 for (uint64_t j = lo; j <= hi; j++) {
2003 CasesBits[i].Mask |= 1ULL << j;
2004 CasesBits[i].Bits++;
2005 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002006
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002007 }
2008 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00002009
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002010 BitTestInfo BTC;
2011
2012 // Figure out which block is immediately after the current one.
2013 MachineFunction::iterator BBI = CR.CaseBB;
2014 ++BBI;
2015
2016 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2017
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002018 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002019 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002020 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2021 << ", Bits: " << CasesBits[i].Bits
2022 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002023
2024 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2025 CurMF->insert(BBI, CaseBB);
2026 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2027 CaseBB,
2028 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002029
2030 // Put SV in a virtual register to make it available from the new blocks.
2031 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002032 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002033
2034 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002035 -1U, (CR.CaseBB == CurMBB),
2036 CR.CaseBB, Default, BTC);
2037
2038 if (CR.CaseBB == CurMBB)
2039 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002040
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002041 BitTestCases.push_back(BTB);
2042
2043 return true;
2044}
2045
2046
2047/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002048size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002049 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002050 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002051
2052 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002053 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002054 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2055 Cases.push_back(Case(SI.getSuccessorValue(i),
2056 SI.getSuccessorValue(i),
2057 SMBB));
2058 }
2059 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2060
2061 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002062 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002063 // Must recompute end() each iteration because it may be
2064 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002065 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2066 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2067 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002068 MachineBasicBlock* nextBB = J->BB;
2069 MachineBasicBlock* currentBB = I->BB;
2070
2071 // If the two neighboring cases go to the same destination, merge them
2072 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002073 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002074 I->High = J->High;
2075 J = Cases.erase(J);
2076 } else {
2077 I = J++;
2078 }
2079 }
2080
2081 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2082 if (I->Low != I->High)
2083 // A range counts double, since it requires two compares.
2084 ++numCmps;
2085 }
2086
2087 return numCmps;
2088}
2089
Anton Korobeynikov23218582008-12-23 22:25:27 +00002090void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002091 // Figure out which block is immediately after the current one.
2092 MachineBasicBlock *NextBlock = 0;
2093 MachineFunction::iterator BBI = CurMBB;
2094
2095 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2096
2097 // If there is only the default destination, branch to it if it is not the
2098 // next basic block. Otherwise, just fall through.
2099 if (SI.getNumOperands() == 2) {
2100 // Update machine-CFG edges.
2101
2102 // If this is not a fall-through branch, emit the branch.
2103 CurMBB->addSuccessor(Default);
2104 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002105 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002106 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002107 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002108 return;
2109 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002110
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002111 // If there are any non-default case statements, create a vector of Cases
2112 // representing each one, and sort the vector so that we can efficiently
2113 // create a binary search tree from them.
2114 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002115 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002116 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2117 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002118 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002119
2120 // Get the Value to be switched on and default basic blocks, which will be
2121 // inserted into CaseBlock records, representing basic blocks in the binary
2122 // search tree.
2123 Value *SV = SI.getOperand(0);
2124
2125 // Push the initial CaseRec onto the worklist
2126 CaseRecVector WorkList;
2127 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2128
2129 while (!WorkList.empty()) {
2130 // Grab a record representing a case range to process off the worklist
2131 CaseRec CR = WorkList.back();
2132 WorkList.pop_back();
2133
2134 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2135 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002136
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002137 // If the range has few cases (two or less) emit a series of specific
2138 // tests.
2139 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2140 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002141
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002142 // If the switch has more than 5 blocks, and at least 40% dense, and the
2143 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002144 // lowering the switch to a binary tree of conditional branches.
2145 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2146 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002147
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002148 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2149 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2150 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2151 }
2152}
2153
2154
2155void SelectionDAGLowering::visitSub(User &I) {
2156 // -0.0 - X --> fneg
2157 const Type *Ty = I.getType();
2158 if (isa<VectorType>(Ty)) {
2159 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2160 const VectorType *DestTy = cast<VectorType>(I.getType());
2161 const Type *ElTy = DestTy->getElementType();
2162 if (ElTy->isFloatingPoint()) {
2163 unsigned VL = DestTy->getNumElements();
2164 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2165 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2166 if (CV == CNZ) {
2167 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002168 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002169 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002170 return;
2171 }
2172 }
2173 }
2174 }
2175 if (Ty->isFloatingPoint()) {
2176 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2177 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2178 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002179 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002180 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002181 return;
2182 }
2183 }
2184
2185 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2186}
2187
2188void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2189 SDValue Op1 = getValue(I.getOperand(0));
2190 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002191
Scott Michelfdc40a02009-02-17 22:15:04 +00002192 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002193 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002194}
2195
2196void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2197 SDValue Op1 = getValue(I.getOperand(0));
2198 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman57fc82d2009-04-09 03:51:29 +00002199 if (!isa<VectorType>(I.getType()) &&
2200 Op2.getValueType() != TLI.getShiftAmountTy()) {
2201 // If the operand is smaller than the shift count type, promote it.
2202 if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType()))
2203 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
2204 TLI.getShiftAmountTy(), Op2);
2205 // If the operand is larger than the shift count type but the shift
2206 // count type has enough bits to represent any shift value, truncate
2207 // it now. This is a common case and it exposes the truncate to
2208 // optimization early.
2209 else if (TLI.getShiftAmountTy().getSizeInBits() >=
2210 Log2_32_Ceil(Op2.getValueType().getSizeInBits()))
2211 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2212 TLI.getShiftAmountTy(), Op2);
2213 // Otherwise we'll need to temporarily settle for some other
2214 // convenient type; type legalization will make adjustments as
2215 // needed.
2216 else if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002217 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002218 TLI.getPointerTy(), Op2);
2219 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002220 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002221 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002222 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002223
Scott Michelfdc40a02009-02-17 22:15:04 +00002224 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002225 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002226}
2227
2228void SelectionDAGLowering::visitICmp(User &I) {
2229 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2230 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2231 predicate = IC->getPredicate();
2232 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2233 predicate = ICmpInst::Predicate(IC->getPredicate());
2234 SDValue Op1 = getValue(I.getOperand(0));
2235 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002236 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002237 setValue(&I, DAG.getSetCC(getCurDebugLoc(),MVT::i1, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002238}
2239
2240void SelectionDAGLowering::visitFCmp(User &I) {
2241 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2242 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2243 predicate = FC->getPredicate();
2244 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2245 predicate = FCmpInst::Predicate(FC->getPredicate());
2246 SDValue Op1 = getValue(I.getOperand(0));
2247 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002248 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002249 setValue(&I, DAG.getSetCC(getCurDebugLoc(), MVT::i1, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002250}
2251
2252void SelectionDAGLowering::visitVICmp(User &I) {
2253 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2254 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2255 predicate = IC->getPredicate();
2256 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2257 predicate = ICmpInst::Predicate(IC->getPredicate());
2258 SDValue Op1 = getValue(I.getOperand(0));
2259 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002260 ISD::CondCode Opcode = getICmpCondCode(predicate);
Scott Michelfdc40a02009-02-17 22:15:04 +00002261 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), Op1.getValueType(),
Dale Johannesenf5d97892009-02-04 01:48:28 +00002262 Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002263}
2264
2265void SelectionDAGLowering::visitVFCmp(User &I) {
2266 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2267 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2268 predicate = FC->getPredicate();
2269 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2270 predicate = FCmpInst::Predicate(FC->getPredicate());
2271 SDValue Op1 = getValue(I.getOperand(0));
2272 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002273 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002274 MVT DestVT = TLI.getValueType(I.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002275
Dale Johannesenf5d97892009-02-04 01:48:28 +00002276 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002277}
2278
2279void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002280 SmallVector<MVT, 4> ValueVTs;
2281 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2282 unsigned NumValues = ValueVTs.size();
2283 if (NumValues != 0) {
2284 SmallVector<SDValue, 4> Values(NumValues);
2285 SDValue Cond = getValue(I.getOperand(0));
2286 SDValue TrueVal = getValue(I.getOperand(1));
2287 SDValue FalseVal = getValue(I.getOperand(2));
2288
2289 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002290 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002291 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002292 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2293 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2294
Scott Michelfdc40a02009-02-17 22:15:04 +00002295 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002296 DAG.getVTList(&ValueVTs[0], NumValues),
2297 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002298 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002299}
2300
2301
2302void SelectionDAGLowering::visitTrunc(User &I) {
2303 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2304 SDValue N = getValue(I.getOperand(0));
2305 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002306 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002307}
2308
2309void SelectionDAGLowering::visitZExt(User &I) {
2310 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2311 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2312 SDValue N = getValue(I.getOperand(0));
2313 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002314 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002315}
2316
2317void SelectionDAGLowering::visitSExt(User &I) {
2318 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2319 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2320 SDValue N = getValue(I.getOperand(0));
2321 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002322 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002323}
2324
2325void SelectionDAGLowering::visitFPTrunc(User &I) {
2326 // FPTrunc is never a no-op cast, no need to check
2327 SDValue N = getValue(I.getOperand(0));
2328 MVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002329 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002330 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002331}
2332
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002333void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002334 // FPTrunc is never a no-op cast, no need to check
2335 SDValue N = getValue(I.getOperand(0));
2336 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002337 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002338}
2339
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002340void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002341 // FPToUI is never a no-op cast, no need to check
2342 SDValue N = getValue(I.getOperand(0));
2343 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002344 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002345}
2346
2347void SelectionDAGLowering::visitFPToSI(User &I) {
2348 // FPToSI is never a no-op cast, no need to check
2349 SDValue N = getValue(I.getOperand(0));
2350 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002351 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002352}
2353
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002354void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002355 // UIToFP is never a no-op cast, no need to check
2356 SDValue N = getValue(I.getOperand(0));
2357 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002358 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002359}
2360
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002361void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002362 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002363 SDValue N = getValue(I.getOperand(0));
2364 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002365 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002366}
2367
2368void SelectionDAGLowering::visitPtrToInt(User &I) {
2369 // What to do depends on the size of the integer and the size of the pointer.
2370 // We can either truncate, zero extend, or no-op, accordingly.
2371 SDValue N = getValue(I.getOperand(0));
2372 MVT SrcVT = N.getValueType();
2373 MVT DestVT = TLI.getValueType(I.getType());
2374 SDValue Result;
2375 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002376 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002377 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002378 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002379 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002380 setValue(&I, Result);
2381}
2382
2383void SelectionDAGLowering::visitIntToPtr(User &I) {
2384 // What to do depends on the size of the integer and the size of the pointer.
2385 // We can either truncate, zero extend, or no-op, accordingly.
2386 SDValue N = getValue(I.getOperand(0));
2387 MVT SrcVT = N.getValueType();
2388 MVT DestVT = TLI.getValueType(I.getType());
2389 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002390 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002391 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002392 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002393 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002394 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002395}
2396
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002397void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002398 SDValue N = getValue(I.getOperand(0));
2399 MVT DestVT = TLI.getValueType(I.getType());
2400
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002401 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002402 // is either a BIT_CONVERT or a no-op.
2403 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002404 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002405 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002406 else
2407 setValue(&I, N); // noop cast.
2408}
2409
2410void SelectionDAGLowering::visitInsertElement(User &I) {
2411 SDValue InVec = getValue(I.getOperand(0));
2412 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002413 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002414 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002415 getValue(I.getOperand(2)));
2416
Scott Michelfdc40a02009-02-17 22:15:04 +00002417 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002418 TLI.getValueType(I.getType()),
2419 InVec, InVal, InIdx));
2420}
2421
2422void SelectionDAGLowering::visitExtractElement(User &I) {
2423 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002424 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002425 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002426 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002427 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002428 TLI.getValueType(I.getType()), InVec, InIdx));
2429}
2430
Mon P Wangaeb06d22008-11-10 04:46:22 +00002431
2432// Utility for visitShuffleVector - Returns true if the mask is mask starting
2433// from SIndx and increasing to the element length (undefs are allowed).
Nate Begeman5a5ca152009-04-29 05:20:52 +00002434static bool SequentialMask(SmallVectorImpl<int> &Mask, unsigned SIndx) {
2435 unsigned MaskNumElts = Mask.size();
2436 for (unsigned i = 0; i != MaskNumElts; ++i)
2437 if ((Mask[i] >= 0) && (Mask[i] != (int)(i + SIndx)))
Nate Begeman9008ca62009-04-27 18:41:29 +00002438 return false;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002439 return true;
2440}
2441
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002442void SelectionDAGLowering::visitShuffleVector(User &I) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002443 SmallVector<int, 8> Mask;
Mon P Wang230e4fa2008-11-21 04:25:21 +00002444 SDValue Src1 = getValue(I.getOperand(0));
2445 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002446
Nate Begeman9008ca62009-04-27 18:41:29 +00002447 // Convert the ConstantVector mask operand into an array of ints, with -1
2448 // representing undef values.
2449 SmallVector<Constant*, 8> MaskElts;
2450 cast<Constant>(I.getOperand(2))->getVectorElements(MaskElts);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002451 unsigned MaskNumElts = MaskElts.size();
2452 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002453 if (isa<UndefValue>(MaskElts[i]))
2454 Mask.push_back(-1);
2455 else
2456 Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue());
2457 }
2458
Mon P Wangaeb06d22008-11-10 04:46:22 +00002459 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002460 MVT SrcVT = Src1.getValueType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00002461 unsigned SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002462
Mon P Wangc7849c22008-11-16 05:06:27 +00002463 if (SrcNumElts == MaskNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002464 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2465 &Mask[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002466 return;
2467 }
2468
2469 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002470 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2471 // Mask is longer than the source vectors and is a multiple of the source
2472 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002473 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002474 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2475 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002476 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002477 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002478 return;
2479 }
2480
Mon P Wangc7849c22008-11-16 05:06:27 +00002481 // Pad both vectors with undefs to make them the same length as the mask.
2482 unsigned NumConcat = MaskNumElts / SrcNumElts;
Nate Begeman9008ca62009-04-27 18:41:29 +00002483 bool Src1U = Src1.getOpcode() == ISD::UNDEF;
2484 bool Src2U = Src2.getOpcode() == ISD::UNDEF;
Dale Johannesene8d72302009-02-06 23:05:02 +00002485 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002486
Nate Begeman9008ca62009-04-27 18:41:29 +00002487 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal);
2488 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002489 MOps1[0] = Src1;
2490 MOps2[0] = Src2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002491
2492 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2493 getCurDebugLoc(), VT,
2494 &MOps1[0], NumConcat);
2495 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS,
2496 getCurDebugLoc(), VT,
2497 &MOps2[0], NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002498
Mon P Wangaeb06d22008-11-10 04:46:22 +00002499 // Readjust mask for new input vector length.
Nate Begeman9008ca62009-04-27 18:41:29 +00002500 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002501 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002502 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002503 if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002504 MappedOps.push_back(Idx);
2505 else
2506 MappedOps.push_back(Idx + MaskNumElts - SrcNumElts);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002507 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002508 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2509 &MappedOps[0]));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002510 return;
2511 }
2512
Mon P Wangc7849c22008-11-16 05:06:27 +00002513 if (SrcNumElts > MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002514 // Analyze the access pattern of the vector to see if we can extract
2515 // two subvectors and do the shuffle. The analysis is done by calculating
2516 // the range of elements the mask access on both vectors.
2517 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2518 int MaxRange[2] = {-1, -1};
2519
Nate Begeman5a5ca152009-04-29 05:20:52 +00002520 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002521 int Idx = Mask[i];
2522 int Input = 0;
2523 if (Idx < 0)
2524 continue;
2525
Nate Begeman5a5ca152009-04-29 05:20:52 +00002526 if (Idx >= (int)SrcNumElts) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002527 Input = 1;
2528 Idx -= SrcNumElts;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002529 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002530 if (Idx > MaxRange[Input])
2531 MaxRange[Input] = Idx;
2532 if (Idx < MinRange[Input])
2533 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002534 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002535
Mon P Wangc7849c22008-11-16 05:06:27 +00002536 // Check if the access is smaller than the vector size and can we find
2537 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002538 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002539 int StartIdx[2]; // StartIdx to extract from
2540 for (int Input=0; Input < 2; ++Input) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002541 if (MinRange[Input] == (int)(SrcNumElts+1) && MaxRange[Input] == -1) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002542 RangeUse[Input] = 0; // Unused
2543 StartIdx[Input] = 0;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002544 } else if (MaxRange[Input] - MinRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002545 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002546 // start index that is a multiple of the mask length.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002547 if (MaxRange[Input] < (int)MaskNumElts) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002548 RangeUse[Input] = 1; // Extract from beginning of the vector
2549 StartIdx[Input] = 0;
2550 } else {
2551 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002552 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002553 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002554 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002555 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002556 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002557 }
2558
2559 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002560 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002561 return;
2562 }
2563 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2564 // Extract appropriate subvector and generate a vector shuffle
2565 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002566 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002567 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002568 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002569 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002570 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002571 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002572 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002573 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002574 // Calculate new mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00002575 SmallVector<int, 8> MappedOps;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002576 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002577 int Idx = Mask[i];
2578 if (Idx < 0)
2579 MappedOps.push_back(Idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002580 else if (Idx < (int)SrcNumElts)
Nate Begeman9008ca62009-04-27 18:41:29 +00002581 MappedOps.push_back(Idx - StartIdx[0]);
2582 else
2583 MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts);
Mon P Wangc7849c22008-11-16 05:06:27 +00002584 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002585 setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2,
2586 &MappedOps[0]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002587 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002588 }
2589 }
2590
Mon P Wangc7849c22008-11-16 05:06:27 +00002591 // We can't use either concat vectors or extract subvectors so fall back to
2592 // replacing the shuffle with extract and build vector.
2593 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002594 MVT EltVT = VT.getVectorElementType();
2595 MVT PtrVT = TLI.getPointerTy();
2596 SmallVector<SDValue,8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002597 for (unsigned i = 0; i != MaskNumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002598 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002599 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002600 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002601 int Idx = Mask[i];
Nate Begeman5a5ca152009-04-29 05:20:52 +00002602 if (Idx < (int)SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002603 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002604 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002605 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002606 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002607 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002608 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002609 }
2610 }
Evan Chenga87008d2009-02-25 22:49:59 +00002611 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2612 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002613}
2614
2615void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2616 const Value *Op0 = I.getOperand(0);
2617 const Value *Op1 = I.getOperand(1);
2618 const Type *AggTy = I.getType();
2619 const Type *ValTy = Op1->getType();
2620 bool IntoUndef = isa<UndefValue>(Op0);
2621 bool FromUndef = isa<UndefValue>(Op1);
2622
2623 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2624 I.idx_begin(), I.idx_end());
2625
2626 SmallVector<MVT, 4> AggValueVTs;
2627 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2628 SmallVector<MVT, 4> ValValueVTs;
2629 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2630
2631 unsigned NumAggValues = AggValueVTs.size();
2632 unsigned NumValValues = ValValueVTs.size();
2633 SmallVector<SDValue, 4> Values(NumAggValues);
2634
2635 SDValue Agg = getValue(Op0);
2636 SDValue Val = getValue(Op1);
2637 unsigned i = 0;
2638 // Copy the beginning value(s) from the original aggregate.
2639 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002640 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002641 SDValue(Agg.getNode(), Agg.getResNo() + i);
2642 // Copy values from the inserted value(s).
2643 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002644 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002645 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2646 // Copy remaining value(s) from the original aggregate.
2647 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002648 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002649 SDValue(Agg.getNode(), Agg.getResNo() + i);
2650
Scott Michelfdc40a02009-02-17 22:15:04 +00002651 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002652 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2653 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002654}
2655
2656void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2657 const Value *Op0 = I.getOperand(0);
2658 const Type *AggTy = Op0->getType();
2659 const Type *ValTy = I.getType();
2660 bool OutOfUndef = isa<UndefValue>(Op0);
2661
2662 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2663 I.idx_begin(), I.idx_end());
2664
2665 SmallVector<MVT, 4> ValValueVTs;
2666 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2667
2668 unsigned NumValValues = ValValueVTs.size();
2669 SmallVector<SDValue, 4> Values(NumValValues);
2670
2671 SDValue Agg = getValue(Op0);
2672 // Copy out the selected value(s).
2673 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2674 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002675 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002676 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002677 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002678
Scott Michelfdc40a02009-02-17 22:15:04 +00002679 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002680 DAG.getVTList(&ValValueVTs[0], NumValValues),
2681 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002682}
2683
2684
2685void SelectionDAGLowering::visitGetElementPtr(User &I) {
2686 SDValue N = getValue(I.getOperand(0));
2687 const Type *Ty = I.getOperand(0)->getType();
2688
2689 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2690 OI != E; ++OI) {
2691 Value *Idx = *OI;
2692 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2693 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2694 if (Field) {
2695 // N = N + Offset
2696 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002697 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002698 DAG.getIntPtrConstant(Offset));
2699 }
2700 Ty = StTy->getElementType(Field);
2701 } else {
2702 Ty = cast<SequentialType>(Ty)->getElementType();
2703
2704 // If this is a constant subscript, handle it quickly.
2705 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2706 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002707 uint64_t Offs =
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002708 TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002709 SDValue OffsVal;
Evan Chengb1032a82009-02-09 20:54:38 +00002710 unsigned PtrBits = TLI.getPointerTy().getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002711 if (PtrBits < 64) {
2712 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2713 TLI.getPointerTy(),
2714 DAG.getConstant(Offs, MVT::i64));
2715 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002716 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002717 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002718 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002719 continue;
2720 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002721
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002722 // N = N + Idx * ElementSize;
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002723 uint64_t ElementSize = TD->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002724 SDValue IdxN = getValue(Idx);
2725
2726 // If the index is smaller or larger than intptr_t, truncate or extend
2727 // it.
2728 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002729 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002730 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002731 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002732 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002733 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002734
2735 // If this is a multiply by a power of two, turn it into a shl
2736 // immediately. This is a very common case.
2737 if (ElementSize != 1) {
2738 if (isPowerOf2_64(ElementSize)) {
2739 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002740 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002741 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002742 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002743 } else {
2744 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002745 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002746 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002747 }
2748 }
2749
Scott Michelfdc40a02009-02-17 22:15:04 +00002750 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002751 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002752 }
2753 }
2754 setValue(&I, N);
2755}
2756
2757void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2758 // If this is a fixed sized alloca in the entry block of the function,
2759 // allocate it statically on the stack.
2760 if (FuncInfo.StaticAllocaMap.count(&I))
2761 return; // getValue will auto-populate this.
2762
2763 const Type *Ty = I.getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002764 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002765 unsigned Align =
2766 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2767 I.getAlignment());
2768
2769 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002770
2771 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2772 AllocSize,
2773 DAG.getConstant(TySize, AllocSize.getValueType()));
2774
2775
2776
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002777 MVT IntPtr = TLI.getPointerTy();
2778 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002779 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002780 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002781 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002782 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002783 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002784
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002785 // Handle alignment. If the requested alignment is less than or equal to
2786 // the stack alignment, ignore it. If the size is greater than or equal to
2787 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2788 unsigned StackAlign =
2789 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2790 if (Align <= StackAlign)
2791 Align = 0;
2792
2793 // Round the size of the allocation up to the stack alignment size
2794 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002795 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002796 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002797 DAG.getIntPtrConstant(StackAlign-1));
2798 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002799 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002800 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002801 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2802
2803 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
Dan Gohmanfc166572009-04-09 23:54:40 +00002804 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002805 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002806 VTs, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002807 setValue(&I, DSA);
2808 DAG.setRoot(DSA.getValue(1));
2809
2810 // Inform the Frame Information that we have just allocated a variable-sized
2811 // object.
2812 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2813}
2814
2815void SelectionDAGLowering::visitLoad(LoadInst &I) {
2816 const Value *SV = I.getOperand(0);
2817 SDValue Ptr = getValue(SV);
2818
2819 const Type *Ty = I.getType();
2820 bool isVolatile = I.isVolatile();
2821 unsigned Alignment = I.getAlignment();
2822
2823 SmallVector<MVT, 4> ValueVTs;
2824 SmallVector<uint64_t, 4> Offsets;
2825 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2826 unsigned NumValues = ValueVTs.size();
2827 if (NumValues == 0)
2828 return;
2829
2830 SDValue Root;
2831 bool ConstantMemory = false;
2832 if (I.isVolatile())
2833 // Serialize volatile loads with other side effects.
2834 Root = getRoot();
2835 else if (AA->pointsToConstantMemory(SV)) {
2836 // Do not serialize (non-volatile) loads of constant memory with anything.
2837 Root = DAG.getEntryNode();
2838 ConstantMemory = true;
2839 } else {
2840 // Do not serialize non-volatile loads against each other.
2841 Root = DAG.getRoot();
2842 }
2843
2844 SmallVector<SDValue, 4> Values(NumValues);
2845 SmallVector<SDValue, 4> Chains(NumValues);
2846 MVT PtrVT = Ptr.getValueType();
2847 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002848 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002849 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002850 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002851 DAG.getConstant(Offsets[i], PtrVT)),
2852 SV, Offsets[i],
2853 isVolatile, Alignment);
2854 Values[i] = L;
2855 Chains[i] = L.getValue(1);
2856 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002857
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002858 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002859 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002860 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002861 &Chains[0], NumValues);
2862 if (isVolatile)
2863 DAG.setRoot(Chain);
2864 else
2865 PendingLoads.push_back(Chain);
2866 }
2867
Scott Michelfdc40a02009-02-17 22:15:04 +00002868 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002869 DAG.getVTList(&ValueVTs[0], NumValues),
2870 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002871}
2872
2873
2874void SelectionDAGLowering::visitStore(StoreInst &I) {
2875 Value *SrcV = I.getOperand(0);
2876 Value *PtrV = I.getOperand(1);
2877
2878 SmallVector<MVT, 4> ValueVTs;
2879 SmallVector<uint64_t, 4> Offsets;
2880 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2881 unsigned NumValues = ValueVTs.size();
2882 if (NumValues == 0)
2883 return;
2884
2885 // Get the lowered operands. Note that we do this after
2886 // checking if NumResults is zero, because with zero results
2887 // the operands won't have values in the map.
2888 SDValue Src = getValue(SrcV);
2889 SDValue Ptr = getValue(PtrV);
2890
2891 SDValue Root = getRoot();
2892 SmallVector<SDValue, 4> Chains(NumValues);
2893 MVT PtrVT = Ptr.getValueType();
2894 bool isVolatile = I.isVolatile();
2895 unsigned Alignment = I.getAlignment();
2896 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002897 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002898 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002899 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002900 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002901 DAG.getConstant(Offsets[i], PtrVT)),
2902 PtrV, Offsets[i],
2903 isVolatile, Alignment);
2904
Scott Michelfdc40a02009-02-17 22:15:04 +00002905 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002906 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002907}
2908
2909/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2910/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002911void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002912 unsigned Intrinsic) {
2913 bool HasChain = !I.doesNotAccessMemory();
2914 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2915
2916 // Build the operand list.
2917 SmallVector<SDValue, 8> Ops;
2918 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2919 if (OnlyLoad) {
2920 // We don't need to serialize loads against other loads.
2921 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002922 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002923 Ops.push_back(getRoot());
2924 }
2925 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002926
2927 // Info is set by getTgtMemInstrinsic
2928 TargetLowering::IntrinsicInfo Info;
2929 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2930
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002931 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002932 if (!IsTgtIntrinsic)
2933 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002934
2935 // Add all operands of the call to the operand list.
2936 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2937 SDValue Op = getValue(I.getOperand(i));
2938 assert(TLI.isTypeLegal(Op.getValueType()) &&
2939 "Intrinsic uses a non-legal type?");
2940 Ops.push_back(Op);
2941 }
2942
Dan Gohmanfc166572009-04-09 23:54:40 +00002943 std::vector<MVT> VTArray;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002944 if (I.getType() != Type::VoidTy) {
2945 MVT VT = TLI.getValueType(I.getType());
2946 if (VT.isVector()) {
2947 const VectorType *DestTy = cast<VectorType>(I.getType());
2948 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002949
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002950 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2951 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2952 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002953
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002954 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
Dan Gohmanfc166572009-04-09 23:54:40 +00002955 VTArray.push_back(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002956 }
2957 if (HasChain)
Dan Gohmanfc166572009-04-09 23:54:40 +00002958 VTArray.push_back(MVT::Other);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002959
Dan Gohmanfc166572009-04-09 23:54:40 +00002960 SDVTList VTs = DAG.getVTList(&VTArray[0], VTArray.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002961
2962 // Create the node.
2963 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002964 if (IsTgtIntrinsic) {
2965 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002966 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002967 VTs, &Ops[0], Ops.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002968 Info.memVT, Info.ptrVal, Info.offset,
2969 Info.align, Info.vol,
2970 Info.readMem, Info.writeMem);
2971 }
2972 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002973 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002974 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002975 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002976 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002977 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002978 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002979 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00002980 VTs, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002981
2982 if (HasChain) {
2983 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2984 if (OnlyLoad)
2985 PendingLoads.push_back(Chain);
2986 else
2987 DAG.setRoot(Chain);
2988 }
2989 if (I.getType() != Type::VoidTy) {
2990 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2991 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002992 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002993 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002994 setValue(&I, Result);
2995 }
2996}
2997
2998/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2999static GlobalVariable *ExtractTypeInfo(Value *V) {
3000 V = V->stripPointerCasts();
3001 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
3002 assert ((GV || isa<ConstantPointerNull>(V)) &&
3003 "TypeInfo must be a global variable or NULL");
3004 return GV;
3005}
3006
3007namespace llvm {
3008
3009/// AddCatchInfo - Extract the personality and type infos from an eh.selector
3010/// call, and add them to the specified machine basic block.
3011void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3012 MachineBasicBlock *MBB) {
3013 // Inform the MachineModuleInfo of the personality for this landing pad.
3014 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3015 assert(CE->getOpcode() == Instruction::BitCast &&
3016 isa<Function>(CE->getOperand(0)) &&
3017 "Personality should be a function");
3018 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3019
3020 // Gather all the type infos for this landing pad and pass them along to
3021 // MachineModuleInfo.
3022 std::vector<GlobalVariable *> TyInfo;
3023 unsigned N = I.getNumOperands();
3024
3025 for (unsigned i = N - 1; i > 2; --i) {
3026 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3027 unsigned FilterLength = CI->getZExtValue();
3028 unsigned FirstCatch = i + FilterLength + !FilterLength;
3029 assert (FirstCatch <= N && "Invalid filter length");
3030
3031 if (FirstCatch < N) {
3032 TyInfo.reserve(N - FirstCatch);
3033 for (unsigned j = FirstCatch; j < N; ++j)
3034 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3035 MMI->addCatchTypeInfo(MBB, TyInfo);
3036 TyInfo.clear();
3037 }
3038
3039 if (!FilterLength) {
3040 // Cleanup.
3041 MMI->addCleanup(MBB);
3042 } else {
3043 // Filter.
3044 TyInfo.reserve(FilterLength - 1);
3045 for (unsigned j = i + 1; j < FirstCatch; ++j)
3046 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3047 MMI->addFilterTypeInfo(MBB, TyInfo);
3048 TyInfo.clear();
3049 }
3050
3051 N = i;
3052 }
3053 }
3054
3055 if (N > 3) {
3056 TyInfo.reserve(N - 3);
3057 for (unsigned j = 3; j < N; ++j)
3058 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3059 MMI->addCatchTypeInfo(MBB, TyInfo);
3060 }
3061}
3062
3063}
3064
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003065/// GetSignificand - Get the significand and build it into a floating-point
3066/// number with exponent of 1:
3067///
3068/// Op = (Op & 0x007fffff) | 0x3f800000;
3069///
3070/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003071static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003072GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3073 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003074 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003075 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003076 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003077 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003078}
3079
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003080/// GetExponent - Get the exponent:
3081///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003082/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003083///
3084/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003085static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003086GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3087 DebugLoc dl) {
3088 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003089 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003090 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003091 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003092 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003093 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003094 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003095}
3096
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003097/// getF32Constant - Get 32-bit floating point constant.
3098static SDValue
3099getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3100 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3101}
3102
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003103/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003104/// visitIntrinsicCall: I is a call instruction
3105/// Op is the associated NodeType for I
3106const char *
3107SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003108 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003109 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003110 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003111 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003112 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003113 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003114 getValue(I.getOperand(2)),
3115 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003116 setValue(&I, L);
3117 DAG.setRoot(L.getValue(1));
3118 return 0;
3119}
3120
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003121// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003122const char *
3123SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003124 SDValue Op1 = getValue(I.getOperand(1));
3125 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003126
Dan Gohmanfc166572009-04-09 23:54:40 +00003127 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
3128 SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2);
Bill Wendling74c37652008-12-09 22:08:41 +00003129
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003130 setValue(&I, Result);
3131 return 0;
3132}
Bill Wendling74c37652008-12-09 22:08:41 +00003133
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003134/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3135/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003136void
3137SelectionDAGLowering::visitExp(CallInst &I) {
3138 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003139 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003140
3141 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3142 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3143 SDValue Op = getValue(I.getOperand(1));
3144
3145 // Put the exponent in the right bit position for later addition to the
3146 // final result:
3147 //
3148 // #define LOG2OFe 1.4426950f
3149 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003150 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003151 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003152 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003153
3154 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003155 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3156 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003157
3158 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003159 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003160 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003161
3162 if (LimitFloatPrecision <= 6) {
3163 // For floating-point precision of 6:
3164 //
3165 // TwoToFractionalPartOfX =
3166 // 0.997535578f +
3167 // (0.735607626f + 0.252464424f * x) * x;
3168 //
3169 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003170 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003171 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003172 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003173 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003174 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3175 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003176 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003177 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003178
3179 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003180 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003181 TwoToFracPartOfX, IntegerPartOfX);
3182
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003183 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003184 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3185 // For floating-point precision of 12:
3186 //
3187 // TwoToFractionalPartOfX =
3188 // 0.999892986f +
3189 // (0.696457318f +
3190 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3191 //
3192 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003193 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003194 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003195 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003196 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003197 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3198 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003199 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003200 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3201 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003202 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003203 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003204
3205 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003206 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003207 TwoToFracPartOfX, IntegerPartOfX);
3208
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003209 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003210 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3211 // For floating-point precision of 18:
3212 //
3213 // TwoToFractionalPartOfX =
3214 // 0.999999982f +
3215 // (0.693148872f +
3216 // (0.240227044f +
3217 // (0.554906021e-1f +
3218 // (0.961591928e-2f +
3219 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3220 //
3221 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003222 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003223 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003224 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003225 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003226 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3227 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003228 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003229 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3230 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003231 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003232 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3233 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003234 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003235 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3236 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003237 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003238 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3239 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003240 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003241 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003242 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003243
3244 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003245 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003246 TwoToFracPartOfX, IntegerPartOfX);
3247
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003248 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003249 }
3250 } else {
3251 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003252 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003253 getValue(I.getOperand(1)).getValueType(),
3254 getValue(I.getOperand(1)));
3255 }
3256
Dale Johannesen59e577f2008-09-05 18:38:42 +00003257 setValue(&I, result);
3258}
3259
Bill Wendling39150252008-09-09 20:39:27 +00003260/// visitLog - Lower a log intrinsic. Handles the special sequences for
3261/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003262void
3263SelectionDAGLowering::visitLog(CallInst &I) {
3264 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003265 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003266
3267 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3268 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3269 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003270 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003271
3272 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003273 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003274 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003275 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003276
3277 // Get the significand and build it into a floating-point number with
3278 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003279 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003280
3281 if (LimitFloatPrecision <= 6) {
3282 // For floating-point precision of 6:
3283 //
3284 // LogofMantissa =
3285 // -1.1609546f +
3286 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003287 //
Bill Wendling39150252008-09-09 20:39:27 +00003288 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003289 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003290 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003291 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003292 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003293 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3294 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003295 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003296
Scott Michelfdc40a02009-02-17 22:15:04 +00003297 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003298 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003299 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3300 // For floating-point precision of 12:
3301 //
3302 // LogOfMantissa =
3303 // -1.7417939f +
3304 // (2.8212026f +
3305 // (-1.4699568f +
3306 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3307 //
3308 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003309 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003310 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003311 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003312 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003313 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3314 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003315 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003316 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3317 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003318 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003319 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3320 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003321 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003322
Scott Michelfdc40a02009-02-17 22:15:04 +00003323 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003324 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003325 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3326 // For floating-point precision of 18:
3327 //
3328 // LogOfMantissa =
3329 // -2.1072184f +
3330 // (4.2372794f +
3331 // (-3.7029485f +
3332 // (2.2781945f +
3333 // (-0.87823314f +
3334 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3335 //
3336 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003337 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003338 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003339 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003340 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003341 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3342 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003343 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003344 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3345 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003346 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003347 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3348 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003349 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003350 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3351 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003352 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003353 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3354 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003355 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003356
Scott Michelfdc40a02009-02-17 22:15:04 +00003357 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003358 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003359 }
3360 } else {
3361 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003362 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003363 getValue(I.getOperand(1)).getValueType(),
3364 getValue(I.getOperand(1)));
3365 }
3366
Dale Johannesen59e577f2008-09-05 18:38:42 +00003367 setValue(&I, result);
3368}
3369
Bill Wendling3eb59402008-09-09 00:28:24 +00003370/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3371/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003372void
3373SelectionDAGLowering::visitLog2(CallInst &I) {
3374 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003375 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003376
Dale Johannesen853244f2008-09-05 23:49:37 +00003377 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003378 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3379 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003380 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003381
Bill Wendling39150252008-09-09 20:39:27 +00003382 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003383 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003384
3385 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003386 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003387 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003388
Bill Wendling3eb59402008-09-09 00:28:24 +00003389 // Different possible minimax approximations of significand in
3390 // floating-point for various degrees of accuracy over [1,2].
3391 if (LimitFloatPrecision <= 6) {
3392 // For floating-point precision of 6:
3393 //
3394 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3395 //
3396 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003397 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003398 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003399 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003400 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003401 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3402 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003403 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003404
Scott Michelfdc40a02009-02-17 22:15:04 +00003405 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003406 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003407 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3408 // For floating-point precision of 12:
3409 //
3410 // Log2ofMantissa =
3411 // -2.51285454f +
3412 // (4.07009056f +
3413 // (-2.12067489f +
3414 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003415 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003416 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003417 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003418 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003419 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003420 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003421 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3422 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003423 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003424 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3425 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003426 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003427 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3428 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003429 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003430
Scott Michelfdc40a02009-02-17 22:15:04 +00003431 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003432 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003433 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3434 // For floating-point precision of 18:
3435 //
3436 // Log2ofMantissa =
3437 // -3.0400495f +
3438 // (6.1129976f +
3439 // (-5.3420409f +
3440 // (3.2865683f +
3441 // (-1.2669343f +
3442 // (0.27515199f -
3443 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3444 //
3445 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003446 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003447 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003448 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003449 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003450 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3451 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003452 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003453 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3454 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003455 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003456 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3457 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003458 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003459 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3460 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003461 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003462 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3463 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003464 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003465
Scott Michelfdc40a02009-02-17 22:15:04 +00003466 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003467 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003468 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003469 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003470 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003471 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003472 getValue(I.getOperand(1)).getValueType(),
3473 getValue(I.getOperand(1)));
3474 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003475
Dale Johannesen59e577f2008-09-05 18:38:42 +00003476 setValue(&I, result);
3477}
3478
Bill Wendling3eb59402008-09-09 00:28:24 +00003479/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3480/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003481void
3482SelectionDAGLowering::visitLog10(CallInst &I) {
3483 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003484 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003485
Dale Johannesen852680a2008-09-05 21:27:19 +00003486 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003487 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3488 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003489 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003490
Bill Wendling39150252008-09-09 20:39:27 +00003491 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003492 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003493 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003494 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003495
3496 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003497 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003498 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003499
3500 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003501 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003502 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003503 // Log10ofMantissa =
3504 // -0.50419619f +
3505 // (0.60948995f - 0.10380950f * x) * x;
3506 //
3507 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003508 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003509 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003510 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003511 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003512 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3513 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003514 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003515
Scott Michelfdc40a02009-02-17 22:15:04 +00003516 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003517 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003518 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3519 // For floating-point precision of 12:
3520 //
3521 // Log10ofMantissa =
3522 // -0.64831180f +
3523 // (0.91751397f +
3524 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3525 //
3526 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003527 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003528 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003529 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003530 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003531 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3532 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003533 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003534 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3535 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003536 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003537
Scott Michelfdc40a02009-02-17 22:15:04 +00003538 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003539 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003540 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003541 // For floating-point precision of 18:
3542 //
3543 // Log10ofMantissa =
3544 // -0.84299375f +
3545 // (1.5327582f +
3546 // (-1.0688956f +
3547 // (0.49102474f +
3548 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3549 //
3550 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003551 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003552 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003553 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003554 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003555 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3556 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003557 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003558 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3559 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003560 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003561 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3562 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003563 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003564 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3565 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003566 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003567
Scott Michelfdc40a02009-02-17 22:15:04 +00003568 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003569 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003570 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003571 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003572 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003573 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003574 getValue(I.getOperand(1)).getValueType(),
3575 getValue(I.getOperand(1)));
3576 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003577
Dale Johannesen59e577f2008-09-05 18:38:42 +00003578 setValue(&I, result);
3579}
3580
Bill Wendlinge10c8142008-09-09 22:39:21 +00003581/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3582/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003583void
3584SelectionDAGLowering::visitExp2(CallInst &I) {
3585 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003586 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003587
Dale Johannesen601d3c02008-09-05 01:48:15 +00003588 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003589 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3590 SDValue Op = getValue(I.getOperand(1));
3591
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003592 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003593
3594 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003595 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3596 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003597
3598 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003599 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003600 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003601
3602 if (LimitFloatPrecision <= 6) {
3603 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003604 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003605 // TwoToFractionalPartOfX =
3606 // 0.997535578f +
3607 // (0.735607626f + 0.252464424f * x) * x;
3608 //
3609 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003610 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003611 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003612 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003613 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003614 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3615 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003616 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003617 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003618 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003619 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003620
Scott Michelfdc40a02009-02-17 22:15:04 +00003621 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003622 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003623 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3624 // For floating-point precision of 12:
3625 //
3626 // TwoToFractionalPartOfX =
3627 // 0.999892986f +
3628 // (0.696457318f +
3629 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3630 //
3631 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003632 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003633 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003634 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003635 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003636 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3637 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003638 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003639 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3640 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003641 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003642 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003643 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003644 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003645
Scott Michelfdc40a02009-02-17 22:15:04 +00003646 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003647 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003648 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3649 // For floating-point precision of 18:
3650 //
3651 // TwoToFractionalPartOfX =
3652 // 0.999999982f +
3653 // (0.693148872f +
3654 // (0.240227044f +
3655 // (0.554906021e-1f +
3656 // (0.961591928e-2f +
3657 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3658 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003659 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003660 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003661 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003662 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003663 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3664 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003665 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003666 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3667 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003668 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003669 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3670 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003671 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003672 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3673 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003674 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003675 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3676 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003677 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003678 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003679 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003680 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003681
Scott Michelfdc40a02009-02-17 22:15:04 +00003682 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003683 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003684 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003685 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003686 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003687 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003688 getValue(I.getOperand(1)).getValueType(),
3689 getValue(I.getOperand(1)));
3690 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003691
Dale Johannesen601d3c02008-09-05 01:48:15 +00003692 setValue(&I, result);
3693}
3694
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003695/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3696/// limited-precision mode with x == 10.0f.
3697void
3698SelectionDAGLowering::visitPow(CallInst &I) {
3699 SDValue result;
3700 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003701 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003702 bool IsExp10 = false;
3703
3704 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003705 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003706 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3707 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3708 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3709 APFloat Ten(10.0f);
3710 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3711 }
3712 }
3713 }
3714
3715 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3716 SDValue Op = getValue(I.getOperand(2));
3717
3718 // Put the exponent in the right bit position for later addition to the
3719 // final result:
3720 //
3721 // #define LOG2OF10 3.3219281f
3722 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003723 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003724 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003725 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003726
3727 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003728 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3729 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003730
3731 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003732 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003733 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003734
3735 if (LimitFloatPrecision <= 6) {
3736 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003737 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003738 // twoToFractionalPartOfX =
3739 // 0.997535578f +
3740 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003741 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003742 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003743 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003744 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003745 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003746 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003747 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3748 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003749 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003750 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003751 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003752 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003753
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003754 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3755 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003756 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3757 // For floating-point precision of 12:
3758 //
3759 // TwoToFractionalPartOfX =
3760 // 0.999892986f +
3761 // (0.696457318f +
3762 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3763 //
3764 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003765 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003766 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003767 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003768 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003769 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3770 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003771 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003772 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3773 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003774 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003775 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003776 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003777 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003778
Scott Michelfdc40a02009-02-17 22:15:04 +00003779 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003780 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003781 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3782 // For floating-point precision of 18:
3783 //
3784 // TwoToFractionalPartOfX =
3785 // 0.999999982f +
3786 // (0.693148872f +
3787 // (0.240227044f +
3788 // (0.554906021e-1f +
3789 // (0.961591928e-2f +
3790 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3791 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003792 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003793 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003794 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003795 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003796 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3797 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003798 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003799 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3800 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003801 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003802 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3803 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003804 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003805 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3806 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003807 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003808 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3809 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003810 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003811 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003812 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003813 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003814
Scott Michelfdc40a02009-02-17 22:15:04 +00003815 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003816 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003817 }
3818 } else {
3819 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003820 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003821 getValue(I.getOperand(1)).getValueType(),
3822 getValue(I.getOperand(1)),
3823 getValue(I.getOperand(2)));
3824 }
3825
3826 setValue(&I, result);
3827}
3828
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003829/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3830/// we want to emit this as a call to a named external function, return the name
3831/// otherwise lower it and return null.
3832const char *
3833SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003834 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003835 switch (Intrinsic) {
3836 default:
3837 // By default, turn this into a target intrinsic node.
3838 visitTargetIntrinsic(I, Intrinsic);
3839 return 0;
3840 case Intrinsic::vastart: visitVAStart(I); return 0;
3841 case Intrinsic::vaend: visitVAEnd(I); return 0;
3842 case Intrinsic::vacopy: visitVACopy(I); return 0;
3843 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003844 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003845 getValue(I.getOperand(1))));
3846 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003847 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003848 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003849 getValue(I.getOperand(1))));
3850 return 0;
3851 case Intrinsic::setjmp:
3852 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3853 break;
3854 case Intrinsic::longjmp:
3855 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3856 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003857 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003858 SDValue Op1 = getValue(I.getOperand(1));
3859 SDValue Op2 = getValue(I.getOperand(2));
3860 SDValue Op3 = getValue(I.getOperand(3));
3861 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003862 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003863 I.getOperand(1), 0, I.getOperand(2), 0));
3864 return 0;
3865 }
Chris Lattner824b9582008-11-21 16:42:48 +00003866 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003867 SDValue Op1 = getValue(I.getOperand(1));
3868 SDValue Op2 = getValue(I.getOperand(2));
3869 SDValue Op3 = getValue(I.getOperand(3));
3870 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003871 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003872 I.getOperand(1), 0));
3873 return 0;
3874 }
Chris Lattner824b9582008-11-21 16:42:48 +00003875 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003876 SDValue Op1 = getValue(I.getOperand(1));
3877 SDValue Op2 = getValue(I.getOperand(2));
3878 SDValue Op3 = getValue(I.getOperand(3));
3879 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3880
3881 // If the source and destination are known to not be aliases, we can
3882 // lower memmove as memcpy.
3883 uint64_t Size = -1ULL;
3884 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003885 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003886 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3887 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003888 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003889 I.getOperand(1), 0, I.getOperand(2), 0));
3890 return 0;
3891 }
3892
Dale Johannesena04b7572009-02-03 23:04:43 +00003893 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003894 I.getOperand(1), 0, I.getOperand(2), 0));
3895 return 0;
3896 }
3897 case Intrinsic::dbg_stoppoint: {
Devang Patel83489bb2009-01-13 00:35:13 +00003898 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003899 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00003900 if (DW && DW->ValidDebugInfo(SPI.getContext(), OptLevel)) {
Evan Chenge3d42322009-02-25 07:04:34 +00003901 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling98a366d2009-04-29 23:29:43 +00003902 if (OptLevel == CodeGenOpt::None)
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003903 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3904 SPI.getLine(),
3905 SPI.getColumn(),
3906 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003907 DICompileUnit CU(cast<GlobalVariable>(SPI.getContext()));
Bill Wendling0582ae92009-03-13 04:39:26 +00003908 std::string Dir, FN;
3909 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
3910 CU.getFilename(FN));
Evan Chenge3d42322009-02-25 07:04:34 +00003911 unsigned idx = MF.getOrCreateDebugLocID(SrcFile,
3912 SPI.getLine(), SPI.getColumn());
Dale Johannesen66978ee2009-01-31 02:22:37 +00003913 setCurDebugLoc(DebugLoc::get(idx));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003914 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003915 return 0;
3916 }
3917 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003918 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003919 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00003920
3921 if (DW && DW->ValidDebugInfo(RSI.getContext(), OptLevel)) {
Bill Wendling92c1e122009-02-13 02:16:35 +00003922 unsigned LabelID =
3923 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Devang Patel48c7fa22009-04-13 18:13:16 +00003924 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3925 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003926 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003927
3928 return 0;
3929 }
3930 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003931 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003932 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patel0f7fef32009-04-13 17:02:03 +00003933
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00003934 if (DW && DW->ValidDebugInfo(REI.getContext(), OptLevel)) {
Devang Patel0f7fef32009-04-13 17:02:03 +00003935 MachineFunction &MF = DAG.getMachineFunction();
3936 DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext()));
3937 std::string SPName;
3938 Subprogram.getLinkageName(SPName);
3939 if (!SPName.empty()
3940 && strcmp(SPName.c_str(), MF.getFunction()->getNameStart())) {
Devang Patel16f2ffd2009-04-16 02:33:41 +00003941 // This is end of inlined function. Debugging information for
3942 // inlined function is not handled yet (only supported by FastISel).
Bill Wendling98a366d2009-04-29 23:29:43 +00003943 if (OptLevel == CodeGenOpt::None) {
Devang Patel16f2ffd2009-04-16 02:33:41 +00003944 unsigned ID = DW->RecordInlinedFnEnd(Subprogram);
3945 if (ID != 0)
Devang Patel02f8c412009-04-16 17:55:30 +00003946 // Returned ID is 0 if this is unbalanced "end of inlined
3947 // scope". This could happen if optimizer eats dbg intrinsics
3948 // or "beginning of inlined scope" is not recoginized due to
3949 // missing location info. In such cases, do ignore this region.end.
Devang Patel16f2ffd2009-04-16 02:33:41 +00003950 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3951 getRoot(), ID));
3952 }
Devang Patel0f7fef32009-04-13 17:02:03 +00003953 return 0;
3954 }
3955
Bill Wendling92c1e122009-02-13 02:16:35 +00003956 unsigned LabelID =
3957 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
Devang Patel48c7fa22009-04-13 18:13:16 +00003958 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3959 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003960 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003961
3962 return 0;
3963 }
3964 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003965 DwarfWriter *DW = DAG.getDwarfWriter();
3966 if (!DW) return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003967 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
3968 Value *SP = FSI.getSubprogram();
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00003969 if (SP && DW->ValidDebugInfo(SP, OptLevel)) {
3970 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling98a366d2009-04-29 23:29:43 +00003971 if (OptLevel == CodeGenOpt::None) {
Devang Patel16f2ffd2009-04-16 02:33:41 +00003972 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is what
3973 // (most?) gdb expects.
3974 DebugLoc PrevLoc = CurDebugLoc;
3975 DISubprogram Subprogram(cast<GlobalVariable>(SP));
3976 DICompileUnit CompileUnit = Subprogram.getCompileUnit();
3977 std::string Dir, FN;
3978 unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(Dir),
3979 CompileUnit.getFilename(FN));
3980
3981 if (!Subprogram.describes(MF.getFunction())) {
3982 // This is a beginning of an inlined function.
3983
Devang Patel02f8c412009-04-16 17:55:30 +00003984 // If llvm.dbg.func.start is seen in a new block before any
3985 // llvm.dbg.stoppoint intrinsic then the location info is unknown.
3986 // FIXME : Why DebugLoc is reset at the beginning of each block ?
3987 if (PrevLoc.isUnknown())
3988 return 0;
3989
Devang Patel16f2ffd2009-04-16 02:33:41 +00003990 // Record the source line.
3991 unsigned Line = Subprogram.getLineNumber();
3992 unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile);
3993 setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0)));
3994
Bill Wendling86e6cb92009-02-17 01:04:54 +00003995 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3996 getRoot(), LabelID));
Devang Patel16f2ffd2009-04-16 02:33:41 +00003997 DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc);
3998 DW->RecordInlinedFnStart(&FSI, Subprogram, LabelID,
3999 PrevLocTpl.Src,
4000 PrevLocTpl.Line,
4001 PrevLocTpl.Col);
4002 } else {
4003 // Record the source line.
4004 unsigned Line = Subprogram.getLineNumber();
4005 setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0)));
Devang Patel906caf22009-04-16 15:07:09 +00004006 DW->RecordSourceLine(Line, 0, SrcFile);
Devang Patel16f2ffd2009-04-16 02:33:41 +00004007 // llvm.dbg.func_start also defines beginning of function scope.
4008 DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram()));
4009 }
4010 } else {
4011 DISubprogram Subprogram(cast<GlobalVariable>(SP));
4012
4013 std::string SPName;
4014 Subprogram.getLinkageName(SPName);
4015 if (!SPName.empty()
4016 && strcmp(SPName.c_str(), MF.getFunction()->getNameStart())) {
4017 // This is beginning of inlined function. Debugging information for
4018 // inlined function is not handled yet (only supported by FastISel).
4019 return 0;
4020 }
4021
4022 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
4023 // what (most?) gdb expects.
4024 DICompileUnit CompileUnit = Subprogram.getCompileUnit();
4025 std::string Dir, FN;
4026 unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(Dir),
4027 CompileUnit.getFilename(FN));
4028
4029 // Record the source line but does not create a label for the normal
4030 // function start. It will be emitted at asm emission time. However,
4031 // create a label if this is a beginning of inlined function.
4032 unsigned Line = Subprogram.getLineNumber();
4033 setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0)));
4034 // FIXME - Start new region because llvm.dbg.func_start also defines
4035 // beginning of function scope.
4036 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004037 }
4038
4039 return 0;
4040 }
Bill Wendling92c1e122009-02-13 02:16:35 +00004041 case Intrinsic::dbg_declare: {
Bill Wendling98a366d2009-04-29 23:29:43 +00004042 if (OptLevel == CodeGenOpt::None) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00004043 DwarfWriter *DW = DAG.getDwarfWriter();
4044 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
4045 Value *Variable = DI.getVariable();
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00004046 if (DW && DW->ValidDebugInfo(Variable, OptLevel))
Bill Wendling86e6cb92009-02-17 01:04:54 +00004047 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
4048 getValue(DI.getAddress()), getValue(Variable)));
4049 } else {
4050 // FIXME: Do something sensible here when we support debug declare.
4051 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004052 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00004053 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004054 case Intrinsic::eh_exception: {
4055 if (!CurMBB->isLandingPad()) {
4056 // FIXME: Mark exception register as live in. Hack for PR1508.
4057 unsigned Reg = TLI.getExceptionAddressRegister();
4058 if (Reg) CurMBB->addLiveIn(Reg);
4059 }
4060 // Insert the EXCEPTIONADDR instruction.
4061 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
4062 SDValue Ops[1];
4063 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004064 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004065 setValue(&I, Op);
4066 DAG.setRoot(Op.getValue(1));
4067 return 0;
4068 }
4069
4070 case Intrinsic::eh_selector_i32:
4071 case Intrinsic::eh_selector_i64: {
4072 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4073 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
4074 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004075
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004076 if (MMI) {
4077 if (CurMBB->isLandingPad())
4078 AddCatchInfo(I, MMI, CurMBB);
4079 else {
4080#ifndef NDEBUG
4081 FuncInfo.CatchInfoLost.insert(&I);
4082#endif
4083 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4084 unsigned Reg = TLI.getExceptionSelectorRegister();
4085 if (Reg) CurMBB->addLiveIn(Reg);
4086 }
4087
4088 // Insert the EHSELECTION instruction.
4089 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4090 SDValue Ops[2];
4091 Ops[0] = getValue(I.getOperand(1));
4092 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004093 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004094 setValue(&I, Op);
4095 DAG.setRoot(Op.getValue(1));
4096 } else {
4097 setValue(&I, DAG.getConstant(0, VT));
4098 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004099
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004100 return 0;
4101 }
4102
4103 case Intrinsic::eh_typeid_for_i32:
4104 case Intrinsic::eh_typeid_for_i64: {
4105 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4106 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4107 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004108
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004109 if (MMI) {
4110 // Find the type id for the given typeinfo.
4111 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4112
4113 unsigned TypeID = MMI->getTypeIDFor(GV);
4114 setValue(&I, DAG.getConstant(TypeID, VT));
4115 } else {
4116 // Return something different to eh_selector.
4117 setValue(&I, DAG.getConstant(1, VT));
4118 }
4119
4120 return 0;
4121 }
4122
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004123 case Intrinsic::eh_return_i32:
4124 case Intrinsic::eh_return_i64:
4125 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004126 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004127 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004128 MVT::Other,
4129 getControlRoot(),
4130 getValue(I.getOperand(1)),
4131 getValue(I.getOperand(2))));
4132 } else {
4133 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4134 }
4135
4136 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004137 case Intrinsic::eh_unwind_init:
4138 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4139 MMI->setCallsUnwindInit(true);
4140 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004141
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004142 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004143
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004144 case Intrinsic::eh_dwarf_cfa: {
4145 MVT VT = getValue(I.getOperand(1)).getValueType();
4146 SDValue CfaArg;
4147 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004148 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004149 TLI.getPointerTy(), getValue(I.getOperand(1)));
4150 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004151 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004152 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004153
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004154 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004155 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004156 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004157 TLI.getPointerTy()),
4158 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004159 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004160 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004161 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004162 TLI.getPointerTy(),
4163 DAG.getConstant(0,
4164 TLI.getPointerTy())),
4165 Offset));
4166 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004167 }
4168
Mon P Wang77cdf302008-11-10 20:54:11 +00004169 case Intrinsic::convertff:
4170 case Intrinsic::convertfsi:
4171 case Intrinsic::convertfui:
4172 case Intrinsic::convertsif:
4173 case Intrinsic::convertuif:
4174 case Intrinsic::convertss:
4175 case Intrinsic::convertsu:
4176 case Intrinsic::convertus:
4177 case Intrinsic::convertuu: {
4178 ISD::CvtCode Code = ISD::CVT_INVALID;
4179 switch (Intrinsic) {
4180 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4181 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4182 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4183 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4184 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4185 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4186 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4187 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4188 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4189 }
4190 MVT DestVT = TLI.getValueType(I.getType());
4191 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004192 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004193 DAG.getValueType(DestVT),
4194 DAG.getValueType(getValue(Op1).getValueType()),
4195 getValue(I.getOperand(2)),
4196 getValue(I.getOperand(3)),
4197 Code));
4198 return 0;
4199 }
4200
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004201 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004202 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004203 getValue(I.getOperand(1)).getValueType(),
4204 getValue(I.getOperand(1))));
4205 return 0;
4206 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004207 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004208 getValue(I.getOperand(1)).getValueType(),
4209 getValue(I.getOperand(1)),
4210 getValue(I.getOperand(2))));
4211 return 0;
4212 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004213 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004214 getValue(I.getOperand(1)).getValueType(),
4215 getValue(I.getOperand(1))));
4216 return 0;
4217 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004218 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004219 getValue(I.getOperand(1)).getValueType(),
4220 getValue(I.getOperand(1))));
4221 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004222 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004223 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004224 return 0;
4225 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004226 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004227 return 0;
4228 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004229 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004230 return 0;
4231 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004232 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004233 return 0;
4234 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004235 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004236 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004237 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004238 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004239 return 0;
4240 case Intrinsic::pcmarker: {
4241 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004242 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004243 return 0;
4244 }
4245 case Intrinsic::readcyclecounter: {
4246 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004247 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004248 DAG.getVTList(MVT::i64, MVT::Other),
4249 &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004250 setValue(&I, Tmp);
4251 DAG.setRoot(Tmp.getValue(1));
4252 return 0;
4253 }
4254 case Intrinsic::part_select: {
4255 // Currently not implemented: just abort
4256 assert(0 && "part_select intrinsic not implemented");
4257 abort();
4258 }
4259 case Intrinsic::part_set: {
4260 // Currently not implemented: just abort
4261 assert(0 && "part_set intrinsic not implemented");
4262 abort();
4263 }
4264 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004265 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004266 getValue(I.getOperand(1)).getValueType(),
4267 getValue(I.getOperand(1))));
4268 return 0;
4269 case Intrinsic::cttz: {
4270 SDValue Arg = getValue(I.getOperand(1));
4271 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004272 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004273 setValue(&I, result);
4274 return 0;
4275 }
4276 case Intrinsic::ctlz: {
4277 SDValue Arg = getValue(I.getOperand(1));
4278 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004279 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004280 setValue(&I, result);
4281 return 0;
4282 }
4283 case Intrinsic::ctpop: {
4284 SDValue Arg = getValue(I.getOperand(1));
4285 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004286 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004287 setValue(&I, result);
4288 return 0;
4289 }
4290 case Intrinsic::stacksave: {
4291 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004292 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004293 DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004294 setValue(&I, Tmp);
4295 DAG.setRoot(Tmp.getValue(1));
4296 return 0;
4297 }
4298 case Intrinsic::stackrestore: {
4299 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004300 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004301 return 0;
4302 }
Bill Wendling57344502008-11-18 11:01:33 +00004303 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004304 // Emit code into the DAG to store the stack guard onto the stack.
4305 MachineFunction &MF = DAG.getMachineFunction();
4306 MachineFrameInfo *MFI = MF.getFrameInfo();
4307 MVT PtrTy = TLI.getPointerTy();
4308
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004309 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4310 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004311
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004312 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004313 MFI->setStackProtectorIndex(FI);
4314
4315 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4316
4317 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004318 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004319 PseudoSourceValue::getFixedStack(FI),
4320 0, true);
4321 setValue(&I, Result);
4322 DAG.setRoot(Result);
4323 return 0;
4324 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004325 case Intrinsic::var_annotation:
4326 // Discard annotate attributes
4327 return 0;
4328
4329 case Intrinsic::init_trampoline: {
4330 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4331
4332 SDValue Ops[6];
4333 Ops[0] = getRoot();
4334 Ops[1] = getValue(I.getOperand(1));
4335 Ops[2] = getValue(I.getOperand(2));
4336 Ops[3] = getValue(I.getOperand(3));
4337 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4338 Ops[5] = DAG.getSrcValue(F);
4339
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004340 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanfc166572009-04-09 23:54:40 +00004341 DAG.getVTList(TLI.getPointerTy(), MVT::Other),
4342 Ops, 6);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004343
4344 setValue(&I, Tmp);
4345 DAG.setRoot(Tmp.getValue(1));
4346 return 0;
4347 }
4348
4349 case Intrinsic::gcroot:
4350 if (GFI) {
4351 Value *Alloca = I.getOperand(1);
4352 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004353
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004354 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4355 GFI->addStackRoot(FI->getIndex(), TypeMap);
4356 }
4357 return 0;
4358
4359 case Intrinsic::gcread:
4360 case Intrinsic::gcwrite:
4361 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4362 return 0;
4363
4364 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004365 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004366 return 0;
4367 }
4368
4369 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004370 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004371 return 0;
4372 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004373
Bill Wendlingef375462008-11-21 02:38:44 +00004374 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004375 return implVisitAluOverflow(I, ISD::UADDO);
4376 case Intrinsic::sadd_with_overflow:
4377 return implVisitAluOverflow(I, ISD::SADDO);
4378 case Intrinsic::usub_with_overflow:
4379 return implVisitAluOverflow(I, ISD::USUBO);
4380 case Intrinsic::ssub_with_overflow:
4381 return implVisitAluOverflow(I, ISD::SSUBO);
4382 case Intrinsic::umul_with_overflow:
4383 return implVisitAluOverflow(I, ISD::UMULO);
4384 case Intrinsic::smul_with_overflow:
4385 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004386
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004387 case Intrinsic::prefetch: {
4388 SDValue Ops[4];
4389 Ops[0] = getRoot();
4390 Ops[1] = getValue(I.getOperand(1));
4391 Ops[2] = getValue(I.getOperand(2));
4392 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004393 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004394 return 0;
4395 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004396
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004397 case Intrinsic::memory_barrier: {
4398 SDValue Ops[6];
4399 Ops[0] = getRoot();
4400 for (int x = 1; x < 6; ++x)
4401 Ops[x] = getValue(I.getOperand(x));
4402
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004403 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004404 return 0;
4405 }
4406 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004407 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004408 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004409 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004410 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4411 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004412 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004413 getValue(I.getOperand(2)),
4414 getValue(I.getOperand(3)),
4415 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004416 setValue(&I, L);
4417 DAG.setRoot(L.getValue(1));
4418 return 0;
4419 }
4420 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004421 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004422 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004423 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004424 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004425 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004426 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004427 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004428 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004429 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004430 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004431 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004432 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004433 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004434 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004435 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004436 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004437 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004438 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004439 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004440 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004441 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004442 }
4443}
4444
4445
4446void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4447 bool IsTailCall,
4448 MachineBasicBlock *LandingPad) {
4449 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4450 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4451 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4452 unsigned BeginLabel = 0, EndLabel = 0;
4453
4454 TargetLowering::ArgListTy Args;
4455 TargetLowering::ArgListEntry Entry;
4456 Args.reserve(CS.arg_size());
4457 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4458 i != e; ++i) {
4459 SDValue ArgNode = getValue(*i);
4460 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4461
4462 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004463 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4464 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4465 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4466 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4467 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4468 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004469 Entry.Alignment = CS.getParamAlignment(attrInd);
4470 Args.push_back(Entry);
4471 }
4472
4473 if (LandingPad && MMI) {
4474 // Insert a label before the invoke call to mark the try range. This can be
4475 // used to detect deletion of the invoke via the MachineModuleInfo.
4476 BeginLabel = MMI->NextLabelID();
4477 // Both PendingLoads and PendingExports must be flushed here;
4478 // this call might not return.
4479 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004480 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4481 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004482 }
4483
4484 std::pair<SDValue,SDValue> Result =
4485 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004486 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004487 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
4488 CS.paramHasAttr(0, Attribute::InReg),
4489 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004490 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004491 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004492 if (CS.getType() != Type::VoidTy)
4493 setValue(CS.getInstruction(), Result.first);
4494 DAG.setRoot(Result.second);
4495
4496 if (LandingPad && MMI) {
4497 // Insert a label at the end of the invoke call to mark the try range. This
4498 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4499 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004500 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4501 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004502
4503 // Inform MachineModuleInfo of range.
4504 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4505 }
4506}
4507
4508
4509void SelectionDAGLowering::visitCall(CallInst &I) {
4510 const char *RenameFn = 0;
4511 if (Function *F = I.getCalledFunction()) {
4512 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004513 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4514 if (II) {
4515 if (unsigned IID = II->getIntrinsicID(F)) {
4516 RenameFn = visitIntrinsicCall(I, IID);
4517 if (!RenameFn)
4518 return;
4519 }
4520 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004521 if (unsigned IID = F->getIntrinsicID()) {
4522 RenameFn = visitIntrinsicCall(I, IID);
4523 if (!RenameFn)
4524 return;
4525 }
4526 }
4527
4528 // Check for well-known libc/libm calls. If the function is internal, it
4529 // can't be a library call.
4530 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004531 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004532 const char *NameStr = F->getNameStart();
4533 if (NameStr[0] == 'c' &&
4534 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4535 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4536 if (I.getNumOperands() == 3 && // Basic sanity checks.
4537 I.getOperand(1)->getType()->isFloatingPoint() &&
4538 I.getType() == I.getOperand(1)->getType() &&
4539 I.getType() == I.getOperand(2)->getType()) {
4540 SDValue LHS = getValue(I.getOperand(1));
4541 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004542 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004543 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004544 return;
4545 }
4546 } else if (NameStr[0] == 'f' &&
4547 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4548 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4549 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4550 if (I.getNumOperands() == 2 && // Basic sanity checks.
4551 I.getOperand(1)->getType()->isFloatingPoint() &&
4552 I.getType() == I.getOperand(1)->getType()) {
4553 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004554 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004555 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004556 return;
4557 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004558 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004559 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4560 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4561 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4562 if (I.getNumOperands() == 2 && // Basic sanity checks.
4563 I.getOperand(1)->getType()->isFloatingPoint() &&
4564 I.getType() == I.getOperand(1)->getType()) {
4565 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004566 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004567 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004568 return;
4569 }
4570 } else if (NameStr[0] == 'c' &&
4571 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4572 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4573 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4574 if (I.getNumOperands() == 2 && // Basic sanity checks.
4575 I.getOperand(1)->getType()->isFloatingPoint() &&
4576 I.getType() == I.getOperand(1)->getType()) {
4577 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004578 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004579 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004580 return;
4581 }
4582 }
4583 }
4584 } else if (isa<InlineAsm>(I.getOperand(0))) {
4585 visitInlineAsm(&I);
4586 return;
4587 }
4588
4589 SDValue Callee;
4590 if (!RenameFn)
4591 Callee = getValue(I.getOperand(0));
4592 else
Bill Wendling056292f2008-09-16 21:48:12 +00004593 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004594
4595 LowerCallTo(&I, Callee, I.isTailCall());
4596}
4597
4598
4599/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004600/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004601/// Chain/Flag as the input and updates them for the output Chain/Flag.
4602/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004603SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004604 SDValue &Chain,
4605 SDValue *Flag) const {
4606 // Assemble the legal parts into the final values.
4607 SmallVector<SDValue, 4> Values(ValueVTs.size());
4608 SmallVector<SDValue, 8> Parts;
4609 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4610 // Copy the legal parts from the registers.
4611 MVT ValueVT = ValueVTs[Value];
4612 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4613 MVT RegisterVT = RegVTs[Value];
4614
4615 Parts.resize(NumRegs);
4616 for (unsigned i = 0; i != NumRegs; ++i) {
4617 SDValue P;
4618 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004619 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004620 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004621 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004622 *Flag = P.getValue(2);
4623 }
4624 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004625
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004626 // If the source register was virtual and if we know something about it,
4627 // add an assert node.
4628 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4629 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4630 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4631 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4632 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4633 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004634
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004635 unsigned RegSize = RegisterVT.getSizeInBits();
4636 unsigned NumSignBits = LOI.NumSignBits;
4637 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004638
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004639 // FIXME: We capture more information than the dag can represent. For
4640 // now, just use the tightest assertzext/assertsext possible.
4641 bool isSExt = true;
4642 MVT FromVT(MVT::Other);
4643 if (NumSignBits == RegSize)
4644 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4645 else if (NumZeroBits >= RegSize-1)
4646 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4647 else if (NumSignBits > RegSize-8)
4648 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004649 else if (NumZeroBits >= RegSize-8)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004650 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4651 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004652 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004653 else if (NumZeroBits >= RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004654 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004655 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004656 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004657 else if (NumZeroBits >= RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004658 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004659
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004660 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004661 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004662 RegisterVT, P, DAG.getValueType(FromVT));
4663
4664 }
4665 }
4666 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004667
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004668 Parts[i] = P;
4669 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004670
Scott Michelfdc40a02009-02-17 22:15:04 +00004671 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004672 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004673 Part += NumRegs;
4674 Parts.clear();
4675 }
4676
Dale Johannesen66978ee2009-01-31 02:22:37 +00004677 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004678 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4679 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004680}
4681
4682/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004683/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004684/// Chain/Flag as the input and updates them for the output Chain/Flag.
4685/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004686void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004687 SDValue &Chain, SDValue *Flag) const {
4688 // Get the list of the values's legal parts.
4689 unsigned NumRegs = Regs.size();
4690 SmallVector<SDValue, 8> Parts(NumRegs);
4691 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4692 MVT ValueVT = ValueVTs[Value];
4693 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4694 MVT RegisterVT = RegVTs[Value];
4695
Dale Johannesen66978ee2009-01-31 02:22:37 +00004696 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004697 &Parts[Part], NumParts, RegisterVT);
4698 Part += NumParts;
4699 }
4700
4701 // Copy the parts into the registers.
4702 SmallVector<SDValue, 8> Chains(NumRegs);
4703 for (unsigned i = 0; i != NumRegs; ++i) {
4704 SDValue Part;
4705 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004706 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004707 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004708 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004709 *Flag = Part.getValue(1);
4710 }
4711 Chains[i] = Part.getValue(0);
4712 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004713
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004714 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004715 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004716 // flagged to it. That is the CopyToReg nodes and the user are considered
4717 // a single scheduling unit. If we create a TokenFactor and return it as
4718 // chain, then the TokenFactor is both a predecessor (operand) of the
4719 // user as well as a successor (the TF operands are flagged to the user).
4720 // c1, f1 = CopyToReg
4721 // c2, f2 = CopyToReg
4722 // c3 = TokenFactor c1, c2
4723 // ...
4724 // = op c3, ..., f2
4725 Chain = Chains[NumRegs-1];
4726 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004727 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004728}
4729
4730/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004731/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004732/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004733void RegsForValue::AddInlineAsmOperands(unsigned Code,
4734 bool HasMatching,unsigned MatchingIdx,
4735 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004736 std::vector<SDValue> &Ops) const {
4737 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004738 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4739 unsigned Flag = Code | (Regs.size() << 3);
4740 if (HasMatching)
4741 Flag |= 0x80000000 | (MatchingIdx << 16);
4742 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004743 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4744 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4745 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004746 for (unsigned i = 0; i != NumRegs; ++i) {
4747 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004748 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004749 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004750 }
4751}
4752
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004753/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004754/// i.e. it isn't a stack pointer or some other special register, return the
4755/// register class for the register. Otherwise, return null.
4756static const TargetRegisterClass *
4757isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4758 const TargetLowering &TLI,
4759 const TargetRegisterInfo *TRI) {
4760 MVT FoundVT = MVT::Other;
4761 const TargetRegisterClass *FoundRC = 0;
4762 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4763 E = TRI->regclass_end(); RCI != E; ++RCI) {
4764 MVT ThisVT = MVT::Other;
4765
4766 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004767 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004768 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4769 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4770 I != E; ++I) {
4771 if (TLI.isTypeLegal(*I)) {
4772 // If we have already found this register in a different register class,
4773 // choose the one with the largest VT specified. For example, on
4774 // PowerPC, we favor f64 register classes over f32.
4775 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4776 ThisVT = *I;
4777 break;
4778 }
4779 }
4780 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004781
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004782 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004783
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004784 // NOTE: This isn't ideal. In particular, this might allocate the
4785 // frame pointer in functions that need it (due to them not being taken
4786 // out of allocation, because a variable sized allocation hasn't been seen
4787 // yet). This is a slight code pessimization, but should still work.
4788 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4789 E = RC->allocation_order_end(MF); I != E; ++I)
4790 if (*I == Reg) {
4791 // We found a matching register class. Keep looking at others in case
4792 // we find one with larger registers that this physreg is also in.
4793 FoundRC = RC;
4794 FoundVT = ThisVT;
4795 break;
4796 }
4797 }
4798 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004799}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004800
4801
4802namespace llvm {
4803/// AsmOperandInfo - This contains information for each constraint that we are
4804/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004805class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004806 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004807public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004808 /// CallOperand - If this is the result output operand or a clobber
4809 /// this is null, otherwise it is the incoming operand to the CallInst.
4810 /// This gets modified as the asm is processed.
4811 SDValue CallOperand;
4812
4813 /// AssignedRegs - If this is a register or register class operand, this
4814 /// contains the set of register corresponding to the operand.
4815 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004816
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004817 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4818 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4819 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004820
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004821 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4822 /// busy in OutputRegs/InputRegs.
4823 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004824 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004825 std::set<unsigned> &InputRegs,
4826 const TargetRegisterInfo &TRI) const {
4827 if (isOutReg) {
4828 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4829 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4830 }
4831 if (isInReg) {
4832 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4833 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4834 }
4835 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004836
Chris Lattner81249c92008-10-17 17:05:25 +00004837 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4838 /// corresponds to. If there is no Value* for this operand, it returns
4839 /// MVT::Other.
4840 MVT getCallOperandValMVT(const TargetLowering &TLI,
4841 const TargetData *TD) const {
4842 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004843
Chris Lattner81249c92008-10-17 17:05:25 +00004844 if (isa<BasicBlock>(CallOperandVal))
4845 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004846
Chris Lattner81249c92008-10-17 17:05:25 +00004847 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004848
Chris Lattner81249c92008-10-17 17:05:25 +00004849 // If this is an indirect operand, the operand is a pointer to the
4850 // accessed type.
4851 if (isIndirect)
4852 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004853
Chris Lattner81249c92008-10-17 17:05:25 +00004854 // If OpTy is not a single value, it may be a struct/union that we
4855 // can tile with integers.
4856 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4857 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4858 switch (BitSize) {
4859 default: break;
4860 case 1:
4861 case 8:
4862 case 16:
4863 case 32:
4864 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004865 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004866 OpTy = IntegerType::get(BitSize);
4867 break;
4868 }
4869 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004870
Chris Lattner81249c92008-10-17 17:05:25 +00004871 return TLI.getValueType(OpTy, true);
4872 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004873
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004874private:
4875 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4876 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004877 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004878 const TargetRegisterInfo &TRI) {
4879 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4880 Regs.insert(Reg);
4881 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4882 for (; *Aliases; ++Aliases)
4883 Regs.insert(*Aliases);
4884 }
4885};
4886} // end llvm namespace.
4887
4888
4889/// GetRegistersForValue - Assign registers (virtual or physical) for the
4890/// specified operand. We prefer to assign virtual registers, to allow the
4891/// register allocator handle the assignment process. However, if the asm uses
4892/// features that we can't model on machineinstrs, we have SDISel do the
4893/// allocation. This produces generally horrible, but correct, code.
4894///
4895/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004896/// Input and OutputRegs are the set of already allocated physical registers.
4897///
4898void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004899GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004900 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004901 std::set<unsigned> &InputRegs) {
4902 // Compute whether this value requires an input register, an output register,
4903 // or both.
4904 bool isOutReg = false;
4905 bool isInReg = false;
4906 switch (OpInfo.Type) {
4907 case InlineAsm::isOutput:
4908 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004909
4910 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004911 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004912 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004913 break;
4914 case InlineAsm::isInput:
4915 isInReg = true;
4916 isOutReg = false;
4917 break;
4918 case InlineAsm::isClobber:
4919 isOutReg = true;
4920 isInReg = true;
4921 break;
4922 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004923
4924
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004925 MachineFunction &MF = DAG.getMachineFunction();
4926 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004927
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004928 // If this is a constraint for a single physreg, or a constraint for a
4929 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004930 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004931 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4932 OpInfo.ConstraintVT);
4933
4934 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004935 if (OpInfo.ConstraintVT != MVT::Other) {
4936 // If this is a FP input in an integer register (or visa versa) insert a bit
4937 // cast of the input value. More generally, handle any case where the input
4938 // value disagrees with the register class we plan to stick this in.
4939 if (OpInfo.Type == InlineAsm::isInput &&
4940 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4941 // Try to convert to the first MVT that the reg class contains. If the
4942 // types are identical size, use a bitcast to convert (e.g. two differing
4943 // vector types).
4944 MVT RegVT = *PhysReg.second->vt_begin();
4945 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004946 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004947 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004948 OpInfo.ConstraintVT = RegVT;
4949 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4950 // If the input is a FP value and we want it in FP registers, do a
4951 // bitcast to the corresponding integer type. This turns an f64 value
4952 // into i64, which can be passed with two i32 values on a 32-bit
4953 // machine.
4954 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004955 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004956 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004957 OpInfo.ConstraintVT = RegVT;
4958 }
4959 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004960
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004961 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004962 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004963
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004964 MVT RegVT;
4965 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004966
4967 // If this is a constraint for a specific physical register, like {r17},
4968 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004969 if (unsigned AssignedReg = PhysReg.first) {
4970 const TargetRegisterClass *RC = PhysReg.second;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004971 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004972 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004973
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004974 // Get the actual register value type. This is important, because the user
4975 // may have asked for (e.g.) the AX register in i32 type. We need to
4976 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004977 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004978
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004979 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004980 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004981
4982 // If this is an expanded reference, add the rest of the regs to Regs.
4983 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004984 TargetRegisterClass::iterator I = RC->begin();
4985 for (; *I != AssignedReg; ++I)
4986 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004987
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004988 // Already added the first reg.
4989 --NumRegs; ++I;
4990 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004991 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004992 Regs.push_back(*I);
4993 }
4994 }
4995 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4996 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4997 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4998 return;
4999 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005000
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005001 // Otherwise, if this was a reference to an LLVM register class, create vregs
5002 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00005003 if (const TargetRegisterClass *RC = PhysReg.second) {
5004 RegVT = *RC->vt_begin();
Evan Chengfb112882009-03-23 08:01:15 +00005005 if (OpInfo.ConstraintVT == MVT::Other)
5006 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005007
Evan Chengfb112882009-03-23 08:01:15 +00005008 // Create the appropriate number of virtual registers.
5009 MachineRegisterInfo &RegInfo = MF.getRegInfo();
5010 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00005011 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005012
Evan Chengfb112882009-03-23 08:01:15 +00005013 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
5014 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005015 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005016
5017 // This is a reference to a register class that doesn't directly correspond
5018 // to an LLVM register class. Allocate NumRegs consecutive, available,
5019 // registers from the class.
5020 std::vector<unsigned> RegClassRegs
5021 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
5022 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005023
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005024 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
5025 unsigned NumAllocated = 0;
5026 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
5027 unsigned Reg = RegClassRegs[i];
5028 // See if this register is available.
5029 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
5030 (isInReg && InputRegs.count(Reg))) { // Already used.
5031 // Make sure we find consecutive registers.
5032 NumAllocated = 0;
5033 continue;
5034 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005035
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005036 // Check to see if this register is allocatable (i.e. don't give out the
5037 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00005038 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
5039 if (!RC) { // Couldn't allocate this register.
5040 // Reset NumAllocated to make sure we return consecutive registers.
5041 NumAllocated = 0;
5042 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005043 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005044
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005045 // Okay, this register is good, we can use it.
5046 ++NumAllocated;
5047
5048 // If we allocated enough consecutive registers, succeed.
5049 if (NumAllocated == NumRegs) {
5050 unsigned RegStart = (i-NumAllocated)+1;
5051 unsigned RegEnd = i+1;
5052 // Mark all of the allocated registers used.
5053 for (unsigned i = RegStart; i != RegEnd; ++i)
5054 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005055
5056 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005057 OpInfo.ConstraintVT);
5058 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5059 return;
5060 }
5061 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005062
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005063 // Otherwise, we couldn't allocate enough registers for this.
5064}
5065
Evan Chengda43bcf2008-09-24 00:05:32 +00005066/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5067/// processed uses a memory 'm' constraint.
5068static bool
5069hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005070 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005071 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5072 InlineAsm::ConstraintInfo &CI = CInfos[i];
5073 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5074 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5075 if (CType == TargetLowering::C_Memory)
5076 return true;
5077 }
Chris Lattner6c147292009-04-30 00:48:50 +00005078
5079 // Indirect operand accesses access memory.
5080 if (CI.isIndirect)
5081 return true;
Evan Chengda43bcf2008-09-24 00:05:32 +00005082 }
5083
5084 return false;
5085}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005086
5087/// visitInlineAsm - Handle a call to an InlineAsm object.
5088///
5089void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5090 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5091
5092 /// ConstraintOperands - Information about all of the constraints.
5093 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005094
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005095 std::set<unsigned> OutputRegs, InputRegs;
5096
5097 // Do a prepass over the constraints, canonicalizing them, and building up the
5098 // ConstraintOperands list.
5099 std::vector<InlineAsm::ConstraintInfo>
5100 ConstraintInfos = IA->ParseConstraints();
5101
Evan Chengda43bcf2008-09-24 00:05:32 +00005102 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Chris Lattner6c147292009-04-30 00:48:50 +00005103
5104 SDValue Chain, Flag;
5105
5106 // We won't need to flush pending loads if this asm doesn't touch
5107 // memory and is nonvolatile.
5108 if (hasMemory || IA->hasSideEffects())
Dale Johannesen97d14fc2009-04-18 00:09:40 +00005109 Chain = getRoot();
Chris Lattner6c147292009-04-30 00:48:50 +00005110 else
5111 Chain = DAG.getRoot();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005112
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005113 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5114 unsigned ResNo = 0; // ResNo - The result number of the next output.
5115 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5116 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5117 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005118
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005119 MVT OpVT = MVT::Other;
5120
5121 // Compute the value type for each operand.
5122 switch (OpInfo.Type) {
5123 case InlineAsm::isOutput:
5124 // Indirect outputs just consume an argument.
5125 if (OpInfo.isIndirect) {
5126 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5127 break;
5128 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005129
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005130 // The return value of the call is this value. As such, there is no
5131 // corresponding argument.
5132 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5133 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5134 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5135 } else {
5136 assert(ResNo == 0 && "Asm only has one result!");
5137 OpVT = TLI.getValueType(CS.getType());
5138 }
5139 ++ResNo;
5140 break;
5141 case InlineAsm::isInput:
5142 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5143 break;
5144 case InlineAsm::isClobber:
5145 // Nothing to do.
5146 break;
5147 }
5148
5149 // If this is an input or an indirect output, process the call argument.
5150 // BasicBlocks are labels, currently appearing only in asm's.
5151 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005152 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005153 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005154 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005155 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005156 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005157
Chris Lattner81249c92008-10-17 17:05:25 +00005158 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005159 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005160
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005161 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005162 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005163
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005164 // Second pass over the constraints: compute which constraint option to use
5165 // and assign registers to constraints that want a specific physreg.
5166 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5167 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005168
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005169 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005170 // matching input. If their types mismatch, e.g. one is an integer, the
5171 // other is floating point, or their sizes are different, flag it as an
5172 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005173 if (OpInfo.hasMatchingInput()) {
5174 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5175 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005176 if ((OpInfo.ConstraintVT.isInteger() !=
5177 Input.ConstraintVT.isInteger()) ||
5178 (OpInfo.ConstraintVT.getSizeInBits() !=
5179 Input.ConstraintVT.getSizeInBits())) {
Daniel Dunbar4cbb1732009-04-13 22:26:09 +00005180 cerr << "llvm: error: Unsupported asm: input constraint with a "
5181 << "matching output constraint of incompatible type!\n";
Evan Cheng09dc9c02008-12-16 18:21:39 +00005182 exit(1);
5183 }
5184 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005185 }
5186 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005187
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005188 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005189 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005190
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005191 // If this is a memory input, and if the operand is not indirect, do what we
5192 // need to to provide an address for the memory input.
5193 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5194 !OpInfo.isIndirect) {
5195 assert(OpInfo.Type == InlineAsm::isInput &&
5196 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005197
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005198 // Memory operands really want the address of the value. If we don't have
5199 // an indirect input, put it in the constpool if we can, otherwise spill
5200 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005201
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005202 // If the operand is a float, integer, or vector constant, spill to a
5203 // constant pool entry to get its address.
5204 Value *OpVal = OpInfo.CallOperandVal;
5205 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5206 isa<ConstantVector>(OpVal)) {
5207 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5208 TLI.getPointerTy());
5209 } else {
5210 // Otherwise, create a stack slot and emit a store to it before the
5211 // asm.
5212 const Type *Ty = OpVal->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005213 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005214 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5215 MachineFunction &MF = DAG.getMachineFunction();
5216 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5217 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005218 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005219 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005220 OpInfo.CallOperand = StackSlot;
5221 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005222
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005223 // There is no longer a Value* corresponding to this operand.
5224 OpInfo.CallOperandVal = 0;
5225 // It is now an indirect operand.
5226 OpInfo.isIndirect = true;
5227 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005228
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005229 // If this constraint is for a specific register, allocate it before
5230 // anything else.
5231 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005232 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005233 }
5234 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005235
5236
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005237 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005238 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005239 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5240 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005241
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005242 // C_Register operands have already been allocated, Other/Memory don't need
5243 // to be.
5244 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005245 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005246 }
5247
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005248 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5249 std::vector<SDValue> AsmNodeOperands;
5250 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5251 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005252 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005253
5254
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005255 // Loop over all of the inputs, copying the operand values into the
5256 // appropriate registers and processing the output regs.
5257 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005258
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005259 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5260 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005261
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005262 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5263 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5264
5265 switch (OpInfo.Type) {
5266 case InlineAsm::isOutput: {
5267 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5268 OpInfo.ConstraintType != TargetLowering::C_Register) {
5269 // Memory output, or 'other' output (e.g. 'X' constraint).
5270 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5271
5272 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005273 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5274 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005275 TLI.getPointerTy()));
5276 AsmNodeOperands.push_back(OpInfo.CallOperand);
5277 break;
5278 }
5279
5280 // Otherwise, this is a register or register class output.
5281
5282 // Copy the output from the appropriate register. Find a register that
5283 // we can use.
5284 if (OpInfo.AssignedRegs.Regs.empty()) {
Daniel Dunbar4cbb1732009-04-13 22:26:09 +00005285 cerr << "llvm: error: Couldn't allocate output reg for constraint '"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005286 << OpInfo.ConstraintCode << "'!\n";
5287 exit(1);
5288 }
5289
5290 // If this is an indirect operand, store through the pointer after the
5291 // asm.
5292 if (OpInfo.isIndirect) {
5293 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5294 OpInfo.CallOperandVal));
5295 } else {
5296 // This is the result value of the call.
5297 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5298 // Concatenate this output onto the outputs list.
5299 RetValRegs.append(OpInfo.AssignedRegs);
5300 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005302 // Add information to the INLINEASM node to know that this register is
5303 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005304 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5305 6 /* EARLYCLOBBER REGDEF */ :
5306 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005307 false,
5308 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005309 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005310 break;
5311 }
5312 case InlineAsm::isInput: {
5313 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005314
Chris Lattner6bdcda32008-10-17 16:47:46 +00005315 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005316 // If this is required to match an output register we have already set,
5317 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005318 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005319
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005320 // Scan until we find the definition we already emitted of this operand.
5321 // When we find it, create a RegsForValue operand.
5322 unsigned CurOp = 2; // The first operand.
5323 for (; OperandNo; --OperandNo) {
5324 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005325 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005326 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005327 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5328 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5329 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005330 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005331 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005332 }
5333
Evan Cheng697cbbf2009-03-20 18:03:34 +00005334 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005335 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005336 if ((OpFlag & 7) == 2 /*REGDEF*/
5337 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5338 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005339 RegsForValue MatchedRegs;
5340 MatchedRegs.TLI = &TLI;
5341 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Evan Chengfb112882009-03-23 08:01:15 +00005342 MVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
5343 MatchedRegs.RegVTs.push_back(RegVT);
5344 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005345 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005346 i != e; ++i)
5347 MatchedRegs.Regs.
5348 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005349
5350 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005351 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5352 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005353 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5354 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005355 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005356 break;
5357 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005358 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5359 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5360 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005361 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005362 // See InlineAsm.h isUseOperandTiedToDef.
5363 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005364 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005365 TLI.getPointerTy()));
5366 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5367 break;
5368 }
5369 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005370
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005371 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005372 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005373 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005374
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005375 std::vector<SDValue> Ops;
5376 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005377 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005378 if (Ops.empty()) {
Daniel Dunbar4cbb1732009-04-13 22:26:09 +00005379 cerr << "llvm: error: Invalid operand for inline asm constraint '"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005380 << OpInfo.ConstraintCode << "'!\n";
5381 exit(1);
5382 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005383
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005384 // Add information to the INLINEASM node to know about this input.
5385 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005386 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005387 TLI.getPointerTy()));
5388 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5389 break;
5390 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5391 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5392 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5393 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005394
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005395 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005396 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5397 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005398 TLI.getPointerTy()));
5399 AsmNodeOperands.push_back(InOperandVal);
5400 break;
5401 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005402
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005403 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5404 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5405 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005406 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005407 "Don't know how to handle indirect register inputs yet!");
5408
5409 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005410 if (OpInfo.AssignedRegs.Regs.empty()) {
Daniel Dunbar4cbb1732009-04-13 22:26:09 +00005411 cerr << "llvm: error: Couldn't allocate output reg for constraint '"
Evan Chengaa765b82008-09-25 00:14:04 +00005412 << OpInfo.ConstraintCode << "'!\n";
5413 exit(1);
5414 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005415
Dale Johannesen66978ee2009-01-31 02:22:37 +00005416 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5417 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005418
Evan Cheng697cbbf2009-03-20 18:03:34 +00005419 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005420 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005421 break;
5422 }
5423 case InlineAsm::isClobber: {
5424 // Add the clobbered value to the operand list, so that the register
5425 // allocator is aware that the physreg got clobbered.
5426 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005427 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005428 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005429 break;
5430 }
5431 }
5432 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005433
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005434 // Finish up input operands.
5435 AsmNodeOperands[0] = Chain;
5436 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005437
Dale Johannesen66978ee2009-01-31 02:22:37 +00005438 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanfc166572009-04-09 23:54:40 +00005439 DAG.getVTList(MVT::Other, MVT::Flag),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005440 &AsmNodeOperands[0], AsmNodeOperands.size());
5441 Flag = Chain.getValue(1);
5442
5443 // If this asm returns a register value, copy the result from that register
5444 // and set it as the value of the call.
5445 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005446 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005447 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005448
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005449 // FIXME: Why don't we do this for inline asms with MRVs?
5450 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5451 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005452
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005453 // If any of the results of the inline asm is a vector, it may have the
5454 // wrong width/num elts. This can happen for register classes that can
5455 // contain multiple different value types. The preg or vreg allocated may
5456 // not have the same VT as was expected. Convert it to the right type
5457 // with bit_convert.
5458 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005459 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005460 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005461
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005462 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005463 ResultType.isInteger() && Val.getValueType().isInteger()) {
5464 // If a result value was tied to an input value, the computed result may
5465 // have a wider width than the expected result. Extract the relevant
5466 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005467 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005468 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005469
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005470 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005471 }
Dan Gohman95915732008-10-18 01:03:45 +00005472
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005473 setValue(CS.getInstruction(), Val);
Dale Johannesenec65a7d2009-04-14 00:56:56 +00005474 // Don't need to use this as a chain in this case.
5475 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty())
5476 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005477 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005478
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005479 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005480
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005481 // Process indirect outputs, first output all of the flagged copies out of
5482 // physregs.
5483 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5484 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5485 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005486 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5487 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005488 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
Chris Lattner6c147292009-04-30 00:48:50 +00005489
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005490 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005491
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005492 // Emit the non-flagged stores from the physregs.
5493 SmallVector<SDValue, 8> OutChains;
5494 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005495 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005496 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005497 getValue(StoresToEmit[i].second),
5498 StoresToEmit[i].second, 0));
5499 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005500 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005501 &OutChains[0], OutChains.size());
5502 DAG.setRoot(Chain);
5503}
5504
5505
5506void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5507 SDValue Src = getValue(I.getOperand(0));
5508
Chris Lattner0b18e592009-03-17 19:36:00 +00005509 // Scale up by the type size in the original i32 type width. Various
5510 // mid-level optimizers may make assumptions about demanded bits etc from the
5511 // i32-ness of the optimizer: we do not want to promote to i64 and then
5512 // multiply on 64-bit targets.
5513 // FIXME: Malloc inst should go away: PR715.
5514 uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType());
5515 if (ElementSize != 1)
5516 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5517 Src, DAG.getConstant(ElementSize, Src.getValueType()));
5518
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005519 MVT IntPtr = TLI.getPointerTy();
5520
5521 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005522 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005523 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005524 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005525
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005526 TargetLowering::ArgListTy Args;
5527 TargetLowering::ArgListEntry Entry;
5528 Entry.Node = Src;
5529 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5530 Args.push_back(Entry);
5531
5532 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005533 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005534 CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005535 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005536 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005537 setValue(&I, Result.first); // Pointers always fit in registers
5538 DAG.setRoot(Result.second);
5539}
5540
5541void SelectionDAGLowering::visitFree(FreeInst &I) {
5542 TargetLowering::ArgListTy Args;
5543 TargetLowering::ArgListEntry Entry;
5544 Entry.Node = getValue(I.getOperand(0));
5545 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5546 Args.push_back(Entry);
5547 MVT IntPtr = TLI.getPointerTy();
5548 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005549 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Dan Gohman1937e2f2008-09-16 01:42:28 +00005550 CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005551 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005552 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005553 DAG.setRoot(Result.second);
5554}
5555
5556void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005557 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005558 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005559 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005560 DAG.getSrcValue(I.getOperand(1))));
5561}
5562
5563void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005564 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5565 getRoot(), getValue(I.getOperand(0)),
5566 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005567 setValue(&I, V);
5568 DAG.setRoot(V.getValue(1));
5569}
5570
5571void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005572 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005573 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005574 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005575 DAG.getSrcValue(I.getOperand(1))));
5576}
5577
5578void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005579 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005580 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005581 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005582 getValue(I.getOperand(2)),
5583 DAG.getSrcValue(I.getOperand(1)),
5584 DAG.getSrcValue(I.getOperand(2))));
5585}
5586
5587/// TargetLowering::LowerArguments - This is the default LowerArguments
5588/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005589/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005590/// integrated into SDISel.
5591void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005592 SmallVectorImpl<SDValue> &ArgValues,
5593 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005594 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5595 SmallVector<SDValue, 3+16> Ops;
5596 Ops.push_back(DAG.getRoot());
5597 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5598 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5599
5600 // Add one result value for each formal argument.
5601 SmallVector<MVT, 16> RetVals;
5602 unsigned j = 1;
5603 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5604 I != E; ++I, ++j) {
5605 SmallVector<MVT, 4> ValueVTs;
5606 ComputeValueVTs(*this, I->getType(), ValueVTs);
5607 for (unsigned Value = 0, NumValues = ValueVTs.size();
5608 Value != NumValues; ++Value) {
5609 MVT VT = ValueVTs[Value];
5610 const Type *ArgTy = VT.getTypeForMVT();
5611 ISD::ArgFlagsTy Flags;
5612 unsigned OriginalAlignment =
5613 getTargetData()->getABITypeAlignment(ArgTy);
5614
Devang Patel05988662008-09-25 21:00:45 +00005615 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005616 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005617 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005618 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005619 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005620 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005621 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005622 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005623 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005624 Flags.setByVal();
5625 const PointerType *Ty = cast<PointerType>(I->getType());
5626 const Type *ElementTy = Ty->getElementType();
5627 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005628 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005629 // For ByVal, alignment should be passed from FE. BE will guess if
5630 // this info is not there but there are cases it cannot get right.
5631 if (F.getParamAlignment(j))
5632 FrameAlign = F.getParamAlignment(j);
5633 Flags.setByValAlign(FrameAlign);
5634 Flags.setByValSize(FrameSize);
5635 }
Devang Patel05988662008-09-25 21:00:45 +00005636 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005637 Flags.setNest();
5638 Flags.setOrigAlign(OriginalAlignment);
5639
5640 MVT RegisterVT = getRegisterType(VT);
5641 unsigned NumRegs = getNumRegisters(VT);
5642 for (unsigned i = 0; i != NumRegs; ++i) {
5643 RetVals.push_back(RegisterVT);
5644 ISD::ArgFlagsTy MyFlags = Flags;
5645 if (NumRegs > 1 && i == 0)
5646 MyFlags.setSplit();
5647 // if it isn't first piece, alignment must be 1
5648 else if (i > 0)
5649 MyFlags.setOrigAlign(1);
5650 Ops.push_back(DAG.getArgFlags(MyFlags));
5651 }
5652 }
5653 }
5654
5655 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005656
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005657 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005658 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005659 DAG.getVTList(&RetVals[0], RetVals.size()),
5660 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005661
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005662 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5663 // allows exposing the loads that may be part of the argument access to the
5664 // first DAGCombiner pass.
5665 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005666
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005667 // The number of results should match up, except that the lowered one may have
5668 // an extra flag result.
5669 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5670 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5671 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5672 && "Lowering produced unexpected number of results!");
5673
5674 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5675 if (Result != TmpRes.getNode() && Result->use_empty()) {
5676 HandleSDNode Dummy(DAG.getRoot());
5677 DAG.RemoveDeadNode(Result);
5678 }
5679
5680 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005681
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005682 unsigned NumArgRegs = Result->getNumValues() - 1;
5683 DAG.setRoot(SDValue(Result, NumArgRegs));
5684
5685 // Set up the return result vector.
5686 unsigned i = 0;
5687 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005688 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005689 ++I, ++Idx) {
5690 SmallVector<MVT, 4> ValueVTs;
5691 ComputeValueVTs(*this, I->getType(), ValueVTs);
5692 for (unsigned Value = 0, NumValues = ValueVTs.size();
5693 Value != NumValues; ++Value) {
5694 MVT VT = ValueVTs[Value];
5695 MVT PartVT = getRegisterType(VT);
5696
5697 unsigned NumParts = getNumRegisters(VT);
5698 SmallVector<SDValue, 4> Parts(NumParts);
5699 for (unsigned j = 0; j != NumParts; ++j)
5700 Parts[j] = SDValue(Result, i++);
5701
5702 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005703 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005704 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005705 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005706 AssertOp = ISD::AssertZext;
5707
Dale Johannesen66978ee2009-01-31 02:22:37 +00005708 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5709 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005710 }
5711 }
5712 assert(i == NumArgRegs && "Argument register count mismatch!");
5713}
5714
5715
5716/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5717/// implementation, which just inserts an ISD::CALL node, which is later custom
5718/// lowered by the target to something concrete. FIXME: When all targets are
5719/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5720std::pair<SDValue, SDValue>
5721TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5722 bool RetSExt, bool RetZExt, bool isVarArg,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005723 bool isInreg,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005724 unsigned CallingConv, bool isTailCall,
5725 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005726 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005727 assert((!isTailCall || PerformTailCallOpt) &&
5728 "isTailCall set when tail-call optimizations are disabled!");
5729
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005730 SmallVector<SDValue, 32> Ops;
5731 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005732 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005733
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005734 // Handle all of the outgoing arguments.
5735 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5736 SmallVector<MVT, 4> ValueVTs;
5737 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5738 for (unsigned Value = 0, NumValues = ValueVTs.size();
5739 Value != NumValues; ++Value) {
5740 MVT VT = ValueVTs[Value];
5741 const Type *ArgTy = VT.getTypeForMVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005742 SDValue Op = SDValue(Args[i].Node.getNode(),
5743 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005744 ISD::ArgFlagsTy Flags;
5745 unsigned OriginalAlignment =
5746 getTargetData()->getABITypeAlignment(ArgTy);
5747
5748 if (Args[i].isZExt)
5749 Flags.setZExt();
5750 if (Args[i].isSExt)
5751 Flags.setSExt();
5752 if (Args[i].isInReg)
5753 Flags.setInReg();
5754 if (Args[i].isSRet)
5755 Flags.setSRet();
5756 if (Args[i].isByVal) {
5757 Flags.setByVal();
5758 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5759 const Type *ElementTy = Ty->getElementType();
5760 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005761 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005762 // For ByVal, alignment should come from FE. BE will guess if this
5763 // info is not there but there are cases it cannot get right.
5764 if (Args[i].Alignment)
5765 FrameAlign = Args[i].Alignment;
5766 Flags.setByValAlign(FrameAlign);
5767 Flags.setByValSize(FrameSize);
5768 }
5769 if (Args[i].isNest)
5770 Flags.setNest();
5771 Flags.setOrigAlign(OriginalAlignment);
5772
5773 MVT PartVT = getRegisterType(VT);
5774 unsigned NumParts = getNumRegisters(VT);
5775 SmallVector<SDValue, 4> Parts(NumParts);
5776 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5777
5778 if (Args[i].isSExt)
5779 ExtendKind = ISD::SIGN_EXTEND;
5780 else if (Args[i].isZExt)
5781 ExtendKind = ISD::ZERO_EXTEND;
5782
Dale Johannesen66978ee2009-01-31 02:22:37 +00005783 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005784
5785 for (unsigned i = 0; i != NumParts; ++i) {
5786 // if it isn't first piece, alignment must be 1
5787 ISD::ArgFlagsTy MyFlags = Flags;
5788 if (NumParts > 1 && i == 0)
5789 MyFlags.setSplit();
5790 else if (i != 0)
5791 MyFlags.setOrigAlign(1);
5792
5793 Ops.push_back(Parts[i]);
5794 Ops.push_back(DAG.getArgFlags(MyFlags));
5795 }
5796 }
5797 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005798
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005799 // Figure out the result value types. We start by making a list of
5800 // the potentially illegal return value types.
5801 SmallVector<MVT, 4> LoweredRetTys;
5802 SmallVector<MVT, 4> RetTys;
5803 ComputeValueVTs(*this, RetTy, RetTys);
5804
5805 // Then we translate that to a list of legal types.
5806 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5807 MVT VT = RetTys[I];
5808 MVT RegisterVT = getRegisterType(VT);
5809 unsigned NumRegs = getNumRegisters(VT);
5810 for (unsigned i = 0; i != NumRegs; ++i)
5811 LoweredRetTys.push_back(RegisterVT);
5812 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005813
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005814 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005815
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005816 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005817 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005818 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005819 DAG.getVTList(&LoweredRetTys[0],
5820 LoweredRetTys.size()),
Dale Johannesen86098bd2008-09-26 19:31:26 +00005821 &Ops[0], Ops.size()
5822 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005823 Chain = Res.getValue(LoweredRetTys.size() - 1);
5824
5825 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005826 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005827 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5828
5829 if (RetSExt)
5830 AssertOp = ISD::AssertSext;
5831 else if (RetZExt)
5832 AssertOp = ISD::AssertZext;
5833
5834 SmallVector<SDValue, 4> ReturnValues;
5835 unsigned RegNo = 0;
5836 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5837 MVT VT = RetTys[I];
5838 MVT RegisterVT = getRegisterType(VT);
5839 unsigned NumRegs = getNumRegisters(VT);
5840 unsigned RegNoEnd = NumRegs + RegNo;
5841 SmallVector<SDValue, 4> Results;
5842 for (; RegNo != RegNoEnd; ++RegNo)
5843 Results.push_back(Res.getValue(RegNo));
5844 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005845 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005846 AssertOp);
5847 ReturnValues.push_back(ReturnValue);
5848 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005849 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005850 DAG.getVTList(&RetTys[0], RetTys.size()),
5851 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005852 }
5853
5854 return std::make_pair(Res, Chain);
5855}
5856
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005857void TargetLowering::LowerOperationWrapper(SDNode *N,
5858 SmallVectorImpl<SDValue> &Results,
5859 SelectionDAG &DAG) {
5860 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005861 if (Res.getNode())
5862 Results.push_back(Res);
5863}
5864
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005865SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
5866 assert(0 && "LowerOperation not implemented for this target!");
5867 abort();
5868 return SDValue();
5869}
5870
5871
5872void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5873 SDValue Op = getValue(V);
5874 assert((Op.getOpcode() != ISD::CopyFromReg ||
5875 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5876 "Copy from a reg to the same reg!");
5877 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5878
5879 RegsForValue RFV(TLI, Reg, V->getType());
5880 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005881 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005882 PendingExports.push_back(Chain);
5883}
5884
5885#include "llvm/CodeGen/SelectionDAGISel.h"
5886
5887void SelectionDAGISel::
5888LowerArguments(BasicBlock *LLVMBB) {
5889 // If this is the entry block, emit arguments.
5890 Function &F = *LLVMBB->getParent();
5891 SDValue OldRoot = SDL->DAG.getRoot();
5892 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005893 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005894
5895 unsigned a = 0;
5896 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5897 AI != E; ++AI) {
5898 SmallVector<MVT, 4> ValueVTs;
5899 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5900 unsigned NumValues = ValueVTs.size();
5901 if (!AI->use_empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005902 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues,
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005903 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005904 // If this argument is live outside of the entry block, insert a copy from
5905 // whereever we got it to the vreg that other BB's will reference it as.
Dan Gohmanad62f532009-04-23 23:13:24 +00005906 SDL->CopyToExportRegsIfNeeded(AI);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005907 }
5908 a += NumValues;
5909 }
5910
5911 // Finally, if the target has anything special to do, allow it to do so.
5912 // FIXME: this should insert code into the DAG!
5913 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5914}
5915
5916/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5917/// ensure constants are generated when needed. Remember the virtual registers
5918/// that need to be added to the Machine PHI nodes as input. We cannot just
5919/// directly add them, because expansion might result in multiple MBB's for one
5920/// BB. As such, the start of the BB might correspond to a different MBB than
5921/// the end.
5922///
5923void
5924SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5925 TerminatorInst *TI = LLVMBB->getTerminator();
5926
5927 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5928
5929 // Check successor nodes' PHI nodes that expect a constant to be available
5930 // from this block.
5931 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5932 BasicBlock *SuccBB = TI->getSuccessor(succ);
5933 if (!isa<PHINode>(SuccBB->begin())) continue;
5934 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005935
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005936 // If this terminator has multiple identical successors (common for
5937 // switches), only handle each succ once.
5938 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005939
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005940 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5941 PHINode *PN;
5942
5943 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5944 // nodes and Machine PHI nodes, but the incoming operands have not been
5945 // emitted yet.
5946 for (BasicBlock::iterator I = SuccBB->begin();
5947 (PN = dyn_cast<PHINode>(I)); ++I) {
5948 // Ignore dead phi's.
5949 if (PN->use_empty()) continue;
5950
5951 unsigned Reg;
5952 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5953
5954 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5955 unsigned &RegOut = SDL->ConstantsOut[C];
5956 if (RegOut == 0) {
5957 RegOut = FuncInfo->CreateRegForValue(C);
5958 SDL->CopyValueToVirtualRegister(C, RegOut);
5959 }
5960 Reg = RegOut;
5961 } else {
5962 Reg = FuncInfo->ValueMap[PHIOp];
5963 if (Reg == 0) {
5964 assert(isa<AllocaInst>(PHIOp) &&
5965 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5966 "Didn't codegen value into a register!??");
5967 Reg = FuncInfo->CreateRegForValue(PHIOp);
5968 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5969 }
5970 }
5971
5972 // Remember that this register needs to added to the machine PHI node as
5973 // the input for this MBB.
5974 SmallVector<MVT, 4> ValueVTs;
5975 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5976 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5977 MVT VT = ValueVTs[vti];
5978 unsigned NumRegisters = TLI.getNumRegisters(VT);
5979 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5980 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5981 Reg += NumRegisters;
5982 }
5983 }
5984 }
5985 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005986}
5987
Dan Gohman3df24e62008-09-03 23:12:08 +00005988/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5989/// supports legal types, and it emits MachineInstrs directly instead of
5990/// creating SelectionDAG nodes.
5991///
5992bool
5993SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5994 FastISel *F) {
5995 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005996
Dan Gohman3df24e62008-09-03 23:12:08 +00005997 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5998 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5999
6000 // Check successor nodes' PHI nodes that expect a constant to be available
6001 // from this block.
6002 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
6003 BasicBlock *SuccBB = TI->getSuccessor(succ);
6004 if (!isa<PHINode>(SuccBB->begin())) continue;
6005 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006006
Dan Gohman3df24e62008-09-03 23:12:08 +00006007 // If this terminator has multiple identical successors (common for
6008 // switches), only handle each succ once.
6009 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00006010
Dan Gohman3df24e62008-09-03 23:12:08 +00006011 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
6012 PHINode *PN;
6013
6014 // At this point we know that there is a 1-1 correspondence between LLVM PHI
6015 // nodes and Machine PHI nodes, but the incoming operands have not been
6016 // emitted yet.
6017 for (BasicBlock::iterator I = SuccBB->begin();
6018 (PN = dyn_cast<PHINode>(I)); ++I) {
6019 // Ignore dead phi's.
6020 if (PN->use_empty()) continue;
6021
6022 // Only handle legal types. Two interesting things to note here. First,
6023 // by bailing out early, we may leave behind some dead instructions,
6024 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
6025 // own moves. Second, this check is necessary becuase FastISel doesn't
6026 // use CreateRegForValue to create registers, so it always creates
6027 // exactly one register for each non-void instruction.
6028 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
6029 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00006030 // Promote MVT::i1.
6031 if (VT == MVT::i1)
6032 VT = TLI.getTypeToTransformTo(VT);
6033 else {
6034 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6035 return false;
6036 }
Dan Gohman3df24e62008-09-03 23:12:08 +00006037 }
6038
6039 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
6040
6041 unsigned Reg = F->getRegForValue(PHIOp);
6042 if (Reg == 0) {
6043 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
6044 return false;
6045 }
6046 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
6047 }
6048 }
6049
6050 return true;
6051}