blob: 0e8d9bee5ed1216dc0598201c9cf397e03099665 [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"
48#include "llvm/Target/TargetMachine.h"
49#include "llvm/Target/TargetOptions.h"
50#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000051#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000052#include "llvm/Support/Debug.h"
53#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000054#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000055#include <algorithm>
56using namespace llvm;
57
Dale Johannesen601d3c02008-09-05 01:48:15 +000058/// LimitFloatPrecision - Generate low-precision inline sequences for
59/// some float libcalls (6, 8 or 12 bits).
60static unsigned LimitFloatPrecision;
61
62static cl::opt<unsigned, true>
63LimitFPPrecision("limit-float-precision",
64 cl::desc("Generate low-precision inline sequences "
65 "for some float libcalls"),
66 cl::location(LimitFloatPrecision),
67 cl::init(0));
68
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000069/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
Dan Gohman2c91d102009-01-06 22:53:52 +000070/// of insertvalue or extractvalue indices that identify a member, return
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000071/// the linearized index of the start of the member.
72///
73static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
74 const unsigned *Indices,
75 const unsigned *IndicesEnd,
76 unsigned CurIndex = 0) {
77 // Base case: We're done.
78 if (Indices && Indices == IndicesEnd)
79 return CurIndex;
80
81 // Given a struct type, recursively traverse the elements.
82 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
83 for (StructType::element_iterator EB = STy->element_begin(),
84 EI = EB,
85 EE = STy->element_end();
86 EI != EE; ++EI) {
87 if (Indices && *Indices == unsigned(EI - EB))
88 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
89 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
90 }
Dan Gohman2c91d102009-01-06 22:53:52 +000091 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000092 }
93 // Given an array type, recursively traverse the elements.
94 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
95 const Type *EltTy = ATy->getElementType();
96 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
97 if (Indices && *Indices == i)
98 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
99 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
100 }
Dan Gohman2c91d102009-01-06 22:53:52 +0000101 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000102 }
103 // We haven't found the type we're looking for, so keep searching.
104 return CurIndex + 1;
105}
106
107/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
108/// MVTs that represent all the individual underlying
109/// non-aggregate types that comprise it.
110///
111/// If Offsets is non-null, it points to a vector to be filled in
112/// with the in-memory offsets of each of the individual values.
113///
114static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
115 SmallVectorImpl<MVT> &ValueVTs,
116 SmallVectorImpl<uint64_t> *Offsets = 0,
117 uint64_t StartingOffset = 0) {
118 // Given a struct type, recursively traverse the elements.
119 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
120 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
121 for (StructType::element_iterator EB = STy->element_begin(),
122 EI = EB,
123 EE = STy->element_end();
124 EI != EE; ++EI)
125 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
126 StartingOffset + SL->getElementOffset(EI - EB));
127 return;
128 }
129 // Given an array type, recursively traverse the elements.
130 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
131 const Type *EltTy = ATy->getElementType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000132 uint64_t EltSize = TLI.getTargetData()->getTypePaddedSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000133 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
134 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
135 StartingOffset + i * EltSize);
136 return;
137 }
138 // Base case: we can get an MVT for this LLVM IR type.
139 ValueVTs.push_back(TLI.getValueType(Ty));
140 if (Offsets)
141 Offsets->push_back(StartingOffset);
142}
143
Dan Gohman2a7c6712008-09-03 23:18:39 +0000144namespace llvm {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000145 /// RegsForValue - This struct represents the registers (physical or virtual)
146 /// that a particular set of values is assigned, and the type information about
147 /// the value. The most common situation is to represent one value at a time,
148 /// but struct or array values are handled element-wise as multiple values.
149 /// The splitting of aggregates is performed recursively, so that we never
150 /// have aggregate-typed registers. The values at this point do not necessarily
151 /// have legal types, so each value may require one or more registers of some
152 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000153 ///
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000154 struct VISIBILITY_HIDDEN RegsForValue {
155 /// TLI - The TargetLowering object.
156 ///
157 const TargetLowering *TLI;
158
159 /// ValueVTs - The value types of the values, which may not be legal, and
160 /// may need be promoted or synthesized from one or more registers.
161 ///
162 SmallVector<MVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000163
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000164 /// RegVTs - The value types of the registers. This is the same size as
165 /// ValueVTs and it records, for each value, what the type of the assigned
166 /// register or registers are. (Individual values are never synthesized
167 /// from more than one type of register.)
168 ///
169 /// With virtual registers, the contents of RegVTs is redundant with TLI's
170 /// getRegisterType member function, however when with physical registers
171 /// it is necessary to have a separate record of the types.
172 ///
173 SmallVector<MVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000174
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000175 /// Regs - This list holds the registers assigned to the values.
176 /// Each legal or promoted value requires one register, and each
177 /// expanded value requires multiple registers.
178 ///
179 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000180
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000181 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000182
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000183 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000184 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000185 MVT regvt, MVT valuevt)
186 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
187 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000188 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000189 const SmallVector<MVT, 4> &regvts,
190 const SmallVector<MVT, 4> &valuevts)
191 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
192 RegsForValue(const TargetLowering &tli,
193 unsigned Reg, const Type *Ty) : TLI(&tli) {
194 ComputeValueVTs(tli, Ty, ValueVTs);
195
196 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
197 MVT ValueVT = ValueVTs[Value];
198 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
199 MVT RegisterVT = TLI->getRegisterType(ValueVT);
200 for (unsigned i = 0; i != NumRegs; ++i)
201 Regs.push_back(Reg + i);
202 RegVTs.push_back(RegisterVT);
203 Reg += NumRegs;
204 }
205 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000206
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000207 /// append - Add the specified values to this one.
208 void append(const RegsForValue &RHS) {
209 TLI = RHS.TLI;
210 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
211 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
212 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
213 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000214
215
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000216 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000217 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000218 /// Chain/Flag as the input and updates them for the output Chain/Flag.
219 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000220 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000221 SDValue &Chain, SDValue *Flag) const;
222
223 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000224 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000225 /// Chain/Flag as the input and updates them for the output Chain/Flag.
226 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000227 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000228 SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000229
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000230 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000231 /// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000232 /// values added into it.
233 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
234 std::vector<SDValue> &Ops) const;
235 };
236}
237
238/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000239/// PHI nodes or outside of the basic block that defines it, or used by a
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000240/// switch or atomic instruction, which may expand to multiple basic blocks.
241static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
242 if (isa<PHINode>(I)) return true;
243 BasicBlock *BB = I->getParent();
244 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
245 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
246 // FIXME: Remove switchinst special case.
247 isa<SwitchInst>(*UI))
248 return true;
249 return false;
250}
251
252/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
253/// entry block, return true. This includes arguments used by switches, since
254/// the switch may expand into multiple basic blocks.
255static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) {
256 // With FastISel active, we may be splitting blocks, so force creation
257 // of virtual registers for all non-dead arguments.
Dan Gohman33134c42008-09-25 17:05:24 +0000258 // Don't force virtual registers for byval arguments though, because
259 // fast-isel can't handle those in all cases.
260 if (EnableFastISel && !A->hasByValAttr())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000261 return A->use_empty();
262
263 BasicBlock *Entry = A->getParent()->begin();
264 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
265 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
266 return false; // Use not in entry block.
267 return true;
268}
269
270FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli)
271 : TLI(tli) {
272}
273
274void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000275 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000276 bool EnableFastISel) {
277 Fn = &fn;
278 MF = &mf;
279 RegInfo = &MF->getRegInfo();
280
281 // Create a vreg for each argument register that is not dead and is used
282 // outside of the entry block for the function.
283 for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
284 AI != E; ++AI)
285 if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
286 InitializeRegForValue(AI);
287
288 // Initialize the mapping of values to registers. This is only set up for
289 // instruction values that are used outside of the block that defines
290 // them.
291 Function::iterator BB = Fn->begin(), EB = Fn->end();
292 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
293 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
294 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
295 const Type *Ty = AI->getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000296 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000297 unsigned Align =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000298 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
299 AI->getAlignment());
300
301 TySize *= CUI->getZExtValue(); // Get total allocated size.
302 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
303 StaticAllocaMap[AI] =
304 MF->getFrameInfo()->CreateStackObject(TySize, Align);
305 }
306
307 for (; BB != EB; ++BB)
308 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
309 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
310 if (!isa<AllocaInst>(I) ||
311 !StaticAllocaMap.count(cast<AllocaInst>(I)))
312 InitializeRegForValue(I);
313
314 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
315 // also creates the initial PHI MachineInstrs, though none of the input
316 // operands are populated.
317 for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) {
318 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
319 MBBMap[BB] = MBB;
320 MF->push_back(MBB);
321
322 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
323 // appropriate.
324 PHINode *PN;
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000325 DebugLoc DL;
326 for (BasicBlock::iterator
327 I = BB->begin(), E = BB->end(); I != E; ++I) {
328 if (CallInst *CI = dyn_cast<CallInst>(I)) {
329 if (Function *F = CI->getCalledFunction()) {
330 switch (F->getIntrinsicID()) {
331 default: break;
332 case Intrinsic::dbg_stoppoint: {
333 DwarfWriter *DW = DAG.getDwarfWriter();
334 DbgStopPointInst *SPI = cast<DbgStopPointInst>(I);
335
336 if (DW && DW->ValidDebugInfo(SPI->getContext())) {
337 DICompileUnit CU(cast<GlobalVariable>(SPI->getContext()));
Bill Wendling0582ae92009-03-13 04:39:26 +0000338 std::string Dir, FN;
339 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
340 CU.getFilename(FN));
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000341 unsigned idx = MF->getOrCreateDebugLocID(SrcFile,
Scott Michelfdc40a02009-02-17 22:15:04 +0000342 SPI->getLine(),
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000343 SPI->getColumn());
344 DL = DebugLoc::get(idx);
345 }
346
347 break;
348 }
349 case Intrinsic::dbg_func_start: {
350 DwarfWriter *DW = DAG.getDwarfWriter();
351 if (DW) {
352 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
353 Value *SP = FSI->getSubprogram();
354
355 if (DW->ValidDebugInfo(SP)) {
356 DISubprogram Subprogram(cast<GlobalVariable>(SP));
357 DICompileUnit CU(Subprogram.getCompileUnit());
Bill Wendling0582ae92009-03-13 04:39:26 +0000358 std::string Dir, FN;
359 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
360 CU.getFilename(FN));
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000361 unsigned Line = Subprogram.getLineNumber();
362 DL = DebugLoc::get(MF->getOrCreateDebugLocID(SrcFile, Line, 0));
363 }
364 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000365
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000366 break;
367 }
368 }
369 }
370 }
371
372 PN = dyn_cast<PHINode>(I);
373 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000374
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000375 unsigned PHIReg = ValueMap[PN];
376 assert(PHIReg && "PHI node does not have an assigned virtual register!");
377
378 SmallVector<MVT, 4> ValueVTs;
379 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
380 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
381 MVT VT = ValueVTs[vti];
382 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000383 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000384 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000385 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000386 PHIReg += NumRegisters;
387 }
388 }
389 }
390}
391
392unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
393 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
394}
395
396/// CreateRegForValue - Allocate the appropriate number of virtual registers of
397/// the correctly promoted or expanded types. Assign these registers
398/// consecutive vreg numbers and return the first assigned number.
399///
400/// In the case that the given value has struct or array type, this function
401/// will assign registers for each member or element.
402///
403unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
404 SmallVector<MVT, 4> ValueVTs;
405 ComputeValueVTs(TLI, V->getType(), ValueVTs);
406
407 unsigned FirstReg = 0;
408 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
409 MVT ValueVT = ValueVTs[Value];
410 MVT RegisterVT = TLI.getRegisterType(ValueVT);
411
412 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
413 for (unsigned i = 0; i != NumRegs; ++i) {
414 unsigned R = MakeReg(RegisterVT);
415 if (!FirstReg) FirstReg = R;
416 }
417 }
418 return FirstReg;
419}
420
421/// getCopyFromParts - Create a value that contains the specified legal parts
422/// combined into the value they represent. If the parts combine to a type
423/// larger then ValueVT then AssertOp can be used to specify whether the extra
424/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
425/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000426static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
427 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000428 unsigned NumParts, MVT PartVT, MVT ValueVT,
429 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000430 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000431 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000432 SDValue Val = Parts[0];
433
434 if (NumParts > 1) {
435 // Assemble the value from multiple parts.
436 if (!ValueVT.isVector()) {
437 unsigned PartBits = PartVT.getSizeInBits();
438 unsigned ValueBits = ValueVT.getSizeInBits();
439
440 // Assemble the power of 2 part.
441 unsigned RoundParts = NumParts & (NumParts - 1) ?
442 1 << Log2_32(NumParts) : NumParts;
443 unsigned RoundBits = PartBits * RoundParts;
444 MVT RoundVT = RoundBits == ValueBits ?
445 ValueVT : MVT::getIntegerVT(RoundBits);
446 SDValue Lo, Hi;
447
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000448 MVT HalfVT = ValueVT.isInteger() ?
449 MVT::getIntegerVT(RoundBits/2) :
450 MVT::getFloatingPointVT(RoundBits/2);
451
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000452 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000453 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
454 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000455 PartVT, HalfVT);
456 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000457 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
458 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000459 }
460 if (TLI.isBigEndian())
461 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000462 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000463
464 if (RoundParts < NumParts) {
465 // Assemble the trailing non-power-of-2 part.
466 unsigned OddParts = NumParts - RoundParts;
467 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Scott Michelfdc40a02009-02-17 22:15:04 +0000468 Hi = getCopyFromParts(DAG, dl,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000469 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000470
471 // Combine the round and odd parts.
472 Lo = Val;
473 if (TLI.isBigEndian())
474 std::swap(Lo, Hi);
475 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000476 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
477 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000478 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000479 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000480 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
481 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000482 }
483 } else {
484 // Handle a multi-element vector.
485 MVT IntermediateVT, RegisterVT;
486 unsigned NumIntermediates;
487 unsigned NumRegs =
488 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
489 RegisterVT);
490 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
491 NumParts = NumRegs; // Silence a compiler warning.
492 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
493 assert(RegisterVT == Parts[0].getValueType() &&
494 "Part type doesn't match part!");
495
496 // Assemble the parts into intermediate operands.
497 SmallVector<SDValue, 8> Ops(NumIntermediates);
498 if (NumIntermediates == NumParts) {
499 // If the register was not expanded, truncate or copy the value,
500 // as appropriate.
501 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000502 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000503 PartVT, IntermediateVT);
504 } else if (NumParts > 0) {
505 // If the intermediate type was expanded, build the intermediate operands
506 // from the parts.
507 assert(NumParts % NumIntermediates == 0 &&
508 "Must expand into a divisible number of parts!");
509 unsigned Factor = NumParts / NumIntermediates;
510 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000511 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000512 PartVT, IntermediateVT);
513 }
514
515 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
516 // operands.
517 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000518 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000519 ValueVT, &Ops[0], NumIntermediates);
520 }
521 }
522
523 // There is now one part, held in Val. Correct it to match ValueVT.
524 PartVT = Val.getValueType();
525
526 if (PartVT == ValueVT)
527 return Val;
528
529 if (PartVT.isVector()) {
530 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000531 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000532 }
533
534 if (ValueVT.isVector()) {
535 assert(ValueVT.getVectorElementType() == PartVT &&
536 ValueVT.getVectorNumElements() == 1 &&
537 "Only trivial scalar-to-vector conversions should get here!");
Evan Chenga87008d2009-02-25 22:49:59 +0000538 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000539 }
540
541 if (PartVT.isInteger() &&
542 ValueVT.isInteger()) {
543 if (ValueVT.bitsLT(PartVT)) {
544 // For a truncate, see if we have any information to
545 // indicate whether the truncated bits will always be
546 // zero or sign-extension.
547 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000548 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000549 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000550 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000551 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000552 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000553 }
554 }
555
556 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
557 if (ValueVT.bitsLT(Val.getValueType()))
558 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000559 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000560 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000561 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000562 }
563
564 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000565 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000566
567 assert(0 && "Unknown mismatch!");
568 return SDValue();
569}
570
571/// getCopyToParts - Create a series of nodes that contain the specified value
572/// split into legal parts. If the parts contain more bits than Val, then, for
573/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000574static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Chris Lattner01426e12008-10-21 00:45:36 +0000575 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000576 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000577 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000578 MVT PtrVT = TLI.getPointerTy();
579 MVT ValueVT = Val.getValueType();
580 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000581 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000582 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
583
584 if (!NumParts)
585 return;
586
587 if (!ValueVT.isVector()) {
588 if (PartVT == ValueVT) {
589 assert(NumParts == 1 && "No-op copy with multiple parts!");
590 Parts[0] = Val;
591 return;
592 }
593
594 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
595 // If the parts cover more bits than the value has, promote the value.
596 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
597 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000598 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000599 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
600 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000601 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000602 } else {
603 assert(0 && "Unknown mismatch!");
604 }
605 } else if (PartBits == ValueVT.getSizeInBits()) {
606 // Different types of the same size.
607 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000608 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000609 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
610 // If the parts cover less bits than value has, truncate the value.
611 if (PartVT.isInteger() && ValueVT.isInteger()) {
612 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000613 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000614 } else {
615 assert(0 && "Unknown mismatch!");
616 }
617 }
618
619 // The value may have changed - recompute ValueVT.
620 ValueVT = Val.getValueType();
621 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
622 "Failed to tile the value with PartVT!");
623
624 if (NumParts == 1) {
625 assert(PartVT == ValueVT && "Type conversion failed!");
626 Parts[0] = Val;
627 return;
628 }
629
630 // Expand the value into multiple parts.
631 if (NumParts & (NumParts - 1)) {
632 // The number of parts is not a power of 2. Split off and copy the tail.
633 assert(PartVT.isInteger() && ValueVT.isInteger() &&
634 "Do not know what to expand to!");
635 unsigned RoundParts = 1 << Log2_32(NumParts);
636 unsigned RoundBits = RoundParts * PartBits;
637 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000638 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000639 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000640 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000641 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000642 if (TLI.isBigEndian())
643 // The odd parts were reversed by getCopyToParts - unreverse them.
644 std::reverse(Parts + RoundParts, Parts + NumParts);
645 NumParts = RoundParts;
646 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000647 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000648 }
649
650 // The number of parts is a power of 2. Repeatedly bisect the value using
651 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000652 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000653 MVT::getIntegerVT(ValueVT.getSizeInBits()),
654 Val);
655 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
656 for (unsigned i = 0; i < NumParts; i += StepSize) {
657 unsigned ThisBits = StepSize * PartBits / 2;
658 MVT ThisVT = MVT::getIntegerVT (ThisBits);
659 SDValue &Part0 = Parts[i];
660 SDValue &Part1 = Parts[i+StepSize/2];
661
Scott Michelfdc40a02009-02-17 22:15:04 +0000662 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000663 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000664 DAG.getConstant(1, PtrVT));
Scott Michelfdc40a02009-02-17 22:15:04 +0000665 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000666 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000667 DAG.getConstant(0, PtrVT));
668
669 if (ThisBits == PartBits && ThisVT != PartVT) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000670 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000671 PartVT, Part0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000672 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000673 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000674 }
675 }
676 }
677
678 if (TLI.isBigEndian())
Dale Johannesen8a36f502009-02-25 22:39:13 +0000679 std::reverse(Parts, Parts + OrigNumParts);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000680
681 return;
682 }
683
684 // Vector ValueVT.
685 if (NumParts == 1) {
686 if (PartVT != ValueVT) {
687 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000688 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000689 } else {
690 assert(ValueVT.getVectorElementType() == PartVT &&
691 ValueVT.getVectorNumElements() == 1 &&
692 "Only trivial vector-to-scalar conversions should get here!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000693 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000694 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000695 DAG.getConstant(0, PtrVT));
696 }
697 }
698
699 Parts[0] = Val;
700 return;
701 }
702
703 // Handle a multi-element vector.
704 MVT IntermediateVT, RegisterVT;
705 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000706 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000707 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
708 RegisterVT);
709 unsigned NumElements = ValueVT.getVectorNumElements();
710
711 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
712 NumParts = NumRegs; // Silence a compiler warning.
713 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
714
715 // Split the vector into intermediate operands.
716 SmallVector<SDValue, 8> Ops(NumIntermediates);
717 for (unsigned i = 0; i != NumIntermediates; ++i)
718 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000719 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000720 IntermediateVT, Val,
721 DAG.getConstant(i * (NumElements / NumIntermediates),
722 PtrVT));
723 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000724 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000725 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000726 DAG.getConstant(i, PtrVT));
727
728 // Split the intermediate operands into legal parts.
729 if (NumParts == NumIntermediates) {
730 // If the register was not expanded, promote or copy the value,
731 // as appropriate.
732 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000733 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000734 } else if (NumParts > 0) {
735 // If the intermediate type was expanded, split each the value into
736 // legal parts.
737 assert(NumParts % NumIntermediates == 0 &&
738 "Must expand into a divisible number of parts!");
739 unsigned Factor = NumParts / NumIntermediates;
740 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000741 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000742 }
743}
744
745
746void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
747 AA = &aa;
748 GFI = gfi;
749 TD = DAG.getTarget().getTargetData();
750}
751
752/// clear - Clear out the curret SelectionDAG and the associated
753/// state and prepare this SelectionDAGLowering object to be used
754/// for a new block. This doesn't clear out information about
755/// additional blocks that are needed to complete switch lowering
756/// or PHI node updating; that information is cleared out as it is
757/// consumed.
758void SelectionDAGLowering::clear() {
759 NodeMap.clear();
760 PendingLoads.clear();
761 PendingExports.clear();
762 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000763 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000764}
765
766/// getRoot - Return the current virtual root of the Selection DAG,
767/// flushing any PendingLoad items. This must be done before emitting
768/// a store or any other node that may need to be ordered after any
769/// prior load instructions.
770///
771SDValue SelectionDAGLowering::getRoot() {
772 if (PendingLoads.empty())
773 return DAG.getRoot();
774
775 if (PendingLoads.size() == 1) {
776 SDValue Root = PendingLoads[0];
777 DAG.setRoot(Root);
778 PendingLoads.clear();
779 return Root;
780 }
781
782 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000783 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000784 &PendingLoads[0], PendingLoads.size());
785 PendingLoads.clear();
786 DAG.setRoot(Root);
787 return Root;
788}
789
790/// getControlRoot - Similar to getRoot, but instead of flushing all the
791/// PendingLoad items, flush all the PendingExports items. It is necessary
792/// to do this before emitting a terminator instruction.
793///
794SDValue SelectionDAGLowering::getControlRoot() {
795 SDValue Root = DAG.getRoot();
796
797 if (PendingExports.empty())
798 return Root;
799
800 // Turn all of the CopyToReg chains into one factored node.
801 if (Root.getOpcode() != ISD::EntryToken) {
802 unsigned i = 0, e = PendingExports.size();
803 for (; i != e; ++i) {
804 assert(PendingExports[i].getNode()->getNumOperands() > 1);
805 if (PendingExports[i].getNode()->getOperand(0) == Root)
806 break; // Don't add the root if we already indirectly depend on it.
807 }
808
809 if (i == e)
810 PendingExports.push_back(Root);
811 }
812
Dale Johannesen66978ee2009-01-31 02:22:37 +0000813 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000814 &PendingExports[0],
815 PendingExports.size());
816 PendingExports.clear();
817 DAG.setRoot(Root);
818 return Root;
819}
820
821void SelectionDAGLowering::visit(Instruction &I) {
822 visit(I.getOpcode(), I);
823}
824
825void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
826 // Note: this doesn't use InstVisitor, because it has to work with
827 // ConstantExpr's in addition to instructions.
828 switch (Opcode) {
829 default: assert(0 && "Unknown instruction type encountered!");
830 abort();
831 // Build the switch statement using the Instruction.def file.
832#define HANDLE_INST(NUM, OPCODE, CLASS) \
833 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
834#include "llvm/Instruction.def"
835 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000836}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000837
838void SelectionDAGLowering::visitAdd(User &I) {
839 if (I.getType()->isFPOrFPVector())
840 visitBinary(I, ISD::FADD);
841 else
842 visitBinary(I, ISD::ADD);
843}
844
845void SelectionDAGLowering::visitMul(User &I) {
846 if (I.getType()->isFPOrFPVector())
847 visitBinary(I, ISD::FMUL);
848 else
849 visitBinary(I, ISD::MUL);
850}
851
852SDValue SelectionDAGLowering::getValue(const Value *V) {
853 SDValue &N = NodeMap[V];
854 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000855
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000856 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
857 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000858
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000859 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000860 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000861
862 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
863 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000864
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000865 if (isa<ConstantPointerNull>(C))
866 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000867
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000868 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000869 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000870
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000871 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
872 !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000873 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000874
875 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
876 visit(CE->getOpcode(), *CE);
877 SDValue N1 = NodeMap[V];
878 assert(N1.getNode() && "visit didn't populate the ValueMap!");
879 return N1;
880 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000881
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000882 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
883 SmallVector<SDValue, 4> Constants;
884 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
885 OI != OE; ++OI) {
886 SDNode *Val = getValue(*OI).getNode();
887 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
888 Constants.push_back(SDValue(Val, i));
889 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000890 return DAG.getMergeValues(&Constants[0], Constants.size(),
891 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000892 }
893
894 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
895 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
896 "Unknown struct or array constant!");
897
898 SmallVector<MVT, 4> ValueVTs;
899 ComputeValueVTs(TLI, C->getType(), ValueVTs);
900 unsigned NumElts = ValueVTs.size();
901 if (NumElts == 0)
902 return SDValue(); // empty struct
903 SmallVector<SDValue, 4> Constants(NumElts);
904 for (unsigned i = 0; i != NumElts; ++i) {
905 MVT EltVT = ValueVTs[i];
906 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000907 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000908 else if (EltVT.isFloatingPoint())
909 Constants[i] = DAG.getConstantFP(0, EltVT);
910 else
911 Constants[i] = DAG.getConstant(0, EltVT);
912 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000913 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000914 }
915
916 const VectorType *VecTy = cast<VectorType>(V->getType());
917 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000918
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000919 // Now that we know the number and type of the elements, get that number of
920 // elements into the Ops array based on what kind of constant it is.
921 SmallVector<SDValue, 16> Ops;
922 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
923 for (unsigned i = 0; i != NumElements; ++i)
924 Ops.push_back(getValue(CP->getOperand(i)));
925 } else {
926 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
927 "Unknown vector constant!");
928 MVT EltVT = TLI.getValueType(VecTy->getElementType());
929
930 SDValue Op;
931 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000932 Op = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000933 else if (EltVT.isFloatingPoint())
934 Op = DAG.getConstantFP(0, EltVT);
935 else
936 Op = DAG.getConstant(0, EltVT);
937 Ops.assign(NumElements, Op);
938 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000939
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000940 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000941 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
942 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000943 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000944
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000945 // If this is a static alloca, generate it as the frameindex instead of
946 // computation.
947 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
948 DenseMap<const AllocaInst*, int>::iterator SI =
949 FuncInfo.StaticAllocaMap.find(AI);
950 if (SI != FuncInfo.StaticAllocaMap.end())
951 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
952 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000953
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000954 unsigned InReg = FuncInfo.ValueMap[V];
955 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000956
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000957 RegsForValue RFV(TLI, InReg, V->getType());
958 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000959 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000960}
961
962
963void SelectionDAGLowering::visitRet(ReturnInst &I) {
964 if (I.getNumOperands() == 0) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000965 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000966 MVT::Other, getControlRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000967 return;
968 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000969
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000970 SmallVector<SDValue, 8> NewValues;
971 NewValues.push_back(getControlRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000972 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000973 SmallVector<MVT, 4> ValueVTs;
974 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000975 unsigned NumValues = ValueVTs.size();
976 if (NumValues == 0) continue;
977
978 SDValue RetOp = getValue(I.getOperand(i));
979 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000980 MVT VT = ValueVTs[j];
981
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000982 unsigned NumParts = TLI.getNumRegisters(VT);
983 MVT PartVT = TLI.getRegisterType(VT);
984 SmallVector<SDValue, 4> Parts(NumParts);
985 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000986
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000987 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000988 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000989 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000990 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000991 ExtendKind = ISD::ZERO_EXTEND;
992
Dale Johannesen66978ee2009-01-31 02:22:37 +0000993 getCopyToParts(DAG, getCurDebugLoc(),
994 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000995 &Parts[0], NumParts, PartVT, ExtendKind);
996
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000997 // 'inreg' on function refers to return value
998 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +0000999 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001000 Flags.setInReg();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001001 for (unsigned i = 0; i < NumParts; ++i) {
1002 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001003 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001004 }
1005 }
1006 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00001007 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001008 &NewValues[0], NewValues.size()));
1009}
1010
1011/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1012/// the current basic block, add it to ValueMap now so that we'll get a
1013/// CopyTo/FromReg.
1014void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1015 // No need to export constants.
1016 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001017
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001018 // Already exported?
1019 if (FuncInfo.isExportedInst(V)) return;
1020
1021 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1022 CopyValueToVirtualRegister(V, Reg);
1023}
1024
1025bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1026 const BasicBlock *FromBB) {
1027 // The operands of the setcc have to be in this block. We don't know
1028 // how to export them from some other block.
1029 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1030 // Can export from current BB.
1031 if (VI->getParent() == FromBB)
1032 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001033
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001034 // Is already exported, noop.
1035 return FuncInfo.isExportedInst(V);
1036 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001037
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001038 // If this is an argument, we can export it if the BB is the entry block or
1039 // if it is already exported.
1040 if (isa<Argument>(V)) {
1041 if (FromBB == &FromBB->getParent()->getEntryBlock())
1042 return true;
1043
1044 // Otherwise, can only export this if it is already exported.
1045 return FuncInfo.isExportedInst(V);
1046 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001047
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001048 // Otherwise, constants can always be exported.
1049 return true;
1050}
1051
1052static bool InBlock(const Value *V, const BasicBlock *BB) {
1053 if (const Instruction *I = dyn_cast<Instruction>(V))
1054 return I->getParent() == BB;
1055 return true;
1056}
1057
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001058/// getFCmpCondCode - Return the ISD condition code corresponding to
1059/// the given LLVM IR floating-point condition code. This includes
1060/// consideration of global floating-point math flags.
1061///
1062static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1063 ISD::CondCode FPC, FOC;
1064 switch (Pred) {
1065 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1066 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1067 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1068 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1069 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1070 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1071 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1072 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1073 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1074 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1075 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1076 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1077 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1078 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1079 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1080 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1081 default:
1082 assert(0 && "Invalid FCmp predicate opcode!");
1083 FOC = FPC = ISD::SETFALSE;
1084 break;
1085 }
1086 if (FiniteOnlyFPMath())
1087 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001088 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001089 return FPC;
1090}
1091
1092/// getICmpCondCode - Return the ISD condition code corresponding to
1093/// the given LLVM IR integer condition code.
1094///
1095static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1096 switch (Pred) {
1097 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1098 case ICmpInst::ICMP_NE: return ISD::SETNE;
1099 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1100 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1101 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1102 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1103 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1104 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1105 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1106 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1107 default:
1108 assert(0 && "Invalid ICmp predicate opcode!");
1109 return ISD::SETNE;
1110 }
1111}
1112
Dan Gohmanc2277342008-10-17 21:16:08 +00001113/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1114/// This function emits a branch and is used at the leaves of an OR or an
1115/// AND operator tree.
1116///
1117void
1118SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1119 MachineBasicBlock *TBB,
1120 MachineBasicBlock *FBB,
1121 MachineBasicBlock *CurBB) {
1122 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001123
Dan Gohmanc2277342008-10-17 21:16:08 +00001124 // If the leaf of the tree is a comparison, merge the condition into
1125 // the caseblock.
1126 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1127 // The operands of the cmp have to be in this block. We don't know
1128 // how to export them from some other block. If this is the first block
1129 // of the sequence, no exporting is needed.
1130 if (CurBB == CurMBB ||
1131 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1132 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001133 ISD::CondCode Condition;
1134 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001135 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001136 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001137 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001138 } else {
1139 Condition = ISD::SETEQ; // silence warning.
1140 assert(0 && "Unknown compare instruction");
1141 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001142
1143 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001144 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1145 SwitchCases.push_back(CB);
1146 return;
1147 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001148 }
1149
1150 // Create a CaseBlock record representing this branch.
1151 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1152 NULL, TBB, FBB, CurBB);
1153 SwitchCases.push_back(CB);
1154}
1155
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001156/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001157void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1158 MachineBasicBlock *TBB,
1159 MachineBasicBlock *FBB,
1160 MachineBasicBlock *CurBB,
1161 unsigned Opc) {
1162 // If this node is not part of the or/and tree, emit it as a branch.
1163 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001164 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001165 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1166 BOp->getParent() != CurBB->getBasicBlock() ||
1167 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1168 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1169 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001170 return;
1171 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001172
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001173 // Create TmpBB after CurBB.
1174 MachineFunction::iterator BBI = CurBB;
1175 MachineFunction &MF = DAG.getMachineFunction();
1176 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1177 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001178
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001179 if (Opc == Instruction::Or) {
1180 // Codegen X | Y as:
1181 // jmp_if_X TBB
1182 // jmp TmpBB
1183 // TmpBB:
1184 // jmp_if_Y TBB
1185 // jmp FBB
1186 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001187
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001188 // Emit the LHS condition.
1189 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001190
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001191 // Emit the RHS condition into TmpBB.
1192 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1193 } else {
1194 assert(Opc == Instruction::And && "Unknown merge op!");
1195 // Codegen X & Y as:
1196 // jmp_if_X TmpBB
1197 // jmp FBB
1198 // TmpBB:
1199 // jmp_if_Y TBB
1200 // jmp FBB
1201 //
1202 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001203
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001204 // Emit the LHS condition.
1205 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001206
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001207 // Emit the RHS condition into TmpBB.
1208 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1209 }
1210}
1211
1212/// If the set of cases should be emitted as a series of branches, return true.
1213/// If we should emit this as a bunch of and/or'd together conditions, return
1214/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001215bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001216SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1217 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001218
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001219 // If this is two comparisons of the same values or'd or and'd together, they
1220 // will get folded into a single comparison, so don't emit two blocks.
1221 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1222 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1223 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1224 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1225 return false;
1226 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001227
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001228 return true;
1229}
1230
1231void SelectionDAGLowering::visitBr(BranchInst &I) {
1232 // Update machine-CFG edges.
1233 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1234
1235 // Figure out which block is immediately after the current one.
1236 MachineBasicBlock *NextBlock = 0;
1237 MachineFunction::iterator BBI = CurMBB;
1238 if (++BBI != CurMBB->getParent()->end())
1239 NextBlock = BBI;
1240
1241 if (I.isUnconditional()) {
1242 // Update machine-CFG edges.
1243 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001244
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001245 // If this is not a fall-through branch, emit the branch.
1246 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001247 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001248 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001249 DAG.getBasicBlock(Succ0MBB)));
1250 return;
1251 }
1252
1253 // If this condition is one of the special cases we handle, do special stuff
1254 // now.
1255 Value *CondVal = I.getCondition();
1256 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1257
1258 // If this is a series of conditions that are or'd or and'd together, emit
1259 // this as a sequence of branches instead of setcc's with and/or operations.
1260 // For example, instead of something like:
1261 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001262 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001263 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001264 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001265 // or C, F
1266 // jnz foo
1267 // Emit:
1268 // cmp A, B
1269 // je foo
1270 // cmp D, E
1271 // jle foo
1272 //
1273 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001274 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001275 (BOp->getOpcode() == Instruction::And ||
1276 BOp->getOpcode() == Instruction::Or)) {
1277 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1278 // If the compares in later blocks need to use values not currently
1279 // exported from this block, export them now. This block should always
1280 // be the first entry.
1281 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001282
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001283 // Allow some cases to be rejected.
1284 if (ShouldEmitAsBranches(SwitchCases)) {
1285 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1286 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1287 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1288 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001289
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001290 // Emit the branch for this block.
1291 visitSwitchCase(SwitchCases[0]);
1292 SwitchCases.erase(SwitchCases.begin());
1293 return;
1294 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001295
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001296 // Okay, we decided not to do this, remove any inserted MBB's and clear
1297 // SwitchCases.
1298 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1299 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001300
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001301 SwitchCases.clear();
1302 }
1303 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001304
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001305 // Create a CaseBlock record representing this branch.
1306 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1307 NULL, Succ0MBB, Succ1MBB, CurMBB);
1308 // Use visitSwitchCase to actually insert the fast branch sequence for this
1309 // cond branch.
1310 visitSwitchCase(CB);
1311}
1312
1313/// visitSwitchCase - Emits the necessary code to represent a single node in
1314/// the binary search tree resulting from lowering a switch instruction.
1315void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1316 SDValue Cond;
1317 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001318 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001319
1320 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001321 if (CB.CmpMHS == NULL) {
1322 // Fold "(X == true)" to X and "(X == false)" to !X to
1323 // handle common cases produced by branch lowering.
1324 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1325 Cond = CondLHS;
1326 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1327 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001328 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001329 } else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001330 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001331 } else {
1332 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1333
Anton Korobeynikov23218582008-12-23 22:25:27 +00001334 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1335 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001336
1337 SDValue CmpOp = getValue(CB.CmpMHS);
1338 MVT VT = CmpOp.getValueType();
1339
1340 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001341 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001342 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001343 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001344 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001345 VT, CmpOp, DAG.getConstant(Low, VT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001346 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001347 DAG.getConstant(High-Low, VT), ISD::SETULE);
1348 }
1349 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001350
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001351 // Update successor info
1352 CurMBB->addSuccessor(CB.TrueBB);
1353 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001354
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001355 // Set NextBlock to be the MBB immediately after the current one, if any.
1356 // This is used to avoid emitting unnecessary branches to the next block.
1357 MachineBasicBlock *NextBlock = 0;
1358 MachineFunction::iterator BBI = CurMBB;
1359 if (++BBI != CurMBB->getParent()->end())
1360 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001361
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001362 // If the lhs block is the next block, invert the condition so that we can
1363 // fall through to the lhs instead of the rhs block.
1364 if (CB.TrueBB == NextBlock) {
1365 std::swap(CB.TrueBB, CB.FalseBB);
1366 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001367 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001368 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001369 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001370 MVT::Other, getControlRoot(), Cond,
1371 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001372
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001373 // If the branch was constant folded, fix up the CFG.
1374 if (BrCond.getOpcode() == ISD::BR) {
1375 CurMBB->removeSuccessor(CB.FalseBB);
1376 DAG.setRoot(BrCond);
1377 } else {
1378 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001379 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001380 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001381
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001382 if (CB.FalseBB == NextBlock)
1383 DAG.setRoot(BrCond);
1384 else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001385 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001386 DAG.getBasicBlock(CB.FalseBB)));
1387 }
1388}
1389
1390/// visitJumpTable - Emit JumpTable node in the current MBB
1391void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1392 // Emit the code for the jump table
1393 assert(JT.Reg != -1U && "Should lower JT Header first!");
1394 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001395 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1396 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001397 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001398 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001399 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001400 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001401}
1402
1403/// visitJumpTableHeader - This function emits necessary code to produce index
1404/// in the JumpTable from switch case.
1405void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1406 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001407 // Subtract the lowest switch case value from the value being switched on and
1408 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001409 // difference between smallest and largest cases.
1410 SDValue SwitchOp = getValue(JTH.SValue);
1411 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001412 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001413 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001414
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001415 // The SDNode we just created, which holds the value being switched on minus
1416 // the the smallest case value, needs to be copied to a virtual register so it
1417 // can be used as an index into the jump table in a subsequent basic block.
1418 // This value may be smaller or larger than the target's pointer type, and
1419 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001420 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001421 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001422 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001423 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001424 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001425 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001426
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001427 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001428 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1429 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001430 JT.Reg = JumpTableReg;
1431
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001432 // Emit the range check for the jump table, and branch to the default block
1433 // for the switch statement if the value being switched on exceeds the largest
1434 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001435 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1436 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001437 DAG.getConstant(JTH.Last-JTH.First,VT),
1438 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001439
1440 // Set NextBlock to be the MBB immediately after the current one, if any.
1441 // This is used to avoid emitting unnecessary branches to the next block.
1442 MachineBasicBlock *NextBlock = 0;
1443 MachineFunction::iterator BBI = CurMBB;
1444 if (++BBI != CurMBB->getParent()->end())
1445 NextBlock = BBI;
1446
Dale Johannesen66978ee2009-01-31 02:22:37 +00001447 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001448 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001449 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001450
1451 if (JT.MBB == NextBlock)
1452 DAG.setRoot(BrCond);
1453 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001454 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001455 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001456}
1457
1458/// visitBitTestHeader - This function emits necessary code to produce value
1459/// suitable for "bit tests"
1460void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1461 // Subtract the minimum value
1462 SDValue SwitchOp = getValue(B.SValue);
1463 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001464 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001465 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001466
1467 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001468 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1469 TLI.getSetCCResultType(SUB.getValueType()),
1470 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001471 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001472
1473 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001474 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001475 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001476 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001477 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001478 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001479 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001480
Duncan Sands92abc622009-01-31 15:50:11 +00001481 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001482 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1483 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001484
1485 // Set NextBlock to be the MBB immediately after the current one, if any.
1486 // This is used to avoid emitting unnecessary branches to the next block.
1487 MachineBasicBlock *NextBlock = 0;
1488 MachineFunction::iterator BBI = CurMBB;
1489 if (++BBI != CurMBB->getParent()->end())
1490 NextBlock = BBI;
1491
1492 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1493
1494 CurMBB->addSuccessor(B.Default);
1495 CurMBB->addSuccessor(MBB);
1496
Dale Johannesen66978ee2009-01-31 02:22:37 +00001497 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001498 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001499 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001500
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001501 if (MBB == NextBlock)
1502 DAG.setRoot(BrRange);
1503 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001504 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001505 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001506}
1507
1508/// visitBitTestCase - this function produces one "bit test"
1509void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1510 unsigned Reg,
1511 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001512 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001513 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001514 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001515 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001516 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001517 DAG.getConstant(1, TLI.getPointerTy()),
1518 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001519
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001520 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001521 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001522 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001523 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001524 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1525 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001526 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001527 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001528
1529 CurMBB->addSuccessor(B.TargetBB);
1530 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001531
Dale Johannesen66978ee2009-01-31 02:22:37 +00001532 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001533 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001534 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001535
1536 // Set NextBlock to be the MBB immediately after the current one, if any.
1537 // This is used to avoid emitting unnecessary branches to the next block.
1538 MachineBasicBlock *NextBlock = 0;
1539 MachineFunction::iterator BBI = CurMBB;
1540 if (++BBI != CurMBB->getParent()->end())
1541 NextBlock = BBI;
1542
1543 if (NextMBB == NextBlock)
1544 DAG.setRoot(BrAnd);
1545 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001546 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001547 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001548}
1549
1550void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1551 // Retrieve successors.
1552 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1553 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1554
Gabor Greifb67e6b32009-01-15 11:10:44 +00001555 const Value *Callee(I.getCalledValue());
1556 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001557 visitInlineAsm(&I);
1558 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001559 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001560
1561 // If the value of the invoke is used outside of its defining block, make it
1562 // available as a virtual register.
1563 if (!I.use_empty()) {
1564 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1565 if (VMI != FuncInfo.ValueMap.end())
1566 CopyValueToVirtualRegister(&I, VMI->second);
1567 }
1568
1569 // Update successor info
1570 CurMBB->addSuccessor(Return);
1571 CurMBB->addSuccessor(LandingPad);
1572
1573 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001574 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001575 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001576 DAG.getBasicBlock(Return)));
1577}
1578
1579void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1580}
1581
1582/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1583/// small case ranges).
1584bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1585 CaseRecVector& WorkList,
1586 Value* SV,
1587 MachineBasicBlock* Default) {
1588 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001589
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001590 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001591 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001592 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001593 return false;
1594
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001595 // Get the MachineFunction which holds the current MBB. This is used when
1596 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001597 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001598
1599 // Figure out which block is immediately after the current one.
1600 MachineBasicBlock *NextBlock = 0;
1601 MachineFunction::iterator BBI = CR.CaseBB;
1602
1603 if (++BBI != CurMBB->getParent()->end())
1604 NextBlock = BBI;
1605
1606 // TODO: If any two of the cases has the same destination, and if one value
1607 // is the same as the other, but has one bit unset that the other has set,
1608 // use bit manipulation to do two compares at once. For example:
1609 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001610
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001611 // Rearrange the case blocks so that the last one falls through if possible.
1612 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1613 // The last case block won't fall through into 'NextBlock' if we emit the
1614 // branches in this order. See if rearranging a case value would help.
1615 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1616 if (I->BB == NextBlock) {
1617 std::swap(*I, BackCase);
1618 break;
1619 }
1620 }
1621 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001622
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001623 // Create a CaseBlock record representing a conditional branch to
1624 // the Case's target mbb if the value being switched on SV is equal
1625 // to C.
1626 MachineBasicBlock *CurBlock = CR.CaseBB;
1627 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1628 MachineBasicBlock *FallThrough;
1629 if (I != E-1) {
1630 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1631 CurMF->insert(BBI, FallThrough);
1632 } else {
1633 // If the last case doesn't match, go to the default block.
1634 FallThrough = Default;
1635 }
1636
1637 Value *RHS, *LHS, *MHS;
1638 ISD::CondCode CC;
1639 if (I->High == I->Low) {
1640 // This is just small small case range :) containing exactly 1 case
1641 CC = ISD::SETEQ;
1642 LHS = SV; RHS = I->High; MHS = NULL;
1643 } else {
1644 CC = ISD::SETLE;
1645 LHS = I->Low; MHS = SV; RHS = I->High;
1646 }
1647 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001648
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001649 // If emitting the first comparison, just call visitSwitchCase to emit the
1650 // code into the current block. Otherwise, push the CaseBlock onto the
1651 // vector to be later processed by SDISel, and insert the node's MBB
1652 // before the next MBB.
1653 if (CurBlock == CurMBB)
1654 visitSwitchCase(CB);
1655 else
1656 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001657
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001658 CurBlock = FallThrough;
1659 }
1660
1661 return true;
1662}
1663
1664static inline bool areJTsAllowed(const TargetLowering &TLI) {
1665 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001666 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1667 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001668}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001669
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001670static APInt ComputeRange(const APInt &First, const APInt &Last) {
1671 APInt LastExt(Last), FirstExt(First);
1672 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1673 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1674 return (LastExt - FirstExt + 1ULL);
1675}
1676
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001677/// handleJTSwitchCase - Emit jumptable for current switch case range
1678bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1679 CaseRecVector& WorkList,
1680 Value* SV,
1681 MachineBasicBlock* Default) {
1682 Case& FrontCase = *CR.Range.first;
1683 Case& BackCase = *(CR.Range.second-1);
1684
Anton Korobeynikov23218582008-12-23 22:25:27 +00001685 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1686 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001687
Anton Korobeynikov23218582008-12-23 22:25:27 +00001688 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001689 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1690 I!=E; ++I)
1691 TSize += I->size();
1692
1693 if (!areJTsAllowed(TLI) || TSize <= 3)
1694 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001695
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001696 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001697 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001698 if (Density < 0.4)
1699 return false;
1700
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001701 DEBUG(errs() << "Lowering jump table\n"
1702 << "First entry: " << First << ". Last entry: " << Last << '\n'
1703 << "Range: " << Range
1704 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001705
1706 // Get the MachineFunction which holds the current MBB. This is used when
1707 // inserting any additional MBBs necessary to represent the switch.
1708 MachineFunction *CurMF = CurMBB->getParent();
1709
1710 // Figure out which block is immediately after the current one.
1711 MachineBasicBlock *NextBlock = 0;
1712 MachineFunction::iterator BBI = CR.CaseBB;
1713
1714 if (++BBI != CurMBB->getParent()->end())
1715 NextBlock = BBI;
1716
1717 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1718
1719 // Create a new basic block to hold the code for loading the address
1720 // of the jump table, and jumping to it. Update successor information;
1721 // we will either branch to the default case for the switch, or the jump
1722 // table.
1723 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1724 CurMF->insert(BBI, JumpTableBB);
1725 CR.CaseBB->addSuccessor(Default);
1726 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001727
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001728 // Build a vector of destination BBs, corresponding to each target
1729 // of the jump table. If the value of the jump table slot corresponds to
1730 // a case statement, push the case's BB onto the vector, otherwise, push
1731 // the default BB.
1732 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001733 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001734 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001735 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1736 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1737
1738 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001739 DestBBs.push_back(I->BB);
1740 if (TEI==High)
1741 ++I;
1742 } else {
1743 DestBBs.push_back(Default);
1744 }
1745 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001746
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001747 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001748 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1749 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001750 E = DestBBs.end(); I != E; ++I) {
1751 if (!SuccsHandled[(*I)->getNumber()]) {
1752 SuccsHandled[(*I)->getNumber()] = true;
1753 JumpTableBB->addSuccessor(*I);
1754 }
1755 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001756
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001757 // Create a jump table index for this jump table, or return an existing
1758 // one.
1759 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001760
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001761 // Set the jump table information so that we can codegen it as a second
1762 // MachineBasicBlock
1763 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1764 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1765 if (CR.CaseBB == CurMBB)
1766 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001767
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001768 JTCases.push_back(JumpTableBlock(JTH, JT));
1769
1770 return true;
1771}
1772
1773/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1774/// 2 subtrees.
1775bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1776 CaseRecVector& WorkList,
1777 Value* SV,
1778 MachineBasicBlock* Default) {
1779 // Get the MachineFunction which holds the current MBB. This is used when
1780 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001781 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001782
1783 // Figure out which block is immediately after the current one.
1784 MachineBasicBlock *NextBlock = 0;
1785 MachineFunction::iterator BBI = CR.CaseBB;
1786
1787 if (++BBI != CurMBB->getParent()->end())
1788 NextBlock = BBI;
1789
1790 Case& FrontCase = *CR.Range.first;
1791 Case& BackCase = *(CR.Range.second-1);
1792 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1793
1794 // Size is the number of Cases represented by this range.
1795 unsigned Size = CR.Range.second - CR.Range.first;
1796
Anton Korobeynikov23218582008-12-23 22:25:27 +00001797 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1798 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001799 double FMetric = 0;
1800 CaseItr Pivot = CR.Range.first + Size/2;
1801
1802 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1803 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001804 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001805 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1806 I!=E; ++I)
1807 TSize += I->size();
1808
Anton Korobeynikov23218582008-12-23 22:25:27 +00001809 size_t LSize = FrontCase.size();
1810 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001811 DEBUG(errs() << "Selecting best pivot: \n"
1812 << "First: " << First << ", Last: " << Last <<'\n'
1813 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001814 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1815 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001816 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1817 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001818 APInt Range = ComputeRange(LEnd, RBegin);
1819 assert((Range - 2ULL).isNonNegative() &&
1820 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001821 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1822 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001823 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001824 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001825 DEBUG(errs() <<"=>Step\n"
1826 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1827 << "LDensity: " << LDensity
1828 << ", RDensity: " << RDensity << '\n'
1829 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001830 if (FMetric < Metric) {
1831 Pivot = J;
1832 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001833 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001834 }
1835
1836 LSize += J->size();
1837 RSize -= J->size();
1838 }
1839 if (areJTsAllowed(TLI)) {
1840 // If our case is dense we *really* should handle it earlier!
1841 assert((FMetric > 0) && "Should handle dense range earlier!");
1842 } else {
1843 Pivot = CR.Range.first + Size/2;
1844 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001845
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001846 CaseRange LHSR(CR.Range.first, Pivot);
1847 CaseRange RHSR(Pivot, CR.Range.second);
1848 Constant *C = Pivot->Low;
1849 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001851 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001852 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001853 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001854 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 // Pivot's Value, then we can branch directly to the LHS's Target,
1856 // rather than creating a leaf node for it.
1857 if ((LHSR.second - LHSR.first) == 1 &&
1858 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001859 cast<ConstantInt>(C)->getValue() ==
1860 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001861 TrueBB = LHSR.first->BB;
1862 } else {
1863 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1864 CurMF->insert(BBI, TrueBB);
1865 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
1866 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001867
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001868 // Similar to the optimization above, if the Value being switched on is
1869 // known to be less than the Constant CR.LT, and the current Case Value
1870 // is CR.LT - 1, then we can branch directly to the target block for
1871 // the current Case Value, rather than emitting a RHS leaf node for it.
1872 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001873 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1874 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001875 FalseBB = RHSR.first->BB;
1876 } else {
1877 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1878 CurMF->insert(BBI, FalseBB);
1879 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
1880 }
1881
1882 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001883 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001884 // Otherwise, branch to LHS.
1885 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1886
1887 if (CR.CaseBB == CurMBB)
1888 visitSwitchCase(CB);
1889 else
1890 SwitchCases.push_back(CB);
1891
1892 return true;
1893}
1894
1895/// handleBitTestsSwitchCase - if current case range has few destination and
1896/// range span less, than machine word bitwidth, encode case range into series
1897/// of masks and emit bit tests with these masks.
1898bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1899 CaseRecVector& WorkList,
1900 Value* SV,
1901 MachineBasicBlock* Default){
1902 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1903
1904 Case& FrontCase = *CR.Range.first;
1905 Case& BackCase = *(CR.Range.second-1);
1906
1907 // Get the MachineFunction which holds the current MBB. This is used when
1908 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001909 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001910
Anton Korobeynikov23218582008-12-23 22:25:27 +00001911 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001912 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1913 I!=E; ++I) {
1914 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001915 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001916 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001917
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001918 // Count unique destinations
1919 SmallSet<MachineBasicBlock*, 4> Dests;
1920 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1921 Dests.insert(I->BB);
1922 if (Dests.size() > 3)
1923 // Don't bother the code below, if there are too much unique destinations
1924 return false;
1925 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001926 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1927 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001928
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001929 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001930 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1931 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001932 APInt cmpRange = maxValue - minValue;
1933
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001934 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1935 << "Low bound: " << minValue << '\n'
1936 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001937
1938 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001939 (!(Dests.size() == 1 && numCmps >= 3) &&
1940 !(Dests.size() == 2 && numCmps >= 5) &&
1941 !(Dests.size() >= 3 && numCmps >= 6)))
1942 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001943
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001944 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001945 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1946
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001947 // Optimize the case where all the case values fit in a
1948 // word without having to subtract minValue. In this case,
1949 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001950 if (minValue.isNonNegative() &&
1951 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1952 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001953 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001954 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001955 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001956
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001957 CaseBitsVector CasesBits;
1958 unsigned i, count = 0;
1959
1960 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1961 MachineBasicBlock* Dest = I->BB;
1962 for (i = 0; i < count; ++i)
1963 if (Dest == CasesBits[i].BB)
1964 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001965
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001966 if (i == count) {
1967 assert((count < 3) && "Too much destinations to test!");
1968 CasesBits.push_back(CaseBits(0, Dest, 0));
1969 count++;
1970 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001971
1972 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1973 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1974
1975 uint64_t lo = (lowValue - lowBound).getZExtValue();
1976 uint64_t hi = (highValue - lowBound).getZExtValue();
1977
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001978 for (uint64_t j = lo; j <= hi; j++) {
1979 CasesBits[i].Mask |= 1ULL << j;
1980 CasesBits[i].Bits++;
1981 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001982
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001983 }
1984 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001985
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001986 BitTestInfo BTC;
1987
1988 // Figure out which block is immediately after the current one.
1989 MachineFunction::iterator BBI = CR.CaseBB;
1990 ++BBI;
1991
1992 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1993
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001994 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001995 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001996 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
1997 << ", Bits: " << CasesBits[i].Bits
1998 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001999
2000 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2001 CurMF->insert(BBI, CaseBB);
2002 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2003 CaseBB,
2004 CasesBits[i].BB));
2005 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002006
2007 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002008 -1U, (CR.CaseBB == CurMBB),
2009 CR.CaseBB, Default, BTC);
2010
2011 if (CR.CaseBB == CurMBB)
2012 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002013
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002014 BitTestCases.push_back(BTB);
2015
2016 return true;
2017}
2018
2019
2020/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002021size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002022 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002023 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002024
2025 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002026 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002027 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2028 Cases.push_back(Case(SI.getSuccessorValue(i),
2029 SI.getSuccessorValue(i),
2030 SMBB));
2031 }
2032 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2033
2034 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002035 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002036 // Must recompute end() each iteration because it may be
2037 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002038 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2039 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2040 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002041 MachineBasicBlock* nextBB = J->BB;
2042 MachineBasicBlock* currentBB = I->BB;
2043
2044 // If the two neighboring cases go to the same destination, merge them
2045 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002046 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002047 I->High = J->High;
2048 J = Cases.erase(J);
2049 } else {
2050 I = J++;
2051 }
2052 }
2053
2054 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2055 if (I->Low != I->High)
2056 // A range counts double, since it requires two compares.
2057 ++numCmps;
2058 }
2059
2060 return numCmps;
2061}
2062
Anton Korobeynikov23218582008-12-23 22:25:27 +00002063void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002064 // Figure out which block is immediately after the current one.
2065 MachineBasicBlock *NextBlock = 0;
2066 MachineFunction::iterator BBI = CurMBB;
2067
2068 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2069
2070 // If there is only the default destination, branch to it if it is not the
2071 // next basic block. Otherwise, just fall through.
2072 if (SI.getNumOperands() == 2) {
2073 // Update machine-CFG edges.
2074
2075 // If this is not a fall-through branch, emit the branch.
2076 CurMBB->addSuccessor(Default);
2077 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002078 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002079 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002080 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002081 return;
2082 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002083
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002084 // If there are any non-default case statements, create a vector of Cases
2085 // representing each one, and sort the vector so that we can efficiently
2086 // create a binary search tree from them.
2087 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002088 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002089 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2090 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002091 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002092
2093 // Get the Value to be switched on and default basic blocks, which will be
2094 // inserted into CaseBlock records, representing basic blocks in the binary
2095 // search tree.
2096 Value *SV = SI.getOperand(0);
2097
2098 // Push the initial CaseRec onto the worklist
2099 CaseRecVector WorkList;
2100 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2101
2102 while (!WorkList.empty()) {
2103 // Grab a record representing a case range to process off the worklist
2104 CaseRec CR = WorkList.back();
2105 WorkList.pop_back();
2106
2107 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2108 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002109
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002110 // If the range has few cases (two or less) emit a series of specific
2111 // tests.
2112 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2113 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002114
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002115 // If the switch has more than 5 blocks, and at least 40% dense, and the
2116 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002117 // lowering the switch to a binary tree of conditional branches.
2118 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2119 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002120
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002121 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2122 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2123 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2124 }
2125}
2126
2127
2128void SelectionDAGLowering::visitSub(User &I) {
2129 // -0.0 - X --> fneg
2130 const Type *Ty = I.getType();
2131 if (isa<VectorType>(Ty)) {
2132 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2133 const VectorType *DestTy = cast<VectorType>(I.getType());
2134 const Type *ElTy = DestTy->getElementType();
2135 if (ElTy->isFloatingPoint()) {
2136 unsigned VL = DestTy->getNumElements();
2137 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2138 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2139 if (CV == CNZ) {
2140 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002141 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002142 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002143 return;
2144 }
2145 }
2146 }
2147 }
2148 if (Ty->isFloatingPoint()) {
2149 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2150 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2151 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002152 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002153 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002154 return;
2155 }
2156 }
2157
2158 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2159}
2160
2161void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2162 SDValue Op1 = getValue(I.getOperand(0));
2163 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002164
Scott Michelfdc40a02009-02-17 22:15:04 +00002165 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002166 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002167}
2168
2169void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2170 SDValue Op1 = getValue(I.getOperand(0));
2171 SDValue Op2 = getValue(I.getOperand(1));
2172 if (!isa<VectorType>(I.getType())) {
Duncan Sands92abc622009-01-31 15:50:11 +00002173 if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002174 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002175 TLI.getPointerTy(), Op2);
2176 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002177 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002178 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002179 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002180
Scott Michelfdc40a02009-02-17 22:15:04 +00002181 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002182 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002183}
2184
2185void SelectionDAGLowering::visitICmp(User &I) {
2186 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2187 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2188 predicate = IC->getPredicate();
2189 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2190 predicate = ICmpInst::Predicate(IC->getPredicate());
2191 SDValue Op1 = getValue(I.getOperand(0));
2192 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002193 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002194 setValue(&I, DAG.getSetCC(getCurDebugLoc(),MVT::i1, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002195}
2196
2197void SelectionDAGLowering::visitFCmp(User &I) {
2198 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2199 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2200 predicate = FC->getPredicate();
2201 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2202 predicate = FCmpInst::Predicate(FC->getPredicate());
2203 SDValue Op1 = getValue(I.getOperand(0));
2204 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002205 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002206 setValue(&I, DAG.getSetCC(getCurDebugLoc(), MVT::i1, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002207}
2208
2209void SelectionDAGLowering::visitVICmp(User &I) {
2210 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2211 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2212 predicate = IC->getPredicate();
2213 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2214 predicate = ICmpInst::Predicate(IC->getPredicate());
2215 SDValue Op1 = getValue(I.getOperand(0));
2216 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002217 ISD::CondCode Opcode = getICmpCondCode(predicate);
Scott Michelfdc40a02009-02-17 22:15:04 +00002218 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), Op1.getValueType(),
Dale Johannesenf5d97892009-02-04 01:48:28 +00002219 Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002220}
2221
2222void SelectionDAGLowering::visitVFCmp(User &I) {
2223 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2224 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2225 predicate = FC->getPredicate();
2226 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2227 predicate = FCmpInst::Predicate(FC->getPredicate());
2228 SDValue Op1 = getValue(I.getOperand(0));
2229 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002230 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002231 MVT DestVT = TLI.getValueType(I.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002232
Dale Johannesenf5d97892009-02-04 01:48:28 +00002233 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002234}
2235
2236void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002237 SmallVector<MVT, 4> ValueVTs;
2238 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2239 unsigned NumValues = ValueVTs.size();
2240 if (NumValues != 0) {
2241 SmallVector<SDValue, 4> Values(NumValues);
2242 SDValue Cond = getValue(I.getOperand(0));
2243 SDValue TrueVal = getValue(I.getOperand(1));
2244 SDValue FalseVal = getValue(I.getOperand(2));
2245
2246 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002247 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002248 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002249 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2250 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2251
Scott Michelfdc40a02009-02-17 22:15:04 +00002252 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002253 DAG.getVTList(&ValueVTs[0], NumValues),
2254 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002255 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002256}
2257
2258
2259void SelectionDAGLowering::visitTrunc(User &I) {
2260 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2261 SDValue N = getValue(I.getOperand(0));
2262 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002263 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002264}
2265
2266void SelectionDAGLowering::visitZExt(User &I) {
2267 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2268 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2269 SDValue N = getValue(I.getOperand(0));
2270 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002271 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002272}
2273
2274void SelectionDAGLowering::visitSExt(User &I) {
2275 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2276 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2277 SDValue N = getValue(I.getOperand(0));
2278 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002279 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002280}
2281
2282void SelectionDAGLowering::visitFPTrunc(User &I) {
2283 // FPTrunc is never a no-op cast, no need to check
2284 SDValue N = getValue(I.getOperand(0));
2285 MVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002286 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002287 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002288}
2289
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002290void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002291 // FPTrunc is never a no-op cast, no need to check
2292 SDValue N = getValue(I.getOperand(0));
2293 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002294 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002295}
2296
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002297void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002298 // FPToUI is never a no-op cast, no need to check
2299 SDValue N = getValue(I.getOperand(0));
2300 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002301 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002302}
2303
2304void SelectionDAGLowering::visitFPToSI(User &I) {
2305 // FPToSI is never a no-op cast, no need to check
2306 SDValue N = getValue(I.getOperand(0));
2307 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002308 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002309}
2310
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002311void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002312 // UIToFP is never a no-op cast, no need to check
2313 SDValue N = getValue(I.getOperand(0));
2314 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002315 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002316}
2317
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002318void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002319 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002320 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::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002323}
2324
2325void SelectionDAGLowering::visitPtrToInt(User &I) {
2326 // What to do depends on the size of the integer and the size of the pointer.
2327 // We can either truncate, zero extend, or no-op, accordingly.
2328 SDValue N = getValue(I.getOperand(0));
2329 MVT SrcVT = N.getValueType();
2330 MVT DestVT = TLI.getValueType(I.getType());
2331 SDValue Result;
2332 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002333 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002334 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002335 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002336 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002337 setValue(&I, Result);
2338}
2339
2340void SelectionDAGLowering::visitIntToPtr(User &I) {
2341 // What to do depends on the size of the integer and the size of the pointer.
2342 // We can either truncate, zero extend, or no-op, accordingly.
2343 SDValue N = getValue(I.getOperand(0));
2344 MVT SrcVT = N.getValueType();
2345 MVT DestVT = TLI.getValueType(I.getType());
2346 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002347 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002348 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002349 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002350 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002351 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002352}
2353
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002354void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002355 SDValue N = getValue(I.getOperand(0));
2356 MVT DestVT = TLI.getValueType(I.getType());
2357
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002358 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002359 // is either a BIT_CONVERT or a no-op.
2360 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002361 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002362 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002363 else
2364 setValue(&I, N); // noop cast.
2365}
2366
2367void SelectionDAGLowering::visitInsertElement(User &I) {
2368 SDValue InVec = getValue(I.getOperand(0));
2369 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002370 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002371 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002372 getValue(I.getOperand(2)));
2373
Scott Michelfdc40a02009-02-17 22:15:04 +00002374 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002375 TLI.getValueType(I.getType()),
2376 InVec, InVal, InIdx));
2377}
2378
2379void SelectionDAGLowering::visitExtractElement(User &I) {
2380 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002381 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002382 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002383 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002384 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002385 TLI.getValueType(I.getType()), InVec, InIdx));
2386}
2387
Mon P Wangaeb06d22008-11-10 04:46:22 +00002388
2389// Utility for visitShuffleVector - Returns true if the mask is mask starting
2390// from SIndx and increasing to the element length (undefs are allowed).
2391static bool SequentialMask(SDValue Mask, unsigned SIndx) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002392 unsigned MaskNumElts = Mask.getNumOperands();
2393 for (unsigned i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002394 if (Mask.getOperand(i).getOpcode() != ISD::UNDEF) {
2395 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2396 if (Idx != i + SIndx)
2397 return false;
2398 }
2399 }
2400 return true;
2401}
2402
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002403void SelectionDAGLowering::visitShuffleVector(User &I) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002404 SDValue Src1 = getValue(I.getOperand(0));
2405 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002406 SDValue Mask = getValue(I.getOperand(2));
2407
Mon P Wangaeb06d22008-11-10 04:46:22 +00002408 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002409 MVT SrcVT = Src1.getValueType();
Mon P Wangc7849c22008-11-16 05:06:27 +00002410 int MaskNumElts = Mask.getNumOperands();
2411 int SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002412
Mon P Wangc7849c22008-11-16 05:06:27 +00002413 if (SrcNumElts == MaskNumElts) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002414 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002415 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002416 return;
2417 }
2418
2419 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002420 MVT MaskEltVT = Mask.getValueType().getVectorElementType();
2421
2422 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2423 // Mask is longer than the source vectors and is a multiple of the source
2424 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002425 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002426 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2427 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002428 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002429 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002430 return;
2431 }
2432
Mon P Wangc7849c22008-11-16 05:06:27 +00002433 // Pad both vectors with undefs to make them the same length as the mask.
2434 unsigned NumConcat = MaskNumElts / SrcNumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00002435 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002436
Mon P Wang230e4fa2008-11-21 04:25:21 +00002437 SDValue* MOps1 = new SDValue[NumConcat];
2438 SDValue* MOps2 = new SDValue[NumConcat];
2439 MOps1[0] = Src1;
2440 MOps2[0] = Src2;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002441 for (unsigned i = 1; i != NumConcat; ++i) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002442 MOps1[i] = UndefVal;
2443 MOps2[i] = UndefVal;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002444 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002445 Src1 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002446 VT, MOps1, NumConcat);
Scott Michelfdc40a02009-02-17 22:15:04 +00002447 Src2 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002448 VT, MOps2, NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002449
2450 delete [] MOps1;
2451 delete [] MOps2;
2452
Mon P Wangaeb06d22008-11-10 04:46:22 +00002453 // Readjust mask for new input vector length.
2454 SmallVector<SDValue, 8> MappedOps;
Mon P Wangc7849c22008-11-16 05:06:27 +00002455 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002456 if (Mask.getOperand(i).getOpcode() == ISD::UNDEF) {
2457 MappedOps.push_back(Mask.getOperand(i));
2458 } else {
Mon P Wangc7849c22008-11-16 05:06:27 +00002459 int Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2460 if (Idx < SrcNumElts)
2461 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
2462 else
2463 MappedOps.push_back(DAG.getConstant(Idx + MaskNumElts - SrcNumElts,
2464 MaskEltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002465 }
2466 }
Evan Chenga87008d2009-02-25 22:49:59 +00002467 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2468 Mask.getValueType(),
2469 &MappedOps[0], MappedOps.size());
Mon P Wangaeb06d22008-11-10 04:46:22 +00002470
Scott Michelfdc40a02009-02-17 22:15:04 +00002471 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002472 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002473 return;
2474 }
2475
Mon P Wangc7849c22008-11-16 05:06:27 +00002476 if (SrcNumElts > MaskNumElts) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002477 // Resulting vector is shorter than the incoming vector.
Mon P Wangc7849c22008-11-16 05:06:27 +00002478 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002479 // Shuffle extracts 1st vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002480 setValue(&I, Src1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002481 return;
2482 }
2483
Mon P Wangc7849c22008-11-16 05:06:27 +00002484 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002485 // Shuffle extracts 2nd vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002486 setValue(&I, Src2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002487 return;
2488 }
2489
Mon P Wangc7849c22008-11-16 05:06:27 +00002490 // Analyze the access pattern of the vector to see if we can extract
2491 // two subvectors and do the shuffle. The analysis is done by calculating
2492 // the range of elements the mask access on both vectors.
2493 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2494 int MaxRange[2] = {-1, -1};
2495
2496 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002497 SDValue Arg = Mask.getOperand(i);
2498 if (Arg.getOpcode() != ISD::UNDEF) {
2499 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002500 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2501 int Input = 0;
2502 if (Idx >= SrcNumElts) {
2503 Input = 1;
2504 Idx -= SrcNumElts;
2505 }
2506 if (Idx > MaxRange[Input])
2507 MaxRange[Input] = Idx;
2508 if (Idx < MinRange[Input])
2509 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002510 }
2511 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002512
Mon P Wangc7849c22008-11-16 05:06:27 +00002513 // Check if the access is smaller than the vector size and can we find
2514 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002515 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002516 int StartIdx[2]; // StartIdx to extract from
2517 for (int Input=0; Input < 2; ++Input) {
2518 if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) {
2519 RangeUse[Input] = 0; // Unused
2520 StartIdx[Input] = 0;
2521 } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) {
2522 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002523 // start index that is a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002524 if (MaxRange[Input] < MaskNumElts) {
2525 RangeUse[Input] = 1; // Extract from beginning of the vector
2526 StartIdx[Input] = 0;
2527 } else {
2528 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Mon P Wang6cce3da2008-11-23 04:35:05 +00002529 if (MaxRange[Input] - StartIdx[Input] < MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002530 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002531 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002532 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002533 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002534 }
2535
2536 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002537 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002538 return;
2539 }
2540 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2541 // Extract appropriate subvector and generate a vector shuffle
2542 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002543 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002544 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002545 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002546 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002547 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002548 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002549 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002550 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002551 // Calculate new mask.
2552 SmallVector<SDValue, 8> MappedOps;
2553 for (int i = 0; i != MaskNumElts; ++i) {
2554 SDValue Arg = Mask.getOperand(i);
2555 if (Arg.getOpcode() == ISD::UNDEF) {
2556 MappedOps.push_back(Arg);
2557 } else {
2558 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2559 if (Idx < SrcNumElts)
2560 MappedOps.push_back(DAG.getConstant(Idx - StartIdx[0], MaskEltVT));
2561 else {
2562 Idx = Idx - SrcNumElts - StartIdx[1] + MaskNumElts;
2563 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002564 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002565 }
2566 }
Evan Chenga87008d2009-02-25 22:49:59 +00002567 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2568 Mask.getValueType(),
2569 &MappedOps[0], MappedOps.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00002570 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002571 VT, Src1, Src2, Mask));
Mon P Wangc7849c22008-11-16 05:06:27 +00002572 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002573 }
2574 }
2575
Mon P Wangc7849c22008-11-16 05:06:27 +00002576 // We can't use either concat vectors or extract subvectors so fall back to
2577 // replacing the shuffle with extract and build vector.
2578 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002579 MVT EltVT = VT.getVectorElementType();
2580 MVT PtrVT = TLI.getPointerTy();
2581 SmallVector<SDValue,8> Ops;
Mon P Wangc7849c22008-11-16 05:06:27 +00002582 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002583 SDValue Arg = Mask.getOperand(i);
2584 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002585 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002586 } else {
2587 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002588 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2589 if (Idx < SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002590 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002591 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002592 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002593 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002594 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002595 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002596 }
2597 }
Evan Chenga87008d2009-02-25 22:49:59 +00002598 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2599 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002600}
2601
2602void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2603 const Value *Op0 = I.getOperand(0);
2604 const Value *Op1 = I.getOperand(1);
2605 const Type *AggTy = I.getType();
2606 const Type *ValTy = Op1->getType();
2607 bool IntoUndef = isa<UndefValue>(Op0);
2608 bool FromUndef = isa<UndefValue>(Op1);
2609
2610 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2611 I.idx_begin(), I.idx_end());
2612
2613 SmallVector<MVT, 4> AggValueVTs;
2614 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2615 SmallVector<MVT, 4> ValValueVTs;
2616 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2617
2618 unsigned NumAggValues = AggValueVTs.size();
2619 unsigned NumValValues = ValValueVTs.size();
2620 SmallVector<SDValue, 4> Values(NumAggValues);
2621
2622 SDValue Agg = getValue(Op0);
2623 SDValue Val = getValue(Op1);
2624 unsigned i = 0;
2625 // Copy the beginning value(s) from the original aggregate.
2626 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002627 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002628 SDValue(Agg.getNode(), Agg.getResNo() + i);
2629 // Copy values from the inserted value(s).
2630 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002631 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002632 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2633 // Copy remaining value(s) from the original aggregate.
2634 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002635 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002636 SDValue(Agg.getNode(), Agg.getResNo() + i);
2637
Scott Michelfdc40a02009-02-17 22:15:04 +00002638 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002639 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2640 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002641}
2642
2643void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2644 const Value *Op0 = I.getOperand(0);
2645 const Type *AggTy = Op0->getType();
2646 const Type *ValTy = I.getType();
2647 bool OutOfUndef = isa<UndefValue>(Op0);
2648
2649 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2650 I.idx_begin(), I.idx_end());
2651
2652 SmallVector<MVT, 4> ValValueVTs;
2653 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2654
2655 unsigned NumValValues = ValValueVTs.size();
2656 SmallVector<SDValue, 4> Values(NumValValues);
2657
2658 SDValue Agg = getValue(Op0);
2659 // Copy out the selected value(s).
2660 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2661 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002662 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002663 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002664 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002665
Scott Michelfdc40a02009-02-17 22:15:04 +00002666 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002667 DAG.getVTList(&ValValueVTs[0], NumValValues),
2668 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002669}
2670
2671
2672void SelectionDAGLowering::visitGetElementPtr(User &I) {
2673 SDValue N = getValue(I.getOperand(0));
2674 const Type *Ty = I.getOperand(0)->getType();
2675
2676 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2677 OI != E; ++OI) {
2678 Value *Idx = *OI;
2679 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2680 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2681 if (Field) {
2682 // N = N + Offset
2683 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002684 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002685 DAG.getIntPtrConstant(Offset));
2686 }
2687 Ty = StTy->getElementType(Field);
2688 } else {
2689 Ty = cast<SequentialType>(Ty)->getElementType();
2690
2691 // If this is a constant subscript, handle it quickly.
2692 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2693 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002694 uint64_t Offs =
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002695 TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002696 SDValue OffsVal;
Evan Chengb1032a82009-02-09 20:54:38 +00002697 unsigned PtrBits = TLI.getPointerTy().getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002698 if (PtrBits < 64) {
2699 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2700 TLI.getPointerTy(),
2701 DAG.getConstant(Offs, MVT::i64));
2702 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002703 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002704 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002705 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002706 continue;
2707 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002708
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002709 // N = N + Idx * ElementSize;
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002710 uint64_t ElementSize = TD->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002711 SDValue IdxN = getValue(Idx);
2712
2713 // If the index is smaller or larger than intptr_t, truncate or extend
2714 // it.
2715 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002716 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002717 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002718 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002719 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002720 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002721
2722 // If this is a multiply by a power of two, turn it into a shl
2723 // immediately. This is a very common case.
2724 if (ElementSize != 1) {
2725 if (isPowerOf2_64(ElementSize)) {
2726 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002727 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002728 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002729 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002730 } else {
2731 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002732 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002733 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002734 }
2735 }
2736
Scott Michelfdc40a02009-02-17 22:15:04 +00002737 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002738 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002739 }
2740 }
2741 setValue(&I, N);
2742}
2743
2744void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2745 // If this is a fixed sized alloca in the entry block of the function,
2746 // allocate it statically on the stack.
2747 if (FuncInfo.StaticAllocaMap.count(&I))
2748 return; // getValue will auto-populate this.
2749
2750 const Type *Ty = I.getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002751 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002752 unsigned Align =
2753 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2754 I.getAlignment());
2755
2756 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002757
2758 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2759 AllocSize,
2760 DAG.getConstant(TySize, AllocSize.getValueType()));
2761
2762
2763
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002764 MVT IntPtr = TLI.getPointerTy();
2765 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002766 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002767 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002768 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002769 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002770 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002771
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002772 // Handle alignment. If the requested alignment is less than or equal to
2773 // the stack alignment, ignore it. If the size is greater than or equal to
2774 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2775 unsigned StackAlign =
2776 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2777 if (Align <= StackAlign)
2778 Align = 0;
2779
2780 // Round the size of the allocation up to the stack alignment size
2781 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002782 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002783 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002784 DAG.getIntPtrConstant(StackAlign-1));
2785 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002786 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002787 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002788 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2789
2790 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
2791 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2792 MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002793 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002794 VTs, 2, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002795 setValue(&I, DSA);
2796 DAG.setRoot(DSA.getValue(1));
2797
2798 // Inform the Frame Information that we have just allocated a variable-sized
2799 // object.
2800 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2801}
2802
2803void SelectionDAGLowering::visitLoad(LoadInst &I) {
2804 const Value *SV = I.getOperand(0);
2805 SDValue Ptr = getValue(SV);
2806
2807 const Type *Ty = I.getType();
2808 bool isVolatile = I.isVolatile();
2809 unsigned Alignment = I.getAlignment();
2810
2811 SmallVector<MVT, 4> ValueVTs;
2812 SmallVector<uint64_t, 4> Offsets;
2813 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2814 unsigned NumValues = ValueVTs.size();
2815 if (NumValues == 0)
2816 return;
2817
2818 SDValue Root;
2819 bool ConstantMemory = false;
2820 if (I.isVolatile())
2821 // Serialize volatile loads with other side effects.
2822 Root = getRoot();
2823 else if (AA->pointsToConstantMemory(SV)) {
2824 // Do not serialize (non-volatile) loads of constant memory with anything.
2825 Root = DAG.getEntryNode();
2826 ConstantMemory = true;
2827 } else {
2828 // Do not serialize non-volatile loads against each other.
2829 Root = DAG.getRoot();
2830 }
2831
2832 SmallVector<SDValue, 4> Values(NumValues);
2833 SmallVector<SDValue, 4> Chains(NumValues);
2834 MVT PtrVT = Ptr.getValueType();
2835 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002836 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002837 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002838 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002839 DAG.getConstant(Offsets[i], PtrVT)),
2840 SV, Offsets[i],
2841 isVolatile, Alignment);
2842 Values[i] = L;
2843 Chains[i] = L.getValue(1);
2844 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002845
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002846 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002847 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002848 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002849 &Chains[0], NumValues);
2850 if (isVolatile)
2851 DAG.setRoot(Chain);
2852 else
2853 PendingLoads.push_back(Chain);
2854 }
2855
Scott Michelfdc40a02009-02-17 22:15:04 +00002856 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002857 DAG.getVTList(&ValueVTs[0], NumValues),
2858 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002859}
2860
2861
2862void SelectionDAGLowering::visitStore(StoreInst &I) {
2863 Value *SrcV = I.getOperand(0);
2864 Value *PtrV = I.getOperand(1);
2865
2866 SmallVector<MVT, 4> ValueVTs;
2867 SmallVector<uint64_t, 4> Offsets;
2868 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2869 unsigned NumValues = ValueVTs.size();
2870 if (NumValues == 0)
2871 return;
2872
2873 // Get the lowered operands. Note that we do this after
2874 // checking if NumResults is zero, because with zero results
2875 // the operands won't have values in the map.
2876 SDValue Src = getValue(SrcV);
2877 SDValue Ptr = getValue(PtrV);
2878
2879 SDValue Root = getRoot();
2880 SmallVector<SDValue, 4> Chains(NumValues);
2881 MVT PtrVT = Ptr.getValueType();
2882 bool isVolatile = I.isVolatile();
2883 unsigned Alignment = I.getAlignment();
2884 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002885 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002886 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002887 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002888 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002889 DAG.getConstant(Offsets[i], PtrVT)),
2890 PtrV, Offsets[i],
2891 isVolatile, Alignment);
2892
Scott Michelfdc40a02009-02-17 22:15:04 +00002893 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002894 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002895}
2896
2897/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2898/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002899void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002900 unsigned Intrinsic) {
2901 bool HasChain = !I.doesNotAccessMemory();
2902 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2903
2904 // Build the operand list.
2905 SmallVector<SDValue, 8> Ops;
2906 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2907 if (OnlyLoad) {
2908 // We don't need to serialize loads against other loads.
2909 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002910 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002911 Ops.push_back(getRoot());
2912 }
2913 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002914
2915 // Info is set by getTgtMemInstrinsic
2916 TargetLowering::IntrinsicInfo Info;
2917 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2918
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002919 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002920 if (!IsTgtIntrinsic)
2921 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002922
2923 // Add all operands of the call to the operand list.
2924 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2925 SDValue Op = getValue(I.getOperand(i));
2926 assert(TLI.isTypeLegal(Op.getValueType()) &&
2927 "Intrinsic uses a non-legal type?");
2928 Ops.push_back(Op);
2929 }
2930
2931 std::vector<MVT> VTs;
2932 if (I.getType() != Type::VoidTy) {
2933 MVT VT = TLI.getValueType(I.getType());
2934 if (VT.isVector()) {
2935 const VectorType *DestTy = cast<VectorType>(I.getType());
2936 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002937
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002938 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2939 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2940 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002941
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002942 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2943 VTs.push_back(VT);
2944 }
2945 if (HasChain)
2946 VTs.push_back(MVT::Other);
2947
2948 const MVT *VTList = DAG.getNodeValueTypes(VTs);
2949
2950 // Create the node.
2951 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002952 if (IsTgtIntrinsic) {
2953 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002954 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002955 VTList, VTs.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002956 &Ops[0], Ops.size(),
2957 Info.memVT, Info.ptrVal, Info.offset,
2958 Info.align, Info.vol,
2959 Info.readMem, Info.writeMem);
2960 }
2961 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002962 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002963 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002964 &Ops[0], Ops.size());
2965 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002966 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002967 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002968 &Ops[0], Ops.size());
2969 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002970 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002971 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002972 &Ops[0], Ops.size());
2973
2974 if (HasChain) {
2975 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2976 if (OnlyLoad)
2977 PendingLoads.push_back(Chain);
2978 else
2979 DAG.setRoot(Chain);
2980 }
2981 if (I.getType() != Type::VoidTy) {
2982 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2983 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002984 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002985 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002986 setValue(&I, Result);
2987 }
2988}
2989
2990/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2991static GlobalVariable *ExtractTypeInfo(Value *V) {
2992 V = V->stripPointerCasts();
2993 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2994 assert ((GV || isa<ConstantPointerNull>(V)) &&
2995 "TypeInfo must be a global variable or NULL");
2996 return GV;
2997}
2998
2999namespace llvm {
3000
3001/// AddCatchInfo - Extract the personality and type infos from an eh.selector
3002/// call, and add them to the specified machine basic block.
3003void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3004 MachineBasicBlock *MBB) {
3005 // Inform the MachineModuleInfo of the personality for this landing pad.
3006 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3007 assert(CE->getOpcode() == Instruction::BitCast &&
3008 isa<Function>(CE->getOperand(0)) &&
3009 "Personality should be a function");
3010 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3011
3012 // Gather all the type infos for this landing pad and pass them along to
3013 // MachineModuleInfo.
3014 std::vector<GlobalVariable *> TyInfo;
3015 unsigned N = I.getNumOperands();
3016
3017 for (unsigned i = N - 1; i > 2; --i) {
3018 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3019 unsigned FilterLength = CI->getZExtValue();
3020 unsigned FirstCatch = i + FilterLength + !FilterLength;
3021 assert (FirstCatch <= N && "Invalid filter length");
3022
3023 if (FirstCatch < N) {
3024 TyInfo.reserve(N - FirstCatch);
3025 for (unsigned j = FirstCatch; j < N; ++j)
3026 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3027 MMI->addCatchTypeInfo(MBB, TyInfo);
3028 TyInfo.clear();
3029 }
3030
3031 if (!FilterLength) {
3032 // Cleanup.
3033 MMI->addCleanup(MBB);
3034 } else {
3035 // Filter.
3036 TyInfo.reserve(FilterLength - 1);
3037 for (unsigned j = i + 1; j < FirstCatch; ++j)
3038 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3039 MMI->addFilterTypeInfo(MBB, TyInfo);
3040 TyInfo.clear();
3041 }
3042
3043 N = i;
3044 }
3045 }
3046
3047 if (N > 3) {
3048 TyInfo.reserve(N - 3);
3049 for (unsigned j = 3; j < N; ++j)
3050 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3051 MMI->addCatchTypeInfo(MBB, TyInfo);
3052 }
3053}
3054
3055}
3056
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003057/// GetSignificand - Get the significand and build it into a floating-point
3058/// number with exponent of 1:
3059///
3060/// Op = (Op & 0x007fffff) | 0x3f800000;
3061///
3062/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003063static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003064GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3065 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003066 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003067 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003068 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003069 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003070}
3071
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003072/// GetExponent - Get the exponent:
3073///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003074/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003075///
3076/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003077static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003078GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3079 DebugLoc dl) {
3080 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003081 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003082 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003083 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003084 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003085 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003086 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003087}
3088
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003089/// getF32Constant - Get 32-bit floating point constant.
3090static SDValue
3091getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3092 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3093}
3094
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003095/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003096/// visitIntrinsicCall: I is a call instruction
3097/// Op is the associated NodeType for I
3098const char *
3099SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003100 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003101 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003102 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003103 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003104 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003105 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003106 getValue(I.getOperand(2)),
3107 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003108 setValue(&I, L);
3109 DAG.setRoot(L.getValue(1));
3110 return 0;
3111}
3112
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003113// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003114const char *
3115SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003116 SDValue Op1 = getValue(I.getOperand(1));
3117 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003118
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003119 MVT ValueVTs[] = { Op1.getValueType(), MVT::i1 };
3120 SDValue Ops[] = { Op1, Op2 };
Bill Wendling74c37652008-12-09 22:08:41 +00003121
Scott Michelfdc40a02009-02-17 22:15:04 +00003122 SDValue Result = DAG.getNode(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003123 DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2);
Bill Wendling74c37652008-12-09 22:08:41 +00003124
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003125 setValue(&I, Result);
3126 return 0;
3127}
Bill Wendling74c37652008-12-09 22:08:41 +00003128
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003129/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3130/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003131void
3132SelectionDAGLowering::visitExp(CallInst &I) {
3133 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003134 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003135
3136 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3137 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3138 SDValue Op = getValue(I.getOperand(1));
3139
3140 // Put the exponent in the right bit position for later addition to the
3141 // final result:
3142 //
3143 // #define LOG2OFe 1.4426950f
3144 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003145 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003146 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003147 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003148
3149 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003150 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3151 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003152
3153 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003154 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003155 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003156
3157 if (LimitFloatPrecision <= 6) {
3158 // For floating-point precision of 6:
3159 //
3160 // TwoToFractionalPartOfX =
3161 // 0.997535578f +
3162 // (0.735607626f + 0.252464424f * x) * x;
3163 //
3164 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003165 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003166 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003167 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003168 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003169 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3170 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003171 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003172 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003173
3174 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003175 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003176 TwoToFracPartOfX, IntegerPartOfX);
3177
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003178 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003179 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3180 // For floating-point precision of 12:
3181 //
3182 // TwoToFractionalPartOfX =
3183 // 0.999892986f +
3184 // (0.696457318f +
3185 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3186 //
3187 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003188 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003189 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003190 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003191 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003192 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3193 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003194 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003195 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3196 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003197 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003198 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003199
3200 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003201 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003202 TwoToFracPartOfX, IntegerPartOfX);
3203
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003204 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003205 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3206 // For floating-point precision of 18:
3207 //
3208 // TwoToFractionalPartOfX =
3209 // 0.999999982f +
3210 // (0.693148872f +
3211 // (0.240227044f +
3212 // (0.554906021e-1f +
3213 // (0.961591928e-2f +
3214 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3215 //
3216 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003217 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003218 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003219 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003220 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003221 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3222 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003223 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003224 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3225 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003226 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003227 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3228 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003229 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003230 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3231 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003232 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003233 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3234 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003235 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003236 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003237 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003238
3239 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003240 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003241 TwoToFracPartOfX, IntegerPartOfX);
3242
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003243 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003244 }
3245 } else {
3246 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003247 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003248 getValue(I.getOperand(1)).getValueType(),
3249 getValue(I.getOperand(1)));
3250 }
3251
Dale Johannesen59e577f2008-09-05 18:38:42 +00003252 setValue(&I, result);
3253}
3254
Bill Wendling39150252008-09-09 20:39:27 +00003255/// visitLog - Lower a log intrinsic. Handles the special sequences for
3256/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003257void
3258SelectionDAGLowering::visitLog(CallInst &I) {
3259 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003260 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003261
3262 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3263 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3264 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003265 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003266
3267 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003268 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003269 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003270 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003271
3272 // Get the significand and build it into a floating-point number with
3273 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003274 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003275
3276 if (LimitFloatPrecision <= 6) {
3277 // For floating-point precision of 6:
3278 //
3279 // LogofMantissa =
3280 // -1.1609546f +
3281 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003282 //
Bill Wendling39150252008-09-09 20:39:27 +00003283 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003284 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003285 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003286 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003287 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003288 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3289 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003290 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003291
Scott Michelfdc40a02009-02-17 22:15:04 +00003292 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003293 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003294 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3295 // For floating-point precision of 12:
3296 //
3297 // LogOfMantissa =
3298 // -1.7417939f +
3299 // (2.8212026f +
3300 // (-1.4699568f +
3301 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3302 //
3303 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003304 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003305 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003306 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003307 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003308 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3309 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003310 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003311 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3312 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003313 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003314 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3315 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003316 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003317
Scott Michelfdc40a02009-02-17 22:15:04 +00003318 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003319 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003320 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3321 // For floating-point precision of 18:
3322 //
3323 // LogOfMantissa =
3324 // -2.1072184f +
3325 // (4.2372794f +
3326 // (-3.7029485f +
3327 // (2.2781945f +
3328 // (-0.87823314f +
3329 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3330 //
3331 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003332 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003333 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003334 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003335 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003336 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3337 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003338 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003339 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3340 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003341 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003342 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3343 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003344 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003345 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3346 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003347 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003348 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3349 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003350 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003351
Scott Michelfdc40a02009-02-17 22:15:04 +00003352 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003353 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003354 }
3355 } else {
3356 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003357 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003358 getValue(I.getOperand(1)).getValueType(),
3359 getValue(I.getOperand(1)));
3360 }
3361
Dale Johannesen59e577f2008-09-05 18:38:42 +00003362 setValue(&I, result);
3363}
3364
Bill Wendling3eb59402008-09-09 00:28:24 +00003365/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3366/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003367void
3368SelectionDAGLowering::visitLog2(CallInst &I) {
3369 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003370 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003371
Dale Johannesen853244f2008-09-05 23:49:37 +00003372 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003373 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3374 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003375 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003376
Bill Wendling39150252008-09-09 20:39:27 +00003377 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003378 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003379
3380 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003381 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003382 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003383
Bill Wendling3eb59402008-09-09 00:28:24 +00003384 // Different possible minimax approximations of significand in
3385 // floating-point for various degrees of accuracy over [1,2].
3386 if (LimitFloatPrecision <= 6) {
3387 // For floating-point precision of 6:
3388 //
3389 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3390 //
3391 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003392 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003393 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003394 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003395 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003396 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3397 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003398 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003399
Scott Michelfdc40a02009-02-17 22:15:04 +00003400 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003401 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003402 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3403 // For floating-point precision of 12:
3404 //
3405 // Log2ofMantissa =
3406 // -2.51285454f +
3407 // (4.07009056f +
3408 // (-2.12067489f +
3409 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003410 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003411 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003412 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003413 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003414 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003415 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003416 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3417 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003418 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003419 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3420 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003421 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003422 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3423 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003424 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003425
Scott Michelfdc40a02009-02-17 22:15:04 +00003426 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003427 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003428 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3429 // For floating-point precision of 18:
3430 //
3431 // Log2ofMantissa =
3432 // -3.0400495f +
3433 // (6.1129976f +
3434 // (-5.3420409f +
3435 // (3.2865683f +
3436 // (-1.2669343f +
3437 // (0.27515199f -
3438 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3439 //
3440 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003441 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003442 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003443 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003444 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003445 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3446 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003447 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003448 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3449 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003450 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003451 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3452 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003453 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003454 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3455 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003456 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003457 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3458 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003459 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003460
Scott Michelfdc40a02009-02-17 22:15:04 +00003461 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003462 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003463 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003464 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003465 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003466 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003467 getValue(I.getOperand(1)).getValueType(),
3468 getValue(I.getOperand(1)));
3469 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003470
Dale Johannesen59e577f2008-09-05 18:38:42 +00003471 setValue(&I, result);
3472}
3473
Bill Wendling3eb59402008-09-09 00:28:24 +00003474/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3475/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003476void
3477SelectionDAGLowering::visitLog10(CallInst &I) {
3478 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003479 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003480
Dale Johannesen852680a2008-09-05 21:27:19 +00003481 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003482 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3483 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003484 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003485
Bill Wendling39150252008-09-09 20:39:27 +00003486 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003487 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003488 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003489 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003490
3491 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003492 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003493 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003494
3495 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003496 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003497 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003498 // Log10ofMantissa =
3499 // -0.50419619f +
3500 // (0.60948995f - 0.10380950f * x) * x;
3501 //
3502 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003503 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003504 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003505 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003506 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003507 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3508 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003509 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003510
Scott Michelfdc40a02009-02-17 22:15:04 +00003511 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003512 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003513 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3514 // For floating-point precision of 12:
3515 //
3516 // Log10ofMantissa =
3517 // -0.64831180f +
3518 // (0.91751397f +
3519 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3520 //
3521 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003522 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003523 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003524 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003525 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003526 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3527 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003528 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003529 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3530 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003531 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003532
Scott Michelfdc40a02009-02-17 22:15:04 +00003533 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003534 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003535 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003536 // For floating-point precision of 18:
3537 //
3538 // Log10ofMantissa =
3539 // -0.84299375f +
3540 // (1.5327582f +
3541 // (-1.0688956f +
3542 // (0.49102474f +
3543 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3544 //
3545 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003546 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003547 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003548 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003549 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003550 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3551 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003552 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003553 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3554 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003555 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003556 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3557 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003558 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003559 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3560 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003561 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003562
Scott Michelfdc40a02009-02-17 22:15:04 +00003563 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003564 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003565 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003566 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003567 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003568 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003569 getValue(I.getOperand(1)).getValueType(),
3570 getValue(I.getOperand(1)));
3571 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003572
Dale Johannesen59e577f2008-09-05 18:38:42 +00003573 setValue(&I, result);
3574}
3575
Bill Wendlinge10c8142008-09-09 22:39:21 +00003576/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3577/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003578void
3579SelectionDAGLowering::visitExp2(CallInst &I) {
3580 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003581 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003582
Dale Johannesen601d3c02008-09-05 01:48:15 +00003583 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003584 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3585 SDValue Op = getValue(I.getOperand(1));
3586
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003587 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003588
3589 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003590 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3591 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003592
3593 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003594 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003595 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003596
3597 if (LimitFloatPrecision <= 6) {
3598 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003599 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003600 // TwoToFractionalPartOfX =
3601 // 0.997535578f +
3602 // (0.735607626f + 0.252464424f * x) * x;
3603 //
3604 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003605 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003606 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003607 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003608 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003609 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3610 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003611 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003612 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003613 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003614 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003615
Scott Michelfdc40a02009-02-17 22:15:04 +00003616 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003617 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003618 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3619 // For floating-point precision of 12:
3620 //
3621 // TwoToFractionalPartOfX =
3622 // 0.999892986f +
3623 // (0.696457318f +
3624 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3625 //
3626 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003627 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003628 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003629 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003630 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003631 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3632 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003633 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003634 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3635 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003636 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003637 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003638 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003639 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003640
Scott Michelfdc40a02009-02-17 22:15:04 +00003641 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003642 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003643 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3644 // For floating-point precision of 18:
3645 //
3646 // TwoToFractionalPartOfX =
3647 // 0.999999982f +
3648 // (0.693148872f +
3649 // (0.240227044f +
3650 // (0.554906021e-1f +
3651 // (0.961591928e-2f +
3652 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3653 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003654 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003655 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003656 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003657 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003658 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3659 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003660 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003661 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3662 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003663 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003664 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3665 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003666 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003667 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3668 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003669 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003670 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3671 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003672 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003673 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003674 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003675 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003676
Scott Michelfdc40a02009-02-17 22:15:04 +00003677 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003678 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003679 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003680 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003681 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003682 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003683 getValue(I.getOperand(1)).getValueType(),
3684 getValue(I.getOperand(1)));
3685 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003686
Dale Johannesen601d3c02008-09-05 01:48:15 +00003687 setValue(&I, result);
3688}
3689
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003690/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3691/// limited-precision mode with x == 10.0f.
3692void
3693SelectionDAGLowering::visitPow(CallInst &I) {
3694 SDValue result;
3695 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003696 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003697 bool IsExp10 = false;
3698
3699 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003700 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003701 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3702 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3703 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3704 APFloat Ten(10.0f);
3705 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3706 }
3707 }
3708 }
3709
3710 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3711 SDValue Op = getValue(I.getOperand(2));
3712
3713 // Put the exponent in the right bit position for later addition to the
3714 // final result:
3715 //
3716 // #define LOG2OF10 3.3219281f
3717 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003718 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003719 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003720 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003721
3722 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003723 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3724 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003725
3726 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003727 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003728 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003729
3730 if (LimitFloatPrecision <= 6) {
3731 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003732 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003733 // twoToFractionalPartOfX =
3734 // 0.997535578f +
3735 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003736 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003737 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003738 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003739 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003740 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003741 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003742 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3743 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003744 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003745 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003746 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003747 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003748
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003749 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3750 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003751 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3752 // For floating-point precision of 12:
3753 //
3754 // TwoToFractionalPartOfX =
3755 // 0.999892986f +
3756 // (0.696457318f +
3757 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3758 //
3759 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003760 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003761 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003762 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003763 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003764 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3765 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003766 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003767 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3768 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003769 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003770 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003771 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003772 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003773
Scott Michelfdc40a02009-02-17 22:15:04 +00003774 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003775 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003776 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3777 // For floating-point precision of 18:
3778 //
3779 // TwoToFractionalPartOfX =
3780 // 0.999999982f +
3781 // (0.693148872f +
3782 // (0.240227044f +
3783 // (0.554906021e-1f +
3784 // (0.961591928e-2f +
3785 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3786 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003787 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003788 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003789 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003790 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003791 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3792 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003793 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003794 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3795 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003796 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003797 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3798 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003799 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003800 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3801 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003802 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003803 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3804 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003805 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003806 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003807 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003808 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003809
Scott Michelfdc40a02009-02-17 22:15:04 +00003810 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003811 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003812 }
3813 } else {
3814 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003815 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003816 getValue(I.getOperand(1)).getValueType(),
3817 getValue(I.getOperand(1)),
3818 getValue(I.getOperand(2)));
3819 }
3820
3821 setValue(&I, result);
3822}
3823
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003824/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3825/// we want to emit this as a call to a named external function, return the name
3826/// otherwise lower it and return null.
3827const char *
3828SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003829 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003830 switch (Intrinsic) {
3831 default:
3832 // By default, turn this into a target intrinsic node.
3833 visitTargetIntrinsic(I, Intrinsic);
3834 return 0;
3835 case Intrinsic::vastart: visitVAStart(I); return 0;
3836 case Intrinsic::vaend: visitVAEnd(I); return 0;
3837 case Intrinsic::vacopy: visitVACopy(I); return 0;
3838 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003839 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003840 getValue(I.getOperand(1))));
3841 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003842 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003843 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003844 getValue(I.getOperand(1))));
3845 return 0;
3846 case Intrinsic::setjmp:
3847 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3848 break;
3849 case Intrinsic::longjmp:
3850 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3851 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003852 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003853 SDValue Op1 = getValue(I.getOperand(1));
3854 SDValue Op2 = getValue(I.getOperand(2));
3855 SDValue Op3 = getValue(I.getOperand(3));
3856 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003857 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003858 I.getOperand(1), 0, I.getOperand(2), 0));
3859 return 0;
3860 }
Chris Lattner824b9582008-11-21 16:42:48 +00003861 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003862 SDValue Op1 = getValue(I.getOperand(1));
3863 SDValue Op2 = getValue(I.getOperand(2));
3864 SDValue Op3 = getValue(I.getOperand(3));
3865 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003866 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003867 I.getOperand(1), 0));
3868 return 0;
3869 }
Chris Lattner824b9582008-11-21 16:42:48 +00003870 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003871 SDValue Op1 = getValue(I.getOperand(1));
3872 SDValue Op2 = getValue(I.getOperand(2));
3873 SDValue Op3 = getValue(I.getOperand(3));
3874 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3875
3876 // If the source and destination are known to not be aliases, we can
3877 // lower memmove as memcpy.
3878 uint64_t Size = -1ULL;
3879 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003880 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003881 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3882 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003883 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003884 I.getOperand(1), 0, I.getOperand(2), 0));
3885 return 0;
3886 }
3887
Dale Johannesena04b7572009-02-03 23:04:43 +00003888 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003889 I.getOperand(1), 0, I.getOperand(2), 0));
3890 return 0;
3891 }
3892 case Intrinsic::dbg_stoppoint: {
Devang Patel83489bb2009-01-13 00:35:13 +00003893 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003894 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003895 if (DW && DW->ValidDebugInfo(SPI.getContext())) {
Evan Chenge3d42322009-02-25 07:04:34 +00003896 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003897 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3898 SPI.getLine(),
3899 SPI.getColumn(),
Devang Patel83489bb2009-01-13 00:35:13 +00003900 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003901 DICompileUnit CU(cast<GlobalVariable>(SPI.getContext()));
Bill Wendling0582ae92009-03-13 04:39:26 +00003902 std::string Dir, FN;
3903 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
3904 CU.getFilename(FN));
Evan Chenge3d42322009-02-25 07:04:34 +00003905 unsigned idx = MF.getOrCreateDebugLocID(SrcFile,
3906 SPI.getLine(), SPI.getColumn());
Dale Johannesen66978ee2009-01-31 02:22:37 +00003907 setCurDebugLoc(DebugLoc::get(idx));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003908 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003909 return 0;
3910 }
3911 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003912 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003913 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Bill Wendling92c1e122009-02-13 02:16:35 +00003914 if (DW && DW->ValidDebugInfo(RSI.getContext())) {
3915 unsigned LabelID =
3916 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Bill Wendlingdfdacee2009-02-19 21:12:54 +00003917 if (Fast)
Bill Wendling86e6cb92009-02-17 01:04:54 +00003918 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3919 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003920 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003921
3922 return 0;
3923 }
3924 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003925 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003926 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Bill Wendling92c1e122009-02-13 02:16:35 +00003927 if (DW && DW->ValidDebugInfo(REI.getContext())) {
3928 unsigned LabelID =
3929 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
Bill Wendlingdfdacee2009-02-19 21:12:54 +00003930 if (Fast)
Bill Wendling86e6cb92009-02-17 01:04:54 +00003931 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3932 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003933 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003934
3935 return 0;
3936 }
3937 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003938 DwarfWriter *DW = DAG.getDwarfWriter();
3939 if (!DW) return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003940 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
3941 Value *SP = FSI.getSubprogram();
Devang Patelcf3a4482009-01-15 23:41:32 +00003942 if (SP && DW->ValidDebugInfo(SP)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003943 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3944 // what (most?) gdb expects.
Evan Chenge3d42322009-02-25 07:04:34 +00003945 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel83489bb2009-01-13 00:35:13 +00003946 DISubprogram Subprogram(cast<GlobalVariable>(SP));
3947 DICompileUnit CompileUnit = Subprogram.getCompileUnit();
Bill Wendling0582ae92009-03-13 04:39:26 +00003948 std::string Dir, FN;
3949 unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(Dir),
3950 CompileUnit.getFilename(FN));
Bill Wendling9bc96a52009-02-03 00:55:04 +00003951
Devang Patel20dd0462008-11-06 00:30:09 +00003952 // Record the source line but does not create a label for the normal
3953 // function start. It will be emitted at asm emission time. However,
3954 // create a label if this is a beginning of inlined function.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003955 unsigned Line = Subprogram.getLineNumber();
Bill Wendling92c1e122009-02-13 02:16:35 +00003956
Bill Wendling5aa49772009-02-24 02:35:30 +00003957 if (Fast) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00003958 unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile);
3959 if (DW->getRecordSourceLineCount() != 1)
3960 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3961 getRoot(), LabelID));
3962 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003963
Evan Chenge3d42322009-02-25 07:04:34 +00003964 setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003965 }
3966
3967 return 0;
3968 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003969 case Intrinsic::dbg_declare: {
Bill Wendling5aa49772009-02-24 02:35:30 +00003970 if (Fast) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00003971 DwarfWriter *DW = DAG.getDwarfWriter();
3972 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3973 Value *Variable = DI.getVariable();
3974 if (DW && DW->ValidDebugInfo(Variable))
3975 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
3976 getValue(DI.getAddress()), getValue(Variable)));
3977 } else {
3978 // FIXME: Do something sensible here when we support debug declare.
3979 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003980 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003981 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003982 case Intrinsic::eh_exception: {
3983 if (!CurMBB->isLandingPad()) {
3984 // FIXME: Mark exception register as live in. Hack for PR1508.
3985 unsigned Reg = TLI.getExceptionAddressRegister();
3986 if (Reg) CurMBB->addLiveIn(Reg);
3987 }
3988 // Insert the EXCEPTIONADDR instruction.
3989 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3990 SDValue Ops[1];
3991 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003992 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003993 setValue(&I, Op);
3994 DAG.setRoot(Op.getValue(1));
3995 return 0;
3996 }
3997
3998 case Intrinsic::eh_selector_i32:
3999 case Intrinsic::eh_selector_i64: {
4000 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4001 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
4002 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004003
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004004 if (MMI) {
4005 if (CurMBB->isLandingPad())
4006 AddCatchInfo(I, MMI, CurMBB);
4007 else {
4008#ifndef NDEBUG
4009 FuncInfo.CatchInfoLost.insert(&I);
4010#endif
4011 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4012 unsigned Reg = TLI.getExceptionSelectorRegister();
4013 if (Reg) CurMBB->addLiveIn(Reg);
4014 }
4015
4016 // Insert the EHSELECTION instruction.
4017 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4018 SDValue Ops[2];
4019 Ops[0] = getValue(I.getOperand(1));
4020 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004021 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004022 setValue(&I, Op);
4023 DAG.setRoot(Op.getValue(1));
4024 } else {
4025 setValue(&I, DAG.getConstant(0, VT));
4026 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004027
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004028 return 0;
4029 }
4030
4031 case Intrinsic::eh_typeid_for_i32:
4032 case Intrinsic::eh_typeid_for_i64: {
4033 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4034 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4035 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004036
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004037 if (MMI) {
4038 // Find the type id for the given typeinfo.
4039 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4040
4041 unsigned TypeID = MMI->getTypeIDFor(GV);
4042 setValue(&I, DAG.getConstant(TypeID, VT));
4043 } else {
4044 // Return something different to eh_selector.
4045 setValue(&I, DAG.getConstant(1, VT));
4046 }
4047
4048 return 0;
4049 }
4050
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004051 case Intrinsic::eh_return_i32:
4052 case Intrinsic::eh_return_i64:
4053 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004054 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004055 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004056 MVT::Other,
4057 getControlRoot(),
4058 getValue(I.getOperand(1)),
4059 getValue(I.getOperand(2))));
4060 } else {
4061 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4062 }
4063
4064 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004065 case Intrinsic::eh_unwind_init:
4066 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4067 MMI->setCallsUnwindInit(true);
4068 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004069
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004070 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004071
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004072 case Intrinsic::eh_dwarf_cfa: {
4073 MVT VT = getValue(I.getOperand(1)).getValueType();
4074 SDValue CfaArg;
4075 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004076 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004077 TLI.getPointerTy(), getValue(I.getOperand(1)));
4078 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004079 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004080 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004081
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004082 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004083 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004084 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004085 TLI.getPointerTy()),
4086 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004087 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004088 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004089 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004090 TLI.getPointerTy(),
4091 DAG.getConstant(0,
4092 TLI.getPointerTy())),
4093 Offset));
4094 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004095 }
4096
Mon P Wang77cdf302008-11-10 20:54:11 +00004097 case Intrinsic::convertff:
4098 case Intrinsic::convertfsi:
4099 case Intrinsic::convertfui:
4100 case Intrinsic::convertsif:
4101 case Intrinsic::convertuif:
4102 case Intrinsic::convertss:
4103 case Intrinsic::convertsu:
4104 case Intrinsic::convertus:
4105 case Intrinsic::convertuu: {
4106 ISD::CvtCode Code = ISD::CVT_INVALID;
4107 switch (Intrinsic) {
4108 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4109 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4110 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4111 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4112 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4113 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4114 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4115 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4116 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4117 }
4118 MVT DestVT = TLI.getValueType(I.getType());
4119 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004120 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004121 DAG.getValueType(DestVT),
4122 DAG.getValueType(getValue(Op1).getValueType()),
4123 getValue(I.getOperand(2)),
4124 getValue(I.getOperand(3)),
4125 Code));
4126 return 0;
4127 }
4128
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004129 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004130 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004131 getValue(I.getOperand(1)).getValueType(),
4132 getValue(I.getOperand(1))));
4133 return 0;
4134 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004135 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004136 getValue(I.getOperand(1)).getValueType(),
4137 getValue(I.getOperand(1)),
4138 getValue(I.getOperand(2))));
4139 return 0;
4140 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004141 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004142 getValue(I.getOperand(1)).getValueType(),
4143 getValue(I.getOperand(1))));
4144 return 0;
4145 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004146 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004147 getValue(I.getOperand(1)).getValueType(),
4148 getValue(I.getOperand(1))));
4149 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004150 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004151 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004152 return 0;
4153 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004154 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004155 return 0;
4156 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004157 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004158 return 0;
4159 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004160 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004161 return 0;
4162 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004163 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004164 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004165 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004166 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004167 return 0;
4168 case Intrinsic::pcmarker: {
4169 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004170 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004171 return 0;
4172 }
4173 case Intrinsic::readcyclecounter: {
4174 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004175 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004176 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
4177 &Op, 1);
4178 setValue(&I, Tmp);
4179 DAG.setRoot(Tmp.getValue(1));
4180 return 0;
4181 }
4182 case Intrinsic::part_select: {
4183 // Currently not implemented: just abort
4184 assert(0 && "part_select intrinsic not implemented");
4185 abort();
4186 }
4187 case Intrinsic::part_set: {
4188 // Currently not implemented: just abort
4189 assert(0 && "part_set intrinsic not implemented");
4190 abort();
4191 }
4192 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004193 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004194 getValue(I.getOperand(1)).getValueType(),
4195 getValue(I.getOperand(1))));
4196 return 0;
4197 case Intrinsic::cttz: {
4198 SDValue Arg = getValue(I.getOperand(1));
4199 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004200 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004201 setValue(&I, result);
4202 return 0;
4203 }
4204 case Intrinsic::ctlz: {
4205 SDValue Arg = getValue(I.getOperand(1));
4206 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004207 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004208 setValue(&I, result);
4209 return 0;
4210 }
4211 case Intrinsic::ctpop: {
4212 SDValue Arg = getValue(I.getOperand(1));
4213 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004214 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004215 setValue(&I, result);
4216 return 0;
4217 }
4218 case Intrinsic::stacksave: {
4219 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004220 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004221 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
4222 setValue(&I, Tmp);
4223 DAG.setRoot(Tmp.getValue(1));
4224 return 0;
4225 }
4226 case Intrinsic::stackrestore: {
4227 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004228 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004229 return 0;
4230 }
Bill Wendling57344502008-11-18 11:01:33 +00004231 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004232 // Emit code into the DAG to store the stack guard onto the stack.
4233 MachineFunction &MF = DAG.getMachineFunction();
4234 MachineFrameInfo *MFI = MF.getFrameInfo();
4235 MVT PtrTy = TLI.getPointerTy();
4236
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004237 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4238 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004239
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004240 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004241 MFI->setStackProtectorIndex(FI);
4242
4243 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4244
4245 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004246 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004247 PseudoSourceValue::getFixedStack(FI),
4248 0, true);
4249 setValue(&I, Result);
4250 DAG.setRoot(Result);
4251 return 0;
4252 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004253 case Intrinsic::var_annotation:
4254 // Discard annotate attributes
4255 return 0;
4256
4257 case Intrinsic::init_trampoline: {
4258 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4259
4260 SDValue Ops[6];
4261 Ops[0] = getRoot();
4262 Ops[1] = getValue(I.getOperand(1));
4263 Ops[2] = getValue(I.getOperand(2));
4264 Ops[3] = getValue(I.getOperand(3));
4265 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4266 Ops[5] = DAG.getSrcValue(F);
4267
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004268 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004269 DAG.getNodeValueTypes(TLI.getPointerTy(),
4270 MVT::Other), 2,
4271 Ops, 6);
4272
4273 setValue(&I, Tmp);
4274 DAG.setRoot(Tmp.getValue(1));
4275 return 0;
4276 }
4277
4278 case Intrinsic::gcroot:
4279 if (GFI) {
4280 Value *Alloca = I.getOperand(1);
4281 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004282
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004283 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4284 GFI->addStackRoot(FI->getIndex(), TypeMap);
4285 }
4286 return 0;
4287
4288 case Intrinsic::gcread:
4289 case Intrinsic::gcwrite:
4290 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4291 return 0;
4292
4293 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004294 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004295 return 0;
4296 }
4297
4298 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004299 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004300 return 0;
4301 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004302
Bill Wendlingef375462008-11-21 02:38:44 +00004303 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004304 return implVisitAluOverflow(I, ISD::UADDO);
4305 case Intrinsic::sadd_with_overflow:
4306 return implVisitAluOverflow(I, ISD::SADDO);
4307 case Intrinsic::usub_with_overflow:
4308 return implVisitAluOverflow(I, ISD::USUBO);
4309 case Intrinsic::ssub_with_overflow:
4310 return implVisitAluOverflow(I, ISD::SSUBO);
4311 case Intrinsic::umul_with_overflow:
4312 return implVisitAluOverflow(I, ISD::UMULO);
4313 case Intrinsic::smul_with_overflow:
4314 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004315
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004316 case Intrinsic::prefetch: {
4317 SDValue Ops[4];
4318 Ops[0] = getRoot();
4319 Ops[1] = getValue(I.getOperand(1));
4320 Ops[2] = getValue(I.getOperand(2));
4321 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004322 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004323 return 0;
4324 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004325
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004326 case Intrinsic::memory_barrier: {
4327 SDValue Ops[6];
4328 Ops[0] = getRoot();
4329 for (int x = 1; x < 6; ++x)
4330 Ops[x] = getValue(I.getOperand(x));
4331
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004332 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004333 return 0;
4334 }
4335 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004336 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004337 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004338 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004339 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4340 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004341 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004342 getValue(I.getOperand(2)),
4343 getValue(I.getOperand(3)),
4344 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004345 setValue(&I, L);
4346 DAG.setRoot(L.getValue(1));
4347 return 0;
4348 }
4349 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004350 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004351 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004352 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004353 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004354 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004355 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004356 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004357 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004358 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004359 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004360 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004361 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004362 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004363 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004364 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004365 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004366 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004367 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004368 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004369 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004370 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004371 }
4372}
4373
4374
4375void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4376 bool IsTailCall,
4377 MachineBasicBlock *LandingPad) {
4378 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4379 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4380 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4381 unsigned BeginLabel = 0, EndLabel = 0;
4382
4383 TargetLowering::ArgListTy Args;
4384 TargetLowering::ArgListEntry Entry;
4385 Args.reserve(CS.arg_size());
4386 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4387 i != e; ++i) {
4388 SDValue ArgNode = getValue(*i);
4389 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4390
4391 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004392 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4393 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4394 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4395 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4396 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4397 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004398 Entry.Alignment = CS.getParamAlignment(attrInd);
4399 Args.push_back(Entry);
4400 }
4401
4402 if (LandingPad && MMI) {
4403 // Insert a label before the invoke call to mark the try range. This can be
4404 // used to detect deletion of the invoke via the MachineModuleInfo.
4405 BeginLabel = MMI->NextLabelID();
4406 // Both PendingLoads and PendingExports must be flushed here;
4407 // this call might not return.
4408 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004409 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4410 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004411 }
4412
4413 std::pair<SDValue,SDValue> Result =
4414 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004415 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004416 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
4417 CS.paramHasAttr(0, Attribute::InReg),
4418 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004419 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004420 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004421 if (CS.getType() != Type::VoidTy)
4422 setValue(CS.getInstruction(), Result.first);
4423 DAG.setRoot(Result.second);
4424
4425 if (LandingPad && MMI) {
4426 // Insert a label at the end of the invoke call to mark the try range. This
4427 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4428 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004429 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4430 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004431
4432 // Inform MachineModuleInfo of range.
4433 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4434 }
4435}
4436
4437
4438void SelectionDAGLowering::visitCall(CallInst &I) {
4439 const char *RenameFn = 0;
4440 if (Function *F = I.getCalledFunction()) {
4441 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004442 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4443 if (II) {
4444 if (unsigned IID = II->getIntrinsicID(F)) {
4445 RenameFn = visitIntrinsicCall(I, IID);
4446 if (!RenameFn)
4447 return;
4448 }
4449 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004450 if (unsigned IID = F->getIntrinsicID()) {
4451 RenameFn = visitIntrinsicCall(I, IID);
4452 if (!RenameFn)
4453 return;
4454 }
4455 }
4456
4457 // Check for well-known libc/libm calls. If the function is internal, it
4458 // can't be a library call.
4459 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004460 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004461 const char *NameStr = F->getNameStart();
4462 if (NameStr[0] == 'c' &&
4463 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4464 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4465 if (I.getNumOperands() == 3 && // Basic sanity checks.
4466 I.getOperand(1)->getType()->isFloatingPoint() &&
4467 I.getType() == I.getOperand(1)->getType() &&
4468 I.getType() == I.getOperand(2)->getType()) {
4469 SDValue LHS = getValue(I.getOperand(1));
4470 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004471 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004472 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004473 return;
4474 }
4475 } else if (NameStr[0] == 'f' &&
4476 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4477 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4478 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4479 if (I.getNumOperands() == 2 && // Basic sanity checks.
4480 I.getOperand(1)->getType()->isFloatingPoint() &&
4481 I.getType() == I.getOperand(1)->getType()) {
4482 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004483 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004484 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004485 return;
4486 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004487 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004488 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4489 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4490 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4491 if (I.getNumOperands() == 2 && // Basic sanity checks.
4492 I.getOperand(1)->getType()->isFloatingPoint() &&
4493 I.getType() == I.getOperand(1)->getType()) {
4494 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004495 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004496 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004497 return;
4498 }
4499 } else if (NameStr[0] == 'c' &&
4500 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4501 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4502 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4503 if (I.getNumOperands() == 2 && // Basic sanity checks.
4504 I.getOperand(1)->getType()->isFloatingPoint() &&
4505 I.getType() == I.getOperand(1)->getType()) {
4506 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004507 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004508 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004509 return;
4510 }
4511 }
4512 }
4513 } else if (isa<InlineAsm>(I.getOperand(0))) {
4514 visitInlineAsm(&I);
4515 return;
4516 }
4517
4518 SDValue Callee;
4519 if (!RenameFn)
4520 Callee = getValue(I.getOperand(0));
4521 else
Bill Wendling056292f2008-09-16 21:48:12 +00004522 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004523
4524 LowerCallTo(&I, Callee, I.isTailCall());
4525}
4526
4527
4528/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004529/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004530/// Chain/Flag as the input and updates them for the output Chain/Flag.
4531/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004532SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004533 SDValue &Chain,
4534 SDValue *Flag) const {
4535 // Assemble the legal parts into the final values.
4536 SmallVector<SDValue, 4> Values(ValueVTs.size());
4537 SmallVector<SDValue, 8> Parts;
4538 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4539 // Copy the legal parts from the registers.
4540 MVT ValueVT = ValueVTs[Value];
4541 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4542 MVT RegisterVT = RegVTs[Value];
4543
4544 Parts.resize(NumRegs);
4545 for (unsigned i = 0; i != NumRegs; ++i) {
4546 SDValue P;
4547 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004548 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004549 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004550 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004551 *Flag = P.getValue(2);
4552 }
4553 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004554
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004555 // If the source register was virtual and if we know something about it,
4556 // add an assert node.
4557 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4558 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4559 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4560 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4561 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4562 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004563
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004564 unsigned RegSize = RegisterVT.getSizeInBits();
4565 unsigned NumSignBits = LOI.NumSignBits;
4566 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004567
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004568 // FIXME: We capture more information than the dag can represent. For
4569 // now, just use the tightest assertzext/assertsext possible.
4570 bool isSExt = true;
4571 MVT FromVT(MVT::Other);
4572 if (NumSignBits == RegSize)
4573 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4574 else if (NumZeroBits >= RegSize-1)
4575 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4576 else if (NumSignBits > RegSize-8)
4577 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
4578 else if (NumZeroBits >= RegSize-9)
4579 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4580 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004581 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004582 else if (NumZeroBits >= RegSize-17)
Bill Wendling181b6272008-10-19 20:34:04 +00004583 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004584 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004585 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004586 else if (NumZeroBits >= RegSize-33)
Bill Wendling181b6272008-10-19 20:34:04 +00004587 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004588
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004589 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004590 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004591 RegisterVT, P, DAG.getValueType(FromVT));
4592
4593 }
4594 }
4595 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004596
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004597 Parts[i] = P;
4598 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004599
Scott Michelfdc40a02009-02-17 22:15:04 +00004600 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004601 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004602 Part += NumRegs;
4603 Parts.clear();
4604 }
4605
Dale Johannesen66978ee2009-01-31 02:22:37 +00004606 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004607 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4608 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004609}
4610
4611/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004612/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004613/// Chain/Flag as the input and updates them for the output Chain/Flag.
4614/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004615void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004616 SDValue &Chain, SDValue *Flag) const {
4617 // Get the list of the values's legal parts.
4618 unsigned NumRegs = Regs.size();
4619 SmallVector<SDValue, 8> Parts(NumRegs);
4620 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4621 MVT ValueVT = ValueVTs[Value];
4622 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4623 MVT RegisterVT = RegVTs[Value];
4624
Dale Johannesen66978ee2009-01-31 02:22:37 +00004625 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004626 &Parts[Part], NumParts, RegisterVT);
4627 Part += NumParts;
4628 }
4629
4630 // Copy the parts into the registers.
4631 SmallVector<SDValue, 8> Chains(NumRegs);
4632 for (unsigned i = 0; i != NumRegs; ++i) {
4633 SDValue Part;
4634 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004635 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004636 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004637 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004638 *Flag = Part.getValue(1);
4639 }
4640 Chains[i] = Part.getValue(0);
4641 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004642
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004644 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004645 // flagged to it. That is the CopyToReg nodes and the user are considered
4646 // a single scheduling unit. If we create a TokenFactor and return it as
4647 // chain, then the TokenFactor is both a predecessor (operand) of the
4648 // user as well as a successor (the TF operands are flagged to the user).
4649 // c1, f1 = CopyToReg
4650 // c2, f2 = CopyToReg
4651 // c3 = TokenFactor c1, c2
4652 // ...
4653 // = op c3, ..., f2
4654 Chain = Chains[NumRegs-1];
4655 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004656 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004657}
4658
4659/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004660/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004661/// values added into it.
4662void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
4663 std::vector<SDValue> &Ops) const {
4664 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
4665 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
4666 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4667 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4668 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004669 for (unsigned i = 0; i != NumRegs; ++i) {
4670 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004671 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004672 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004673 }
4674}
4675
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004676/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004677/// i.e. it isn't a stack pointer or some other special register, return the
4678/// register class for the register. Otherwise, return null.
4679static const TargetRegisterClass *
4680isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4681 const TargetLowering &TLI,
4682 const TargetRegisterInfo *TRI) {
4683 MVT FoundVT = MVT::Other;
4684 const TargetRegisterClass *FoundRC = 0;
4685 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4686 E = TRI->regclass_end(); RCI != E; ++RCI) {
4687 MVT ThisVT = MVT::Other;
4688
4689 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004690 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004691 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4692 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4693 I != E; ++I) {
4694 if (TLI.isTypeLegal(*I)) {
4695 // If we have already found this register in a different register class,
4696 // choose the one with the largest VT specified. For example, on
4697 // PowerPC, we favor f64 register classes over f32.
4698 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4699 ThisVT = *I;
4700 break;
4701 }
4702 }
4703 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004704
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004705 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004706
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004707 // NOTE: This isn't ideal. In particular, this might allocate the
4708 // frame pointer in functions that need it (due to them not being taken
4709 // out of allocation, because a variable sized allocation hasn't been seen
4710 // yet). This is a slight code pessimization, but should still work.
4711 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4712 E = RC->allocation_order_end(MF); I != E; ++I)
4713 if (*I == Reg) {
4714 // We found a matching register class. Keep looking at others in case
4715 // we find one with larger registers that this physreg is also in.
4716 FoundRC = RC;
4717 FoundVT = ThisVT;
4718 break;
4719 }
4720 }
4721 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004722}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004723
4724
4725namespace llvm {
4726/// AsmOperandInfo - This contains information for each constraint that we are
4727/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004728class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004729 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004730public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004731 /// CallOperand - If this is the result output operand or a clobber
4732 /// this is null, otherwise it is the incoming operand to the CallInst.
4733 /// This gets modified as the asm is processed.
4734 SDValue CallOperand;
4735
4736 /// AssignedRegs - If this is a register or register class operand, this
4737 /// contains the set of register corresponding to the operand.
4738 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004739
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004740 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4741 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4742 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004743
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004744 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4745 /// busy in OutputRegs/InputRegs.
4746 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004747 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004748 std::set<unsigned> &InputRegs,
4749 const TargetRegisterInfo &TRI) const {
4750 if (isOutReg) {
4751 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4752 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4753 }
4754 if (isInReg) {
4755 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4756 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4757 }
4758 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004759
Chris Lattner81249c92008-10-17 17:05:25 +00004760 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4761 /// corresponds to. If there is no Value* for this operand, it returns
4762 /// MVT::Other.
4763 MVT getCallOperandValMVT(const TargetLowering &TLI,
4764 const TargetData *TD) const {
4765 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004766
Chris Lattner81249c92008-10-17 17:05:25 +00004767 if (isa<BasicBlock>(CallOperandVal))
4768 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004769
Chris Lattner81249c92008-10-17 17:05:25 +00004770 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004771
Chris Lattner81249c92008-10-17 17:05:25 +00004772 // If this is an indirect operand, the operand is a pointer to the
4773 // accessed type.
4774 if (isIndirect)
4775 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004776
Chris Lattner81249c92008-10-17 17:05:25 +00004777 // If OpTy is not a single value, it may be a struct/union that we
4778 // can tile with integers.
4779 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4780 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4781 switch (BitSize) {
4782 default: break;
4783 case 1:
4784 case 8:
4785 case 16:
4786 case 32:
4787 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004788 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004789 OpTy = IntegerType::get(BitSize);
4790 break;
4791 }
4792 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004793
Chris Lattner81249c92008-10-17 17:05:25 +00004794 return TLI.getValueType(OpTy, true);
4795 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004796
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004797private:
4798 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4799 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004800 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004801 const TargetRegisterInfo &TRI) {
4802 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4803 Regs.insert(Reg);
4804 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4805 for (; *Aliases; ++Aliases)
4806 Regs.insert(*Aliases);
4807 }
4808};
4809} // end llvm namespace.
4810
4811
4812/// GetRegistersForValue - Assign registers (virtual or physical) for the
4813/// specified operand. We prefer to assign virtual registers, to allow the
4814/// register allocator handle the assignment process. However, if the asm uses
4815/// features that we can't model on machineinstrs, we have SDISel do the
4816/// allocation. This produces generally horrible, but correct, code.
4817///
4818/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004819/// Input and OutputRegs are the set of already allocated physical registers.
4820///
4821void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004822GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004823 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004824 std::set<unsigned> &InputRegs) {
4825 // Compute whether this value requires an input register, an output register,
4826 // or both.
4827 bool isOutReg = false;
4828 bool isInReg = false;
4829 switch (OpInfo.Type) {
4830 case InlineAsm::isOutput:
4831 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004832
4833 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004834 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004835 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004836 break;
4837 case InlineAsm::isInput:
4838 isInReg = true;
4839 isOutReg = false;
4840 break;
4841 case InlineAsm::isClobber:
4842 isOutReg = true;
4843 isInReg = true;
4844 break;
4845 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004846
4847
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004848 MachineFunction &MF = DAG.getMachineFunction();
4849 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004851 // If this is a constraint for a single physreg, or a constraint for a
4852 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004853 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004854 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4855 OpInfo.ConstraintVT);
4856
4857 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004858 if (OpInfo.ConstraintVT != MVT::Other) {
4859 // If this is a FP input in an integer register (or visa versa) insert a bit
4860 // cast of the input value. More generally, handle any case where the input
4861 // value disagrees with the register class we plan to stick this in.
4862 if (OpInfo.Type == InlineAsm::isInput &&
4863 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4864 // Try to convert to the first MVT that the reg class contains. If the
4865 // types are identical size, use a bitcast to convert (e.g. two differing
4866 // vector types).
4867 MVT RegVT = *PhysReg.second->vt_begin();
4868 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004869 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004870 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004871 OpInfo.ConstraintVT = RegVT;
4872 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4873 // If the input is a FP value and we want it in FP registers, do a
4874 // bitcast to the corresponding integer type. This turns an f64 value
4875 // into i64, which can be passed with two i32 values on a 32-bit
4876 // machine.
4877 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004878 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004879 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004880 OpInfo.ConstraintVT = RegVT;
4881 }
4882 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004883
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004884 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004885 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004886
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004887 MVT RegVT;
4888 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004889
4890 // If this is a constraint for a specific physical register, like {r17},
4891 // assign it now.
4892 if (PhysReg.first) {
4893 if (OpInfo.ConstraintVT == MVT::Other)
4894 ValueVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004895
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004896 // Get the actual register value type. This is important, because the user
4897 // may have asked for (e.g.) the AX register in i32 type. We need to
4898 // remember that AX is actually i16 to get the right extension.
4899 RegVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004900
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004901 // This is a explicit reference to a physical register.
4902 Regs.push_back(PhysReg.first);
4903
4904 // If this is an expanded reference, add the rest of the regs to Regs.
4905 if (NumRegs != 1) {
4906 TargetRegisterClass::iterator I = PhysReg.second->begin();
4907 for (; *I != PhysReg.first; ++I)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004908 assert(I != PhysReg.second->end() && "Didn't find reg!");
4909
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004910 // Already added the first reg.
4911 --NumRegs; ++I;
4912 for (; NumRegs; --NumRegs, ++I) {
4913 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
4914 Regs.push_back(*I);
4915 }
4916 }
4917 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4918 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4919 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4920 return;
4921 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004922
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004923 // Otherwise, if this was a reference to an LLVM register class, create vregs
4924 // for this reference.
4925 std::vector<unsigned> RegClassRegs;
4926 const TargetRegisterClass *RC = PhysReg.second;
4927 if (RC) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004928 // If this is a tied register, our regalloc doesn't know how to maintain
Chris Lattner58f15c42008-10-17 16:21:11 +00004929 // the constraint, so we have to pick a register to pin the input/output to.
4930 // If it isn't a matched constraint, go ahead and create vreg and let the
4931 // regalloc do its thing.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004932 if (!OpInfo.hasMatchingInput()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004933 RegVT = *PhysReg.second->vt_begin();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004934 if (OpInfo.ConstraintVT == MVT::Other)
4935 ValueVT = RegVT;
4936
4937 // Create the appropriate number of virtual registers.
4938 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4939 for (; NumRegs; --NumRegs)
4940 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004941
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004942 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4943 return;
4944 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004945
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004946 // Otherwise, we can't allocate it. Let the code below figure out how to
4947 // maintain these constraints.
4948 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004949
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004950 } else {
4951 // This is a reference to a register class that doesn't directly correspond
4952 // to an LLVM register class. Allocate NumRegs consecutive, available,
4953 // registers from the class.
4954 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4955 OpInfo.ConstraintVT);
4956 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004957
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004958 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4959 unsigned NumAllocated = 0;
4960 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4961 unsigned Reg = RegClassRegs[i];
4962 // See if this register is available.
4963 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4964 (isInReg && InputRegs.count(Reg))) { // Already used.
4965 // Make sure we find consecutive registers.
4966 NumAllocated = 0;
4967 continue;
4968 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004969
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004970 // Check to see if this register is allocatable (i.e. don't give out the
4971 // stack pointer).
4972 if (RC == 0) {
4973 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4974 if (!RC) { // Couldn't allocate this register.
4975 // Reset NumAllocated to make sure we return consecutive registers.
4976 NumAllocated = 0;
4977 continue;
4978 }
4979 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004980
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004981 // Okay, this register is good, we can use it.
4982 ++NumAllocated;
4983
4984 // If we allocated enough consecutive registers, succeed.
4985 if (NumAllocated == NumRegs) {
4986 unsigned RegStart = (i-NumAllocated)+1;
4987 unsigned RegEnd = i+1;
4988 // Mark all of the allocated registers used.
4989 for (unsigned i = RegStart; i != RegEnd; ++i)
4990 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004991
4992 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004993 OpInfo.ConstraintVT);
4994 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4995 return;
4996 }
4997 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004998
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004999 // Otherwise, we couldn't allocate enough registers for this.
5000}
5001
Evan Chengda43bcf2008-09-24 00:05:32 +00005002/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5003/// processed uses a memory 'm' constraint.
5004static bool
5005hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005006 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005007 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5008 InlineAsm::ConstraintInfo &CI = CInfos[i];
5009 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5010 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5011 if (CType == TargetLowering::C_Memory)
5012 return true;
5013 }
5014 }
5015
5016 return false;
5017}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005018
5019/// visitInlineAsm - Handle a call to an InlineAsm object.
5020///
5021void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5022 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5023
5024 /// ConstraintOperands - Information about all of the constraints.
5025 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005026
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005027 SDValue Chain = getRoot();
5028 SDValue Flag;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005029
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005030 std::set<unsigned> OutputRegs, InputRegs;
5031
5032 // Do a prepass over the constraints, canonicalizing them, and building up the
5033 // ConstraintOperands list.
5034 std::vector<InlineAsm::ConstraintInfo>
5035 ConstraintInfos = IA->ParseConstraints();
5036
Evan Chengda43bcf2008-09-24 00:05:32 +00005037 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005038
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005039 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5040 unsigned ResNo = 0; // ResNo - The result number of the next output.
5041 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5042 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5043 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005044
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005045 MVT OpVT = MVT::Other;
5046
5047 // Compute the value type for each operand.
5048 switch (OpInfo.Type) {
5049 case InlineAsm::isOutput:
5050 // Indirect outputs just consume an argument.
5051 if (OpInfo.isIndirect) {
5052 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5053 break;
5054 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005055
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005056 // The return value of the call is this value. As such, there is no
5057 // corresponding argument.
5058 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5059 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5060 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5061 } else {
5062 assert(ResNo == 0 && "Asm only has one result!");
5063 OpVT = TLI.getValueType(CS.getType());
5064 }
5065 ++ResNo;
5066 break;
5067 case InlineAsm::isInput:
5068 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5069 break;
5070 case InlineAsm::isClobber:
5071 // Nothing to do.
5072 break;
5073 }
5074
5075 // If this is an input or an indirect output, process the call argument.
5076 // BasicBlocks are labels, currently appearing only in asm's.
5077 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005078 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005079 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005080 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005081 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005082 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005083
Chris Lattner81249c92008-10-17 17:05:25 +00005084 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005085 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005086
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005087 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005088 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005089
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005090 // Second pass over the constraints: compute which constraint option to use
5091 // and assign registers to constraints that want a specific physreg.
5092 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5093 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005094
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005095 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005096 // matching input. If their types mismatch, e.g. one is an integer, the
5097 // other is floating point, or their sizes are different, flag it as an
5098 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005099 if (OpInfo.hasMatchingInput()) {
5100 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5101 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005102 if ((OpInfo.ConstraintVT.isInteger() !=
5103 Input.ConstraintVT.isInteger()) ||
5104 (OpInfo.ConstraintVT.getSizeInBits() !=
5105 Input.ConstraintVT.getSizeInBits())) {
5106 cerr << "Unsupported asm: input constraint with a matching output "
5107 << "constraint of incompatible type!\n";
5108 exit(1);
5109 }
5110 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005111 }
5112 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005113
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005114 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005115 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005116
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005117 // If this is a memory input, and if the operand is not indirect, do what we
5118 // need to to provide an address for the memory input.
5119 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5120 !OpInfo.isIndirect) {
5121 assert(OpInfo.Type == InlineAsm::isInput &&
5122 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005123
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005124 // Memory operands really want the address of the value. If we don't have
5125 // an indirect input, put it in the constpool if we can, otherwise spill
5126 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005127
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005128 // If the operand is a float, integer, or vector constant, spill to a
5129 // constant pool entry to get its address.
5130 Value *OpVal = OpInfo.CallOperandVal;
5131 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5132 isa<ConstantVector>(OpVal)) {
5133 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5134 TLI.getPointerTy());
5135 } else {
5136 // Otherwise, create a stack slot and emit a store to it before the
5137 // asm.
5138 const Type *Ty = OpVal->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005139 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005140 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5141 MachineFunction &MF = DAG.getMachineFunction();
5142 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5143 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005144 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005145 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005146 OpInfo.CallOperand = StackSlot;
5147 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005148
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005149 // There is no longer a Value* corresponding to this operand.
5150 OpInfo.CallOperandVal = 0;
5151 // It is now an indirect operand.
5152 OpInfo.isIndirect = true;
5153 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005154
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005155 // If this constraint is for a specific register, allocate it before
5156 // anything else.
5157 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005158 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005159 }
5160 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005161
5162
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005163 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005164 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005165 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5166 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005167
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005168 // C_Register operands have already been allocated, Other/Memory don't need
5169 // to be.
5170 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005171 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005172 }
5173
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005174 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5175 std::vector<SDValue> AsmNodeOperands;
5176 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5177 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005178 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005179
5180
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005181 // Loop over all of the inputs, copying the operand values into the
5182 // appropriate registers and processing the output regs.
5183 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005184
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005185 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5186 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005187
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005188 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5189 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5190
5191 switch (OpInfo.Type) {
5192 case InlineAsm::isOutput: {
5193 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5194 OpInfo.ConstraintType != TargetLowering::C_Register) {
5195 // Memory output, or 'other' output (e.g. 'X' constraint).
5196 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5197
5198 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005199 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5200 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005201 TLI.getPointerTy()));
5202 AsmNodeOperands.push_back(OpInfo.CallOperand);
5203 break;
5204 }
5205
5206 // Otherwise, this is a register or register class output.
5207
5208 // Copy the output from the appropriate register. Find a register that
5209 // we can use.
5210 if (OpInfo.AssignedRegs.Regs.empty()) {
5211 cerr << "Couldn't allocate output reg for constraint '"
5212 << OpInfo.ConstraintCode << "'!\n";
5213 exit(1);
5214 }
5215
5216 // If this is an indirect operand, store through the pointer after the
5217 // asm.
5218 if (OpInfo.isIndirect) {
5219 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5220 OpInfo.CallOperandVal));
5221 } else {
5222 // This is the result value of the call.
5223 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5224 // Concatenate this output onto the outputs list.
5225 RetValRegs.append(OpInfo.AssignedRegs);
5226 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005227
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005228 // Add information to the INLINEASM node to know that this register is
5229 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005230 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5231 6 /* EARLYCLOBBER REGDEF */ :
5232 2 /* REGDEF */ ,
5233 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005234 break;
5235 }
5236 case InlineAsm::isInput: {
5237 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005238
Chris Lattner6bdcda32008-10-17 16:47:46 +00005239 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005240 // If this is required to match an output register we have already set,
5241 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005242 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005243
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005244 // Scan until we find the definition we already emitted of this operand.
5245 // When we find it, create a RegsForValue operand.
5246 unsigned CurOp = 2; // The first operand.
5247 for (; OperandNo; --OperandNo) {
5248 // Advance to the next operand.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005249 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005250 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005251 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
Dale Johannesen913d3df2008-09-12 17:49:03 +00005252 (NumOps & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
Dale Johannesen86b49f82008-09-24 01:07:17 +00005253 (NumOps & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005254 "Skipped past definitions?");
5255 CurOp += (NumOps>>3)+1;
5256 }
5257
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005258 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005259 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005260 if ((NumOps & 7) == 2 /*REGDEF*/
Dale Johannesen913d3df2008-09-12 17:49:03 +00005261 || (NumOps & 7) == 6 /* EARLYCLOBBER REGDEF */) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005262 // Add NumOps>>3 registers to MatchedRegs.
5263 RegsForValue MatchedRegs;
5264 MatchedRegs.TLI = &TLI;
5265 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
5266 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
5267 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
5268 unsigned Reg =
5269 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
5270 MatchedRegs.Regs.push_back(Reg);
5271 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005272
5273 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005274 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5275 Chain, &Flag);
Dale Johannesen86b49f82008-09-24 01:07:17 +00005276 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005277 break;
5278 } else {
Dale Johannesen86b49f82008-09-24 01:07:17 +00005279 assert(((NumOps & 7) == 4) && "Unknown matching constraint!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005280 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005281 // Add information to the INLINEASM node to know about this input.
Dale Johannesen91aac102008-09-17 21:13:11 +00005282 AsmNodeOperands.push_back(DAG.getTargetConstant(NumOps,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005283 TLI.getPointerTy()));
5284 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5285 break;
5286 }
5287 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005288
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005289 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005290 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005291 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005292
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005293 std::vector<SDValue> Ops;
5294 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005295 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005296 if (Ops.empty()) {
5297 cerr << "Invalid operand for inline asm constraint '"
5298 << OpInfo.ConstraintCode << "'!\n";
5299 exit(1);
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 about this input.
5303 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005304 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005305 TLI.getPointerTy()));
5306 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5307 break;
5308 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5309 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5310 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5311 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005312
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005313 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005314 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5315 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005316 TLI.getPointerTy()));
5317 AsmNodeOperands.push_back(InOperandVal);
5318 break;
5319 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005320
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005321 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5322 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5323 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005324 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005325 "Don't know how to handle indirect register inputs yet!");
5326
5327 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005328 if (OpInfo.AssignedRegs.Regs.empty()) {
5329 cerr << "Couldn't allocate output reg for constraint '"
5330 << OpInfo.ConstraintCode << "'!\n";
5331 exit(1);
5332 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005333
Dale Johannesen66978ee2009-01-31 02:22:37 +00005334 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5335 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005336
Dale Johannesen86b49f82008-09-24 01:07:17 +00005337 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/,
5338 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005339 break;
5340 }
5341 case InlineAsm::isClobber: {
5342 // Add the clobbered value to the operand list, so that the register
5343 // allocator is aware that the physreg got clobbered.
5344 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005345 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
5346 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005347 break;
5348 }
5349 }
5350 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005351
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005352 // Finish up input operands.
5353 AsmNodeOperands[0] = Chain;
5354 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005355
Dale Johannesen66978ee2009-01-31 02:22:37 +00005356 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005357 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
5358 &AsmNodeOperands[0], AsmNodeOperands.size());
5359 Flag = Chain.getValue(1);
5360
5361 // If this asm returns a register value, copy the result from that register
5362 // and set it as the value of the call.
5363 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005364 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005365 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005366
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005367 // FIXME: Why don't we do this for inline asms with MRVs?
5368 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5369 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005370
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005371 // If any of the results of the inline asm is a vector, it may have the
5372 // wrong width/num elts. This can happen for register classes that can
5373 // contain multiple different value types. The preg or vreg allocated may
5374 // not have the same VT as was expected. Convert it to the right type
5375 // with bit_convert.
5376 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005377 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005378 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005379
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005380 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005381 ResultType.isInteger() && Val.getValueType().isInteger()) {
5382 // If a result value was tied to an input value, the computed result may
5383 // have a wider width than the expected result. Extract the relevant
5384 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005385 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005386 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005387
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005388 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005389 }
Dan Gohman95915732008-10-18 01:03:45 +00005390
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005391 setValue(CS.getInstruction(), Val);
5392 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005393
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005394 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005395
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005396 // Process indirect outputs, first output all of the flagged copies out of
5397 // physregs.
5398 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5399 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5400 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005401 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5402 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005403 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
5404 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005405
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005406 // Emit the non-flagged stores from the physregs.
5407 SmallVector<SDValue, 8> OutChains;
5408 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005409 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005410 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005411 getValue(StoresToEmit[i].second),
5412 StoresToEmit[i].second, 0));
5413 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005414 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005415 &OutChains[0], OutChains.size());
5416 DAG.setRoot(Chain);
5417}
5418
5419
5420void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5421 SDValue Src = getValue(I.getOperand(0));
5422
Chris Lattner0b18e592009-03-17 19:36:00 +00005423 // Scale up by the type size in the original i32 type width. Various
5424 // mid-level optimizers may make assumptions about demanded bits etc from the
5425 // i32-ness of the optimizer: we do not want to promote to i64 and then
5426 // multiply on 64-bit targets.
5427 // FIXME: Malloc inst should go away: PR715.
5428 uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType());
5429 if (ElementSize != 1)
5430 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5431 Src, DAG.getConstant(ElementSize, Src.getValueType()));
5432
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005433 MVT IntPtr = TLI.getPointerTy();
5434
5435 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005436 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005437 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005438 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005439
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005440 TargetLowering::ArgListTy Args;
5441 TargetLowering::ArgListEntry Entry;
5442 Entry.Node = Src;
5443 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5444 Args.push_back(Entry);
5445
5446 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005447 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005448 CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005449 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005450 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005451 setValue(&I, Result.first); // Pointers always fit in registers
5452 DAG.setRoot(Result.second);
5453}
5454
5455void SelectionDAGLowering::visitFree(FreeInst &I) {
5456 TargetLowering::ArgListTy Args;
5457 TargetLowering::ArgListEntry Entry;
5458 Entry.Node = getValue(I.getOperand(0));
5459 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5460 Args.push_back(Entry);
5461 MVT IntPtr = TLI.getPointerTy();
5462 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005463 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Dan Gohman1937e2f2008-09-16 01:42:28 +00005464 CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005465 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005466 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005467 DAG.setRoot(Result.second);
5468}
5469
5470void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005471 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005472 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005473 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005474 DAG.getSrcValue(I.getOperand(1))));
5475}
5476
5477void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005478 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5479 getRoot(), getValue(I.getOperand(0)),
5480 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005481 setValue(&I, V);
5482 DAG.setRoot(V.getValue(1));
5483}
5484
5485void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005486 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005487 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005488 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005489 DAG.getSrcValue(I.getOperand(1))));
5490}
5491
5492void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005493 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005494 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005495 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005496 getValue(I.getOperand(2)),
5497 DAG.getSrcValue(I.getOperand(1)),
5498 DAG.getSrcValue(I.getOperand(2))));
5499}
5500
5501/// TargetLowering::LowerArguments - This is the default LowerArguments
5502/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005503/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005504/// integrated into SDISel.
5505void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005506 SmallVectorImpl<SDValue> &ArgValues,
5507 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005508 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5509 SmallVector<SDValue, 3+16> Ops;
5510 Ops.push_back(DAG.getRoot());
5511 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5512 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5513
5514 // Add one result value for each formal argument.
5515 SmallVector<MVT, 16> RetVals;
5516 unsigned j = 1;
5517 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5518 I != E; ++I, ++j) {
5519 SmallVector<MVT, 4> ValueVTs;
5520 ComputeValueVTs(*this, I->getType(), ValueVTs);
5521 for (unsigned Value = 0, NumValues = ValueVTs.size();
5522 Value != NumValues; ++Value) {
5523 MVT VT = ValueVTs[Value];
5524 const Type *ArgTy = VT.getTypeForMVT();
5525 ISD::ArgFlagsTy Flags;
5526 unsigned OriginalAlignment =
5527 getTargetData()->getABITypeAlignment(ArgTy);
5528
Devang Patel05988662008-09-25 21:00:45 +00005529 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005530 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005531 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005532 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005533 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005534 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005535 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005536 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005537 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005538 Flags.setByVal();
5539 const PointerType *Ty = cast<PointerType>(I->getType());
5540 const Type *ElementTy = Ty->getElementType();
5541 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005542 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005543 // For ByVal, alignment should be passed from FE. BE will guess if
5544 // this info is not there but there are cases it cannot get right.
5545 if (F.getParamAlignment(j))
5546 FrameAlign = F.getParamAlignment(j);
5547 Flags.setByValAlign(FrameAlign);
5548 Flags.setByValSize(FrameSize);
5549 }
Devang Patel05988662008-09-25 21:00:45 +00005550 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005551 Flags.setNest();
5552 Flags.setOrigAlign(OriginalAlignment);
5553
5554 MVT RegisterVT = getRegisterType(VT);
5555 unsigned NumRegs = getNumRegisters(VT);
5556 for (unsigned i = 0; i != NumRegs; ++i) {
5557 RetVals.push_back(RegisterVT);
5558 ISD::ArgFlagsTy MyFlags = Flags;
5559 if (NumRegs > 1 && i == 0)
5560 MyFlags.setSplit();
5561 // if it isn't first piece, alignment must be 1
5562 else if (i > 0)
5563 MyFlags.setOrigAlign(1);
5564 Ops.push_back(DAG.getArgFlags(MyFlags));
5565 }
5566 }
5567 }
5568
5569 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005570
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005571 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005572 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005573 DAG.getVTList(&RetVals[0], RetVals.size()),
5574 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005575
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005576 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5577 // allows exposing the loads that may be part of the argument access to the
5578 // first DAGCombiner pass.
5579 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005580
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005581 // The number of results should match up, except that the lowered one may have
5582 // an extra flag result.
5583 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5584 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5585 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5586 && "Lowering produced unexpected number of results!");
5587
5588 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5589 if (Result != TmpRes.getNode() && Result->use_empty()) {
5590 HandleSDNode Dummy(DAG.getRoot());
5591 DAG.RemoveDeadNode(Result);
5592 }
5593
5594 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005595
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005596 unsigned NumArgRegs = Result->getNumValues() - 1;
5597 DAG.setRoot(SDValue(Result, NumArgRegs));
5598
5599 // Set up the return result vector.
5600 unsigned i = 0;
5601 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005602 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005603 ++I, ++Idx) {
5604 SmallVector<MVT, 4> ValueVTs;
5605 ComputeValueVTs(*this, I->getType(), ValueVTs);
5606 for (unsigned Value = 0, NumValues = ValueVTs.size();
5607 Value != NumValues; ++Value) {
5608 MVT VT = ValueVTs[Value];
5609 MVT PartVT = getRegisterType(VT);
5610
5611 unsigned NumParts = getNumRegisters(VT);
5612 SmallVector<SDValue, 4> Parts(NumParts);
5613 for (unsigned j = 0; j != NumParts; ++j)
5614 Parts[j] = SDValue(Result, i++);
5615
5616 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005617 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005618 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005619 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005620 AssertOp = ISD::AssertZext;
5621
Dale Johannesen66978ee2009-01-31 02:22:37 +00005622 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5623 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005624 }
5625 }
5626 assert(i == NumArgRegs && "Argument register count mismatch!");
5627}
5628
5629
5630/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5631/// implementation, which just inserts an ISD::CALL node, which is later custom
5632/// lowered by the target to something concrete. FIXME: When all targets are
5633/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5634std::pair<SDValue, SDValue>
5635TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5636 bool RetSExt, bool RetZExt, bool isVarArg,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005637 bool isInreg,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005638 unsigned CallingConv, bool isTailCall,
5639 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005640 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005641 assert((!isTailCall || PerformTailCallOpt) &&
5642 "isTailCall set when tail-call optimizations are disabled!");
5643
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005644 SmallVector<SDValue, 32> Ops;
5645 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005646 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005647
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005648 // Handle all of the outgoing arguments.
5649 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5650 SmallVector<MVT, 4> ValueVTs;
5651 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5652 for (unsigned Value = 0, NumValues = ValueVTs.size();
5653 Value != NumValues; ++Value) {
5654 MVT VT = ValueVTs[Value];
5655 const Type *ArgTy = VT.getTypeForMVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005656 SDValue Op = SDValue(Args[i].Node.getNode(),
5657 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005658 ISD::ArgFlagsTy Flags;
5659 unsigned OriginalAlignment =
5660 getTargetData()->getABITypeAlignment(ArgTy);
5661
5662 if (Args[i].isZExt)
5663 Flags.setZExt();
5664 if (Args[i].isSExt)
5665 Flags.setSExt();
5666 if (Args[i].isInReg)
5667 Flags.setInReg();
5668 if (Args[i].isSRet)
5669 Flags.setSRet();
5670 if (Args[i].isByVal) {
5671 Flags.setByVal();
5672 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5673 const Type *ElementTy = Ty->getElementType();
5674 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005675 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005676 // For ByVal, alignment should come from FE. BE will guess if this
5677 // info is not there but there are cases it cannot get right.
5678 if (Args[i].Alignment)
5679 FrameAlign = Args[i].Alignment;
5680 Flags.setByValAlign(FrameAlign);
5681 Flags.setByValSize(FrameSize);
5682 }
5683 if (Args[i].isNest)
5684 Flags.setNest();
5685 Flags.setOrigAlign(OriginalAlignment);
5686
5687 MVT PartVT = getRegisterType(VT);
5688 unsigned NumParts = getNumRegisters(VT);
5689 SmallVector<SDValue, 4> Parts(NumParts);
5690 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5691
5692 if (Args[i].isSExt)
5693 ExtendKind = ISD::SIGN_EXTEND;
5694 else if (Args[i].isZExt)
5695 ExtendKind = ISD::ZERO_EXTEND;
5696
Dale Johannesen66978ee2009-01-31 02:22:37 +00005697 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005698
5699 for (unsigned i = 0; i != NumParts; ++i) {
5700 // if it isn't first piece, alignment must be 1
5701 ISD::ArgFlagsTy MyFlags = Flags;
5702 if (NumParts > 1 && i == 0)
5703 MyFlags.setSplit();
5704 else if (i != 0)
5705 MyFlags.setOrigAlign(1);
5706
5707 Ops.push_back(Parts[i]);
5708 Ops.push_back(DAG.getArgFlags(MyFlags));
5709 }
5710 }
5711 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005712
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005713 // Figure out the result value types. We start by making a list of
5714 // the potentially illegal return value types.
5715 SmallVector<MVT, 4> LoweredRetTys;
5716 SmallVector<MVT, 4> RetTys;
5717 ComputeValueVTs(*this, RetTy, RetTys);
5718
5719 // Then we translate that to a list of legal types.
5720 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5721 MVT VT = RetTys[I];
5722 MVT RegisterVT = getRegisterType(VT);
5723 unsigned NumRegs = getNumRegisters(VT);
5724 for (unsigned i = 0; i != NumRegs; ++i)
5725 LoweredRetTys.push_back(RegisterVT);
5726 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005727
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005728 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005729
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005730 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005731 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005732 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005733 DAG.getVTList(&LoweredRetTys[0],
5734 LoweredRetTys.size()),
Dale Johannesen86098bd2008-09-26 19:31:26 +00005735 &Ops[0], Ops.size()
5736 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005737 Chain = Res.getValue(LoweredRetTys.size() - 1);
5738
5739 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005740 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005741 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5742
5743 if (RetSExt)
5744 AssertOp = ISD::AssertSext;
5745 else if (RetZExt)
5746 AssertOp = ISD::AssertZext;
5747
5748 SmallVector<SDValue, 4> ReturnValues;
5749 unsigned RegNo = 0;
5750 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5751 MVT VT = RetTys[I];
5752 MVT RegisterVT = getRegisterType(VT);
5753 unsigned NumRegs = getNumRegisters(VT);
5754 unsigned RegNoEnd = NumRegs + RegNo;
5755 SmallVector<SDValue, 4> Results;
5756 for (; RegNo != RegNoEnd; ++RegNo)
5757 Results.push_back(Res.getValue(RegNo));
5758 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005759 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005760 AssertOp);
5761 ReturnValues.push_back(ReturnValue);
5762 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005763 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005764 DAG.getVTList(&RetTys[0], RetTys.size()),
5765 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005766 }
5767
5768 return std::make_pair(Res, Chain);
5769}
5770
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005771void TargetLowering::LowerOperationWrapper(SDNode *N,
5772 SmallVectorImpl<SDValue> &Results,
5773 SelectionDAG &DAG) {
5774 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005775 if (Res.getNode())
5776 Results.push_back(Res);
5777}
5778
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005779SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
5780 assert(0 && "LowerOperation not implemented for this target!");
5781 abort();
5782 return SDValue();
5783}
5784
5785
5786void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5787 SDValue Op = getValue(V);
5788 assert((Op.getOpcode() != ISD::CopyFromReg ||
5789 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5790 "Copy from a reg to the same reg!");
5791 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5792
5793 RegsForValue RFV(TLI, Reg, V->getType());
5794 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005795 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005796 PendingExports.push_back(Chain);
5797}
5798
5799#include "llvm/CodeGen/SelectionDAGISel.h"
5800
5801void SelectionDAGISel::
5802LowerArguments(BasicBlock *LLVMBB) {
5803 // If this is the entry block, emit arguments.
5804 Function &F = *LLVMBB->getParent();
5805 SDValue OldRoot = SDL->DAG.getRoot();
5806 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005807 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005808
5809 unsigned a = 0;
5810 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5811 AI != E; ++AI) {
5812 SmallVector<MVT, 4> ValueVTs;
5813 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5814 unsigned NumValues = ValueVTs.size();
5815 if (!AI->use_empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005816 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues,
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005817 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005818 // If this argument is live outside of the entry block, insert a copy from
5819 // whereever we got it to the vreg that other BB's will reference it as.
5820 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo->ValueMap.find(AI);
5821 if (VMI != FuncInfo->ValueMap.end()) {
5822 SDL->CopyValueToVirtualRegister(AI, VMI->second);
5823 }
5824 }
5825 a += NumValues;
5826 }
5827
5828 // Finally, if the target has anything special to do, allow it to do so.
5829 // FIXME: this should insert code into the DAG!
5830 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5831}
5832
5833/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5834/// ensure constants are generated when needed. Remember the virtual registers
5835/// that need to be added to the Machine PHI nodes as input. We cannot just
5836/// directly add them, because expansion might result in multiple MBB's for one
5837/// BB. As such, the start of the BB might correspond to a different MBB than
5838/// the end.
5839///
5840void
5841SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5842 TerminatorInst *TI = LLVMBB->getTerminator();
5843
5844 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5845
5846 // Check successor nodes' PHI nodes that expect a constant to be available
5847 // from this block.
5848 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5849 BasicBlock *SuccBB = TI->getSuccessor(succ);
5850 if (!isa<PHINode>(SuccBB->begin())) continue;
5851 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005852
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005853 // If this terminator has multiple identical successors (common for
5854 // switches), only handle each succ once.
5855 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005856
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005857 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5858 PHINode *PN;
5859
5860 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5861 // nodes and Machine PHI nodes, but the incoming operands have not been
5862 // emitted yet.
5863 for (BasicBlock::iterator I = SuccBB->begin();
5864 (PN = dyn_cast<PHINode>(I)); ++I) {
5865 // Ignore dead phi's.
5866 if (PN->use_empty()) continue;
5867
5868 unsigned Reg;
5869 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5870
5871 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5872 unsigned &RegOut = SDL->ConstantsOut[C];
5873 if (RegOut == 0) {
5874 RegOut = FuncInfo->CreateRegForValue(C);
5875 SDL->CopyValueToVirtualRegister(C, RegOut);
5876 }
5877 Reg = RegOut;
5878 } else {
5879 Reg = FuncInfo->ValueMap[PHIOp];
5880 if (Reg == 0) {
5881 assert(isa<AllocaInst>(PHIOp) &&
5882 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5883 "Didn't codegen value into a register!??");
5884 Reg = FuncInfo->CreateRegForValue(PHIOp);
5885 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5886 }
5887 }
5888
5889 // Remember that this register needs to added to the machine PHI node as
5890 // the input for this MBB.
5891 SmallVector<MVT, 4> ValueVTs;
5892 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5893 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5894 MVT VT = ValueVTs[vti];
5895 unsigned NumRegisters = TLI.getNumRegisters(VT);
5896 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5897 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5898 Reg += NumRegisters;
5899 }
5900 }
5901 }
5902 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005903}
5904
Dan Gohman3df24e62008-09-03 23:12:08 +00005905/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5906/// supports legal types, and it emits MachineInstrs directly instead of
5907/// creating SelectionDAG nodes.
5908///
5909bool
5910SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5911 FastISel *F) {
5912 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005913
Dan Gohman3df24e62008-09-03 23:12:08 +00005914 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5915 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5916
5917 // Check successor nodes' PHI nodes that expect a constant to be available
5918 // from this block.
5919 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5920 BasicBlock *SuccBB = TI->getSuccessor(succ);
5921 if (!isa<PHINode>(SuccBB->begin())) continue;
5922 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005923
Dan Gohman3df24e62008-09-03 23:12:08 +00005924 // If this terminator has multiple identical successors (common for
5925 // switches), only handle each succ once.
5926 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005927
Dan Gohman3df24e62008-09-03 23:12:08 +00005928 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5929 PHINode *PN;
5930
5931 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5932 // nodes and Machine PHI nodes, but the incoming operands have not been
5933 // emitted yet.
5934 for (BasicBlock::iterator I = SuccBB->begin();
5935 (PN = dyn_cast<PHINode>(I)); ++I) {
5936 // Ignore dead phi's.
5937 if (PN->use_empty()) continue;
5938
5939 // Only handle legal types. Two interesting things to note here. First,
5940 // by bailing out early, we may leave behind some dead instructions,
5941 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5942 // own moves. Second, this check is necessary becuase FastISel doesn't
5943 // use CreateRegForValue to create registers, so it always creates
5944 // exactly one register for each non-void instruction.
5945 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5946 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005947 // Promote MVT::i1.
5948 if (VT == MVT::i1)
5949 VT = TLI.getTypeToTransformTo(VT);
5950 else {
5951 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5952 return false;
5953 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005954 }
5955
5956 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5957
5958 unsigned Reg = F->getRegForValue(PHIOp);
5959 if (Reg == 0) {
5960 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5961 return false;
5962 }
5963 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5964 }
5965 }
5966
5967 return true;
5968}