blob: 0dbc35b2248daeb08d10f92624153c9f406e8521 [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 Wendlingccbdc7a2009-03-09 05:04:40 +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 Wendlingccbdc7a2009-03-09 05:04:40 +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
982 // FIXME: C calling convention requires the return type to be promoted to
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000983 // at least 32-bit. But this is not necessary for non-C calling
984 // conventions.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000985 if (VT.isInteger()) {
986 MVT MinVT = TLI.getRegisterType(MVT::i32);
987 if (VT.bitsLT(MinVT))
988 VT = MinVT;
989 }
990
991 unsigned NumParts = TLI.getNumRegisters(VT);
992 MVT PartVT = TLI.getRegisterType(VT);
993 SmallVector<SDValue, 4> Parts(NumParts);
994 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000995
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000996 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000997 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000998 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000999 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001000 ExtendKind = ISD::ZERO_EXTEND;
1001
Dale Johannesen66978ee2009-01-31 02:22:37 +00001002 getCopyToParts(DAG, getCurDebugLoc(),
1003 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001004 &Parts[0], NumParts, PartVT, ExtendKind);
1005
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001006 // 'inreg' on function refers to return value
1007 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +00001008 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001009 Flags.setInReg();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001010 for (unsigned i = 0; i < NumParts; ++i) {
1011 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001012 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001013 }
1014 }
1015 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00001016 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001017 &NewValues[0], NewValues.size()));
1018}
1019
1020/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1021/// the current basic block, add it to ValueMap now so that we'll get a
1022/// CopyTo/FromReg.
1023void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1024 // No need to export constants.
1025 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001026
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001027 // Already exported?
1028 if (FuncInfo.isExportedInst(V)) return;
1029
1030 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1031 CopyValueToVirtualRegister(V, Reg);
1032}
1033
1034bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1035 const BasicBlock *FromBB) {
1036 // The operands of the setcc have to be in this block. We don't know
1037 // how to export them from some other block.
1038 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1039 // Can export from current BB.
1040 if (VI->getParent() == FromBB)
1041 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001042
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001043 // Is already exported, noop.
1044 return FuncInfo.isExportedInst(V);
1045 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001046
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001047 // If this is an argument, we can export it if the BB is the entry block or
1048 // if it is already exported.
1049 if (isa<Argument>(V)) {
1050 if (FromBB == &FromBB->getParent()->getEntryBlock())
1051 return true;
1052
1053 // Otherwise, can only export this if it is already exported.
1054 return FuncInfo.isExportedInst(V);
1055 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001056
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001057 // Otherwise, constants can always be exported.
1058 return true;
1059}
1060
1061static bool InBlock(const Value *V, const BasicBlock *BB) {
1062 if (const Instruction *I = dyn_cast<Instruction>(V))
1063 return I->getParent() == BB;
1064 return true;
1065}
1066
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001067/// getFCmpCondCode - Return the ISD condition code corresponding to
1068/// the given LLVM IR floating-point condition code. This includes
1069/// consideration of global floating-point math flags.
1070///
1071static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1072 ISD::CondCode FPC, FOC;
1073 switch (Pred) {
1074 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1075 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1076 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1077 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1078 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1079 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1080 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1081 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1082 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1083 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1084 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1085 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1086 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1087 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1088 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1089 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1090 default:
1091 assert(0 && "Invalid FCmp predicate opcode!");
1092 FOC = FPC = ISD::SETFALSE;
1093 break;
1094 }
1095 if (FiniteOnlyFPMath())
1096 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001097 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001098 return FPC;
1099}
1100
1101/// getICmpCondCode - Return the ISD condition code corresponding to
1102/// the given LLVM IR integer condition code.
1103///
1104static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1105 switch (Pred) {
1106 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1107 case ICmpInst::ICMP_NE: return ISD::SETNE;
1108 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1109 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1110 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1111 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1112 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1113 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1114 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1115 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1116 default:
1117 assert(0 && "Invalid ICmp predicate opcode!");
1118 return ISD::SETNE;
1119 }
1120}
1121
Dan Gohmanc2277342008-10-17 21:16:08 +00001122/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1123/// This function emits a branch and is used at the leaves of an OR or an
1124/// AND operator tree.
1125///
1126void
1127SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1128 MachineBasicBlock *TBB,
1129 MachineBasicBlock *FBB,
1130 MachineBasicBlock *CurBB) {
1131 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001132
Dan Gohmanc2277342008-10-17 21:16:08 +00001133 // If the leaf of the tree is a comparison, merge the condition into
1134 // the caseblock.
1135 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1136 // The operands of the cmp have to be in this block. We don't know
1137 // how to export them from some other block. If this is the first block
1138 // of the sequence, no exporting is needed.
1139 if (CurBB == CurMBB ||
1140 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1141 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001142 ISD::CondCode Condition;
1143 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001144 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001145 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001146 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001147 } else {
1148 Condition = ISD::SETEQ; // silence warning.
1149 assert(0 && "Unknown compare instruction");
1150 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001151
1152 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001153 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1154 SwitchCases.push_back(CB);
1155 return;
1156 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001157 }
1158
1159 // Create a CaseBlock record representing this branch.
1160 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1161 NULL, TBB, FBB, CurBB);
1162 SwitchCases.push_back(CB);
1163}
1164
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001165/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001166void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1167 MachineBasicBlock *TBB,
1168 MachineBasicBlock *FBB,
1169 MachineBasicBlock *CurBB,
1170 unsigned Opc) {
1171 // If this node is not part of the or/and tree, emit it as a branch.
1172 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001173 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001174 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1175 BOp->getParent() != CurBB->getBasicBlock() ||
1176 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1177 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1178 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001179 return;
1180 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001182 // Create TmpBB after CurBB.
1183 MachineFunction::iterator BBI = CurBB;
1184 MachineFunction &MF = DAG.getMachineFunction();
1185 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1186 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001187
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001188 if (Opc == Instruction::Or) {
1189 // Codegen X | Y as:
1190 // jmp_if_X TBB
1191 // jmp TmpBB
1192 // TmpBB:
1193 // jmp_if_Y TBB
1194 // jmp FBB
1195 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001196
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001197 // Emit the LHS condition.
1198 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001199
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001200 // Emit the RHS condition into TmpBB.
1201 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1202 } else {
1203 assert(Opc == Instruction::And && "Unknown merge op!");
1204 // Codegen X & Y as:
1205 // jmp_if_X TmpBB
1206 // jmp FBB
1207 // TmpBB:
1208 // jmp_if_Y TBB
1209 // jmp FBB
1210 //
1211 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001212
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001213 // Emit the LHS condition.
1214 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001215
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001216 // Emit the RHS condition into TmpBB.
1217 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1218 }
1219}
1220
1221/// If the set of cases should be emitted as a series of branches, return true.
1222/// If we should emit this as a bunch of and/or'd together conditions, return
1223/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001224bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001225SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1226 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001227
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001228 // If this is two comparisons of the same values or'd or and'd together, they
1229 // will get folded into a single comparison, so don't emit two blocks.
1230 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1231 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1232 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1233 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1234 return false;
1235 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001236
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001237 return true;
1238}
1239
1240void SelectionDAGLowering::visitBr(BranchInst &I) {
1241 // Update machine-CFG edges.
1242 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1243
1244 // Figure out which block is immediately after the current one.
1245 MachineBasicBlock *NextBlock = 0;
1246 MachineFunction::iterator BBI = CurMBB;
1247 if (++BBI != CurMBB->getParent()->end())
1248 NextBlock = BBI;
1249
1250 if (I.isUnconditional()) {
1251 // Update machine-CFG edges.
1252 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001253
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001254 // If this is not a fall-through branch, emit the branch.
1255 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001256 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001257 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001258 DAG.getBasicBlock(Succ0MBB)));
1259 return;
1260 }
1261
1262 // If this condition is one of the special cases we handle, do special stuff
1263 // now.
1264 Value *CondVal = I.getCondition();
1265 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1266
1267 // If this is a series of conditions that are or'd or and'd together, emit
1268 // this as a sequence of branches instead of setcc's with and/or operations.
1269 // For example, instead of something like:
1270 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001271 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001272 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001273 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001274 // or C, F
1275 // jnz foo
1276 // Emit:
1277 // cmp A, B
1278 // je foo
1279 // cmp D, E
1280 // jle foo
1281 //
1282 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001283 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001284 (BOp->getOpcode() == Instruction::And ||
1285 BOp->getOpcode() == Instruction::Or)) {
1286 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1287 // If the compares in later blocks need to use values not currently
1288 // exported from this block, export them now. This block should always
1289 // be the first entry.
1290 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001291
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001292 // Allow some cases to be rejected.
1293 if (ShouldEmitAsBranches(SwitchCases)) {
1294 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1295 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1296 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1297 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001298
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001299 // Emit the branch for this block.
1300 visitSwitchCase(SwitchCases[0]);
1301 SwitchCases.erase(SwitchCases.begin());
1302 return;
1303 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001304
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001305 // Okay, we decided not to do this, remove any inserted MBB's and clear
1306 // SwitchCases.
1307 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1308 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001310 SwitchCases.clear();
1311 }
1312 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001313
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001314 // Create a CaseBlock record representing this branch.
1315 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1316 NULL, Succ0MBB, Succ1MBB, CurMBB);
1317 // Use visitSwitchCase to actually insert the fast branch sequence for this
1318 // cond branch.
1319 visitSwitchCase(CB);
1320}
1321
1322/// visitSwitchCase - Emits the necessary code to represent a single node in
1323/// the binary search tree resulting from lowering a switch instruction.
1324void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1325 SDValue Cond;
1326 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001327 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001328
1329 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001330 if (CB.CmpMHS == NULL) {
1331 // Fold "(X == true)" to X and "(X == false)" to !X to
1332 // handle common cases produced by branch lowering.
1333 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1334 Cond = CondLHS;
1335 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1336 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001337 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001338 } else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001339 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001340 } else {
1341 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1342
Anton Korobeynikov23218582008-12-23 22:25:27 +00001343 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1344 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001345
1346 SDValue CmpOp = getValue(CB.CmpMHS);
1347 MVT VT = CmpOp.getValueType();
1348
1349 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001350 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001351 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001352 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001353 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001354 VT, CmpOp, DAG.getConstant(Low, VT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001355 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001356 DAG.getConstant(High-Low, VT), ISD::SETULE);
1357 }
1358 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001359
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001360 // Update successor info
1361 CurMBB->addSuccessor(CB.TrueBB);
1362 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001363
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001364 // Set NextBlock to be the MBB immediately after the current one, if any.
1365 // This is used to avoid emitting unnecessary branches to the next block.
1366 MachineBasicBlock *NextBlock = 0;
1367 MachineFunction::iterator BBI = CurMBB;
1368 if (++BBI != CurMBB->getParent()->end())
1369 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001370
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001371 // If the lhs block is the next block, invert the condition so that we can
1372 // fall through to the lhs instead of the rhs block.
1373 if (CB.TrueBB == NextBlock) {
1374 std::swap(CB.TrueBB, CB.FalseBB);
1375 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001376 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001377 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001378 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001379 MVT::Other, getControlRoot(), Cond,
1380 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001381
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001382 // If the branch was constant folded, fix up the CFG.
1383 if (BrCond.getOpcode() == ISD::BR) {
1384 CurMBB->removeSuccessor(CB.FalseBB);
1385 DAG.setRoot(BrCond);
1386 } else {
1387 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001388 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001389 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001390
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001391 if (CB.FalseBB == NextBlock)
1392 DAG.setRoot(BrCond);
1393 else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001394 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001395 DAG.getBasicBlock(CB.FalseBB)));
1396 }
1397}
1398
1399/// visitJumpTable - Emit JumpTable node in the current MBB
1400void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1401 // Emit the code for the jump table
1402 assert(JT.Reg != -1U && "Should lower JT Header first!");
1403 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001404 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1405 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001406 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001407 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001408 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001409 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001410}
1411
1412/// visitJumpTableHeader - This function emits necessary code to produce index
1413/// in the JumpTable from switch case.
1414void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1415 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001416 // Subtract the lowest switch case value from the value being switched on and
1417 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001418 // difference between smallest and largest cases.
1419 SDValue SwitchOp = getValue(JTH.SValue);
1420 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001421 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001422 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001423
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001424 // The SDNode we just created, which holds the value being switched on minus
1425 // the the smallest case value, needs to be copied to a virtual register so it
1426 // can be used as an index into the jump table in a subsequent basic block.
1427 // This value may be smaller or larger than the target's pointer type, and
1428 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001429 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001430 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001431 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001432 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001433 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001434 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001435
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001436 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001437 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1438 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001439 JT.Reg = JumpTableReg;
1440
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001441 // Emit the range check for the jump table, and branch to the default block
1442 // for the switch statement if the value being switched on exceeds the largest
1443 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001444 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1445 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001446 DAG.getConstant(JTH.Last-JTH.First,VT),
1447 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001448
1449 // Set NextBlock to be the MBB immediately after the current one, if any.
1450 // This is used to avoid emitting unnecessary branches to the next block.
1451 MachineBasicBlock *NextBlock = 0;
1452 MachineFunction::iterator BBI = CurMBB;
1453 if (++BBI != CurMBB->getParent()->end())
1454 NextBlock = BBI;
1455
Dale Johannesen66978ee2009-01-31 02:22:37 +00001456 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001457 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001458 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001459
1460 if (JT.MBB == NextBlock)
1461 DAG.setRoot(BrCond);
1462 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001463 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001464 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001465}
1466
1467/// visitBitTestHeader - This function emits necessary code to produce value
1468/// suitable for "bit tests"
1469void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1470 // Subtract the minimum value
1471 SDValue SwitchOp = getValue(B.SValue);
1472 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001473 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001474 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001475
1476 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001477 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1478 TLI.getSetCCResultType(SUB.getValueType()),
1479 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001480 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001481
1482 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001483 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001484 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001485 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001486 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001487 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001488 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001489
Duncan Sands92abc622009-01-31 15:50:11 +00001490 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001491 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1492 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001493
1494 // Set NextBlock to be the MBB immediately after the current one, if any.
1495 // This is used to avoid emitting unnecessary branches to the next block.
1496 MachineBasicBlock *NextBlock = 0;
1497 MachineFunction::iterator BBI = CurMBB;
1498 if (++BBI != CurMBB->getParent()->end())
1499 NextBlock = BBI;
1500
1501 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1502
1503 CurMBB->addSuccessor(B.Default);
1504 CurMBB->addSuccessor(MBB);
1505
Dale Johannesen66978ee2009-01-31 02:22:37 +00001506 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001507 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001508 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001509
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001510 if (MBB == NextBlock)
1511 DAG.setRoot(BrRange);
1512 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001513 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001514 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001515}
1516
1517/// visitBitTestCase - this function produces one "bit test"
1518void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1519 unsigned Reg,
1520 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001521 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001522 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001523 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001524 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001525 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001526 DAG.getConstant(1, TLI.getPointerTy()),
1527 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001528
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001529 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001530 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001531 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001532 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001533 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1534 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001535 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001536 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001537
1538 CurMBB->addSuccessor(B.TargetBB);
1539 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001540
Dale Johannesen66978ee2009-01-31 02:22:37 +00001541 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001542 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001543 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001544
1545 // Set NextBlock to be the MBB immediately after the current one, if any.
1546 // This is used to avoid emitting unnecessary branches to the next block.
1547 MachineBasicBlock *NextBlock = 0;
1548 MachineFunction::iterator BBI = CurMBB;
1549 if (++BBI != CurMBB->getParent()->end())
1550 NextBlock = BBI;
1551
1552 if (NextMBB == NextBlock)
1553 DAG.setRoot(BrAnd);
1554 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001555 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001556 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001557}
1558
1559void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1560 // Retrieve successors.
1561 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1562 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1563
Gabor Greifb67e6b32009-01-15 11:10:44 +00001564 const Value *Callee(I.getCalledValue());
1565 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001566 visitInlineAsm(&I);
1567 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001568 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001569
1570 // If the value of the invoke is used outside of its defining block, make it
1571 // available as a virtual register.
1572 if (!I.use_empty()) {
1573 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1574 if (VMI != FuncInfo.ValueMap.end())
1575 CopyValueToVirtualRegister(&I, VMI->second);
1576 }
1577
1578 // Update successor info
1579 CurMBB->addSuccessor(Return);
1580 CurMBB->addSuccessor(LandingPad);
1581
1582 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001583 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001584 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001585 DAG.getBasicBlock(Return)));
1586}
1587
1588void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1589}
1590
1591/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1592/// small case ranges).
1593bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1594 CaseRecVector& WorkList,
1595 Value* SV,
1596 MachineBasicBlock* Default) {
1597 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001598
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001599 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001600 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001601 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001602 return false;
1603
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001604 // Get the MachineFunction which holds the current MBB. This is used when
1605 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001606 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001607
1608 // Figure out which block is immediately after the current one.
1609 MachineBasicBlock *NextBlock = 0;
1610 MachineFunction::iterator BBI = CR.CaseBB;
1611
1612 if (++BBI != CurMBB->getParent()->end())
1613 NextBlock = BBI;
1614
1615 // TODO: If any two of the cases has the same destination, and if one value
1616 // is the same as the other, but has one bit unset that the other has set,
1617 // use bit manipulation to do two compares at once. For example:
1618 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001619
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001620 // Rearrange the case blocks so that the last one falls through if possible.
1621 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1622 // The last case block won't fall through into 'NextBlock' if we emit the
1623 // branches in this order. See if rearranging a case value would help.
1624 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1625 if (I->BB == NextBlock) {
1626 std::swap(*I, BackCase);
1627 break;
1628 }
1629 }
1630 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001631
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001632 // Create a CaseBlock record representing a conditional branch to
1633 // the Case's target mbb if the value being switched on SV is equal
1634 // to C.
1635 MachineBasicBlock *CurBlock = CR.CaseBB;
1636 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1637 MachineBasicBlock *FallThrough;
1638 if (I != E-1) {
1639 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1640 CurMF->insert(BBI, FallThrough);
1641 } else {
1642 // If the last case doesn't match, go to the default block.
1643 FallThrough = Default;
1644 }
1645
1646 Value *RHS, *LHS, *MHS;
1647 ISD::CondCode CC;
1648 if (I->High == I->Low) {
1649 // This is just small small case range :) containing exactly 1 case
1650 CC = ISD::SETEQ;
1651 LHS = SV; RHS = I->High; MHS = NULL;
1652 } else {
1653 CC = ISD::SETLE;
1654 LHS = I->Low; MHS = SV; RHS = I->High;
1655 }
1656 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001657
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001658 // If emitting the first comparison, just call visitSwitchCase to emit the
1659 // code into the current block. Otherwise, push the CaseBlock onto the
1660 // vector to be later processed by SDISel, and insert the node's MBB
1661 // before the next MBB.
1662 if (CurBlock == CurMBB)
1663 visitSwitchCase(CB);
1664 else
1665 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001666
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001667 CurBlock = FallThrough;
1668 }
1669
1670 return true;
1671}
1672
1673static inline bool areJTsAllowed(const TargetLowering &TLI) {
1674 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001675 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1676 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001677}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001678
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001679static APInt ComputeRange(const APInt &First, const APInt &Last) {
1680 APInt LastExt(Last), FirstExt(First);
1681 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1682 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1683 return (LastExt - FirstExt + 1ULL);
1684}
1685
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001686/// handleJTSwitchCase - Emit jumptable for current switch case range
1687bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1688 CaseRecVector& WorkList,
1689 Value* SV,
1690 MachineBasicBlock* Default) {
1691 Case& FrontCase = *CR.Range.first;
1692 Case& BackCase = *(CR.Range.second-1);
1693
Anton Korobeynikov23218582008-12-23 22:25:27 +00001694 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1695 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001696
Anton Korobeynikov23218582008-12-23 22:25:27 +00001697 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001698 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1699 I!=E; ++I)
1700 TSize += I->size();
1701
1702 if (!areJTsAllowed(TLI) || TSize <= 3)
1703 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001704
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001705 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001706 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001707 if (Density < 0.4)
1708 return false;
1709
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001710 DEBUG(errs() << "Lowering jump table\n"
1711 << "First entry: " << First << ". Last entry: " << Last << '\n'
1712 << "Range: " << Range
1713 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001714
1715 // Get the MachineFunction which holds the current MBB. This is used when
1716 // inserting any additional MBBs necessary to represent the switch.
1717 MachineFunction *CurMF = CurMBB->getParent();
1718
1719 // Figure out which block is immediately after the current one.
1720 MachineBasicBlock *NextBlock = 0;
1721 MachineFunction::iterator BBI = CR.CaseBB;
1722
1723 if (++BBI != CurMBB->getParent()->end())
1724 NextBlock = BBI;
1725
1726 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1727
1728 // Create a new basic block to hold the code for loading the address
1729 // of the jump table, and jumping to it. Update successor information;
1730 // we will either branch to the default case for the switch, or the jump
1731 // table.
1732 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1733 CurMF->insert(BBI, JumpTableBB);
1734 CR.CaseBB->addSuccessor(Default);
1735 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001736
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001737 // Build a vector of destination BBs, corresponding to each target
1738 // of the jump table. If the value of the jump table slot corresponds to
1739 // a case statement, push the case's BB onto the vector, otherwise, push
1740 // the default BB.
1741 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001742 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001743 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001744 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1745 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1746
1747 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001748 DestBBs.push_back(I->BB);
1749 if (TEI==High)
1750 ++I;
1751 } else {
1752 DestBBs.push_back(Default);
1753 }
1754 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001755
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001756 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001757 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1758 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001759 E = DestBBs.end(); I != E; ++I) {
1760 if (!SuccsHandled[(*I)->getNumber()]) {
1761 SuccsHandled[(*I)->getNumber()] = true;
1762 JumpTableBB->addSuccessor(*I);
1763 }
1764 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001765
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001766 // Create a jump table index for this jump table, or return an existing
1767 // one.
1768 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001769
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001770 // Set the jump table information so that we can codegen it as a second
1771 // MachineBasicBlock
1772 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1773 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1774 if (CR.CaseBB == CurMBB)
1775 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001776
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001777 JTCases.push_back(JumpTableBlock(JTH, JT));
1778
1779 return true;
1780}
1781
1782/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1783/// 2 subtrees.
1784bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1785 CaseRecVector& WorkList,
1786 Value* SV,
1787 MachineBasicBlock* Default) {
1788 // Get the MachineFunction which holds the current MBB. This is used when
1789 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001790 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001791
1792 // Figure out which block is immediately after the current one.
1793 MachineBasicBlock *NextBlock = 0;
1794 MachineFunction::iterator BBI = CR.CaseBB;
1795
1796 if (++BBI != CurMBB->getParent()->end())
1797 NextBlock = BBI;
1798
1799 Case& FrontCase = *CR.Range.first;
1800 Case& BackCase = *(CR.Range.second-1);
1801 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1802
1803 // Size is the number of Cases represented by this range.
1804 unsigned Size = CR.Range.second - CR.Range.first;
1805
Anton Korobeynikov23218582008-12-23 22:25:27 +00001806 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1807 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001808 double FMetric = 0;
1809 CaseItr Pivot = CR.Range.first + Size/2;
1810
1811 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1812 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001813 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001814 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1815 I!=E; ++I)
1816 TSize += I->size();
1817
Anton Korobeynikov23218582008-12-23 22:25:27 +00001818 size_t LSize = FrontCase.size();
1819 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001820 DEBUG(errs() << "Selecting best pivot: \n"
1821 << "First: " << First << ", Last: " << Last <<'\n'
1822 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001823 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1824 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001825 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1826 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001827 APInt Range = ComputeRange(LEnd, RBegin);
1828 assert((Range - 2ULL).isNonNegative() &&
1829 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001830 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1831 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001832 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001833 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001834 DEBUG(errs() <<"=>Step\n"
1835 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1836 << "LDensity: " << LDensity
1837 << ", RDensity: " << RDensity << '\n'
1838 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001839 if (FMetric < Metric) {
1840 Pivot = J;
1841 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001842 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001843 }
1844
1845 LSize += J->size();
1846 RSize -= J->size();
1847 }
1848 if (areJTsAllowed(TLI)) {
1849 // If our case is dense we *really* should handle it earlier!
1850 assert((FMetric > 0) && "Should handle dense range earlier!");
1851 } else {
1852 Pivot = CR.Range.first + Size/2;
1853 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001854
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 CaseRange LHSR(CR.Range.first, Pivot);
1856 CaseRange RHSR(Pivot, CR.Range.second);
1857 Constant *C = Pivot->Low;
1858 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001859
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001860 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001861 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001862 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001863 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001864 // Pivot's Value, then we can branch directly to the LHS's Target,
1865 // rather than creating a leaf node for it.
1866 if ((LHSR.second - LHSR.first) == 1 &&
1867 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001868 cast<ConstantInt>(C)->getValue() ==
1869 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001870 TrueBB = LHSR.first->BB;
1871 } else {
1872 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1873 CurMF->insert(BBI, TrueBB);
1874 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
1875 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001876
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001877 // Similar to the optimization above, if the Value being switched on is
1878 // known to be less than the Constant CR.LT, and the current Case Value
1879 // is CR.LT - 1, then we can branch directly to the target block for
1880 // the current Case Value, rather than emitting a RHS leaf node for it.
1881 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001882 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1883 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001884 FalseBB = RHSR.first->BB;
1885 } else {
1886 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1887 CurMF->insert(BBI, FalseBB);
1888 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
1889 }
1890
1891 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001892 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001893 // Otherwise, branch to LHS.
1894 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1895
1896 if (CR.CaseBB == CurMBB)
1897 visitSwitchCase(CB);
1898 else
1899 SwitchCases.push_back(CB);
1900
1901 return true;
1902}
1903
1904/// handleBitTestsSwitchCase - if current case range has few destination and
1905/// range span less, than machine word bitwidth, encode case range into series
1906/// of masks and emit bit tests with these masks.
1907bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1908 CaseRecVector& WorkList,
1909 Value* SV,
1910 MachineBasicBlock* Default){
1911 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1912
1913 Case& FrontCase = *CR.Range.first;
1914 Case& BackCase = *(CR.Range.second-1);
1915
1916 // Get the MachineFunction which holds the current MBB. This is used when
1917 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001918 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001919
Anton Korobeynikov23218582008-12-23 22:25:27 +00001920 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001921 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1922 I!=E; ++I) {
1923 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001924 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001925 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001926
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001927 // Count unique destinations
1928 SmallSet<MachineBasicBlock*, 4> Dests;
1929 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1930 Dests.insert(I->BB);
1931 if (Dests.size() > 3)
1932 // Don't bother the code below, if there are too much unique destinations
1933 return false;
1934 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001935 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1936 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001937
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001938 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001939 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1940 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001941 APInt cmpRange = maxValue - minValue;
1942
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001943 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1944 << "Low bound: " << minValue << '\n'
1945 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001946
1947 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001948 (!(Dests.size() == 1 && numCmps >= 3) &&
1949 !(Dests.size() == 2 && numCmps >= 5) &&
1950 !(Dests.size() >= 3 && numCmps >= 6)))
1951 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001952
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001953 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001954 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1955
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001956 // Optimize the case where all the case values fit in a
1957 // word without having to subtract minValue. In this case,
1958 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001959 if (minValue.isNonNegative() &&
1960 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1961 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001962 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001963 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001964 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001965
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001966 CaseBitsVector CasesBits;
1967 unsigned i, count = 0;
1968
1969 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1970 MachineBasicBlock* Dest = I->BB;
1971 for (i = 0; i < count; ++i)
1972 if (Dest == CasesBits[i].BB)
1973 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001974
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001975 if (i == count) {
1976 assert((count < 3) && "Too much destinations to test!");
1977 CasesBits.push_back(CaseBits(0, Dest, 0));
1978 count++;
1979 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001980
1981 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1982 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1983
1984 uint64_t lo = (lowValue - lowBound).getZExtValue();
1985 uint64_t hi = (highValue - lowBound).getZExtValue();
1986
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001987 for (uint64_t j = lo; j <= hi; j++) {
1988 CasesBits[i].Mask |= 1ULL << j;
1989 CasesBits[i].Bits++;
1990 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001991
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001992 }
1993 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001994
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001995 BitTestInfo BTC;
1996
1997 // Figure out which block is immediately after the current one.
1998 MachineFunction::iterator BBI = CR.CaseBB;
1999 ++BBI;
2000
2001 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2002
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002003 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002004 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002005 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2006 << ", Bits: " << CasesBits[i].Bits
2007 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002008
2009 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2010 CurMF->insert(BBI, CaseBB);
2011 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2012 CaseBB,
2013 CasesBits[i].BB));
2014 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002015
2016 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002017 -1U, (CR.CaseBB == CurMBB),
2018 CR.CaseBB, Default, BTC);
2019
2020 if (CR.CaseBB == CurMBB)
2021 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002022
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002023 BitTestCases.push_back(BTB);
2024
2025 return true;
2026}
2027
2028
2029/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002030size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002031 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002032 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002033
2034 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002035 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002036 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2037 Cases.push_back(Case(SI.getSuccessorValue(i),
2038 SI.getSuccessorValue(i),
2039 SMBB));
2040 }
2041 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2042
2043 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002044 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002045 // Must recompute end() each iteration because it may be
2046 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002047 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2048 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2049 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002050 MachineBasicBlock* nextBB = J->BB;
2051 MachineBasicBlock* currentBB = I->BB;
2052
2053 // If the two neighboring cases go to the same destination, merge them
2054 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002055 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002056 I->High = J->High;
2057 J = Cases.erase(J);
2058 } else {
2059 I = J++;
2060 }
2061 }
2062
2063 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2064 if (I->Low != I->High)
2065 // A range counts double, since it requires two compares.
2066 ++numCmps;
2067 }
2068
2069 return numCmps;
2070}
2071
Anton Korobeynikov23218582008-12-23 22:25:27 +00002072void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002073 // Figure out which block is immediately after the current one.
2074 MachineBasicBlock *NextBlock = 0;
2075 MachineFunction::iterator BBI = CurMBB;
2076
2077 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2078
2079 // If there is only the default destination, branch to it if it is not the
2080 // next basic block. Otherwise, just fall through.
2081 if (SI.getNumOperands() == 2) {
2082 // Update machine-CFG edges.
2083
2084 // If this is not a fall-through branch, emit the branch.
2085 CurMBB->addSuccessor(Default);
2086 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002087 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002088 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002089 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002090 return;
2091 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002092
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002093 // If there are any non-default case statements, create a vector of Cases
2094 // representing each one, and sort the vector so that we can efficiently
2095 // create a binary search tree from them.
2096 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002097 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002098 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2099 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002100 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002101
2102 // Get the Value to be switched on and default basic blocks, which will be
2103 // inserted into CaseBlock records, representing basic blocks in the binary
2104 // search tree.
2105 Value *SV = SI.getOperand(0);
2106
2107 // Push the initial CaseRec onto the worklist
2108 CaseRecVector WorkList;
2109 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2110
2111 while (!WorkList.empty()) {
2112 // Grab a record representing a case range to process off the worklist
2113 CaseRec CR = WorkList.back();
2114 WorkList.pop_back();
2115
2116 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2117 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002118
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002119 // If the range has few cases (two or less) emit a series of specific
2120 // tests.
2121 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2122 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002123
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002124 // If the switch has more than 5 blocks, and at least 40% dense, and the
2125 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002126 // lowering the switch to a binary tree of conditional branches.
2127 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2128 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002129
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002130 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2131 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2132 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2133 }
2134}
2135
2136
2137void SelectionDAGLowering::visitSub(User &I) {
2138 // -0.0 - X --> fneg
2139 const Type *Ty = I.getType();
2140 if (isa<VectorType>(Ty)) {
2141 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2142 const VectorType *DestTy = cast<VectorType>(I.getType());
2143 const Type *ElTy = DestTy->getElementType();
2144 if (ElTy->isFloatingPoint()) {
2145 unsigned VL = DestTy->getNumElements();
2146 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2147 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2148 if (CV == CNZ) {
2149 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002150 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002151 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002152 return;
2153 }
2154 }
2155 }
2156 }
2157 if (Ty->isFloatingPoint()) {
2158 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2159 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2160 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002161 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002162 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002163 return;
2164 }
2165 }
2166
2167 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2168}
2169
2170void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2171 SDValue Op1 = getValue(I.getOperand(0));
2172 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002173
Scott Michelfdc40a02009-02-17 22:15:04 +00002174 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002175 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002176}
2177
2178void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2179 SDValue Op1 = getValue(I.getOperand(0));
2180 SDValue Op2 = getValue(I.getOperand(1));
2181 if (!isa<VectorType>(I.getType())) {
Duncan Sands92abc622009-01-31 15:50:11 +00002182 if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002183 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002184 TLI.getPointerTy(), Op2);
2185 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002186 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002187 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002188 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002189
Scott Michelfdc40a02009-02-17 22:15:04 +00002190 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002191 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002192}
2193
2194void SelectionDAGLowering::visitICmp(User &I) {
2195 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2196 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2197 predicate = IC->getPredicate();
2198 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2199 predicate = ICmpInst::Predicate(IC->getPredicate());
2200 SDValue Op1 = getValue(I.getOperand(0));
2201 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002202 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002203 setValue(&I, DAG.getSetCC(getCurDebugLoc(),MVT::i1, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002204}
2205
2206void SelectionDAGLowering::visitFCmp(User &I) {
2207 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2208 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2209 predicate = FC->getPredicate();
2210 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2211 predicate = FCmpInst::Predicate(FC->getPredicate());
2212 SDValue Op1 = getValue(I.getOperand(0));
2213 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002214 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002215 setValue(&I, DAG.getSetCC(getCurDebugLoc(), MVT::i1, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002216}
2217
2218void SelectionDAGLowering::visitVICmp(User &I) {
2219 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2220 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2221 predicate = IC->getPredicate();
2222 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2223 predicate = ICmpInst::Predicate(IC->getPredicate());
2224 SDValue Op1 = getValue(I.getOperand(0));
2225 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002226 ISD::CondCode Opcode = getICmpCondCode(predicate);
Scott Michelfdc40a02009-02-17 22:15:04 +00002227 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), Op1.getValueType(),
Dale Johannesenf5d97892009-02-04 01:48:28 +00002228 Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002229}
2230
2231void SelectionDAGLowering::visitVFCmp(User &I) {
2232 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2233 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2234 predicate = FC->getPredicate();
2235 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2236 predicate = FCmpInst::Predicate(FC->getPredicate());
2237 SDValue Op1 = getValue(I.getOperand(0));
2238 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002239 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002240 MVT DestVT = TLI.getValueType(I.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002241
Dale Johannesenf5d97892009-02-04 01:48:28 +00002242 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002243}
2244
2245void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002246 SmallVector<MVT, 4> ValueVTs;
2247 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2248 unsigned NumValues = ValueVTs.size();
2249 if (NumValues != 0) {
2250 SmallVector<SDValue, 4> Values(NumValues);
2251 SDValue Cond = getValue(I.getOperand(0));
2252 SDValue TrueVal = getValue(I.getOperand(1));
2253 SDValue FalseVal = getValue(I.getOperand(2));
2254
2255 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002256 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002257 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002258 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2259 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2260
Scott Michelfdc40a02009-02-17 22:15:04 +00002261 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002262 DAG.getVTList(&ValueVTs[0], NumValues),
2263 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002264 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002265}
2266
2267
2268void SelectionDAGLowering::visitTrunc(User &I) {
2269 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2270 SDValue N = getValue(I.getOperand(0));
2271 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002272 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002273}
2274
2275void SelectionDAGLowering::visitZExt(User &I) {
2276 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2277 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2278 SDValue N = getValue(I.getOperand(0));
2279 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002280 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002281}
2282
2283void SelectionDAGLowering::visitSExt(User &I) {
2284 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2285 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2286 SDValue N = getValue(I.getOperand(0));
2287 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002288 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002289}
2290
2291void SelectionDAGLowering::visitFPTrunc(User &I) {
2292 // FPTrunc is never a no-op cast, no need to check
2293 SDValue N = getValue(I.getOperand(0));
2294 MVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002295 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002296 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002297}
2298
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002299void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002300 // FPTrunc is never a no-op cast, no need to check
2301 SDValue N = getValue(I.getOperand(0));
2302 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002303 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002304}
2305
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002306void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002307 // FPToUI is never a no-op cast, no need to check
2308 SDValue N = getValue(I.getOperand(0));
2309 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002310 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002311}
2312
2313void SelectionDAGLowering::visitFPToSI(User &I) {
2314 // FPToSI is never a no-op cast, no need to check
2315 SDValue N = getValue(I.getOperand(0));
2316 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002317 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002318}
2319
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002320void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002321 // UIToFP is never a no-op cast, no need to check
2322 SDValue N = getValue(I.getOperand(0));
2323 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002324 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002325}
2326
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002327void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002328 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002329 SDValue N = getValue(I.getOperand(0));
2330 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002331 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002332}
2333
2334void SelectionDAGLowering::visitPtrToInt(User &I) {
2335 // What to do depends on the size of the integer and the size of the pointer.
2336 // We can either truncate, zero extend, or no-op, accordingly.
2337 SDValue N = getValue(I.getOperand(0));
2338 MVT SrcVT = N.getValueType();
2339 MVT DestVT = TLI.getValueType(I.getType());
2340 SDValue Result;
2341 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002342 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002343 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002344 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002345 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002346 setValue(&I, Result);
2347}
2348
2349void SelectionDAGLowering::visitIntToPtr(User &I) {
2350 // What to do depends on the size of the integer and the size of the pointer.
2351 // We can either truncate, zero extend, or no-op, accordingly.
2352 SDValue N = getValue(I.getOperand(0));
2353 MVT SrcVT = N.getValueType();
2354 MVT DestVT = TLI.getValueType(I.getType());
2355 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002356 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002357 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002358 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002359 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002360 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002361}
2362
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002363void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002364 SDValue N = getValue(I.getOperand(0));
2365 MVT DestVT = TLI.getValueType(I.getType());
2366
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002367 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002368 // is either a BIT_CONVERT or a no-op.
2369 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002370 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002371 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002372 else
2373 setValue(&I, N); // noop cast.
2374}
2375
2376void SelectionDAGLowering::visitInsertElement(User &I) {
2377 SDValue InVec = getValue(I.getOperand(0));
2378 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002379 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002380 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002381 getValue(I.getOperand(2)));
2382
Scott Michelfdc40a02009-02-17 22:15:04 +00002383 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002384 TLI.getValueType(I.getType()),
2385 InVec, InVal, InIdx));
2386}
2387
2388void SelectionDAGLowering::visitExtractElement(User &I) {
2389 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002390 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002391 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002392 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002393 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002394 TLI.getValueType(I.getType()), InVec, InIdx));
2395}
2396
Mon P Wangaeb06d22008-11-10 04:46:22 +00002397
2398// Utility for visitShuffleVector - Returns true if the mask is mask starting
2399// from SIndx and increasing to the element length (undefs are allowed).
2400static bool SequentialMask(SDValue Mask, unsigned SIndx) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002401 unsigned MaskNumElts = Mask.getNumOperands();
2402 for (unsigned i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002403 if (Mask.getOperand(i).getOpcode() != ISD::UNDEF) {
2404 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2405 if (Idx != i + SIndx)
2406 return false;
2407 }
2408 }
2409 return true;
2410}
2411
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002412void SelectionDAGLowering::visitShuffleVector(User &I) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002413 SDValue Src1 = getValue(I.getOperand(0));
2414 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002415 SDValue Mask = getValue(I.getOperand(2));
2416
Mon P Wangaeb06d22008-11-10 04:46:22 +00002417 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002418 MVT SrcVT = Src1.getValueType();
Mon P Wangc7849c22008-11-16 05:06:27 +00002419 int MaskNumElts = Mask.getNumOperands();
2420 int SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002421
Mon P Wangc7849c22008-11-16 05:06:27 +00002422 if (SrcNumElts == MaskNumElts) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002423 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002424 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002425 return;
2426 }
2427
2428 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002429 MVT MaskEltVT = Mask.getValueType().getVectorElementType();
2430
2431 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2432 // Mask is longer than the source vectors and is a multiple of the source
2433 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002434 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002435 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2436 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002437 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002438 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002439 return;
2440 }
2441
Mon P Wangc7849c22008-11-16 05:06:27 +00002442 // Pad both vectors with undefs to make them the same length as the mask.
2443 unsigned NumConcat = MaskNumElts / SrcNumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00002444 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002445
Mon P Wang230e4fa2008-11-21 04:25:21 +00002446 SDValue* MOps1 = new SDValue[NumConcat];
2447 SDValue* MOps2 = new SDValue[NumConcat];
2448 MOps1[0] = Src1;
2449 MOps2[0] = Src2;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002450 for (unsigned i = 1; i != NumConcat; ++i) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002451 MOps1[i] = UndefVal;
2452 MOps2[i] = UndefVal;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002453 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002454 Src1 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002455 VT, MOps1, NumConcat);
Scott Michelfdc40a02009-02-17 22:15:04 +00002456 Src2 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002457 VT, MOps2, NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002458
2459 delete [] MOps1;
2460 delete [] MOps2;
2461
Mon P Wangaeb06d22008-11-10 04:46:22 +00002462 // Readjust mask for new input vector length.
2463 SmallVector<SDValue, 8> MappedOps;
Mon P Wangc7849c22008-11-16 05:06:27 +00002464 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002465 if (Mask.getOperand(i).getOpcode() == ISD::UNDEF) {
2466 MappedOps.push_back(Mask.getOperand(i));
2467 } else {
Mon P Wangc7849c22008-11-16 05:06:27 +00002468 int Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2469 if (Idx < SrcNumElts)
2470 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
2471 else
2472 MappedOps.push_back(DAG.getConstant(Idx + MaskNumElts - SrcNumElts,
2473 MaskEltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002474 }
2475 }
Evan Chenga87008d2009-02-25 22:49:59 +00002476 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2477 Mask.getValueType(),
2478 &MappedOps[0], MappedOps.size());
Mon P Wangaeb06d22008-11-10 04:46:22 +00002479
Scott Michelfdc40a02009-02-17 22:15:04 +00002480 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002481 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002482 return;
2483 }
2484
Mon P Wangc7849c22008-11-16 05:06:27 +00002485 if (SrcNumElts > MaskNumElts) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002486 // Resulting vector is shorter than the incoming vector.
Mon P Wangc7849c22008-11-16 05:06:27 +00002487 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002488 // Shuffle extracts 1st vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002489 setValue(&I, Src1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002490 return;
2491 }
2492
Mon P Wangc7849c22008-11-16 05:06:27 +00002493 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002494 // Shuffle extracts 2nd vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002495 setValue(&I, Src2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002496 return;
2497 }
2498
Mon P Wangc7849c22008-11-16 05:06:27 +00002499 // Analyze the access pattern of the vector to see if we can extract
2500 // two subvectors and do the shuffle. The analysis is done by calculating
2501 // the range of elements the mask access on both vectors.
2502 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2503 int MaxRange[2] = {-1, -1};
2504
2505 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002506 SDValue Arg = Mask.getOperand(i);
2507 if (Arg.getOpcode() != ISD::UNDEF) {
2508 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002509 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2510 int Input = 0;
2511 if (Idx >= SrcNumElts) {
2512 Input = 1;
2513 Idx -= SrcNumElts;
2514 }
2515 if (Idx > MaxRange[Input])
2516 MaxRange[Input] = Idx;
2517 if (Idx < MinRange[Input])
2518 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002519 }
2520 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002521
Mon P Wangc7849c22008-11-16 05:06:27 +00002522 // Check if the access is smaller than the vector size and can we find
2523 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002524 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002525 int StartIdx[2]; // StartIdx to extract from
2526 for (int Input=0; Input < 2; ++Input) {
2527 if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) {
2528 RangeUse[Input] = 0; // Unused
2529 StartIdx[Input] = 0;
2530 } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) {
2531 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002532 // start index that is a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002533 if (MaxRange[Input] < MaskNumElts) {
2534 RangeUse[Input] = 1; // Extract from beginning of the vector
2535 StartIdx[Input] = 0;
2536 } else {
2537 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Mon P Wang6cce3da2008-11-23 04:35:05 +00002538 if (MaxRange[Input] - StartIdx[Input] < MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002539 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002540 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002541 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002542 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002543 }
2544
2545 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002546 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002547 return;
2548 }
2549 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2550 // Extract appropriate subvector and generate a vector shuffle
2551 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002552 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002553 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002554 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002555 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002556 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002557 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002558 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002559 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002560 // Calculate new mask.
2561 SmallVector<SDValue, 8> MappedOps;
2562 for (int i = 0; i != MaskNumElts; ++i) {
2563 SDValue Arg = Mask.getOperand(i);
2564 if (Arg.getOpcode() == ISD::UNDEF) {
2565 MappedOps.push_back(Arg);
2566 } else {
2567 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2568 if (Idx < SrcNumElts)
2569 MappedOps.push_back(DAG.getConstant(Idx - StartIdx[0], MaskEltVT));
2570 else {
2571 Idx = Idx - SrcNumElts - StartIdx[1] + MaskNumElts;
2572 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002573 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002574 }
2575 }
Evan Chenga87008d2009-02-25 22:49:59 +00002576 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2577 Mask.getValueType(),
2578 &MappedOps[0], MappedOps.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00002579 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002580 VT, Src1, Src2, Mask));
Mon P Wangc7849c22008-11-16 05:06:27 +00002581 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002582 }
2583 }
2584
Mon P Wangc7849c22008-11-16 05:06:27 +00002585 // We can't use either concat vectors or extract subvectors so fall back to
2586 // replacing the shuffle with extract and build vector.
2587 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002588 MVT EltVT = VT.getVectorElementType();
2589 MVT PtrVT = TLI.getPointerTy();
2590 SmallVector<SDValue,8> Ops;
Mon P Wangc7849c22008-11-16 05:06:27 +00002591 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002592 SDValue Arg = Mask.getOperand(i);
2593 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002594 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002595 } else {
2596 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002597 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2598 if (Idx < SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002599 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002600 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002601 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002602 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002603 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002604 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002605 }
2606 }
Evan Chenga87008d2009-02-25 22:49:59 +00002607 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2608 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002609}
2610
2611void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2612 const Value *Op0 = I.getOperand(0);
2613 const Value *Op1 = I.getOperand(1);
2614 const Type *AggTy = I.getType();
2615 const Type *ValTy = Op1->getType();
2616 bool IntoUndef = isa<UndefValue>(Op0);
2617 bool FromUndef = isa<UndefValue>(Op1);
2618
2619 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2620 I.idx_begin(), I.idx_end());
2621
2622 SmallVector<MVT, 4> AggValueVTs;
2623 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2624 SmallVector<MVT, 4> ValValueVTs;
2625 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2626
2627 unsigned NumAggValues = AggValueVTs.size();
2628 unsigned NumValValues = ValValueVTs.size();
2629 SmallVector<SDValue, 4> Values(NumAggValues);
2630
2631 SDValue Agg = getValue(Op0);
2632 SDValue Val = getValue(Op1);
2633 unsigned i = 0;
2634 // Copy the beginning value(s) from the original aggregate.
2635 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002636 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002637 SDValue(Agg.getNode(), Agg.getResNo() + i);
2638 // Copy values from the inserted value(s).
2639 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002640 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002641 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2642 // Copy remaining value(s) from the original aggregate.
2643 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002644 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002645 SDValue(Agg.getNode(), Agg.getResNo() + i);
2646
Scott Michelfdc40a02009-02-17 22:15:04 +00002647 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002648 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2649 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002650}
2651
2652void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2653 const Value *Op0 = I.getOperand(0);
2654 const Type *AggTy = Op0->getType();
2655 const Type *ValTy = I.getType();
2656 bool OutOfUndef = isa<UndefValue>(Op0);
2657
2658 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2659 I.idx_begin(), I.idx_end());
2660
2661 SmallVector<MVT, 4> ValValueVTs;
2662 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2663
2664 unsigned NumValValues = ValValueVTs.size();
2665 SmallVector<SDValue, 4> Values(NumValValues);
2666
2667 SDValue Agg = getValue(Op0);
2668 // Copy out the selected value(s).
2669 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2670 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002671 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002672 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002673 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002674
Scott Michelfdc40a02009-02-17 22:15:04 +00002675 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002676 DAG.getVTList(&ValValueVTs[0], NumValValues),
2677 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002678}
2679
2680
2681void SelectionDAGLowering::visitGetElementPtr(User &I) {
2682 SDValue N = getValue(I.getOperand(0));
2683 const Type *Ty = I.getOperand(0)->getType();
2684
2685 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2686 OI != E; ++OI) {
2687 Value *Idx = *OI;
2688 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2689 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2690 if (Field) {
2691 // N = N + Offset
2692 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002693 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002694 DAG.getIntPtrConstant(Offset));
2695 }
2696 Ty = StTy->getElementType(Field);
2697 } else {
2698 Ty = cast<SequentialType>(Ty)->getElementType();
2699
2700 // If this is a constant subscript, handle it quickly.
2701 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2702 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002703 uint64_t Offs =
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002704 TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002705 SDValue OffsVal;
Evan Chengb1032a82009-02-09 20:54:38 +00002706 unsigned PtrBits = TLI.getPointerTy().getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002707 if (PtrBits < 64) {
2708 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2709 TLI.getPointerTy(),
2710 DAG.getConstant(Offs, MVT::i64));
2711 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002712 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002713 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002714 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002715 continue;
2716 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002717
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002718 // N = N + Idx * ElementSize;
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002719 uint64_t ElementSize = TD->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002720 SDValue IdxN = getValue(Idx);
2721
2722 // If the index is smaller or larger than intptr_t, truncate or extend
2723 // it.
2724 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002725 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002726 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002727 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002728 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002729 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002730
2731 // If this is a multiply by a power of two, turn it into a shl
2732 // immediately. This is a very common case.
2733 if (ElementSize != 1) {
2734 if (isPowerOf2_64(ElementSize)) {
2735 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002736 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002737 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002738 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002739 } else {
2740 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002741 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002742 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002743 }
2744 }
2745
Scott Michelfdc40a02009-02-17 22:15:04 +00002746 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002747 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002748 }
2749 }
2750 setValue(&I, N);
2751}
2752
2753void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2754 // If this is a fixed sized alloca in the entry block of the function,
2755 // allocate it statically on the stack.
2756 if (FuncInfo.StaticAllocaMap.count(&I))
2757 return; // getValue will auto-populate this.
2758
2759 const Type *Ty = I.getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002760 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002761 unsigned Align =
2762 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2763 I.getAlignment());
2764
2765 SDValue AllocSize = getValue(I.getArraySize());
2766 MVT IntPtr = TLI.getPointerTy();
2767 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002768 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002769 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002770 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002771 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002772 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002773
Dale Johannesen66978ee2009-01-31 02:22:37 +00002774 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), IntPtr, AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002775 DAG.getIntPtrConstant(TySize));
2776
2777 // Handle alignment. If the requested alignment is less than or equal to
2778 // the stack alignment, ignore it. If the size is greater than or equal to
2779 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2780 unsigned StackAlign =
2781 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2782 if (Align <= StackAlign)
2783 Align = 0;
2784
2785 // Round the size of the allocation up to the stack alignment size
2786 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002787 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002788 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002789 DAG.getIntPtrConstant(StackAlign-1));
2790 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002791 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002792 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002793 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2794
2795 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
2796 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2797 MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002798 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002799 VTs, 2, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002800 setValue(&I, DSA);
2801 DAG.setRoot(DSA.getValue(1));
2802
2803 // Inform the Frame Information that we have just allocated a variable-sized
2804 // object.
2805 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2806}
2807
2808void SelectionDAGLowering::visitLoad(LoadInst &I) {
2809 const Value *SV = I.getOperand(0);
2810 SDValue Ptr = getValue(SV);
2811
2812 const Type *Ty = I.getType();
2813 bool isVolatile = I.isVolatile();
2814 unsigned Alignment = I.getAlignment();
2815
2816 SmallVector<MVT, 4> ValueVTs;
2817 SmallVector<uint64_t, 4> Offsets;
2818 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2819 unsigned NumValues = ValueVTs.size();
2820 if (NumValues == 0)
2821 return;
2822
2823 SDValue Root;
2824 bool ConstantMemory = false;
2825 if (I.isVolatile())
2826 // Serialize volatile loads with other side effects.
2827 Root = getRoot();
2828 else if (AA->pointsToConstantMemory(SV)) {
2829 // Do not serialize (non-volatile) loads of constant memory with anything.
2830 Root = DAG.getEntryNode();
2831 ConstantMemory = true;
2832 } else {
2833 // Do not serialize non-volatile loads against each other.
2834 Root = DAG.getRoot();
2835 }
2836
2837 SmallVector<SDValue, 4> Values(NumValues);
2838 SmallVector<SDValue, 4> Chains(NumValues);
2839 MVT PtrVT = Ptr.getValueType();
2840 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002841 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002842 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002843 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002844 DAG.getConstant(Offsets[i], PtrVT)),
2845 SV, Offsets[i],
2846 isVolatile, Alignment);
2847 Values[i] = L;
2848 Chains[i] = L.getValue(1);
2849 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002851 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002852 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002853 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002854 &Chains[0], NumValues);
2855 if (isVolatile)
2856 DAG.setRoot(Chain);
2857 else
2858 PendingLoads.push_back(Chain);
2859 }
2860
Scott Michelfdc40a02009-02-17 22:15:04 +00002861 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002862 DAG.getVTList(&ValueVTs[0], NumValues),
2863 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002864}
2865
2866
2867void SelectionDAGLowering::visitStore(StoreInst &I) {
2868 Value *SrcV = I.getOperand(0);
2869 Value *PtrV = I.getOperand(1);
2870
2871 SmallVector<MVT, 4> ValueVTs;
2872 SmallVector<uint64_t, 4> Offsets;
2873 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2874 unsigned NumValues = ValueVTs.size();
2875 if (NumValues == 0)
2876 return;
2877
2878 // Get the lowered operands. Note that we do this after
2879 // checking if NumResults is zero, because with zero results
2880 // the operands won't have values in the map.
2881 SDValue Src = getValue(SrcV);
2882 SDValue Ptr = getValue(PtrV);
2883
2884 SDValue Root = getRoot();
2885 SmallVector<SDValue, 4> Chains(NumValues);
2886 MVT PtrVT = Ptr.getValueType();
2887 bool isVolatile = I.isVolatile();
2888 unsigned Alignment = I.getAlignment();
2889 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002890 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002891 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002892 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002893 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002894 DAG.getConstant(Offsets[i], PtrVT)),
2895 PtrV, Offsets[i],
2896 isVolatile, Alignment);
2897
Scott Michelfdc40a02009-02-17 22:15:04 +00002898 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002899 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002900}
2901
2902/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2903/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002904void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002905 unsigned Intrinsic) {
2906 bool HasChain = !I.doesNotAccessMemory();
2907 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2908
2909 // Build the operand list.
2910 SmallVector<SDValue, 8> Ops;
2911 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2912 if (OnlyLoad) {
2913 // We don't need to serialize loads against other loads.
2914 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002915 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002916 Ops.push_back(getRoot());
2917 }
2918 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002919
2920 // Info is set by getTgtMemInstrinsic
2921 TargetLowering::IntrinsicInfo Info;
2922 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2923
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002924 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002925 if (!IsTgtIntrinsic)
2926 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002927
2928 // Add all operands of the call to the operand list.
2929 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2930 SDValue Op = getValue(I.getOperand(i));
2931 assert(TLI.isTypeLegal(Op.getValueType()) &&
2932 "Intrinsic uses a non-legal type?");
2933 Ops.push_back(Op);
2934 }
2935
2936 std::vector<MVT> VTs;
2937 if (I.getType() != Type::VoidTy) {
2938 MVT VT = TLI.getValueType(I.getType());
2939 if (VT.isVector()) {
2940 const VectorType *DestTy = cast<VectorType>(I.getType());
2941 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002942
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002943 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2944 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2945 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002946
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002947 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2948 VTs.push_back(VT);
2949 }
2950 if (HasChain)
2951 VTs.push_back(MVT::Other);
2952
2953 const MVT *VTList = DAG.getNodeValueTypes(VTs);
2954
2955 // Create the node.
2956 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002957 if (IsTgtIntrinsic) {
2958 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002959 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002960 VTList, VTs.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002961 &Ops[0], Ops.size(),
2962 Info.memVT, Info.ptrVal, Info.offset,
2963 Info.align, Info.vol,
2964 Info.readMem, Info.writeMem);
2965 }
2966 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002967 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002968 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002969 &Ops[0], Ops.size());
2970 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002971 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002972 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002973 &Ops[0], Ops.size());
2974 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002975 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002976 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002977 &Ops[0], Ops.size());
2978
2979 if (HasChain) {
2980 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2981 if (OnlyLoad)
2982 PendingLoads.push_back(Chain);
2983 else
2984 DAG.setRoot(Chain);
2985 }
2986 if (I.getType() != Type::VoidTy) {
2987 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2988 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002989 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002990 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002991 setValue(&I, Result);
2992 }
2993}
2994
2995/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2996static GlobalVariable *ExtractTypeInfo(Value *V) {
2997 V = V->stripPointerCasts();
2998 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2999 assert ((GV || isa<ConstantPointerNull>(V)) &&
3000 "TypeInfo must be a global variable or NULL");
3001 return GV;
3002}
3003
3004namespace llvm {
3005
3006/// AddCatchInfo - Extract the personality and type infos from an eh.selector
3007/// call, and add them to the specified machine basic block.
3008void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3009 MachineBasicBlock *MBB) {
3010 // Inform the MachineModuleInfo of the personality for this landing pad.
3011 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3012 assert(CE->getOpcode() == Instruction::BitCast &&
3013 isa<Function>(CE->getOperand(0)) &&
3014 "Personality should be a function");
3015 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3016
3017 // Gather all the type infos for this landing pad and pass them along to
3018 // MachineModuleInfo.
3019 std::vector<GlobalVariable *> TyInfo;
3020 unsigned N = I.getNumOperands();
3021
3022 for (unsigned i = N - 1; i > 2; --i) {
3023 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3024 unsigned FilterLength = CI->getZExtValue();
3025 unsigned FirstCatch = i + FilterLength + !FilterLength;
3026 assert (FirstCatch <= N && "Invalid filter length");
3027
3028 if (FirstCatch < N) {
3029 TyInfo.reserve(N - FirstCatch);
3030 for (unsigned j = FirstCatch; j < N; ++j)
3031 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3032 MMI->addCatchTypeInfo(MBB, TyInfo);
3033 TyInfo.clear();
3034 }
3035
3036 if (!FilterLength) {
3037 // Cleanup.
3038 MMI->addCleanup(MBB);
3039 } else {
3040 // Filter.
3041 TyInfo.reserve(FilterLength - 1);
3042 for (unsigned j = i + 1; j < FirstCatch; ++j)
3043 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3044 MMI->addFilterTypeInfo(MBB, TyInfo);
3045 TyInfo.clear();
3046 }
3047
3048 N = i;
3049 }
3050 }
3051
3052 if (N > 3) {
3053 TyInfo.reserve(N - 3);
3054 for (unsigned j = 3; j < N; ++j)
3055 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3056 MMI->addCatchTypeInfo(MBB, TyInfo);
3057 }
3058}
3059
3060}
3061
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003062/// GetSignificand - Get the significand and build it into a floating-point
3063/// number with exponent of 1:
3064///
3065/// Op = (Op & 0x007fffff) | 0x3f800000;
3066///
3067/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003068static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003069GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3070 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003071 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003072 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003073 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003074 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003075}
3076
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003077/// GetExponent - Get the exponent:
3078///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003079/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003080///
3081/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003082static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003083GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3084 DebugLoc dl) {
3085 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003086 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003087 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003088 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003089 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003090 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003091 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003092}
3093
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003094/// getF32Constant - Get 32-bit floating point constant.
3095static SDValue
3096getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3097 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3098}
3099
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003100/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003101/// visitIntrinsicCall: I is a call instruction
3102/// Op is the associated NodeType for I
3103const char *
3104SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003105 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003106 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003107 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003108 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003109 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003110 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003111 getValue(I.getOperand(2)),
3112 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003113 setValue(&I, L);
3114 DAG.setRoot(L.getValue(1));
3115 return 0;
3116}
3117
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003118// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003119const char *
3120SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003121 SDValue Op1 = getValue(I.getOperand(1));
3122 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003123
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003124 MVT ValueVTs[] = { Op1.getValueType(), MVT::i1 };
3125 SDValue Ops[] = { Op1, Op2 };
Bill Wendling74c37652008-12-09 22:08:41 +00003126
Scott Michelfdc40a02009-02-17 22:15:04 +00003127 SDValue Result = DAG.getNode(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003128 DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2);
Bill Wendling74c37652008-12-09 22:08:41 +00003129
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003130 setValue(&I, Result);
3131 return 0;
3132}
Bill Wendling74c37652008-12-09 22:08:41 +00003133
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003134/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3135/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003136void
3137SelectionDAGLowering::visitExp(CallInst &I) {
3138 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003139 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003140
3141 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3142 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3143 SDValue Op = getValue(I.getOperand(1));
3144
3145 // Put the exponent in the right bit position for later addition to the
3146 // final result:
3147 //
3148 // #define LOG2OFe 1.4426950f
3149 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003150 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003151 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003152 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003153
3154 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003155 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3156 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003157
3158 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003159 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003160 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003161
3162 if (LimitFloatPrecision <= 6) {
3163 // For floating-point precision of 6:
3164 //
3165 // TwoToFractionalPartOfX =
3166 // 0.997535578f +
3167 // (0.735607626f + 0.252464424f * x) * x;
3168 //
3169 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003170 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003171 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003172 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003173 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003174 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3175 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003176 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003177 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003178
3179 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003180 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003181 TwoToFracPartOfX, IntegerPartOfX);
3182
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003183 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003184 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3185 // For floating-point precision of 12:
3186 //
3187 // TwoToFractionalPartOfX =
3188 // 0.999892986f +
3189 // (0.696457318f +
3190 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3191 //
3192 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003193 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003194 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003195 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003196 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003197 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3198 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003199 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003200 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3201 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003202 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003203 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003204
3205 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003206 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003207 TwoToFracPartOfX, IntegerPartOfX);
3208
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003209 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003210 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3211 // For floating-point precision of 18:
3212 //
3213 // TwoToFractionalPartOfX =
3214 // 0.999999982f +
3215 // (0.693148872f +
3216 // (0.240227044f +
3217 // (0.554906021e-1f +
3218 // (0.961591928e-2f +
3219 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3220 //
3221 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003222 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003223 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003224 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003225 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003226 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3227 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003228 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003229 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3230 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003231 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003232 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3233 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003234 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003235 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3236 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003237 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003238 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3239 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003240 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003241 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003242 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003243
3244 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003245 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003246 TwoToFracPartOfX, IntegerPartOfX);
3247
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003248 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003249 }
3250 } else {
3251 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003252 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003253 getValue(I.getOperand(1)).getValueType(),
3254 getValue(I.getOperand(1)));
3255 }
3256
Dale Johannesen59e577f2008-09-05 18:38:42 +00003257 setValue(&I, result);
3258}
3259
Bill Wendling39150252008-09-09 20:39:27 +00003260/// visitLog - Lower a log intrinsic. Handles the special sequences for
3261/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003262void
3263SelectionDAGLowering::visitLog(CallInst &I) {
3264 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003265 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003266
3267 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3268 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3269 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003270 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003271
3272 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003273 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003274 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003275 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003276
3277 // Get the significand and build it into a floating-point number with
3278 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003279 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003280
3281 if (LimitFloatPrecision <= 6) {
3282 // For floating-point precision of 6:
3283 //
3284 // LogofMantissa =
3285 // -1.1609546f +
3286 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003287 //
Bill Wendling39150252008-09-09 20:39:27 +00003288 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003289 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003290 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003291 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003292 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003293 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3294 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003295 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003296
Scott Michelfdc40a02009-02-17 22:15:04 +00003297 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003298 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003299 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3300 // For floating-point precision of 12:
3301 //
3302 // LogOfMantissa =
3303 // -1.7417939f +
3304 // (2.8212026f +
3305 // (-1.4699568f +
3306 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3307 //
3308 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003309 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003310 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003311 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003312 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003313 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3314 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003315 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003316 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3317 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003318 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003319 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3320 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003321 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003322
Scott Michelfdc40a02009-02-17 22:15:04 +00003323 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003324 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003325 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3326 // For floating-point precision of 18:
3327 //
3328 // LogOfMantissa =
3329 // -2.1072184f +
3330 // (4.2372794f +
3331 // (-3.7029485f +
3332 // (2.2781945f +
3333 // (-0.87823314f +
3334 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3335 //
3336 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003337 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003338 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003339 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003340 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003341 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3342 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003343 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003344 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3345 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003346 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003347 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3348 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003349 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003350 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3351 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003352 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003353 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3354 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003355 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003356
Scott Michelfdc40a02009-02-17 22:15:04 +00003357 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003358 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003359 }
3360 } else {
3361 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003362 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003363 getValue(I.getOperand(1)).getValueType(),
3364 getValue(I.getOperand(1)));
3365 }
3366
Dale Johannesen59e577f2008-09-05 18:38:42 +00003367 setValue(&I, result);
3368}
3369
Bill Wendling3eb59402008-09-09 00:28:24 +00003370/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3371/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003372void
3373SelectionDAGLowering::visitLog2(CallInst &I) {
3374 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003375 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003376
Dale Johannesen853244f2008-09-05 23:49:37 +00003377 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003378 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3379 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003380 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003381
Bill Wendling39150252008-09-09 20:39:27 +00003382 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003383 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003384
3385 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003386 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003387 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003388
Bill Wendling3eb59402008-09-09 00:28:24 +00003389 // Different possible minimax approximations of significand in
3390 // floating-point for various degrees of accuracy over [1,2].
3391 if (LimitFloatPrecision <= 6) {
3392 // For floating-point precision of 6:
3393 //
3394 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3395 //
3396 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003397 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003398 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003399 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003400 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003401 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3402 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003403 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003404
Scott Michelfdc40a02009-02-17 22:15:04 +00003405 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003406 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003407 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3408 // For floating-point precision of 12:
3409 //
3410 // Log2ofMantissa =
3411 // -2.51285454f +
3412 // (4.07009056f +
3413 // (-2.12067489f +
3414 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003415 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003416 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003417 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003418 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003419 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003420 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003421 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3422 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003423 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003424 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3425 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003426 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003427 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3428 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003429 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003430
Scott Michelfdc40a02009-02-17 22:15:04 +00003431 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003432 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003433 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3434 // For floating-point precision of 18:
3435 //
3436 // Log2ofMantissa =
3437 // -3.0400495f +
3438 // (6.1129976f +
3439 // (-5.3420409f +
3440 // (3.2865683f +
3441 // (-1.2669343f +
3442 // (0.27515199f -
3443 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3444 //
3445 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003446 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003447 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003448 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003449 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003450 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3451 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003452 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003453 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3454 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003455 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003456 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3457 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003458 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003459 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3460 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003461 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003462 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3463 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003464 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003465
Scott Michelfdc40a02009-02-17 22:15:04 +00003466 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003467 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003468 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003469 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003470 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003471 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003472 getValue(I.getOperand(1)).getValueType(),
3473 getValue(I.getOperand(1)));
3474 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003475
Dale Johannesen59e577f2008-09-05 18:38:42 +00003476 setValue(&I, result);
3477}
3478
Bill Wendling3eb59402008-09-09 00:28:24 +00003479/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3480/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003481void
3482SelectionDAGLowering::visitLog10(CallInst &I) {
3483 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003484 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003485
Dale Johannesen852680a2008-09-05 21:27:19 +00003486 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003487 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3488 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003489 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003490
Bill Wendling39150252008-09-09 20:39:27 +00003491 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003492 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003493 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003494 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003495
3496 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003497 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003498 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003499
3500 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003501 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003502 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003503 // Log10ofMantissa =
3504 // -0.50419619f +
3505 // (0.60948995f - 0.10380950f * x) * x;
3506 //
3507 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003508 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003509 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003510 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003511 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003512 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3513 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003514 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003515
Scott Michelfdc40a02009-02-17 22:15:04 +00003516 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003517 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003518 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3519 // For floating-point precision of 12:
3520 //
3521 // Log10ofMantissa =
3522 // -0.64831180f +
3523 // (0.91751397f +
3524 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3525 //
3526 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003527 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003528 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003529 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003530 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003531 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3532 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003533 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003534 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3535 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003536 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003537
Scott Michelfdc40a02009-02-17 22:15:04 +00003538 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003539 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003540 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003541 // For floating-point precision of 18:
3542 //
3543 // Log10ofMantissa =
3544 // -0.84299375f +
3545 // (1.5327582f +
3546 // (-1.0688956f +
3547 // (0.49102474f +
3548 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3549 //
3550 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003551 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003552 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003553 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003554 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003555 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3556 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003557 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003558 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3559 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003560 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003561 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3562 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003563 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003564 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3565 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003566 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003567
Scott Michelfdc40a02009-02-17 22:15:04 +00003568 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003569 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003570 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003571 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003572 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003573 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003574 getValue(I.getOperand(1)).getValueType(),
3575 getValue(I.getOperand(1)));
3576 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003577
Dale Johannesen59e577f2008-09-05 18:38:42 +00003578 setValue(&I, result);
3579}
3580
Bill Wendlinge10c8142008-09-09 22:39:21 +00003581/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3582/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003583void
3584SelectionDAGLowering::visitExp2(CallInst &I) {
3585 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003586 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003587
Dale Johannesen601d3c02008-09-05 01:48:15 +00003588 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003589 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3590 SDValue Op = getValue(I.getOperand(1));
3591
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003592 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003593
3594 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003595 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3596 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003597
3598 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003599 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003600 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003601
3602 if (LimitFloatPrecision <= 6) {
3603 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003604 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003605 // TwoToFractionalPartOfX =
3606 // 0.997535578f +
3607 // (0.735607626f + 0.252464424f * x) * x;
3608 //
3609 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003610 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003611 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003612 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003613 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003614 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3615 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003616 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003617 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003618 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003619 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003620
Scott Michelfdc40a02009-02-17 22:15:04 +00003621 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003622 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003623 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3624 // For floating-point precision of 12:
3625 //
3626 // TwoToFractionalPartOfX =
3627 // 0.999892986f +
3628 // (0.696457318f +
3629 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3630 //
3631 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003632 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003633 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003634 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003635 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003636 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3637 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003638 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003639 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3640 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003641 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003642 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003643 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003644 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003645
Scott Michelfdc40a02009-02-17 22:15:04 +00003646 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003647 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003648 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3649 // For floating-point precision of 18:
3650 //
3651 // TwoToFractionalPartOfX =
3652 // 0.999999982f +
3653 // (0.693148872f +
3654 // (0.240227044f +
3655 // (0.554906021e-1f +
3656 // (0.961591928e-2f +
3657 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3658 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003659 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003660 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003661 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003662 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003663 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3664 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003665 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003666 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3667 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003668 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003669 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3670 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003671 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003672 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3673 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003674 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003675 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3676 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003677 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003678 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003679 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003680 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003681
Scott Michelfdc40a02009-02-17 22:15:04 +00003682 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003683 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003684 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003685 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003686 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003687 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003688 getValue(I.getOperand(1)).getValueType(),
3689 getValue(I.getOperand(1)));
3690 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003691
Dale Johannesen601d3c02008-09-05 01:48:15 +00003692 setValue(&I, result);
3693}
3694
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003695/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3696/// limited-precision mode with x == 10.0f.
3697void
3698SelectionDAGLowering::visitPow(CallInst &I) {
3699 SDValue result;
3700 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003701 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003702 bool IsExp10 = false;
3703
3704 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003705 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003706 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3707 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3708 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3709 APFloat Ten(10.0f);
3710 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3711 }
3712 }
3713 }
3714
3715 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3716 SDValue Op = getValue(I.getOperand(2));
3717
3718 // Put the exponent in the right bit position for later addition to the
3719 // final result:
3720 //
3721 // #define LOG2OF10 3.3219281f
3722 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003723 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003724 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003725 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003726
3727 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003728 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3729 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003730
3731 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003732 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003733 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003734
3735 if (LimitFloatPrecision <= 6) {
3736 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003737 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003738 // twoToFractionalPartOfX =
3739 // 0.997535578f +
3740 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003741 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003742 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003743 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003744 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003745 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003746 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003747 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3748 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003749 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003750 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003751 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003752 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003753
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003754 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3755 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003756 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3757 // For floating-point precision of 12:
3758 //
3759 // TwoToFractionalPartOfX =
3760 // 0.999892986f +
3761 // (0.696457318f +
3762 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3763 //
3764 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003765 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003766 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003767 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003768 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003769 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3770 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003771 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003772 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3773 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003774 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003775 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003776 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003777 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003778
Scott Michelfdc40a02009-02-17 22:15:04 +00003779 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003780 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003781 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3782 // For floating-point precision of 18:
3783 //
3784 // TwoToFractionalPartOfX =
3785 // 0.999999982f +
3786 // (0.693148872f +
3787 // (0.240227044f +
3788 // (0.554906021e-1f +
3789 // (0.961591928e-2f +
3790 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3791 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003792 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003793 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003794 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003795 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003796 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3797 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003798 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003799 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3800 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003801 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003802 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3803 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003804 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003805 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3806 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003807 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003808 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3809 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003810 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003811 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003812 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003813 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003814
Scott Michelfdc40a02009-02-17 22:15:04 +00003815 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003816 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003817 }
3818 } else {
3819 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003820 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003821 getValue(I.getOperand(1)).getValueType(),
3822 getValue(I.getOperand(1)),
3823 getValue(I.getOperand(2)));
3824 }
3825
3826 setValue(&I, result);
3827}
3828
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003829/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3830/// we want to emit this as a call to a named external function, return the name
3831/// otherwise lower it and return null.
3832const char *
3833SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003834 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003835 switch (Intrinsic) {
3836 default:
3837 // By default, turn this into a target intrinsic node.
3838 visitTargetIntrinsic(I, Intrinsic);
3839 return 0;
3840 case Intrinsic::vastart: visitVAStart(I); return 0;
3841 case Intrinsic::vaend: visitVAEnd(I); return 0;
3842 case Intrinsic::vacopy: visitVACopy(I); return 0;
3843 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003844 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003845 getValue(I.getOperand(1))));
3846 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003847 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003848 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003849 getValue(I.getOperand(1))));
3850 return 0;
3851 case Intrinsic::setjmp:
3852 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3853 break;
3854 case Intrinsic::longjmp:
3855 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3856 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003857 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003858 SDValue Op1 = getValue(I.getOperand(1));
3859 SDValue Op2 = getValue(I.getOperand(2));
3860 SDValue Op3 = getValue(I.getOperand(3));
3861 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003862 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003863 I.getOperand(1), 0, I.getOperand(2), 0));
3864 return 0;
3865 }
Chris Lattner824b9582008-11-21 16:42:48 +00003866 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003867 SDValue Op1 = getValue(I.getOperand(1));
3868 SDValue Op2 = getValue(I.getOperand(2));
3869 SDValue Op3 = getValue(I.getOperand(3));
3870 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003871 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003872 I.getOperand(1), 0));
3873 return 0;
3874 }
Chris Lattner824b9582008-11-21 16:42:48 +00003875 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003876 SDValue Op1 = getValue(I.getOperand(1));
3877 SDValue Op2 = getValue(I.getOperand(2));
3878 SDValue Op3 = getValue(I.getOperand(3));
3879 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3880
3881 // If the source and destination are known to not be aliases, we can
3882 // lower memmove as memcpy.
3883 uint64_t Size = -1ULL;
3884 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003885 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003886 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3887 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003888 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003889 I.getOperand(1), 0, I.getOperand(2), 0));
3890 return 0;
3891 }
3892
Dale Johannesena04b7572009-02-03 23:04:43 +00003893 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003894 I.getOperand(1), 0, I.getOperand(2), 0));
3895 return 0;
3896 }
3897 case Intrinsic::dbg_stoppoint: {
Devang Patel83489bb2009-01-13 00:35:13 +00003898 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003899 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003900 if (DW && DW->ValidDebugInfo(SPI.getContext())) {
Evan Chenge3d42322009-02-25 07:04:34 +00003901 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003902 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3903 SPI.getLine(),
3904 SPI.getColumn(),
Devang Patel83489bb2009-01-13 00:35:13 +00003905 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003906 DICompileUnit CU(cast<GlobalVariable>(SPI.getContext()));
Bill Wendlingccbdc7a2009-03-09 05:04:40 +00003907 std::string Dir, FN;
3908 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
3909 CU.getFilename(FN));
Evan Chenge3d42322009-02-25 07:04:34 +00003910 unsigned idx = MF.getOrCreateDebugLocID(SrcFile,
3911 SPI.getLine(), SPI.getColumn());
Dale Johannesen66978ee2009-01-31 02:22:37 +00003912 setCurDebugLoc(DebugLoc::get(idx));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003913 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003914 return 0;
3915 }
3916 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003917 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003918 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Bill Wendling92c1e122009-02-13 02:16:35 +00003919 if (DW && DW->ValidDebugInfo(RSI.getContext())) {
3920 unsigned LabelID =
3921 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Bill Wendlingdfdacee2009-02-19 21:12:54 +00003922 if (Fast)
Bill Wendling86e6cb92009-02-17 01:04:54 +00003923 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3924 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003925 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003926
3927 return 0;
3928 }
3929 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003930 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003931 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Bill Wendling92c1e122009-02-13 02:16:35 +00003932 if (DW && DW->ValidDebugInfo(REI.getContext())) {
3933 unsigned LabelID =
3934 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
Bill Wendlingdfdacee2009-02-19 21:12:54 +00003935 if (Fast)
Bill Wendling86e6cb92009-02-17 01:04:54 +00003936 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3937 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003938 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003939
3940 return 0;
3941 }
3942 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003943 DwarfWriter *DW = DAG.getDwarfWriter();
3944 if (!DW) return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003945 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
3946 Value *SP = FSI.getSubprogram();
Devang Patelcf3a4482009-01-15 23:41:32 +00003947 if (SP && DW->ValidDebugInfo(SP)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003948 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3949 // what (most?) gdb expects.
Evan Chenge3d42322009-02-25 07:04:34 +00003950 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel83489bb2009-01-13 00:35:13 +00003951 DISubprogram Subprogram(cast<GlobalVariable>(SP));
3952 DICompileUnit CompileUnit = Subprogram.getCompileUnit();
Bill Wendlingccbdc7a2009-03-09 05:04:40 +00003953 std::string Dir, FN;
3954 unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(Dir),
3955 CompileUnit.getFilename(FN));
Bill Wendling9bc96a52009-02-03 00:55:04 +00003956
Devang Patel20dd0462008-11-06 00:30:09 +00003957 // Record the source line but does not create a label for the normal
3958 // function start. It will be emitted at asm emission time. However,
3959 // create a label if this is a beginning of inlined function.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003960 unsigned Line = Subprogram.getLineNumber();
Bill Wendling92c1e122009-02-13 02:16:35 +00003961
Bill Wendling5aa49772009-02-24 02:35:30 +00003962 if (Fast) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00003963 unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile);
3964 if (DW->getRecordSourceLineCount() != 1)
3965 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3966 getRoot(), LabelID));
3967 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003968
Evan Chenge3d42322009-02-25 07:04:34 +00003969 setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003970 }
3971
3972 return 0;
3973 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003974 case Intrinsic::dbg_declare: {
Bill Wendling5aa49772009-02-24 02:35:30 +00003975 if (Fast) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00003976 DwarfWriter *DW = DAG.getDwarfWriter();
3977 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3978 Value *Variable = DI.getVariable();
3979 if (DW && DW->ValidDebugInfo(Variable))
3980 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
3981 getValue(DI.getAddress()), getValue(Variable)));
3982 } else {
3983 // FIXME: Do something sensible here when we support debug declare.
3984 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003985 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00003986 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003987 case Intrinsic::eh_exception: {
3988 if (!CurMBB->isLandingPad()) {
3989 // FIXME: Mark exception register as live in. Hack for PR1508.
3990 unsigned Reg = TLI.getExceptionAddressRegister();
3991 if (Reg) CurMBB->addLiveIn(Reg);
3992 }
3993 // Insert the EXCEPTIONADDR instruction.
3994 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3995 SDValue Ops[1];
3996 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003997 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003998 setValue(&I, Op);
3999 DAG.setRoot(Op.getValue(1));
4000 return 0;
4001 }
4002
4003 case Intrinsic::eh_selector_i32:
4004 case Intrinsic::eh_selector_i64: {
4005 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4006 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
4007 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004008
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004009 if (MMI) {
4010 if (CurMBB->isLandingPad())
4011 AddCatchInfo(I, MMI, CurMBB);
4012 else {
4013#ifndef NDEBUG
4014 FuncInfo.CatchInfoLost.insert(&I);
4015#endif
4016 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4017 unsigned Reg = TLI.getExceptionSelectorRegister();
4018 if (Reg) CurMBB->addLiveIn(Reg);
4019 }
4020
4021 // Insert the EHSELECTION instruction.
4022 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4023 SDValue Ops[2];
4024 Ops[0] = getValue(I.getOperand(1));
4025 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004026 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004027 setValue(&I, Op);
4028 DAG.setRoot(Op.getValue(1));
4029 } else {
4030 setValue(&I, DAG.getConstant(0, VT));
4031 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004032
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004033 return 0;
4034 }
4035
4036 case Intrinsic::eh_typeid_for_i32:
4037 case Intrinsic::eh_typeid_for_i64: {
4038 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4039 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4040 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004041
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004042 if (MMI) {
4043 // Find the type id for the given typeinfo.
4044 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4045
4046 unsigned TypeID = MMI->getTypeIDFor(GV);
4047 setValue(&I, DAG.getConstant(TypeID, VT));
4048 } else {
4049 // Return something different to eh_selector.
4050 setValue(&I, DAG.getConstant(1, VT));
4051 }
4052
4053 return 0;
4054 }
4055
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004056 case Intrinsic::eh_return_i32:
4057 case Intrinsic::eh_return_i64:
4058 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004059 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004060 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004061 MVT::Other,
4062 getControlRoot(),
4063 getValue(I.getOperand(1)),
4064 getValue(I.getOperand(2))));
4065 } else {
4066 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4067 }
4068
4069 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004070 case Intrinsic::eh_unwind_init:
4071 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4072 MMI->setCallsUnwindInit(true);
4073 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004074
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004075 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004076
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004077 case Intrinsic::eh_dwarf_cfa: {
4078 MVT VT = getValue(I.getOperand(1)).getValueType();
4079 SDValue CfaArg;
4080 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004081 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004082 TLI.getPointerTy(), getValue(I.getOperand(1)));
4083 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004084 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004085 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004086
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004087 SDValue Offset = 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::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004090 TLI.getPointerTy()),
4091 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004092 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004093 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004094 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004095 TLI.getPointerTy(),
4096 DAG.getConstant(0,
4097 TLI.getPointerTy())),
4098 Offset));
4099 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004100 }
4101
Mon P Wang77cdf302008-11-10 20:54:11 +00004102 case Intrinsic::convertff:
4103 case Intrinsic::convertfsi:
4104 case Intrinsic::convertfui:
4105 case Intrinsic::convertsif:
4106 case Intrinsic::convertuif:
4107 case Intrinsic::convertss:
4108 case Intrinsic::convertsu:
4109 case Intrinsic::convertus:
4110 case Intrinsic::convertuu: {
4111 ISD::CvtCode Code = ISD::CVT_INVALID;
4112 switch (Intrinsic) {
4113 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4114 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4115 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4116 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4117 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4118 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4119 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4120 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4121 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4122 }
4123 MVT DestVT = TLI.getValueType(I.getType());
4124 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004125 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004126 DAG.getValueType(DestVT),
4127 DAG.getValueType(getValue(Op1).getValueType()),
4128 getValue(I.getOperand(2)),
4129 getValue(I.getOperand(3)),
4130 Code));
4131 return 0;
4132 }
4133
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004134 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004135 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004136 getValue(I.getOperand(1)).getValueType(),
4137 getValue(I.getOperand(1))));
4138 return 0;
4139 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004140 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004141 getValue(I.getOperand(1)).getValueType(),
4142 getValue(I.getOperand(1)),
4143 getValue(I.getOperand(2))));
4144 return 0;
4145 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004146 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004147 getValue(I.getOperand(1)).getValueType(),
4148 getValue(I.getOperand(1))));
4149 return 0;
4150 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004151 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004152 getValue(I.getOperand(1)).getValueType(),
4153 getValue(I.getOperand(1))));
4154 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004155 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004156 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004157 return 0;
4158 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004159 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004160 return 0;
4161 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004162 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004163 return 0;
4164 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004165 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004166 return 0;
4167 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004168 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004169 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004170 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004171 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004172 return 0;
4173 case Intrinsic::pcmarker: {
4174 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004175 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004176 return 0;
4177 }
4178 case Intrinsic::readcyclecounter: {
4179 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004180 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004181 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
4182 &Op, 1);
4183 setValue(&I, Tmp);
4184 DAG.setRoot(Tmp.getValue(1));
4185 return 0;
4186 }
4187 case Intrinsic::part_select: {
4188 // Currently not implemented: just abort
4189 assert(0 && "part_select intrinsic not implemented");
4190 abort();
4191 }
4192 case Intrinsic::part_set: {
4193 // Currently not implemented: just abort
4194 assert(0 && "part_set intrinsic not implemented");
4195 abort();
4196 }
4197 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004198 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004199 getValue(I.getOperand(1)).getValueType(),
4200 getValue(I.getOperand(1))));
4201 return 0;
4202 case Intrinsic::cttz: {
4203 SDValue Arg = getValue(I.getOperand(1));
4204 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004205 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004206 setValue(&I, result);
4207 return 0;
4208 }
4209 case Intrinsic::ctlz: {
4210 SDValue Arg = getValue(I.getOperand(1));
4211 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004212 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004213 setValue(&I, result);
4214 return 0;
4215 }
4216 case Intrinsic::ctpop: {
4217 SDValue Arg = getValue(I.getOperand(1));
4218 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004219 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004220 setValue(&I, result);
4221 return 0;
4222 }
4223 case Intrinsic::stacksave: {
4224 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004225 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004226 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
4227 setValue(&I, Tmp);
4228 DAG.setRoot(Tmp.getValue(1));
4229 return 0;
4230 }
4231 case Intrinsic::stackrestore: {
4232 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004233 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004234 return 0;
4235 }
Bill Wendling57344502008-11-18 11:01:33 +00004236 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004237 // Emit code into the DAG to store the stack guard onto the stack.
4238 MachineFunction &MF = DAG.getMachineFunction();
4239 MachineFrameInfo *MFI = MF.getFrameInfo();
4240 MVT PtrTy = TLI.getPointerTy();
4241
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004242 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4243 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004244
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004245 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004246 MFI->setStackProtectorIndex(FI);
4247
4248 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4249
4250 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004251 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004252 PseudoSourceValue::getFixedStack(FI),
4253 0, true);
4254 setValue(&I, Result);
4255 DAG.setRoot(Result);
4256 return 0;
4257 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004258 case Intrinsic::var_annotation:
4259 // Discard annotate attributes
4260 return 0;
4261
4262 case Intrinsic::init_trampoline: {
4263 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4264
4265 SDValue Ops[6];
4266 Ops[0] = getRoot();
4267 Ops[1] = getValue(I.getOperand(1));
4268 Ops[2] = getValue(I.getOperand(2));
4269 Ops[3] = getValue(I.getOperand(3));
4270 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4271 Ops[5] = DAG.getSrcValue(F);
4272
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004273 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004274 DAG.getNodeValueTypes(TLI.getPointerTy(),
4275 MVT::Other), 2,
4276 Ops, 6);
4277
4278 setValue(&I, Tmp);
4279 DAG.setRoot(Tmp.getValue(1));
4280 return 0;
4281 }
4282
4283 case Intrinsic::gcroot:
4284 if (GFI) {
4285 Value *Alloca = I.getOperand(1);
4286 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004287
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004288 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4289 GFI->addStackRoot(FI->getIndex(), TypeMap);
4290 }
4291 return 0;
4292
4293 case Intrinsic::gcread:
4294 case Intrinsic::gcwrite:
4295 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4296 return 0;
4297
4298 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004299 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004300 return 0;
4301 }
4302
4303 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004304 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004305 return 0;
4306 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004307
Bill Wendlingef375462008-11-21 02:38:44 +00004308 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004309 return implVisitAluOverflow(I, ISD::UADDO);
4310 case Intrinsic::sadd_with_overflow:
4311 return implVisitAluOverflow(I, ISD::SADDO);
4312 case Intrinsic::usub_with_overflow:
4313 return implVisitAluOverflow(I, ISD::USUBO);
4314 case Intrinsic::ssub_with_overflow:
4315 return implVisitAluOverflow(I, ISD::SSUBO);
4316 case Intrinsic::umul_with_overflow:
4317 return implVisitAluOverflow(I, ISD::UMULO);
4318 case Intrinsic::smul_with_overflow:
4319 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004320
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004321 case Intrinsic::prefetch: {
4322 SDValue Ops[4];
4323 Ops[0] = getRoot();
4324 Ops[1] = getValue(I.getOperand(1));
4325 Ops[2] = getValue(I.getOperand(2));
4326 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004327 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004328 return 0;
4329 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004330
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004331 case Intrinsic::memory_barrier: {
4332 SDValue Ops[6];
4333 Ops[0] = getRoot();
4334 for (int x = 1; x < 6; ++x)
4335 Ops[x] = getValue(I.getOperand(x));
4336
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004337 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 return 0;
4339 }
4340 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004341 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004342 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004343 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004344 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4345 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004346 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 getValue(I.getOperand(2)),
4348 getValue(I.getOperand(3)),
4349 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004350 setValue(&I, L);
4351 DAG.setRoot(L.getValue(1));
4352 return 0;
4353 }
4354 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004355 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004356 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004357 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004358 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004359 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004360 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004361 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004362 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004363 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004364 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004365 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004366 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004367 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004368 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004369 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004370 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004371 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004372 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004373 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004374 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004375 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004376 }
4377}
4378
4379
4380void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4381 bool IsTailCall,
4382 MachineBasicBlock *LandingPad) {
4383 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4384 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4385 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4386 unsigned BeginLabel = 0, EndLabel = 0;
4387
4388 TargetLowering::ArgListTy Args;
4389 TargetLowering::ArgListEntry Entry;
4390 Args.reserve(CS.arg_size());
4391 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4392 i != e; ++i) {
4393 SDValue ArgNode = getValue(*i);
4394 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4395
4396 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004397 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4398 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4399 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4400 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4401 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4402 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004403 Entry.Alignment = CS.getParamAlignment(attrInd);
4404 Args.push_back(Entry);
4405 }
4406
4407 if (LandingPad && MMI) {
4408 // Insert a label before the invoke call to mark the try range. This can be
4409 // used to detect deletion of the invoke via the MachineModuleInfo.
4410 BeginLabel = MMI->NextLabelID();
4411 // Both PendingLoads and PendingExports must be flushed here;
4412 // this call might not return.
4413 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004414 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4415 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004416 }
4417
4418 std::pair<SDValue,SDValue> Result =
4419 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004420 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004421 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
4422 CS.paramHasAttr(0, Attribute::InReg),
4423 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004424 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004425 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004426 if (CS.getType() != Type::VoidTy)
4427 setValue(CS.getInstruction(), Result.first);
4428 DAG.setRoot(Result.second);
4429
4430 if (LandingPad && MMI) {
4431 // Insert a label at the end of the invoke call to mark the try range. This
4432 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4433 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004434 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4435 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004436
4437 // Inform MachineModuleInfo of range.
4438 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4439 }
4440}
4441
4442
4443void SelectionDAGLowering::visitCall(CallInst &I) {
4444 const char *RenameFn = 0;
4445 if (Function *F = I.getCalledFunction()) {
4446 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004447 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4448 if (II) {
4449 if (unsigned IID = II->getIntrinsicID(F)) {
4450 RenameFn = visitIntrinsicCall(I, IID);
4451 if (!RenameFn)
4452 return;
4453 }
4454 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004455 if (unsigned IID = F->getIntrinsicID()) {
4456 RenameFn = visitIntrinsicCall(I, IID);
4457 if (!RenameFn)
4458 return;
4459 }
4460 }
4461
4462 // Check for well-known libc/libm calls. If the function is internal, it
4463 // can't be a library call.
4464 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004465 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004466 const char *NameStr = F->getNameStart();
4467 if (NameStr[0] == 'c' &&
4468 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4469 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4470 if (I.getNumOperands() == 3 && // Basic sanity checks.
4471 I.getOperand(1)->getType()->isFloatingPoint() &&
4472 I.getType() == I.getOperand(1)->getType() &&
4473 I.getType() == I.getOperand(2)->getType()) {
4474 SDValue LHS = getValue(I.getOperand(1));
4475 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004476 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004477 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004478 return;
4479 }
4480 } else if (NameStr[0] == 'f' &&
4481 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4482 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4483 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4484 if (I.getNumOperands() == 2 && // Basic sanity checks.
4485 I.getOperand(1)->getType()->isFloatingPoint() &&
4486 I.getType() == I.getOperand(1)->getType()) {
4487 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004488 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004489 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004490 return;
4491 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004492 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004493 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4494 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4495 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4496 if (I.getNumOperands() == 2 && // Basic sanity checks.
4497 I.getOperand(1)->getType()->isFloatingPoint() &&
4498 I.getType() == I.getOperand(1)->getType()) {
4499 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004500 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004501 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004502 return;
4503 }
4504 } else if (NameStr[0] == 'c' &&
4505 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4506 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4507 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4508 if (I.getNumOperands() == 2 && // Basic sanity checks.
4509 I.getOperand(1)->getType()->isFloatingPoint() &&
4510 I.getType() == I.getOperand(1)->getType()) {
4511 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004512 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004513 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004514 return;
4515 }
4516 }
4517 }
4518 } else if (isa<InlineAsm>(I.getOperand(0))) {
4519 visitInlineAsm(&I);
4520 return;
4521 }
4522
4523 SDValue Callee;
4524 if (!RenameFn)
4525 Callee = getValue(I.getOperand(0));
4526 else
Bill Wendling056292f2008-09-16 21:48:12 +00004527 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004528
4529 LowerCallTo(&I, Callee, I.isTailCall());
4530}
4531
4532
4533/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004534/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004535/// Chain/Flag as the input and updates them for the output Chain/Flag.
4536/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004537SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004538 SDValue &Chain,
4539 SDValue *Flag) const {
4540 // Assemble the legal parts into the final values.
4541 SmallVector<SDValue, 4> Values(ValueVTs.size());
4542 SmallVector<SDValue, 8> Parts;
4543 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4544 // Copy the legal parts from the registers.
4545 MVT ValueVT = ValueVTs[Value];
4546 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4547 MVT RegisterVT = RegVTs[Value];
4548
4549 Parts.resize(NumRegs);
4550 for (unsigned i = 0; i != NumRegs; ++i) {
4551 SDValue P;
4552 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004553 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004554 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004555 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004556 *Flag = P.getValue(2);
4557 }
4558 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004559
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004560 // If the source register was virtual and if we know something about it,
4561 // add an assert node.
4562 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4563 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4564 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4565 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4566 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4567 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004568
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004569 unsigned RegSize = RegisterVT.getSizeInBits();
4570 unsigned NumSignBits = LOI.NumSignBits;
4571 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004572
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004573 // FIXME: We capture more information than the dag can represent. For
4574 // now, just use the tightest assertzext/assertsext possible.
4575 bool isSExt = true;
4576 MVT FromVT(MVT::Other);
4577 if (NumSignBits == RegSize)
4578 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4579 else if (NumZeroBits >= RegSize-1)
4580 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4581 else if (NumSignBits > RegSize-8)
4582 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
4583 else if (NumZeroBits >= RegSize-9)
4584 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4585 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004586 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004587 else if (NumZeroBits >= RegSize-17)
Bill Wendling181b6272008-10-19 20:34:04 +00004588 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004589 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004590 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004591 else if (NumZeroBits >= RegSize-33)
Bill Wendling181b6272008-10-19 20:34:04 +00004592 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004593
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004594 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004595 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004596 RegisterVT, P, DAG.getValueType(FromVT));
4597
4598 }
4599 }
4600 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004601
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004602 Parts[i] = P;
4603 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004604
Scott Michelfdc40a02009-02-17 22:15:04 +00004605 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004606 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004607 Part += NumRegs;
4608 Parts.clear();
4609 }
4610
Dale Johannesen66978ee2009-01-31 02:22:37 +00004611 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004612 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4613 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004614}
4615
4616/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004617/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004618/// Chain/Flag as the input and updates them for the output Chain/Flag.
4619/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004620void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004621 SDValue &Chain, SDValue *Flag) const {
4622 // Get the list of the values's legal parts.
4623 unsigned NumRegs = Regs.size();
4624 SmallVector<SDValue, 8> Parts(NumRegs);
4625 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4626 MVT ValueVT = ValueVTs[Value];
4627 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4628 MVT RegisterVT = RegVTs[Value];
4629
Dale Johannesen66978ee2009-01-31 02:22:37 +00004630 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004631 &Parts[Part], NumParts, RegisterVT);
4632 Part += NumParts;
4633 }
4634
4635 // Copy the parts into the registers.
4636 SmallVector<SDValue, 8> Chains(NumRegs);
4637 for (unsigned i = 0; i != NumRegs; ++i) {
4638 SDValue Part;
4639 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004640 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004641 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004642 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004643 *Flag = Part.getValue(1);
4644 }
4645 Chains[i] = Part.getValue(0);
4646 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004647
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004648 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004649 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004650 // flagged to it. That is the CopyToReg nodes and the user are considered
4651 // a single scheduling unit. If we create a TokenFactor and return it as
4652 // chain, then the TokenFactor is both a predecessor (operand) of the
4653 // user as well as a successor (the TF operands are flagged to the user).
4654 // c1, f1 = CopyToReg
4655 // c2, f2 = CopyToReg
4656 // c3 = TokenFactor c1, c2
4657 // ...
4658 // = op c3, ..., f2
4659 Chain = Chains[NumRegs-1];
4660 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004661 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004662}
4663
4664/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004665/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004666/// values added into it.
4667void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
4668 std::vector<SDValue> &Ops) const {
4669 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
4670 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
4671 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4672 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4673 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004674 for (unsigned i = 0; i != NumRegs; ++i) {
4675 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004676 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004677 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004678 }
4679}
4680
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004681/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004682/// i.e. it isn't a stack pointer or some other special register, return the
4683/// register class for the register. Otherwise, return null.
4684static const TargetRegisterClass *
4685isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4686 const TargetLowering &TLI,
4687 const TargetRegisterInfo *TRI) {
4688 MVT FoundVT = MVT::Other;
4689 const TargetRegisterClass *FoundRC = 0;
4690 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4691 E = TRI->regclass_end(); RCI != E; ++RCI) {
4692 MVT ThisVT = MVT::Other;
4693
4694 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004695 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004696 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4697 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4698 I != E; ++I) {
4699 if (TLI.isTypeLegal(*I)) {
4700 // If we have already found this register in a different register class,
4701 // choose the one with the largest VT specified. For example, on
4702 // PowerPC, we favor f64 register classes over f32.
4703 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4704 ThisVT = *I;
4705 break;
4706 }
4707 }
4708 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004709
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004710 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004711
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004712 // NOTE: This isn't ideal. In particular, this might allocate the
4713 // frame pointer in functions that need it (due to them not being taken
4714 // out of allocation, because a variable sized allocation hasn't been seen
4715 // yet). This is a slight code pessimization, but should still work.
4716 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4717 E = RC->allocation_order_end(MF); I != E; ++I)
4718 if (*I == Reg) {
4719 // We found a matching register class. Keep looking at others in case
4720 // we find one with larger registers that this physreg is also in.
4721 FoundRC = RC;
4722 FoundVT = ThisVT;
4723 break;
4724 }
4725 }
4726 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004727}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004728
4729
4730namespace llvm {
4731/// AsmOperandInfo - This contains information for each constraint that we are
4732/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004733class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004734 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004735public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004736 /// CallOperand - If this is the result output operand or a clobber
4737 /// this is null, otherwise it is the incoming operand to the CallInst.
4738 /// This gets modified as the asm is processed.
4739 SDValue CallOperand;
4740
4741 /// AssignedRegs - If this is a register or register class operand, this
4742 /// contains the set of register corresponding to the operand.
4743 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004744
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004745 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4746 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4747 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004748
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004749 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4750 /// busy in OutputRegs/InputRegs.
4751 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004752 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004753 std::set<unsigned> &InputRegs,
4754 const TargetRegisterInfo &TRI) const {
4755 if (isOutReg) {
4756 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4757 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4758 }
4759 if (isInReg) {
4760 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4761 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4762 }
4763 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004764
Chris Lattner81249c92008-10-17 17:05:25 +00004765 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4766 /// corresponds to. If there is no Value* for this operand, it returns
4767 /// MVT::Other.
4768 MVT getCallOperandValMVT(const TargetLowering &TLI,
4769 const TargetData *TD) const {
4770 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004771
Chris Lattner81249c92008-10-17 17:05:25 +00004772 if (isa<BasicBlock>(CallOperandVal))
4773 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004774
Chris Lattner81249c92008-10-17 17:05:25 +00004775 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004776
Chris Lattner81249c92008-10-17 17:05:25 +00004777 // If this is an indirect operand, the operand is a pointer to the
4778 // accessed type.
4779 if (isIndirect)
4780 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004781
Chris Lattner81249c92008-10-17 17:05:25 +00004782 // If OpTy is not a single value, it may be a struct/union that we
4783 // can tile with integers.
4784 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4785 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4786 switch (BitSize) {
4787 default: break;
4788 case 1:
4789 case 8:
4790 case 16:
4791 case 32:
4792 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004793 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004794 OpTy = IntegerType::get(BitSize);
4795 break;
4796 }
4797 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004798
Chris Lattner81249c92008-10-17 17:05:25 +00004799 return TLI.getValueType(OpTy, true);
4800 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004801
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004802private:
4803 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4804 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004805 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004806 const TargetRegisterInfo &TRI) {
4807 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4808 Regs.insert(Reg);
4809 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4810 for (; *Aliases; ++Aliases)
4811 Regs.insert(*Aliases);
4812 }
4813};
4814} // end llvm namespace.
4815
4816
4817/// GetRegistersForValue - Assign registers (virtual or physical) for the
4818/// specified operand. We prefer to assign virtual registers, to allow the
4819/// register allocator handle the assignment process. However, if the asm uses
4820/// features that we can't model on machineinstrs, we have SDISel do the
4821/// allocation. This produces generally horrible, but correct, code.
4822///
4823/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004824/// Input and OutputRegs are the set of already allocated physical registers.
4825///
4826void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004827GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004828 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004829 std::set<unsigned> &InputRegs) {
4830 // Compute whether this value requires an input register, an output register,
4831 // or both.
4832 bool isOutReg = false;
4833 bool isInReg = false;
4834 switch (OpInfo.Type) {
4835 case InlineAsm::isOutput:
4836 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004837
4838 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004839 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004840 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004841 break;
4842 case InlineAsm::isInput:
4843 isInReg = true;
4844 isOutReg = false;
4845 break;
4846 case InlineAsm::isClobber:
4847 isOutReg = true;
4848 isInReg = true;
4849 break;
4850 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004851
4852
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004853 MachineFunction &MF = DAG.getMachineFunction();
4854 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004855
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004856 // If this is a constraint for a single physreg, or a constraint for a
4857 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004858 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004859 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4860 OpInfo.ConstraintVT);
4861
4862 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004863 if (OpInfo.ConstraintVT != MVT::Other) {
4864 // If this is a FP input in an integer register (or visa versa) insert a bit
4865 // cast of the input value. More generally, handle any case where the input
4866 // value disagrees with the register class we plan to stick this in.
4867 if (OpInfo.Type == InlineAsm::isInput &&
4868 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4869 // Try to convert to the first MVT that the reg class contains. If the
4870 // types are identical size, use a bitcast to convert (e.g. two differing
4871 // vector types).
4872 MVT RegVT = *PhysReg.second->vt_begin();
4873 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004874 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004875 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004876 OpInfo.ConstraintVT = RegVT;
4877 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4878 // If the input is a FP value and we want it in FP registers, do a
4879 // bitcast to the corresponding integer type. This turns an f64 value
4880 // into i64, which can be passed with two i32 values on a 32-bit
4881 // machine.
4882 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004883 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004884 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004885 OpInfo.ConstraintVT = RegVT;
4886 }
4887 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004888
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004889 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004890 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004891
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004892 MVT RegVT;
4893 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004894
4895 // If this is a constraint for a specific physical register, like {r17},
4896 // assign it now.
4897 if (PhysReg.first) {
4898 if (OpInfo.ConstraintVT == MVT::Other)
4899 ValueVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004900
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004901 // Get the actual register value type. This is important, because the user
4902 // may have asked for (e.g.) the AX register in i32 type. We need to
4903 // remember that AX is actually i16 to get the right extension.
4904 RegVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004905
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004906 // This is a explicit reference to a physical register.
4907 Regs.push_back(PhysReg.first);
4908
4909 // If this is an expanded reference, add the rest of the regs to Regs.
4910 if (NumRegs != 1) {
4911 TargetRegisterClass::iterator I = PhysReg.second->begin();
4912 for (; *I != PhysReg.first; ++I)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004913 assert(I != PhysReg.second->end() && "Didn't find reg!");
4914
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004915 // Already added the first reg.
4916 --NumRegs; ++I;
4917 for (; NumRegs; --NumRegs, ++I) {
4918 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
4919 Regs.push_back(*I);
4920 }
4921 }
4922 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4923 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4924 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4925 return;
4926 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004927
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004928 // Otherwise, if this was a reference to an LLVM register class, create vregs
4929 // for this reference.
4930 std::vector<unsigned> RegClassRegs;
4931 const TargetRegisterClass *RC = PhysReg.second;
4932 if (RC) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004933 // If this is a tied register, our regalloc doesn't know how to maintain
Chris Lattner58f15c42008-10-17 16:21:11 +00004934 // the constraint, so we have to pick a register to pin the input/output to.
4935 // If it isn't a matched constraint, go ahead and create vreg and let the
4936 // regalloc do its thing.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004937 if (!OpInfo.hasMatchingInput()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004938 RegVT = *PhysReg.second->vt_begin();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004939 if (OpInfo.ConstraintVT == MVT::Other)
4940 ValueVT = RegVT;
4941
4942 // Create the appropriate number of virtual registers.
4943 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4944 for (; NumRegs; --NumRegs)
4945 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004946
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004947 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4948 return;
4949 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004950
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004951 // Otherwise, we can't allocate it. Let the code below figure out how to
4952 // maintain these constraints.
4953 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004954
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004955 } else {
4956 // This is a reference to a register class that doesn't directly correspond
4957 // to an LLVM register class. Allocate NumRegs consecutive, available,
4958 // registers from the class.
4959 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4960 OpInfo.ConstraintVT);
4961 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004962
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004963 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4964 unsigned NumAllocated = 0;
4965 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4966 unsigned Reg = RegClassRegs[i];
4967 // See if this register is available.
4968 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4969 (isInReg && InputRegs.count(Reg))) { // Already used.
4970 // Make sure we find consecutive registers.
4971 NumAllocated = 0;
4972 continue;
4973 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004974
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004975 // Check to see if this register is allocatable (i.e. don't give out the
4976 // stack pointer).
4977 if (RC == 0) {
4978 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4979 if (!RC) { // Couldn't allocate this register.
4980 // Reset NumAllocated to make sure we return consecutive registers.
4981 NumAllocated = 0;
4982 continue;
4983 }
4984 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004985
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004986 // Okay, this register is good, we can use it.
4987 ++NumAllocated;
4988
4989 // If we allocated enough consecutive registers, succeed.
4990 if (NumAllocated == NumRegs) {
4991 unsigned RegStart = (i-NumAllocated)+1;
4992 unsigned RegEnd = i+1;
4993 // Mark all of the allocated registers used.
4994 for (unsigned i = RegStart; i != RegEnd; ++i)
4995 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004996
4997 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004998 OpInfo.ConstraintVT);
4999 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5000 return;
5001 }
5002 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005003
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005004 // Otherwise, we couldn't allocate enough registers for this.
5005}
5006
Evan Chengda43bcf2008-09-24 00:05:32 +00005007/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5008/// processed uses a memory 'm' constraint.
5009static bool
5010hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005011 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005012 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5013 InlineAsm::ConstraintInfo &CI = CInfos[i];
5014 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5015 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5016 if (CType == TargetLowering::C_Memory)
5017 return true;
5018 }
5019 }
5020
5021 return false;
5022}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005023
5024/// visitInlineAsm - Handle a call to an InlineAsm object.
5025///
5026void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5027 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5028
5029 /// ConstraintOperands - Information about all of the constraints.
5030 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005031
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005032 SDValue Chain = getRoot();
5033 SDValue Flag;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005034
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005035 std::set<unsigned> OutputRegs, InputRegs;
5036
5037 // Do a prepass over the constraints, canonicalizing them, and building up the
5038 // ConstraintOperands list.
5039 std::vector<InlineAsm::ConstraintInfo>
5040 ConstraintInfos = IA->ParseConstraints();
5041
Evan Chengda43bcf2008-09-24 00:05:32 +00005042 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005043
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005044 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5045 unsigned ResNo = 0; // ResNo - The result number of the next output.
5046 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5047 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5048 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005049
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005050 MVT OpVT = MVT::Other;
5051
5052 // Compute the value type for each operand.
5053 switch (OpInfo.Type) {
5054 case InlineAsm::isOutput:
5055 // Indirect outputs just consume an argument.
5056 if (OpInfo.isIndirect) {
5057 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5058 break;
5059 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005060
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005061 // The return value of the call is this value. As such, there is no
5062 // corresponding argument.
5063 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5064 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5065 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5066 } else {
5067 assert(ResNo == 0 && "Asm only has one result!");
5068 OpVT = TLI.getValueType(CS.getType());
5069 }
5070 ++ResNo;
5071 break;
5072 case InlineAsm::isInput:
5073 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5074 break;
5075 case InlineAsm::isClobber:
5076 // Nothing to do.
5077 break;
5078 }
5079
5080 // If this is an input or an indirect output, process the call argument.
5081 // BasicBlocks are labels, currently appearing only in asm's.
5082 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005083 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005084 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005085 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005086 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005087 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005088
Chris Lattner81249c92008-10-17 17:05:25 +00005089 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005090 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005091
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005092 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005093 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005094
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005095 // Second pass over the constraints: compute which constraint option to use
5096 // and assign registers to constraints that want a specific physreg.
5097 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5098 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005099
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005100 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005101 // matching input. If their types mismatch, e.g. one is an integer, the
5102 // other is floating point, or their sizes are different, flag it as an
5103 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005104 if (OpInfo.hasMatchingInput()) {
5105 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5106 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005107 if ((OpInfo.ConstraintVT.isInteger() !=
5108 Input.ConstraintVT.isInteger()) ||
5109 (OpInfo.ConstraintVT.getSizeInBits() !=
5110 Input.ConstraintVT.getSizeInBits())) {
5111 cerr << "Unsupported asm: input constraint with a matching output "
5112 << "constraint of incompatible type!\n";
5113 exit(1);
5114 }
5115 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005116 }
5117 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005118
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005119 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005120 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005121
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005122 // If this is a memory input, and if the operand is not indirect, do what we
5123 // need to to provide an address for the memory input.
5124 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5125 !OpInfo.isIndirect) {
5126 assert(OpInfo.Type == InlineAsm::isInput &&
5127 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005128
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005129 // Memory operands really want the address of the value. If we don't have
5130 // an indirect input, put it in the constpool if we can, otherwise spill
5131 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005132
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005133 // If the operand is a float, integer, or vector constant, spill to a
5134 // constant pool entry to get its address.
5135 Value *OpVal = OpInfo.CallOperandVal;
5136 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5137 isa<ConstantVector>(OpVal)) {
5138 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5139 TLI.getPointerTy());
5140 } else {
5141 // Otherwise, create a stack slot and emit a store to it before the
5142 // asm.
5143 const Type *Ty = OpVal->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005144 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005145 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5146 MachineFunction &MF = DAG.getMachineFunction();
5147 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5148 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005149 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005150 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005151 OpInfo.CallOperand = StackSlot;
5152 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005153
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005154 // There is no longer a Value* corresponding to this operand.
5155 OpInfo.CallOperandVal = 0;
5156 // It is now an indirect operand.
5157 OpInfo.isIndirect = true;
5158 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005159
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005160 // If this constraint is for a specific register, allocate it before
5161 // anything else.
5162 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005163 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005164 }
5165 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005166
5167
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005168 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005169 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005170 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5171 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005172
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005173 // C_Register operands have already been allocated, Other/Memory don't need
5174 // to be.
5175 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005176 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005177 }
5178
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005179 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5180 std::vector<SDValue> AsmNodeOperands;
5181 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5182 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005183 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005184
5185
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005186 // Loop over all of the inputs, copying the operand values into the
5187 // appropriate registers and processing the output regs.
5188 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005189
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005190 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5191 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005192
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005193 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5194 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5195
5196 switch (OpInfo.Type) {
5197 case InlineAsm::isOutput: {
5198 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5199 OpInfo.ConstraintType != TargetLowering::C_Register) {
5200 // Memory output, or 'other' output (e.g. 'X' constraint).
5201 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5202
5203 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005204 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5205 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005206 TLI.getPointerTy()));
5207 AsmNodeOperands.push_back(OpInfo.CallOperand);
5208 break;
5209 }
5210
5211 // Otherwise, this is a register or register class output.
5212
5213 // Copy the output from the appropriate register. Find a register that
5214 // we can use.
5215 if (OpInfo.AssignedRegs.Regs.empty()) {
5216 cerr << "Couldn't allocate output reg for constraint '"
5217 << OpInfo.ConstraintCode << "'!\n";
5218 exit(1);
5219 }
5220
5221 // If this is an indirect operand, store through the pointer after the
5222 // asm.
5223 if (OpInfo.isIndirect) {
5224 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5225 OpInfo.CallOperandVal));
5226 } else {
5227 // This is the result value of the call.
5228 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5229 // Concatenate this output onto the outputs list.
5230 RetValRegs.append(OpInfo.AssignedRegs);
5231 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005232
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005233 // Add information to the INLINEASM node to know that this register is
5234 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005235 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5236 6 /* EARLYCLOBBER REGDEF */ :
5237 2 /* REGDEF */ ,
5238 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005239 break;
5240 }
5241 case InlineAsm::isInput: {
5242 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005243
Chris Lattner6bdcda32008-10-17 16:47:46 +00005244 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005245 // If this is required to match an output register we have already set,
5246 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005247 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005248
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005249 // Scan until we find the definition we already emitted of this operand.
5250 // When we find it, create a RegsForValue operand.
5251 unsigned CurOp = 2; // The first operand.
5252 for (; OperandNo; --OperandNo) {
5253 // Advance to the next operand.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005254 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005255 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005256 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
Dale Johannesen913d3df2008-09-12 17:49:03 +00005257 (NumOps & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
Dale Johannesen86b49f82008-09-24 01:07:17 +00005258 (NumOps & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005259 "Skipped past definitions?");
5260 CurOp += (NumOps>>3)+1;
5261 }
5262
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005263 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005264 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005265 if ((NumOps & 7) == 2 /*REGDEF*/
Dale Johannesen913d3df2008-09-12 17:49:03 +00005266 || (NumOps & 7) == 6 /* EARLYCLOBBER REGDEF */) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005267 // Add NumOps>>3 registers to MatchedRegs.
5268 RegsForValue MatchedRegs;
5269 MatchedRegs.TLI = &TLI;
5270 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
5271 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
5272 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
5273 unsigned Reg =
5274 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
5275 MatchedRegs.Regs.push_back(Reg);
5276 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005277
5278 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005279 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5280 Chain, &Flag);
Dale Johannesen86b49f82008-09-24 01:07:17 +00005281 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005282 break;
5283 } else {
Dale Johannesen86b49f82008-09-24 01:07:17 +00005284 assert(((NumOps & 7) == 4) && "Unknown matching constraint!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005285 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005286 // Add information to the INLINEASM node to know about this input.
Dale Johannesen91aac102008-09-17 21:13:11 +00005287 AsmNodeOperands.push_back(DAG.getTargetConstant(NumOps,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005288 TLI.getPointerTy()));
5289 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5290 break;
5291 }
5292 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005293
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005294 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005295 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005296 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005297
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005298 std::vector<SDValue> Ops;
5299 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005300 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005301 if (Ops.empty()) {
5302 cerr << "Invalid operand for inline asm constraint '"
5303 << OpInfo.ConstraintCode << "'!\n";
5304 exit(1);
5305 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005306
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005307 // Add information to the INLINEASM node to know about this input.
5308 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005309 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005310 TLI.getPointerTy()));
5311 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5312 break;
5313 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5314 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5315 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5316 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005317
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005318 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005319 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5320 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005321 TLI.getPointerTy()));
5322 AsmNodeOperands.push_back(InOperandVal);
5323 break;
5324 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005325
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005326 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5327 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5328 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005329 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005330 "Don't know how to handle indirect register inputs yet!");
5331
5332 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005333 if (OpInfo.AssignedRegs.Regs.empty()) {
5334 cerr << "Couldn't allocate output reg for constraint '"
5335 << OpInfo.ConstraintCode << "'!\n";
5336 exit(1);
5337 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005338
Dale Johannesen66978ee2009-01-31 02:22:37 +00005339 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5340 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005341
Dale Johannesen86b49f82008-09-24 01:07:17 +00005342 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/,
5343 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005344 break;
5345 }
5346 case InlineAsm::isClobber: {
5347 // Add the clobbered value to the operand list, so that the register
5348 // allocator is aware that the physreg got clobbered.
5349 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005350 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
5351 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005352 break;
5353 }
5354 }
5355 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005356
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005357 // Finish up input operands.
5358 AsmNodeOperands[0] = Chain;
5359 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005360
Dale Johannesen66978ee2009-01-31 02:22:37 +00005361 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005362 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
5363 &AsmNodeOperands[0], AsmNodeOperands.size());
5364 Flag = Chain.getValue(1);
5365
5366 // If this asm returns a register value, copy the result from that register
5367 // and set it as the value of the call.
5368 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005369 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005370 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005371
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005372 // FIXME: Why don't we do this for inline asms with MRVs?
5373 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5374 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005375
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005376 // If any of the results of the inline asm is a vector, it may have the
5377 // wrong width/num elts. This can happen for register classes that can
5378 // contain multiple different value types. The preg or vreg allocated may
5379 // not have the same VT as was expected. Convert it to the right type
5380 // with bit_convert.
5381 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005382 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005383 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005384
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005385 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005386 ResultType.isInteger() && Val.getValueType().isInteger()) {
5387 // If a result value was tied to an input value, the computed result may
5388 // have a wider width than the expected result. Extract the relevant
5389 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005390 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005391 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005392
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005393 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005394 }
Dan Gohman95915732008-10-18 01:03:45 +00005395
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005396 setValue(CS.getInstruction(), Val);
5397 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005398
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005399 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005400
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005401 // Process indirect outputs, first output all of the flagged copies out of
5402 // physregs.
5403 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5404 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5405 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005406 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5407 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005408 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
5409 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005410
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005411 // Emit the non-flagged stores from the physregs.
5412 SmallVector<SDValue, 8> OutChains;
5413 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005414 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005415 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005416 getValue(StoresToEmit[i].second),
5417 StoresToEmit[i].second, 0));
5418 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005419 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005420 &OutChains[0], OutChains.size());
5421 DAG.setRoot(Chain);
5422}
5423
5424
5425void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5426 SDValue Src = getValue(I.getOperand(0));
5427
5428 MVT IntPtr = TLI.getPointerTy();
5429
5430 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005431 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005432 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005433 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005434
5435 // Scale the source by the type size.
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005436 uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005437 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005438 Src, DAG.getIntPtrConstant(ElementSize));
5439
5440 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}