blob: a235a115ed38240b81a438b591339e8e0677eed4 [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"
46#include "llvm/Target/TargetLowering.h"
47#include "llvm/Target/TargetMachine.h"
48#include "llvm/Target/TargetOptions.h"
49#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000050#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000051#include "llvm/Support/Debug.h"
52#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000053#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000054#include <algorithm>
55using namespace llvm;
56
Dale Johannesen601d3c02008-09-05 01:48:15 +000057/// LimitFloatPrecision - Generate low-precision inline sequences for
58/// some float libcalls (6, 8 or 12 bits).
59static unsigned LimitFloatPrecision;
60
61static cl::opt<unsigned, true>
62LimitFPPrecision("limit-float-precision",
63 cl::desc("Generate low-precision inline sequences "
64 "for some float libcalls"),
65 cl::location(LimitFloatPrecision),
66 cl::init(0));
67
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000068/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
Dan Gohman2c91d102009-01-06 22:53:52 +000069/// of insertvalue or extractvalue indices that identify a member, return
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000070/// the linearized index of the start of the member.
71///
72static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
73 const unsigned *Indices,
74 const unsigned *IndicesEnd,
75 unsigned CurIndex = 0) {
76 // Base case: We're done.
77 if (Indices && Indices == IndicesEnd)
78 return CurIndex;
79
80 // Given a struct type, recursively traverse the elements.
81 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
82 for (StructType::element_iterator EB = STy->element_begin(),
83 EI = EB,
84 EE = STy->element_end();
85 EI != EE; ++EI) {
86 if (Indices && *Indices == unsigned(EI - EB))
87 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
88 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
89 }
Dan Gohman2c91d102009-01-06 22:53:52 +000090 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000091 }
92 // Given an array type, recursively traverse the elements.
93 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
94 const Type *EltTy = ATy->getElementType();
95 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
96 if (Indices && *Indices == i)
97 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
98 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
99 }
Dan Gohman2c91d102009-01-06 22:53:52 +0000100 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000101 }
102 // We haven't found the type we're looking for, so keep searching.
103 return CurIndex + 1;
104}
105
106/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
107/// MVTs that represent all the individual underlying
108/// non-aggregate types that comprise it.
109///
110/// If Offsets is non-null, it points to a vector to be filled in
111/// with the in-memory offsets of each of the individual values.
112///
113static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
114 SmallVectorImpl<MVT> &ValueVTs,
115 SmallVectorImpl<uint64_t> *Offsets = 0,
116 uint64_t StartingOffset = 0) {
117 // Given a struct type, recursively traverse the elements.
118 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
119 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
120 for (StructType::element_iterator EB = STy->element_begin(),
121 EI = EB,
122 EE = STy->element_end();
123 EI != EE; ++EI)
124 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
125 StartingOffset + SL->getElementOffset(EI - EB));
126 return;
127 }
128 // Given an array type, recursively traverse the elements.
129 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
130 const Type *EltTy = ATy->getElementType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000131 uint64_t EltSize = TLI.getTargetData()->getTypePaddedSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000132 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
133 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
134 StartingOffset + i * EltSize);
135 return;
136 }
137 // Base case: we can get an MVT for this LLVM IR type.
138 ValueVTs.push_back(TLI.getValueType(Ty));
139 if (Offsets)
140 Offsets->push_back(StartingOffset);
141}
142
Dan Gohman2a7c6712008-09-03 23:18:39 +0000143namespace llvm {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000144 /// RegsForValue - This struct represents the registers (physical or virtual)
145 /// that a particular set of values is assigned, and the type information about
146 /// the value. The most common situation is to represent one value at a time,
147 /// but struct or array values are handled element-wise as multiple values.
148 /// The splitting of aggregates is performed recursively, so that we never
149 /// have aggregate-typed registers. The values at this point do not necessarily
150 /// have legal types, so each value may require one or more registers of some
151 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000152 ///
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000153 struct VISIBILITY_HIDDEN RegsForValue {
154 /// TLI - The TargetLowering object.
155 ///
156 const TargetLowering *TLI;
157
158 /// ValueVTs - The value types of the values, which may not be legal, and
159 /// may need be promoted or synthesized from one or more registers.
160 ///
161 SmallVector<MVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000162
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000163 /// RegVTs - The value types of the registers. This is the same size as
164 /// ValueVTs and it records, for each value, what the type of the assigned
165 /// register or registers are. (Individual values are never synthesized
166 /// from more than one type of register.)
167 ///
168 /// With virtual registers, the contents of RegVTs is redundant with TLI's
169 /// getRegisterType member function, however when with physical registers
170 /// it is necessary to have a separate record of the types.
171 ///
172 SmallVector<MVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000173
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000174 /// Regs - This list holds the registers assigned to the values.
175 /// Each legal or promoted value requires one register, and each
176 /// expanded value requires multiple registers.
177 ///
178 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000179
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000180 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000182 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000183 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000184 MVT regvt, MVT valuevt)
185 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
186 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000187 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000188 const SmallVector<MVT, 4> &regvts,
189 const SmallVector<MVT, 4> &valuevts)
190 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
191 RegsForValue(const TargetLowering &tli,
192 unsigned Reg, const Type *Ty) : TLI(&tli) {
193 ComputeValueVTs(tli, Ty, ValueVTs);
194
195 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
196 MVT ValueVT = ValueVTs[Value];
197 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
198 MVT RegisterVT = TLI->getRegisterType(ValueVT);
199 for (unsigned i = 0; i != NumRegs; ++i)
200 Regs.push_back(Reg + i);
201 RegVTs.push_back(RegisterVT);
202 Reg += NumRegs;
203 }
204 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000205
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000206 /// append - Add the specified values to this one.
207 void append(const RegsForValue &RHS) {
208 TLI = RHS.TLI;
209 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
210 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
211 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
212 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000213
214
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000215 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000216 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000217 /// Chain/Flag as the input and updates them for the output Chain/Flag.
218 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000219 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000220 SDValue &Chain, SDValue *Flag) const;
221
222 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000223 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000224 /// Chain/Flag as the input and updates them for the output Chain/Flag.
225 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000226 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000227 SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000228
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000229 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000230 /// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000231 /// values added into it.
232 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
233 std::vector<SDValue> &Ops) const;
234 };
235}
236
237/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000238/// PHI nodes or outside of the basic block that defines it, or used by a
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000239/// switch or atomic instruction, which may expand to multiple basic blocks.
240static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
241 if (isa<PHINode>(I)) return true;
242 BasicBlock *BB = I->getParent();
243 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
244 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
245 // FIXME: Remove switchinst special case.
246 isa<SwitchInst>(*UI))
247 return true;
248 return false;
249}
250
251/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
252/// entry block, return true. This includes arguments used by switches, since
253/// the switch may expand into multiple basic blocks.
254static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) {
255 // With FastISel active, we may be splitting blocks, so force creation
256 // of virtual registers for all non-dead arguments.
Dan Gohman33134c42008-09-25 17:05:24 +0000257 // Don't force virtual registers for byval arguments though, because
258 // fast-isel can't handle those in all cases.
259 if (EnableFastISel && !A->hasByValAttr())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000260 return A->use_empty();
261
262 BasicBlock *Entry = A->getParent()->begin();
263 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
264 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
265 return false; // Use not in entry block.
266 return true;
267}
268
269FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli)
270 : TLI(tli) {
271}
272
273void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000274 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000275 bool EnableFastISel) {
276 Fn = &fn;
277 MF = &mf;
278 RegInfo = &MF->getRegInfo();
279
280 // Create a vreg for each argument register that is not dead and is used
281 // outside of the entry block for the function.
282 for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
283 AI != E; ++AI)
284 if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
285 InitializeRegForValue(AI);
286
287 // Initialize the mapping of values to registers. This is only set up for
288 // instruction values that are used outside of the block that defines
289 // them.
290 Function::iterator BB = Fn->begin(), EB = Fn->end();
291 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
292 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
293 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
294 const Type *Ty = AI->getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000295 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000296 unsigned Align =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000297 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
298 AI->getAlignment());
299
300 TySize *= CUI->getZExtValue(); // Get total allocated size.
301 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
302 StaticAllocaMap[AI] =
303 MF->getFrameInfo()->CreateStackObject(TySize, Align);
304 }
305
306 for (; BB != EB; ++BB)
307 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
308 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
309 if (!isa<AllocaInst>(I) ||
310 !StaticAllocaMap.count(cast<AllocaInst>(I)))
311 InitializeRegForValue(I);
312
313 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
314 // also creates the initial PHI MachineInstrs, though none of the input
315 // operands are populated.
316 for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) {
317 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
318 MBBMap[BB] = MBB;
319 MF->push_back(MBB);
320
321 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
322 // appropriate.
323 PHINode *PN;
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000324 DebugLoc DL;
325 for (BasicBlock::iterator
326 I = BB->begin(), E = BB->end(); I != E; ++I) {
327 if (CallInst *CI = dyn_cast<CallInst>(I)) {
328 if (Function *F = CI->getCalledFunction()) {
329 switch (F->getIntrinsicID()) {
330 default: break;
331 case Intrinsic::dbg_stoppoint: {
332 DwarfWriter *DW = DAG.getDwarfWriter();
333 DbgStopPointInst *SPI = cast<DbgStopPointInst>(I);
334
335 if (DW && DW->ValidDebugInfo(SPI->getContext())) {
336 DICompileUnit CU(cast<GlobalVariable>(SPI->getContext()));
337 unsigned SrcFile = DW->RecordSource(CU.getDirectory(),
338 CU.getFilename());
339 unsigned idx = MF->getOrCreateDebugLocID(SrcFile,
340 SPI->getLine(),
341 SPI->getColumn());
342 DL = DebugLoc::get(idx);
343 }
344
345 break;
346 }
347 case Intrinsic::dbg_func_start: {
348 DwarfWriter *DW = DAG.getDwarfWriter();
349 if (DW) {
350 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
351 Value *SP = FSI->getSubprogram();
352
353 if (DW->ValidDebugInfo(SP)) {
354 DISubprogram Subprogram(cast<GlobalVariable>(SP));
355 DICompileUnit CU(Subprogram.getCompileUnit());
356 unsigned SrcFile = DW->RecordSource(CU.getDirectory(),
357 CU.getFilename());
358 unsigned Line = Subprogram.getLineNumber();
359 DL = DebugLoc::get(MF->getOrCreateDebugLocID(SrcFile, Line, 0));
360 }
361 }
362
363 break;
364 }
365 }
366 }
367 }
368
369 PN = dyn_cast<PHINode>(I);
370 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000371
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000372 unsigned PHIReg = ValueMap[PN];
373 assert(PHIReg && "PHI node does not have an assigned virtual register!");
374
375 SmallVector<MVT, 4> ValueVTs;
376 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
377 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
378 MVT VT = ValueVTs[vti];
379 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000380 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000381 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000382 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000383 PHIReg += NumRegisters;
384 }
385 }
386 }
387}
388
389unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
390 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
391}
392
393/// CreateRegForValue - Allocate the appropriate number of virtual registers of
394/// the correctly promoted or expanded types. Assign these registers
395/// consecutive vreg numbers and return the first assigned number.
396///
397/// In the case that the given value has struct or array type, this function
398/// will assign registers for each member or element.
399///
400unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
401 SmallVector<MVT, 4> ValueVTs;
402 ComputeValueVTs(TLI, V->getType(), ValueVTs);
403
404 unsigned FirstReg = 0;
405 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
406 MVT ValueVT = ValueVTs[Value];
407 MVT RegisterVT = TLI.getRegisterType(ValueVT);
408
409 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
410 for (unsigned i = 0; i != NumRegs; ++i) {
411 unsigned R = MakeReg(RegisterVT);
412 if (!FirstReg) FirstReg = R;
413 }
414 }
415 return FirstReg;
416}
417
418/// getCopyFromParts - Create a value that contains the specified legal parts
419/// combined into the value they represent. If the parts combine to a type
420/// larger then ValueVT then AssertOp can be used to specify whether the extra
421/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
422/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000423static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
424 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000425 unsigned NumParts, MVT PartVT, MVT ValueVT,
426 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000427 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000428 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000429 SDValue Val = Parts[0];
430
431 if (NumParts > 1) {
432 // Assemble the value from multiple parts.
433 if (!ValueVT.isVector()) {
434 unsigned PartBits = PartVT.getSizeInBits();
435 unsigned ValueBits = ValueVT.getSizeInBits();
436
437 // Assemble the power of 2 part.
438 unsigned RoundParts = NumParts & (NumParts - 1) ?
439 1 << Log2_32(NumParts) : NumParts;
440 unsigned RoundBits = PartBits * RoundParts;
441 MVT RoundVT = RoundBits == ValueBits ?
442 ValueVT : MVT::getIntegerVT(RoundBits);
443 SDValue Lo, Hi;
444
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000445 MVT HalfVT = ValueVT.isInteger() ?
446 MVT::getIntegerVT(RoundBits/2) :
447 MVT::getFloatingPointVT(RoundBits/2);
448
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000449 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000450 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
451 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000452 PartVT, HalfVT);
453 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000454 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
455 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000456 }
457 if (TLI.isBigEndian())
458 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000459 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000460
461 if (RoundParts < NumParts) {
462 // Assemble the trailing non-power-of-2 part.
463 unsigned OddParts = NumParts - RoundParts;
464 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000465 Hi = getCopyFromParts(DAG, dl,
466 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000467
468 // Combine the round and odd parts.
469 Lo = Val;
470 if (TLI.isBigEndian())
471 std::swap(Lo, Hi);
472 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000473 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
474 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000475 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000476 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000477 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
478 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000479 }
480 } else {
481 // Handle a multi-element vector.
482 MVT IntermediateVT, RegisterVT;
483 unsigned NumIntermediates;
484 unsigned NumRegs =
485 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
486 RegisterVT);
487 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
488 NumParts = NumRegs; // Silence a compiler warning.
489 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
490 assert(RegisterVT == Parts[0].getValueType() &&
491 "Part type doesn't match part!");
492
493 // Assemble the parts into intermediate operands.
494 SmallVector<SDValue, 8> Ops(NumIntermediates);
495 if (NumIntermediates == NumParts) {
496 // If the register was not expanded, truncate or copy the value,
497 // as appropriate.
498 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000499 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000500 PartVT, IntermediateVT);
501 } else if (NumParts > 0) {
502 // If the intermediate type was expanded, build the intermediate operands
503 // from the parts.
504 assert(NumParts % NumIntermediates == 0 &&
505 "Must expand into a divisible number of parts!");
506 unsigned Factor = NumParts / NumIntermediates;
507 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000508 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000509 PartVT, IntermediateVT);
510 }
511
512 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
513 // operands.
514 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000515 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000516 ValueVT, &Ops[0], NumIntermediates);
517 }
518 }
519
520 // There is now one part, held in Val. Correct it to match ValueVT.
521 PartVT = Val.getValueType();
522
523 if (PartVT == ValueVT)
524 return Val;
525
526 if (PartVT.isVector()) {
527 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000528 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000529 }
530
531 if (ValueVT.isVector()) {
532 assert(ValueVT.getVectorElementType() == PartVT &&
533 ValueVT.getVectorNumElements() == 1 &&
534 "Only trivial scalar-to-vector conversions should get here!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000535 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000536 }
537
538 if (PartVT.isInteger() &&
539 ValueVT.isInteger()) {
540 if (ValueVT.bitsLT(PartVT)) {
541 // For a truncate, see if we have any information to
542 // indicate whether the truncated bits will always be
543 // zero or sign-extension.
544 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000545 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000546 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000547 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000548 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000549 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000550 }
551 }
552
553 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
554 if (ValueVT.bitsLT(Val.getValueType()))
555 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000556 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000557 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000558 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000559 }
560
561 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000562 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000563
564 assert(0 && "Unknown mismatch!");
565 return SDValue();
566}
567
568/// getCopyToParts - Create a series of nodes that contain the specified value
569/// split into legal parts. If the parts contain more bits than Val, then, for
570/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000571static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Chris Lattner01426e12008-10-21 00:45:36 +0000572 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000573 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000574 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000575 MVT PtrVT = TLI.getPointerTy();
576 MVT ValueVT = Val.getValueType();
577 unsigned PartBits = PartVT.getSizeInBits();
578 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
579
580 if (!NumParts)
581 return;
582
583 if (!ValueVT.isVector()) {
584 if (PartVT == ValueVT) {
585 assert(NumParts == 1 && "No-op copy with multiple parts!");
586 Parts[0] = Val;
587 return;
588 }
589
590 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
591 // If the parts cover more bits than the value has, promote the value.
592 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
593 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000594 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000595 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
596 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000597 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000598 } else {
599 assert(0 && "Unknown mismatch!");
600 }
601 } else if (PartBits == ValueVT.getSizeInBits()) {
602 // Different types of the same size.
603 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000604 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000605 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
606 // If the parts cover less bits than value has, truncate the value.
607 if (PartVT.isInteger() && ValueVT.isInteger()) {
608 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000609 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000610 } else {
611 assert(0 && "Unknown mismatch!");
612 }
613 }
614
615 // The value may have changed - recompute ValueVT.
616 ValueVT = Val.getValueType();
617 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
618 "Failed to tile the value with PartVT!");
619
620 if (NumParts == 1) {
621 assert(PartVT == ValueVT && "Type conversion failed!");
622 Parts[0] = Val;
623 return;
624 }
625
626 // Expand the value into multiple parts.
627 if (NumParts & (NumParts - 1)) {
628 // The number of parts is not a power of 2. Split off and copy the tail.
629 assert(PartVT.isInteger() && ValueVT.isInteger() &&
630 "Do not know what to expand to!");
631 unsigned RoundParts = 1 << Log2_32(NumParts);
632 unsigned RoundBits = RoundParts * PartBits;
633 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000634 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000635 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000636 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000637 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000638 if (TLI.isBigEndian())
639 // The odd parts were reversed by getCopyToParts - unreverse them.
640 std::reverse(Parts + RoundParts, Parts + NumParts);
641 NumParts = RoundParts;
642 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000643 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000644 }
645
646 // The number of parts is a power of 2. Repeatedly bisect the value using
647 // EXTRACT_ELEMENT.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000648 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000649 MVT::getIntegerVT(ValueVT.getSizeInBits()),
650 Val);
651 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
652 for (unsigned i = 0; i < NumParts; i += StepSize) {
653 unsigned ThisBits = StepSize * PartBits / 2;
654 MVT ThisVT = MVT::getIntegerVT (ThisBits);
655 SDValue &Part0 = Parts[i];
656 SDValue &Part1 = Parts[i+StepSize/2];
657
Dale Johannesen66978ee2009-01-31 02:22:37 +0000658 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000659 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000660 DAG.getConstant(1, PtrVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000661 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000662 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000663 DAG.getConstant(0, PtrVT));
664
665 if (ThisBits == PartBits && ThisVT != PartVT) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000666 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000667 PartVT, Part0);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000668 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000669 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000670 }
671 }
672 }
673
674 if (TLI.isBigEndian())
675 std::reverse(Parts, Parts + NumParts);
676
677 return;
678 }
679
680 // Vector ValueVT.
681 if (NumParts == 1) {
682 if (PartVT != ValueVT) {
683 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000684 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000685 } else {
686 assert(ValueVT.getVectorElementType() == PartVT &&
687 ValueVT.getVectorNumElements() == 1 &&
688 "Only trivial vector-to-scalar conversions should get here!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000689 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000690 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000691 DAG.getConstant(0, PtrVT));
692 }
693 }
694
695 Parts[0] = Val;
696 return;
697 }
698
699 // Handle a multi-element vector.
700 MVT IntermediateVT, RegisterVT;
701 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000702 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000703 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
704 RegisterVT);
705 unsigned NumElements = ValueVT.getVectorNumElements();
706
707 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
708 NumParts = NumRegs; // Silence a compiler warning.
709 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
710
711 // Split the vector into intermediate operands.
712 SmallVector<SDValue, 8> Ops(NumIntermediates);
713 for (unsigned i = 0; i != NumIntermediates; ++i)
714 if (IntermediateVT.isVector())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000715 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000716 IntermediateVT, Val,
717 DAG.getConstant(i * (NumElements / NumIntermediates),
718 PtrVT));
719 else
Dale Johannesen66978ee2009-01-31 02:22:37 +0000720 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000721 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000722 DAG.getConstant(i, PtrVT));
723
724 // Split the intermediate operands into legal parts.
725 if (NumParts == NumIntermediates) {
726 // If the register was not expanded, promote or copy the value,
727 // as appropriate.
728 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000729 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000730 } else if (NumParts > 0) {
731 // If the intermediate type was expanded, split each the value into
732 // legal parts.
733 assert(NumParts % NumIntermediates == 0 &&
734 "Must expand into a divisible number of parts!");
735 unsigned Factor = NumParts / NumIntermediates;
736 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000737 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000738 }
739}
740
741
742void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
743 AA = &aa;
744 GFI = gfi;
745 TD = DAG.getTarget().getTargetData();
746}
747
748/// clear - Clear out the curret SelectionDAG and the associated
749/// state and prepare this SelectionDAGLowering object to be used
750/// for a new block. This doesn't clear out information about
751/// additional blocks that are needed to complete switch lowering
752/// or PHI node updating; that information is cleared out as it is
753/// consumed.
754void SelectionDAGLowering::clear() {
755 NodeMap.clear();
756 PendingLoads.clear();
757 PendingExports.clear();
758 DAG.clear();
759}
760
761/// getRoot - Return the current virtual root of the Selection DAG,
762/// flushing any PendingLoad items. This must be done before emitting
763/// a store or any other node that may need to be ordered after any
764/// prior load instructions.
765///
766SDValue SelectionDAGLowering::getRoot() {
767 if (PendingLoads.empty())
768 return DAG.getRoot();
769
770 if (PendingLoads.size() == 1) {
771 SDValue Root = PendingLoads[0];
772 DAG.setRoot(Root);
773 PendingLoads.clear();
774 return Root;
775 }
776
777 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000778 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000779 &PendingLoads[0], PendingLoads.size());
780 PendingLoads.clear();
781 DAG.setRoot(Root);
782 return Root;
783}
784
785/// getControlRoot - Similar to getRoot, but instead of flushing all the
786/// PendingLoad items, flush all the PendingExports items. It is necessary
787/// to do this before emitting a terminator instruction.
788///
789SDValue SelectionDAGLowering::getControlRoot() {
790 SDValue Root = DAG.getRoot();
791
792 if (PendingExports.empty())
793 return Root;
794
795 // Turn all of the CopyToReg chains into one factored node.
796 if (Root.getOpcode() != ISD::EntryToken) {
797 unsigned i = 0, e = PendingExports.size();
798 for (; i != e; ++i) {
799 assert(PendingExports[i].getNode()->getNumOperands() > 1);
800 if (PendingExports[i].getNode()->getOperand(0) == Root)
801 break; // Don't add the root if we already indirectly depend on it.
802 }
803
804 if (i == e)
805 PendingExports.push_back(Root);
806 }
807
Dale Johannesen66978ee2009-01-31 02:22:37 +0000808 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000809 &PendingExports[0],
810 PendingExports.size());
811 PendingExports.clear();
812 DAG.setRoot(Root);
813 return Root;
814}
815
816void SelectionDAGLowering::visit(Instruction &I) {
817 visit(I.getOpcode(), I);
818}
819
820void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
821 // Note: this doesn't use InstVisitor, because it has to work with
822 // ConstantExpr's in addition to instructions.
823 switch (Opcode) {
824 default: assert(0 && "Unknown instruction type encountered!");
825 abort();
826 // Build the switch statement using the Instruction.def file.
827#define HANDLE_INST(NUM, OPCODE, CLASS) \
828 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
829#include "llvm/Instruction.def"
830 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000831}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000832
833void SelectionDAGLowering::visitAdd(User &I) {
834 if (I.getType()->isFPOrFPVector())
835 visitBinary(I, ISD::FADD);
836 else
837 visitBinary(I, ISD::ADD);
838}
839
840void SelectionDAGLowering::visitMul(User &I) {
841 if (I.getType()->isFPOrFPVector())
842 visitBinary(I, ISD::FMUL);
843 else
844 visitBinary(I, ISD::MUL);
845}
846
847SDValue SelectionDAGLowering::getValue(const Value *V) {
848 SDValue &N = NodeMap[V];
849 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000851 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
852 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000853
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000854 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000855 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000856
857 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
858 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000859
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000860 if (isa<ConstantPointerNull>(C))
861 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000862
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000863 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000864 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000865
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000866 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
867 !V->getType()->isAggregateType())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000868 return N = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000869
870 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
871 visit(CE->getOpcode(), *CE);
872 SDValue N1 = NodeMap[V];
873 assert(N1.getNode() && "visit didn't populate the ValueMap!");
874 return N1;
875 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000876
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000877 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
878 SmallVector<SDValue, 4> Constants;
879 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
880 OI != OE; ++OI) {
881 SDNode *Val = getValue(*OI).getNode();
882 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
883 Constants.push_back(SDValue(Val, i));
884 }
885 return DAG.getMergeValues(&Constants[0], Constants.size());
886 }
887
888 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
889 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
890 "Unknown struct or array constant!");
891
892 SmallVector<MVT, 4> ValueVTs;
893 ComputeValueVTs(TLI, C->getType(), ValueVTs);
894 unsigned NumElts = ValueVTs.size();
895 if (NumElts == 0)
896 return SDValue(); // empty struct
897 SmallVector<SDValue, 4> Constants(NumElts);
898 for (unsigned i = 0; i != NumElts; ++i) {
899 MVT EltVT = ValueVTs[i];
900 if (isa<UndefValue>(C))
Dale Johannesen66978ee2009-01-31 02:22:37 +0000901 Constants[i] = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000902 else if (EltVT.isFloatingPoint())
903 Constants[i] = DAG.getConstantFP(0, EltVT);
904 else
905 Constants[i] = DAG.getConstant(0, EltVT);
906 }
907 return DAG.getMergeValues(&Constants[0], NumElts);
908 }
909
910 const VectorType *VecTy = cast<VectorType>(V->getType());
911 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000912
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000913 // Now that we know the number and type of the elements, get that number of
914 // elements into the Ops array based on what kind of constant it is.
915 SmallVector<SDValue, 16> Ops;
916 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
917 for (unsigned i = 0; i != NumElements; ++i)
918 Ops.push_back(getValue(CP->getOperand(i)));
919 } else {
920 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
921 "Unknown vector constant!");
922 MVT EltVT = TLI.getValueType(VecTy->getElementType());
923
924 SDValue Op;
925 if (isa<UndefValue>(C))
Dale Johannesen66978ee2009-01-31 02:22:37 +0000926 Op = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000927 else if (EltVT.isFloatingPoint())
928 Op = DAG.getConstantFP(0, EltVT);
929 else
930 Op = DAG.getConstant(0, EltVT);
931 Ops.assign(NumElements, Op);
932 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000933
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000934 // Create a BUILD_VECTOR node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000935 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000936 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000937 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000938
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000939 // If this is a static alloca, generate it as the frameindex instead of
940 // computation.
941 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
942 DenseMap<const AllocaInst*, int>::iterator SI =
943 FuncInfo.StaticAllocaMap.find(AI);
944 if (SI != FuncInfo.StaticAllocaMap.end())
945 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
946 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000947
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000948 unsigned InReg = FuncInfo.ValueMap[V];
949 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000950
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000951 RegsForValue RFV(TLI, InReg, V->getType());
952 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000953 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000954}
955
956
957void SelectionDAGLowering::visitRet(ReturnInst &I) {
958 if (I.getNumOperands() == 0) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000959 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000960 MVT::Other, getControlRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000961 return;
962 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000963
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000964 SmallVector<SDValue, 8> NewValues;
965 NewValues.push_back(getControlRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000966 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000967 SmallVector<MVT, 4> ValueVTs;
968 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000969 unsigned NumValues = ValueVTs.size();
970 if (NumValues == 0) continue;
971
972 SDValue RetOp = getValue(I.getOperand(i));
973 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000974 MVT VT = ValueVTs[j];
975
976 // FIXME: C calling convention requires the return type to be promoted to
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000977 // at least 32-bit. But this is not necessary for non-C calling
978 // conventions.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000979 if (VT.isInteger()) {
980 MVT MinVT = TLI.getRegisterType(MVT::i32);
981 if (VT.bitsLT(MinVT))
982 VT = MinVT;
983 }
984
985 unsigned NumParts = TLI.getNumRegisters(VT);
986 MVT PartVT = TLI.getRegisterType(VT);
987 SmallVector<SDValue, 4> Parts(NumParts);
988 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000989
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000990 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000991 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000992 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000993 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000994 ExtendKind = ISD::ZERO_EXTEND;
995
Dale Johannesen66978ee2009-01-31 02:22:37 +0000996 getCopyToParts(DAG, getCurDebugLoc(),
997 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000998 &Parts[0], NumParts, PartVT, ExtendKind);
999
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001000 // 'inreg' on function refers to return value
1001 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +00001002 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001003 Flags.setInReg();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001004 for (unsigned i = 0; i < NumParts; ++i) {
1005 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001006 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001007 }
1008 }
1009 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00001010 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001011 &NewValues[0], NewValues.size()));
1012}
1013
1014/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1015/// the current basic block, add it to ValueMap now so that we'll get a
1016/// CopyTo/FromReg.
1017void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1018 // No need to export constants.
1019 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001020
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001021 // Already exported?
1022 if (FuncInfo.isExportedInst(V)) return;
1023
1024 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1025 CopyValueToVirtualRegister(V, Reg);
1026}
1027
1028bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1029 const BasicBlock *FromBB) {
1030 // The operands of the setcc have to be in this block. We don't know
1031 // how to export them from some other block.
1032 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1033 // Can export from current BB.
1034 if (VI->getParent() == FromBB)
1035 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001036
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001037 // Is already exported, noop.
1038 return FuncInfo.isExportedInst(V);
1039 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001040
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001041 // If this is an argument, we can export it if the BB is the entry block or
1042 // if it is already exported.
1043 if (isa<Argument>(V)) {
1044 if (FromBB == &FromBB->getParent()->getEntryBlock())
1045 return true;
1046
1047 // Otherwise, can only export this if it is already exported.
1048 return FuncInfo.isExportedInst(V);
1049 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001050
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001051 // Otherwise, constants can always be exported.
1052 return true;
1053}
1054
1055static bool InBlock(const Value *V, const BasicBlock *BB) {
1056 if (const Instruction *I = dyn_cast<Instruction>(V))
1057 return I->getParent() == BB;
1058 return true;
1059}
1060
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001061/// getFCmpCondCode - Return the ISD condition code corresponding to
1062/// the given LLVM IR floating-point condition code. This includes
1063/// consideration of global floating-point math flags.
1064///
1065static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1066 ISD::CondCode FPC, FOC;
1067 switch (Pred) {
1068 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1069 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1070 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1071 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1072 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1073 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1074 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1075 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1076 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1077 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1078 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1079 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1080 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1081 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1082 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1083 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1084 default:
1085 assert(0 && "Invalid FCmp predicate opcode!");
1086 FOC = FPC = ISD::SETFALSE;
1087 break;
1088 }
1089 if (FiniteOnlyFPMath())
1090 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001091 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001092 return FPC;
1093}
1094
1095/// getICmpCondCode - Return the ISD condition code corresponding to
1096/// the given LLVM IR integer condition code.
1097///
1098static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1099 switch (Pred) {
1100 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1101 case ICmpInst::ICMP_NE: return ISD::SETNE;
1102 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1103 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1104 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1105 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1106 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1107 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1108 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1109 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1110 default:
1111 assert(0 && "Invalid ICmp predicate opcode!");
1112 return ISD::SETNE;
1113 }
1114}
1115
Dan Gohmanc2277342008-10-17 21:16:08 +00001116/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1117/// This function emits a branch and is used at the leaves of an OR or an
1118/// AND operator tree.
1119///
1120void
1121SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1122 MachineBasicBlock *TBB,
1123 MachineBasicBlock *FBB,
1124 MachineBasicBlock *CurBB) {
1125 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001126
Dan Gohmanc2277342008-10-17 21:16:08 +00001127 // If the leaf of the tree is a comparison, merge the condition into
1128 // the caseblock.
1129 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1130 // The operands of the cmp have to be in this block. We don't know
1131 // how to export them from some other block. If this is the first block
1132 // of the sequence, no exporting is needed.
1133 if (CurBB == CurMBB ||
1134 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1135 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001136 ISD::CondCode Condition;
1137 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001138 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001139 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001140 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001141 } else {
1142 Condition = ISD::SETEQ; // silence warning.
1143 assert(0 && "Unknown compare instruction");
1144 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001145
1146 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001147 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1148 SwitchCases.push_back(CB);
1149 return;
1150 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001151 }
1152
1153 // Create a CaseBlock record representing this branch.
1154 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1155 NULL, TBB, FBB, CurBB);
1156 SwitchCases.push_back(CB);
1157}
1158
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001159/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001160void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1161 MachineBasicBlock *TBB,
1162 MachineBasicBlock *FBB,
1163 MachineBasicBlock *CurBB,
1164 unsigned Opc) {
1165 // If this node is not part of the or/and tree, emit it as a branch.
1166 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001167 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001168 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1169 BOp->getParent() != CurBB->getBasicBlock() ||
1170 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1171 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1172 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001173 return;
1174 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001175
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001176 // Create TmpBB after CurBB.
1177 MachineFunction::iterator BBI = CurBB;
1178 MachineFunction &MF = DAG.getMachineFunction();
1179 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1180 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001182 if (Opc == Instruction::Or) {
1183 // Codegen X | Y as:
1184 // jmp_if_X TBB
1185 // jmp TmpBB
1186 // TmpBB:
1187 // jmp_if_Y TBB
1188 // jmp FBB
1189 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001190
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001191 // Emit the LHS condition.
1192 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001193
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001194 // Emit the RHS condition into TmpBB.
1195 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1196 } else {
1197 assert(Opc == Instruction::And && "Unknown merge op!");
1198 // Codegen X & Y as:
1199 // jmp_if_X TmpBB
1200 // jmp FBB
1201 // TmpBB:
1202 // jmp_if_Y TBB
1203 // jmp FBB
1204 //
1205 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001206
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001207 // Emit the LHS condition.
1208 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001209
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001210 // Emit the RHS condition into TmpBB.
1211 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1212 }
1213}
1214
1215/// If the set of cases should be emitted as a series of branches, return true.
1216/// If we should emit this as a bunch of and/or'd together conditions, return
1217/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001218bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001219SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1220 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001221
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001222 // If this is two comparisons of the same values or'd or and'd together, they
1223 // will get folded into a single comparison, so don't emit two blocks.
1224 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1225 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1226 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1227 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1228 return false;
1229 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001230
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001231 return true;
1232}
1233
1234void SelectionDAGLowering::visitBr(BranchInst &I) {
1235 // Update machine-CFG edges.
1236 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1237
1238 // Figure out which block is immediately after the current one.
1239 MachineBasicBlock *NextBlock = 0;
1240 MachineFunction::iterator BBI = CurMBB;
1241 if (++BBI != CurMBB->getParent()->end())
1242 NextBlock = BBI;
1243
1244 if (I.isUnconditional()) {
1245 // Update machine-CFG edges.
1246 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001247
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001248 // If this is not a fall-through branch, emit the branch.
1249 if (Succ0MBB != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00001250 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001251 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001252 DAG.getBasicBlock(Succ0MBB)));
1253 return;
1254 }
1255
1256 // If this condition is one of the special cases we handle, do special stuff
1257 // now.
1258 Value *CondVal = I.getCondition();
1259 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1260
1261 // If this is a series of conditions that are or'd or and'd together, emit
1262 // this as a sequence of branches instead of setcc's with and/or operations.
1263 // For example, instead of something like:
1264 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001265 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001266 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001267 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001268 // or C, F
1269 // jnz foo
1270 // Emit:
1271 // cmp A, B
1272 // je foo
1273 // cmp D, E
1274 // jle foo
1275 //
1276 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001277 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001278 (BOp->getOpcode() == Instruction::And ||
1279 BOp->getOpcode() == Instruction::Or)) {
1280 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1281 // If the compares in later blocks need to use values not currently
1282 // exported from this block, export them now. This block should always
1283 // be the first entry.
1284 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001285
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001286 // Allow some cases to be rejected.
1287 if (ShouldEmitAsBranches(SwitchCases)) {
1288 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1289 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1290 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1291 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001292
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001293 // Emit the branch for this block.
1294 visitSwitchCase(SwitchCases[0]);
1295 SwitchCases.erase(SwitchCases.begin());
1296 return;
1297 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001298
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001299 // Okay, we decided not to do this, remove any inserted MBB's and clear
1300 // SwitchCases.
1301 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1302 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001303
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001304 SwitchCases.clear();
1305 }
1306 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001307
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001308 // Create a CaseBlock record representing this branch.
1309 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1310 NULL, Succ0MBB, Succ1MBB, CurMBB);
1311 // Use visitSwitchCase to actually insert the fast branch sequence for this
1312 // cond branch.
1313 visitSwitchCase(CB);
1314}
1315
1316/// visitSwitchCase - Emits the necessary code to represent a single node in
1317/// the binary search tree resulting from lowering a switch instruction.
1318void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1319 SDValue Cond;
1320 SDValue CondLHS = getValue(CB.CmpLHS);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001321
1322 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001323 if (CB.CmpMHS == NULL) {
1324 // Fold "(X == true)" to X and "(X == false)" to !X to
1325 // handle common cases produced by branch lowering.
1326 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1327 Cond = CondLHS;
1328 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1329 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00001330 Cond = DAG.getNode(ISD::XOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001331 CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001332 } else
1333 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1334 } else {
1335 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1336
Anton Korobeynikov23218582008-12-23 22:25:27 +00001337 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1338 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001339
1340 SDValue CmpOp = getValue(CB.CmpMHS);
1341 MVT VT = CmpOp.getValueType();
1342
1343 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1344 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1345 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00001346 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001347 VT, CmpOp, DAG.getConstant(Low, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001348 Cond = DAG.getSetCC(MVT::i1, SUB,
1349 DAG.getConstant(High-Low, VT), ISD::SETULE);
1350 }
1351 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001352
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001353 // Update successor info
1354 CurMBB->addSuccessor(CB.TrueBB);
1355 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001356
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001357 // Set NextBlock to be the MBB immediately after the current one, if any.
1358 // This is used to avoid emitting unnecessary branches to the next block.
1359 MachineBasicBlock *NextBlock = 0;
1360 MachineFunction::iterator BBI = CurMBB;
1361 if (++BBI != CurMBB->getParent()->end())
1362 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001363
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001364 // If the lhs block is the next block, invert the condition so that we can
1365 // fall through to the lhs instead of the rhs block.
1366 if (CB.TrueBB == NextBlock) {
1367 std::swap(CB.TrueBB, CB.FalseBB);
1368 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00001369 Cond = DAG.getNode(ISD::XOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001370 Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001371 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00001372 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001373 MVT::Other, getControlRoot(), Cond,
1374 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001375
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001376 // If the branch was constant folded, fix up the CFG.
1377 if (BrCond.getOpcode() == ISD::BR) {
1378 CurMBB->removeSuccessor(CB.FalseBB);
1379 DAG.setRoot(BrCond);
1380 } else {
1381 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001382 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001383 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001384
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001385 if (CB.FalseBB == NextBlock)
1386 DAG.setRoot(BrCond);
1387 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001388 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001389 DAG.getBasicBlock(CB.FalseBB)));
1390 }
1391}
1392
1393/// visitJumpTable - Emit JumpTable node in the current MBB
1394void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1395 // Emit the code for the jump table
1396 assert(JT.Reg != -1U && "Should lower JT Header first!");
1397 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001398 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1399 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001400 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00001401 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001402 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001403 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001404}
1405
1406/// visitJumpTableHeader - This function emits necessary code to produce index
1407/// in the JumpTable from switch case.
1408void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1409 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001410 // Subtract the lowest switch case value from the value being switched on and
1411 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001412 // difference between smallest and largest cases.
1413 SDValue SwitchOp = getValue(JTH.SValue);
1414 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001415 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001416 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001417
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001418 // The SDNode we just created, which holds the value being switched on minus
1419 // the the smallest case value, needs to be copied to a virtual register so it
1420 // can be used as an index into the jump table in a subsequent basic block.
1421 // This value may be smaller or larger than the target's pointer type, and
1422 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001423 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00001424 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001425 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001426 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001427 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001428 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001429
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001430 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001431 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1432 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001433 JT.Reg = JumpTableReg;
1434
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001435 // Emit the range check for the jump table, and branch to the default block
1436 // for the switch statement if the value being switched on exceeds the largest
1437 // case in the switch.
Duncan Sands5480c042009-01-01 15:52:00 +00001438 SDValue CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001439 DAG.getConstant(JTH.Last-JTH.First,VT),
1440 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001441
1442 // Set NextBlock to be the MBB immediately after the current one, if any.
1443 // This is used to avoid emitting unnecessary branches to the next block.
1444 MachineBasicBlock *NextBlock = 0;
1445 MachineFunction::iterator BBI = CurMBB;
1446 if (++BBI != CurMBB->getParent()->end())
1447 NextBlock = BBI;
1448
Dale Johannesen66978ee2009-01-31 02:22:37 +00001449 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001450 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001451 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001452
1453 if (JT.MBB == NextBlock)
1454 DAG.setRoot(BrCond);
1455 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001456 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001457 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001458}
1459
1460/// visitBitTestHeader - This function emits necessary code to produce value
1461/// suitable for "bit tests"
1462void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1463 // Subtract the minimum value
1464 SDValue SwitchOp = getValue(B.SValue);
1465 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001466 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001467 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001468
1469 // Check range
Duncan Sands5480c042009-01-01 15:52:00 +00001470 SDValue RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001471 DAG.getConstant(B.Range, VT),
1472 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001473
1474 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001475 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00001476 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001477 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001478 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001479 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001480 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001481
Duncan Sands92abc622009-01-31 15:50:11 +00001482 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001483 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1484 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001485
1486 // Set NextBlock to be the MBB immediately after the current one, if any.
1487 // This is used to avoid emitting unnecessary branches to the next block.
1488 MachineBasicBlock *NextBlock = 0;
1489 MachineFunction::iterator BBI = CurMBB;
1490 if (++BBI != CurMBB->getParent()->end())
1491 NextBlock = BBI;
1492
1493 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1494
1495 CurMBB->addSuccessor(B.Default);
1496 CurMBB->addSuccessor(MBB);
1497
Dale Johannesen66978ee2009-01-31 02:22:37 +00001498 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001499 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001500 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001501
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001502 if (MBB == NextBlock)
1503 DAG.setRoot(BrRange);
1504 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001505 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001506 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001507}
1508
1509/// visitBitTestCase - this function produces one "bit test"
1510void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1511 unsigned Reg,
1512 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001513 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001514 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001515 TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00001516 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001517 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001518 DAG.getConstant(1, TLI.getPointerTy()),
1519 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001520
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001521 // Emit bit tests and jumps
Dale Johannesen66978ee2009-01-31 02:22:37 +00001522 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001523 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001524 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Duncan Sands5480c042009-01-01 15:52:00 +00001525 SDValue AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp.getValueType()),
1526 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001527 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001528
1529 CurMBB->addSuccessor(B.TargetBB);
1530 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001531
Dale Johannesen66978ee2009-01-31 02:22:37 +00001532 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001533 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001534 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001535
1536 // Set NextBlock to be the MBB immediately after the current one, if any.
1537 // This is used to avoid emitting unnecessary branches to the next block.
1538 MachineBasicBlock *NextBlock = 0;
1539 MachineFunction::iterator BBI = CurMBB;
1540 if (++BBI != CurMBB->getParent()->end())
1541 NextBlock = BBI;
1542
1543 if (NextMBB == NextBlock)
1544 DAG.setRoot(BrAnd);
1545 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001546 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001547 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001548}
1549
1550void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1551 // Retrieve successors.
1552 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1553 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1554
Gabor Greifb67e6b32009-01-15 11:10:44 +00001555 const Value *Callee(I.getCalledValue());
1556 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001557 visitInlineAsm(&I);
1558 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001559 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001560
1561 // If the value of the invoke is used outside of its defining block, make it
1562 // available as a virtual register.
1563 if (!I.use_empty()) {
1564 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1565 if (VMI != FuncInfo.ValueMap.end())
1566 CopyValueToVirtualRegister(&I, VMI->second);
1567 }
1568
1569 // Update successor info
1570 CurMBB->addSuccessor(Return);
1571 CurMBB->addSuccessor(LandingPad);
1572
1573 // Drop into normal successor.
Dale Johannesen66978ee2009-01-31 02:22:37 +00001574 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001575 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001576 DAG.getBasicBlock(Return)));
1577}
1578
1579void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1580}
1581
1582/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1583/// small case ranges).
1584bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1585 CaseRecVector& WorkList,
1586 Value* SV,
1587 MachineBasicBlock* Default) {
1588 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001589
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001590 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001591 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001592 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001593 return false;
1594
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001595 // Get the MachineFunction which holds the current MBB. This is used when
1596 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001597 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001598
1599 // Figure out which block is immediately after the current one.
1600 MachineBasicBlock *NextBlock = 0;
1601 MachineFunction::iterator BBI = CR.CaseBB;
1602
1603 if (++BBI != CurMBB->getParent()->end())
1604 NextBlock = BBI;
1605
1606 // TODO: If any two of the cases has the same destination, and if one value
1607 // is the same as the other, but has one bit unset that the other has set,
1608 // use bit manipulation to do two compares at once. For example:
1609 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001610
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001611 // Rearrange the case blocks so that the last one falls through if possible.
1612 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1613 // The last case block won't fall through into 'NextBlock' if we emit the
1614 // branches in this order. See if rearranging a case value would help.
1615 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1616 if (I->BB == NextBlock) {
1617 std::swap(*I, BackCase);
1618 break;
1619 }
1620 }
1621 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001622
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001623 // Create a CaseBlock record representing a conditional branch to
1624 // the Case's target mbb if the value being switched on SV is equal
1625 // to C.
1626 MachineBasicBlock *CurBlock = CR.CaseBB;
1627 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1628 MachineBasicBlock *FallThrough;
1629 if (I != E-1) {
1630 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1631 CurMF->insert(BBI, FallThrough);
1632 } else {
1633 // If the last case doesn't match, go to the default block.
1634 FallThrough = Default;
1635 }
1636
1637 Value *RHS, *LHS, *MHS;
1638 ISD::CondCode CC;
1639 if (I->High == I->Low) {
1640 // This is just small small case range :) containing exactly 1 case
1641 CC = ISD::SETEQ;
1642 LHS = SV; RHS = I->High; MHS = NULL;
1643 } else {
1644 CC = ISD::SETLE;
1645 LHS = I->Low; MHS = SV; RHS = I->High;
1646 }
1647 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001648
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001649 // If emitting the first comparison, just call visitSwitchCase to emit the
1650 // code into the current block. Otherwise, push the CaseBlock onto the
1651 // vector to be later processed by SDISel, and insert the node's MBB
1652 // before the next MBB.
1653 if (CurBlock == CurMBB)
1654 visitSwitchCase(CB);
1655 else
1656 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001657
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001658 CurBlock = FallThrough;
1659 }
1660
1661 return true;
1662}
1663
1664static inline bool areJTsAllowed(const TargetLowering &TLI) {
1665 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001666 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1667 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001668}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001669
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001670static APInt ComputeRange(const APInt &First, const APInt &Last) {
1671 APInt LastExt(Last), FirstExt(First);
1672 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1673 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1674 return (LastExt - FirstExt + 1ULL);
1675}
1676
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001677/// handleJTSwitchCase - Emit jumptable for current switch case range
1678bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1679 CaseRecVector& WorkList,
1680 Value* SV,
1681 MachineBasicBlock* Default) {
1682 Case& FrontCase = *CR.Range.first;
1683 Case& BackCase = *(CR.Range.second-1);
1684
Anton Korobeynikov23218582008-12-23 22:25:27 +00001685 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1686 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001687
Anton Korobeynikov23218582008-12-23 22:25:27 +00001688 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001689 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1690 I!=E; ++I)
1691 TSize += I->size();
1692
1693 if (!areJTsAllowed(TLI) || TSize <= 3)
1694 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001695
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001696 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001697 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001698 if (Density < 0.4)
1699 return false;
1700
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001701 DEBUG(errs() << "Lowering jump table\n"
1702 << "First entry: " << First << ". Last entry: " << Last << '\n'
1703 << "Range: " << Range
1704 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001705
1706 // Get the MachineFunction which holds the current MBB. This is used when
1707 // inserting any additional MBBs necessary to represent the switch.
1708 MachineFunction *CurMF = CurMBB->getParent();
1709
1710 // Figure out which block is immediately after the current one.
1711 MachineBasicBlock *NextBlock = 0;
1712 MachineFunction::iterator BBI = CR.CaseBB;
1713
1714 if (++BBI != CurMBB->getParent()->end())
1715 NextBlock = BBI;
1716
1717 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1718
1719 // Create a new basic block to hold the code for loading the address
1720 // of the jump table, and jumping to it. Update successor information;
1721 // we will either branch to the default case for the switch, or the jump
1722 // table.
1723 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1724 CurMF->insert(BBI, JumpTableBB);
1725 CR.CaseBB->addSuccessor(Default);
1726 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001727
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001728 // Build a vector of destination BBs, corresponding to each target
1729 // of the jump table. If the value of the jump table slot corresponds to
1730 // a case statement, push the case's BB onto the vector, otherwise, push
1731 // the default BB.
1732 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001733 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001734 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001735 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1736 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1737
1738 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001739 DestBBs.push_back(I->BB);
1740 if (TEI==High)
1741 ++I;
1742 } else {
1743 DestBBs.push_back(Default);
1744 }
1745 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001746
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001747 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001748 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1749 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001750 E = DestBBs.end(); I != E; ++I) {
1751 if (!SuccsHandled[(*I)->getNumber()]) {
1752 SuccsHandled[(*I)->getNumber()] = true;
1753 JumpTableBB->addSuccessor(*I);
1754 }
1755 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001756
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001757 // Create a jump table index for this jump table, or return an existing
1758 // one.
1759 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001760
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001761 // Set the jump table information so that we can codegen it as a second
1762 // MachineBasicBlock
1763 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1764 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1765 if (CR.CaseBB == CurMBB)
1766 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001767
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001768 JTCases.push_back(JumpTableBlock(JTH, JT));
1769
1770 return true;
1771}
1772
1773/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1774/// 2 subtrees.
1775bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1776 CaseRecVector& WorkList,
1777 Value* SV,
1778 MachineBasicBlock* Default) {
1779 // Get the MachineFunction which holds the current MBB. This is used when
1780 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001781 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001782
1783 // Figure out which block is immediately after the current one.
1784 MachineBasicBlock *NextBlock = 0;
1785 MachineFunction::iterator BBI = CR.CaseBB;
1786
1787 if (++BBI != CurMBB->getParent()->end())
1788 NextBlock = BBI;
1789
1790 Case& FrontCase = *CR.Range.first;
1791 Case& BackCase = *(CR.Range.second-1);
1792 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1793
1794 // Size is the number of Cases represented by this range.
1795 unsigned Size = CR.Range.second - CR.Range.first;
1796
Anton Korobeynikov23218582008-12-23 22:25:27 +00001797 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1798 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001799 double FMetric = 0;
1800 CaseItr Pivot = CR.Range.first + Size/2;
1801
1802 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1803 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001804 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001805 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1806 I!=E; ++I)
1807 TSize += I->size();
1808
Anton Korobeynikov23218582008-12-23 22:25:27 +00001809 size_t LSize = FrontCase.size();
1810 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001811 DEBUG(errs() << "Selecting best pivot: \n"
1812 << "First: " << First << ", Last: " << Last <<'\n'
1813 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001814 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1815 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001816 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1817 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001818 APInt Range = ComputeRange(LEnd, RBegin);
1819 assert((Range - 2ULL).isNonNegative() &&
1820 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001821 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1822 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001823 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001824 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001825 DEBUG(errs() <<"=>Step\n"
1826 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1827 << "LDensity: " << LDensity
1828 << ", RDensity: " << RDensity << '\n'
1829 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001830 if (FMetric < Metric) {
1831 Pivot = J;
1832 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001833 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001834 }
1835
1836 LSize += J->size();
1837 RSize -= J->size();
1838 }
1839 if (areJTsAllowed(TLI)) {
1840 // If our case is dense we *really* should handle it earlier!
1841 assert((FMetric > 0) && "Should handle dense range earlier!");
1842 } else {
1843 Pivot = CR.Range.first + Size/2;
1844 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001845
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001846 CaseRange LHSR(CR.Range.first, Pivot);
1847 CaseRange RHSR(Pivot, CR.Range.second);
1848 Constant *C = Pivot->Low;
1849 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001851 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001852 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001853 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001854 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001855 // Pivot's Value, then we can branch directly to the LHS's Target,
1856 // rather than creating a leaf node for it.
1857 if ((LHSR.second - LHSR.first) == 1 &&
1858 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001859 cast<ConstantInt>(C)->getValue() ==
1860 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001861 TrueBB = LHSR.first->BB;
1862 } else {
1863 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1864 CurMF->insert(BBI, TrueBB);
1865 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
1866 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001867
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001868 // Similar to the optimization above, if the Value being switched on is
1869 // known to be less than the Constant CR.LT, and the current Case Value
1870 // is CR.LT - 1, then we can branch directly to the target block for
1871 // the current Case Value, rather than emitting a RHS leaf node for it.
1872 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001873 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1874 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001875 FalseBB = RHSR.first->BB;
1876 } else {
1877 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1878 CurMF->insert(BBI, FalseBB);
1879 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
1880 }
1881
1882 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001883 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001884 // Otherwise, branch to LHS.
1885 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1886
1887 if (CR.CaseBB == CurMBB)
1888 visitSwitchCase(CB);
1889 else
1890 SwitchCases.push_back(CB);
1891
1892 return true;
1893}
1894
1895/// handleBitTestsSwitchCase - if current case range has few destination and
1896/// range span less, than machine word bitwidth, encode case range into series
1897/// of masks and emit bit tests with these masks.
1898bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1899 CaseRecVector& WorkList,
1900 Value* SV,
1901 MachineBasicBlock* Default){
1902 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1903
1904 Case& FrontCase = *CR.Range.first;
1905 Case& BackCase = *(CR.Range.second-1);
1906
1907 // Get the MachineFunction which holds the current MBB. This is used when
1908 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001909 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001910
Anton Korobeynikov23218582008-12-23 22:25:27 +00001911 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001912 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1913 I!=E; ++I) {
1914 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001915 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001916 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001917
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001918 // Count unique destinations
1919 SmallSet<MachineBasicBlock*, 4> Dests;
1920 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1921 Dests.insert(I->BB);
1922 if (Dests.size() > 3)
1923 // Don't bother the code below, if there are too much unique destinations
1924 return false;
1925 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001926 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1927 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001928
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001929 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001930 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1931 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001932 APInt cmpRange = maxValue - minValue;
1933
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001934 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1935 << "Low bound: " << minValue << '\n'
1936 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001937
1938 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001939 (!(Dests.size() == 1 && numCmps >= 3) &&
1940 !(Dests.size() == 2 && numCmps >= 5) &&
1941 !(Dests.size() >= 3 && numCmps >= 6)))
1942 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001943
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001944 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001945 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1946
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001947 // Optimize the case where all the case values fit in a
1948 // word without having to subtract minValue. In this case,
1949 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001950 if (minValue.isNonNegative() &&
1951 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1952 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001953 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001954 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001955 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001956
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001957 CaseBitsVector CasesBits;
1958 unsigned i, count = 0;
1959
1960 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1961 MachineBasicBlock* Dest = I->BB;
1962 for (i = 0; i < count; ++i)
1963 if (Dest == CasesBits[i].BB)
1964 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001965
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001966 if (i == count) {
1967 assert((count < 3) && "Too much destinations to test!");
1968 CasesBits.push_back(CaseBits(0, Dest, 0));
1969 count++;
1970 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001971
1972 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1973 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1974
1975 uint64_t lo = (lowValue - lowBound).getZExtValue();
1976 uint64_t hi = (highValue - lowBound).getZExtValue();
1977
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001978 for (uint64_t j = lo; j <= hi; j++) {
1979 CasesBits[i].Mask |= 1ULL << j;
1980 CasesBits[i].Bits++;
1981 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001982
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001983 }
1984 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001985
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001986 BitTestInfo BTC;
1987
1988 // Figure out which block is immediately after the current one.
1989 MachineFunction::iterator BBI = CR.CaseBB;
1990 ++BBI;
1991
1992 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1993
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001994 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001995 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001996 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
1997 << ", Bits: " << CasesBits[i].Bits
1998 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001999
2000 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2001 CurMF->insert(BBI, CaseBB);
2002 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2003 CaseBB,
2004 CasesBits[i].BB));
2005 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002006
2007 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002008 -1U, (CR.CaseBB == CurMBB),
2009 CR.CaseBB, Default, BTC);
2010
2011 if (CR.CaseBB == CurMBB)
2012 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002013
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002014 BitTestCases.push_back(BTB);
2015
2016 return true;
2017}
2018
2019
2020/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002021size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002022 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002023 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002024
2025 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002026 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002027 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2028 Cases.push_back(Case(SI.getSuccessorValue(i),
2029 SI.getSuccessorValue(i),
2030 SMBB));
2031 }
2032 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2033
2034 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002035 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002036 // Must recompute end() each iteration because it may be
2037 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002038 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2039 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2040 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002041 MachineBasicBlock* nextBB = J->BB;
2042 MachineBasicBlock* currentBB = I->BB;
2043
2044 // If the two neighboring cases go to the same destination, merge them
2045 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002046 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002047 I->High = J->High;
2048 J = Cases.erase(J);
2049 } else {
2050 I = J++;
2051 }
2052 }
2053
2054 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2055 if (I->Low != I->High)
2056 // A range counts double, since it requires two compares.
2057 ++numCmps;
2058 }
2059
2060 return numCmps;
2061}
2062
Anton Korobeynikov23218582008-12-23 22:25:27 +00002063void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002064 // Figure out which block is immediately after the current one.
2065 MachineBasicBlock *NextBlock = 0;
2066 MachineFunction::iterator BBI = CurMBB;
2067
2068 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2069
2070 // If there is only the default destination, branch to it if it is not the
2071 // next basic block. Otherwise, just fall through.
2072 if (SI.getNumOperands() == 2) {
2073 // Update machine-CFG edges.
2074
2075 // If this is not a fall-through branch, emit the branch.
2076 CurMBB->addSuccessor(Default);
2077 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002078 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002079 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002080 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002081 return;
2082 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002083
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002084 // If there are any non-default case statements, create a vector of Cases
2085 // representing each one, and sort the vector so that we can efficiently
2086 // create a binary search tree from them.
2087 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002088 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002089 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2090 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002091 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002092
2093 // Get the Value to be switched on and default basic blocks, which will be
2094 // inserted into CaseBlock records, representing basic blocks in the binary
2095 // search tree.
2096 Value *SV = SI.getOperand(0);
2097
2098 // Push the initial CaseRec onto the worklist
2099 CaseRecVector WorkList;
2100 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2101
2102 while (!WorkList.empty()) {
2103 // Grab a record representing a case range to process off the worklist
2104 CaseRec CR = WorkList.back();
2105 WorkList.pop_back();
2106
2107 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2108 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002109
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002110 // If the range has few cases (two or less) emit a series of specific
2111 // tests.
2112 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2113 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002114
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002115 // If the switch has more than 5 blocks, and at least 40% dense, and the
2116 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002117 // lowering the switch to a binary tree of conditional branches.
2118 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2119 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002120
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002121 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2122 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2123 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2124 }
2125}
2126
2127
2128void SelectionDAGLowering::visitSub(User &I) {
2129 // -0.0 - X --> fneg
2130 const Type *Ty = I.getType();
2131 if (isa<VectorType>(Ty)) {
2132 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2133 const VectorType *DestTy = cast<VectorType>(I.getType());
2134 const Type *ElTy = DestTy->getElementType();
2135 if (ElTy->isFloatingPoint()) {
2136 unsigned VL = DestTy->getNumElements();
2137 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2138 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2139 if (CV == CNZ) {
2140 SDValue Op2 = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002141 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002142 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002143 return;
2144 }
2145 }
2146 }
2147 }
2148 if (Ty->isFloatingPoint()) {
2149 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2150 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2151 SDValue Op2 = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002152 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002153 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002154 return;
2155 }
2156 }
2157
2158 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2159}
2160
2161void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2162 SDValue Op1 = getValue(I.getOperand(0));
2163 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002164
Dale Johannesen66978ee2009-01-31 02:22:37 +00002165 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002166 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002167}
2168
2169void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2170 SDValue Op1 = getValue(I.getOperand(0));
2171 SDValue Op2 = getValue(I.getOperand(1));
2172 if (!isa<VectorType>(I.getType())) {
Duncan Sands92abc622009-01-31 15:50:11 +00002173 if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002174 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002175 TLI.getPointerTy(), Op2);
2176 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002177 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002178 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002179 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002180
Dale Johannesen66978ee2009-01-31 02:22:37 +00002181 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002182 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002183}
2184
2185void SelectionDAGLowering::visitICmp(User &I) {
2186 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2187 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2188 predicate = IC->getPredicate();
2189 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2190 predicate = ICmpInst::Predicate(IC->getPredicate());
2191 SDValue Op1 = getValue(I.getOperand(0));
2192 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002193 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002194 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2195}
2196
2197void SelectionDAGLowering::visitFCmp(User &I) {
2198 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2199 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2200 predicate = FC->getPredicate();
2201 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2202 predicate = FCmpInst::Predicate(FC->getPredicate());
2203 SDValue Op1 = getValue(I.getOperand(0));
2204 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002205 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002206 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
2207}
2208
2209void SelectionDAGLowering::visitVICmp(User &I) {
2210 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2211 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2212 predicate = IC->getPredicate();
2213 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2214 predicate = ICmpInst::Predicate(IC->getPredicate());
2215 SDValue Op1 = getValue(I.getOperand(0));
2216 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002217 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002218 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2219}
2220
2221void SelectionDAGLowering::visitVFCmp(User &I) {
2222 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2223 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2224 predicate = FC->getPredicate();
2225 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2226 predicate = FCmpInst::Predicate(FC->getPredicate());
2227 SDValue Op1 = getValue(I.getOperand(0));
2228 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002229 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002230 MVT DestVT = TLI.getValueType(I.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002231
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002232 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2233}
2234
2235void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002236 SmallVector<MVT, 4> ValueVTs;
2237 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2238 unsigned NumValues = ValueVTs.size();
2239 if (NumValues != 0) {
2240 SmallVector<SDValue, 4> Values(NumValues);
2241 SDValue Cond = getValue(I.getOperand(0));
2242 SDValue TrueVal = getValue(I.getOperand(1));
2243 SDValue FalseVal = getValue(I.getOperand(2));
2244
2245 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002246 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002247 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002248 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2249 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2250
Dale Johannesen66978ee2009-01-31 02:22:37 +00002251 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002252 DAG.getVTList(&ValueVTs[0], NumValues),
2253 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002254 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002255}
2256
2257
2258void SelectionDAGLowering::visitTrunc(User &I) {
2259 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2260 SDValue N = getValue(I.getOperand(0));
2261 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002262 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002263}
2264
2265void SelectionDAGLowering::visitZExt(User &I) {
2266 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2267 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2268 SDValue N = getValue(I.getOperand(0));
2269 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002270 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002271}
2272
2273void SelectionDAGLowering::visitSExt(User &I) {
2274 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2275 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2276 SDValue N = getValue(I.getOperand(0));
2277 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002278 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002279}
2280
2281void SelectionDAGLowering::visitFPTrunc(User &I) {
2282 // FPTrunc is never a no-op cast, no need to check
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::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002286 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002287}
2288
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002289void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002290 // FPTrunc is never a no-op cast, no need to check
2291 SDValue N = getValue(I.getOperand(0));
2292 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002293 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002294}
2295
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002296void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002297 // FPToUI 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_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002301}
2302
2303void SelectionDAGLowering::visitFPToSI(User &I) {
2304 // FPToSI 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_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002308}
2309
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002310void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002311 // UIToFP 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::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002315}
2316
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002317void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002318 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002319 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::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002322}
2323
2324void SelectionDAGLowering::visitPtrToInt(User &I) {
2325 // What to do depends on the size of the integer and the size of the pointer.
2326 // We can either truncate, zero extend, or no-op, accordingly.
2327 SDValue N = getValue(I.getOperand(0));
2328 MVT SrcVT = N.getValueType();
2329 MVT DestVT = TLI.getValueType(I.getType());
2330 SDValue Result;
2331 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002332 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002333 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002334 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002335 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002336 setValue(&I, Result);
2337}
2338
2339void SelectionDAGLowering::visitIntToPtr(User &I) {
2340 // What to do depends on the size of the integer and the size of the pointer.
2341 // We can either truncate, zero extend, or no-op, accordingly.
2342 SDValue N = getValue(I.getOperand(0));
2343 MVT SrcVT = N.getValueType();
2344 MVT DestVT = TLI.getValueType(I.getType());
2345 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002346 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002347 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002348 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002349 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002350 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002351}
2352
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002353void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002354 SDValue N = getValue(I.getOperand(0));
2355 MVT DestVT = TLI.getValueType(I.getType());
2356
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002357 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002358 // is either a BIT_CONVERT or a no-op.
2359 if (DestVT != N.getValueType())
Dale Johannesen66978ee2009-01-31 02:22:37 +00002360 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002361 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002362 else
2363 setValue(&I, N); // noop cast.
2364}
2365
2366void SelectionDAGLowering::visitInsertElement(User &I) {
2367 SDValue InVec = getValue(I.getOperand(0));
2368 SDValue InVal = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002369 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002370 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002371 getValue(I.getOperand(2)));
2372
Dale Johannesen66978ee2009-01-31 02:22:37 +00002373 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002374 TLI.getValueType(I.getType()),
2375 InVec, InVal, InIdx));
2376}
2377
2378void SelectionDAGLowering::visitExtractElement(User &I) {
2379 SDValue InVec = getValue(I.getOperand(0));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002380 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002381 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002382 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002383 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002384 TLI.getValueType(I.getType()), InVec, InIdx));
2385}
2386
Mon P Wangaeb06d22008-11-10 04:46:22 +00002387
2388// Utility for visitShuffleVector - Returns true if the mask is mask starting
2389// from SIndx and increasing to the element length (undefs are allowed).
2390static bool SequentialMask(SDValue Mask, unsigned SIndx) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002391 unsigned MaskNumElts = Mask.getNumOperands();
2392 for (unsigned i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002393 if (Mask.getOperand(i).getOpcode() != ISD::UNDEF) {
2394 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2395 if (Idx != i + SIndx)
2396 return false;
2397 }
2398 }
2399 return true;
2400}
2401
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002402void SelectionDAGLowering::visitShuffleVector(User &I) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002403 SDValue Src1 = getValue(I.getOperand(0));
2404 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002405 SDValue Mask = getValue(I.getOperand(2));
2406
Mon P Wangaeb06d22008-11-10 04:46:22 +00002407 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002408 MVT SrcVT = Src1.getValueType();
Mon P Wangc7849c22008-11-16 05:06:27 +00002409 int MaskNumElts = Mask.getNumOperands();
2410 int SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002411
Mon P Wangc7849c22008-11-16 05:06:27 +00002412 if (SrcNumElts == MaskNumElts) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002413 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002414 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002415 return;
2416 }
2417
2418 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002419 MVT MaskEltVT = Mask.getValueType().getVectorElementType();
2420
2421 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2422 // Mask is longer than the source vectors and is a multiple of the source
2423 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002424 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002425 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2426 // The shuffle is concatenating two vectors together.
Dale Johannesen66978ee2009-01-31 02:22:37 +00002427 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002428 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002429 return;
2430 }
2431
Mon P Wangc7849c22008-11-16 05:06:27 +00002432 // Pad both vectors with undefs to make them the same length as the mask.
2433 unsigned NumConcat = MaskNumElts / SrcNumElts;
Dale Johannesen66978ee2009-01-31 02:22:37 +00002434 SDValue UndefVal = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002435
Mon P Wang230e4fa2008-11-21 04:25:21 +00002436 SDValue* MOps1 = new SDValue[NumConcat];
2437 SDValue* MOps2 = new SDValue[NumConcat];
2438 MOps1[0] = Src1;
2439 MOps2[0] = Src2;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002440 for (unsigned i = 1; i != NumConcat; ++i) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002441 MOps1[i] = UndefVal;
2442 MOps2[i] = UndefVal;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002443 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002444 Src1 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002445 VT, MOps1, NumConcat);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002446 Src2 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002447 VT, MOps2, NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002448
2449 delete [] MOps1;
2450 delete [] MOps2;
2451
Mon P Wangaeb06d22008-11-10 04:46:22 +00002452 // Readjust mask for new input vector length.
2453 SmallVector<SDValue, 8> MappedOps;
Mon P Wangc7849c22008-11-16 05:06:27 +00002454 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002455 if (Mask.getOperand(i).getOpcode() == ISD::UNDEF) {
2456 MappedOps.push_back(Mask.getOperand(i));
2457 } else {
Mon P Wangc7849c22008-11-16 05:06:27 +00002458 int Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2459 if (Idx < SrcNumElts)
2460 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
2461 else
2462 MappedOps.push_back(DAG.getConstant(Idx + MaskNumElts - SrcNumElts,
2463 MaskEltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002464 }
2465 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002466 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002467 Mask.getValueType(),
Mon P Wangaeb06d22008-11-10 04:46:22 +00002468 &MappedOps[0], MappedOps.size());
2469
Dale Johannesen66978ee2009-01-31 02:22:37 +00002470 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002471 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002472 return;
2473 }
2474
Mon P Wangc7849c22008-11-16 05:06:27 +00002475 if (SrcNumElts > MaskNumElts) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002476 // Resulting vector is shorter than the incoming vector.
Mon P Wangc7849c22008-11-16 05:06:27 +00002477 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002478 // Shuffle extracts 1st vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002479 setValue(&I, Src1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002480 return;
2481 }
2482
Mon P Wangc7849c22008-11-16 05:06:27 +00002483 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002484 // Shuffle extracts 2nd vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002485 setValue(&I, Src2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002486 return;
2487 }
2488
Mon P Wangc7849c22008-11-16 05:06:27 +00002489 // Analyze the access pattern of the vector to see if we can extract
2490 // two subvectors and do the shuffle. The analysis is done by calculating
2491 // the range of elements the mask access on both vectors.
2492 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2493 int MaxRange[2] = {-1, -1};
2494
2495 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002496 SDValue Arg = Mask.getOperand(i);
2497 if (Arg.getOpcode() != ISD::UNDEF) {
2498 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002499 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2500 int Input = 0;
2501 if (Idx >= SrcNumElts) {
2502 Input = 1;
2503 Idx -= SrcNumElts;
2504 }
2505 if (Idx > MaxRange[Input])
2506 MaxRange[Input] = Idx;
2507 if (Idx < MinRange[Input])
2508 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002509 }
2510 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002511
Mon P Wangc7849c22008-11-16 05:06:27 +00002512 // Check if the access is smaller than the vector size and can we find
2513 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002514 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002515 int StartIdx[2]; // StartIdx to extract from
2516 for (int Input=0; Input < 2; ++Input) {
2517 if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) {
2518 RangeUse[Input] = 0; // Unused
2519 StartIdx[Input] = 0;
2520 } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) {
2521 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002522 // start index that is a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002523 if (MaxRange[Input] < MaskNumElts) {
2524 RangeUse[Input] = 1; // Extract from beginning of the vector
2525 StartIdx[Input] = 0;
2526 } else {
2527 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Mon P Wang6cce3da2008-11-23 04:35:05 +00002528 if (MaxRange[Input] - StartIdx[Input] < MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002529 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002530 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002531 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002532 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002533 }
2534
2535 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002536 setValue(&I, DAG.getNode(ISD::UNDEF,
Dale Johannesen66978ee2009-01-31 02:22:37 +00002537 getCurDebugLoc(), VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002538 return;
2539 }
2540 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2541 // Extract appropriate subvector and generate a vector shuffle
2542 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002543 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002544 if (RangeUse[Input] == 0) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002545 Src = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002546 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002547 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002548 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002549 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002550 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002551 // Calculate new mask.
2552 SmallVector<SDValue, 8> MappedOps;
2553 for (int i = 0; i != MaskNumElts; ++i) {
2554 SDValue Arg = Mask.getOperand(i);
2555 if (Arg.getOpcode() == ISD::UNDEF) {
2556 MappedOps.push_back(Arg);
2557 } else {
2558 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2559 if (Idx < SrcNumElts)
2560 MappedOps.push_back(DAG.getConstant(Idx - StartIdx[0], MaskEltVT));
2561 else {
2562 Idx = Idx - SrcNumElts - StartIdx[1] + MaskNumElts;
2563 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002564 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002565 }
2566 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002567 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002568 Mask.getValueType(),
Mon P Wangc7849c22008-11-16 05:06:27 +00002569 &MappedOps[0], MappedOps.size());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002570 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002571 VT, Src1, Src2, Mask));
Mon P Wangc7849c22008-11-16 05:06:27 +00002572 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002573 }
2574 }
2575
Mon P Wangc7849c22008-11-16 05:06:27 +00002576 // We can't use either concat vectors or extract subvectors so fall back to
2577 // replacing the shuffle with extract and build vector.
2578 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002579 MVT EltVT = VT.getVectorElementType();
2580 MVT PtrVT = TLI.getPointerTy();
2581 SmallVector<SDValue,8> Ops;
Mon P Wangc7849c22008-11-16 05:06:27 +00002582 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002583 SDValue Arg = Mask.getOperand(i);
2584 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002585 Ops.push_back(DAG.getNode(ISD::UNDEF, getCurDebugLoc(), EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002586 } else {
2587 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002588 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2589 if (Idx < SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002590 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002591 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002592 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002593 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002594 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002595 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002596 }
2597 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002598 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002599 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002600}
2601
2602void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2603 const Value *Op0 = I.getOperand(0);
2604 const Value *Op1 = I.getOperand(1);
2605 const Type *AggTy = I.getType();
2606 const Type *ValTy = Op1->getType();
2607 bool IntoUndef = isa<UndefValue>(Op0);
2608 bool FromUndef = isa<UndefValue>(Op1);
2609
2610 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2611 I.idx_begin(), I.idx_end());
2612
2613 SmallVector<MVT, 4> AggValueVTs;
2614 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2615 SmallVector<MVT, 4> ValValueVTs;
2616 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2617
2618 unsigned NumAggValues = AggValueVTs.size();
2619 unsigned NumValValues = ValValueVTs.size();
2620 SmallVector<SDValue, 4> Values(NumAggValues);
2621
2622 SDValue Agg = getValue(Op0);
2623 SDValue Val = getValue(Op1);
2624 unsigned i = 0;
2625 // Copy the beginning value(s) from the original aggregate.
2626 for (; i != LinearIndex; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002627 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002628 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002629 SDValue(Agg.getNode(), Agg.getResNo() + i);
2630 // Copy values from the inserted value(s).
2631 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002632 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002633 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002634 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2635 // Copy remaining value(s) from the original aggregate.
2636 for (; i != NumAggValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002637 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002638 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002639 SDValue(Agg.getNode(), Agg.getResNo() + i);
2640
Dale Johannesen66978ee2009-01-31 02:22:37 +00002641 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002642 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2643 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002644}
2645
2646void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2647 const Value *Op0 = I.getOperand(0);
2648 const Type *AggTy = Op0->getType();
2649 const Type *ValTy = I.getType();
2650 bool OutOfUndef = isa<UndefValue>(Op0);
2651
2652 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2653 I.idx_begin(), I.idx_end());
2654
2655 SmallVector<MVT, 4> ValValueVTs;
2656 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2657
2658 unsigned NumValValues = ValValueVTs.size();
2659 SmallVector<SDValue, 4> Values(NumValValues);
2660
2661 SDValue Agg = getValue(Op0);
2662 // Copy out the selected value(s).
2663 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2664 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002665 OutOfUndef ?
Dale Johannesen66978ee2009-01-31 02:22:37 +00002666 DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002667 Agg.getNode()->getValueType(Agg.getResNo() + i)) :
2668 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002669
Dale Johannesen66978ee2009-01-31 02:22:37 +00002670 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002671 DAG.getVTList(&ValValueVTs[0], NumValValues),
2672 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002673}
2674
2675
2676void SelectionDAGLowering::visitGetElementPtr(User &I) {
2677 SDValue N = getValue(I.getOperand(0));
2678 const Type *Ty = I.getOperand(0)->getType();
2679
2680 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2681 OI != E; ++OI) {
2682 Value *Idx = *OI;
2683 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2684 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2685 if (Field) {
2686 // N = N + Offset
2687 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002688 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002689 DAG.getIntPtrConstant(Offset));
2690 }
2691 Ty = StTy->getElementType(Field);
2692 } else {
2693 Ty = cast<SequentialType>(Ty)->getElementType();
2694
2695 // If this is a constant subscript, handle it quickly.
2696 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2697 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002698 uint64_t Offs =
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002699 TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Dale Johannesen66978ee2009-01-31 02:22:37 +00002700 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002701 DAG.getIntPtrConstant(Offs));
2702 continue;
2703 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002704
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002705 // N = N + Idx * ElementSize;
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002706 uint64_t ElementSize = TD->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002707 SDValue IdxN = getValue(Idx);
2708
2709 // If the index is smaller or larger than intptr_t, truncate or extend
2710 // it.
2711 if (IdxN.getValueType().bitsLT(N.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002712 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002713 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002714 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002715 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002716 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002717
2718 // If this is a multiply by a power of two, turn it into a shl
2719 // immediately. This is a very common case.
2720 if (ElementSize != 1) {
2721 if (isPowerOf2_64(ElementSize)) {
2722 unsigned Amt = Log2_64(ElementSize);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002723 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002724 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002725 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002726 } else {
2727 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002728 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002729 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002730 }
2731 }
2732
Dale Johannesen66978ee2009-01-31 02:22:37 +00002733 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002734 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002735 }
2736 }
2737 setValue(&I, N);
2738}
2739
2740void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2741 // If this is a fixed sized alloca in the entry block of the function,
2742 // allocate it statically on the stack.
2743 if (FuncInfo.StaticAllocaMap.count(&I))
2744 return; // getValue will auto-populate this.
2745
2746 const Type *Ty = I.getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002747 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002748 unsigned Align =
2749 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2750 I.getAlignment());
2751
2752 SDValue AllocSize = getValue(I.getArraySize());
2753 MVT IntPtr = TLI.getPointerTy();
2754 if (IntPtr.bitsLT(AllocSize.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002755 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002756 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002757 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002758 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002759 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002760
Dale Johannesen66978ee2009-01-31 02:22:37 +00002761 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), IntPtr, AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002762 DAG.getIntPtrConstant(TySize));
2763
2764 // Handle alignment. If the requested alignment is less than or equal to
2765 // the stack alignment, ignore it. If the size is greater than or equal to
2766 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2767 unsigned StackAlign =
2768 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2769 if (Align <= StackAlign)
2770 Align = 0;
2771
2772 // Round the size of the allocation up to the stack alignment size
2773 // by add SA-1 to the size.
Dale Johannesen66978ee2009-01-31 02:22:37 +00002774 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002775 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002776 DAG.getIntPtrConstant(StackAlign-1));
2777 // Mask out the low bits for alignment purposes.
Dale Johannesen66978ee2009-01-31 02:22:37 +00002778 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002779 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002780 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2781
2782 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
2783 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2784 MVT::Other);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002785 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002786 VTs, 2, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002787 setValue(&I, DSA);
2788 DAG.setRoot(DSA.getValue(1));
2789
2790 // Inform the Frame Information that we have just allocated a variable-sized
2791 // object.
2792 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2793}
2794
2795void SelectionDAGLowering::visitLoad(LoadInst &I) {
2796 const Value *SV = I.getOperand(0);
2797 SDValue Ptr = getValue(SV);
2798
2799 const Type *Ty = I.getType();
2800 bool isVolatile = I.isVolatile();
2801 unsigned Alignment = I.getAlignment();
2802
2803 SmallVector<MVT, 4> ValueVTs;
2804 SmallVector<uint64_t, 4> Offsets;
2805 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2806 unsigned NumValues = ValueVTs.size();
2807 if (NumValues == 0)
2808 return;
2809
2810 SDValue Root;
2811 bool ConstantMemory = false;
2812 if (I.isVolatile())
2813 // Serialize volatile loads with other side effects.
2814 Root = getRoot();
2815 else if (AA->pointsToConstantMemory(SV)) {
2816 // Do not serialize (non-volatile) loads of constant memory with anything.
2817 Root = DAG.getEntryNode();
2818 ConstantMemory = true;
2819 } else {
2820 // Do not serialize non-volatile loads against each other.
2821 Root = DAG.getRoot();
2822 }
2823
2824 SmallVector<SDValue, 4> Values(NumValues);
2825 SmallVector<SDValue, 4> Chains(NumValues);
2826 MVT PtrVT = Ptr.getValueType();
2827 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002828 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
2829 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002830 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002831 DAG.getConstant(Offsets[i], PtrVT)),
2832 SV, Offsets[i],
2833 isVolatile, Alignment);
2834 Values[i] = L;
2835 Chains[i] = L.getValue(1);
2836 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002837
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002838 if (!ConstantMemory) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002839 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002840 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002841 &Chains[0], NumValues);
2842 if (isVolatile)
2843 DAG.setRoot(Chain);
2844 else
2845 PendingLoads.push_back(Chain);
2846 }
2847
Dale Johannesen66978ee2009-01-31 02:22:37 +00002848 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002849 DAG.getVTList(&ValueVTs[0], NumValues),
2850 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002851}
2852
2853
2854void SelectionDAGLowering::visitStore(StoreInst &I) {
2855 Value *SrcV = I.getOperand(0);
2856 Value *PtrV = I.getOperand(1);
2857
2858 SmallVector<MVT, 4> ValueVTs;
2859 SmallVector<uint64_t, 4> Offsets;
2860 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2861 unsigned NumValues = ValueVTs.size();
2862 if (NumValues == 0)
2863 return;
2864
2865 // Get the lowered operands. Note that we do this after
2866 // checking if NumResults is zero, because with zero results
2867 // the operands won't have values in the map.
2868 SDValue Src = getValue(SrcV);
2869 SDValue Ptr = getValue(PtrV);
2870
2871 SDValue Root = getRoot();
2872 SmallVector<SDValue, 4> Chains(NumValues);
2873 MVT PtrVT = Ptr.getValueType();
2874 bool isVolatile = I.isVolatile();
2875 unsigned Alignment = I.getAlignment();
2876 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002877 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002878 SDValue(Src.getNode(), Src.getResNo() + i),
Dale Johannesen66978ee2009-01-31 02:22:37 +00002879 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002880 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002881 DAG.getConstant(Offsets[i], PtrVT)),
2882 PtrV, Offsets[i],
2883 isVolatile, Alignment);
2884
Dale Johannesen66978ee2009-01-31 02:22:37 +00002885 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002886 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002887}
2888
2889/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2890/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002891void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002892 unsigned Intrinsic) {
2893 bool HasChain = !I.doesNotAccessMemory();
2894 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2895
2896 // Build the operand list.
2897 SmallVector<SDValue, 8> Ops;
2898 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2899 if (OnlyLoad) {
2900 // We don't need to serialize loads against other loads.
2901 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002902 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002903 Ops.push_back(getRoot());
2904 }
2905 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002906
2907 // Info is set by getTgtMemInstrinsic
2908 TargetLowering::IntrinsicInfo Info;
2909 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2910
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002911 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002912 if (!IsTgtIntrinsic)
2913 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002914
2915 // Add all operands of the call to the operand list.
2916 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2917 SDValue Op = getValue(I.getOperand(i));
2918 assert(TLI.isTypeLegal(Op.getValueType()) &&
2919 "Intrinsic uses a non-legal type?");
2920 Ops.push_back(Op);
2921 }
2922
2923 std::vector<MVT> VTs;
2924 if (I.getType() != Type::VoidTy) {
2925 MVT VT = TLI.getValueType(I.getType());
2926 if (VT.isVector()) {
2927 const VectorType *DestTy = cast<VectorType>(I.getType());
2928 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002929
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002930 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2931 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2932 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002933
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002934 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2935 VTs.push_back(VT);
2936 }
2937 if (HasChain)
2938 VTs.push_back(MVT::Other);
2939
2940 const MVT *VTList = DAG.getNodeValueTypes(VTs);
2941
2942 // Create the node.
2943 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002944 if (IsTgtIntrinsic) {
2945 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002946 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002947 VTList, VTs.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002948 &Ops[0], Ops.size(),
2949 Info.memVT, Info.ptrVal, Info.offset,
2950 Info.align, Info.vol,
2951 Info.readMem, Info.writeMem);
2952 }
2953 else if (!HasChain)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002954 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002955 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002956 &Ops[0], Ops.size());
2957 else if (I.getType() != Type::VoidTy)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002958 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002959 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002960 &Ops[0], Ops.size());
2961 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002962 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002963 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002964 &Ops[0], Ops.size());
2965
2966 if (HasChain) {
2967 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2968 if (OnlyLoad)
2969 PendingLoads.push_back(Chain);
2970 else
2971 DAG.setRoot(Chain);
2972 }
2973 if (I.getType() != Type::VoidTy) {
2974 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2975 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002976 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002977 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002978 setValue(&I, Result);
2979 }
2980}
2981
2982/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2983static GlobalVariable *ExtractTypeInfo(Value *V) {
2984 V = V->stripPointerCasts();
2985 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2986 assert ((GV || isa<ConstantPointerNull>(V)) &&
2987 "TypeInfo must be a global variable or NULL");
2988 return GV;
2989}
2990
2991namespace llvm {
2992
2993/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2994/// call, and add them to the specified machine basic block.
2995void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2996 MachineBasicBlock *MBB) {
2997 // Inform the MachineModuleInfo of the personality for this landing pad.
2998 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2999 assert(CE->getOpcode() == Instruction::BitCast &&
3000 isa<Function>(CE->getOperand(0)) &&
3001 "Personality should be a function");
3002 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3003
3004 // Gather all the type infos for this landing pad and pass them along to
3005 // MachineModuleInfo.
3006 std::vector<GlobalVariable *> TyInfo;
3007 unsigned N = I.getNumOperands();
3008
3009 for (unsigned i = N - 1; i > 2; --i) {
3010 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3011 unsigned FilterLength = CI->getZExtValue();
3012 unsigned FirstCatch = i + FilterLength + !FilterLength;
3013 assert (FirstCatch <= N && "Invalid filter length");
3014
3015 if (FirstCatch < N) {
3016 TyInfo.reserve(N - FirstCatch);
3017 for (unsigned j = FirstCatch; j < N; ++j)
3018 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3019 MMI->addCatchTypeInfo(MBB, TyInfo);
3020 TyInfo.clear();
3021 }
3022
3023 if (!FilterLength) {
3024 // Cleanup.
3025 MMI->addCleanup(MBB);
3026 } else {
3027 // Filter.
3028 TyInfo.reserve(FilterLength - 1);
3029 for (unsigned j = i + 1; j < FirstCatch; ++j)
3030 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3031 MMI->addFilterTypeInfo(MBB, TyInfo);
3032 TyInfo.clear();
3033 }
3034
3035 N = i;
3036 }
3037 }
3038
3039 if (N > 3) {
3040 TyInfo.reserve(N - 3);
3041 for (unsigned j = 3; j < N; ++j)
3042 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3043 MMI->addCatchTypeInfo(MBB, TyInfo);
3044 }
3045}
3046
3047}
3048
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003049/// GetSignificand - Get the significand and build it into a floating-point
3050/// number with exponent of 1:
3051///
3052/// Op = (Op & 0x007fffff) | 0x3f800000;
3053///
3054/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003055static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003056GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3057 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003058 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003059 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003060 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003061 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003062}
3063
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003064/// GetExponent - Get the exponent:
3065///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003066/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003067///
3068/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003069static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003070GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3071 DebugLoc dl) {
3072 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003073 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003074 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003075 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003076 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003077 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003078 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003079}
3080
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003081/// getF32Constant - Get 32-bit floating point constant.
3082static SDValue
3083getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3084 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3085}
3086
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003087/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003088/// visitIntrinsicCall: I is a call instruction
3089/// Op is the associated NodeType for I
3090const char *
3091SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003092 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003093 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003094 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003095 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003096 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003097 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003098 getValue(I.getOperand(2)),
3099 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003100 setValue(&I, L);
3101 DAG.setRoot(L.getValue(1));
3102 return 0;
3103}
3104
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003105// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003106const char *
3107SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003108 SDValue Op1 = getValue(I.getOperand(1));
3109 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003110
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003111 MVT ValueVTs[] = { Op1.getValueType(), MVT::i1 };
3112 SDValue Ops[] = { Op1, Op2 };
Bill Wendling74c37652008-12-09 22:08:41 +00003113
Dale Johannesen66978ee2009-01-31 02:22:37 +00003114 SDValue Result = DAG.getNode(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003115 DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2);
Bill Wendling74c37652008-12-09 22:08:41 +00003116
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003117 setValue(&I, Result);
3118 return 0;
3119}
Bill Wendling74c37652008-12-09 22:08:41 +00003120
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003121/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3122/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003123void
3124SelectionDAGLowering::visitExp(CallInst &I) {
3125 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003126 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003127
3128 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3129 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3130 SDValue Op = getValue(I.getOperand(1));
3131
3132 // Put the exponent in the right bit position for later addition to the
3133 // final result:
3134 //
3135 // #define LOG2OFe 1.4426950f
3136 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003137 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003138 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003139 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003140
3141 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003142 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3143 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003144
3145 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003146 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003147 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003148
3149 if (LimitFloatPrecision <= 6) {
3150 // For floating-point precision of 6:
3151 //
3152 // TwoToFractionalPartOfX =
3153 // 0.997535578f +
3154 // (0.735607626f + 0.252464424f * x) * x;
3155 //
3156 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003157 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003158 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003159 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003160 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003161 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3162 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003163 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003164 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003165
3166 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003167 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003168 TwoToFracPartOfX, IntegerPartOfX);
3169
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003170 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003171 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3172 // For floating-point precision of 12:
3173 //
3174 // TwoToFractionalPartOfX =
3175 // 0.999892986f +
3176 // (0.696457318f +
3177 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3178 //
3179 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003180 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003181 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003182 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003183 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003184 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3185 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003186 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003187 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3188 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003189 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003190 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003191
3192 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003193 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003194 TwoToFracPartOfX, IntegerPartOfX);
3195
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003196 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003197 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3198 // For floating-point precision of 18:
3199 //
3200 // TwoToFractionalPartOfX =
3201 // 0.999999982f +
3202 // (0.693148872f +
3203 // (0.240227044f +
3204 // (0.554906021e-1f +
3205 // (0.961591928e-2f +
3206 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3207 //
3208 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003209 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003210 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003211 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003212 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003213 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3214 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003215 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003216 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3217 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003218 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003219 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3220 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003221 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003222 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3223 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003224 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003225 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3226 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003227 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003228 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
3229 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003230
3231 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003232 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003233 TwoToFracPartOfX, IntegerPartOfX);
3234
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003235 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003236 }
3237 } else {
3238 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003239 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003240 getValue(I.getOperand(1)).getValueType(),
3241 getValue(I.getOperand(1)));
3242 }
3243
Dale Johannesen59e577f2008-09-05 18:38:42 +00003244 setValue(&I, result);
3245}
3246
Bill Wendling39150252008-09-09 20:39:27 +00003247/// visitLog - Lower a log intrinsic. Handles the special sequences for
3248/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003249void
3250SelectionDAGLowering::visitLog(CallInst &I) {
3251 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003252 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003253
3254 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3255 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3256 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003257 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003258
3259 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003260 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003261 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003262 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003263
3264 // Get the significand and build it into a floating-point number with
3265 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003266 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003267
3268 if (LimitFloatPrecision <= 6) {
3269 // For floating-point precision of 6:
3270 //
3271 // LogofMantissa =
3272 // -1.1609546f +
3273 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003274 //
Bill Wendling39150252008-09-09 20:39:27 +00003275 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003276 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003277 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003278 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003279 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003280 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3281 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003282 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003283
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003284 result = DAG.getNode(ISD::FADD, dl,
3285 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003286 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3287 // For floating-point precision of 12:
3288 //
3289 // LogOfMantissa =
3290 // -1.7417939f +
3291 // (2.8212026f +
3292 // (-1.4699568f +
3293 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3294 //
3295 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003296 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003297 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003298 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003299 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003300 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3301 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003302 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003303 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3304 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003305 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003306 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3307 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003308 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003309
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003310 result = DAG.getNode(ISD::FADD, dl,
3311 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003312 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3313 // For floating-point precision of 18:
3314 //
3315 // LogOfMantissa =
3316 // -2.1072184f +
3317 // (4.2372794f +
3318 // (-3.7029485f +
3319 // (2.2781945f +
3320 // (-0.87823314f +
3321 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3322 //
3323 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003324 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003325 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003326 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003327 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003328 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3329 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003330 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003331 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3332 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003333 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003334 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3335 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003336 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003337 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3338 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003339 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003340 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3341 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003342 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003343
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003344 result = DAG.getNode(ISD::FADD, dl,
3345 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003346 }
3347 } else {
3348 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003349 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003350 getValue(I.getOperand(1)).getValueType(),
3351 getValue(I.getOperand(1)));
3352 }
3353
Dale Johannesen59e577f2008-09-05 18:38:42 +00003354 setValue(&I, result);
3355}
3356
Bill Wendling3eb59402008-09-09 00:28:24 +00003357/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3358/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003359void
3360SelectionDAGLowering::visitLog2(CallInst &I) {
3361 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003362 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003363
Dale Johannesen853244f2008-09-05 23:49:37 +00003364 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003365 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3366 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003367 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003368
Bill Wendling39150252008-09-09 20:39:27 +00003369 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003370 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003371
3372 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003373 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003374 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003375
Bill Wendling3eb59402008-09-09 00:28:24 +00003376 // Different possible minimax approximations of significand in
3377 // floating-point for various degrees of accuracy over [1,2].
3378 if (LimitFloatPrecision <= 6) {
3379 // For floating-point precision of 6:
3380 //
3381 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3382 //
3383 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003384 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003385 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003386 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003387 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003388 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3389 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003390 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003391
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003392 result = DAG.getNode(ISD::FADD, dl,
3393 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003394 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3395 // For floating-point precision of 12:
3396 //
3397 // Log2ofMantissa =
3398 // -2.51285454f +
3399 // (4.07009056f +
3400 // (-2.12067489f +
3401 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003402 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003403 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003404 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003405 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003406 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003407 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003408 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3409 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003410 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003411 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3412 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003413 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003414 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3415 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003416 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003417
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003418 result = DAG.getNode(ISD::FADD, dl,
3419 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003420 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3421 // For floating-point precision of 18:
3422 //
3423 // Log2ofMantissa =
3424 // -3.0400495f +
3425 // (6.1129976f +
3426 // (-5.3420409f +
3427 // (3.2865683f +
3428 // (-1.2669343f +
3429 // (0.27515199f -
3430 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3431 //
3432 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003433 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003434 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003435 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003436 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003437 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3438 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003439 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003440 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3441 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003442 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003443 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3444 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003445 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003446 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3447 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003448 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003449 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3450 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003451 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003452
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003453 result = DAG.getNode(ISD::FADD, dl,
3454 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003455 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003456 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003457 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003458 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003459 getValue(I.getOperand(1)).getValueType(),
3460 getValue(I.getOperand(1)));
3461 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003462
Dale Johannesen59e577f2008-09-05 18:38:42 +00003463 setValue(&I, result);
3464}
3465
Bill Wendling3eb59402008-09-09 00:28:24 +00003466/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3467/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003468void
3469SelectionDAGLowering::visitLog10(CallInst &I) {
3470 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003471 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003472
Dale Johannesen852680a2008-09-05 21:27:19 +00003473 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003474 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3475 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003476 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003477
Bill Wendling39150252008-09-09 20:39:27 +00003478 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003479 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003480 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003481 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003482
3483 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003484 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003485 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003486
3487 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003488 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003489 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003490 // Log10ofMantissa =
3491 // -0.50419619f +
3492 // (0.60948995f - 0.10380950f * x) * x;
3493 //
3494 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003495 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003496 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003497 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003498 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003499 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3500 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003501 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003502
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003503 result = DAG.getNode(ISD::FADD, dl,
3504 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003505 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3506 // For floating-point precision of 12:
3507 //
3508 // Log10ofMantissa =
3509 // -0.64831180f +
3510 // (0.91751397f +
3511 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3512 //
3513 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003514 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003515 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003516 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003517 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003518 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3519 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003520 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003521 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3522 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003523 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003524
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003525 result = DAG.getNode(ISD::FADD, dl,
3526 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003527 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003528 // For floating-point precision of 18:
3529 //
3530 // Log10ofMantissa =
3531 // -0.84299375f +
3532 // (1.5327582f +
3533 // (-1.0688956f +
3534 // (0.49102474f +
3535 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3536 //
3537 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003538 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003539 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003540 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003541 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003542 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3543 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003544 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003545 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3546 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003547 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003548 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3549 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003550 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003551 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3552 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003553 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003554
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003555 result = DAG.getNode(ISD::FADD, dl,
3556 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003557 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003558 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003559 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003560 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003561 getValue(I.getOperand(1)).getValueType(),
3562 getValue(I.getOperand(1)));
3563 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003564
Dale Johannesen59e577f2008-09-05 18:38:42 +00003565 setValue(&I, result);
3566}
3567
Bill Wendlinge10c8142008-09-09 22:39:21 +00003568/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3569/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003570void
3571SelectionDAGLowering::visitExp2(CallInst &I) {
3572 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003573 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003574
Dale Johannesen601d3c02008-09-05 01:48:15 +00003575 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003576 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3577 SDValue Op = getValue(I.getOperand(1));
3578
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003579 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003580
3581 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003582 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3583 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003584
3585 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003586 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003587 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003588
3589 if (LimitFloatPrecision <= 6) {
3590 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003591 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003592 // TwoToFractionalPartOfX =
3593 // 0.997535578f +
3594 // (0.735607626f + 0.252464424f * x) * x;
3595 //
3596 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003597 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003598 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003599 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003600 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003601 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3602 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003603 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003604 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003605 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003606 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003607
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003608 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3609 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003610 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3611 // For floating-point precision of 12:
3612 //
3613 // TwoToFractionalPartOfX =
3614 // 0.999892986f +
3615 // (0.696457318f +
3616 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3617 //
3618 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003619 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003620 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003621 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003622 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003623 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3624 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003625 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003626 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3627 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003628 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003629 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003630 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003631 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003632
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003633 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3634 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003635 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3636 // For floating-point precision of 18:
3637 //
3638 // TwoToFractionalPartOfX =
3639 // 0.999999982f +
3640 // (0.693148872f +
3641 // (0.240227044f +
3642 // (0.554906021e-1f +
3643 // (0.961591928e-2f +
3644 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3645 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003646 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003647 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003648 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003649 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003650 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3651 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003652 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003653 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3654 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003655 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003656 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3657 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003658 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003659 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3660 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003661 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003662 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3663 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003664 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003665 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003666 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003667 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003668
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003669 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3670 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003671 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003672 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003673 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003674 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003675 getValue(I.getOperand(1)).getValueType(),
3676 getValue(I.getOperand(1)));
3677 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003678
Dale Johannesen601d3c02008-09-05 01:48:15 +00003679 setValue(&I, result);
3680}
3681
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003682/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3683/// limited-precision mode with x == 10.0f.
3684void
3685SelectionDAGLowering::visitPow(CallInst &I) {
3686 SDValue result;
3687 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003688 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003689 bool IsExp10 = false;
3690
3691 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003692 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003693 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3694 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3695 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3696 APFloat Ten(10.0f);
3697 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3698 }
3699 }
3700 }
3701
3702 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3703 SDValue Op = getValue(I.getOperand(2));
3704
3705 // Put the exponent in the right bit position for later addition to the
3706 // final result:
3707 //
3708 // #define LOG2OF10 3.3219281f
3709 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003710 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003711 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003712 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003713
3714 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003715 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3716 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003717
3718 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003719 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003720 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003721
3722 if (LimitFloatPrecision <= 6) {
3723 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003724 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003725 // twoToFractionalPartOfX =
3726 // 0.997535578f +
3727 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003728 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003729 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003730 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003731 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003732 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003733 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003734 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3735 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003736 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003737 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003738 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003739 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003740
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003741 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3742 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003743 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3744 // For floating-point precision of 12:
3745 //
3746 // TwoToFractionalPartOfX =
3747 // 0.999892986f +
3748 // (0.696457318f +
3749 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3750 //
3751 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003752 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003753 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003754 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003755 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003756 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3757 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003758 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003759 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3760 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003761 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003762 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003763 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003764 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003765
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003766 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3767 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003768 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3769 // For floating-point precision of 18:
3770 //
3771 // TwoToFractionalPartOfX =
3772 // 0.999999982f +
3773 // (0.693148872f +
3774 // (0.240227044f +
3775 // (0.554906021e-1f +
3776 // (0.961591928e-2f +
3777 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3778 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003779 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003780 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003781 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003782 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003783 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3784 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003785 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003786 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3787 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003788 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003789 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3790 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003791 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003792 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3793 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003794 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003795 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3796 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003797 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003798 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003799 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003800 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003801
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003802 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3803 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003804 }
3805 } else {
3806 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003807 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003808 getValue(I.getOperand(1)).getValueType(),
3809 getValue(I.getOperand(1)),
3810 getValue(I.getOperand(2)));
3811 }
3812
3813 setValue(&I, result);
3814}
3815
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003816/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3817/// we want to emit this as a call to a named external function, return the name
3818/// otherwise lower it and return null.
3819const char *
3820SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003821 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003822 switch (Intrinsic) {
3823 default:
3824 // By default, turn this into a target intrinsic node.
3825 visitTargetIntrinsic(I, Intrinsic);
3826 return 0;
3827 case Intrinsic::vastart: visitVAStart(I); return 0;
3828 case Intrinsic::vaend: visitVAEnd(I); return 0;
3829 case Intrinsic::vacopy: visitVACopy(I); return 0;
3830 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003831 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003832 getValue(I.getOperand(1))));
3833 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003834 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003835 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003836 getValue(I.getOperand(1))));
3837 return 0;
3838 case Intrinsic::setjmp:
3839 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3840 break;
3841 case Intrinsic::longjmp:
3842 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3843 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003844 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003845 SDValue Op1 = getValue(I.getOperand(1));
3846 SDValue Op2 = getValue(I.getOperand(2));
3847 SDValue Op3 = getValue(I.getOperand(3));
3848 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003849 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003850 I.getOperand(1), 0, I.getOperand(2), 0));
3851 return 0;
3852 }
Chris Lattner824b9582008-11-21 16:42:48 +00003853 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003854 SDValue Op1 = getValue(I.getOperand(1));
3855 SDValue Op2 = getValue(I.getOperand(2));
3856 SDValue Op3 = getValue(I.getOperand(3));
3857 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003858 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003859 I.getOperand(1), 0));
3860 return 0;
3861 }
Chris Lattner824b9582008-11-21 16:42:48 +00003862 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003863 SDValue Op1 = getValue(I.getOperand(1));
3864 SDValue Op2 = getValue(I.getOperand(2));
3865 SDValue Op3 = getValue(I.getOperand(3));
3866 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3867
3868 // If the source and destination are known to not be aliases, we can
3869 // lower memmove as memcpy.
3870 uint64_t Size = -1ULL;
3871 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003872 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003873 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3874 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003875 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003876 I.getOperand(1), 0, I.getOperand(2), 0));
3877 return 0;
3878 }
3879
Dale Johannesena04b7572009-02-03 23:04:43 +00003880 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003881 I.getOperand(1), 0, I.getOperand(2), 0));
3882 return 0;
3883 }
3884 case Intrinsic::dbg_stoppoint: {
Devang Patel83489bb2009-01-13 00:35:13 +00003885 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003886 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003887 if (DW && DW->ValidDebugInfo(SPI.getContext())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003888 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3889 SPI.getLine(),
3890 SPI.getColumn(),
Devang Patel83489bb2009-01-13 00:35:13 +00003891 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003892 DICompileUnit CU(cast<GlobalVariable>(SPI.getContext()));
3893 unsigned SrcFile = DW->RecordSource(CU.getDirectory(), CU.getFilename());
3894 unsigned idx = DAG.getMachineFunction().
3895 getOrCreateDebugLocID(SrcFile,
3896 SPI.getLine(),
3897 SPI.getColumn());
Dale Johannesen66978ee2009-01-31 02:22:37 +00003898 setCurDebugLoc(DebugLoc::get(idx));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003899 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003900 return 0;
3901 }
3902 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003903 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003904 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patelb79b5352009-01-19 23:21:49 +00003905 if (DW && DW->ValidDebugInfo(RSI.getContext())) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003906 unsigned LabelID =
Devang Patel83489bb2009-01-13 00:35:13 +00003907 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Dale Johannesen8ad9b432009-02-04 01:17:06 +00003908 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3909 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003910 }
3911
3912 return 0;
3913 }
3914 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003915 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003916 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patelb79b5352009-01-19 23:21:49 +00003917 if (DW && DW->ValidDebugInfo(REI.getContext())) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003918 unsigned LabelID =
Devang Patel83489bb2009-01-13 00:35:13 +00003919 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
Dale Johannesen8ad9b432009-02-04 01:17:06 +00003920 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3921 getRoot(), LabelID));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003922 }
3923
3924 return 0;
3925 }
3926 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003927 DwarfWriter *DW = DAG.getDwarfWriter();
3928 if (!DW) return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003929 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
3930 Value *SP = FSI.getSubprogram();
Devang Patelcf3a4482009-01-15 23:41:32 +00003931 if (SP && DW->ValidDebugInfo(SP)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003932 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3933 // what (most?) gdb expects.
Devang Patel83489bb2009-01-13 00:35:13 +00003934 DISubprogram Subprogram(cast<GlobalVariable>(SP));
3935 DICompileUnit CompileUnit = Subprogram.getCompileUnit();
3936 unsigned SrcFile = DW->RecordSource(CompileUnit.getDirectory(),
3937 CompileUnit.getFilename());
Bill Wendling9bc96a52009-02-03 00:55:04 +00003938
Devang Patel20dd0462008-11-06 00:30:09 +00003939 // Record the source line but does not create a label for the normal
3940 // function start. It will be emitted at asm emission time. However,
3941 // create a label if this is a beginning of inlined function.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003942 unsigned Line = Subprogram.getLineNumber();
Bill Wendling9bc96a52009-02-03 00:55:04 +00003943 unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile);
3944
Devang Patel83489bb2009-01-13 00:35:13 +00003945 if (DW->getRecordSourceLineCount() != 1)
Dale Johannesen8ad9b432009-02-04 01:17:06 +00003946 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3947 getRoot(), LabelID));
Bill Wendling9bc96a52009-02-03 00:55:04 +00003948
Dale Johannesen66978ee2009-01-31 02:22:37 +00003949 setCurDebugLoc(DebugLoc::get(DAG.getMachineFunction().
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003950 getOrCreateDebugLocID(SrcFile, Line, 0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003951 }
3952
3953 return 0;
3954 }
3955 case Intrinsic::dbg_declare: {
Devang Patel83489bb2009-01-13 00:35:13 +00003956 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003957 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3958 Value *Variable = DI.getVariable();
Devang Patelb79b5352009-01-19 23:21:49 +00003959 if (DW && DW->ValidDebugInfo(Variable))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003960 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003961 getValue(DI.getAddress()), getValue(Variable)));
3962 return 0;
3963 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003964
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003965 case Intrinsic::eh_exception: {
3966 if (!CurMBB->isLandingPad()) {
3967 // FIXME: Mark exception register as live in. Hack for PR1508.
3968 unsigned Reg = TLI.getExceptionAddressRegister();
3969 if (Reg) CurMBB->addLiveIn(Reg);
3970 }
3971 // Insert the EXCEPTIONADDR instruction.
3972 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3973 SDValue Ops[1];
3974 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003975 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003976 setValue(&I, Op);
3977 DAG.setRoot(Op.getValue(1));
3978 return 0;
3979 }
3980
3981 case Intrinsic::eh_selector_i32:
3982 case Intrinsic::eh_selector_i64: {
3983 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3984 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
3985 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003986
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003987 if (MMI) {
3988 if (CurMBB->isLandingPad())
3989 AddCatchInfo(I, MMI, CurMBB);
3990 else {
3991#ifndef NDEBUG
3992 FuncInfo.CatchInfoLost.insert(&I);
3993#endif
3994 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3995 unsigned Reg = TLI.getExceptionSelectorRegister();
3996 if (Reg) CurMBB->addLiveIn(Reg);
3997 }
3998
3999 // Insert the EHSELECTION instruction.
4000 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4001 SDValue Ops[2];
4002 Ops[0] = getValue(I.getOperand(1));
4003 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004004 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004005 setValue(&I, Op);
4006 DAG.setRoot(Op.getValue(1));
4007 } else {
4008 setValue(&I, DAG.getConstant(0, VT));
4009 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004010
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004011 return 0;
4012 }
4013
4014 case Intrinsic::eh_typeid_for_i32:
4015 case Intrinsic::eh_typeid_for_i64: {
4016 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4017 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4018 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004019
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004020 if (MMI) {
4021 // Find the type id for the given typeinfo.
4022 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4023
4024 unsigned TypeID = MMI->getTypeIDFor(GV);
4025 setValue(&I, DAG.getConstant(TypeID, VT));
4026 } else {
4027 // Return something different to eh_selector.
4028 setValue(&I, DAG.getConstant(1, VT));
4029 }
4030
4031 return 0;
4032 }
4033
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004034 case Intrinsic::eh_return_i32:
4035 case Intrinsic::eh_return_i64:
4036 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004037 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004038 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004039 MVT::Other,
4040 getControlRoot(),
4041 getValue(I.getOperand(1)),
4042 getValue(I.getOperand(2))));
4043 } else {
4044 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4045 }
4046
4047 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004048 case Intrinsic::eh_unwind_init:
4049 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4050 MMI->setCallsUnwindInit(true);
4051 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004052
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004053 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004054
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004055 case Intrinsic::eh_dwarf_cfa: {
4056 MVT VT = getValue(I.getOperand(1)).getValueType();
4057 SDValue CfaArg;
4058 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004059 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004060 TLI.getPointerTy(), getValue(I.getOperand(1)));
4061 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004062 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004063 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004064
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004065 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004066 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004067 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004068 TLI.getPointerTy()),
4069 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004070 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004071 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004072 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004073 TLI.getPointerTy(),
4074 DAG.getConstant(0,
4075 TLI.getPointerTy())),
4076 Offset));
4077 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004078 }
4079
Mon P Wang77cdf302008-11-10 20:54:11 +00004080 case Intrinsic::convertff:
4081 case Intrinsic::convertfsi:
4082 case Intrinsic::convertfui:
4083 case Intrinsic::convertsif:
4084 case Intrinsic::convertuif:
4085 case Intrinsic::convertss:
4086 case Intrinsic::convertsu:
4087 case Intrinsic::convertus:
4088 case Intrinsic::convertuu: {
4089 ISD::CvtCode Code = ISD::CVT_INVALID;
4090 switch (Intrinsic) {
4091 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4092 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4093 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4094 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4095 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4096 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4097 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4098 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4099 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4100 }
4101 MVT DestVT = TLI.getValueType(I.getType());
4102 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004103 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004104 DAG.getValueType(DestVT),
4105 DAG.getValueType(getValue(Op1).getValueType()),
4106 getValue(I.getOperand(2)),
4107 getValue(I.getOperand(3)),
4108 Code));
4109 return 0;
4110 }
4111
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004112 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004113 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004114 getValue(I.getOperand(1)).getValueType(),
4115 getValue(I.getOperand(1))));
4116 return 0;
4117 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004118 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004119 getValue(I.getOperand(1)).getValueType(),
4120 getValue(I.getOperand(1)),
4121 getValue(I.getOperand(2))));
4122 return 0;
4123 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004124 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004125 getValue(I.getOperand(1)).getValueType(),
4126 getValue(I.getOperand(1))));
4127 return 0;
4128 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004129 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004130 getValue(I.getOperand(1)).getValueType(),
4131 getValue(I.getOperand(1))));
4132 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004133 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004134 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004135 return 0;
4136 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004137 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004138 return 0;
4139 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004140 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004141 return 0;
4142 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004143 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004144 return 0;
4145 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004146 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004147 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004148 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004149 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004150 return 0;
4151 case Intrinsic::pcmarker: {
4152 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004153 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004154 return 0;
4155 }
4156 case Intrinsic::readcyclecounter: {
4157 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004158 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004159 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
4160 &Op, 1);
4161 setValue(&I, Tmp);
4162 DAG.setRoot(Tmp.getValue(1));
4163 return 0;
4164 }
4165 case Intrinsic::part_select: {
4166 // Currently not implemented: just abort
4167 assert(0 && "part_select intrinsic not implemented");
4168 abort();
4169 }
4170 case Intrinsic::part_set: {
4171 // Currently not implemented: just abort
4172 assert(0 && "part_set intrinsic not implemented");
4173 abort();
4174 }
4175 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004176 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004177 getValue(I.getOperand(1)).getValueType(),
4178 getValue(I.getOperand(1))));
4179 return 0;
4180 case Intrinsic::cttz: {
4181 SDValue Arg = getValue(I.getOperand(1));
4182 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004183 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004184 setValue(&I, result);
4185 return 0;
4186 }
4187 case Intrinsic::ctlz: {
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::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004191 setValue(&I, result);
4192 return 0;
4193 }
4194 case Intrinsic::ctpop: {
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::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004198 setValue(&I, result);
4199 return 0;
4200 }
4201 case Intrinsic::stacksave: {
4202 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004203 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004204 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
4205 setValue(&I, Tmp);
4206 DAG.setRoot(Tmp.getValue(1));
4207 return 0;
4208 }
4209 case Intrinsic::stackrestore: {
4210 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004211 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004212 return 0;
4213 }
Bill Wendling57344502008-11-18 11:01:33 +00004214 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004215 // Emit code into the DAG to store the stack guard onto the stack.
4216 MachineFunction &MF = DAG.getMachineFunction();
4217 MachineFrameInfo *MFI = MF.getFrameInfo();
4218 MVT PtrTy = TLI.getPointerTy();
4219
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004220 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4221 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004222
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004223 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004224 MFI->setStackProtectorIndex(FI);
4225
4226 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4227
4228 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004229 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004230 PseudoSourceValue::getFixedStack(FI),
4231 0, true);
4232 setValue(&I, Result);
4233 DAG.setRoot(Result);
4234 return 0;
4235 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004236 case Intrinsic::var_annotation:
4237 // Discard annotate attributes
4238 return 0;
4239
4240 case Intrinsic::init_trampoline: {
4241 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4242
4243 SDValue Ops[6];
4244 Ops[0] = getRoot();
4245 Ops[1] = getValue(I.getOperand(1));
4246 Ops[2] = getValue(I.getOperand(2));
4247 Ops[3] = getValue(I.getOperand(3));
4248 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4249 Ops[5] = DAG.getSrcValue(F);
4250
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004251 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004252 DAG.getNodeValueTypes(TLI.getPointerTy(),
4253 MVT::Other), 2,
4254 Ops, 6);
4255
4256 setValue(&I, Tmp);
4257 DAG.setRoot(Tmp.getValue(1));
4258 return 0;
4259 }
4260
4261 case Intrinsic::gcroot:
4262 if (GFI) {
4263 Value *Alloca = I.getOperand(1);
4264 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004265
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004266 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4267 GFI->addStackRoot(FI->getIndex(), TypeMap);
4268 }
4269 return 0;
4270
4271 case Intrinsic::gcread:
4272 case Intrinsic::gcwrite:
4273 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4274 return 0;
4275
4276 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004277 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004278 return 0;
4279 }
4280
4281 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004282 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004283 return 0;
4284 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004285
Bill Wendlingef375462008-11-21 02:38:44 +00004286 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004287 return implVisitAluOverflow(I, ISD::UADDO);
4288 case Intrinsic::sadd_with_overflow:
4289 return implVisitAluOverflow(I, ISD::SADDO);
4290 case Intrinsic::usub_with_overflow:
4291 return implVisitAluOverflow(I, ISD::USUBO);
4292 case Intrinsic::ssub_with_overflow:
4293 return implVisitAluOverflow(I, ISD::SSUBO);
4294 case Intrinsic::umul_with_overflow:
4295 return implVisitAluOverflow(I, ISD::UMULO);
4296 case Intrinsic::smul_with_overflow:
4297 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004298
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004299 case Intrinsic::prefetch: {
4300 SDValue Ops[4];
4301 Ops[0] = getRoot();
4302 Ops[1] = getValue(I.getOperand(1));
4303 Ops[2] = getValue(I.getOperand(2));
4304 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004305 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004306 return 0;
4307 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004308
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004309 case Intrinsic::memory_barrier: {
4310 SDValue Ops[6];
4311 Ops[0] = getRoot();
4312 for (int x = 1; x < 6; ++x)
4313 Ops[x] = getValue(I.getOperand(x));
4314
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004315 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004316 return 0;
4317 }
4318 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004319 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004320 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004321 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004322 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4323 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004324 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004325 getValue(I.getOperand(2)),
4326 getValue(I.getOperand(3)),
4327 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004328 setValue(&I, L);
4329 DAG.setRoot(L.getValue(1));
4330 return 0;
4331 }
4332 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004333 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004334 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004335 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004336 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004337 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004339 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004340 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004341 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004342 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004343 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004344 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004345 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004346 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004348 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004349 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004350 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004351 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004352 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004353 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004354 }
4355}
4356
4357
4358void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4359 bool IsTailCall,
4360 MachineBasicBlock *LandingPad) {
4361 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4362 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4363 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4364 unsigned BeginLabel = 0, EndLabel = 0;
4365
4366 TargetLowering::ArgListTy Args;
4367 TargetLowering::ArgListEntry Entry;
4368 Args.reserve(CS.arg_size());
4369 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4370 i != e; ++i) {
4371 SDValue ArgNode = getValue(*i);
4372 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4373
4374 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004375 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4376 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4377 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4378 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4379 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4380 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004381 Entry.Alignment = CS.getParamAlignment(attrInd);
4382 Args.push_back(Entry);
4383 }
4384
4385 if (LandingPad && MMI) {
4386 // Insert a label before the invoke call to mark the try range. This can be
4387 // used to detect deletion of the invoke via the MachineModuleInfo.
4388 BeginLabel = MMI->NextLabelID();
4389 // Both PendingLoads and PendingExports must be flushed here;
4390 // this call might not return.
4391 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004392 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4393 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004394 }
4395
4396 std::pair<SDValue,SDValue> Result =
4397 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004398 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004399 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
4400 CS.paramHasAttr(0, Attribute::InReg),
4401 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004402 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004403 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004404 if (CS.getType() != Type::VoidTy)
4405 setValue(CS.getInstruction(), Result.first);
4406 DAG.setRoot(Result.second);
4407
4408 if (LandingPad && MMI) {
4409 // Insert a label at the end of the invoke call to mark the try range. This
4410 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4411 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004412 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4413 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004414
4415 // Inform MachineModuleInfo of range.
4416 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4417 }
4418}
4419
4420
4421void SelectionDAGLowering::visitCall(CallInst &I) {
4422 const char *RenameFn = 0;
4423 if (Function *F = I.getCalledFunction()) {
4424 if (F->isDeclaration()) {
4425 if (unsigned IID = F->getIntrinsicID()) {
4426 RenameFn = visitIntrinsicCall(I, IID);
4427 if (!RenameFn)
4428 return;
4429 }
4430 }
4431
4432 // Check for well-known libc/libm calls. If the function is internal, it
4433 // can't be a library call.
4434 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004435 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004436 const char *NameStr = F->getNameStart();
4437 if (NameStr[0] == 'c' &&
4438 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4439 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4440 if (I.getNumOperands() == 3 && // Basic sanity checks.
4441 I.getOperand(1)->getType()->isFloatingPoint() &&
4442 I.getType() == I.getOperand(1)->getType() &&
4443 I.getType() == I.getOperand(2)->getType()) {
4444 SDValue LHS = getValue(I.getOperand(1));
4445 SDValue RHS = getValue(I.getOperand(2));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004446 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004447 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004448 return;
4449 }
4450 } else if (NameStr[0] == 'f' &&
4451 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4452 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4453 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4454 if (I.getNumOperands() == 2 && // Basic sanity checks.
4455 I.getOperand(1)->getType()->isFloatingPoint() &&
4456 I.getType() == I.getOperand(1)->getType()) {
4457 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004458 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004459 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004460 return;
4461 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004462 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004463 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4464 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4465 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4466 if (I.getNumOperands() == 2 && // Basic sanity checks.
4467 I.getOperand(1)->getType()->isFloatingPoint() &&
4468 I.getType() == I.getOperand(1)->getType()) {
4469 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004470 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004471 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004472 return;
4473 }
4474 } else if (NameStr[0] == 'c' &&
4475 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4476 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4477 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4478 if (I.getNumOperands() == 2 && // Basic sanity checks.
4479 I.getOperand(1)->getType()->isFloatingPoint() &&
4480 I.getType() == I.getOperand(1)->getType()) {
4481 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004482 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004483 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004484 return;
4485 }
4486 }
4487 }
4488 } else if (isa<InlineAsm>(I.getOperand(0))) {
4489 visitInlineAsm(&I);
4490 return;
4491 }
4492
4493 SDValue Callee;
4494 if (!RenameFn)
4495 Callee = getValue(I.getOperand(0));
4496 else
Bill Wendling056292f2008-09-16 21:48:12 +00004497 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004498
4499 LowerCallTo(&I, Callee, I.isTailCall());
4500}
4501
4502
4503/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004504/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004505/// Chain/Flag as the input and updates them for the output Chain/Flag.
4506/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004507SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004508 SDValue &Chain,
4509 SDValue *Flag) const {
4510 // Assemble the legal parts into the final values.
4511 SmallVector<SDValue, 4> Values(ValueVTs.size());
4512 SmallVector<SDValue, 8> Parts;
4513 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4514 // Copy the legal parts from the registers.
4515 MVT ValueVT = ValueVTs[Value];
4516 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4517 MVT RegisterVT = RegVTs[Value];
4518
4519 Parts.resize(NumRegs);
4520 for (unsigned i = 0; i != NumRegs; ++i) {
4521 SDValue P;
4522 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004523 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004524 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004525 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004526 *Flag = P.getValue(2);
4527 }
4528 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004529
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004530 // If the source register was virtual and if we know something about it,
4531 // add an assert node.
4532 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4533 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4534 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4535 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4536 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4537 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004538
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004539 unsigned RegSize = RegisterVT.getSizeInBits();
4540 unsigned NumSignBits = LOI.NumSignBits;
4541 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004542
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004543 // FIXME: We capture more information than the dag can represent. For
4544 // now, just use the tightest assertzext/assertsext possible.
4545 bool isSExt = true;
4546 MVT FromVT(MVT::Other);
4547 if (NumSignBits == RegSize)
4548 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4549 else if (NumZeroBits >= RegSize-1)
4550 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4551 else if (NumSignBits > RegSize-8)
4552 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
4553 else if (NumZeroBits >= RegSize-9)
4554 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4555 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004556 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004557 else if (NumZeroBits >= RegSize-17)
Bill Wendling181b6272008-10-19 20:34:04 +00004558 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004559 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004560 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004561 else if (NumZeroBits >= RegSize-33)
Bill Wendling181b6272008-10-19 20:34:04 +00004562 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004563
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004564 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004565 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004566 RegisterVT, P, DAG.getValueType(FromVT));
4567
4568 }
4569 }
4570 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004571
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004572 Parts[i] = P;
4573 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004574
Dale Johannesen66978ee2009-01-31 02:22:37 +00004575 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
4576 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004577 Part += NumRegs;
4578 Parts.clear();
4579 }
4580
Dale Johannesen66978ee2009-01-31 02:22:37 +00004581 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004582 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4583 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004584}
4585
4586/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004587/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004588/// Chain/Flag as the input and updates them for the output Chain/Flag.
4589/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004590void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004591 SDValue &Chain, SDValue *Flag) const {
4592 // Get the list of the values's legal parts.
4593 unsigned NumRegs = Regs.size();
4594 SmallVector<SDValue, 8> Parts(NumRegs);
4595 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4596 MVT ValueVT = ValueVTs[Value];
4597 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4598 MVT RegisterVT = RegVTs[Value];
4599
Dale Johannesen66978ee2009-01-31 02:22:37 +00004600 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004601 &Parts[Part], NumParts, RegisterVT);
4602 Part += NumParts;
4603 }
4604
4605 // Copy the parts into the registers.
4606 SmallVector<SDValue, 8> Chains(NumRegs);
4607 for (unsigned i = 0; i != NumRegs; ++i) {
4608 SDValue Part;
4609 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004610 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004611 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004612 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004613 *Flag = Part.getValue(1);
4614 }
4615 Chains[i] = Part.getValue(0);
4616 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004617
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004618 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004619 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004620 // flagged to it. That is the CopyToReg nodes and the user are considered
4621 // a single scheduling unit. If we create a TokenFactor and return it as
4622 // chain, then the TokenFactor is both a predecessor (operand) of the
4623 // user as well as a successor (the TF operands are flagged to the user).
4624 // c1, f1 = CopyToReg
4625 // c2, f2 = CopyToReg
4626 // c3 = TokenFactor c1, c2
4627 // ...
4628 // = op c3, ..., f2
4629 Chain = Chains[NumRegs-1];
4630 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004631 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004632}
4633
4634/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004635/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004636/// values added into it.
4637void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
4638 std::vector<SDValue> &Ops) const {
4639 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
4640 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
4641 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4642 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4643 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004644 for (unsigned i = 0; i != NumRegs; ++i) {
4645 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004646 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004647 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004648 }
4649}
4650
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004651/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004652/// i.e. it isn't a stack pointer or some other special register, return the
4653/// register class for the register. Otherwise, return null.
4654static const TargetRegisterClass *
4655isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4656 const TargetLowering &TLI,
4657 const TargetRegisterInfo *TRI) {
4658 MVT FoundVT = MVT::Other;
4659 const TargetRegisterClass *FoundRC = 0;
4660 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4661 E = TRI->regclass_end(); RCI != E; ++RCI) {
4662 MVT ThisVT = MVT::Other;
4663
4664 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004665 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004666 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4667 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4668 I != E; ++I) {
4669 if (TLI.isTypeLegal(*I)) {
4670 // If we have already found this register in a different register class,
4671 // choose the one with the largest VT specified. For example, on
4672 // PowerPC, we favor f64 register classes over f32.
4673 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4674 ThisVT = *I;
4675 break;
4676 }
4677 }
4678 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004679
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004680 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004681
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004682 // NOTE: This isn't ideal. In particular, this might allocate the
4683 // frame pointer in functions that need it (due to them not being taken
4684 // out of allocation, because a variable sized allocation hasn't been seen
4685 // yet). This is a slight code pessimization, but should still work.
4686 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4687 E = RC->allocation_order_end(MF); I != E; ++I)
4688 if (*I == Reg) {
4689 // We found a matching register class. Keep looking at others in case
4690 // we find one with larger registers that this physreg is also in.
4691 FoundRC = RC;
4692 FoundVT = ThisVT;
4693 break;
4694 }
4695 }
4696 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004697}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004698
4699
4700namespace llvm {
4701/// AsmOperandInfo - This contains information for each constraint that we are
4702/// lowering.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004703struct VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004704 public TargetLowering::AsmOperandInfo {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004705 /// CallOperand - If this is the result output operand or a clobber
4706 /// this is null, otherwise it is the incoming operand to the CallInst.
4707 /// This gets modified as the asm is processed.
4708 SDValue CallOperand;
4709
4710 /// AssignedRegs - If this is a register or register class operand, this
4711 /// contains the set of register corresponding to the operand.
4712 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004713
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004714 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4715 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4716 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004717
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004718 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4719 /// busy in OutputRegs/InputRegs.
4720 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004721 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004722 std::set<unsigned> &InputRegs,
4723 const TargetRegisterInfo &TRI) const {
4724 if (isOutReg) {
4725 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4726 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4727 }
4728 if (isInReg) {
4729 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4730 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4731 }
4732 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004733
Chris Lattner81249c92008-10-17 17:05:25 +00004734 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4735 /// corresponds to. If there is no Value* for this operand, it returns
4736 /// MVT::Other.
4737 MVT getCallOperandValMVT(const TargetLowering &TLI,
4738 const TargetData *TD) const {
4739 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004740
Chris Lattner81249c92008-10-17 17:05:25 +00004741 if (isa<BasicBlock>(CallOperandVal))
4742 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004743
Chris Lattner81249c92008-10-17 17:05:25 +00004744 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004745
Chris Lattner81249c92008-10-17 17:05:25 +00004746 // If this is an indirect operand, the operand is a pointer to the
4747 // accessed type.
4748 if (isIndirect)
4749 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004750
Chris Lattner81249c92008-10-17 17:05:25 +00004751 // If OpTy is not a single value, it may be a struct/union that we
4752 // can tile with integers.
4753 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4754 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4755 switch (BitSize) {
4756 default: break;
4757 case 1:
4758 case 8:
4759 case 16:
4760 case 32:
4761 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004762 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004763 OpTy = IntegerType::get(BitSize);
4764 break;
4765 }
4766 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004767
Chris Lattner81249c92008-10-17 17:05:25 +00004768 return TLI.getValueType(OpTy, true);
4769 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004770
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004771private:
4772 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4773 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004774 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004775 const TargetRegisterInfo &TRI) {
4776 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4777 Regs.insert(Reg);
4778 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4779 for (; *Aliases; ++Aliases)
4780 Regs.insert(*Aliases);
4781 }
4782};
4783} // end llvm namespace.
4784
4785
4786/// GetRegistersForValue - Assign registers (virtual or physical) for the
4787/// specified operand. We prefer to assign virtual registers, to allow the
4788/// register allocator handle the assignment process. However, if the asm uses
4789/// features that we can't model on machineinstrs, we have SDISel do the
4790/// allocation. This produces generally horrible, but correct, code.
4791///
4792/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004793/// Input and OutputRegs are the set of already allocated physical registers.
4794///
4795void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004796GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004797 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004798 std::set<unsigned> &InputRegs) {
4799 // Compute whether this value requires an input register, an output register,
4800 // or both.
4801 bool isOutReg = false;
4802 bool isInReg = false;
4803 switch (OpInfo.Type) {
4804 case InlineAsm::isOutput:
4805 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004806
4807 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004808 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004809 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004810 break;
4811 case InlineAsm::isInput:
4812 isInReg = true;
4813 isOutReg = false;
4814 break;
4815 case InlineAsm::isClobber:
4816 isOutReg = true;
4817 isInReg = true;
4818 break;
4819 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004820
4821
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004822 MachineFunction &MF = DAG.getMachineFunction();
4823 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004824
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004825 // If this is a constraint for a single physreg, or a constraint for a
4826 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004827 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004828 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4829 OpInfo.ConstraintVT);
4830
4831 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004832 if (OpInfo.ConstraintVT != MVT::Other) {
4833 // If this is a FP input in an integer register (or visa versa) insert a bit
4834 // cast of the input value. More generally, handle any case where the input
4835 // value disagrees with the register class we plan to stick this in.
4836 if (OpInfo.Type == InlineAsm::isInput &&
4837 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4838 // Try to convert to the first MVT that the reg class contains. If the
4839 // types are identical size, use a bitcast to convert (e.g. two differing
4840 // vector types).
4841 MVT RegVT = *PhysReg.second->vt_begin();
4842 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004843 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004844 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004845 OpInfo.ConstraintVT = RegVT;
4846 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4847 // If the input is a FP value and we want it in FP registers, do a
4848 // bitcast to the corresponding integer type. This turns an f64 value
4849 // into i64, which can be passed with two i32 values on a 32-bit
4850 // machine.
4851 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004852 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004853 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004854 OpInfo.ConstraintVT = RegVT;
4855 }
4856 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004857
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004858 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004859 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004860
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004861 MVT RegVT;
4862 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004863
4864 // If this is a constraint for a specific physical register, like {r17},
4865 // assign it now.
4866 if (PhysReg.first) {
4867 if (OpInfo.ConstraintVT == MVT::Other)
4868 ValueVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004869
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004870 // Get the actual register value type. This is important, because the user
4871 // may have asked for (e.g.) the AX register in i32 type. We need to
4872 // remember that AX is actually i16 to get the right extension.
4873 RegVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004874
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004875 // This is a explicit reference to a physical register.
4876 Regs.push_back(PhysReg.first);
4877
4878 // If this is an expanded reference, add the rest of the regs to Regs.
4879 if (NumRegs != 1) {
4880 TargetRegisterClass::iterator I = PhysReg.second->begin();
4881 for (; *I != PhysReg.first; ++I)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004882 assert(I != PhysReg.second->end() && "Didn't find reg!");
4883
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004884 // Already added the first reg.
4885 --NumRegs; ++I;
4886 for (; NumRegs; --NumRegs, ++I) {
4887 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
4888 Regs.push_back(*I);
4889 }
4890 }
4891 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4892 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4893 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4894 return;
4895 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004896
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004897 // Otherwise, if this was a reference to an LLVM register class, create vregs
4898 // for this reference.
4899 std::vector<unsigned> RegClassRegs;
4900 const TargetRegisterClass *RC = PhysReg.second;
4901 if (RC) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004902 // If this is a tied register, our regalloc doesn't know how to maintain
Chris Lattner58f15c42008-10-17 16:21:11 +00004903 // the constraint, so we have to pick a register to pin the input/output to.
4904 // If it isn't a matched constraint, go ahead and create vreg and let the
4905 // regalloc do its thing.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004906 if (!OpInfo.hasMatchingInput()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004907 RegVT = *PhysReg.second->vt_begin();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004908 if (OpInfo.ConstraintVT == MVT::Other)
4909 ValueVT = RegVT;
4910
4911 // Create the appropriate number of virtual registers.
4912 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4913 for (; NumRegs; --NumRegs)
4914 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004915
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004916 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4917 return;
4918 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004919
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004920 // Otherwise, we can't allocate it. Let the code below figure out how to
4921 // maintain these constraints.
4922 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004923
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004924 } else {
4925 // This is a reference to a register class that doesn't directly correspond
4926 // to an LLVM register class. Allocate NumRegs consecutive, available,
4927 // registers from the class.
4928 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4929 OpInfo.ConstraintVT);
4930 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004931
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004932 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4933 unsigned NumAllocated = 0;
4934 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4935 unsigned Reg = RegClassRegs[i];
4936 // See if this register is available.
4937 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4938 (isInReg && InputRegs.count(Reg))) { // Already used.
4939 // Make sure we find consecutive registers.
4940 NumAllocated = 0;
4941 continue;
4942 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004943
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004944 // Check to see if this register is allocatable (i.e. don't give out the
4945 // stack pointer).
4946 if (RC == 0) {
4947 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4948 if (!RC) { // Couldn't allocate this register.
4949 // Reset NumAllocated to make sure we return consecutive registers.
4950 NumAllocated = 0;
4951 continue;
4952 }
4953 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004954
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004955 // Okay, this register is good, we can use it.
4956 ++NumAllocated;
4957
4958 // If we allocated enough consecutive registers, succeed.
4959 if (NumAllocated == NumRegs) {
4960 unsigned RegStart = (i-NumAllocated)+1;
4961 unsigned RegEnd = i+1;
4962 // Mark all of the allocated registers used.
4963 for (unsigned i = RegStart; i != RegEnd; ++i)
4964 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004965
4966 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004967 OpInfo.ConstraintVT);
4968 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4969 return;
4970 }
4971 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004972
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004973 // Otherwise, we couldn't allocate enough registers for this.
4974}
4975
Evan Chengda43bcf2008-09-24 00:05:32 +00004976/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
4977/// processed uses a memory 'm' constraint.
4978static bool
4979hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00004980 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00004981 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
4982 InlineAsm::ConstraintInfo &CI = CInfos[i];
4983 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
4984 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
4985 if (CType == TargetLowering::C_Memory)
4986 return true;
4987 }
4988 }
4989
4990 return false;
4991}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004992
4993/// visitInlineAsm - Handle a call to an InlineAsm object.
4994///
4995void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4996 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
4997
4998 /// ConstraintOperands - Information about all of the constraints.
4999 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005000
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005001 SDValue Chain = getRoot();
5002 SDValue Flag;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005003
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005004 std::set<unsigned> OutputRegs, InputRegs;
5005
5006 // Do a prepass over the constraints, canonicalizing them, and building up the
5007 // ConstraintOperands list.
5008 std::vector<InlineAsm::ConstraintInfo>
5009 ConstraintInfos = IA->ParseConstraints();
5010
Evan Chengda43bcf2008-09-24 00:05:32 +00005011 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005012
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005013 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5014 unsigned ResNo = 0; // ResNo - The result number of the next output.
5015 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5016 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5017 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005018
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005019 MVT OpVT = MVT::Other;
5020
5021 // Compute the value type for each operand.
5022 switch (OpInfo.Type) {
5023 case InlineAsm::isOutput:
5024 // Indirect outputs just consume an argument.
5025 if (OpInfo.isIndirect) {
5026 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5027 break;
5028 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005029
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005030 // The return value of the call is this value. As such, there is no
5031 // corresponding argument.
5032 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5033 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5034 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5035 } else {
5036 assert(ResNo == 0 && "Asm only has one result!");
5037 OpVT = TLI.getValueType(CS.getType());
5038 }
5039 ++ResNo;
5040 break;
5041 case InlineAsm::isInput:
5042 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5043 break;
5044 case InlineAsm::isClobber:
5045 // Nothing to do.
5046 break;
5047 }
5048
5049 // If this is an input or an indirect output, process the call argument.
5050 // BasicBlocks are labels, currently appearing only in asm's.
5051 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005052 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005053 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005054 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005055 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005056 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005057
Chris Lattner81249c92008-10-17 17:05:25 +00005058 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005059 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005060
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005061 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005062 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005063
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005064 // Second pass over the constraints: compute which constraint option to use
5065 // and assign registers to constraints that want a specific physreg.
5066 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5067 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005068
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005069 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005070 // matching input. If their types mismatch, e.g. one is an integer, the
5071 // other is floating point, or their sizes are different, flag it as an
5072 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005073 if (OpInfo.hasMatchingInput()) {
5074 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5075 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005076 if ((OpInfo.ConstraintVT.isInteger() !=
5077 Input.ConstraintVT.isInteger()) ||
5078 (OpInfo.ConstraintVT.getSizeInBits() !=
5079 Input.ConstraintVT.getSizeInBits())) {
5080 cerr << "Unsupported asm: input constraint with a matching output "
5081 << "constraint of incompatible type!\n";
5082 exit(1);
5083 }
5084 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005085 }
5086 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005087
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005088 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005089 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005090
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005091 // If this is a memory input, and if the operand is not indirect, do what we
5092 // need to to provide an address for the memory input.
5093 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5094 !OpInfo.isIndirect) {
5095 assert(OpInfo.Type == InlineAsm::isInput &&
5096 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005097
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005098 // Memory operands really want the address of the value. If we don't have
5099 // an indirect input, put it in the constpool if we can, otherwise spill
5100 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005101
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005102 // If the operand is a float, integer, or vector constant, spill to a
5103 // constant pool entry to get its address.
5104 Value *OpVal = OpInfo.CallOperandVal;
5105 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5106 isa<ConstantVector>(OpVal)) {
5107 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5108 TLI.getPointerTy());
5109 } else {
5110 // Otherwise, create a stack slot and emit a store to it before the
5111 // asm.
5112 const Type *Ty = OpVal->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005113 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005114 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5115 MachineFunction &MF = DAG.getMachineFunction();
5116 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5117 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005118 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005119 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005120 OpInfo.CallOperand = StackSlot;
5121 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005122
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005123 // There is no longer a Value* corresponding to this operand.
5124 OpInfo.CallOperandVal = 0;
5125 // It is now an indirect operand.
5126 OpInfo.isIndirect = true;
5127 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005128
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005129 // If this constraint is for a specific register, allocate it before
5130 // anything else.
5131 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005132 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005133 }
5134 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005135
5136
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005137 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005138 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005139 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5140 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005141
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005142 // C_Register operands have already been allocated, Other/Memory don't need
5143 // to be.
5144 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005145 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005146 }
5147
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005148 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5149 std::vector<SDValue> AsmNodeOperands;
5150 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5151 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005152 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005153
5154
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005155 // Loop over all of the inputs, copying the operand values into the
5156 // appropriate registers and processing the output regs.
5157 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005158
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005159 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5160 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005161
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005162 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5163 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5164
5165 switch (OpInfo.Type) {
5166 case InlineAsm::isOutput: {
5167 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5168 OpInfo.ConstraintType != TargetLowering::C_Register) {
5169 // Memory output, or 'other' output (e.g. 'X' constraint).
5170 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5171
5172 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005173 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5174 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005175 TLI.getPointerTy()));
5176 AsmNodeOperands.push_back(OpInfo.CallOperand);
5177 break;
5178 }
5179
5180 // Otherwise, this is a register or register class output.
5181
5182 // Copy the output from the appropriate register. Find a register that
5183 // we can use.
5184 if (OpInfo.AssignedRegs.Regs.empty()) {
5185 cerr << "Couldn't allocate output reg for constraint '"
5186 << OpInfo.ConstraintCode << "'!\n";
5187 exit(1);
5188 }
5189
5190 // If this is an indirect operand, store through the pointer after the
5191 // asm.
5192 if (OpInfo.isIndirect) {
5193 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5194 OpInfo.CallOperandVal));
5195 } else {
5196 // This is the result value of the call.
5197 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5198 // Concatenate this output onto the outputs list.
5199 RetValRegs.append(OpInfo.AssignedRegs);
5200 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005201
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005202 // Add information to the INLINEASM node to know that this register is
5203 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005204 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5205 6 /* EARLYCLOBBER REGDEF */ :
5206 2 /* REGDEF */ ,
5207 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005208 break;
5209 }
5210 case InlineAsm::isInput: {
5211 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005212
Chris Lattner6bdcda32008-10-17 16:47:46 +00005213 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005214 // If this is required to match an output register we have already set,
5215 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005216 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005217
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005218 // Scan until we find the definition we already emitted of this operand.
5219 // When we find it, create a RegsForValue operand.
5220 unsigned CurOp = 2; // The first operand.
5221 for (; OperandNo; --OperandNo) {
5222 // Advance to the next operand.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005223 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005224 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005225 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
Dale Johannesen913d3df2008-09-12 17:49:03 +00005226 (NumOps & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
Dale Johannesen86b49f82008-09-24 01:07:17 +00005227 (NumOps & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005228 "Skipped past definitions?");
5229 CurOp += (NumOps>>3)+1;
5230 }
5231
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005232 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005233 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005234 if ((NumOps & 7) == 2 /*REGDEF*/
Dale Johannesen913d3df2008-09-12 17:49:03 +00005235 || (NumOps & 7) == 6 /* EARLYCLOBBER REGDEF */) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005236 // Add NumOps>>3 registers to MatchedRegs.
5237 RegsForValue MatchedRegs;
5238 MatchedRegs.TLI = &TLI;
5239 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
5240 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
5241 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
5242 unsigned Reg =
5243 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
5244 MatchedRegs.Regs.push_back(Reg);
5245 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005246
5247 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005248 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5249 Chain, &Flag);
Dale Johannesen86b49f82008-09-24 01:07:17 +00005250 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005251 break;
5252 } else {
Dale Johannesen86b49f82008-09-24 01:07:17 +00005253 assert(((NumOps & 7) == 4) && "Unknown matching constraint!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005254 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005255 // Add information to the INLINEASM node to know about this input.
Dale Johannesen91aac102008-09-17 21:13:11 +00005256 AsmNodeOperands.push_back(DAG.getTargetConstant(NumOps,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005257 TLI.getPointerTy()));
5258 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5259 break;
5260 }
5261 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005262
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005263 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005264 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005265 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005266
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005267 std::vector<SDValue> Ops;
5268 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005269 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005270 if (Ops.empty()) {
5271 cerr << "Invalid operand for inline asm constraint '"
5272 << OpInfo.ConstraintCode << "'!\n";
5273 exit(1);
5274 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005275
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005276 // Add information to the INLINEASM node to know about this input.
5277 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005278 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005279 TLI.getPointerTy()));
5280 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5281 break;
5282 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5283 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5284 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5285 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005286
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005287 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005288 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5289 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005290 TLI.getPointerTy()));
5291 AsmNodeOperands.push_back(InOperandVal);
5292 break;
5293 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005294
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005295 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5296 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5297 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005298 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005299 "Don't know how to handle indirect register inputs yet!");
5300
5301 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005302 if (OpInfo.AssignedRegs.Regs.empty()) {
5303 cerr << "Couldn't allocate output reg for constraint '"
5304 << OpInfo.ConstraintCode << "'!\n";
5305 exit(1);
5306 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005307
Dale Johannesen66978ee2009-01-31 02:22:37 +00005308 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5309 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005310
Dale Johannesen86b49f82008-09-24 01:07:17 +00005311 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/,
5312 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005313 break;
5314 }
5315 case InlineAsm::isClobber: {
5316 // Add the clobbered value to the operand list, so that the register
5317 // allocator is aware that the physreg got clobbered.
5318 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005319 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
5320 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005321 break;
5322 }
5323 }
5324 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005325
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005326 // Finish up input operands.
5327 AsmNodeOperands[0] = Chain;
5328 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005329
Dale Johannesen66978ee2009-01-31 02:22:37 +00005330 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005331 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
5332 &AsmNodeOperands[0], AsmNodeOperands.size());
5333 Flag = Chain.getValue(1);
5334
5335 // If this asm returns a register value, copy the result from that register
5336 // and set it as the value of the call.
5337 if (!RetValRegs.Regs.empty()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005338 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5339 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005340
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005341 // FIXME: Why don't we do this for inline asms with MRVs?
5342 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5343 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005344
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005345 // If any of the results of the inline asm is a vector, it may have the
5346 // wrong width/num elts. This can happen for register classes that can
5347 // contain multiple different value types. The preg or vreg allocated may
5348 // not have the same VT as was expected. Convert it to the right type
5349 // with bit_convert.
5350 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005351 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005352 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005353
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005354 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005355 ResultType.isInteger() && Val.getValueType().isInteger()) {
5356 // If a result value was tied to an input value, the computed result may
5357 // have a wider width than the expected result. Extract the relevant
5358 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005359 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005360 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005361
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005362 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005363 }
Dan Gohman95915732008-10-18 01:03:45 +00005364
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005365 setValue(CS.getInstruction(), Val);
5366 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005367
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005368 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005369
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005370 // Process indirect outputs, first output all of the flagged copies out of
5371 // physregs.
5372 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5373 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5374 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005375 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5376 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005377 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
5378 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005379
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005380 // Emit the non-flagged stores from the physregs.
5381 SmallVector<SDValue, 8> OutChains;
5382 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005383 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005384 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005385 getValue(StoresToEmit[i].second),
5386 StoresToEmit[i].second, 0));
5387 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005388 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005389 &OutChains[0], OutChains.size());
5390 DAG.setRoot(Chain);
5391}
5392
5393
5394void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5395 SDValue Src = getValue(I.getOperand(0));
5396
5397 MVT IntPtr = TLI.getPointerTy();
5398
5399 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005400 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005401 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005402 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005403
5404 // Scale the source by the type size.
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005405 uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005406 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005407 Src, DAG.getIntPtrConstant(ElementSize));
5408
5409 TargetLowering::ArgListTy Args;
5410 TargetLowering::ArgListEntry Entry;
5411 Entry.Node = Src;
5412 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5413 Args.push_back(Entry);
5414
5415 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005416 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005417 CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005418 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005419 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005420 setValue(&I, Result.first); // Pointers always fit in registers
5421 DAG.setRoot(Result.second);
5422}
5423
5424void SelectionDAGLowering::visitFree(FreeInst &I) {
5425 TargetLowering::ArgListTy Args;
5426 TargetLowering::ArgListEntry Entry;
5427 Entry.Node = getValue(I.getOperand(0));
5428 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5429 Args.push_back(Entry);
5430 MVT IntPtr = TLI.getPointerTy();
5431 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005432 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Dan Gohman1937e2f2008-09-16 01:42:28 +00005433 CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005434 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005435 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005436 DAG.setRoot(Result.second);
5437}
5438
5439void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005440 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005441 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005442 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005443 DAG.getSrcValue(I.getOperand(1))));
5444}
5445
5446void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005447 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5448 getRoot(), getValue(I.getOperand(0)),
5449 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005450 setValue(&I, V);
5451 DAG.setRoot(V.getValue(1));
5452}
5453
5454void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005455 DAG.setRoot(DAG.getNode(ISD::VAEND, 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::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005462 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005463 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005464 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005465 getValue(I.getOperand(2)),
5466 DAG.getSrcValue(I.getOperand(1)),
5467 DAG.getSrcValue(I.getOperand(2))));
5468}
5469
5470/// TargetLowering::LowerArguments - This is the default LowerArguments
5471/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005472/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005473/// integrated into SDISel.
5474void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005475 SmallVectorImpl<SDValue> &ArgValues,
5476 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005477 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5478 SmallVector<SDValue, 3+16> Ops;
5479 Ops.push_back(DAG.getRoot());
5480 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5481 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5482
5483 // Add one result value for each formal argument.
5484 SmallVector<MVT, 16> RetVals;
5485 unsigned j = 1;
5486 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5487 I != E; ++I, ++j) {
5488 SmallVector<MVT, 4> ValueVTs;
5489 ComputeValueVTs(*this, I->getType(), ValueVTs);
5490 for (unsigned Value = 0, NumValues = ValueVTs.size();
5491 Value != NumValues; ++Value) {
5492 MVT VT = ValueVTs[Value];
5493 const Type *ArgTy = VT.getTypeForMVT();
5494 ISD::ArgFlagsTy Flags;
5495 unsigned OriginalAlignment =
5496 getTargetData()->getABITypeAlignment(ArgTy);
5497
Devang Patel05988662008-09-25 21:00:45 +00005498 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005499 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005500 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005501 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005502 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005503 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005504 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005505 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005506 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005507 Flags.setByVal();
5508 const PointerType *Ty = cast<PointerType>(I->getType());
5509 const Type *ElementTy = Ty->getElementType();
5510 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005511 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005512 // For ByVal, alignment should be passed from FE. BE will guess if
5513 // this info is not there but there are cases it cannot get right.
5514 if (F.getParamAlignment(j))
5515 FrameAlign = F.getParamAlignment(j);
5516 Flags.setByValAlign(FrameAlign);
5517 Flags.setByValSize(FrameSize);
5518 }
Devang Patel05988662008-09-25 21:00:45 +00005519 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005520 Flags.setNest();
5521 Flags.setOrigAlign(OriginalAlignment);
5522
5523 MVT RegisterVT = getRegisterType(VT);
5524 unsigned NumRegs = getNumRegisters(VT);
5525 for (unsigned i = 0; i != NumRegs; ++i) {
5526 RetVals.push_back(RegisterVT);
5527 ISD::ArgFlagsTy MyFlags = Flags;
5528 if (NumRegs > 1 && i == 0)
5529 MyFlags.setSplit();
5530 // if it isn't first piece, alignment must be 1
5531 else if (i > 0)
5532 MyFlags.setOrigAlign(1);
5533 Ops.push_back(DAG.getArgFlags(MyFlags));
5534 }
5535 }
5536 }
5537
5538 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005539
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005540 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005541 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005542 DAG.getVTList(&RetVals[0], RetVals.size()),
5543 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005544
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005545 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5546 // allows exposing the loads that may be part of the argument access to the
5547 // first DAGCombiner pass.
5548 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005549
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005550 // The number of results should match up, except that the lowered one may have
5551 // an extra flag result.
5552 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5553 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5554 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5555 && "Lowering produced unexpected number of results!");
5556
5557 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5558 if (Result != TmpRes.getNode() && Result->use_empty()) {
5559 HandleSDNode Dummy(DAG.getRoot());
5560 DAG.RemoveDeadNode(Result);
5561 }
5562
5563 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005564
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005565 unsigned NumArgRegs = Result->getNumValues() - 1;
5566 DAG.setRoot(SDValue(Result, NumArgRegs));
5567
5568 // Set up the return result vector.
5569 unsigned i = 0;
5570 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005571 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005572 ++I, ++Idx) {
5573 SmallVector<MVT, 4> ValueVTs;
5574 ComputeValueVTs(*this, I->getType(), ValueVTs);
5575 for (unsigned Value = 0, NumValues = ValueVTs.size();
5576 Value != NumValues; ++Value) {
5577 MVT VT = ValueVTs[Value];
5578 MVT PartVT = getRegisterType(VT);
5579
5580 unsigned NumParts = getNumRegisters(VT);
5581 SmallVector<SDValue, 4> Parts(NumParts);
5582 for (unsigned j = 0; j != NumParts; ++j)
5583 Parts[j] = SDValue(Result, i++);
5584
5585 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005586 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005587 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005588 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005589 AssertOp = ISD::AssertZext;
5590
Dale Johannesen66978ee2009-01-31 02:22:37 +00005591 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5592 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005593 }
5594 }
5595 assert(i == NumArgRegs && "Argument register count mismatch!");
5596}
5597
5598
5599/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5600/// implementation, which just inserts an ISD::CALL node, which is later custom
5601/// lowered by the target to something concrete. FIXME: When all targets are
5602/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5603std::pair<SDValue, SDValue>
5604TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5605 bool RetSExt, bool RetZExt, bool isVarArg,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005606 bool isInreg,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005607 unsigned CallingConv, bool isTailCall,
5608 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005609 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005610 assert((!isTailCall || PerformTailCallOpt) &&
5611 "isTailCall set when tail-call optimizations are disabled!");
5612
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005613 SmallVector<SDValue, 32> Ops;
5614 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005615 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005616
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005617 // Handle all of the outgoing arguments.
5618 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5619 SmallVector<MVT, 4> ValueVTs;
5620 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5621 for (unsigned Value = 0, NumValues = ValueVTs.size();
5622 Value != NumValues; ++Value) {
5623 MVT VT = ValueVTs[Value];
5624 const Type *ArgTy = VT.getTypeForMVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005625 SDValue Op = SDValue(Args[i].Node.getNode(),
5626 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005627 ISD::ArgFlagsTy Flags;
5628 unsigned OriginalAlignment =
5629 getTargetData()->getABITypeAlignment(ArgTy);
5630
5631 if (Args[i].isZExt)
5632 Flags.setZExt();
5633 if (Args[i].isSExt)
5634 Flags.setSExt();
5635 if (Args[i].isInReg)
5636 Flags.setInReg();
5637 if (Args[i].isSRet)
5638 Flags.setSRet();
5639 if (Args[i].isByVal) {
5640 Flags.setByVal();
5641 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5642 const Type *ElementTy = Ty->getElementType();
5643 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005644 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005645 // For ByVal, alignment should come from FE. BE will guess if this
5646 // info is not there but there are cases it cannot get right.
5647 if (Args[i].Alignment)
5648 FrameAlign = Args[i].Alignment;
5649 Flags.setByValAlign(FrameAlign);
5650 Flags.setByValSize(FrameSize);
5651 }
5652 if (Args[i].isNest)
5653 Flags.setNest();
5654 Flags.setOrigAlign(OriginalAlignment);
5655
5656 MVT PartVT = getRegisterType(VT);
5657 unsigned NumParts = getNumRegisters(VT);
5658 SmallVector<SDValue, 4> Parts(NumParts);
5659 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5660
5661 if (Args[i].isSExt)
5662 ExtendKind = ISD::SIGN_EXTEND;
5663 else if (Args[i].isZExt)
5664 ExtendKind = ISD::ZERO_EXTEND;
5665
Dale Johannesen66978ee2009-01-31 02:22:37 +00005666 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005667
5668 for (unsigned i = 0; i != NumParts; ++i) {
5669 // if it isn't first piece, alignment must be 1
5670 ISD::ArgFlagsTy MyFlags = Flags;
5671 if (NumParts > 1 && i == 0)
5672 MyFlags.setSplit();
5673 else if (i != 0)
5674 MyFlags.setOrigAlign(1);
5675
5676 Ops.push_back(Parts[i]);
5677 Ops.push_back(DAG.getArgFlags(MyFlags));
5678 }
5679 }
5680 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005681
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005682 // Figure out the result value types. We start by making a list of
5683 // the potentially illegal return value types.
5684 SmallVector<MVT, 4> LoweredRetTys;
5685 SmallVector<MVT, 4> RetTys;
5686 ComputeValueVTs(*this, RetTy, RetTys);
5687
5688 // Then we translate that to a list of legal types.
5689 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5690 MVT VT = RetTys[I];
5691 MVT RegisterVT = getRegisterType(VT);
5692 unsigned NumRegs = getNumRegisters(VT);
5693 for (unsigned i = 0; i != NumRegs; ++i)
5694 LoweredRetTys.push_back(RegisterVT);
5695 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005696
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005697 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005698
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005699 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005700 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005701 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005702 DAG.getVTList(&LoweredRetTys[0],
5703 LoweredRetTys.size()),
Dale Johannesen86098bd2008-09-26 19:31:26 +00005704 &Ops[0], Ops.size()
5705 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005706 Chain = Res.getValue(LoweredRetTys.size() - 1);
5707
5708 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005709 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005710 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5711
5712 if (RetSExt)
5713 AssertOp = ISD::AssertSext;
5714 else if (RetZExt)
5715 AssertOp = ISD::AssertZext;
5716
5717 SmallVector<SDValue, 4> ReturnValues;
5718 unsigned RegNo = 0;
5719 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5720 MVT VT = RetTys[I];
5721 MVT RegisterVT = getRegisterType(VT);
5722 unsigned NumRegs = getNumRegisters(VT);
5723 unsigned RegNoEnd = NumRegs + RegNo;
5724 SmallVector<SDValue, 4> Results;
5725 for (; RegNo != RegNoEnd; ++RegNo)
5726 Results.push_back(Res.getValue(RegNo));
5727 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005728 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005729 AssertOp);
5730 ReturnValues.push_back(ReturnValue);
5731 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005732 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005733 DAG.getVTList(&RetTys[0], RetTys.size()),
5734 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005735 }
5736
5737 return std::make_pair(Res, Chain);
5738}
5739
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005740void TargetLowering::LowerOperationWrapper(SDNode *N,
5741 SmallVectorImpl<SDValue> &Results,
5742 SelectionDAG &DAG) {
5743 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005744 if (Res.getNode())
5745 Results.push_back(Res);
5746}
5747
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005748SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
5749 assert(0 && "LowerOperation not implemented for this target!");
5750 abort();
5751 return SDValue();
5752}
5753
5754
5755void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5756 SDValue Op = getValue(V);
5757 assert((Op.getOpcode() != ISD::CopyFromReg ||
5758 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5759 "Copy from a reg to the same reg!");
5760 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5761
5762 RegsForValue RFV(TLI, Reg, V->getType());
5763 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005764 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005765 PendingExports.push_back(Chain);
5766}
5767
5768#include "llvm/CodeGen/SelectionDAGISel.h"
5769
5770void SelectionDAGISel::
5771LowerArguments(BasicBlock *LLVMBB) {
5772 // If this is the entry block, emit arguments.
5773 Function &F = *LLVMBB->getParent();
5774 SDValue OldRoot = SDL->DAG.getRoot();
5775 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005776 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005777
5778 unsigned a = 0;
5779 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5780 AI != E; ++AI) {
5781 SmallVector<MVT, 4> ValueVTs;
5782 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5783 unsigned NumValues = ValueVTs.size();
5784 if (!AI->use_empty()) {
5785 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues));
5786 // If this argument is live outside of the entry block, insert a copy from
5787 // whereever we got it to the vreg that other BB's will reference it as.
5788 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo->ValueMap.find(AI);
5789 if (VMI != FuncInfo->ValueMap.end()) {
5790 SDL->CopyValueToVirtualRegister(AI, VMI->second);
5791 }
5792 }
5793 a += NumValues;
5794 }
5795
5796 // Finally, if the target has anything special to do, allow it to do so.
5797 // FIXME: this should insert code into the DAG!
5798 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5799}
5800
5801/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5802/// ensure constants are generated when needed. Remember the virtual registers
5803/// that need to be added to the Machine PHI nodes as input. We cannot just
5804/// directly add them, because expansion might result in multiple MBB's for one
5805/// BB. As such, the start of the BB might correspond to a different MBB than
5806/// the end.
5807///
5808void
5809SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5810 TerminatorInst *TI = LLVMBB->getTerminator();
5811
5812 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5813
5814 // Check successor nodes' PHI nodes that expect a constant to be available
5815 // from this block.
5816 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5817 BasicBlock *SuccBB = TI->getSuccessor(succ);
5818 if (!isa<PHINode>(SuccBB->begin())) continue;
5819 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005820
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005821 // If this terminator has multiple identical successors (common for
5822 // switches), only handle each succ once.
5823 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005824
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005825 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5826 PHINode *PN;
5827
5828 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5829 // nodes and Machine PHI nodes, but the incoming operands have not been
5830 // emitted yet.
5831 for (BasicBlock::iterator I = SuccBB->begin();
5832 (PN = dyn_cast<PHINode>(I)); ++I) {
5833 // Ignore dead phi's.
5834 if (PN->use_empty()) continue;
5835
5836 unsigned Reg;
5837 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5838
5839 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5840 unsigned &RegOut = SDL->ConstantsOut[C];
5841 if (RegOut == 0) {
5842 RegOut = FuncInfo->CreateRegForValue(C);
5843 SDL->CopyValueToVirtualRegister(C, RegOut);
5844 }
5845 Reg = RegOut;
5846 } else {
5847 Reg = FuncInfo->ValueMap[PHIOp];
5848 if (Reg == 0) {
5849 assert(isa<AllocaInst>(PHIOp) &&
5850 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5851 "Didn't codegen value into a register!??");
5852 Reg = FuncInfo->CreateRegForValue(PHIOp);
5853 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5854 }
5855 }
5856
5857 // Remember that this register needs to added to the machine PHI node as
5858 // the input for this MBB.
5859 SmallVector<MVT, 4> ValueVTs;
5860 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5861 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5862 MVT VT = ValueVTs[vti];
5863 unsigned NumRegisters = TLI.getNumRegisters(VT);
5864 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5865 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5866 Reg += NumRegisters;
5867 }
5868 }
5869 }
5870 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005871}
5872
Dan Gohman3df24e62008-09-03 23:12:08 +00005873/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5874/// supports legal types, and it emits MachineInstrs directly instead of
5875/// creating SelectionDAG nodes.
5876///
5877bool
5878SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5879 FastISel *F) {
5880 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005881
Dan Gohman3df24e62008-09-03 23:12:08 +00005882 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5883 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5884
5885 // Check successor nodes' PHI nodes that expect a constant to be available
5886 // from this block.
5887 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5888 BasicBlock *SuccBB = TI->getSuccessor(succ);
5889 if (!isa<PHINode>(SuccBB->begin())) continue;
5890 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005891
Dan Gohman3df24e62008-09-03 23:12:08 +00005892 // If this terminator has multiple identical successors (common for
5893 // switches), only handle each succ once.
5894 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005895
Dan Gohman3df24e62008-09-03 23:12:08 +00005896 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5897 PHINode *PN;
5898
5899 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5900 // nodes and Machine PHI nodes, but the incoming operands have not been
5901 // emitted yet.
5902 for (BasicBlock::iterator I = SuccBB->begin();
5903 (PN = dyn_cast<PHINode>(I)); ++I) {
5904 // Ignore dead phi's.
5905 if (PN->use_empty()) continue;
5906
5907 // Only handle legal types. Two interesting things to note here. First,
5908 // by bailing out early, we may leave behind some dead instructions,
5909 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5910 // own moves. Second, this check is necessary becuase FastISel doesn't
5911 // use CreateRegForValue to create registers, so it always creates
5912 // exactly one register for each non-void instruction.
5913 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5914 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005915 // Promote MVT::i1.
5916 if (VT == MVT::i1)
5917 VT = TLI.getTypeToTransformTo(VT);
5918 else {
5919 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5920 return false;
5921 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005922 }
5923
5924 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5925
5926 unsigned Reg = F->getRegForValue(PHIOp);
5927 if (Reg == 0) {
5928 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5929 return false;
5930 }
5931 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5932 }
5933 }
5934
5935 return true;
5936}