blob: e70c1148fc7ab17ff48e7003bb44f70c0f777569 [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()));
338 unsigned SrcFile = DW->RecordSource(CU.getDirectory(),
339 CU.getFilename());
340 unsigned idx = MF->getOrCreateDebugLocID(SrcFile,
341 SPI->getLine(),
342 SPI->getColumn());
343 DL = DebugLoc::get(idx);
344 }
345
346 break;
347 }
348 case Intrinsic::dbg_func_start: {
349 DwarfWriter *DW = DAG.getDwarfWriter();
350 if (DW) {
351 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
352 Value *SP = FSI->getSubprogram();
353
354 if (DW->ValidDebugInfo(SP)) {
355 DISubprogram Subprogram(cast<GlobalVariable>(SP));
356 DICompileUnit CU(Subprogram.getCompileUnit());
357 unsigned SrcFile = DW->RecordSource(CU.getDirectory(),
358 CU.getFilename());
359 unsigned Line = Subprogram.getLineNumber();
360 DL = DebugLoc::get(MF->getOrCreateDebugLocID(SrcFile, Line, 0));
361 }
362 }
363
364 break;
365 }
366 }
367 }
368 }
369
370 PN = dyn_cast<PHINode>(I);
371 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000372
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000373 unsigned PHIReg = ValueMap[PN];
374 assert(PHIReg && "PHI node does not have an assigned virtual register!");
375
376 SmallVector<MVT, 4> ValueVTs;
377 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
378 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
379 MVT VT = ValueVTs[vti];
380 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000381 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000382 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000383 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000384 PHIReg += NumRegisters;
385 }
386 }
387 }
388}
389
390unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
391 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
392}
393
394/// CreateRegForValue - Allocate the appropriate number of virtual registers of
395/// the correctly promoted or expanded types. Assign these registers
396/// consecutive vreg numbers and return the first assigned number.
397///
398/// In the case that the given value has struct or array type, this function
399/// will assign registers for each member or element.
400///
401unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
402 SmallVector<MVT, 4> ValueVTs;
403 ComputeValueVTs(TLI, V->getType(), ValueVTs);
404
405 unsigned FirstReg = 0;
406 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
407 MVT ValueVT = ValueVTs[Value];
408 MVT RegisterVT = TLI.getRegisterType(ValueVT);
409
410 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
411 for (unsigned i = 0; i != NumRegs; ++i) {
412 unsigned R = MakeReg(RegisterVT);
413 if (!FirstReg) FirstReg = R;
414 }
415 }
416 return FirstReg;
417}
418
419/// getCopyFromParts - Create a value that contains the specified legal parts
420/// combined into the value they represent. If the parts combine to a type
421/// larger then ValueVT then AssertOp can be used to specify whether the extra
422/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
423/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000424static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
425 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000426 unsigned NumParts, MVT PartVT, MVT ValueVT,
427 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000428 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000429 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000430 SDValue Val = Parts[0];
431
432 if (NumParts > 1) {
433 // Assemble the value from multiple parts.
434 if (!ValueVT.isVector()) {
435 unsigned PartBits = PartVT.getSizeInBits();
436 unsigned ValueBits = ValueVT.getSizeInBits();
437
438 // Assemble the power of 2 part.
439 unsigned RoundParts = NumParts & (NumParts - 1) ?
440 1 << Log2_32(NumParts) : NumParts;
441 unsigned RoundBits = PartBits * RoundParts;
442 MVT RoundVT = RoundBits == ValueBits ?
443 ValueVT : MVT::getIntegerVT(RoundBits);
444 SDValue Lo, Hi;
445
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000446 MVT HalfVT = ValueVT.isInteger() ?
447 MVT::getIntegerVT(RoundBits/2) :
448 MVT::getFloatingPointVT(RoundBits/2);
449
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000450 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000451 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
452 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000453 PartVT, HalfVT);
454 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000455 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
456 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000457 }
458 if (TLI.isBigEndian())
459 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000460 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000461
462 if (RoundParts < NumParts) {
463 // Assemble the trailing non-power-of-2 part.
464 unsigned OddParts = NumParts - RoundParts;
465 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000466 Hi = getCopyFromParts(DAG, dl,
467 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000468
469 // Combine the round and odd parts.
470 Lo = Val;
471 if (TLI.isBigEndian())
472 std::swap(Lo, Hi);
473 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000474 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
475 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000476 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000477 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000478 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
479 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000480 }
481 } else {
482 // Handle a multi-element vector.
483 MVT IntermediateVT, RegisterVT;
484 unsigned NumIntermediates;
485 unsigned NumRegs =
486 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
487 RegisterVT);
488 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
489 NumParts = NumRegs; // Silence a compiler warning.
490 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
491 assert(RegisterVT == Parts[0].getValueType() &&
492 "Part type doesn't match part!");
493
494 // Assemble the parts into intermediate operands.
495 SmallVector<SDValue, 8> Ops(NumIntermediates);
496 if (NumIntermediates == NumParts) {
497 // If the register was not expanded, truncate or copy the value,
498 // as appropriate.
499 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000500 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000501 PartVT, IntermediateVT);
502 } else if (NumParts > 0) {
503 // If the intermediate type was expanded, build the intermediate operands
504 // from the parts.
505 assert(NumParts % NumIntermediates == 0 &&
506 "Must expand into a divisible number of parts!");
507 unsigned Factor = NumParts / NumIntermediates;
508 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000509 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000510 PartVT, IntermediateVT);
511 }
512
513 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
514 // operands.
515 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000516 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000517 ValueVT, &Ops[0], NumIntermediates);
518 }
519 }
520
521 // There is now one part, held in Val. Correct it to match ValueVT.
522 PartVT = Val.getValueType();
523
524 if (PartVT == ValueVT)
525 return Val;
526
527 if (PartVT.isVector()) {
528 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000529 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000530 }
531
532 if (ValueVT.isVector()) {
533 assert(ValueVT.getVectorElementType() == PartVT &&
534 ValueVT.getVectorNumElements() == 1 &&
535 "Only trivial scalar-to-vector conversions should get here!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000536 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000537 }
538
539 if (PartVT.isInteger() &&
540 ValueVT.isInteger()) {
541 if (ValueVT.bitsLT(PartVT)) {
542 // For a truncate, see if we have any information to
543 // indicate whether the truncated bits will always be
544 // zero or sign-extension.
545 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000546 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000547 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000548 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000549 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000550 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000551 }
552 }
553
554 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
555 if (ValueVT.bitsLT(Val.getValueType()))
556 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000557 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000558 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000559 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000560 }
561
562 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000563 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000564
565 assert(0 && "Unknown mismatch!");
566 return SDValue();
567}
568
569/// getCopyToParts - Create a series of nodes that contain the specified value
570/// split into legal parts. If the parts contain more bits than Val, then, for
571/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000572static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Chris Lattner01426e12008-10-21 00:45:36 +0000573 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000574 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000575 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000576 MVT PtrVT = TLI.getPointerTy();
577 MVT ValueVT = Val.getValueType();
578 unsigned PartBits = PartVT.getSizeInBits();
579 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
580
581 if (!NumParts)
582 return;
583
584 if (!ValueVT.isVector()) {
585 if (PartVT == ValueVT) {
586 assert(NumParts == 1 && "No-op copy with multiple parts!");
587 Parts[0] = Val;
588 return;
589 }
590
591 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
592 // If the parts cover more bits than the value has, promote the value.
593 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
594 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000595 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000596 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
597 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000598 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000599 } else {
600 assert(0 && "Unknown mismatch!");
601 }
602 } else if (PartBits == ValueVT.getSizeInBits()) {
603 // Different types of the same size.
604 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000605 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000606 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
607 // If the parts cover less bits than value has, truncate the value.
608 if (PartVT.isInteger() && ValueVT.isInteger()) {
609 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000610 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000611 } else {
612 assert(0 && "Unknown mismatch!");
613 }
614 }
615
616 // The value may have changed - recompute ValueVT.
617 ValueVT = Val.getValueType();
618 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
619 "Failed to tile the value with PartVT!");
620
621 if (NumParts == 1) {
622 assert(PartVT == ValueVT && "Type conversion failed!");
623 Parts[0] = Val;
624 return;
625 }
626
627 // Expand the value into multiple parts.
628 if (NumParts & (NumParts - 1)) {
629 // The number of parts is not a power of 2. Split off and copy the tail.
630 assert(PartVT.isInteger() && ValueVT.isInteger() &&
631 "Do not know what to expand to!");
632 unsigned RoundParts = 1 << Log2_32(NumParts);
633 unsigned RoundBits = RoundParts * PartBits;
634 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000635 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000636 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000637 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000638 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000639 if (TLI.isBigEndian())
640 // The odd parts were reversed by getCopyToParts - unreverse them.
641 std::reverse(Parts + RoundParts, Parts + NumParts);
642 NumParts = RoundParts;
643 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000644 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000645 }
646
647 // The number of parts is a power of 2. Repeatedly bisect the value using
648 // EXTRACT_ELEMENT.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000649 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000650 MVT::getIntegerVT(ValueVT.getSizeInBits()),
651 Val);
652 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
653 for (unsigned i = 0; i < NumParts; i += StepSize) {
654 unsigned ThisBits = StepSize * PartBits / 2;
655 MVT ThisVT = MVT::getIntegerVT (ThisBits);
656 SDValue &Part0 = Parts[i];
657 SDValue &Part1 = Parts[i+StepSize/2];
658
Dale Johannesen66978ee2009-01-31 02:22:37 +0000659 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000660 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000661 DAG.getConstant(1, PtrVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000662 Part0 = 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(0, PtrVT));
665
666 if (ThisBits == PartBits && ThisVT != PartVT) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000667 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000668 PartVT, Part0);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000669 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000670 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000671 }
672 }
673 }
674
675 if (TLI.isBigEndian())
676 std::reverse(Parts, Parts + NumParts);
677
678 return;
679 }
680
681 // Vector ValueVT.
682 if (NumParts == 1) {
683 if (PartVT != ValueVT) {
684 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000685 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000686 } else {
687 assert(ValueVT.getVectorElementType() == PartVT &&
688 ValueVT.getVectorNumElements() == 1 &&
689 "Only trivial vector-to-scalar conversions should get here!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000690 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000691 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000692 DAG.getConstant(0, PtrVT));
693 }
694 }
695
696 Parts[0] = Val;
697 return;
698 }
699
700 // Handle a multi-element vector.
701 MVT IntermediateVT, RegisterVT;
702 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000703 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000704 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
705 RegisterVT);
706 unsigned NumElements = ValueVT.getVectorNumElements();
707
708 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
709 NumParts = NumRegs; // Silence a compiler warning.
710 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
711
712 // Split the vector into intermediate operands.
713 SmallVector<SDValue, 8> Ops(NumIntermediates);
714 for (unsigned i = 0; i != NumIntermediates; ++i)
715 if (IntermediateVT.isVector())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000716 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000717 IntermediateVT, Val,
718 DAG.getConstant(i * (NumElements / NumIntermediates),
719 PtrVT));
720 else
Dale Johannesen66978ee2009-01-31 02:22:37 +0000721 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000722 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000723 DAG.getConstant(i, PtrVT));
724
725 // Split the intermediate operands into legal parts.
726 if (NumParts == NumIntermediates) {
727 // If the register was not expanded, promote or copy the value,
728 // as appropriate.
729 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000730 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000731 } else if (NumParts > 0) {
732 // If the intermediate type was expanded, split each the value into
733 // legal parts.
734 assert(NumParts % NumIntermediates == 0 &&
735 "Must expand into a divisible number of parts!");
736 unsigned Factor = NumParts / NumIntermediates;
737 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000738 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000739 }
740}
741
742
743void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
744 AA = &aa;
745 GFI = gfi;
746 TD = DAG.getTarget().getTargetData();
747}
748
749/// clear - Clear out the curret SelectionDAG and the associated
750/// state and prepare this SelectionDAGLowering object to be used
751/// for a new block. This doesn't clear out information about
752/// additional blocks that are needed to complete switch lowering
753/// or PHI node updating; that information is cleared out as it is
754/// consumed.
755void SelectionDAGLowering::clear() {
756 NodeMap.clear();
757 PendingLoads.clear();
758 PendingExports.clear();
759 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000760 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000761}
762
763/// getRoot - Return the current virtual root of the Selection DAG,
764/// flushing any PendingLoad items. This must be done before emitting
765/// a store or any other node that may need to be ordered after any
766/// prior load instructions.
767///
768SDValue SelectionDAGLowering::getRoot() {
769 if (PendingLoads.empty())
770 return DAG.getRoot();
771
772 if (PendingLoads.size() == 1) {
773 SDValue Root = PendingLoads[0];
774 DAG.setRoot(Root);
775 PendingLoads.clear();
776 return Root;
777 }
778
779 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000780 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000781 &PendingLoads[0], PendingLoads.size());
782 PendingLoads.clear();
783 DAG.setRoot(Root);
784 return Root;
785}
786
787/// getControlRoot - Similar to getRoot, but instead of flushing all the
788/// PendingLoad items, flush all the PendingExports items. It is necessary
789/// to do this before emitting a terminator instruction.
790///
791SDValue SelectionDAGLowering::getControlRoot() {
792 SDValue Root = DAG.getRoot();
793
794 if (PendingExports.empty())
795 return Root;
796
797 // Turn all of the CopyToReg chains into one factored node.
798 if (Root.getOpcode() != ISD::EntryToken) {
799 unsigned i = 0, e = PendingExports.size();
800 for (; i != e; ++i) {
801 assert(PendingExports[i].getNode()->getNumOperands() > 1);
802 if (PendingExports[i].getNode()->getOperand(0) == Root)
803 break; // Don't add the root if we already indirectly depend on it.
804 }
805
806 if (i == e)
807 PendingExports.push_back(Root);
808 }
809
Dale Johannesen66978ee2009-01-31 02:22:37 +0000810 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000811 &PendingExports[0],
812 PendingExports.size());
813 PendingExports.clear();
814 DAG.setRoot(Root);
815 return Root;
816}
817
818void SelectionDAGLowering::visit(Instruction &I) {
819 visit(I.getOpcode(), I);
820}
821
822void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
823 // Note: this doesn't use InstVisitor, because it has to work with
824 // ConstantExpr's in addition to instructions.
825 switch (Opcode) {
826 default: assert(0 && "Unknown instruction type encountered!");
827 abort();
828 // Build the switch statement using the Instruction.def file.
829#define HANDLE_INST(NUM, OPCODE, CLASS) \
830 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
831#include "llvm/Instruction.def"
832 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000833}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000834
835void SelectionDAGLowering::visitAdd(User &I) {
836 if (I.getType()->isFPOrFPVector())
837 visitBinary(I, ISD::FADD);
838 else
839 visitBinary(I, ISD::ADD);
840}
841
842void SelectionDAGLowering::visitMul(User &I) {
843 if (I.getType()->isFPOrFPVector())
844 visitBinary(I, ISD::FMUL);
845 else
846 visitBinary(I, ISD::MUL);
847}
848
849SDValue SelectionDAGLowering::getValue(const Value *V) {
850 SDValue &N = NodeMap[V];
851 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000852
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000853 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
854 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000855
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000856 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000857 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000858
859 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
860 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000861
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000862 if (isa<ConstantPointerNull>(C))
863 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000864
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000865 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000866 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000867
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000868 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
869 !V->getType()->isAggregateType())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000870 return N = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000871
872 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
873 visit(CE->getOpcode(), *CE);
874 SDValue N1 = NodeMap[V];
875 assert(N1.getNode() && "visit didn't populate the ValueMap!");
876 return N1;
877 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000878
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000879 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
880 SmallVector<SDValue, 4> Constants;
881 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
882 OI != OE; ++OI) {
883 SDNode *Val = getValue(*OI).getNode();
884 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
885 Constants.push_back(SDValue(Val, i));
886 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000887 return DAG.getMergeValues(&Constants[0], Constants.size(),
888 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000889 }
890
891 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
892 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
893 "Unknown struct or array constant!");
894
895 SmallVector<MVT, 4> ValueVTs;
896 ComputeValueVTs(TLI, C->getType(), ValueVTs);
897 unsigned NumElts = ValueVTs.size();
898 if (NumElts == 0)
899 return SDValue(); // empty struct
900 SmallVector<SDValue, 4> Constants(NumElts);
901 for (unsigned i = 0; i != NumElts; ++i) {
902 MVT EltVT = ValueVTs[i];
903 if (isa<UndefValue>(C))
Dale Johannesen66978ee2009-01-31 02:22:37 +0000904 Constants[i] = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000905 else if (EltVT.isFloatingPoint())
906 Constants[i] = DAG.getConstantFP(0, EltVT);
907 else
908 Constants[i] = DAG.getConstant(0, EltVT);
909 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000910 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000911 }
912
913 const VectorType *VecTy = cast<VectorType>(V->getType());
914 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000915
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000916 // Now that we know the number and type of the elements, get that number of
917 // elements into the Ops array based on what kind of constant it is.
918 SmallVector<SDValue, 16> Ops;
919 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
920 for (unsigned i = 0; i != NumElements; ++i)
921 Ops.push_back(getValue(CP->getOperand(i)));
922 } else {
923 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
924 "Unknown vector constant!");
925 MVT EltVT = TLI.getValueType(VecTy->getElementType());
926
927 SDValue Op;
928 if (isa<UndefValue>(C))
Dale Johannesen66978ee2009-01-31 02:22:37 +0000929 Op = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000930 else if (EltVT.isFloatingPoint())
931 Op = DAG.getConstantFP(0, EltVT);
932 else
933 Op = DAG.getConstant(0, EltVT);
934 Ops.assign(NumElements, Op);
935 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000936
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000937 // Create a BUILD_VECTOR node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000938 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000939 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000940 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000941
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000942 // If this is a static alloca, generate it as the frameindex instead of
943 // computation.
944 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
945 DenseMap<const AllocaInst*, int>::iterator SI =
946 FuncInfo.StaticAllocaMap.find(AI);
947 if (SI != FuncInfo.StaticAllocaMap.end())
948 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
949 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000950
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000951 unsigned InReg = FuncInfo.ValueMap[V];
952 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000953
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000954 RegsForValue RFV(TLI, InReg, V->getType());
955 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000956 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000957}
958
959
960void SelectionDAGLowering::visitRet(ReturnInst &I) {
961 if (I.getNumOperands() == 0) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000962 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000963 MVT::Other, getControlRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000964 return;
965 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000966
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000967 SmallVector<SDValue, 8> NewValues;
968 NewValues.push_back(getControlRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000969 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000970 SmallVector<MVT, 4> ValueVTs;
971 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000972 unsigned NumValues = ValueVTs.size();
973 if (NumValues == 0) continue;
974
975 SDValue RetOp = getValue(I.getOperand(i));
976 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000977 MVT VT = ValueVTs[j];
978
979 // FIXME: C calling convention requires the return type to be promoted to
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000980 // at least 32-bit. But this is not necessary for non-C calling
981 // conventions.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000982 if (VT.isInteger()) {
983 MVT MinVT = TLI.getRegisterType(MVT::i32);
984 if (VT.bitsLT(MinVT))
985 VT = MinVT;
986 }
987
988 unsigned NumParts = TLI.getNumRegisters(VT);
989 MVT PartVT = TLI.getRegisterType(VT);
990 SmallVector<SDValue, 4> Parts(NumParts);
991 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000992
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000993 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000994 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000995 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000996 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000997 ExtendKind = ISD::ZERO_EXTEND;
998
Dale Johannesen66978ee2009-01-31 02:22:37 +0000999 getCopyToParts(DAG, getCurDebugLoc(),
1000 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001001 &Parts[0], NumParts, PartVT, ExtendKind);
1002
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001003 // 'inreg' on function refers to return value
1004 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +00001005 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001006 Flags.setInReg();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001007 for (unsigned i = 0; i < NumParts; ++i) {
1008 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001009 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001010 }
1011 }
1012 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00001013 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001014 &NewValues[0], NewValues.size()));
1015}
1016
1017/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1018/// the current basic block, add it to ValueMap now so that we'll get a
1019/// CopyTo/FromReg.
1020void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1021 // No need to export constants.
1022 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001023
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001024 // Already exported?
1025 if (FuncInfo.isExportedInst(V)) return;
1026
1027 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1028 CopyValueToVirtualRegister(V, Reg);
1029}
1030
1031bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1032 const BasicBlock *FromBB) {
1033 // The operands of the setcc have to be in this block. We don't know
1034 // how to export them from some other block.
1035 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1036 // Can export from current BB.
1037 if (VI->getParent() == FromBB)
1038 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001039
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001040 // Is already exported, noop.
1041 return FuncInfo.isExportedInst(V);
1042 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001043
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001044 // If this is an argument, we can export it if the BB is the entry block or
1045 // if it is already exported.
1046 if (isa<Argument>(V)) {
1047 if (FromBB == &FromBB->getParent()->getEntryBlock())
1048 return true;
1049
1050 // Otherwise, can only export this if it is already exported.
1051 return FuncInfo.isExportedInst(V);
1052 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001053
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001054 // Otherwise, constants can always be exported.
1055 return true;
1056}
1057
1058static bool InBlock(const Value *V, const BasicBlock *BB) {
1059 if (const Instruction *I = dyn_cast<Instruction>(V))
1060 return I->getParent() == BB;
1061 return true;
1062}
1063
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001064/// getFCmpCondCode - Return the ISD condition code corresponding to
1065/// the given LLVM IR floating-point condition code. This includes
1066/// consideration of global floating-point math flags.
1067///
1068static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1069 ISD::CondCode FPC, FOC;
1070 switch (Pred) {
1071 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1072 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1073 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1074 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1075 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1076 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1077 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1078 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1079 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1080 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1081 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1082 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1083 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1084 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1085 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1086 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1087 default:
1088 assert(0 && "Invalid FCmp predicate opcode!");
1089 FOC = FPC = ISD::SETFALSE;
1090 break;
1091 }
1092 if (FiniteOnlyFPMath())
1093 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001094 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001095 return FPC;
1096}
1097
1098/// getICmpCondCode - Return the ISD condition code corresponding to
1099/// the given LLVM IR integer condition code.
1100///
1101static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1102 switch (Pred) {
1103 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1104 case ICmpInst::ICMP_NE: return ISD::SETNE;
1105 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1106 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1107 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1108 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1109 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1110 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1111 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1112 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1113 default:
1114 assert(0 && "Invalid ICmp predicate opcode!");
1115 return ISD::SETNE;
1116 }
1117}
1118
Dan Gohmanc2277342008-10-17 21:16:08 +00001119/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1120/// This function emits a branch and is used at the leaves of an OR or an
1121/// AND operator tree.
1122///
1123void
1124SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1125 MachineBasicBlock *TBB,
1126 MachineBasicBlock *FBB,
1127 MachineBasicBlock *CurBB) {
1128 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001129
Dan Gohmanc2277342008-10-17 21:16:08 +00001130 // If the leaf of the tree is a comparison, merge the condition into
1131 // the caseblock.
1132 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1133 // The operands of the cmp have to be in this block. We don't know
1134 // how to export them from some other block. If this is the first block
1135 // of the sequence, no exporting is needed.
1136 if (CurBB == CurMBB ||
1137 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1138 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001139 ISD::CondCode Condition;
1140 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001141 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001142 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001143 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001144 } else {
1145 Condition = ISD::SETEQ; // silence warning.
1146 assert(0 && "Unknown compare instruction");
1147 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001148
1149 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001150 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1151 SwitchCases.push_back(CB);
1152 return;
1153 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001154 }
1155
1156 // Create a CaseBlock record representing this branch.
1157 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1158 NULL, TBB, FBB, CurBB);
1159 SwitchCases.push_back(CB);
1160}
1161
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001162/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001163void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1164 MachineBasicBlock *TBB,
1165 MachineBasicBlock *FBB,
1166 MachineBasicBlock *CurBB,
1167 unsigned Opc) {
1168 // If this node is not part of the or/and tree, emit it as a branch.
1169 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001170 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001171 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1172 BOp->getParent() != CurBB->getBasicBlock() ||
1173 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1174 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1175 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001176 return;
1177 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001178
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001179 // Create TmpBB after CurBB.
1180 MachineFunction::iterator BBI = CurBB;
1181 MachineFunction &MF = DAG.getMachineFunction();
1182 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1183 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001184
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001185 if (Opc == Instruction::Or) {
1186 // Codegen X | Y as:
1187 // jmp_if_X TBB
1188 // jmp TmpBB
1189 // TmpBB:
1190 // jmp_if_Y TBB
1191 // jmp FBB
1192 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001193
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001194 // Emit the LHS condition.
1195 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001196
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001197 // Emit the RHS condition into TmpBB.
1198 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1199 } else {
1200 assert(Opc == Instruction::And && "Unknown merge op!");
1201 // Codegen X & Y as:
1202 // jmp_if_X TmpBB
1203 // jmp FBB
1204 // TmpBB:
1205 // jmp_if_Y TBB
1206 // jmp FBB
1207 //
1208 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001209
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001210 // Emit the LHS condition.
1211 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001212
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001213 // Emit the RHS condition into TmpBB.
1214 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1215 }
1216}
1217
1218/// If the set of cases should be emitted as a series of branches, return true.
1219/// If we should emit this as a bunch of and/or'd together conditions, return
1220/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001221bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001222SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1223 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001224
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001225 // If this is two comparisons of the same values or'd or and'd together, they
1226 // will get folded into a single comparison, so don't emit two blocks.
1227 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1228 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1229 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1230 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1231 return false;
1232 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001233
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001234 return true;
1235}
1236
1237void SelectionDAGLowering::visitBr(BranchInst &I) {
1238 // Update machine-CFG edges.
1239 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1240
1241 // Figure out which block is immediately after the current one.
1242 MachineBasicBlock *NextBlock = 0;
1243 MachineFunction::iterator BBI = CurMBB;
1244 if (++BBI != CurMBB->getParent()->end())
1245 NextBlock = BBI;
1246
1247 if (I.isUnconditional()) {
1248 // Update machine-CFG edges.
1249 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001250
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001251 // If this is not a fall-through branch, emit the branch.
1252 if (Succ0MBB != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00001253 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001254 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001255 DAG.getBasicBlock(Succ0MBB)));
1256 return;
1257 }
1258
1259 // If this condition is one of the special cases we handle, do special stuff
1260 // now.
1261 Value *CondVal = I.getCondition();
1262 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1263
1264 // If this is a series of conditions that are or'd or and'd together, emit
1265 // this as a sequence of branches instead of setcc's with and/or operations.
1266 // For example, instead of something like:
1267 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001268 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001269 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001270 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001271 // or C, F
1272 // jnz foo
1273 // Emit:
1274 // cmp A, B
1275 // je foo
1276 // cmp D, E
1277 // jle foo
1278 //
1279 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001280 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001281 (BOp->getOpcode() == Instruction::And ||
1282 BOp->getOpcode() == Instruction::Or)) {
1283 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1284 // If the compares in later blocks need to use values not currently
1285 // exported from this block, export them now. This block should always
1286 // be the first entry.
1287 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001288
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001289 // Allow some cases to be rejected.
1290 if (ShouldEmitAsBranches(SwitchCases)) {
1291 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1292 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1293 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1294 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001295
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001296 // Emit the branch for this block.
1297 visitSwitchCase(SwitchCases[0]);
1298 SwitchCases.erase(SwitchCases.begin());
1299 return;
1300 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001302 // Okay, we decided not to do this, remove any inserted MBB's and clear
1303 // SwitchCases.
1304 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1305 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001306
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001307 SwitchCases.clear();
1308 }
1309 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001310
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001311 // Create a CaseBlock record representing this branch.
1312 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1313 NULL, Succ0MBB, Succ1MBB, CurMBB);
1314 // Use visitSwitchCase to actually insert the fast branch sequence for this
1315 // cond branch.
1316 visitSwitchCase(CB);
1317}
1318
1319/// visitSwitchCase - Emits the necessary code to represent a single node in
1320/// the binary search tree resulting from lowering a switch instruction.
1321void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1322 SDValue Cond;
1323 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001324 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001325
1326 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001327 if (CB.CmpMHS == NULL) {
1328 // Fold "(X == true)" to X and "(X == false)" to !X to
1329 // handle common cases produced by branch lowering.
1330 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1331 Cond = CondLHS;
1332 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1333 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001334 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001335 } else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001336 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001337 } else {
1338 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1339
Anton Korobeynikov23218582008-12-23 22:25:27 +00001340 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1341 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001342
1343 SDValue CmpOp = getValue(CB.CmpMHS);
1344 MVT VT = CmpOp.getValueType();
1345
1346 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001347 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
1348 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001349 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001350 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001351 VT, CmpOp, DAG.getConstant(Low, VT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001352 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001353 DAG.getConstant(High-Low, VT), ISD::SETULE);
1354 }
1355 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001356
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001357 // Update successor info
1358 CurMBB->addSuccessor(CB.TrueBB);
1359 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001360
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001361 // Set NextBlock to be the MBB immediately after the current one, if any.
1362 // This is used to avoid emitting unnecessary branches to the next block.
1363 MachineBasicBlock *NextBlock = 0;
1364 MachineFunction::iterator BBI = CurMBB;
1365 if (++BBI != CurMBB->getParent()->end())
1366 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001367
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001368 // If the lhs block is the next block, invert the condition so that we can
1369 // fall through to the lhs instead of the rhs block.
1370 if (CB.TrueBB == NextBlock) {
1371 std::swap(CB.TrueBB, CB.FalseBB);
1372 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001373 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001374 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001375 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001376 MVT::Other, getControlRoot(), Cond,
1377 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001378
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001379 // If the branch was constant folded, fix up the CFG.
1380 if (BrCond.getOpcode() == ISD::BR) {
1381 CurMBB->removeSuccessor(CB.FalseBB);
1382 DAG.setRoot(BrCond);
1383 } else {
1384 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001385 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001386 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001387
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001388 if (CB.FalseBB == NextBlock)
1389 DAG.setRoot(BrCond);
1390 else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001391 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001392 DAG.getBasicBlock(CB.FalseBB)));
1393 }
1394}
1395
1396/// visitJumpTable - Emit JumpTable node in the current MBB
1397void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1398 // Emit the code for the jump table
1399 assert(JT.Reg != -1U && "Should lower JT Header first!");
1400 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001401 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1402 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001403 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00001404 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001405 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001406 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001407}
1408
1409/// visitJumpTableHeader - This function emits necessary code to produce index
1410/// in the JumpTable from switch case.
1411void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1412 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001413 // Subtract the lowest switch case value from the value being switched on and
1414 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001415 // difference between smallest and largest cases.
1416 SDValue SwitchOp = getValue(JTH.SValue);
1417 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001418 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001419 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001420
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001421 // The SDNode we just created, which holds the value being switched on minus
1422 // the the smallest case value, needs to be copied to a virtual register so it
1423 // can be used as an index into the jump table in a subsequent basic block.
1424 // This value may be smaller or larger than the target's pointer type, and
1425 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001426 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00001427 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001428 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001429 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001430 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001431 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001432
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001433 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001434 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1435 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001436 JT.Reg = JumpTableReg;
1437
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001438 // Emit the range check for the jump table, and branch to the default block
1439 // for the switch statement if the value being switched on exceeds the largest
1440 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001441 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1442 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001443 DAG.getConstant(JTH.Last-JTH.First,VT),
1444 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001445
1446 // Set NextBlock to be the MBB immediately after the current one, if any.
1447 // This is used to avoid emitting unnecessary branches to the next block.
1448 MachineBasicBlock *NextBlock = 0;
1449 MachineFunction::iterator BBI = CurMBB;
1450 if (++BBI != CurMBB->getParent()->end())
1451 NextBlock = BBI;
1452
Dale Johannesen66978ee2009-01-31 02:22:37 +00001453 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001454 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001455 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001456
1457 if (JT.MBB == NextBlock)
1458 DAG.setRoot(BrCond);
1459 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001460 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001461 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001462}
1463
1464/// visitBitTestHeader - This function emits necessary code to produce value
1465/// suitable for "bit tests"
1466void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1467 // Subtract the minimum value
1468 SDValue SwitchOp = getValue(B.SValue);
1469 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001470 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001471 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001472
1473 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001474 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1475 TLI.getSetCCResultType(SUB.getValueType()),
1476 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001477 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001478
1479 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001480 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00001481 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001482 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001483 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001484 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001485 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001486
Duncan Sands92abc622009-01-31 15:50:11 +00001487 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001488 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1489 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001490
1491 // Set NextBlock to be the MBB immediately after the current one, if any.
1492 // This is used to avoid emitting unnecessary branches to the next block.
1493 MachineBasicBlock *NextBlock = 0;
1494 MachineFunction::iterator BBI = CurMBB;
1495 if (++BBI != CurMBB->getParent()->end())
1496 NextBlock = BBI;
1497
1498 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1499
1500 CurMBB->addSuccessor(B.Default);
1501 CurMBB->addSuccessor(MBB);
1502
Dale Johannesen66978ee2009-01-31 02:22:37 +00001503 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001504 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001505 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001506
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001507 if (MBB == NextBlock)
1508 DAG.setRoot(BrRange);
1509 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001510 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001511 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001512}
1513
1514/// visitBitTestCase - this function produces one "bit test"
1515void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1516 unsigned Reg,
1517 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001518 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001519 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001520 TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00001521 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001522 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001523 DAG.getConstant(1, TLI.getPointerTy()),
1524 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001525
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001526 // Emit bit tests and jumps
Dale Johannesen66978ee2009-01-31 02:22:37 +00001527 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001528 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001529 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001530 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1531 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001532 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001533 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001534
1535 CurMBB->addSuccessor(B.TargetBB);
1536 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001537
Dale Johannesen66978ee2009-01-31 02:22:37 +00001538 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001539 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001540 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001541
1542 // Set NextBlock to be the MBB immediately after the current one, if any.
1543 // This is used to avoid emitting unnecessary branches to the next block.
1544 MachineBasicBlock *NextBlock = 0;
1545 MachineFunction::iterator BBI = CurMBB;
1546 if (++BBI != CurMBB->getParent()->end())
1547 NextBlock = BBI;
1548
1549 if (NextMBB == NextBlock)
1550 DAG.setRoot(BrAnd);
1551 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001552 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001553 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001554}
1555
1556void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1557 // Retrieve successors.
1558 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1559 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1560
Gabor Greifb67e6b32009-01-15 11:10:44 +00001561 const Value *Callee(I.getCalledValue());
1562 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001563 visitInlineAsm(&I);
1564 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001565 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001566
1567 // If the value of the invoke is used outside of its defining block, make it
1568 // available as a virtual register.
1569 if (!I.use_empty()) {
1570 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1571 if (VMI != FuncInfo.ValueMap.end())
1572 CopyValueToVirtualRegister(&I, VMI->second);
1573 }
1574
1575 // Update successor info
1576 CurMBB->addSuccessor(Return);
1577 CurMBB->addSuccessor(LandingPad);
1578
1579 // Drop into normal successor.
Dale Johannesen66978ee2009-01-31 02:22:37 +00001580 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001581 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001582 DAG.getBasicBlock(Return)));
1583}
1584
1585void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1586}
1587
1588/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1589/// small case ranges).
1590bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1591 CaseRecVector& WorkList,
1592 Value* SV,
1593 MachineBasicBlock* Default) {
1594 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001595
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001596 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001597 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001598 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001599 return false;
1600
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001601 // Get the MachineFunction which holds the current MBB. This is used when
1602 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001603 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001604
1605 // Figure out which block is immediately after the current one.
1606 MachineBasicBlock *NextBlock = 0;
1607 MachineFunction::iterator BBI = CR.CaseBB;
1608
1609 if (++BBI != CurMBB->getParent()->end())
1610 NextBlock = BBI;
1611
1612 // TODO: If any two of the cases has the same destination, and if one value
1613 // is the same as the other, but has one bit unset that the other has set,
1614 // use bit manipulation to do two compares at once. For example:
1615 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001616
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001617 // Rearrange the case blocks so that the last one falls through if possible.
1618 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1619 // The last case block won't fall through into 'NextBlock' if we emit the
1620 // branches in this order. See if rearranging a case value would help.
1621 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1622 if (I->BB == NextBlock) {
1623 std::swap(*I, BackCase);
1624 break;
1625 }
1626 }
1627 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001628
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001629 // Create a CaseBlock record representing a conditional branch to
1630 // the Case's target mbb if the value being switched on SV is equal
1631 // to C.
1632 MachineBasicBlock *CurBlock = CR.CaseBB;
1633 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1634 MachineBasicBlock *FallThrough;
1635 if (I != E-1) {
1636 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1637 CurMF->insert(BBI, FallThrough);
1638 } else {
1639 // If the last case doesn't match, go to the default block.
1640 FallThrough = Default;
1641 }
1642
1643 Value *RHS, *LHS, *MHS;
1644 ISD::CondCode CC;
1645 if (I->High == I->Low) {
1646 // This is just small small case range :) containing exactly 1 case
1647 CC = ISD::SETEQ;
1648 LHS = SV; RHS = I->High; MHS = NULL;
1649 } else {
1650 CC = ISD::SETLE;
1651 LHS = I->Low; MHS = SV; RHS = I->High;
1652 }
1653 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001654
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001655 // If emitting the first comparison, just call visitSwitchCase to emit the
1656 // code into the current block. Otherwise, push the CaseBlock onto the
1657 // vector to be later processed by SDISel, and insert the node's MBB
1658 // before the next MBB.
1659 if (CurBlock == CurMBB)
1660 visitSwitchCase(CB);
1661 else
1662 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001663
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001664 CurBlock = FallThrough;
1665 }
1666
1667 return true;
1668}
1669
1670static inline bool areJTsAllowed(const TargetLowering &TLI) {
1671 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001672 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1673 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001674}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001675
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001676static APInt ComputeRange(const APInt &First, const APInt &Last) {
1677 APInt LastExt(Last), FirstExt(First);
1678 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1679 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1680 return (LastExt - FirstExt + 1ULL);
1681}
1682
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001683/// handleJTSwitchCase - Emit jumptable for current switch case range
1684bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1685 CaseRecVector& WorkList,
1686 Value* SV,
1687 MachineBasicBlock* Default) {
1688 Case& FrontCase = *CR.Range.first;
1689 Case& BackCase = *(CR.Range.second-1);
1690
Anton Korobeynikov23218582008-12-23 22:25:27 +00001691 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1692 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001693
Anton Korobeynikov23218582008-12-23 22:25:27 +00001694 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001695 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1696 I!=E; ++I)
1697 TSize += I->size();
1698
1699 if (!areJTsAllowed(TLI) || TSize <= 3)
1700 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001701
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001702 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001703 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001704 if (Density < 0.4)
1705 return false;
1706
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001707 DEBUG(errs() << "Lowering jump table\n"
1708 << "First entry: " << First << ". Last entry: " << Last << '\n'
1709 << "Range: " << Range
1710 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001711
1712 // Get the MachineFunction which holds the current MBB. This is used when
1713 // inserting any additional MBBs necessary to represent the switch.
1714 MachineFunction *CurMF = CurMBB->getParent();
1715
1716 // Figure out which block is immediately after the current one.
1717 MachineBasicBlock *NextBlock = 0;
1718 MachineFunction::iterator BBI = CR.CaseBB;
1719
1720 if (++BBI != CurMBB->getParent()->end())
1721 NextBlock = BBI;
1722
1723 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1724
1725 // Create a new basic block to hold the code for loading the address
1726 // of the jump table, and jumping to it. Update successor information;
1727 // we will either branch to the default case for the switch, or the jump
1728 // table.
1729 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1730 CurMF->insert(BBI, JumpTableBB);
1731 CR.CaseBB->addSuccessor(Default);
1732 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001733
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001734 // Build a vector of destination BBs, corresponding to each target
1735 // of the jump table. If the value of the jump table slot corresponds to
1736 // a case statement, push the case's BB onto the vector, otherwise, push
1737 // the default BB.
1738 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001739 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001740 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001741 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1742 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1743
1744 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001745 DestBBs.push_back(I->BB);
1746 if (TEI==High)
1747 ++I;
1748 } else {
1749 DestBBs.push_back(Default);
1750 }
1751 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001752
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001753 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001754 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1755 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001756 E = DestBBs.end(); I != E; ++I) {
1757 if (!SuccsHandled[(*I)->getNumber()]) {
1758 SuccsHandled[(*I)->getNumber()] = true;
1759 JumpTableBB->addSuccessor(*I);
1760 }
1761 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001762
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001763 // Create a jump table index for this jump table, or return an existing
1764 // one.
1765 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001766
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001767 // Set the jump table information so that we can codegen it as a second
1768 // MachineBasicBlock
1769 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1770 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1771 if (CR.CaseBB == CurMBB)
1772 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001773
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001774 JTCases.push_back(JumpTableBlock(JTH, JT));
1775
1776 return true;
1777}
1778
1779/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1780/// 2 subtrees.
1781bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1782 CaseRecVector& WorkList,
1783 Value* SV,
1784 MachineBasicBlock* Default) {
1785 // Get the MachineFunction which holds the current MBB. This is used when
1786 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001787 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001788
1789 // Figure out which block is immediately after the current one.
1790 MachineBasicBlock *NextBlock = 0;
1791 MachineFunction::iterator BBI = CR.CaseBB;
1792
1793 if (++BBI != CurMBB->getParent()->end())
1794 NextBlock = BBI;
1795
1796 Case& FrontCase = *CR.Range.first;
1797 Case& BackCase = *(CR.Range.second-1);
1798 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1799
1800 // Size is the number of Cases represented by this range.
1801 unsigned Size = CR.Range.second - CR.Range.first;
1802
Anton Korobeynikov23218582008-12-23 22:25:27 +00001803 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1804 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001805 double FMetric = 0;
1806 CaseItr Pivot = CR.Range.first + Size/2;
1807
1808 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1809 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001810 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001811 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1812 I!=E; ++I)
1813 TSize += I->size();
1814
Anton Korobeynikov23218582008-12-23 22:25:27 +00001815 size_t LSize = FrontCase.size();
1816 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001817 DEBUG(errs() << "Selecting best pivot: \n"
1818 << "First: " << First << ", Last: " << Last <<'\n'
1819 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001820 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1821 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001822 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1823 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001824 APInt Range = ComputeRange(LEnd, RBegin);
1825 assert((Range - 2ULL).isNonNegative() &&
1826 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001827 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1828 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001829 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001830 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001831 DEBUG(errs() <<"=>Step\n"
1832 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1833 << "LDensity: " << LDensity
1834 << ", RDensity: " << RDensity << '\n'
1835 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001836 if (FMetric < Metric) {
1837 Pivot = J;
1838 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001839 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001840 }
1841
1842 LSize += J->size();
1843 RSize -= J->size();
1844 }
1845 if (areJTsAllowed(TLI)) {
1846 // If our case is dense we *really* should handle it earlier!
1847 assert((FMetric > 0) && "Should handle dense range earlier!");
1848 } else {
1849 Pivot = CR.Range.first + Size/2;
1850 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001851
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001852 CaseRange LHSR(CR.Range.first, Pivot);
1853 CaseRange RHSR(Pivot, CR.Range.second);
1854 Constant *C = Pivot->Low;
1855 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001856
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001857 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001858 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001859 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001860 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001861 // Pivot's Value, then we can branch directly to the LHS's Target,
1862 // rather than creating a leaf node for it.
1863 if ((LHSR.second - LHSR.first) == 1 &&
1864 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001865 cast<ConstantInt>(C)->getValue() ==
1866 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001867 TrueBB = LHSR.first->BB;
1868 } else {
1869 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1870 CurMF->insert(BBI, TrueBB);
1871 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
1872 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001873
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001874 // Similar to the optimization above, if the Value being switched on is
1875 // known to be less than the Constant CR.LT, and the current Case Value
1876 // is CR.LT - 1, then we can branch directly to the target block for
1877 // the current Case Value, rather than emitting a RHS leaf node for it.
1878 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001879 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1880 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001881 FalseBB = RHSR.first->BB;
1882 } else {
1883 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1884 CurMF->insert(BBI, FalseBB);
1885 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
1886 }
1887
1888 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001889 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001890 // Otherwise, branch to LHS.
1891 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1892
1893 if (CR.CaseBB == CurMBB)
1894 visitSwitchCase(CB);
1895 else
1896 SwitchCases.push_back(CB);
1897
1898 return true;
1899}
1900
1901/// handleBitTestsSwitchCase - if current case range has few destination and
1902/// range span less, than machine word bitwidth, encode case range into series
1903/// of masks and emit bit tests with these masks.
1904bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1905 CaseRecVector& WorkList,
1906 Value* SV,
1907 MachineBasicBlock* Default){
1908 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1909
1910 Case& FrontCase = *CR.Range.first;
1911 Case& BackCase = *(CR.Range.second-1);
1912
1913 // Get the MachineFunction which holds the current MBB. This is used when
1914 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001915 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001916
Anton Korobeynikov23218582008-12-23 22:25:27 +00001917 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001918 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1919 I!=E; ++I) {
1920 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001921 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001922 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001923
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001924 // Count unique destinations
1925 SmallSet<MachineBasicBlock*, 4> Dests;
1926 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1927 Dests.insert(I->BB);
1928 if (Dests.size() > 3)
1929 // Don't bother the code below, if there are too much unique destinations
1930 return false;
1931 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001932 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1933 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001934
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001935 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001936 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1937 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001938 APInt cmpRange = maxValue - minValue;
1939
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001940 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1941 << "Low bound: " << minValue << '\n'
1942 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001943
1944 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001945 (!(Dests.size() == 1 && numCmps >= 3) &&
1946 !(Dests.size() == 2 && numCmps >= 5) &&
1947 !(Dests.size() >= 3 && numCmps >= 6)))
1948 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001949
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001950 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001951 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1952
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001953 // Optimize the case where all the case values fit in a
1954 // word without having to subtract minValue. In this case,
1955 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001956 if (minValue.isNonNegative() &&
1957 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1958 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001959 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001960 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001961 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001962
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001963 CaseBitsVector CasesBits;
1964 unsigned i, count = 0;
1965
1966 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1967 MachineBasicBlock* Dest = I->BB;
1968 for (i = 0; i < count; ++i)
1969 if (Dest == CasesBits[i].BB)
1970 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001971
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001972 if (i == count) {
1973 assert((count < 3) && "Too much destinations to test!");
1974 CasesBits.push_back(CaseBits(0, Dest, 0));
1975 count++;
1976 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001977
1978 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1979 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1980
1981 uint64_t lo = (lowValue - lowBound).getZExtValue();
1982 uint64_t hi = (highValue - lowBound).getZExtValue();
1983
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001984 for (uint64_t j = lo; j <= hi; j++) {
1985 CasesBits[i].Mask |= 1ULL << j;
1986 CasesBits[i].Bits++;
1987 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001988
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001989 }
1990 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001991
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001992 BitTestInfo BTC;
1993
1994 // Figure out which block is immediately after the current one.
1995 MachineFunction::iterator BBI = CR.CaseBB;
1996 ++BBI;
1997
1998 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1999
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002000 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002001 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002002 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2003 << ", Bits: " << CasesBits[i].Bits
2004 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002005
2006 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2007 CurMF->insert(BBI, CaseBB);
2008 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2009 CaseBB,
2010 CasesBits[i].BB));
2011 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002012
2013 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002014 -1U, (CR.CaseBB == CurMBB),
2015 CR.CaseBB, Default, BTC);
2016
2017 if (CR.CaseBB == CurMBB)
2018 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002019
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002020 BitTestCases.push_back(BTB);
2021
2022 return true;
2023}
2024
2025
2026/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002027size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002028 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002029 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002030
2031 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002032 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002033 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2034 Cases.push_back(Case(SI.getSuccessorValue(i),
2035 SI.getSuccessorValue(i),
2036 SMBB));
2037 }
2038 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2039
2040 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002041 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002042 // Must recompute end() each iteration because it may be
2043 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002044 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2045 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2046 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002047 MachineBasicBlock* nextBB = J->BB;
2048 MachineBasicBlock* currentBB = I->BB;
2049
2050 // If the two neighboring cases go to the same destination, merge them
2051 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002052 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002053 I->High = J->High;
2054 J = Cases.erase(J);
2055 } else {
2056 I = J++;
2057 }
2058 }
2059
2060 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2061 if (I->Low != I->High)
2062 // A range counts double, since it requires two compares.
2063 ++numCmps;
2064 }
2065
2066 return numCmps;
2067}
2068
Anton Korobeynikov23218582008-12-23 22:25:27 +00002069void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002070 // Figure out which block is immediately after the current one.
2071 MachineBasicBlock *NextBlock = 0;
2072 MachineFunction::iterator BBI = CurMBB;
2073
2074 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2075
2076 // If there is only the default destination, branch to it if it is not the
2077 // next basic block. Otherwise, just fall through.
2078 if (SI.getNumOperands() == 2) {
2079 // Update machine-CFG edges.
2080
2081 // If this is not a fall-through branch, emit the branch.
2082 CurMBB->addSuccessor(Default);
2083 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002084 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002085 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002086 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002087 return;
2088 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002089
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002090 // If there are any non-default case statements, create a vector of Cases
2091 // representing each one, and sort the vector so that we can efficiently
2092 // create a binary search tree from them.
2093 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002094 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002095 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2096 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002097 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002098
2099 // Get the Value to be switched on and default basic blocks, which will be
2100 // inserted into CaseBlock records, representing basic blocks in the binary
2101 // search tree.
2102 Value *SV = SI.getOperand(0);
2103
2104 // Push the initial CaseRec onto the worklist
2105 CaseRecVector WorkList;
2106 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2107
2108 while (!WorkList.empty()) {
2109 // Grab a record representing a case range to process off the worklist
2110 CaseRec CR = WorkList.back();
2111 WorkList.pop_back();
2112
2113 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2114 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002115
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002116 // If the range has few cases (two or less) emit a series of specific
2117 // tests.
2118 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2119 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002120
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002121 // If the switch has more than 5 blocks, and at least 40% dense, and the
2122 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002123 // lowering the switch to a binary tree of conditional branches.
2124 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2125 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002126
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002127 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2128 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2129 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2130 }
2131}
2132
2133
2134void SelectionDAGLowering::visitSub(User &I) {
2135 // -0.0 - X --> fneg
2136 const Type *Ty = I.getType();
2137 if (isa<VectorType>(Ty)) {
2138 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2139 const VectorType *DestTy = cast<VectorType>(I.getType());
2140 const Type *ElTy = DestTy->getElementType();
2141 if (ElTy->isFloatingPoint()) {
2142 unsigned VL = DestTy->getNumElements();
2143 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2144 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2145 if (CV == CNZ) {
2146 SDValue Op2 = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002147 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002148 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002149 return;
2150 }
2151 }
2152 }
2153 }
2154 if (Ty->isFloatingPoint()) {
2155 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2156 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2157 SDValue Op2 = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002158 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002159 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002160 return;
2161 }
2162 }
2163
2164 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2165}
2166
2167void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2168 SDValue Op1 = getValue(I.getOperand(0));
2169 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002170
Dale Johannesen66978ee2009-01-31 02:22:37 +00002171 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002172 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002173}
2174
2175void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2176 SDValue Op1 = getValue(I.getOperand(0));
2177 SDValue Op2 = getValue(I.getOperand(1));
2178 if (!isa<VectorType>(I.getType())) {
Duncan Sands92abc622009-01-31 15:50:11 +00002179 if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002180 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002181 TLI.getPointerTy(), Op2);
2182 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002183 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002184 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002185 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002186
Dale Johannesen66978ee2009-01-31 02:22:37 +00002187 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002188 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002189}
2190
2191void SelectionDAGLowering::visitICmp(User &I) {
2192 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2193 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2194 predicate = IC->getPredicate();
2195 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2196 predicate = ICmpInst::Predicate(IC->getPredicate());
2197 SDValue Op1 = getValue(I.getOperand(0));
2198 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002199 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002200 setValue(&I, DAG.getSetCC(getCurDebugLoc(),MVT::i1, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002201}
2202
2203void SelectionDAGLowering::visitFCmp(User &I) {
2204 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2205 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2206 predicate = FC->getPredicate();
2207 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2208 predicate = FCmpInst::Predicate(FC->getPredicate());
2209 SDValue Op1 = getValue(I.getOperand(0));
2210 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002211 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002212 setValue(&I, DAG.getSetCC(getCurDebugLoc(), MVT::i1, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002213}
2214
2215void SelectionDAGLowering::visitVICmp(User &I) {
2216 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2217 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2218 predicate = IC->getPredicate();
2219 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2220 predicate = ICmpInst::Predicate(IC->getPredicate());
2221 SDValue Op1 = getValue(I.getOperand(0));
2222 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002223 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002224 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), Op1.getValueType(),
2225 Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002226}
2227
2228void SelectionDAGLowering::visitVFCmp(User &I) {
2229 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2230 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2231 predicate = FC->getPredicate();
2232 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2233 predicate = FCmpInst::Predicate(FC->getPredicate());
2234 SDValue Op1 = getValue(I.getOperand(0));
2235 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002236 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002237 MVT DestVT = TLI.getValueType(I.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002238
Dale Johannesenf5d97892009-02-04 01:48:28 +00002239 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002240}
2241
2242void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002243 SmallVector<MVT, 4> ValueVTs;
2244 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2245 unsigned NumValues = ValueVTs.size();
2246 if (NumValues != 0) {
2247 SmallVector<SDValue, 4> Values(NumValues);
2248 SDValue Cond = getValue(I.getOperand(0));
2249 SDValue TrueVal = getValue(I.getOperand(1));
2250 SDValue FalseVal = getValue(I.getOperand(2));
2251
2252 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002253 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002254 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002255 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2256 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2257
Dale Johannesen66978ee2009-01-31 02:22:37 +00002258 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002259 DAG.getVTList(&ValueVTs[0], NumValues),
2260 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002261 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002262}
2263
2264
2265void SelectionDAGLowering::visitTrunc(User &I) {
2266 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2267 SDValue N = getValue(I.getOperand(0));
2268 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002269 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002270}
2271
2272void SelectionDAGLowering::visitZExt(User &I) {
2273 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2274 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2275 SDValue N = getValue(I.getOperand(0));
2276 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002277 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002278}
2279
2280void SelectionDAGLowering::visitSExt(User &I) {
2281 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2282 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2283 SDValue N = getValue(I.getOperand(0));
2284 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002285 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002286}
2287
2288void SelectionDAGLowering::visitFPTrunc(User &I) {
2289 // FPTrunc is never a no-op cast, no need to check
2290 SDValue N = getValue(I.getOperand(0));
2291 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002292 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002293 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002294}
2295
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002296void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002297 // FPTrunc is never a no-op cast, no need to check
2298 SDValue N = getValue(I.getOperand(0));
2299 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002300 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002301}
2302
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002303void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002304 // FPToUI is never a no-op cast, no need to check
2305 SDValue N = getValue(I.getOperand(0));
2306 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002307 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002308}
2309
2310void SelectionDAGLowering::visitFPToSI(User &I) {
2311 // FPToSI is never a no-op cast, no need to check
2312 SDValue N = getValue(I.getOperand(0));
2313 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002314 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002315}
2316
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002317void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002318 // UIToFP is never a no-op cast, no need to check
2319 SDValue N = getValue(I.getOperand(0));
2320 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002321 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002322}
2323
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002324void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002325 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002326 SDValue N = getValue(I.getOperand(0));
2327 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002328 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002329}
2330
2331void SelectionDAGLowering::visitPtrToInt(User &I) {
2332 // What to do depends on the size of the integer and the size of the pointer.
2333 // We can either truncate, zero extend, or no-op, accordingly.
2334 SDValue N = getValue(I.getOperand(0));
2335 MVT SrcVT = N.getValueType();
2336 MVT DestVT = TLI.getValueType(I.getType());
2337 SDValue Result;
2338 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002339 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002340 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002341 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002342 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002343 setValue(&I, Result);
2344}
2345
2346void SelectionDAGLowering::visitIntToPtr(User &I) {
2347 // What to do depends on the size of the integer and the size of the pointer.
2348 // We can either truncate, zero extend, or no-op, accordingly.
2349 SDValue N = getValue(I.getOperand(0));
2350 MVT SrcVT = N.getValueType();
2351 MVT DestVT = TLI.getValueType(I.getType());
2352 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002353 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002354 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002355 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002356 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002357 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002358}
2359
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002360void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002361 SDValue N = getValue(I.getOperand(0));
2362 MVT DestVT = TLI.getValueType(I.getType());
2363
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002364 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002365 // is either a BIT_CONVERT or a no-op.
2366 if (DestVT != N.getValueType())
Dale Johannesen66978ee2009-01-31 02:22:37 +00002367 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002368 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002369 else
2370 setValue(&I, N); // noop cast.
2371}
2372
2373void SelectionDAGLowering::visitInsertElement(User &I) {
2374 SDValue InVec = getValue(I.getOperand(0));
2375 SDValue InVal = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002376 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002377 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002378 getValue(I.getOperand(2)));
2379
Dale Johannesen66978ee2009-01-31 02:22:37 +00002380 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002381 TLI.getValueType(I.getType()),
2382 InVec, InVal, InIdx));
2383}
2384
2385void SelectionDAGLowering::visitExtractElement(User &I) {
2386 SDValue InVec = getValue(I.getOperand(0));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002387 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002388 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002389 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002390 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002391 TLI.getValueType(I.getType()), InVec, InIdx));
2392}
2393
Mon P Wangaeb06d22008-11-10 04:46:22 +00002394
2395// Utility for visitShuffleVector - Returns true if the mask is mask starting
2396// from SIndx and increasing to the element length (undefs are allowed).
2397static bool SequentialMask(SDValue Mask, unsigned SIndx) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002398 unsigned MaskNumElts = Mask.getNumOperands();
2399 for (unsigned i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002400 if (Mask.getOperand(i).getOpcode() != ISD::UNDEF) {
2401 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2402 if (Idx != i + SIndx)
2403 return false;
2404 }
2405 }
2406 return true;
2407}
2408
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002409void SelectionDAGLowering::visitShuffleVector(User &I) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002410 SDValue Src1 = getValue(I.getOperand(0));
2411 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002412 SDValue Mask = getValue(I.getOperand(2));
2413
Mon P Wangaeb06d22008-11-10 04:46:22 +00002414 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002415 MVT SrcVT = Src1.getValueType();
Mon P Wangc7849c22008-11-16 05:06:27 +00002416 int MaskNumElts = Mask.getNumOperands();
2417 int SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002418
Mon P Wangc7849c22008-11-16 05:06:27 +00002419 if (SrcNumElts == MaskNumElts) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002420 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002421 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002422 return;
2423 }
2424
2425 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002426 MVT MaskEltVT = Mask.getValueType().getVectorElementType();
2427
2428 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2429 // Mask is longer than the source vectors and is a multiple of the source
2430 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002431 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002432 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2433 // The shuffle is concatenating two vectors together.
Dale Johannesen66978ee2009-01-31 02:22:37 +00002434 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002435 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002436 return;
2437 }
2438
Mon P Wangc7849c22008-11-16 05:06:27 +00002439 // Pad both vectors with undefs to make them the same length as the mask.
2440 unsigned NumConcat = MaskNumElts / SrcNumElts;
Dale Johannesen66978ee2009-01-31 02:22:37 +00002441 SDValue UndefVal = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002442
Mon P Wang230e4fa2008-11-21 04:25:21 +00002443 SDValue* MOps1 = new SDValue[NumConcat];
2444 SDValue* MOps2 = new SDValue[NumConcat];
2445 MOps1[0] = Src1;
2446 MOps2[0] = Src2;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002447 for (unsigned i = 1; i != NumConcat; ++i) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002448 MOps1[i] = UndefVal;
2449 MOps2[i] = UndefVal;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002450 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002451 Src1 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002452 VT, MOps1, NumConcat);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002453 Src2 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002454 VT, MOps2, NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002455
2456 delete [] MOps1;
2457 delete [] MOps2;
2458
Mon P Wangaeb06d22008-11-10 04:46:22 +00002459 // Readjust mask for new input vector length.
2460 SmallVector<SDValue, 8> MappedOps;
Mon P Wangc7849c22008-11-16 05:06:27 +00002461 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002462 if (Mask.getOperand(i).getOpcode() == ISD::UNDEF) {
2463 MappedOps.push_back(Mask.getOperand(i));
2464 } else {
Mon P Wangc7849c22008-11-16 05:06:27 +00002465 int Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2466 if (Idx < SrcNumElts)
2467 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
2468 else
2469 MappedOps.push_back(DAG.getConstant(Idx + MaskNumElts - SrcNumElts,
2470 MaskEltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002471 }
2472 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002473 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002474 Mask.getValueType(),
Mon P Wangaeb06d22008-11-10 04:46:22 +00002475 &MappedOps[0], MappedOps.size());
2476
Dale Johannesen66978ee2009-01-31 02:22:37 +00002477 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002478 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002479 return;
2480 }
2481
Mon P Wangc7849c22008-11-16 05:06:27 +00002482 if (SrcNumElts > MaskNumElts) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002483 // Resulting vector is shorter than the incoming vector.
Mon P Wangc7849c22008-11-16 05:06:27 +00002484 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002485 // Shuffle extracts 1st vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002486 setValue(&I, Src1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002487 return;
2488 }
2489
Mon P Wangc7849c22008-11-16 05:06:27 +00002490 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002491 // Shuffle extracts 2nd vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002492 setValue(&I, Src2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002493 return;
2494 }
2495
Mon P Wangc7849c22008-11-16 05:06:27 +00002496 // Analyze the access pattern of the vector to see if we can extract
2497 // two subvectors and do the shuffle. The analysis is done by calculating
2498 // the range of elements the mask access on both vectors.
2499 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2500 int MaxRange[2] = {-1, -1};
2501
2502 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002503 SDValue Arg = Mask.getOperand(i);
2504 if (Arg.getOpcode() != ISD::UNDEF) {
2505 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002506 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2507 int Input = 0;
2508 if (Idx >= SrcNumElts) {
2509 Input = 1;
2510 Idx -= SrcNumElts;
2511 }
2512 if (Idx > MaxRange[Input])
2513 MaxRange[Input] = Idx;
2514 if (Idx < MinRange[Input])
2515 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002516 }
2517 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002518
Mon P Wangc7849c22008-11-16 05:06:27 +00002519 // Check if the access is smaller than the vector size and can we find
2520 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002521 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002522 int StartIdx[2]; // StartIdx to extract from
2523 for (int Input=0; Input < 2; ++Input) {
2524 if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) {
2525 RangeUse[Input] = 0; // Unused
2526 StartIdx[Input] = 0;
2527 } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) {
2528 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002529 // start index that is a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002530 if (MaxRange[Input] < MaskNumElts) {
2531 RangeUse[Input] = 1; // Extract from beginning of the vector
2532 StartIdx[Input] = 0;
2533 } else {
2534 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Mon P Wang6cce3da2008-11-23 04:35:05 +00002535 if (MaxRange[Input] - StartIdx[Input] < MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002536 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002537 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002538 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002539 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002540 }
2541
2542 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002543 setValue(&I, DAG.getNode(ISD::UNDEF,
Dale Johannesen66978ee2009-01-31 02:22:37 +00002544 getCurDebugLoc(), VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002545 return;
2546 }
2547 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2548 // Extract appropriate subvector and generate a vector shuffle
2549 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002550 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002551 if (RangeUse[Input] == 0) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002552 Src = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002553 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002554 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002555 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002556 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002557 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002558 // Calculate new mask.
2559 SmallVector<SDValue, 8> MappedOps;
2560 for (int i = 0; i != MaskNumElts; ++i) {
2561 SDValue Arg = Mask.getOperand(i);
2562 if (Arg.getOpcode() == ISD::UNDEF) {
2563 MappedOps.push_back(Arg);
2564 } else {
2565 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2566 if (Idx < SrcNumElts)
2567 MappedOps.push_back(DAG.getConstant(Idx - StartIdx[0], MaskEltVT));
2568 else {
2569 Idx = Idx - SrcNumElts - StartIdx[1] + MaskNumElts;
2570 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002571 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002572 }
2573 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002574 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002575 Mask.getValueType(),
Mon P Wangc7849c22008-11-16 05:06:27 +00002576 &MappedOps[0], MappedOps.size());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002577 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002578 VT, Src1, Src2, Mask));
Mon P Wangc7849c22008-11-16 05:06:27 +00002579 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002580 }
2581 }
2582
Mon P Wangc7849c22008-11-16 05:06:27 +00002583 // We can't use either concat vectors or extract subvectors so fall back to
2584 // replacing the shuffle with extract and build vector.
2585 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002586 MVT EltVT = VT.getVectorElementType();
2587 MVT PtrVT = TLI.getPointerTy();
2588 SmallVector<SDValue,8> Ops;
Mon P Wangc7849c22008-11-16 05:06:27 +00002589 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002590 SDValue Arg = Mask.getOperand(i);
2591 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002592 Ops.push_back(DAG.getNode(ISD::UNDEF, getCurDebugLoc(), EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002593 } else {
2594 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002595 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2596 if (Idx < SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002597 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002598 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002599 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002600 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002601 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002602 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002603 }
2604 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002605 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002606 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002607}
2608
2609void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2610 const Value *Op0 = I.getOperand(0);
2611 const Value *Op1 = I.getOperand(1);
2612 const Type *AggTy = I.getType();
2613 const Type *ValTy = Op1->getType();
2614 bool IntoUndef = isa<UndefValue>(Op0);
2615 bool FromUndef = isa<UndefValue>(Op1);
2616
2617 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2618 I.idx_begin(), I.idx_end());
2619
2620 SmallVector<MVT, 4> AggValueVTs;
2621 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2622 SmallVector<MVT, 4> ValValueVTs;
2623 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2624
2625 unsigned NumAggValues = AggValueVTs.size();
2626 unsigned NumValValues = ValValueVTs.size();
2627 SmallVector<SDValue, 4> Values(NumAggValues);
2628
2629 SDValue Agg = getValue(Op0);
2630 SDValue Val = getValue(Op1);
2631 unsigned i = 0;
2632 // Copy the beginning value(s) from the original aggregate.
2633 for (; i != LinearIndex; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002634 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002635 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002636 SDValue(Agg.getNode(), Agg.getResNo() + i);
2637 // Copy values from the inserted value(s).
2638 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002639 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002640 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 Johannesen66978ee2009-01-31 02:22:37 +00002644 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002645 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002646 SDValue(Agg.getNode(), Agg.getResNo() + i);
2647
Dale Johannesen66978ee2009-01-31 02:22:37 +00002648 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002649 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2650 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002651}
2652
2653void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2654 const Value *Op0 = I.getOperand(0);
2655 const Type *AggTy = Op0->getType();
2656 const Type *ValTy = I.getType();
2657 bool OutOfUndef = isa<UndefValue>(Op0);
2658
2659 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2660 I.idx_begin(), I.idx_end());
2661
2662 SmallVector<MVT, 4> ValValueVTs;
2663 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2664
2665 unsigned NumValValues = ValValueVTs.size();
2666 SmallVector<SDValue, 4> Values(NumValValues);
2667
2668 SDValue Agg = getValue(Op0);
2669 // Copy out the selected value(s).
2670 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2671 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002672 OutOfUndef ?
Dale Johannesen66978ee2009-01-31 02:22:37 +00002673 DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002674 Agg.getNode()->getValueType(Agg.getResNo() + i)) :
2675 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002676
Dale Johannesen66978ee2009-01-31 02:22:37 +00002677 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002678 DAG.getVTList(&ValValueVTs[0], NumValValues),
2679 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002680}
2681
2682
2683void SelectionDAGLowering::visitGetElementPtr(User &I) {
2684 SDValue N = getValue(I.getOperand(0));
2685 const Type *Ty = I.getOperand(0)->getType();
2686
2687 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2688 OI != E; ++OI) {
2689 Value *Idx = *OI;
2690 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2691 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2692 if (Field) {
2693 // N = N + Offset
2694 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002695 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002696 DAG.getIntPtrConstant(Offset));
2697 }
2698 Ty = StTy->getElementType(Field);
2699 } else {
2700 Ty = cast<SequentialType>(Ty)->getElementType();
2701
2702 // If this is a constant subscript, handle it quickly.
2703 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2704 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002705 uint64_t Offs =
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002706 TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Dale Johannesen66978ee2009-01-31 02:22:37 +00002707 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002708 DAG.getIntPtrConstant(Offs));
2709 continue;
2710 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002711
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002712 // N = N + Idx * ElementSize;
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002713 uint64_t ElementSize = TD->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002714 SDValue IdxN = getValue(Idx);
2715
2716 // If the index is smaller or larger than intptr_t, truncate or extend
2717 // it.
2718 if (IdxN.getValueType().bitsLT(N.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002719 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002720 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002721 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002722 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002723 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002724
2725 // If this is a multiply by a power of two, turn it into a shl
2726 // immediately. This is a very common case.
2727 if (ElementSize != 1) {
2728 if (isPowerOf2_64(ElementSize)) {
2729 unsigned Amt = Log2_64(ElementSize);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002730 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002731 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002732 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002733 } else {
2734 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002735 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002736 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002737 }
2738 }
2739
Dale Johannesen66978ee2009-01-31 02:22:37 +00002740 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002741 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002742 }
2743 }
2744 setValue(&I, N);
2745}
2746
2747void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2748 // If this is a fixed sized alloca in the entry block of the function,
2749 // allocate it statically on the stack.
2750 if (FuncInfo.StaticAllocaMap.count(&I))
2751 return; // getValue will auto-populate this.
2752
2753 const Type *Ty = I.getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002754 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002755 unsigned Align =
2756 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2757 I.getAlignment());
2758
2759 SDValue AllocSize = getValue(I.getArraySize());
2760 MVT IntPtr = TLI.getPointerTy();
2761 if (IntPtr.bitsLT(AllocSize.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002762 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002763 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002764 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002765 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002766 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002767
Dale Johannesen66978ee2009-01-31 02:22:37 +00002768 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), IntPtr, AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002769 DAG.getIntPtrConstant(TySize));
2770
2771 // Handle alignment. If the requested alignment is less than or equal to
2772 // the stack alignment, ignore it. If the size is greater than or equal to
2773 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2774 unsigned StackAlign =
2775 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2776 if (Align <= StackAlign)
2777 Align = 0;
2778
2779 // Round the size of the allocation up to the stack alignment size
2780 // by add SA-1 to the size.
Dale Johannesen66978ee2009-01-31 02:22:37 +00002781 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002782 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002783 DAG.getIntPtrConstant(StackAlign-1));
2784 // Mask out the low bits for alignment purposes.
Dale Johannesen66978ee2009-01-31 02:22:37 +00002785 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002786 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002787 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2788
2789 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
2790 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2791 MVT::Other);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002792 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002793 VTs, 2, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002794 setValue(&I, DSA);
2795 DAG.setRoot(DSA.getValue(1));
2796
2797 // Inform the Frame Information that we have just allocated a variable-sized
2798 // object.
2799 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2800}
2801
2802void SelectionDAGLowering::visitLoad(LoadInst &I) {
2803 const Value *SV = I.getOperand(0);
2804 SDValue Ptr = getValue(SV);
2805
2806 const Type *Ty = I.getType();
2807 bool isVolatile = I.isVolatile();
2808 unsigned Alignment = I.getAlignment();
2809
2810 SmallVector<MVT, 4> ValueVTs;
2811 SmallVector<uint64_t, 4> Offsets;
2812 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2813 unsigned NumValues = ValueVTs.size();
2814 if (NumValues == 0)
2815 return;
2816
2817 SDValue Root;
2818 bool ConstantMemory = false;
2819 if (I.isVolatile())
2820 // Serialize volatile loads with other side effects.
2821 Root = getRoot();
2822 else if (AA->pointsToConstantMemory(SV)) {
2823 // Do not serialize (non-volatile) loads of constant memory with anything.
2824 Root = DAG.getEntryNode();
2825 ConstantMemory = true;
2826 } else {
2827 // Do not serialize non-volatile loads against each other.
2828 Root = DAG.getRoot();
2829 }
2830
2831 SmallVector<SDValue, 4> Values(NumValues);
2832 SmallVector<SDValue, 4> Chains(NumValues);
2833 MVT PtrVT = Ptr.getValueType();
2834 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002835 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
2836 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002837 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002838 DAG.getConstant(Offsets[i], PtrVT)),
2839 SV, Offsets[i],
2840 isVolatile, Alignment);
2841 Values[i] = L;
2842 Chains[i] = L.getValue(1);
2843 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002844
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002845 if (!ConstantMemory) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002846 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002847 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002848 &Chains[0], NumValues);
2849 if (isVolatile)
2850 DAG.setRoot(Chain);
2851 else
2852 PendingLoads.push_back(Chain);
2853 }
2854
Dale Johannesen66978ee2009-01-31 02:22:37 +00002855 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002856 DAG.getVTList(&ValueVTs[0], NumValues),
2857 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002858}
2859
2860
2861void SelectionDAGLowering::visitStore(StoreInst &I) {
2862 Value *SrcV = I.getOperand(0);
2863 Value *PtrV = I.getOperand(1);
2864
2865 SmallVector<MVT, 4> ValueVTs;
2866 SmallVector<uint64_t, 4> Offsets;
2867 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2868 unsigned NumValues = ValueVTs.size();
2869 if (NumValues == 0)
2870 return;
2871
2872 // Get the lowered operands. Note that we do this after
2873 // checking if NumResults is zero, because with zero results
2874 // the operands won't have values in the map.
2875 SDValue Src = getValue(SrcV);
2876 SDValue Ptr = getValue(PtrV);
2877
2878 SDValue Root = getRoot();
2879 SmallVector<SDValue, 4> Chains(NumValues);
2880 MVT PtrVT = Ptr.getValueType();
2881 bool isVolatile = I.isVolatile();
2882 unsigned Alignment = I.getAlignment();
2883 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002884 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002885 SDValue(Src.getNode(), Src.getResNo() + i),
Dale Johannesen66978ee2009-01-31 02:22:37 +00002886 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002887 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002888 DAG.getConstant(Offsets[i], PtrVT)),
2889 PtrV, Offsets[i],
2890 isVolatile, Alignment);
2891
Dale Johannesen66978ee2009-01-31 02:22:37 +00002892 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002893 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002894}
2895
2896/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2897/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002898void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002899 unsigned Intrinsic) {
2900 bool HasChain = !I.doesNotAccessMemory();
2901 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2902
2903 // Build the operand list.
2904 SmallVector<SDValue, 8> Ops;
2905 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2906 if (OnlyLoad) {
2907 // We don't need to serialize loads against other loads.
2908 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002909 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002910 Ops.push_back(getRoot());
2911 }
2912 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002913
2914 // Info is set by getTgtMemInstrinsic
2915 TargetLowering::IntrinsicInfo Info;
2916 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2917
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002918 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002919 if (!IsTgtIntrinsic)
2920 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002921
2922 // Add all operands of the call to the operand list.
2923 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2924 SDValue Op = getValue(I.getOperand(i));
2925 assert(TLI.isTypeLegal(Op.getValueType()) &&
2926 "Intrinsic uses a non-legal type?");
2927 Ops.push_back(Op);
2928 }
2929
2930 std::vector<MVT> VTs;
2931 if (I.getType() != Type::VoidTy) {
2932 MVT VT = TLI.getValueType(I.getType());
2933 if (VT.isVector()) {
2934 const VectorType *DestTy = cast<VectorType>(I.getType());
2935 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002936
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002937 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2938 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2939 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002940
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002941 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2942 VTs.push_back(VT);
2943 }
2944 if (HasChain)
2945 VTs.push_back(MVT::Other);
2946
2947 const MVT *VTList = DAG.getNodeValueTypes(VTs);
2948
2949 // Create the node.
2950 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002951 if (IsTgtIntrinsic) {
2952 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002953 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002954 VTList, VTs.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002955 &Ops[0], Ops.size(),
2956 Info.memVT, Info.ptrVal, Info.offset,
2957 Info.align, Info.vol,
2958 Info.readMem, Info.writeMem);
2959 }
2960 else if (!HasChain)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002961 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002962 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002963 &Ops[0], Ops.size());
2964 else if (I.getType() != Type::VoidTy)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002965 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002966 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002967 &Ops[0], Ops.size());
2968 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002969 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002970 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002971 &Ops[0], Ops.size());
2972
2973 if (HasChain) {
2974 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2975 if (OnlyLoad)
2976 PendingLoads.push_back(Chain);
2977 else
2978 DAG.setRoot(Chain);
2979 }
2980 if (I.getType() != Type::VoidTy) {
2981 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2982 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002983 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002984 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002985 setValue(&I, Result);
2986 }
2987}
2988
2989/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2990static GlobalVariable *ExtractTypeInfo(Value *V) {
2991 V = V->stripPointerCasts();
2992 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2993 assert ((GV || isa<ConstantPointerNull>(V)) &&
2994 "TypeInfo must be a global variable or NULL");
2995 return GV;
2996}
2997
2998namespace llvm {
2999
3000/// AddCatchInfo - Extract the personality and type infos from an eh.selector
3001/// call, and add them to the specified machine basic block.
3002void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3003 MachineBasicBlock *MBB) {
3004 // Inform the MachineModuleInfo of the personality for this landing pad.
3005 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3006 assert(CE->getOpcode() == Instruction::BitCast &&
3007 isa<Function>(CE->getOperand(0)) &&
3008 "Personality should be a function");
3009 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3010
3011 // Gather all the type infos for this landing pad and pass them along to
3012 // MachineModuleInfo.
3013 std::vector<GlobalVariable *> TyInfo;
3014 unsigned N = I.getNumOperands();
3015
3016 for (unsigned i = N - 1; i > 2; --i) {
3017 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3018 unsigned FilterLength = CI->getZExtValue();
3019 unsigned FirstCatch = i + FilterLength + !FilterLength;
3020 assert (FirstCatch <= N && "Invalid filter length");
3021
3022 if (FirstCatch < N) {
3023 TyInfo.reserve(N - FirstCatch);
3024 for (unsigned j = FirstCatch; j < N; ++j)
3025 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3026 MMI->addCatchTypeInfo(MBB, TyInfo);
3027 TyInfo.clear();
3028 }
3029
3030 if (!FilterLength) {
3031 // Cleanup.
3032 MMI->addCleanup(MBB);
3033 } else {
3034 // Filter.
3035 TyInfo.reserve(FilterLength - 1);
3036 for (unsigned j = i + 1; j < FirstCatch; ++j)
3037 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3038 MMI->addFilterTypeInfo(MBB, TyInfo);
3039 TyInfo.clear();
3040 }
3041
3042 N = i;
3043 }
3044 }
3045
3046 if (N > 3) {
3047 TyInfo.reserve(N - 3);
3048 for (unsigned j = 3; j < N; ++j)
3049 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3050 MMI->addCatchTypeInfo(MBB, TyInfo);
3051 }
3052}
3053
3054}
3055
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003056/// GetSignificand - Get the significand and build it into a floating-point
3057/// number with exponent of 1:
3058///
3059/// Op = (Op & 0x007fffff) | 0x3f800000;
3060///
3061/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003062static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003063GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3064 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003065 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003066 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003067 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003068 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003069}
3070
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003071/// GetExponent - Get the exponent:
3072///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003073/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003074///
3075/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003076static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003077GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3078 DebugLoc dl) {
3079 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003080 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003081 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003082 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003083 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003084 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003085 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003086}
3087
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003088/// getF32Constant - Get 32-bit floating point constant.
3089static SDValue
3090getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3091 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3092}
3093
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003094/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003095/// visitIntrinsicCall: I is a call instruction
3096/// Op is the associated NodeType for I
3097const char *
3098SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003099 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003100 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003101 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003102 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003103 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003104 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003105 getValue(I.getOperand(2)),
3106 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003107 setValue(&I, L);
3108 DAG.setRoot(L.getValue(1));
3109 return 0;
3110}
3111
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003112// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003113const char *
3114SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003115 SDValue Op1 = getValue(I.getOperand(1));
3116 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003117
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003118 MVT ValueVTs[] = { Op1.getValueType(), MVT::i1 };
3119 SDValue Ops[] = { Op1, Op2 };
Bill Wendling74c37652008-12-09 22:08:41 +00003120
Dale Johannesen66978ee2009-01-31 02:22:37 +00003121 SDValue Result = DAG.getNode(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003122 DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2);
Bill Wendling74c37652008-12-09 22:08:41 +00003123
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003124 setValue(&I, Result);
3125 return 0;
3126}
Bill Wendling74c37652008-12-09 22:08:41 +00003127
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003128/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3129/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003130void
3131SelectionDAGLowering::visitExp(CallInst &I) {
3132 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003133 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003134
3135 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3136 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3137 SDValue Op = getValue(I.getOperand(1));
3138
3139 // Put the exponent in the right bit position for later addition to the
3140 // final result:
3141 //
3142 // #define LOG2OFe 1.4426950f
3143 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003144 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003145 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003146 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003147
3148 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003149 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3150 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003151
3152 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003153 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003154 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003155
3156 if (LimitFloatPrecision <= 6) {
3157 // For floating-point precision of 6:
3158 //
3159 // TwoToFractionalPartOfX =
3160 // 0.997535578f +
3161 // (0.735607626f + 0.252464424f * x) * x;
3162 //
3163 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003164 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003165 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003166 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003167 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003168 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3169 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003170 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003171 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003172
3173 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003174 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003175 TwoToFracPartOfX, IntegerPartOfX);
3176
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003177 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003178 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3179 // For floating-point precision of 12:
3180 //
3181 // TwoToFractionalPartOfX =
3182 // 0.999892986f +
3183 // (0.696457318f +
3184 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3185 //
3186 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003187 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003188 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003189 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003190 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003191 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3192 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003193 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003194 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3195 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003196 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003197 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003198
3199 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003200 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003201 TwoToFracPartOfX, IntegerPartOfX);
3202
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003203 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003204 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3205 // For floating-point precision of 18:
3206 //
3207 // TwoToFractionalPartOfX =
3208 // 0.999999982f +
3209 // (0.693148872f +
3210 // (0.240227044f +
3211 // (0.554906021e-1f +
3212 // (0.961591928e-2f +
3213 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3214 //
3215 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003216 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003217 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003218 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003219 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003220 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3221 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003222 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003223 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3224 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003225 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003226 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3227 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003228 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003229 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3230 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003231 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003232 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3233 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003234 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003235 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
3236 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003237
3238 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003239 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003240 TwoToFracPartOfX, IntegerPartOfX);
3241
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003242 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003243 }
3244 } else {
3245 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003246 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003247 getValue(I.getOperand(1)).getValueType(),
3248 getValue(I.getOperand(1)));
3249 }
3250
Dale Johannesen59e577f2008-09-05 18:38:42 +00003251 setValue(&I, result);
3252}
3253
Bill Wendling39150252008-09-09 20:39:27 +00003254/// visitLog - Lower a log intrinsic. Handles the special sequences for
3255/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003256void
3257SelectionDAGLowering::visitLog(CallInst &I) {
3258 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003259 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003260
3261 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3262 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3263 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003264 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003265
3266 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003267 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003268 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003269 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003270
3271 // Get the significand and build it into a floating-point number with
3272 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003273 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003274
3275 if (LimitFloatPrecision <= 6) {
3276 // For floating-point precision of 6:
3277 //
3278 // LogofMantissa =
3279 // -1.1609546f +
3280 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003281 //
Bill Wendling39150252008-09-09 20:39:27 +00003282 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003283 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003284 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003285 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003286 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003287 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3288 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003289 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003290
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003291 result = DAG.getNode(ISD::FADD, dl,
3292 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003293 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3294 // For floating-point precision of 12:
3295 //
3296 // LogOfMantissa =
3297 // -1.7417939f +
3298 // (2.8212026f +
3299 // (-1.4699568f +
3300 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3301 //
3302 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003303 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003304 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003305 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003306 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003307 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3308 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003309 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003310 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3311 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003312 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003313 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3314 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003315 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003316
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003317 result = DAG.getNode(ISD::FADD, dl,
3318 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003319 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3320 // For floating-point precision of 18:
3321 //
3322 // LogOfMantissa =
3323 // -2.1072184f +
3324 // (4.2372794f +
3325 // (-3.7029485f +
3326 // (2.2781945f +
3327 // (-0.87823314f +
3328 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3329 //
3330 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003331 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003332 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003333 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003334 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003335 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3336 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003337 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003338 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3339 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003340 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003341 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3342 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003343 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003344 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3345 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003346 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003347 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3348 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003349 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003350
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003351 result = DAG.getNode(ISD::FADD, dl,
3352 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003353 }
3354 } else {
3355 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003356 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003357 getValue(I.getOperand(1)).getValueType(),
3358 getValue(I.getOperand(1)));
3359 }
3360
Dale Johannesen59e577f2008-09-05 18:38:42 +00003361 setValue(&I, result);
3362}
3363
Bill Wendling3eb59402008-09-09 00:28:24 +00003364/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3365/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003366void
3367SelectionDAGLowering::visitLog2(CallInst &I) {
3368 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003369 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003370
Dale Johannesen853244f2008-09-05 23:49:37 +00003371 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003372 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3373 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003374 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003375
Bill Wendling39150252008-09-09 20:39:27 +00003376 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003377 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003378
3379 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003380 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003381 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003382
Bill Wendling3eb59402008-09-09 00:28:24 +00003383 // Different possible minimax approximations of significand in
3384 // floating-point for various degrees of accuracy over [1,2].
3385 if (LimitFloatPrecision <= 6) {
3386 // For floating-point precision of 6:
3387 //
3388 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3389 //
3390 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003391 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003392 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003393 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003394 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003395 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3396 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003397 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003398
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003399 result = DAG.getNode(ISD::FADD, dl,
3400 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003401 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3402 // For floating-point precision of 12:
3403 //
3404 // Log2ofMantissa =
3405 // -2.51285454f +
3406 // (4.07009056f +
3407 // (-2.12067489f +
3408 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003409 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003410 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003411 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003412 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003413 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003414 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003415 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3416 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003417 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003418 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3419 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003420 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003421 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3422 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003423 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003424
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003425 result = DAG.getNode(ISD::FADD, dl,
3426 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003427 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3428 // For floating-point precision of 18:
3429 //
3430 // Log2ofMantissa =
3431 // -3.0400495f +
3432 // (6.1129976f +
3433 // (-5.3420409f +
3434 // (3.2865683f +
3435 // (-1.2669343f +
3436 // (0.27515199f -
3437 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3438 //
3439 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003440 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003441 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003442 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003443 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003444 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3445 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003446 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003447 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3448 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003449 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003450 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3451 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003452 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003453 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3454 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003455 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003456 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3457 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003458 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003459
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003460 result = DAG.getNode(ISD::FADD, dl,
3461 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003462 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003463 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003464 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003465 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003466 getValue(I.getOperand(1)).getValueType(),
3467 getValue(I.getOperand(1)));
3468 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003469
Dale Johannesen59e577f2008-09-05 18:38:42 +00003470 setValue(&I, result);
3471}
3472
Bill Wendling3eb59402008-09-09 00:28:24 +00003473/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3474/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003475void
3476SelectionDAGLowering::visitLog10(CallInst &I) {
3477 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003478 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003479
Dale Johannesen852680a2008-09-05 21:27:19 +00003480 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003481 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3482 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003483 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003484
Bill Wendling39150252008-09-09 20:39:27 +00003485 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003486 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003487 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003488 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003489
3490 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003491 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003492 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003493
3494 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003495 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003496 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003497 // Log10ofMantissa =
3498 // -0.50419619f +
3499 // (0.60948995f - 0.10380950f * x) * x;
3500 //
3501 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003502 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003503 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003504 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003505 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003506 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3507 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003508 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003509
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003510 result = DAG.getNode(ISD::FADD, dl,
3511 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003512 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3513 // For floating-point precision of 12:
3514 //
3515 // Log10ofMantissa =
3516 // -0.64831180f +
3517 // (0.91751397f +
3518 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3519 //
3520 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003521 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003522 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003523 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003524 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003525 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3526 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003527 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003528 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3529 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003530 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003531
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003532 result = DAG.getNode(ISD::FADD, dl,
3533 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003534 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003535 // For floating-point precision of 18:
3536 //
3537 // Log10ofMantissa =
3538 // -0.84299375f +
3539 // (1.5327582f +
3540 // (-1.0688956f +
3541 // (0.49102474f +
3542 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3543 //
3544 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003545 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003546 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003547 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003548 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003549 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3550 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003551 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003552 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3553 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003554 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003555 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3556 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003557 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003558 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3559 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003560 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003561
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003562 result = DAG.getNode(ISD::FADD, dl,
3563 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003564 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003565 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003566 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003567 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003568 getValue(I.getOperand(1)).getValueType(),
3569 getValue(I.getOperand(1)));
3570 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003571
Dale Johannesen59e577f2008-09-05 18:38:42 +00003572 setValue(&I, result);
3573}
3574
Bill Wendlinge10c8142008-09-09 22:39:21 +00003575/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3576/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003577void
3578SelectionDAGLowering::visitExp2(CallInst &I) {
3579 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003580 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003581
Dale Johannesen601d3c02008-09-05 01:48:15 +00003582 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003583 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3584 SDValue Op = getValue(I.getOperand(1));
3585
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003586 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003587
3588 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003589 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3590 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003591
3592 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003593 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003594 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003595
3596 if (LimitFloatPrecision <= 6) {
3597 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003598 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003599 // TwoToFractionalPartOfX =
3600 // 0.997535578f +
3601 // (0.735607626f + 0.252464424f * x) * x;
3602 //
3603 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003604 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003605 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003606 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003607 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003608 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3609 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003610 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003611 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003612 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003613 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003614
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003615 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3616 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003617 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3618 // For floating-point precision of 12:
3619 //
3620 // TwoToFractionalPartOfX =
3621 // 0.999892986f +
3622 // (0.696457318f +
3623 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3624 //
3625 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003626 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003627 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003628 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003629 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003630 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3631 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003632 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003633 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3634 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003635 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003636 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003637 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003638 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003639
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003640 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3641 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003642 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3643 // For floating-point precision of 18:
3644 //
3645 // TwoToFractionalPartOfX =
3646 // 0.999999982f +
3647 // (0.693148872f +
3648 // (0.240227044f +
3649 // (0.554906021e-1f +
3650 // (0.961591928e-2f +
3651 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3652 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003653 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003654 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003655 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003656 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003657 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3658 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003659 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003660 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3661 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003662 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003663 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3664 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003665 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003666 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3667 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003668 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003669 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3670 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003671 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003672 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003673 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003674 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003675
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003676 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3677 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003678 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003679 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003680 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003681 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003682 getValue(I.getOperand(1)).getValueType(),
3683 getValue(I.getOperand(1)));
3684 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003685
Dale Johannesen601d3c02008-09-05 01:48:15 +00003686 setValue(&I, result);
3687}
3688
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003689/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3690/// limited-precision mode with x == 10.0f.
3691void
3692SelectionDAGLowering::visitPow(CallInst &I) {
3693 SDValue result;
3694 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003695 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003696 bool IsExp10 = false;
3697
3698 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003699 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003700 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3701 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3702 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3703 APFloat Ten(10.0f);
3704 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3705 }
3706 }
3707 }
3708
3709 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3710 SDValue Op = getValue(I.getOperand(2));
3711
3712 // Put the exponent in the right bit position for later addition to the
3713 // final result:
3714 //
3715 // #define LOG2OF10 3.3219281f
3716 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003717 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003718 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003719 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003720
3721 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003722 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3723 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003724
3725 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003726 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003727 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003728
3729 if (LimitFloatPrecision <= 6) {
3730 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003731 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003732 // twoToFractionalPartOfX =
3733 // 0.997535578f +
3734 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003735 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003736 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003737 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003738 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003739 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003740 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003741 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3742 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003743 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003744 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003745 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003746 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003747
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003748 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3749 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003750 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3751 // For floating-point precision of 12:
3752 //
3753 // TwoToFractionalPartOfX =
3754 // 0.999892986f +
3755 // (0.696457318f +
3756 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3757 //
3758 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003759 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003760 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003761 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003762 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003763 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3764 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003765 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003766 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3767 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003768 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003769 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003770 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003771 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003772
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003773 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3774 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003775 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3776 // For floating-point precision of 18:
3777 //
3778 // TwoToFractionalPartOfX =
3779 // 0.999999982f +
3780 // (0.693148872f +
3781 // (0.240227044f +
3782 // (0.554906021e-1f +
3783 // (0.961591928e-2f +
3784 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3785 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003786 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003787 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003788 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003789 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003790 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3791 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003792 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003793 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3794 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003795 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003796 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3797 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003798 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003799 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3800 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003801 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003802 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3803 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003804 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003805 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003806 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003807 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003808
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003809 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3810 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003811 }
3812 } else {
3813 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003814 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003815 getValue(I.getOperand(1)).getValueType(),
3816 getValue(I.getOperand(1)),
3817 getValue(I.getOperand(2)));
3818 }
3819
3820 setValue(&I, result);
3821}
3822
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003823/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3824/// we want to emit this as a call to a named external function, return the name
3825/// otherwise lower it and return null.
3826const char *
3827SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003828 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003829 switch (Intrinsic) {
3830 default:
3831 // By default, turn this into a target intrinsic node.
3832 visitTargetIntrinsic(I, Intrinsic);
3833 return 0;
3834 case Intrinsic::vastart: visitVAStart(I); return 0;
3835 case Intrinsic::vaend: visitVAEnd(I); return 0;
3836 case Intrinsic::vacopy: visitVACopy(I); return 0;
3837 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003838 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003839 getValue(I.getOperand(1))));
3840 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003841 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003842 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003843 getValue(I.getOperand(1))));
3844 return 0;
3845 case Intrinsic::setjmp:
3846 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3847 break;
3848 case Intrinsic::longjmp:
3849 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3850 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003851 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003852 SDValue Op1 = getValue(I.getOperand(1));
3853 SDValue Op2 = getValue(I.getOperand(2));
3854 SDValue Op3 = getValue(I.getOperand(3));
3855 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003856 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003857 I.getOperand(1), 0, I.getOperand(2), 0));
3858 return 0;
3859 }
Chris Lattner824b9582008-11-21 16:42:48 +00003860 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003861 SDValue Op1 = getValue(I.getOperand(1));
3862 SDValue Op2 = getValue(I.getOperand(2));
3863 SDValue Op3 = getValue(I.getOperand(3));
3864 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003865 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003866 I.getOperand(1), 0));
3867 return 0;
3868 }
Chris Lattner824b9582008-11-21 16:42:48 +00003869 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003870 SDValue Op1 = getValue(I.getOperand(1));
3871 SDValue Op2 = getValue(I.getOperand(2));
3872 SDValue Op3 = getValue(I.getOperand(3));
3873 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3874
3875 // If the source and destination are known to not be aliases, we can
3876 // lower memmove as memcpy.
3877 uint64_t Size = -1ULL;
3878 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003879 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003880 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3881 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003882 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003883 I.getOperand(1), 0, I.getOperand(2), 0));
3884 return 0;
3885 }
3886
Dale Johannesena04b7572009-02-03 23:04:43 +00003887 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003888 I.getOperand(1), 0, I.getOperand(2), 0));
3889 return 0;
3890 }
3891 case Intrinsic::dbg_stoppoint: {
Devang Patel83489bb2009-01-13 00:35:13 +00003892 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003893 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003894 if (DW && DW->ValidDebugInfo(SPI.getContext())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003895 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3896 SPI.getLine(),
3897 SPI.getColumn(),
Devang Patel83489bb2009-01-13 00:35:13 +00003898 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003899 DICompileUnit CU(cast<GlobalVariable>(SPI.getContext()));
3900 unsigned SrcFile = DW->RecordSource(CU.getDirectory(), CU.getFilename());
3901 unsigned idx = DAG.getMachineFunction().
3902 getOrCreateDebugLocID(SrcFile,
3903 SPI.getLine(),
3904 SPI.getColumn());
Dale Johannesen66978ee2009-01-31 02:22:37 +00003905 setCurDebugLoc(DebugLoc::get(idx));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003906 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003907 return 0;
3908 }
3909 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003910 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003911 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patelb79b5352009-01-19 23:21:49 +00003912 if (DW && DW->ValidDebugInfo(RSI.getContext())) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003913 unsigned LabelID =
Devang Patel83489bb2009-01-13 00:35:13 +00003914 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Dale Johannesen8ad9b432009-02-04 01:17:06 +00003915 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3916 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003917 }
3918
3919 return 0;
3920 }
3921 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003922 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003923 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patelb79b5352009-01-19 23:21:49 +00003924 if (DW && DW->ValidDebugInfo(REI.getContext())) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003925 unsigned LabelID =
Devang Patel83489bb2009-01-13 00:35:13 +00003926 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
Dale Johannesen8ad9b432009-02-04 01:17:06 +00003927 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3928 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003929 }
3930
3931 return 0;
3932 }
3933 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003934 DwarfWriter *DW = DAG.getDwarfWriter();
3935 if (!DW) return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003936 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
3937 Value *SP = FSI.getSubprogram();
Devang Patelcf3a4482009-01-15 23:41:32 +00003938 if (SP && DW->ValidDebugInfo(SP)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003939 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3940 // what (most?) gdb expects.
Devang Patel83489bb2009-01-13 00:35:13 +00003941 DISubprogram Subprogram(cast<GlobalVariable>(SP));
3942 DICompileUnit CompileUnit = Subprogram.getCompileUnit();
3943 unsigned SrcFile = DW->RecordSource(CompileUnit.getDirectory(),
3944 CompileUnit.getFilename());
Bill Wendling9bc96a52009-02-03 00:55:04 +00003945
Devang Patel20dd0462008-11-06 00:30:09 +00003946 // Record the source line but does not create a label for the normal
3947 // function start. It will be emitted at asm emission time. However,
3948 // create a label if this is a beginning of inlined function.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003949 unsigned Line = Subprogram.getLineNumber();
Bill Wendling9bc96a52009-02-03 00:55:04 +00003950 unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile);
3951
Devang Patel83489bb2009-01-13 00:35:13 +00003952 if (DW->getRecordSourceLineCount() != 1)
Dale Johannesen8ad9b432009-02-04 01:17:06 +00003953 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3954 getRoot(), LabelID));
Bill Wendling9bc96a52009-02-03 00:55:04 +00003955
Dale Johannesen66978ee2009-01-31 02:22:37 +00003956 setCurDebugLoc(DebugLoc::get(DAG.getMachineFunction().
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003957 getOrCreateDebugLocID(SrcFile, Line, 0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003958 }
3959
3960 return 0;
3961 }
3962 case Intrinsic::dbg_declare: {
Devang Patel83489bb2009-01-13 00:35:13 +00003963 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003964 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3965 Value *Variable = DI.getVariable();
Devang Patelb79b5352009-01-19 23:21:49 +00003966 if (DW && DW->ValidDebugInfo(Variable))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003967 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003968 getValue(DI.getAddress()), getValue(Variable)));
3969 return 0;
3970 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003971
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003972 case Intrinsic::eh_exception: {
3973 if (!CurMBB->isLandingPad()) {
3974 // FIXME: Mark exception register as live in. Hack for PR1508.
3975 unsigned Reg = TLI.getExceptionAddressRegister();
3976 if (Reg) CurMBB->addLiveIn(Reg);
3977 }
3978 // Insert the EXCEPTIONADDR instruction.
3979 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3980 SDValue Ops[1];
3981 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003982 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003983 setValue(&I, Op);
3984 DAG.setRoot(Op.getValue(1));
3985 return 0;
3986 }
3987
3988 case Intrinsic::eh_selector_i32:
3989 case Intrinsic::eh_selector_i64: {
3990 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3991 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
3992 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003993
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003994 if (MMI) {
3995 if (CurMBB->isLandingPad())
3996 AddCatchInfo(I, MMI, CurMBB);
3997 else {
3998#ifndef NDEBUG
3999 FuncInfo.CatchInfoLost.insert(&I);
4000#endif
4001 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4002 unsigned Reg = TLI.getExceptionSelectorRegister();
4003 if (Reg) CurMBB->addLiveIn(Reg);
4004 }
4005
4006 // Insert the EHSELECTION instruction.
4007 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4008 SDValue Ops[2];
4009 Ops[0] = getValue(I.getOperand(1));
4010 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004011 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004012 setValue(&I, Op);
4013 DAG.setRoot(Op.getValue(1));
4014 } else {
4015 setValue(&I, DAG.getConstant(0, VT));
4016 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004017
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004018 return 0;
4019 }
4020
4021 case Intrinsic::eh_typeid_for_i32:
4022 case Intrinsic::eh_typeid_for_i64: {
4023 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4024 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4025 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004026
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004027 if (MMI) {
4028 // Find the type id for the given typeinfo.
4029 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4030
4031 unsigned TypeID = MMI->getTypeIDFor(GV);
4032 setValue(&I, DAG.getConstant(TypeID, VT));
4033 } else {
4034 // Return something different to eh_selector.
4035 setValue(&I, DAG.getConstant(1, VT));
4036 }
4037
4038 return 0;
4039 }
4040
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004041 case Intrinsic::eh_return_i32:
4042 case Intrinsic::eh_return_i64:
4043 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004044 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004045 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004046 MVT::Other,
4047 getControlRoot(),
4048 getValue(I.getOperand(1)),
4049 getValue(I.getOperand(2))));
4050 } else {
4051 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4052 }
4053
4054 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004055 case Intrinsic::eh_unwind_init:
4056 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4057 MMI->setCallsUnwindInit(true);
4058 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004059
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004060 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004061
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004062 case Intrinsic::eh_dwarf_cfa: {
4063 MVT VT = getValue(I.getOperand(1)).getValueType();
4064 SDValue CfaArg;
4065 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004066 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004067 TLI.getPointerTy(), getValue(I.getOperand(1)));
4068 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004069 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004070 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004071
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004072 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004073 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004074 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004075 TLI.getPointerTy()),
4076 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004077 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004078 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004079 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004080 TLI.getPointerTy(),
4081 DAG.getConstant(0,
4082 TLI.getPointerTy())),
4083 Offset));
4084 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004085 }
4086
Mon P Wang77cdf302008-11-10 20:54:11 +00004087 case Intrinsic::convertff:
4088 case Intrinsic::convertfsi:
4089 case Intrinsic::convertfui:
4090 case Intrinsic::convertsif:
4091 case Intrinsic::convertuif:
4092 case Intrinsic::convertss:
4093 case Intrinsic::convertsu:
4094 case Intrinsic::convertus:
4095 case Intrinsic::convertuu: {
4096 ISD::CvtCode Code = ISD::CVT_INVALID;
4097 switch (Intrinsic) {
4098 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4099 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4100 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4101 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4102 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4103 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4104 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4105 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4106 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4107 }
4108 MVT DestVT = TLI.getValueType(I.getType());
4109 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004110 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004111 DAG.getValueType(DestVT),
4112 DAG.getValueType(getValue(Op1).getValueType()),
4113 getValue(I.getOperand(2)),
4114 getValue(I.getOperand(3)),
4115 Code));
4116 return 0;
4117 }
4118
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004119 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004120 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004121 getValue(I.getOperand(1)).getValueType(),
4122 getValue(I.getOperand(1))));
4123 return 0;
4124 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004125 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004126 getValue(I.getOperand(1)).getValueType(),
4127 getValue(I.getOperand(1)),
4128 getValue(I.getOperand(2))));
4129 return 0;
4130 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004131 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004132 getValue(I.getOperand(1)).getValueType(),
4133 getValue(I.getOperand(1))));
4134 return 0;
4135 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004136 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004137 getValue(I.getOperand(1)).getValueType(),
4138 getValue(I.getOperand(1))));
4139 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004140 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004141 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004142 return 0;
4143 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004144 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004145 return 0;
4146 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004147 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004148 return 0;
4149 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004150 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004151 return 0;
4152 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004153 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004154 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004155 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004156 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004157 return 0;
4158 case Intrinsic::pcmarker: {
4159 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004160 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004161 return 0;
4162 }
4163 case Intrinsic::readcyclecounter: {
4164 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004165 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004166 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
4167 &Op, 1);
4168 setValue(&I, Tmp);
4169 DAG.setRoot(Tmp.getValue(1));
4170 return 0;
4171 }
4172 case Intrinsic::part_select: {
4173 // Currently not implemented: just abort
4174 assert(0 && "part_select intrinsic not implemented");
4175 abort();
4176 }
4177 case Intrinsic::part_set: {
4178 // Currently not implemented: just abort
4179 assert(0 && "part_set intrinsic not implemented");
4180 abort();
4181 }
4182 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004183 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004184 getValue(I.getOperand(1)).getValueType(),
4185 getValue(I.getOperand(1))));
4186 return 0;
4187 case Intrinsic::cttz: {
4188 SDValue Arg = getValue(I.getOperand(1));
4189 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004190 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004191 setValue(&I, result);
4192 return 0;
4193 }
4194 case Intrinsic::ctlz: {
4195 SDValue Arg = getValue(I.getOperand(1));
4196 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004197 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004198 setValue(&I, result);
4199 return 0;
4200 }
4201 case Intrinsic::ctpop: {
4202 SDValue Arg = getValue(I.getOperand(1));
4203 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004204 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004205 setValue(&I, result);
4206 return 0;
4207 }
4208 case Intrinsic::stacksave: {
4209 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004210 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004211 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
4212 setValue(&I, Tmp);
4213 DAG.setRoot(Tmp.getValue(1));
4214 return 0;
4215 }
4216 case Intrinsic::stackrestore: {
4217 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004218 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004219 return 0;
4220 }
Bill Wendling57344502008-11-18 11:01:33 +00004221 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004222 // Emit code into the DAG to store the stack guard onto the stack.
4223 MachineFunction &MF = DAG.getMachineFunction();
4224 MachineFrameInfo *MFI = MF.getFrameInfo();
4225 MVT PtrTy = TLI.getPointerTy();
4226
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004227 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4228 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004229
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004230 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004231 MFI->setStackProtectorIndex(FI);
4232
4233 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4234
4235 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004236 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004237 PseudoSourceValue::getFixedStack(FI),
4238 0, true);
4239 setValue(&I, Result);
4240 DAG.setRoot(Result);
4241 return 0;
4242 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004243 case Intrinsic::var_annotation:
4244 // Discard annotate attributes
4245 return 0;
4246
4247 case Intrinsic::init_trampoline: {
4248 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4249
4250 SDValue Ops[6];
4251 Ops[0] = getRoot();
4252 Ops[1] = getValue(I.getOperand(1));
4253 Ops[2] = getValue(I.getOperand(2));
4254 Ops[3] = getValue(I.getOperand(3));
4255 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4256 Ops[5] = DAG.getSrcValue(F);
4257
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004258 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004259 DAG.getNodeValueTypes(TLI.getPointerTy(),
4260 MVT::Other), 2,
4261 Ops, 6);
4262
4263 setValue(&I, Tmp);
4264 DAG.setRoot(Tmp.getValue(1));
4265 return 0;
4266 }
4267
4268 case Intrinsic::gcroot:
4269 if (GFI) {
4270 Value *Alloca = I.getOperand(1);
4271 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004272
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004273 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4274 GFI->addStackRoot(FI->getIndex(), TypeMap);
4275 }
4276 return 0;
4277
4278 case Intrinsic::gcread:
4279 case Intrinsic::gcwrite:
4280 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4281 return 0;
4282
4283 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004284 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004285 return 0;
4286 }
4287
4288 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004289 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004290 return 0;
4291 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004292
Bill Wendlingef375462008-11-21 02:38:44 +00004293 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004294 return implVisitAluOverflow(I, ISD::UADDO);
4295 case Intrinsic::sadd_with_overflow:
4296 return implVisitAluOverflow(I, ISD::SADDO);
4297 case Intrinsic::usub_with_overflow:
4298 return implVisitAluOverflow(I, ISD::USUBO);
4299 case Intrinsic::ssub_with_overflow:
4300 return implVisitAluOverflow(I, ISD::SSUBO);
4301 case Intrinsic::umul_with_overflow:
4302 return implVisitAluOverflow(I, ISD::UMULO);
4303 case Intrinsic::smul_with_overflow:
4304 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004305
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004306 case Intrinsic::prefetch: {
4307 SDValue Ops[4];
4308 Ops[0] = getRoot();
4309 Ops[1] = getValue(I.getOperand(1));
4310 Ops[2] = getValue(I.getOperand(2));
4311 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004312 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004313 return 0;
4314 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004315
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004316 case Intrinsic::memory_barrier: {
4317 SDValue Ops[6];
4318 Ops[0] = getRoot();
4319 for (int x = 1; x < 6; ++x)
4320 Ops[x] = getValue(I.getOperand(x));
4321
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004322 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004323 return 0;
4324 }
4325 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004326 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004327 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004328 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004329 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4330 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004331 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004332 getValue(I.getOperand(2)),
4333 getValue(I.getOperand(3)),
4334 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004335 setValue(&I, L);
4336 DAG.setRoot(L.getValue(1));
4337 return 0;
4338 }
4339 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004340 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004341 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004342 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004343 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004344 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004345 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004346 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004347 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004348 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004349 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004350 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004351 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004352 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004353 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004354 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004355 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004356 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004357 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004358 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004359 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004360 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004361 }
4362}
4363
4364
4365void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4366 bool IsTailCall,
4367 MachineBasicBlock *LandingPad) {
4368 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4369 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4370 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4371 unsigned BeginLabel = 0, EndLabel = 0;
4372
4373 TargetLowering::ArgListTy Args;
4374 TargetLowering::ArgListEntry Entry;
4375 Args.reserve(CS.arg_size());
4376 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4377 i != e; ++i) {
4378 SDValue ArgNode = getValue(*i);
4379 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4380
4381 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004382 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4383 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4384 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4385 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4386 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4387 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004388 Entry.Alignment = CS.getParamAlignment(attrInd);
4389 Args.push_back(Entry);
4390 }
4391
4392 if (LandingPad && MMI) {
4393 // Insert a label before the invoke call to mark the try range. This can be
4394 // used to detect deletion of the invoke via the MachineModuleInfo.
4395 BeginLabel = MMI->NextLabelID();
4396 // Both PendingLoads and PendingExports must be flushed here;
4397 // this call might not return.
4398 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004399 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4400 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004401 }
4402
4403 std::pair<SDValue,SDValue> Result =
4404 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004405 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004406 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
4407 CS.paramHasAttr(0, Attribute::InReg),
4408 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004409 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004410 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004411 if (CS.getType() != Type::VoidTy)
4412 setValue(CS.getInstruction(), Result.first);
4413 DAG.setRoot(Result.second);
4414
4415 if (LandingPad && MMI) {
4416 // Insert a label at the end of the invoke call to mark the try range. This
4417 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4418 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004419 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4420 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004421
4422 // Inform MachineModuleInfo of range.
4423 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4424 }
4425}
4426
4427
4428void SelectionDAGLowering::visitCall(CallInst &I) {
4429 const char *RenameFn = 0;
4430 if (Function *F = I.getCalledFunction()) {
4431 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004432 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4433 if (II) {
4434 if (unsigned IID = II->getIntrinsicID(F)) {
4435 RenameFn = visitIntrinsicCall(I, IID);
4436 if (!RenameFn)
4437 return;
4438 }
4439 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004440 if (unsigned IID = F->getIntrinsicID()) {
4441 RenameFn = visitIntrinsicCall(I, IID);
4442 if (!RenameFn)
4443 return;
4444 }
4445 }
4446
4447 // Check for well-known libc/libm calls. If the function is internal, it
4448 // can't be a library call.
4449 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004450 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004451 const char *NameStr = F->getNameStart();
4452 if (NameStr[0] == 'c' &&
4453 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4454 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4455 if (I.getNumOperands() == 3 && // Basic sanity checks.
4456 I.getOperand(1)->getType()->isFloatingPoint() &&
4457 I.getType() == I.getOperand(1)->getType() &&
4458 I.getType() == I.getOperand(2)->getType()) {
4459 SDValue LHS = getValue(I.getOperand(1));
4460 SDValue RHS = getValue(I.getOperand(2));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004461 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004462 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004463 return;
4464 }
4465 } else if (NameStr[0] == 'f' &&
4466 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4467 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4468 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4469 if (I.getNumOperands() == 2 && // Basic sanity checks.
4470 I.getOperand(1)->getType()->isFloatingPoint() &&
4471 I.getType() == I.getOperand(1)->getType()) {
4472 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004473 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004474 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004475 return;
4476 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004477 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004478 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4479 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4480 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4481 if (I.getNumOperands() == 2 && // Basic sanity checks.
4482 I.getOperand(1)->getType()->isFloatingPoint() &&
4483 I.getType() == I.getOperand(1)->getType()) {
4484 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004485 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004486 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004487 return;
4488 }
4489 } else if (NameStr[0] == 'c' &&
4490 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4491 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4492 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4493 if (I.getNumOperands() == 2 && // Basic sanity checks.
4494 I.getOperand(1)->getType()->isFloatingPoint() &&
4495 I.getType() == I.getOperand(1)->getType()) {
4496 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004497 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004498 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004499 return;
4500 }
4501 }
4502 }
4503 } else if (isa<InlineAsm>(I.getOperand(0))) {
4504 visitInlineAsm(&I);
4505 return;
4506 }
4507
4508 SDValue Callee;
4509 if (!RenameFn)
4510 Callee = getValue(I.getOperand(0));
4511 else
Bill Wendling056292f2008-09-16 21:48:12 +00004512 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004513
4514 LowerCallTo(&I, Callee, I.isTailCall());
4515}
4516
4517
4518/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004519/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004520/// Chain/Flag as the input and updates them for the output Chain/Flag.
4521/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004522SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004523 SDValue &Chain,
4524 SDValue *Flag) const {
4525 // Assemble the legal parts into the final values.
4526 SmallVector<SDValue, 4> Values(ValueVTs.size());
4527 SmallVector<SDValue, 8> Parts;
4528 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4529 // Copy the legal parts from the registers.
4530 MVT ValueVT = ValueVTs[Value];
4531 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4532 MVT RegisterVT = RegVTs[Value];
4533
4534 Parts.resize(NumRegs);
4535 for (unsigned i = 0; i != NumRegs; ++i) {
4536 SDValue P;
4537 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004538 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004539 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004540 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004541 *Flag = P.getValue(2);
4542 }
4543 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004544
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004545 // If the source register was virtual and if we know something about it,
4546 // add an assert node.
4547 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4548 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4549 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4550 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4551 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4552 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004553
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004554 unsigned RegSize = RegisterVT.getSizeInBits();
4555 unsigned NumSignBits = LOI.NumSignBits;
4556 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004557
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004558 // FIXME: We capture more information than the dag can represent. For
4559 // now, just use the tightest assertzext/assertsext possible.
4560 bool isSExt = true;
4561 MVT FromVT(MVT::Other);
4562 if (NumSignBits == RegSize)
4563 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4564 else if (NumZeroBits >= RegSize-1)
4565 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4566 else if (NumSignBits > RegSize-8)
4567 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
4568 else if (NumZeroBits >= RegSize-9)
4569 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4570 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004571 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004572 else if (NumZeroBits >= RegSize-17)
Bill Wendling181b6272008-10-19 20:34:04 +00004573 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004574 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004575 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004576 else if (NumZeroBits >= RegSize-33)
Bill Wendling181b6272008-10-19 20:34:04 +00004577 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004578
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004579 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004580 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004581 RegisterVT, P, DAG.getValueType(FromVT));
4582
4583 }
4584 }
4585 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004586
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004587 Parts[i] = P;
4588 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004589
Dale Johannesen66978ee2009-01-31 02:22:37 +00004590 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
4591 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004592 Part += NumRegs;
4593 Parts.clear();
4594 }
4595
Dale Johannesen66978ee2009-01-31 02:22:37 +00004596 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004597 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4598 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004599}
4600
4601/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004602/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004603/// Chain/Flag as the input and updates them for the output Chain/Flag.
4604/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004605void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004606 SDValue &Chain, SDValue *Flag) const {
4607 // Get the list of the values's legal parts.
4608 unsigned NumRegs = Regs.size();
4609 SmallVector<SDValue, 8> Parts(NumRegs);
4610 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4611 MVT ValueVT = ValueVTs[Value];
4612 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4613 MVT RegisterVT = RegVTs[Value];
4614
Dale Johannesen66978ee2009-01-31 02:22:37 +00004615 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004616 &Parts[Part], NumParts, RegisterVT);
4617 Part += NumParts;
4618 }
4619
4620 // Copy the parts into the registers.
4621 SmallVector<SDValue, 8> Chains(NumRegs);
4622 for (unsigned i = 0; i != NumRegs; ++i) {
4623 SDValue Part;
4624 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004625 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004626 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004627 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004628 *Flag = Part.getValue(1);
4629 }
4630 Chains[i] = Part.getValue(0);
4631 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004632
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004633 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004634 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004635 // flagged to it. That is the CopyToReg nodes and the user are considered
4636 // a single scheduling unit. If we create a TokenFactor and return it as
4637 // chain, then the TokenFactor is both a predecessor (operand) of the
4638 // user as well as a successor (the TF operands are flagged to the user).
4639 // c1, f1 = CopyToReg
4640 // c2, f2 = CopyToReg
4641 // c3 = TokenFactor c1, c2
4642 // ...
4643 // = op c3, ..., f2
4644 Chain = Chains[NumRegs-1];
4645 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004646 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004647}
4648
4649/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004650/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004651/// values added into it.
4652void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
4653 std::vector<SDValue> &Ops) const {
4654 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
4655 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
4656 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4657 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4658 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004659 for (unsigned i = 0; i != NumRegs; ++i) {
4660 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004661 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004662 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004663 }
4664}
4665
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004666/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004667/// i.e. it isn't a stack pointer or some other special register, return the
4668/// register class for the register. Otherwise, return null.
4669static const TargetRegisterClass *
4670isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4671 const TargetLowering &TLI,
4672 const TargetRegisterInfo *TRI) {
4673 MVT FoundVT = MVT::Other;
4674 const TargetRegisterClass *FoundRC = 0;
4675 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4676 E = TRI->regclass_end(); RCI != E; ++RCI) {
4677 MVT ThisVT = MVT::Other;
4678
4679 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004680 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004681 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4682 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4683 I != E; ++I) {
4684 if (TLI.isTypeLegal(*I)) {
4685 // If we have already found this register in a different register class,
4686 // choose the one with the largest VT specified. For example, on
4687 // PowerPC, we favor f64 register classes over f32.
4688 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4689 ThisVT = *I;
4690 break;
4691 }
4692 }
4693 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004694
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004695 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004696
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004697 // NOTE: This isn't ideal. In particular, this might allocate the
4698 // frame pointer in functions that need it (due to them not being taken
4699 // out of allocation, because a variable sized allocation hasn't been seen
4700 // yet). This is a slight code pessimization, but should still work.
4701 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4702 E = RC->allocation_order_end(MF); I != E; ++I)
4703 if (*I == Reg) {
4704 // We found a matching register class. Keep looking at others in case
4705 // we find one with larger registers that this physreg is also in.
4706 FoundRC = RC;
4707 FoundVT = ThisVT;
4708 break;
4709 }
4710 }
4711 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004712}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004713
4714
4715namespace llvm {
4716/// AsmOperandInfo - This contains information for each constraint that we are
4717/// lowering.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004718struct VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004719 public TargetLowering::AsmOperandInfo {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004720 /// CallOperand - If this is the result output operand or a clobber
4721 /// this is null, otherwise it is the incoming operand to the CallInst.
4722 /// This gets modified as the asm is processed.
4723 SDValue CallOperand;
4724
4725 /// AssignedRegs - If this is a register or register class operand, this
4726 /// contains the set of register corresponding to the operand.
4727 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004728
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004729 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4730 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4731 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004732
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004733 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4734 /// busy in OutputRegs/InputRegs.
4735 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004736 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004737 std::set<unsigned> &InputRegs,
4738 const TargetRegisterInfo &TRI) const {
4739 if (isOutReg) {
4740 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4741 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4742 }
4743 if (isInReg) {
4744 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4745 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4746 }
4747 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004748
Chris Lattner81249c92008-10-17 17:05:25 +00004749 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4750 /// corresponds to. If there is no Value* for this operand, it returns
4751 /// MVT::Other.
4752 MVT getCallOperandValMVT(const TargetLowering &TLI,
4753 const TargetData *TD) const {
4754 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004755
Chris Lattner81249c92008-10-17 17:05:25 +00004756 if (isa<BasicBlock>(CallOperandVal))
4757 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004758
Chris Lattner81249c92008-10-17 17:05:25 +00004759 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004760
Chris Lattner81249c92008-10-17 17:05:25 +00004761 // If this is an indirect operand, the operand is a pointer to the
4762 // accessed type.
4763 if (isIndirect)
4764 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004765
Chris Lattner81249c92008-10-17 17:05:25 +00004766 // If OpTy is not a single value, it may be a struct/union that we
4767 // can tile with integers.
4768 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4769 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4770 switch (BitSize) {
4771 default: break;
4772 case 1:
4773 case 8:
4774 case 16:
4775 case 32:
4776 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004777 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004778 OpTy = IntegerType::get(BitSize);
4779 break;
4780 }
4781 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004782
Chris Lattner81249c92008-10-17 17:05:25 +00004783 return TLI.getValueType(OpTy, true);
4784 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004785
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004786private:
4787 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4788 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004789 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004790 const TargetRegisterInfo &TRI) {
4791 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4792 Regs.insert(Reg);
4793 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4794 for (; *Aliases; ++Aliases)
4795 Regs.insert(*Aliases);
4796 }
4797};
4798} // end llvm namespace.
4799
4800
4801/// GetRegistersForValue - Assign registers (virtual or physical) for the
4802/// specified operand. We prefer to assign virtual registers, to allow the
4803/// register allocator handle the assignment process. However, if the asm uses
4804/// features that we can't model on machineinstrs, we have SDISel do the
4805/// allocation. This produces generally horrible, but correct, code.
4806///
4807/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004808/// Input and OutputRegs are the set of already allocated physical registers.
4809///
4810void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004811GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004812 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004813 std::set<unsigned> &InputRegs) {
4814 // Compute whether this value requires an input register, an output register,
4815 // or both.
4816 bool isOutReg = false;
4817 bool isInReg = false;
4818 switch (OpInfo.Type) {
4819 case InlineAsm::isOutput:
4820 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004821
4822 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004823 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004824 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004825 break;
4826 case InlineAsm::isInput:
4827 isInReg = true;
4828 isOutReg = false;
4829 break;
4830 case InlineAsm::isClobber:
4831 isOutReg = true;
4832 isInReg = true;
4833 break;
4834 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004835
4836
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004837 MachineFunction &MF = DAG.getMachineFunction();
4838 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004839
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004840 // If this is a constraint for a single physreg, or a constraint for a
4841 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004842 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004843 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4844 OpInfo.ConstraintVT);
4845
4846 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004847 if (OpInfo.ConstraintVT != MVT::Other) {
4848 // If this is a FP input in an integer register (or visa versa) insert a bit
4849 // cast of the input value. More generally, handle any case where the input
4850 // value disagrees with the register class we plan to stick this in.
4851 if (OpInfo.Type == InlineAsm::isInput &&
4852 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4853 // Try to convert to the first MVT that the reg class contains. If the
4854 // types are identical size, use a bitcast to convert (e.g. two differing
4855 // vector types).
4856 MVT RegVT = *PhysReg.second->vt_begin();
4857 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004858 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004859 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004860 OpInfo.ConstraintVT = RegVT;
4861 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4862 // If the input is a FP value and we want it in FP registers, do a
4863 // bitcast to the corresponding integer type. This turns an f64 value
4864 // into i64, which can be passed with two i32 values on a 32-bit
4865 // machine.
4866 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004867 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004868 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004869 OpInfo.ConstraintVT = RegVT;
4870 }
4871 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004872
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004873 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004874 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004875
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004876 MVT RegVT;
4877 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004878
4879 // If this is a constraint for a specific physical register, like {r17},
4880 // assign it now.
4881 if (PhysReg.first) {
4882 if (OpInfo.ConstraintVT == MVT::Other)
4883 ValueVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004884
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004885 // Get the actual register value type. This is important, because the user
4886 // may have asked for (e.g.) the AX register in i32 type. We need to
4887 // remember that AX is actually i16 to get the right extension.
4888 RegVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004889
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004890 // This is a explicit reference to a physical register.
4891 Regs.push_back(PhysReg.first);
4892
4893 // If this is an expanded reference, add the rest of the regs to Regs.
4894 if (NumRegs != 1) {
4895 TargetRegisterClass::iterator I = PhysReg.second->begin();
4896 for (; *I != PhysReg.first; ++I)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004897 assert(I != PhysReg.second->end() && "Didn't find reg!");
4898
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004899 // Already added the first reg.
4900 --NumRegs; ++I;
4901 for (; NumRegs; --NumRegs, ++I) {
4902 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
4903 Regs.push_back(*I);
4904 }
4905 }
4906 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4907 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4908 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4909 return;
4910 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004911
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004912 // Otherwise, if this was a reference to an LLVM register class, create vregs
4913 // for this reference.
4914 std::vector<unsigned> RegClassRegs;
4915 const TargetRegisterClass *RC = PhysReg.second;
4916 if (RC) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004917 // If this is a tied register, our regalloc doesn't know how to maintain
Chris Lattner58f15c42008-10-17 16:21:11 +00004918 // the constraint, so we have to pick a register to pin the input/output to.
4919 // If it isn't a matched constraint, go ahead and create vreg and let the
4920 // regalloc do its thing.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004921 if (!OpInfo.hasMatchingInput()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004922 RegVT = *PhysReg.second->vt_begin();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004923 if (OpInfo.ConstraintVT == MVT::Other)
4924 ValueVT = RegVT;
4925
4926 // Create the appropriate number of virtual registers.
4927 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4928 for (; NumRegs; --NumRegs)
4929 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004930
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004931 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4932 return;
4933 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004934
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004935 // Otherwise, we can't allocate it. Let the code below figure out how to
4936 // maintain these constraints.
4937 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004938
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004939 } else {
4940 // This is a reference to a register class that doesn't directly correspond
4941 // to an LLVM register class. Allocate NumRegs consecutive, available,
4942 // registers from the class.
4943 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4944 OpInfo.ConstraintVT);
4945 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004946
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004947 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4948 unsigned NumAllocated = 0;
4949 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4950 unsigned Reg = RegClassRegs[i];
4951 // See if this register is available.
4952 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4953 (isInReg && InputRegs.count(Reg))) { // Already used.
4954 // Make sure we find consecutive registers.
4955 NumAllocated = 0;
4956 continue;
4957 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004958
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004959 // Check to see if this register is allocatable (i.e. don't give out the
4960 // stack pointer).
4961 if (RC == 0) {
4962 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4963 if (!RC) { // Couldn't allocate this register.
4964 // Reset NumAllocated to make sure we return consecutive registers.
4965 NumAllocated = 0;
4966 continue;
4967 }
4968 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004969
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004970 // Okay, this register is good, we can use it.
4971 ++NumAllocated;
4972
4973 // If we allocated enough consecutive registers, succeed.
4974 if (NumAllocated == NumRegs) {
4975 unsigned RegStart = (i-NumAllocated)+1;
4976 unsigned RegEnd = i+1;
4977 // Mark all of the allocated registers used.
4978 for (unsigned i = RegStart; i != RegEnd; ++i)
4979 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004980
4981 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004982 OpInfo.ConstraintVT);
4983 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4984 return;
4985 }
4986 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004987
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004988 // Otherwise, we couldn't allocate enough registers for this.
4989}
4990
Evan Chengda43bcf2008-09-24 00:05:32 +00004991/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
4992/// processed uses a memory 'm' constraint.
4993static bool
4994hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00004995 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00004996 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
4997 InlineAsm::ConstraintInfo &CI = CInfos[i];
4998 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
4999 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5000 if (CType == TargetLowering::C_Memory)
5001 return true;
5002 }
5003 }
5004
5005 return false;
5006}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005007
5008/// visitInlineAsm - Handle a call to an InlineAsm object.
5009///
5010void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5011 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5012
5013 /// ConstraintOperands - Information about all of the constraints.
5014 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005015
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005016 SDValue Chain = getRoot();
5017 SDValue Flag;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005018
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005019 std::set<unsigned> OutputRegs, InputRegs;
5020
5021 // Do a prepass over the constraints, canonicalizing them, and building up the
5022 // ConstraintOperands list.
5023 std::vector<InlineAsm::ConstraintInfo>
5024 ConstraintInfos = IA->ParseConstraints();
5025
Evan Chengda43bcf2008-09-24 00:05:32 +00005026 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005027
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005028 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5029 unsigned ResNo = 0; // ResNo - The result number of the next output.
5030 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5031 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5032 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005033
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005034 MVT OpVT = MVT::Other;
5035
5036 // Compute the value type for each operand.
5037 switch (OpInfo.Type) {
5038 case InlineAsm::isOutput:
5039 // Indirect outputs just consume an argument.
5040 if (OpInfo.isIndirect) {
5041 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5042 break;
5043 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005044
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005045 // The return value of the call is this value. As such, there is no
5046 // corresponding argument.
5047 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5048 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5049 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5050 } else {
5051 assert(ResNo == 0 && "Asm only has one result!");
5052 OpVT = TLI.getValueType(CS.getType());
5053 }
5054 ++ResNo;
5055 break;
5056 case InlineAsm::isInput:
5057 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5058 break;
5059 case InlineAsm::isClobber:
5060 // Nothing to do.
5061 break;
5062 }
5063
5064 // If this is an input or an indirect output, process the call argument.
5065 // BasicBlocks are labels, currently appearing only in asm's.
5066 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005067 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005068 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005069 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005070 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005071 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005072
Chris Lattner81249c92008-10-17 17:05:25 +00005073 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005074 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005075
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005076 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005077 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005078
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005079 // Second pass over the constraints: compute which constraint option to use
5080 // and assign registers to constraints that want a specific physreg.
5081 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5082 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005083
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005084 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005085 // matching input. If their types mismatch, e.g. one is an integer, the
5086 // other is floating point, or their sizes are different, flag it as an
5087 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005088 if (OpInfo.hasMatchingInput()) {
5089 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5090 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005091 if ((OpInfo.ConstraintVT.isInteger() !=
5092 Input.ConstraintVT.isInteger()) ||
5093 (OpInfo.ConstraintVT.getSizeInBits() !=
5094 Input.ConstraintVT.getSizeInBits())) {
5095 cerr << "Unsupported asm: input constraint with a matching output "
5096 << "constraint of incompatible type!\n";
5097 exit(1);
5098 }
5099 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005100 }
5101 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005102
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005103 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005104 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005105
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005106 // If this is a memory input, and if the operand is not indirect, do what we
5107 // need to to provide an address for the memory input.
5108 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5109 !OpInfo.isIndirect) {
5110 assert(OpInfo.Type == InlineAsm::isInput &&
5111 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005112
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005113 // Memory operands really want the address of the value. If we don't have
5114 // an indirect input, put it in the constpool if we can, otherwise spill
5115 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005116
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005117 // If the operand is a float, integer, or vector constant, spill to a
5118 // constant pool entry to get its address.
5119 Value *OpVal = OpInfo.CallOperandVal;
5120 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5121 isa<ConstantVector>(OpVal)) {
5122 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5123 TLI.getPointerTy());
5124 } else {
5125 // Otherwise, create a stack slot and emit a store to it before the
5126 // asm.
5127 const Type *Ty = OpVal->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005128 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005129 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5130 MachineFunction &MF = DAG.getMachineFunction();
5131 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5132 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005133 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005134 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005135 OpInfo.CallOperand = StackSlot;
5136 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005137
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005138 // There is no longer a Value* corresponding to this operand.
5139 OpInfo.CallOperandVal = 0;
5140 // It is now an indirect operand.
5141 OpInfo.isIndirect = true;
5142 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005143
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005144 // If this constraint is for a specific register, allocate it before
5145 // anything else.
5146 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005147 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005148 }
5149 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005150
5151
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005152 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005153 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005154 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5155 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005156
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005157 // C_Register operands have already been allocated, Other/Memory don't need
5158 // to be.
5159 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005160 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005161 }
5162
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005163 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5164 std::vector<SDValue> AsmNodeOperands;
5165 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5166 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005167 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005168
5169
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005170 // Loop over all of the inputs, copying the operand values into the
5171 // appropriate registers and processing the output regs.
5172 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005173
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005174 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5175 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005176
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005177 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5178 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5179
5180 switch (OpInfo.Type) {
5181 case InlineAsm::isOutput: {
5182 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5183 OpInfo.ConstraintType != TargetLowering::C_Register) {
5184 // Memory output, or 'other' output (e.g. 'X' constraint).
5185 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5186
5187 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005188 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5189 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005190 TLI.getPointerTy()));
5191 AsmNodeOperands.push_back(OpInfo.CallOperand);
5192 break;
5193 }
5194
5195 // Otherwise, this is a register or register class output.
5196
5197 // Copy the output from the appropriate register. Find a register that
5198 // we can use.
5199 if (OpInfo.AssignedRegs.Regs.empty()) {
5200 cerr << "Couldn't allocate output reg for constraint '"
5201 << OpInfo.ConstraintCode << "'!\n";
5202 exit(1);
5203 }
5204
5205 // If this is an indirect operand, store through the pointer after the
5206 // asm.
5207 if (OpInfo.isIndirect) {
5208 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5209 OpInfo.CallOperandVal));
5210 } else {
5211 // This is the result value of the call.
5212 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5213 // Concatenate this output onto the outputs list.
5214 RetValRegs.append(OpInfo.AssignedRegs);
5215 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005216
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005217 // Add information to the INLINEASM node to know that this register is
5218 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005219 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5220 6 /* EARLYCLOBBER REGDEF */ :
5221 2 /* REGDEF */ ,
5222 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005223 break;
5224 }
5225 case InlineAsm::isInput: {
5226 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005227
Chris Lattner6bdcda32008-10-17 16:47:46 +00005228 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005229 // If this is required to match an output register we have already set,
5230 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005231 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005232
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005233 // Scan until we find the definition we already emitted of this operand.
5234 // When we find it, create a RegsForValue operand.
5235 unsigned CurOp = 2; // The first operand.
5236 for (; OperandNo; --OperandNo) {
5237 // Advance to the next operand.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005238 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005239 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005240 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
Dale Johannesen913d3df2008-09-12 17:49:03 +00005241 (NumOps & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
Dale Johannesen86b49f82008-09-24 01:07:17 +00005242 (NumOps & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005243 "Skipped past definitions?");
5244 CurOp += (NumOps>>3)+1;
5245 }
5246
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005247 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005248 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005249 if ((NumOps & 7) == 2 /*REGDEF*/
Dale Johannesen913d3df2008-09-12 17:49:03 +00005250 || (NumOps & 7) == 6 /* EARLYCLOBBER REGDEF */) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005251 // Add NumOps>>3 registers to MatchedRegs.
5252 RegsForValue MatchedRegs;
5253 MatchedRegs.TLI = &TLI;
5254 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
5255 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
5256 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
5257 unsigned Reg =
5258 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
5259 MatchedRegs.Regs.push_back(Reg);
5260 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005261
5262 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005263 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5264 Chain, &Flag);
Dale Johannesen86b49f82008-09-24 01:07:17 +00005265 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005266 break;
5267 } else {
Dale Johannesen86b49f82008-09-24 01:07:17 +00005268 assert(((NumOps & 7) == 4) && "Unknown matching constraint!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005269 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005270 // Add information to the INLINEASM node to know about this input.
Dale Johannesen91aac102008-09-17 21:13:11 +00005271 AsmNodeOperands.push_back(DAG.getTargetConstant(NumOps,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005272 TLI.getPointerTy()));
5273 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5274 break;
5275 }
5276 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005277
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005278 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005279 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005280 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005281
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005282 std::vector<SDValue> Ops;
5283 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005284 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005285 if (Ops.empty()) {
5286 cerr << "Invalid operand for inline asm constraint '"
5287 << OpInfo.ConstraintCode << "'!\n";
5288 exit(1);
5289 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005290
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005291 // Add information to the INLINEASM node to know about this input.
5292 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005293 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005294 TLI.getPointerTy()));
5295 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5296 break;
5297 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5298 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5299 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5300 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005301
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005302 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005303 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5304 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005305 TLI.getPointerTy()));
5306 AsmNodeOperands.push_back(InOperandVal);
5307 break;
5308 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005310 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5311 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5312 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005313 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005314 "Don't know how to handle indirect register inputs yet!");
5315
5316 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005317 if (OpInfo.AssignedRegs.Regs.empty()) {
5318 cerr << "Couldn't allocate output reg for constraint '"
5319 << OpInfo.ConstraintCode << "'!\n";
5320 exit(1);
5321 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005322
Dale Johannesen66978ee2009-01-31 02:22:37 +00005323 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5324 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005325
Dale Johannesen86b49f82008-09-24 01:07:17 +00005326 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/,
5327 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005328 break;
5329 }
5330 case InlineAsm::isClobber: {
5331 // Add the clobbered value to the operand list, so that the register
5332 // allocator is aware that the physreg got clobbered.
5333 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005334 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
5335 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005336 break;
5337 }
5338 }
5339 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005340
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005341 // Finish up input operands.
5342 AsmNodeOperands[0] = Chain;
5343 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005344
Dale Johannesen66978ee2009-01-31 02:22:37 +00005345 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005346 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
5347 &AsmNodeOperands[0], AsmNodeOperands.size());
5348 Flag = Chain.getValue(1);
5349
5350 // If this asm returns a register value, copy the result from that register
5351 // and set it as the value of the call.
5352 if (!RetValRegs.Regs.empty()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005353 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5354 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005355
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005356 // FIXME: Why don't we do this for inline asms with MRVs?
5357 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5358 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005359
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005360 // If any of the results of the inline asm is a vector, it may have the
5361 // wrong width/num elts. This can happen for register classes that can
5362 // contain multiple different value types. The preg or vreg allocated may
5363 // not have the same VT as was expected. Convert it to the right type
5364 // with bit_convert.
5365 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005366 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005367 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005368
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005369 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005370 ResultType.isInteger() && Val.getValueType().isInteger()) {
5371 // If a result value was tied to an input value, the computed result may
5372 // have a wider width than the expected result. Extract the relevant
5373 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005374 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005375 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005376
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005377 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005378 }
Dan Gohman95915732008-10-18 01:03:45 +00005379
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005380 setValue(CS.getInstruction(), Val);
5381 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005382
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005383 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005384
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005385 // Process indirect outputs, first output all of the flagged copies out of
5386 // physregs.
5387 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5388 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5389 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005390 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5391 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005392 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
5393 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005394
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005395 // Emit the non-flagged stores from the physregs.
5396 SmallVector<SDValue, 8> OutChains;
5397 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005398 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005399 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005400 getValue(StoresToEmit[i].second),
5401 StoresToEmit[i].second, 0));
5402 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005403 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005404 &OutChains[0], OutChains.size());
5405 DAG.setRoot(Chain);
5406}
5407
5408
5409void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5410 SDValue Src = getValue(I.getOperand(0));
5411
5412 MVT IntPtr = TLI.getPointerTy();
5413
5414 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005415 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005416 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005417 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005418
5419 // Scale the source by the type size.
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005420 uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005421 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005422 Src, DAG.getIntPtrConstant(ElementSize));
5423
5424 TargetLowering::ArgListTy Args;
5425 TargetLowering::ArgListEntry Entry;
5426 Entry.Node = Src;
5427 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5428 Args.push_back(Entry);
5429
5430 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005431 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005432 CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005433 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005434 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005435 setValue(&I, Result.first); // Pointers always fit in registers
5436 DAG.setRoot(Result.second);
5437}
5438
5439void SelectionDAGLowering::visitFree(FreeInst &I) {
5440 TargetLowering::ArgListTy Args;
5441 TargetLowering::ArgListEntry Entry;
5442 Entry.Node = getValue(I.getOperand(0));
5443 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5444 Args.push_back(Entry);
5445 MVT IntPtr = TLI.getPointerTy();
5446 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005447 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Dan Gohman1937e2f2008-09-16 01:42:28 +00005448 CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005449 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005450 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005451 DAG.setRoot(Result.second);
5452}
5453
5454void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005455 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005456 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005457 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005458 DAG.getSrcValue(I.getOperand(1))));
5459}
5460
5461void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005462 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5463 getRoot(), getValue(I.getOperand(0)),
5464 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005465 setValue(&I, V);
5466 DAG.setRoot(V.getValue(1));
5467}
5468
5469void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005470 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005471 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005472 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005473 DAG.getSrcValue(I.getOperand(1))));
5474}
5475
5476void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005477 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005478 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005479 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005480 getValue(I.getOperand(2)),
5481 DAG.getSrcValue(I.getOperand(1)),
5482 DAG.getSrcValue(I.getOperand(2))));
5483}
5484
5485/// TargetLowering::LowerArguments - This is the default LowerArguments
5486/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005487/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005488/// integrated into SDISel.
5489void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005490 SmallVectorImpl<SDValue> &ArgValues,
5491 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005492 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5493 SmallVector<SDValue, 3+16> Ops;
5494 Ops.push_back(DAG.getRoot());
5495 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5496 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5497
5498 // Add one result value for each formal argument.
5499 SmallVector<MVT, 16> RetVals;
5500 unsigned j = 1;
5501 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5502 I != E; ++I, ++j) {
5503 SmallVector<MVT, 4> ValueVTs;
5504 ComputeValueVTs(*this, I->getType(), ValueVTs);
5505 for (unsigned Value = 0, NumValues = ValueVTs.size();
5506 Value != NumValues; ++Value) {
5507 MVT VT = ValueVTs[Value];
5508 const Type *ArgTy = VT.getTypeForMVT();
5509 ISD::ArgFlagsTy Flags;
5510 unsigned OriginalAlignment =
5511 getTargetData()->getABITypeAlignment(ArgTy);
5512
Devang Patel05988662008-09-25 21:00:45 +00005513 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005514 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005515 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005516 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005517 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005518 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005519 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005520 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005521 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005522 Flags.setByVal();
5523 const PointerType *Ty = cast<PointerType>(I->getType());
5524 const Type *ElementTy = Ty->getElementType();
5525 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005526 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005527 // For ByVal, alignment should be passed from FE. BE will guess if
5528 // this info is not there but there are cases it cannot get right.
5529 if (F.getParamAlignment(j))
5530 FrameAlign = F.getParamAlignment(j);
5531 Flags.setByValAlign(FrameAlign);
5532 Flags.setByValSize(FrameSize);
5533 }
Devang Patel05988662008-09-25 21:00:45 +00005534 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005535 Flags.setNest();
5536 Flags.setOrigAlign(OriginalAlignment);
5537
5538 MVT RegisterVT = getRegisterType(VT);
5539 unsigned NumRegs = getNumRegisters(VT);
5540 for (unsigned i = 0; i != NumRegs; ++i) {
5541 RetVals.push_back(RegisterVT);
5542 ISD::ArgFlagsTy MyFlags = Flags;
5543 if (NumRegs > 1 && i == 0)
5544 MyFlags.setSplit();
5545 // if it isn't first piece, alignment must be 1
5546 else if (i > 0)
5547 MyFlags.setOrigAlign(1);
5548 Ops.push_back(DAG.getArgFlags(MyFlags));
5549 }
5550 }
5551 }
5552
5553 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005554
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005555 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005556 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005557 DAG.getVTList(&RetVals[0], RetVals.size()),
5558 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005559
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005560 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5561 // allows exposing the loads that may be part of the argument access to the
5562 // first DAGCombiner pass.
5563 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005564
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005565 // The number of results should match up, except that the lowered one may have
5566 // an extra flag result.
5567 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5568 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5569 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5570 && "Lowering produced unexpected number of results!");
5571
5572 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5573 if (Result != TmpRes.getNode() && Result->use_empty()) {
5574 HandleSDNode Dummy(DAG.getRoot());
5575 DAG.RemoveDeadNode(Result);
5576 }
5577
5578 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005579
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005580 unsigned NumArgRegs = Result->getNumValues() - 1;
5581 DAG.setRoot(SDValue(Result, NumArgRegs));
5582
5583 // Set up the return result vector.
5584 unsigned i = 0;
5585 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005586 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005587 ++I, ++Idx) {
5588 SmallVector<MVT, 4> ValueVTs;
5589 ComputeValueVTs(*this, I->getType(), ValueVTs);
5590 for (unsigned Value = 0, NumValues = ValueVTs.size();
5591 Value != NumValues; ++Value) {
5592 MVT VT = ValueVTs[Value];
5593 MVT PartVT = getRegisterType(VT);
5594
5595 unsigned NumParts = getNumRegisters(VT);
5596 SmallVector<SDValue, 4> Parts(NumParts);
5597 for (unsigned j = 0; j != NumParts; ++j)
5598 Parts[j] = SDValue(Result, i++);
5599
5600 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005601 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005602 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005603 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005604 AssertOp = ISD::AssertZext;
5605
Dale Johannesen66978ee2009-01-31 02:22:37 +00005606 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5607 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005608 }
5609 }
5610 assert(i == NumArgRegs && "Argument register count mismatch!");
5611}
5612
5613
5614/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5615/// implementation, which just inserts an ISD::CALL node, which is later custom
5616/// lowered by the target to something concrete. FIXME: When all targets are
5617/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5618std::pair<SDValue, SDValue>
5619TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5620 bool RetSExt, bool RetZExt, bool isVarArg,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005621 bool isInreg,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005622 unsigned CallingConv, bool isTailCall,
5623 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005624 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005625 assert((!isTailCall || PerformTailCallOpt) &&
5626 "isTailCall set when tail-call optimizations are disabled!");
5627
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005628 SmallVector<SDValue, 32> Ops;
5629 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005630 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005631
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005632 // Handle all of the outgoing arguments.
5633 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5634 SmallVector<MVT, 4> ValueVTs;
5635 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5636 for (unsigned Value = 0, NumValues = ValueVTs.size();
5637 Value != NumValues; ++Value) {
5638 MVT VT = ValueVTs[Value];
5639 const Type *ArgTy = VT.getTypeForMVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005640 SDValue Op = SDValue(Args[i].Node.getNode(),
5641 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005642 ISD::ArgFlagsTy Flags;
5643 unsigned OriginalAlignment =
5644 getTargetData()->getABITypeAlignment(ArgTy);
5645
5646 if (Args[i].isZExt)
5647 Flags.setZExt();
5648 if (Args[i].isSExt)
5649 Flags.setSExt();
5650 if (Args[i].isInReg)
5651 Flags.setInReg();
5652 if (Args[i].isSRet)
5653 Flags.setSRet();
5654 if (Args[i].isByVal) {
5655 Flags.setByVal();
5656 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5657 const Type *ElementTy = Ty->getElementType();
5658 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005659 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005660 // For ByVal, alignment should come from FE. BE will guess if this
5661 // info is not there but there are cases it cannot get right.
5662 if (Args[i].Alignment)
5663 FrameAlign = Args[i].Alignment;
5664 Flags.setByValAlign(FrameAlign);
5665 Flags.setByValSize(FrameSize);
5666 }
5667 if (Args[i].isNest)
5668 Flags.setNest();
5669 Flags.setOrigAlign(OriginalAlignment);
5670
5671 MVT PartVT = getRegisterType(VT);
5672 unsigned NumParts = getNumRegisters(VT);
5673 SmallVector<SDValue, 4> Parts(NumParts);
5674 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5675
5676 if (Args[i].isSExt)
5677 ExtendKind = ISD::SIGN_EXTEND;
5678 else if (Args[i].isZExt)
5679 ExtendKind = ISD::ZERO_EXTEND;
5680
Dale Johannesen66978ee2009-01-31 02:22:37 +00005681 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005682
5683 for (unsigned i = 0; i != NumParts; ++i) {
5684 // if it isn't first piece, alignment must be 1
5685 ISD::ArgFlagsTy MyFlags = Flags;
5686 if (NumParts > 1 && i == 0)
5687 MyFlags.setSplit();
5688 else if (i != 0)
5689 MyFlags.setOrigAlign(1);
5690
5691 Ops.push_back(Parts[i]);
5692 Ops.push_back(DAG.getArgFlags(MyFlags));
5693 }
5694 }
5695 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005696
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005697 // Figure out the result value types. We start by making a list of
5698 // the potentially illegal return value types.
5699 SmallVector<MVT, 4> LoweredRetTys;
5700 SmallVector<MVT, 4> RetTys;
5701 ComputeValueVTs(*this, RetTy, RetTys);
5702
5703 // Then we translate that to a list of legal types.
5704 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5705 MVT VT = RetTys[I];
5706 MVT RegisterVT = getRegisterType(VT);
5707 unsigned NumRegs = getNumRegisters(VT);
5708 for (unsigned i = 0; i != NumRegs; ++i)
5709 LoweredRetTys.push_back(RegisterVT);
5710 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005711
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005712 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005713
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005714 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005715 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005716 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005717 DAG.getVTList(&LoweredRetTys[0],
5718 LoweredRetTys.size()),
Dale Johannesen86098bd2008-09-26 19:31:26 +00005719 &Ops[0], Ops.size()
5720 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005721 Chain = Res.getValue(LoweredRetTys.size() - 1);
5722
5723 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005724 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005725 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5726
5727 if (RetSExt)
5728 AssertOp = ISD::AssertSext;
5729 else if (RetZExt)
5730 AssertOp = ISD::AssertZext;
5731
5732 SmallVector<SDValue, 4> ReturnValues;
5733 unsigned RegNo = 0;
5734 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5735 MVT VT = RetTys[I];
5736 MVT RegisterVT = getRegisterType(VT);
5737 unsigned NumRegs = getNumRegisters(VT);
5738 unsigned RegNoEnd = NumRegs + RegNo;
5739 SmallVector<SDValue, 4> Results;
5740 for (; RegNo != RegNoEnd; ++RegNo)
5741 Results.push_back(Res.getValue(RegNo));
5742 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005743 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005744 AssertOp);
5745 ReturnValues.push_back(ReturnValue);
5746 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005747 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005748 DAG.getVTList(&RetTys[0], RetTys.size()),
5749 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005750 }
5751
5752 return std::make_pair(Res, Chain);
5753}
5754
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005755void TargetLowering::LowerOperationWrapper(SDNode *N,
5756 SmallVectorImpl<SDValue> &Results,
5757 SelectionDAG &DAG) {
5758 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005759 if (Res.getNode())
5760 Results.push_back(Res);
5761}
5762
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005763SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
5764 assert(0 && "LowerOperation not implemented for this target!");
5765 abort();
5766 return SDValue();
5767}
5768
5769
5770void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5771 SDValue Op = getValue(V);
5772 assert((Op.getOpcode() != ISD::CopyFromReg ||
5773 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5774 "Copy from a reg to the same reg!");
5775 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5776
5777 RegsForValue RFV(TLI, Reg, V->getType());
5778 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005779 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005780 PendingExports.push_back(Chain);
5781}
5782
5783#include "llvm/CodeGen/SelectionDAGISel.h"
5784
5785void SelectionDAGISel::
5786LowerArguments(BasicBlock *LLVMBB) {
5787 // If this is the entry block, emit arguments.
5788 Function &F = *LLVMBB->getParent();
5789 SDValue OldRoot = SDL->DAG.getRoot();
5790 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005791 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005792
5793 unsigned a = 0;
5794 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5795 AI != E; ++AI) {
5796 SmallVector<MVT, 4> ValueVTs;
5797 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5798 unsigned NumValues = ValueVTs.size();
5799 if (!AI->use_empty()) {
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005800 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues,
5801 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005802 // If this argument is live outside of the entry block, insert a copy from
5803 // whereever we got it to the vreg that other BB's will reference it as.
5804 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo->ValueMap.find(AI);
5805 if (VMI != FuncInfo->ValueMap.end()) {
5806 SDL->CopyValueToVirtualRegister(AI, VMI->second);
5807 }
5808 }
5809 a += NumValues;
5810 }
5811
5812 // Finally, if the target has anything special to do, allow it to do so.
5813 // FIXME: this should insert code into the DAG!
5814 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5815}
5816
5817/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5818/// ensure constants are generated when needed. Remember the virtual registers
5819/// that need to be added to the Machine PHI nodes as input. We cannot just
5820/// directly add them, because expansion might result in multiple MBB's for one
5821/// BB. As such, the start of the BB might correspond to a different MBB than
5822/// the end.
5823///
5824void
5825SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5826 TerminatorInst *TI = LLVMBB->getTerminator();
5827
5828 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5829
5830 // Check successor nodes' PHI nodes that expect a constant to be available
5831 // from this block.
5832 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5833 BasicBlock *SuccBB = TI->getSuccessor(succ);
5834 if (!isa<PHINode>(SuccBB->begin())) continue;
5835 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005836
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005837 // If this terminator has multiple identical successors (common for
5838 // switches), only handle each succ once.
5839 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005840
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005841 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5842 PHINode *PN;
5843
5844 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5845 // nodes and Machine PHI nodes, but the incoming operands have not been
5846 // emitted yet.
5847 for (BasicBlock::iterator I = SuccBB->begin();
5848 (PN = dyn_cast<PHINode>(I)); ++I) {
5849 // Ignore dead phi's.
5850 if (PN->use_empty()) continue;
5851
5852 unsigned Reg;
5853 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5854
5855 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5856 unsigned &RegOut = SDL->ConstantsOut[C];
5857 if (RegOut == 0) {
5858 RegOut = FuncInfo->CreateRegForValue(C);
5859 SDL->CopyValueToVirtualRegister(C, RegOut);
5860 }
5861 Reg = RegOut;
5862 } else {
5863 Reg = FuncInfo->ValueMap[PHIOp];
5864 if (Reg == 0) {
5865 assert(isa<AllocaInst>(PHIOp) &&
5866 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5867 "Didn't codegen value into a register!??");
5868 Reg = FuncInfo->CreateRegForValue(PHIOp);
5869 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5870 }
5871 }
5872
5873 // Remember that this register needs to added to the machine PHI node as
5874 // the input for this MBB.
5875 SmallVector<MVT, 4> ValueVTs;
5876 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5877 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5878 MVT VT = ValueVTs[vti];
5879 unsigned NumRegisters = TLI.getNumRegisters(VT);
5880 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5881 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5882 Reg += NumRegisters;
5883 }
5884 }
5885 }
5886 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005887}
5888
Dan Gohman3df24e62008-09-03 23:12:08 +00005889/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5890/// supports legal types, and it emits MachineInstrs directly instead of
5891/// creating SelectionDAG nodes.
5892///
5893bool
5894SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5895 FastISel *F) {
5896 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005897
Dan Gohman3df24e62008-09-03 23:12:08 +00005898 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5899 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5900
5901 // Check successor nodes' PHI nodes that expect a constant to be available
5902 // from this block.
5903 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5904 BasicBlock *SuccBB = TI->getSuccessor(succ);
5905 if (!isa<PHINode>(SuccBB->begin())) continue;
5906 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005907
Dan Gohman3df24e62008-09-03 23:12:08 +00005908 // If this terminator has multiple identical successors (common for
5909 // switches), only handle each succ once.
5910 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005911
Dan Gohman3df24e62008-09-03 23:12:08 +00005912 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5913 PHINode *PN;
5914
5915 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5916 // nodes and Machine PHI nodes, but the incoming operands have not been
5917 // emitted yet.
5918 for (BasicBlock::iterator I = SuccBB->begin();
5919 (PN = dyn_cast<PHINode>(I)); ++I) {
5920 // Ignore dead phi's.
5921 if (PN->use_empty()) continue;
5922
5923 // Only handle legal types. Two interesting things to note here. First,
5924 // by bailing out early, we may leave behind some dead instructions,
5925 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5926 // own moves. Second, this check is necessary becuase FastISel doesn't
5927 // use CreateRegForValue to create registers, so it always creates
5928 // exactly one register for each non-void instruction.
5929 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5930 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005931 // Promote MVT::i1.
5932 if (VT == MVT::i1)
5933 VT = TLI.getTypeToTransformTo(VT);
5934 else {
5935 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5936 return false;
5937 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005938 }
5939
5940 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5941
5942 unsigned Reg = F->getRegForValue(PHIOp);
5943 if (Reg == 0) {
5944 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5945 return false;
5946 }
5947 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5948 }
5949 }
5950
5951 return true;
5952}