blob: fd15603d9901e4283af4ffe7ed9f0b75d68bd3cd [file] [log] [blame]
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001//===-- SelectionDAGBuild.cpp - Selection-DAG building --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements routines for translating from LLVM IR into SelectionDAG IR.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
15#include "SelectionDAGBuild.h"
16#include "llvm/ADT/BitVector.h"
Dan Gohman5b229802008-09-04 20:49:27 +000017#include "llvm/ADT/SmallSet.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000018#include "llvm/Analysis/AliasAnalysis.h"
19#include "llvm/Constants.h"
20#include "llvm/CallingConv.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
23#include "llvm/GlobalVariable.h"
24#include "llvm/InlineAsm.h"
25#include "llvm/Instructions.h"
26#include "llvm/Intrinsics.h"
27#include "llvm/IntrinsicInst.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000028#include "llvm/Module.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000029#include "llvm/CodeGen/FastISel.h"
30#include "llvm/CodeGen/GCStrategy.h"
31#include "llvm/CodeGen/GCMetadata.h"
32#include "llvm/CodeGen/MachineFunction.h"
33#include "llvm/CodeGen/MachineFrameInfo.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
35#include "llvm/CodeGen/MachineJumpTableInfo.h"
36#include "llvm/CodeGen/MachineModuleInfo.h"
37#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000038#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000039#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel83489bb2009-01-13 00:35:13 +000040#include "llvm/CodeGen/DwarfWriter.h"
41#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000042#include "llvm/Target/TargetRegisterInfo.h"
43#include "llvm/Target/TargetData.h"
44#include "llvm/Target/TargetFrameInfo.h"
45#include "llvm/Target/TargetInstrInfo.h"
Dale Johannesen49de9822009-02-05 01:49:45 +000046#include "llvm/Target/TargetIntrinsicInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000047#include "llvm/Target/TargetLowering.h"
48#include "llvm/Target/TargetMachine.h"
49#include "llvm/Target/TargetOptions.h"
50#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000051#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000052#include "llvm/Support/Debug.h"
53#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000054#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000055#include <algorithm>
56using namespace llvm;
57
Dale Johannesen601d3c02008-09-05 01:48:15 +000058/// LimitFloatPrecision - Generate low-precision inline sequences for
59/// some float libcalls (6, 8 or 12 bits).
60static unsigned LimitFloatPrecision;
61
62static cl::opt<unsigned, true>
63LimitFPPrecision("limit-float-precision",
64 cl::desc("Generate low-precision inline sequences "
65 "for some float libcalls"),
66 cl::location(LimitFloatPrecision),
67 cl::init(0));
68
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000069/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
Dan Gohman2c91d102009-01-06 22:53:52 +000070/// of insertvalue or extractvalue indices that identify a member, return
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000071/// the linearized index of the start of the member.
72///
73static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
74 const unsigned *Indices,
75 const unsigned *IndicesEnd,
76 unsigned CurIndex = 0) {
77 // Base case: We're done.
78 if (Indices && Indices == IndicesEnd)
79 return CurIndex;
80
81 // Given a struct type, recursively traverse the elements.
82 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
83 for (StructType::element_iterator EB = STy->element_begin(),
84 EI = EB,
85 EE = STy->element_end();
86 EI != EE; ++EI) {
87 if (Indices && *Indices == unsigned(EI - EB))
88 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
89 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
90 }
Dan Gohman2c91d102009-01-06 22:53:52 +000091 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000092 }
93 // Given an array type, recursively traverse the elements.
94 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
95 const Type *EltTy = ATy->getElementType();
96 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
97 if (Indices && *Indices == i)
98 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
99 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
100 }
Dan Gohman2c91d102009-01-06 22:53:52 +0000101 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000102 }
103 // We haven't found the type we're looking for, so keep searching.
104 return CurIndex + 1;
105}
106
107/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
108/// MVTs that represent all the individual underlying
109/// non-aggregate types that comprise it.
110///
111/// If Offsets is non-null, it points to a vector to be filled in
112/// with the in-memory offsets of each of the individual values.
113///
114static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
115 SmallVectorImpl<MVT> &ValueVTs,
116 SmallVectorImpl<uint64_t> *Offsets = 0,
117 uint64_t StartingOffset = 0) {
118 // Given a struct type, recursively traverse the elements.
119 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
120 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
121 for (StructType::element_iterator EB = STy->element_begin(),
122 EI = EB,
123 EE = STy->element_end();
124 EI != EE; ++EI)
125 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
126 StartingOffset + SL->getElementOffset(EI - EB));
127 return;
128 }
129 // Given an array type, recursively traverse the elements.
130 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
131 const Type *EltTy = ATy->getElementType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000132 uint64_t EltSize = TLI.getTargetData()->getTypePaddedSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000133 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
134 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
135 StartingOffset + i * EltSize);
136 return;
137 }
138 // Base case: we can get an MVT for this LLVM IR type.
139 ValueVTs.push_back(TLI.getValueType(Ty));
140 if (Offsets)
141 Offsets->push_back(StartingOffset);
142}
143
Dan Gohman2a7c6712008-09-03 23:18:39 +0000144namespace llvm {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000145 /// RegsForValue - This struct represents the registers (physical or virtual)
146 /// that a particular set of values is assigned, and the type information about
147 /// the value. The most common situation is to represent one value at a time,
148 /// but struct or array values are handled element-wise as multiple values.
149 /// The splitting of aggregates is performed recursively, so that we never
150 /// have aggregate-typed registers. The values at this point do not necessarily
151 /// have legal types, so each value may require one or more registers of some
152 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000153 ///
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000154 struct VISIBILITY_HIDDEN RegsForValue {
155 /// TLI - The TargetLowering object.
156 ///
157 const TargetLowering *TLI;
158
159 /// ValueVTs - The value types of the values, which may not be legal, and
160 /// may need be promoted or synthesized from one or more registers.
161 ///
162 SmallVector<MVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000163
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000164 /// RegVTs - The value types of the registers. This is the same size as
165 /// ValueVTs and it records, for each value, what the type of the assigned
166 /// register or registers are. (Individual values are never synthesized
167 /// from more than one type of register.)
168 ///
169 /// With virtual registers, the contents of RegVTs is redundant with TLI's
170 /// getRegisterType member function, however when with physical registers
171 /// it is necessary to have a separate record of the types.
172 ///
173 SmallVector<MVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000174
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000175 /// Regs - This list holds the registers assigned to the values.
176 /// Each legal or promoted value requires one register, and each
177 /// expanded value requires multiple registers.
178 ///
179 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000180
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000181 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000182
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000183 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000184 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000185 MVT regvt, MVT valuevt)
186 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
187 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000188 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000189 const SmallVector<MVT, 4> &regvts,
190 const SmallVector<MVT, 4> &valuevts)
191 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
192 RegsForValue(const TargetLowering &tli,
193 unsigned Reg, const Type *Ty) : TLI(&tli) {
194 ComputeValueVTs(tli, Ty, ValueVTs);
195
196 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
197 MVT ValueVT = ValueVTs[Value];
198 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
199 MVT RegisterVT = TLI->getRegisterType(ValueVT);
200 for (unsigned i = 0; i != NumRegs; ++i)
201 Regs.push_back(Reg + i);
202 RegVTs.push_back(RegisterVT);
203 Reg += NumRegs;
204 }
205 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000206
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000207 /// append - Add the specified values to this one.
208 void append(const RegsForValue &RHS) {
209 TLI = RHS.TLI;
210 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
211 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
212 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
213 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000214
215
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000216 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000217 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000218 /// Chain/Flag as the input and updates them for the output Chain/Flag.
219 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000220 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000221 SDValue &Chain, SDValue *Flag) const;
222
223 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000224 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000225 /// Chain/Flag as the input and updates them for the output Chain/Flag.
226 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000227 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000228 SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000229
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000230 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Evan Cheng697cbbf2009-03-20 18:03:34 +0000231 /// operand list. This adds the code marker, matching input operand index
232 /// (if applicable), and includes the number of values added into it.
233 void AddInlineAsmOperands(unsigned Code,
234 bool HasMatching, unsigned MatchingIdx,
235 SelectionDAG &DAG, std::vector<SDValue> &Ops) const;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000236 };
237}
238
239/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000240/// PHI nodes or outside of the basic block that defines it, or used by a
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000241/// switch or atomic instruction, which may expand to multiple basic blocks.
242static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
243 if (isa<PHINode>(I)) return true;
244 BasicBlock *BB = I->getParent();
245 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
Dan Gohman8e5c0da2009-04-09 02:33:36 +0000246 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000247 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()));
Bill Wendling0582ae92009-03-13 04:39:26 +0000337 std::string Dir, FN;
338 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
339 CU.getFilename(FN));
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000340 unsigned idx = MF->getOrCreateDebugLocID(SrcFile,
Scott Michelfdc40a02009-02-17 22:15:04 +0000341 SPI->getLine(),
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000342 SPI->getColumn());
343 DL = DebugLoc::get(idx);
344 }
345
346 break;
347 }
348 case Intrinsic::dbg_func_start: {
349 DwarfWriter *DW = DAG.getDwarfWriter();
350 if (DW) {
351 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
352 Value *SP = FSI->getSubprogram();
353
354 if (DW->ValidDebugInfo(SP)) {
355 DISubprogram Subprogram(cast<GlobalVariable>(SP));
356 DICompileUnit CU(Subprogram.getCompileUnit());
Bill Wendling0582ae92009-03-13 04:39:26 +0000357 std::string Dir, FN;
358 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
359 CU.getFilename(FN));
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000360 unsigned Line = Subprogram.getLineNumber();
361 DL = DebugLoc::get(MF->getOrCreateDebugLocID(SrcFile, Line, 0));
362 }
363 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000364
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000365 break;
366 }
367 }
368 }
369 }
370
371 PN = dyn_cast<PHINode>(I);
372 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000373
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000374 unsigned PHIReg = ValueMap[PN];
375 assert(PHIReg && "PHI node does not have an assigned virtual register!");
376
377 SmallVector<MVT, 4> ValueVTs;
378 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
379 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
380 MVT VT = ValueVTs[vti];
381 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000382 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000383 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000384 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000385 PHIReg += NumRegisters;
386 }
387 }
388 }
389}
390
391unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
392 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
393}
394
395/// CreateRegForValue - Allocate the appropriate number of virtual registers of
396/// the correctly promoted or expanded types. Assign these registers
397/// consecutive vreg numbers and return the first assigned number.
398///
399/// In the case that the given value has struct or array type, this function
400/// will assign registers for each member or element.
401///
402unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
403 SmallVector<MVT, 4> ValueVTs;
404 ComputeValueVTs(TLI, V->getType(), ValueVTs);
405
406 unsigned FirstReg = 0;
407 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
408 MVT ValueVT = ValueVTs[Value];
409 MVT RegisterVT = TLI.getRegisterType(ValueVT);
410
411 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
412 for (unsigned i = 0; i != NumRegs; ++i) {
413 unsigned R = MakeReg(RegisterVT);
414 if (!FirstReg) FirstReg = R;
415 }
416 }
417 return FirstReg;
418}
419
420/// getCopyFromParts - Create a value that contains the specified legal parts
421/// combined into the value they represent. If the parts combine to a type
422/// larger then ValueVT then AssertOp can be used to specify whether the extra
423/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
424/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000425static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
426 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000427 unsigned NumParts, MVT PartVT, MVT ValueVT,
428 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000429 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000430 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000431 SDValue Val = Parts[0];
432
433 if (NumParts > 1) {
434 // Assemble the value from multiple parts.
435 if (!ValueVT.isVector()) {
436 unsigned PartBits = PartVT.getSizeInBits();
437 unsigned ValueBits = ValueVT.getSizeInBits();
438
439 // Assemble the power of 2 part.
440 unsigned RoundParts = NumParts & (NumParts - 1) ?
441 1 << Log2_32(NumParts) : NumParts;
442 unsigned RoundBits = PartBits * RoundParts;
443 MVT RoundVT = RoundBits == ValueBits ?
444 ValueVT : MVT::getIntegerVT(RoundBits);
445 SDValue Lo, Hi;
446
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000447 MVT HalfVT = ValueVT.isInteger() ?
448 MVT::getIntegerVT(RoundBits/2) :
449 MVT::getFloatingPointVT(RoundBits/2);
450
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000451 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000452 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
453 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000454 PartVT, HalfVT);
455 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000456 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
457 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000458 }
459 if (TLI.isBigEndian())
460 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000461 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000462
463 if (RoundParts < NumParts) {
464 // Assemble the trailing non-power-of-2 part.
465 unsigned OddParts = NumParts - RoundParts;
466 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Scott Michelfdc40a02009-02-17 22:15:04 +0000467 Hi = getCopyFromParts(DAG, dl,
Dale Johannesen66978ee2009-01-31 02:22:37 +0000468 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000469
470 // Combine the round and odd parts.
471 Lo = Val;
472 if (TLI.isBigEndian())
473 std::swap(Lo, Hi);
474 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000475 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
476 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000477 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000478 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000479 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
480 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000481 }
482 } else {
483 // Handle a multi-element vector.
484 MVT IntermediateVT, RegisterVT;
485 unsigned NumIntermediates;
486 unsigned NumRegs =
487 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
488 RegisterVT);
489 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
490 NumParts = NumRegs; // Silence a compiler warning.
491 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
492 assert(RegisterVT == Parts[0].getValueType() &&
493 "Part type doesn't match part!");
494
495 // Assemble the parts into intermediate operands.
496 SmallVector<SDValue, 8> Ops(NumIntermediates);
497 if (NumIntermediates == NumParts) {
498 // If the register was not expanded, truncate or copy the value,
499 // as appropriate.
500 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000501 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000502 PartVT, IntermediateVT);
503 } else if (NumParts > 0) {
504 // If the intermediate type was expanded, build the intermediate operands
505 // from the parts.
506 assert(NumParts % NumIntermediates == 0 &&
507 "Must expand into a divisible number of parts!");
508 unsigned Factor = NumParts / NumIntermediates;
509 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000510 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000511 PartVT, IntermediateVT);
512 }
513
514 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
515 // operands.
516 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000517 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000518 ValueVT, &Ops[0], NumIntermediates);
519 }
520 }
521
522 // There is now one part, held in Val. Correct it to match ValueVT.
523 PartVT = Val.getValueType();
524
525 if (PartVT == ValueVT)
526 return Val;
527
528 if (PartVT.isVector()) {
529 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000530 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000531 }
532
533 if (ValueVT.isVector()) {
534 assert(ValueVT.getVectorElementType() == PartVT &&
535 ValueVT.getVectorNumElements() == 1 &&
536 "Only trivial scalar-to-vector conversions should get here!");
Evan Chenga87008d2009-02-25 22:49:59 +0000537 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000538 }
539
540 if (PartVT.isInteger() &&
541 ValueVT.isInteger()) {
542 if (ValueVT.bitsLT(PartVT)) {
543 // For a truncate, see if we have any information to
544 // indicate whether the truncated bits will always be
545 // zero or sign-extension.
546 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000547 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000548 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000549 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000550 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000551 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000552 }
553 }
554
555 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
556 if (ValueVT.bitsLT(Val.getValueType()))
557 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000558 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000559 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000560 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000561 }
562
563 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000564 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000565
566 assert(0 && "Unknown mismatch!");
567 return SDValue();
568}
569
570/// getCopyToParts - Create a series of nodes that contain the specified value
571/// split into legal parts. If the parts contain more bits than Val, then, for
572/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000573static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Chris Lattner01426e12008-10-21 00:45:36 +0000574 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000575 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000576 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000577 MVT PtrVT = TLI.getPointerTy();
578 MVT ValueVT = Val.getValueType();
579 unsigned PartBits = PartVT.getSizeInBits();
Dale Johannesen8a36f502009-02-25 22:39:13 +0000580 unsigned OrigNumParts = NumParts;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000581 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
582
583 if (!NumParts)
584 return;
585
586 if (!ValueVT.isVector()) {
587 if (PartVT == ValueVT) {
588 assert(NumParts == 1 && "No-op copy with multiple parts!");
589 Parts[0] = Val;
590 return;
591 }
592
593 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
594 // If the parts cover more bits than the value has, promote the value.
595 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
596 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000597 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000598 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
599 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000600 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000601 } else {
602 assert(0 && "Unknown mismatch!");
603 }
604 } else if (PartBits == ValueVT.getSizeInBits()) {
605 // Different types of the same size.
606 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000607 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000608 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
609 // If the parts cover less bits than value has, truncate the value.
610 if (PartVT.isInteger() && ValueVT.isInteger()) {
611 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000612 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000613 } else {
614 assert(0 && "Unknown mismatch!");
615 }
616 }
617
618 // The value may have changed - recompute ValueVT.
619 ValueVT = Val.getValueType();
620 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
621 "Failed to tile the value with PartVT!");
622
623 if (NumParts == 1) {
624 assert(PartVT == ValueVT && "Type conversion failed!");
625 Parts[0] = Val;
626 return;
627 }
628
629 // Expand the value into multiple parts.
630 if (NumParts & (NumParts - 1)) {
631 // The number of parts is not a power of 2. Split off and copy the tail.
632 assert(PartVT.isInteger() && ValueVT.isInteger() &&
633 "Do not know what to expand to!");
634 unsigned RoundParts = 1 << Log2_32(NumParts);
635 unsigned RoundBits = RoundParts * PartBits;
636 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000637 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000638 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000639 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000640 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000641 if (TLI.isBigEndian())
642 // The odd parts were reversed by getCopyToParts - unreverse them.
643 std::reverse(Parts + RoundParts, Parts + NumParts);
644 NumParts = RoundParts;
645 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000646 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000647 }
648
649 // The number of parts is a power of 2. Repeatedly bisect the value using
650 // EXTRACT_ELEMENT.
Scott Michelfdc40a02009-02-17 22:15:04 +0000651 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000652 MVT::getIntegerVT(ValueVT.getSizeInBits()),
653 Val);
654 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
655 for (unsigned i = 0; i < NumParts; i += StepSize) {
656 unsigned ThisBits = StepSize * PartBits / 2;
657 MVT ThisVT = MVT::getIntegerVT (ThisBits);
658 SDValue &Part0 = Parts[i];
659 SDValue &Part1 = Parts[i+StepSize/2];
660
Scott Michelfdc40a02009-02-17 22:15:04 +0000661 Part1 = 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(1, PtrVT));
Scott Michelfdc40a02009-02-17 22:15:04 +0000664 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000665 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000666 DAG.getConstant(0, PtrVT));
667
668 if (ThisBits == PartBits && ThisVT != PartVT) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000669 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000670 PartVT, Part0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000671 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000672 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000673 }
674 }
675 }
676
677 if (TLI.isBigEndian())
Dale Johannesen8a36f502009-02-25 22:39:13 +0000678 std::reverse(Parts, Parts + OrigNumParts);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000679
680 return;
681 }
682
683 // Vector ValueVT.
684 if (NumParts == 1) {
685 if (PartVT != ValueVT) {
686 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000687 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000688 } else {
689 assert(ValueVT.getVectorElementType() == PartVT &&
690 ValueVT.getVectorNumElements() == 1 &&
691 "Only trivial vector-to-scalar conversions should get here!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000692 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000693 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000694 DAG.getConstant(0, PtrVT));
695 }
696 }
697
698 Parts[0] = Val;
699 return;
700 }
701
702 // Handle a multi-element vector.
703 MVT IntermediateVT, RegisterVT;
704 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000705 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000706 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
707 RegisterVT);
708 unsigned NumElements = ValueVT.getVectorNumElements();
709
710 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
711 NumParts = NumRegs; // Silence a compiler warning.
712 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
713
714 // Split the vector into intermediate operands.
715 SmallVector<SDValue, 8> Ops(NumIntermediates);
716 for (unsigned i = 0; i != NumIntermediates; ++i)
717 if (IntermediateVT.isVector())
Scott Michelfdc40a02009-02-17 22:15:04 +0000718 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000719 IntermediateVT, Val,
720 DAG.getConstant(i * (NumElements / NumIntermediates),
721 PtrVT));
722 else
Scott Michelfdc40a02009-02-17 22:15:04 +0000723 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000724 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000725 DAG.getConstant(i, PtrVT));
726
727 // Split the intermediate operands into legal parts.
728 if (NumParts == NumIntermediates) {
729 // If the register was not expanded, promote or copy the value,
730 // as appropriate.
731 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000732 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000733 } else if (NumParts > 0) {
734 // If the intermediate type was expanded, split each the value into
735 // legal parts.
736 assert(NumParts % NumIntermediates == 0 &&
737 "Must expand into a divisible number of parts!");
738 unsigned Factor = NumParts / NumIntermediates;
739 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000740 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000741 }
742}
743
744
745void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
746 AA = &aa;
747 GFI = gfi;
748 TD = DAG.getTarget().getTargetData();
749}
750
751/// clear - Clear out the curret SelectionDAG and the associated
752/// state and prepare this SelectionDAGLowering object to be used
753/// for a new block. This doesn't clear out information about
754/// additional blocks that are needed to complete switch lowering
755/// or PHI node updating; that information is cleared out as it is
756/// consumed.
757void SelectionDAGLowering::clear() {
758 NodeMap.clear();
759 PendingLoads.clear();
760 PendingExports.clear();
761 DAG.clear();
Bill Wendling8fcf1702009-02-06 21:36:23 +0000762 CurDebugLoc = DebugLoc::getUnknownLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000763}
764
765/// getRoot - Return the current virtual root of the Selection DAG,
766/// flushing any PendingLoad items. This must be done before emitting
767/// a store or any other node that may need to be ordered after any
768/// prior load instructions.
769///
770SDValue SelectionDAGLowering::getRoot() {
771 if (PendingLoads.empty())
772 return DAG.getRoot();
773
774 if (PendingLoads.size() == 1) {
775 SDValue Root = PendingLoads[0];
776 DAG.setRoot(Root);
777 PendingLoads.clear();
778 return Root;
779 }
780
781 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000782 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000783 &PendingLoads[0], PendingLoads.size());
784 PendingLoads.clear();
785 DAG.setRoot(Root);
786 return Root;
787}
788
789/// getControlRoot - Similar to getRoot, but instead of flushing all the
790/// PendingLoad items, flush all the PendingExports items. It is necessary
791/// to do this before emitting a terminator instruction.
792///
793SDValue SelectionDAGLowering::getControlRoot() {
794 SDValue Root = DAG.getRoot();
795
796 if (PendingExports.empty())
797 return Root;
798
799 // Turn all of the CopyToReg chains into one factored node.
800 if (Root.getOpcode() != ISD::EntryToken) {
801 unsigned i = 0, e = PendingExports.size();
802 for (; i != e; ++i) {
803 assert(PendingExports[i].getNode()->getNumOperands() > 1);
804 if (PendingExports[i].getNode()->getOperand(0) == Root)
805 break; // Don't add the root if we already indirectly depend on it.
806 }
807
808 if (i == e)
809 PendingExports.push_back(Root);
810 }
811
Dale Johannesen66978ee2009-01-31 02:22:37 +0000812 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000813 &PendingExports[0],
814 PendingExports.size());
815 PendingExports.clear();
816 DAG.setRoot(Root);
817 return Root;
818}
819
820void SelectionDAGLowering::visit(Instruction &I) {
821 visit(I.getOpcode(), I);
822}
823
824void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
825 // Note: this doesn't use InstVisitor, because it has to work with
826 // ConstantExpr's in addition to instructions.
827 switch (Opcode) {
828 default: assert(0 && "Unknown instruction type encountered!");
829 abort();
830 // Build the switch statement using the Instruction.def file.
831#define HANDLE_INST(NUM, OPCODE, CLASS) \
832 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
833#include "llvm/Instruction.def"
834 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000835}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000836
837void SelectionDAGLowering::visitAdd(User &I) {
838 if (I.getType()->isFPOrFPVector())
839 visitBinary(I, ISD::FADD);
840 else
841 visitBinary(I, ISD::ADD);
842}
843
844void SelectionDAGLowering::visitMul(User &I) {
845 if (I.getType()->isFPOrFPVector())
846 visitBinary(I, ISD::FMUL);
847 else
848 visitBinary(I, ISD::MUL);
849}
850
851SDValue SelectionDAGLowering::getValue(const Value *V) {
852 SDValue &N = NodeMap[V];
853 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000854
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000855 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
856 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000857
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000858 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000859 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000860
861 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
862 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000863
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000864 if (isa<ConstantPointerNull>(C))
865 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000866
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000867 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000868 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000869
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000870 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
871 !V->getType()->isAggregateType())
Dale Johannesene8d72302009-02-06 23:05:02 +0000872 return N = DAG.getUNDEF(VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000873
874 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
875 visit(CE->getOpcode(), *CE);
876 SDValue N1 = NodeMap[V];
877 assert(N1.getNode() && "visit didn't populate the ValueMap!");
878 return N1;
879 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000880
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000881 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
882 SmallVector<SDValue, 4> Constants;
883 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
884 OI != OE; ++OI) {
885 SDNode *Val = getValue(*OI).getNode();
886 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
887 Constants.push_back(SDValue(Val, i));
888 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000889 return DAG.getMergeValues(&Constants[0], Constants.size(),
890 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000891 }
892
893 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
894 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
895 "Unknown struct or array constant!");
896
897 SmallVector<MVT, 4> ValueVTs;
898 ComputeValueVTs(TLI, C->getType(), ValueVTs);
899 unsigned NumElts = ValueVTs.size();
900 if (NumElts == 0)
901 return SDValue(); // empty struct
902 SmallVector<SDValue, 4> Constants(NumElts);
903 for (unsigned i = 0; i != NumElts; ++i) {
904 MVT EltVT = ValueVTs[i];
905 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000906 Constants[i] = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000907 else if (EltVT.isFloatingPoint())
908 Constants[i] = DAG.getConstantFP(0, EltVT);
909 else
910 Constants[i] = DAG.getConstant(0, EltVT);
911 }
Dale Johannesen4be0bdf2009-02-05 00:20:09 +0000912 return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000913 }
914
915 const VectorType *VecTy = cast<VectorType>(V->getType());
916 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000917
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000918 // Now that we know the number and type of the elements, get that number of
919 // elements into the Ops array based on what kind of constant it is.
920 SmallVector<SDValue, 16> Ops;
921 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
922 for (unsigned i = 0; i != NumElements; ++i)
923 Ops.push_back(getValue(CP->getOperand(i)));
924 } else {
925 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
926 "Unknown vector constant!");
927 MVT EltVT = TLI.getValueType(VecTy->getElementType());
928
929 SDValue Op;
930 if (isa<UndefValue>(C))
Dale Johannesene8d72302009-02-06 23:05:02 +0000931 Op = DAG.getUNDEF(EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000932 else if (EltVT.isFloatingPoint())
933 Op = DAG.getConstantFP(0, EltVT);
934 else
935 Op = DAG.getConstant(0, EltVT);
936 Ops.assign(NumElements, Op);
937 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000938
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000939 // Create a BUILD_VECTOR node.
Evan Chenga87008d2009-02-25 22:49:59 +0000940 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
941 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000942 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000943
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000944 // If this is a static alloca, generate it as the frameindex instead of
945 // computation.
946 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
947 DenseMap<const AllocaInst*, int>::iterator SI =
948 FuncInfo.StaticAllocaMap.find(AI);
949 if (SI != FuncInfo.StaticAllocaMap.end())
950 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
951 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000952
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000953 unsigned InReg = FuncInfo.ValueMap[V];
954 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000955
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000956 RegsForValue RFV(TLI, InReg, V->getType());
957 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000958 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000959}
960
961
962void SelectionDAGLowering::visitRet(ReturnInst &I) {
963 if (I.getNumOperands() == 0) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000964 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000965 MVT::Other, getControlRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000966 return;
967 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000968
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000969 SmallVector<SDValue, 8> NewValues;
970 NewValues.push_back(getControlRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000971 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000972 SmallVector<MVT, 4> ValueVTs;
973 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000974 unsigned NumValues = ValueVTs.size();
975 if (NumValues == 0) continue;
976
977 SDValue RetOp = getValue(I.getOperand(i));
978 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000979 MVT VT = ValueVTs[j];
980
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000981 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000982
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000983 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000984 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000985 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000986 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000987 ExtendKind = ISD::ZERO_EXTEND;
988
Evan Cheng3927f432009-03-25 20:20:11 +0000989 // FIXME: C calling convention requires the return type to be promoted to
990 // at least 32-bit. But this is not necessary for non-C calling
991 // conventions. The frontend should mark functions whose return values
992 // require promoting with signext or zeroext attributes.
993 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
994 MVT MinVT = TLI.getRegisterType(MVT::i32);
995 if (VT.bitsLT(MinVT))
996 VT = MinVT;
997 }
998
999 unsigned NumParts = TLI.getNumRegisters(VT);
1000 MVT PartVT = TLI.getRegisterType(VT);
1001 SmallVector<SDValue, 4> Parts(NumParts);
Dale Johannesen66978ee2009-01-31 02:22:37 +00001002 getCopyToParts(DAG, getCurDebugLoc(),
1003 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001004 &Parts[0], NumParts, PartVT, ExtendKind);
1005
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001006 // 'inreg' on function refers to return value
1007 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +00001008 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001009 Flags.setInReg();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001010 for (unsigned i = 0; i < NumParts; ++i) {
1011 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001012 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001013 }
1014 }
1015 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00001016 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001017 &NewValues[0], NewValues.size()));
1018}
1019
1020/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1021/// the current basic block, add it to ValueMap now so that we'll get a
1022/// CopyTo/FromReg.
1023void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1024 // No need to export constants.
1025 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001026
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001027 // Already exported?
1028 if (FuncInfo.isExportedInst(V)) return;
1029
1030 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1031 CopyValueToVirtualRegister(V, Reg);
1032}
1033
1034bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1035 const BasicBlock *FromBB) {
1036 // The operands of the setcc have to be in this block. We don't know
1037 // how to export them from some other block.
1038 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1039 // Can export from current BB.
1040 if (VI->getParent() == FromBB)
1041 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001042
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001043 // Is already exported, noop.
1044 return FuncInfo.isExportedInst(V);
1045 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001046
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001047 // If this is an argument, we can export it if the BB is the entry block or
1048 // if it is already exported.
1049 if (isa<Argument>(V)) {
1050 if (FromBB == &FromBB->getParent()->getEntryBlock())
1051 return true;
1052
1053 // Otherwise, can only export this if it is already exported.
1054 return FuncInfo.isExportedInst(V);
1055 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001056
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001057 // Otherwise, constants can always be exported.
1058 return true;
1059}
1060
1061static bool InBlock(const Value *V, const BasicBlock *BB) {
1062 if (const Instruction *I = dyn_cast<Instruction>(V))
1063 return I->getParent() == BB;
1064 return true;
1065}
1066
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001067/// getFCmpCondCode - Return the ISD condition code corresponding to
1068/// the given LLVM IR floating-point condition code. This includes
1069/// consideration of global floating-point math flags.
1070///
1071static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1072 ISD::CondCode FPC, FOC;
1073 switch (Pred) {
1074 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1075 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1076 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1077 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1078 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1079 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1080 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1081 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1082 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1083 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1084 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1085 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1086 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1087 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1088 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1089 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1090 default:
1091 assert(0 && "Invalid FCmp predicate opcode!");
1092 FOC = FPC = ISD::SETFALSE;
1093 break;
1094 }
1095 if (FiniteOnlyFPMath())
1096 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001097 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001098 return FPC;
1099}
1100
1101/// getICmpCondCode - Return the ISD condition code corresponding to
1102/// the given LLVM IR integer condition code.
1103///
1104static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1105 switch (Pred) {
1106 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1107 case ICmpInst::ICMP_NE: return ISD::SETNE;
1108 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1109 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1110 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1111 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1112 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1113 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1114 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1115 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1116 default:
1117 assert(0 && "Invalid ICmp predicate opcode!");
1118 return ISD::SETNE;
1119 }
1120}
1121
Dan Gohmanc2277342008-10-17 21:16:08 +00001122/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1123/// This function emits a branch and is used at the leaves of an OR or an
1124/// AND operator tree.
1125///
1126void
1127SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1128 MachineBasicBlock *TBB,
1129 MachineBasicBlock *FBB,
1130 MachineBasicBlock *CurBB) {
1131 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001132
Dan Gohmanc2277342008-10-17 21:16:08 +00001133 // If the leaf of the tree is a comparison, merge the condition into
1134 // the caseblock.
1135 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1136 // The operands of the cmp have to be in this block. We don't know
1137 // how to export them from some other block. If this is the first block
1138 // of the sequence, no exporting is needed.
1139 if (CurBB == CurMBB ||
1140 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1141 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001142 ISD::CondCode Condition;
1143 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001144 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001145 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001146 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001147 } else {
1148 Condition = ISD::SETEQ; // silence warning.
1149 assert(0 && "Unknown compare instruction");
1150 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001151
1152 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001153 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1154 SwitchCases.push_back(CB);
1155 return;
1156 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001157 }
1158
1159 // Create a CaseBlock record representing this branch.
1160 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1161 NULL, TBB, FBB, CurBB);
1162 SwitchCases.push_back(CB);
1163}
1164
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001165/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001166void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1167 MachineBasicBlock *TBB,
1168 MachineBasicBlock *FBB,
1169 MachineBasicBlock *CurBB,
1170 unsigned Opc) {
1171 // If this node is not part of the or/and tree, emit it as a branch.
1172 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001173 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001174 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1175 BOp->getParent() != CurBB->getBasicBlock() ||
1176 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1177 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1178 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001179 return;
1180 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001182 // Create TmpBB after CurBB.
1183 MachineFunction::iterator BBI = CurBB;
1184 MachineFunction &MF = DAG.getMachineFunction();
1185 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1186 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001187
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001188 if (Opc == Instruction::Or) {
1189 // Codegen X | Y as:
1190 // jmp_if_X TBB
1191 // jmp TmpBB
1192 // TmpBB:
1193 // jmp_if_Y TBB
1194 // jmp FBB
1195 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001196
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001197 // Emit the LHS condition.
1198 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001199
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001200 // Emit the RHS condition into TmpBB.
1201 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1202 } else {
1203 assert(Opc == Instruction::And && "Unknown merge op!");
1204 // Codegen X & Y as:
1205 // jmp_if_X TmpBB
1206 // jmp FBB
1207 // TmpBB:
1208 // jmp_if_Y TBB
1209 // jmp FBB
1210 //
1211 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001212
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001213 // Emit the LHS condition.
1214 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001215
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001216 // Emit the RHS condition into TmpBB.
1217 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1218 }
1219}
1220
1221/// If the set of cases should be emitted as a series of branches, return true.
1222/// If we should emit this as a bunch of and/or'd together conditions, return
1223/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001224bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001225SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1226 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001227
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001228 // If this is two comparisons of the same values or'd or and'd together, they
1229 // will get folded into a single comparison, so don't emit two blocks.
1230 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1231 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1232 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1233 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1234 return false;
1235 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001236
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001237 return true;
1238}
1239
1240void SelectionDAGLowering::visitBr(BranchInst &I) {
1241 // Update machine-CFG edges.
1242 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1243
1244 // Figure out which block is immediately after the current one.
1245 MachineBasicBlock *NextBlock = 0;
1246 MachineFunction::iterator BBI = CurMBB;
1247 if (++BBI != CurMBB->getParent()->end())
1248 NextBlock = BBI;
1249
1250 if (I.isUnconditional()) {
1251 // Update machine-CFG edges.
1252 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001253
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001254 // If this is not a fall-through branch, emit the branch.
1255 if (Succ0MBB != NextBlock)
Scott Michelfdc40a02009-02-17 22:15:04 +00001256 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001257 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001258 DAG.getBasicBlock(Succ0MBB)));
1259 return;
1260 }
1261
1262 // If this condition is one of the special cases we handle, do special stuff
1263 // now.
1264 Value *CondVal = I.getCondition();
1265 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1266
1267 // If this is a series of conditions that are or'd or and'd together, emit
1268 // this as a sequence of branches instead of setcc's with and/or operations.
1269 // For example, instead of something like:
1270 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001271 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001272 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001273 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001274 // or C, F
1275 // jnz foo
1276 // Emit:
1277 // cmp A, B
1278 // je foo
1279 // cmp D, E
1280 // jle foo
1281 //
1282 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001283 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001284 (BOp->getOpcode() == Instruction::And ||
1285 BOp->getOpcode() == Instruction::Or)) {
1286 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1287 // If the compares in later blocks need to use values not currently
1288 // exported from this block, export them now. This block should always
1289 // be the first entry.
1290 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001291
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001292 // Allow some cases to be rejected.
1293 if (ShouldEmitAsBranches(SwitchCases)) {
1294 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1295 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1296 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1297 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001298
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001299 // Emit the branch for this block.
1300 visitSwitchCase(SwitchCases[0]);
1301 SwitchCases.erase(SwitchCases.begin());
1302 return;
1303 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001304
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001305 // Okay, we decided not to do this, remove any inserted MBB's and clear
1306 // SwitchCases.
1307 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1308 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001309
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001310 SwitchCases.clear();
1311 }
1312 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001313
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001314 // Create a CaseBlock record representing this branch.
1315 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1316 NULL, Succ0MBB, Succ1MBB, CurMBB);
1317 // Use visitSwitchCase to actually insert the fast branch sequence for this
1318 // cond branch.
1319 visitSwitchCase(CB);
1320}
1321
1322/// visitSwitchCase - Emits the necessary code to represent a single node in
1323/// the binary search tree resulting from lowering a switch instruction.
1324void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1325 SDValue Cond;
1326 SDValue CondLHS = getValue(CB.CmpLHS);
Dale Johannesenf5d97892009-02-04 01:48:28 +00001327 DebugLoc dl = getCurDebugLoc();
Anton Korobeynikov23218582008-12-23 22:25:27 +00001328
1329 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001330 if (CB.CmpMHS == NULL) {
1331 // Fold "(X == true)" to X and "(X == false)" to !X to
1332 // handle common cases produced by branch lowering.
1333 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1334 Cond = CondLHS;
1335 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1336 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001337 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001338 } else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001339 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001340 } else {
1341 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1342
Anton Korobeynikov23218582008-12-23 22:25:27 +00001343 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1344 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001345
1346 SDValue CmpOp = getValue(CB.CmpMHS);
1347 MVT VT = CmpOp.getValueType();
1348
1349 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001350 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
Dale Johannesenf5d97892009-02-04 01:48:28 +00001351 ISD::SETLE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001352 } else {
Dale Johannesenf5d97892009-02-04 01:48:28 +00001353 SDValue SUB = DAG.getNode(ISD::SUB, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001354 VT, CmpOp, DAG.getConstant(Low, VT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001355 Cond = DAG.getSetCC(dl, MVT::i1, SUB,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001356 DAG.getConstant(High-Low, VT), ISD::SETULE);
1357 }
1358 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001359
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001360 // Update successor info
1361 CurMBB->addSuccessor(CB.TrueBB);
1362 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001363
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001364 // Set NextBlock to be the MBB immediately after the current one, if any.
1365 // This is used to avoid emitting unnecessary branches to the next block.
1366 MachineBasicBlock *NextBlock = 0;
1367 MachineFunction::iterator BBI = CurMBB;
1368 if (++BBI != CurMBB->getParent()->end())
1369 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001370
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001371 // If the lhs block is the next block, invert the condition so that we can
1372 // fall through to the lhs instead of the rhs block.
1373 if (CB.TrueBB == NextBlock) {
1374 std::swap(CB.TrueBB, CB.FalseBB);
1375 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001376 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001377 }
Dale Johannesenf5d97892009-02-04 01:48:28 +00001378 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001379 MVT::Other, getControlRoot(), Cond,
1380 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001381
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001382 // If the branch was constant folded, fix up the CFG.
1383 if (BrCond.getOpcode() == ISD::BR) {
1384 CurMBB->removeSuccessor(CB.FalseBB);
1385 DAG.setRoot(BrCond);
1386 } else {
1387 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001388 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001389 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001390
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001391 if (CB.FalseBB == NextBlock)
1392 DAG.setRoot(BrCond);
1393 else
Dale Johannesenf5d97892009-02-04 01:48:28 +00001394 DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001395 DAG.getBasicBlock(CB.FalseBB)));
1396 }
1397}
1398
1399/// visitJumpTable - Emit JumpTable node in the current MBB
1400void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1401 // Emit the code for the jump table
1402 assert(JT.Reg != -1U && "Should lower JT Header first!");
1403 MVT PTy = TLI.getPointerTy();
Dale Johannesena04b7572009-02-03 23:04:43 +00001404 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(),
1405 JT.Reg, PTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001406 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Scott Michelfdc40a02009-02-17 22:15:04 +00001407 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001408 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001409 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001410}
1411
1412/// visitJumpTableHeader - This function emits necessary code to produce index
1413/// in the JumpTable from switch case.
1414void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1415 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001416 // Subtract the lowest switch case value from the value being switched on and
1417 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001418 // difference between smallest and largest cases.
1419 SDValue SwitchOp = getValue(JTH.SValue);
1420 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001421 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001422 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001423
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001424 // The SDNode we just created, which holds the value being switched on minus
1425 // the the smallest case value, needs to be copied to a virtual register so it
1426 // can be used as an index into the jump table in a subsequent basic block.
1427 // This value may be smaller or larger than the target's pointer type, and
1428 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001429 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001430 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001431 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001432 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001433 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001434 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001435
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001436 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001437 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1438 JumpTableReg, SwitchOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001439 JT.Reg = JumpTableReg;
1440
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001441 // Emit the range check for the jump table, and branch to the default block
1442 // for the switch statement if the value being switched on exceeds the largest
1443 // case in the switch.
Dale Johannesenf5d97892009-02-04 01:48:28 +00001444 SDValue CMP = DAG.getSetCC(getCurDebugLoc(),
1445 TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001446 DAG.getConstant(JTH.Last-JTH.First,VT),
1447 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001448
1449 // Set NextBlock to be the MBB immediately after the current one, if any.
1450 // This is used to avoid emitting unnecessary branches to the next block.
1451 MachineBasicBlock *NextBlock = 0;
1452 MachineFunction::iterator BBI = CurMBB;
1453 if (++BBI != CurMBB->getParent()->end())
1454 NextBlock = BBI;
1455
Dale Johannesen66978ee2009-01-31 02:22:37 +00001456 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001457 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001458 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001459
1460 if (JT.MBB == NextBlock)
1461 DAG.setRoot(BrCond);
1462 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001463 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001464 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001465}
1466
1467/// visitBitTestHeader - This function emits necessary code to produce value
1468/// suitable for "bit tests"
1469void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1470 // Subtract the minimum value
1471 SDValue SwitchOp = getValue(B.SValue);
1472 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001473 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001474 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001475
1476 // Check range
Dale Johannesenf5d97892009-02-04 01:48:28 +00001477 SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(),
1478 TLI.getSetCCResultType(SUB.getValueType()),
1479 SUB, DAG.getConstant(B.Range, VT),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001480 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001481
1482 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001483 if (VT.bitsGT(TLI.getPointerTy()))
Scott Michelfdc40a02009-02-17 22:15:04 +00001484 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001485 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001486 else
Scott Michelfdc40a02009-02-17 22:15:04 +00001487 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001488 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001489
Duncan Sands92abc622009-01-31 15:50:11 +00001490 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Dale Johannesena04b7572009-02-03 23:04:43 +00001491 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(),
1492 B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001493
1494 // Set NextBlock to be the MBB immediately after the current one, if any.
1495 // This is used to avoid emitting unnecessary branches to the next block.
1496 MachineBasicBlock *NextBlock = 0;
1497 MachineFunction::iterator BBI = CurMBB;
1498 if (++BBI != CurMBB->getParent()->end())
1499 NextBlock = BBI;
1500
1501 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1502
1503 CurMBB->addSuccessor(B.Default);
1504 CurMBB->addSuccessor(MBB);
1505
Dale Johannesen66978ee2009-01-31 02:22:37 +00001506 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001507 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001508 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001509
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001510 if (MBB == NextBlock)
1511 DAG.setRoot(BrRange);
1512 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001513 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001514 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001515}
1516
1517/// visitBitTestCase - this function produces one "bit test"
1518void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1519 unsigned Reg,
1520 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001521 // Make desired shift
Dale Johannesena04b7572009-02-03 23:04:43 +00001522 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001523 TLI.getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001524 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001525 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001526 DAG.getConstant(1, TLI.getPointerTy()),
1527 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001528
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001529 // Emit bit tests and jumps
Scott Michelfdc40a02009-02-17 22:15:04 +00001530 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001531 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001532 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001533 SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(),
1534 TLI.getSetCCResultType(AndOp.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00001535 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001536 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001537
1538 CurMBB->addSuccessor(B.TargetBB);
1539 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001540
Dale Johannesen66978ee2009-01-31 02:22:37 +00001541 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001542 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001543 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001544
1545 // Set NextBlock to be the MBB immediately after the current one, if any.
1546 // This is used to avoid emitting unnecessary branches to the next block.
1547 MachineBasicBlock *NextBlock = 0;
1548 MachineFunction::iterator BBI = CurMBB;
1549 if (++BBI != CurMBB->getParent()->end())
1550 NextBlock = BBI;
1551
1552 if (NextMBB == NextBlock)
1553 DAG.setRoot(BrAnd);
1554 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001555 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001556 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001557}
1558
1559void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1560 // Retrieve successors.
1561 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1562 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1563
Gabor Greifb67e6b32009-01-15 11:10:44 +00001564 const Value *Callee(I.getCalledValue());
1565 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001566 visitInlineAsm(&I);
1567 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001568 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001569
1570 // If the value of the invoke is used outside of its defining block, make it
1571 // available as a virtual register.
1572 if (!I.use_empty()) {
1573 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1574 if (VMI != FuncInfo.ValueMap.end())
1575 CopyValueToVirtualRegister(&I, VMI->second);
1576 }
1577
1578 // Update successor info
1579 CurMBB->addSuccessor(Return);
1580 CurMBB->addSuccessor(LandingPad);
1581
1582 // Drop into normal successor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001583 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001584 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001585 DAG.getBasicBlock(Return)));
1586}
1587
1588void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1589}
1590
1591/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1592/// small case ranges).
1593bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1594 CaseRecVector& WorkList,
1595 Value* SV,
1596 MachineBasicBlock* Default) {
1597 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001598
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001599 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001600 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001601 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001602 return false;
1603
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001604 // Get the MachineFunction which holds the current MBB. This is used when
1605 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001606 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001607
1608 // Figure out which block is immediately after the current one.
1609 MachineBasicBlock *NextBlock = 0;
1610 MachineFunction::iterator BBI = CR.CaseBB;
1611
1612 if (++BBI != CurMBB->getParent()->end())
1613 NextBlock = BBI;
1614
1615 // TODO: If any two of the cases has the same destination, and if one value
1616 // is the same as the other, but has one bit unset that the other has set,
1617 // use bit manipulation to do two compares at once. For example:
1618 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001619
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001620 // Rearrange the case blocks so that the last one falls through if possible.
1621 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1622 // The last case block won't fall through into 'NextBlock' if we emit the
1623 // branches in this order. See if rearranging a case value would help.
1624 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1625 if (I->BB == NextBlock) {
1626 std::swap(*I, BackCase);
1627 break;
1628 }
1629 }
1630 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001631
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001632 // Create a CaseBlock record representing a conditional branch to
1633 // the Case's target mbb if the value being switched on SV is equal
1634 // to C.
1635 MachineBasicBlock *CurBlock = CR.CaseBB;
1636 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1637 MachineBasicBlock *FallThrough;
1638 if (I != E-1) {
1639 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1640 CurMF->insert(BBI, FallThrough);
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001641
1642 // Put SV in a virtual register to make it available from the new blocks.
1643 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001644 } else {
1645 // If the last case doesn't match, go to the default block.
1646 FallThrough = Default;
1647 }
1648
1649 Value *RHS, *LHS, *MHS;
1650 ISD::CondCode CC;
1651 if (I->High == I->Low) {
1652 // This is just small small case range :) containing exactly 1 case
1653 CC = ISD::SETEQ;
1654 LHS = SV; RHS = I->High; MHS = NULL;
1655 } else {
1656 CC = ISD::SETLE;
1657 LHS = I->Low; MHS = SV; RHS = I->High;
1658 }
1659 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001660
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001661 // If emitting the first comparison, just call visitSwitchCase to emit the
1662 // code into the current block. Otherwise, push the CaseBlock onto the
1663 // vector to be later processed by SDISel, and insert the node's MBB
1664 // before the next MBB.
1665 if (CurBlock == CurMBB)
1666 visitSwitchCase(CB);
1667 else
1668 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001669
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001670 CurBlock = FallThrough;
1671 }
1672
1673 return true;
1674}
1675
1676static inline bool areJTsAllowed(const TargetLowering &TLI) {
1677 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001678 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1679 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001680}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001681
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001682static APInt ComputeRange(const APInt &First, const APInt &Last) {
1683 APInt LastExt(Last), FirstExt(First);
1684 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1685 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1686 return (LastExt - FirstExt + 1ULL);
1687}
1688
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001689/// handleJTSwitchCase - Emit jumptable for current switch case range
1690bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1691 CaseRecVector& WorkList,
1692 Value* SV,
1693 MachineBasicBlock* Default) {
1694 Case& FrontCase = *CR.Range.first;
1695 Case& BackCase = *(CR.Range.second-1);
1696
Anton Korobeynikov23218582008-12-23 22:25:27 +00001697 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1698 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001699
Anton Korobeynikov23218582008-12-23 22:25:27 +00001700 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001701 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1702 I!=E; ++I)
1703 TSize += I->size();
1704
1705 if (!areJTsAllowed(TLI) || TSize <= 3)
1706 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001707
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001708 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001709 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001710 if (Density < 0.4)
1711 return false;
1712
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001713 DEBUG(errs() << "Lowering jump table\n"
1714 << "First entry: " << First << ". Last entry: " << Last << '\n'
1715 << "Range: " << Range
1716 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001717
1718 // Get the MachineFunction which holds the current MBB. This is used when
1719 // inserting any additional MBBs necessary to represent the switch.
1720 MachineFunction *CurMF = CurMBB->getParent();
1721
1722 // Figure out which block is immediately after the current one.
1723 MachineBasicBlock *NextBlock = 0;
1724 MachineFunction::iterator BBI = CR.CaseBB;
1725
1726 if (++BBI != CurMBB->getParent()->end())
1727 NextBlock = BBI;
1728
1729 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1730
1731 // Create a new basic block to hold the code for loading the address
1732 // of the jump table, and jumping to it. Update successor information;
1733 // we will either branch to the default case for the switch, or the jump
1734 // table.
1735 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1736 CurMF->insert(BBI, JumpTableBB);
1737 CR.CaseBB->addSuccessor(Default);
1738 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001739
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001740 // Build a vector of destination BBs, corresponding to each target
1741 // of the jump table. If the value of the jump table slot corresponds to
1742 // a case statement, push the case's BB onto the vector, otherwise, push
1743 // the default BB.
1744 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001745 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001746 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001747 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1748 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1749
1750 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001751 DestBBs.push_back(I->BB);
1752 if (TEI==High)
1753 ++I;
1754 } else {
1755 DestBBs.push_back(Default);
1756 }
1757 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001758
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001759 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001760 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1761 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001762 E = DestBBs.end(); I != E; ++I) {
1763 if (!SuccsHandled[(*I)->getNumber()]) {
1764 SuccsHandled[(*I)->getNumber()] = true;
1765 JumpTableBB->addSuccessor(*I);
1766 }
1767 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001768
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001769 // Create a jump table index for this jump table, or return an existing
1770 // one.
1771 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001772
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001773 // Set the jump table information so that we can codegen it as a second
1774 // MachineBasicBlock
1775 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1776 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1777 if (CR.CaseBB == CurMBB)
1778 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001779
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001780 JTCases.push_back(JumpTableBlock(JTH, JT));
1781
1782 return true;
1783}
1784
1785/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1786/// 2 subtrees.
1787bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1788 CaseRecVector& WorkList,
1789 Value* SV,
1790 MachineBasicBlock* Default) {
1791 // Get the MachineFunction which holds the current MBB. This is used when
1792 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001793 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001794
1795 // Figure out which block is immediately after the current one.
1796 MachineBasicBlock *NextBlock = 0;
1797 MachineFunction::iterator BBI = CR.CaseBB;
1798
1799 if (++BBI != CurMBB->getParent()->end())
1800 NextBlock = BBI;
1801
1802 Case& FrontCase = *CR.Range.first;
1803 Case& BackCase = *(CR.Range.second-1);
1804 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1805
1806 // Size is the number of Cases represented by this range.
1807 unsigned Size = CR.Range.second - CR.Range.first;
1808
Anton Korobeynikov23218582008-12-23 22:25:27 +00001809 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1810 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001811 double FMetric = 0;
1812 CaseItr Pivot = CR.Range.first + Size/2;
1813
1814 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1815 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001816 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001817 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1818 I!=E; ++I)
1819 TSize += I->size();
1820
Anton Korobeynikov23218582008-12-23 22:25:27 +00001821 size_t LSize = FrontCase.size();
1822 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001823 DEBUG(errs() << "Selecting best pivot: \n"
1824 << "First: " << First << ", Last: " << Last <<'\n'
1825 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001826 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1827 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001828 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1829 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001830 APInt Range = ComputeRange(LEnd, RBegin);
1831 assert((Range - 2ULL).isNonNegative() &&
1832 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001833 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1834 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001835 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001836 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001837 DEBUG(errs() <<"=>Step\n"
1838 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1839 << "LDensity: " << LDensity
1840 << ", RDensity: " << RDensity << '\n'
1841 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001842 if (FMetric < Metric) {
1843 Pivot = J;
1844 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001845 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001846 }
1847
1848 LSize += J->size();
1849 RSize -= J->size();
1850 }
1851 if (areJTsAllowed(TLI)) {
1852 // If our case is dense we *really* should handle it earlier!
1853 assert((FMetric > 0) && "Should handle dense range earlier!");
1854 } else {
1855 Pivot = CR.Range.first + Size/2;
1856 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001857
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001858 CaseRange LHSR(CR.Range.first, Pivot);
1859 CaseRange RHSR(Pivot, CR.Range.second);
1860 Constant *C = Pivot->Low;
1861 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001862
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001863 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001864 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001865 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001866 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001867 // Pivot's Value, then we can branch directly to the LHS's Target,
1868 // rather than creating a leaf node for it.
1869 if ((LHSR.second - LHSR.first) == 1 &&
1870 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001871 cast<ConstantInt>(C)->getValue() ==
1872 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001873 TrueBB = LHSR.first->BB;
1874 } else {
1875 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1876 CurMF->insert(BBI, TrueBB);
1877 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001878
1879 // Put SV in a virtual register to make it available from the new blocks.
1880 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001881 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001882
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001883 // Similar to the optimization above, if the Value being switched on is
1884 // known to be less than the Constant CR.LT, and the current Case Value
1885 // is CR.LT - 1, then we can branch directly to the target block for
1886 // the current Case Value, rather than emitting a RHS leaf node for it.
1887 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001888 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1889 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001890 FalseBB = RHSR.first->BB;
1891 } else {
1892 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1893 CurMF->insert(BBI, FalseBB);
1894 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00001895
1896 // Put SV in a virtual register to make it available from the new blocks.
1897 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001898 }
1899
1900 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001901 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001902 // Otherwise, branch to LHS.
1903 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1904
1905 if (CR.CaseBB == CurMBB)
1906 visitSwitchCase(CB);
1907 else
1908 SwitchCases.push_back(CB);
1909
1910 return true;
1911}
1912
1913/// handleBitTestsSwitchCase - if current case range has few destination and
1914/// range span less, than machine word bitwidth, encode case range into series
1915/// of masks and emit bit tests with these masks.
1916bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1917 CaseRecVector& WorkList,
1918 Value* SV,
1919 MachineBasicBlock* Default){
1920 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1921
1922 Case& FrontCase = *CR.Range.first;
1923 Case& BackCase = *(CR.Range.second-1);
1924
1925 // Get the MachineFunction which holds the current MBB. This is used when
1926 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001927 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001928
Anton Korobeynikov23218582008-12-23 22:25:27 +00001929 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001930 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1931 I!=E; ++I) {
1932 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001933 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001934 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001935
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001936 // Count unique destinations
1937 SmallSet<MachineBasicBlock*, 4> Dests;
1938 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1939 Dests.insert(I->BB);
1940 if (Dests.size() > 3)
1941 // Don't bother the code below, if there are too much unique destinations
1942 return false;
1943 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001944 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1945 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001946
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001947 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001948 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1949 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001950 APInt cmpRange = maxValue - minValue;
1951
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001952 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1953 << "Low bound: " << minValue << '\n'
1954 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001955
1956 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001957 (!(Dests.size() == 1 && numCmps >= 3) &&
1958 !(Dests.size() == 2 && numCmps >= 5) &&
1959 !(Dests.size() >= 3 && numCmps >= 6)))
1960 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001961
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001962 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001963 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1964
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001965 // Optimize the case where all the case values fit in a
1966 // word without having to subtract minValue. In this case,
1967 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001968 if (minValue.isNonNegative() &&
1969 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1970 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001971 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001972 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001973 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001974
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001975 CaseBitsVector CasesBits;
1976 unsigned i, count = 0;
1977
1978 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1979 MachineBasicBlock* Dest = I->BB;
1980 for (i = 0; i < count; ++i)
1981 if (Dest == CasesBits[i].BB)
1982 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001983
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001984 if (i == count) {
1985 assert((count < 3) && "Too much destinations to test!");
1986 CasesBits.push_back(CaseBits(0, Dest, 0));
1987 count++;
1988 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001989
1990 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1991 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1992
1993 uint64_t lo = (lowValue - lowBound).getZExtValue();
1994 uint64_t hi = (highValue - lowBound).getZExtValue();
1995
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001996 for (uint64_t j = lo; j <= hi; j++) {
1997 CasesBits[i].Mask |= 1ULL << j;
1998 CasesBits[i].Bits++;
1999 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002000
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002001 }
2002 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00002003
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002004 BitTestInfo BTC;
2005
2006 // Figure out which block is immediately after the current one.
2007 MachineFunction::iterator BBI = CR.CaseBB;
2008 ++BBI;
2009
2010 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
2011
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002012 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002013 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002014 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
2015 << ", Bits: " << CasesBits[i].Bits
2016 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002017
2018 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
2019 CurMF->insert(BBI, CaseBB);
2020 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2021 CaseBB,
2022 CasesBits[i].BB));
Dan Gohman8e5c0da2009-04-09 02:33:36 +00002023
2024 // Put SV in a virtual register to make it available from the new blocks.
2025 ExportFromCurrentBlock(SV);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002026 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002027
2028 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002029 -1U, (CR.CaseBB == CurMBB),
2030 CR.CaseBB, Default, BTC);
2031
2032 if (CR.CaseBB == CurMBB)
2033 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002034
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002035 BitTestCases.push_back(BTB);
2036
2037 return true;
2038}
2039
2040
2041/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002042size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002043 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002044 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002045
2046 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002047 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002048 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2049 Cases.push_back(Case(SI.getSuccessorValue(i),
2050 SI.getSuccessorValue(i),
2051 SMBB));
2052 }
2053 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2054
2055 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002056 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002057 // Must recompute end() each iteration because it may be
2058 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002059 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2060 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2061 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002062 MachineBasicBlock* nextBB = J->BB;
2063 MachineBasicBlock* currentBB = I->BB;
2064
2065 // If the two neighboring cases go to the same destination, merge them
2066 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002067 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002068 I->High = J->High;
2069 J = Cases.erase(J);
2070 } else {
2071 I = J++;
2072 }
2073 }
2074
2075 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2076 if (I->Low != I->High)
2077 // A range counts double, since it requires two compares.
2078 ++numCmps;
2079 }
2080
2081 return numCmps;
2082}
2083
Anton Korobeynikov23218582008-12-23 22:25:27 +00002084void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002085 // Figure out which block is immediately after the current one.
2086 MachineBasicBlock *NextBlock = 0;
2087 MachineFunction::iterator BBI = CurMBB;
2088
2089 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2090
2091 // If there is only the default destination, branch to it if it is not the
2092 // next basic block. Otherwise, just fall through.
2093 if (SI.getNumOperands() == 2) {
2094 // Update machine-CFG edges.
2095
2096 // If this is not a fall-through branch, emit the branch.
2097 CurMBB->addSuccessor(Default);
2098 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002099 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002100 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002101 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002102 return;
2103 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002104
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002105 // If there are any non-default case statements, create a vector of Cases
2106 // representing each one, and sort the vector so that we can efficiently
2107 // create a binary search tree from them.
2108 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002109 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002110 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2111 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002112 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002113
2114 // Get the Value to be switched on and default basic blocks, which will be
2115 // inserted into CaseBlock records, representing basic blocks in the binary
2116 // search tree.
2117 Value *SV = SI.getOperand(0);
2118
2119 // Push the initial CaseRec onto the worklist
2120 CaseRecVector WorkList;
2121 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2122
2123 while (!WorkList.empty()) {
2124 // Grab a record representing a case range to process off the worklist
2125 CaseRec CR = WorkList.back();
2126 WorkList.pop_back();
2127
2128 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2129 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002130
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002131 // If the range has few cases (two or less) emit a series of specific
2132 // tests.
2133 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2134 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002135
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002136 // If the switch has more than 5 blocks, and at least 40% dense, and the
2137 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002138 // lowering the switch to a binary tree of conditional branches.
2139 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2140 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002141
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002142 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2143 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2144 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2145 }
2146}
2147
2148
2149void SelectionDAGLowering::visitSub(User &I) {
2150 // -0.0 - X --> fneg
2151 const Type *Ty = I.getType();
2152 if (isa<VectorType>(Ty)) {
2153 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2154 const VectorType *DestTy = cast<VectorType>(I.getType());
2155 const Type *ElTy = DestTy->getElementType();
2156 if (ElTy->isFloatingPoint()) {
2157 unsigned VL = DestTy->getNumElements();
2158 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2159 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2160 if (CV == CNZ) {
2161 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002162 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002163 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002164 return;
2165 }
2166 }
2167 }
2168 }
2169 if (Ty->isFloatingPoint()) {
2170 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2171 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2172 SDValue Op2 = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002173 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002174 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002175 return;
2176 }
2177 }
2178
2179 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2180}
2181
2182void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2183 SDValue Op1 = getValue(I.getOperand(0));
2184 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002185
Scott Michelfdc40a02009-02-17 22:15:04 +00002186 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002187 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002188}
2189
2190void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2191 SDValue Op1 = getValue(I.getOperand(0));
2192 SDValue Op2 = getValue(I.getOperand(1));
2193 if (!isa<VectorType>(I.getType())) {
Duncan Sands92abc622009-01-31 15:50:11 +00002194 if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002195 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002196 TLI.getPointerTy(), Op2);
2197 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002198 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002199 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002200 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002201
Scott Michelfdc40a02009-02-17 22:15:04 +00002202 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002203 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002204}
2205
2206void SelectionDAGLowering::visitICmp(User &I) {
2207 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2208 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2209 predicate = IC->getPredicate();
2210 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2211 predicate = ICmpInst::Predicate(IC->getPredicate());
2212 SDValue Op1 = getValue(I.getOperand(0));
2213 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002214 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002215 setValue(&I, DAG.getSetCC(getCurDebugLoc(),MVT::i1, Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002216}
2217
2218void SelectionDAGLowering::visitFCmp(User &I) {
2219 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2220 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2221 predicate = FC->getPredicate();
2222 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2223 predicate = FCmpInst::Predicate(FC->getPredicate());
2224 SDValue Op1 = getValue(I.getOperand(0));
2225 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002226 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dale Johannesenf5d97892009-02-04 01:48:28 +00002227 setValue(&I, DAG.getSetCC(getCurDebugLoc(), MVT::i1, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002228}
2229
2230void SelectionDAGLowering::visitVICmp(User &I) {
2231 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2232 if (VICmpInst *IC = dyn_cast<VICmpInst>(&I))
2233 predicate = IC->getPredicate();
2234 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2235 predicate = ICmpInst::Predicate(IC->getPredicate());
2236 SDValue Op1 = getValue(I.getOperand(0));
2237 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002238 ISD::CondCode Opcode = getICmpCondCode(predicate);
Scott Michelfdc40a02009-02-17 22:15:04 +00002239 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), Op1.getValueType(),
Dale Johannesenf5d97892009-02-04 01:48:28 +00002240 Op1, Op2, Opcode));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002241}
2242
2243void SelectionDAGLowering::visitVFCmp(User &I) {
2244 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2245 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I))
2246 predicate = FC->getPredicate();
2247 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2248 predicate = FCmpInst::Predicate(FC->getPredicate());
2249 SDValue Op1 = getValue(I.getOperand(0));
2250 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002251 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002252 MVT DestVT = TLI.getValueType(I.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002253
Dale Johannesenf5d97892009-02-04 01:48:28 +00002254 setValue(&I, DAG.getVSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002255}
2256
2257void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002258 SmallVector<MVT, 4> ValueVTs;
2259 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2260 unsigned NumValues = ValueVTs.size();
2261 if (NumValues != 0) {
2262 SmallVector<SDValue, 4> Values(NumValues);
2263 SDValue Cond = getValue(I.getOperand(0));
2264 SDValue TrueVal = getValue(I.getOperand(1));
2265 SDValue FalseVal = getValue(I.getOperand(2));
2266
2267 for (unsigned i = 0; i != NumValues; ++i)
Scott Michelfdc40a02009-02-17 22:15:04 +00002268 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002269 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002270 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2271 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2272
Scott Michelfdc40a02009-02-17 22:15:04 +00002273 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002274 DAG.getVTList(&ValueVTs[0], NumValues),
2275 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002276 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002277}
2278
2279
2280void SelectionDAGLowering::visitTrunc(User &I) {
2281 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2282 SDValue N = getValue(I.getOperand(0));
2283 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002284 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002285}
2286
2287void SelectionDAGLowering::visitZExt(User &I) {
2288 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2289 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2290 SDValue N = getValue(I.getOperand(0));
2291 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002292 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002293}
2294
2295void SelectionDAGLowering::visitSExt(User &I) {
2296 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2297 // SExt also can't be a cast to bool for same reason. So, nothing much to do
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::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002301}
2302
2303void SelectionDAGLowering::visitFPTrunc(User &I) {
2304 // FPTrunc is never a no-op cast, no need to check
2305 SDValue N = getValue(I.getOperand(0));
2306 MVT DestVT = TLI.getValueType(I.getType());
Scott Michelfdc40a02009-02-17 22:15:04 +00002307 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002308 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002309}
2310
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002311void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002312 // FPTrunc is never a no-op cast, no need to check
2313 SDValue N = getValue(I.getOperand(0));
2314 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002315 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002316}
2317
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002318void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002319 // FPToUI is never a no-op cast, no need to check
2320 SDValue N = getValue(I.getOperand(0));
2321 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002322 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002323}
2324
2325void SelectionDAGLowering::visitFPToSI(User &I) {
2326 // FPToSI is never a no-op cast, no need to check
2327 SDValue N = getValue(I.getOperand(0));
2328 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002329 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002330}
2331
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002332void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002333 // UIToFP is never a no-op cast, no need to check
2334 SDValue N = getValue(I.getOperand(0));
2335 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002336 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002337}
2338
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002339void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002340 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002341 SDValue N = getValue(I.getOperand(0));
2342 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002343 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002344}
2345
2346void SelectionDAGLowering::visitPtrToInt(User &I) {
2347 // What to do depends on the size of the integer and the size of the pointer.
2348 // We can either truncate, zero extend, or no-op, accordingly.
2349 SDValue N = getValue(I.getOperand(0));
2350 MVT SrcVT = N.getValueType();
2351 MVT DestVT = TLI.getValueType(I.getType());
2352 SDValue Result;
2353 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002354 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002355 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002356 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002357 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002358 setValue(&I, Result);
2359}
2360
2361void SelectionDAGLowering::visitIntToPtr(User &I) {
2362 // What to do depends on the size of the integer and the size of the pointer.
2363 // We can either truncate, zero extend, or no-op, accordingly.
2364 SDValue N = getValue(I.getOperand(0));
2365 MVT SrcVT = N.getValueType();
2366 MVT DestVT = TLI.getValueType(I.getType());
2367 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002368 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002369 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002370 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Scott Michelfdc40a02009-02-17 22:15:04 +00002371 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002372 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002373}
2374
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002375void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002376 SDValue N = getValue(I.getOperand(0));
2377 MVT DestVT = TLI.getValueType(I.getType());
2378
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002379 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002380 // is either a BIT_CONVERT or a no-op.
2381 if (DestVT != N.getValueType())
Scott Michelfdc40a02009-02-17 22:15:04 +00002382 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002383 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002384 else
2385 setValue(&I, N); // noop cast.
2386}
2387
2388void SelectionDAGLowering::visitInsertElement(User &I) {
2389 SDValue InVec = getValue(I.getOperand(0));
2390 SDValue InVal = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00002391 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002392 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002393 getValue(I.getOperand(2)));
2394
Scott Michelfdc40a02009-02-17 22:15:04 +00002395 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002396 TLI.getValueType(I.getType()),
2397 InVec, InVal, InIdx));
2398}
2399
2400void SelectionDAGLowering::visitExtractElement(User &I) {
2401 SDValue InVec = getValue(I.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002402 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002403 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002404 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002405 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002406 TLI.getValueType(I.getType()), InVec, InIdx));
2407}
2408
Mon P Wangaeb06d22008-11-10 04:46:22 +00002409
2410// Utility for visitShuffleVector - Returns true if the mask is mask starting
2411// from SIndx and increasing to the element length (undefs are allowed).
2412static bool SequentialMask(SDValue Mask, unsigned SIndx) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002413 unsigned MaskNumElts = Mask.getNumOperands();
2414 for (unsigned i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002415 if (Mask.getOperand(i).getOpcode() != ISD::UNDEF) {
2416 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2417 if (Idx != i + SIndx)
2418 return false;
2419 }
2420 }
2421 return true;
2422}
2423
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002424void SelectionDAGLowering::visitShuffleVector(User &I) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002425 SDValue Src1 = getValue(I.getOperand(0));
2426 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002427 SDValue Mask = getValue(I.getOperand(2));
2428
Mon P Wangaeb06d22008-11-10 04:46:22 +00002429 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002430 MVT SrcVT = Src1.getValueType();
Mon P Wangc7849c22008-11-16 05:06:27 +00002431 int MaskNumElts = Mask.getNumOperands();
2432 int SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002433
Mon P Wangc7849c22008-11-16 05:06:27 +00002434 if (SrcNumElts == MaskNumElts) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002435 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002436 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002437 return;
2438 }
2439
2440 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002441 MVT MaskEltVT = Mask.getValueType().getVectorElementType();
2442
2443 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2444 // Mask is longer than the source vectors and is a multiple of the source
2445 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002446 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002447 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2448 // The shuffle is concatenating two vectors together.
Scott Michelfdc40a02009-02-17 22:15:04 +00002449 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002450 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002451 return;
2452 }
2453
Mon P Wangc7849c22008-11-16 05:06:27 +00002454 // Pad both vectors with undefs to make them the same length as the mask.
2455 unsigned NumConcat = MaskNumElts / SrcNumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00002456 SDValue UndefVal = DAG.getUNDEF(SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002457
Mon P Wang230e4fa2008-11-21 04:25:21 +00002458 SDValue* MOps1 = new SDValue[NumConcat];
2459 SDValue* MOps2 = new SDValue[NumConcat];
2460 MOps1[0] = Src1;
2461 MOps2[0] = Src2;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002462 for (unsigned i = 1; i != NumConcat; ++i) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002463 MOps1[i] = UndefVal;
2464 MOps2[i] = UndefVal;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002465 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002466 Src1 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002467 VT, MOps1, NumConcat);
Scott Michelfdc40a02009-02-17 22:15:04 +00002468 Src2 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002469 VT, MOps2, NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002470
2471 delete [] MOps1;
2472 delete [] MOps2;
2473
Mon P Wangaeb06d22008-11-10 04:46:22 +00002474 // Readjust mask for new input vector length.
2475 SmallVector<SDValue, 8> MappedOps;
Mon P Wangc7849c22008-11-16 05:06:27 +00002476 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002477 if (Mask.getOperand(i).getOpcode() == ISD::UNDEF) {
2478 MappedOps.push_back(Mask.getOperand(i));
2479 } else {
Mon P Wangc7849c22008-11-16 05:06:27 +00002480 int Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2481 if (Idx < SrcNumElts)
2482 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
2483 else
2484 MappedOps.push_back(DAG.getConstant(Idx + MaskNumElts - SrcNumElts,
2485 MaskEltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002486 }
2487 }
Evan Chenga87008d2009-02-25 22:49:59 +00002488 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2489 Mask.getValueType(),
2490 &MappedOps[0], MappedOps.size());
Mon P Wangaeb06d22008-11-10 04:46:22 +00002491
Scott Michelfdc40a02009-02-17 22:15:04 +00002492 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002493 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002494 return;
2495 }
2496
Mon P Wangc7849c22008-11-16 05:06:27 +00002497 if (SrcNumElts > MaskNumElts) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002498 // Resulting vector is shorter than the incoming vector.
Mon P Wangc7849c22008-11-16 05:06:27 +00002499 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002500 // Shuffle extracts 1st vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002501 setValue(&I, Src1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002502 return;
2503 }
2504
Mon P Wangc7849c22008-11-16 05:06:27 +00002505 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002506 // Shuffle extracts 2nd vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002507 setValue(&I, Src2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002508 return;
2509 }
2510
Mon P Wangc7849c22008-11-16 05:06:27 +00002511 // Analyze the access pattern of the vector to see if we can extract
2512 // two subvectors and do the shuffle. The analysis is done by calculating
2513 // the range of elements the mask access on both vectors.
2514 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2515 int MaxRange[2] = {-1, -1};
2516
2517 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002518 SDValue Arg = Mask.getOperand(i);
2519 if (Arg.getOpcode() != ISD::UNDEF) {
2520 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002521 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2522 int Input = 0;
2523 if (Idx >= SrcNumElts) {
2524 Input = 1;
2525 Idx -= SrcNumElts;
2526 }
2527 if (Idx > MaxRange[Input])
2528 MaxRange[Input] = Idx;
2529 if (Idx < MinRange[Input])
2530 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002531 }
2532 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002533
Mon P Wangc7849c22008-11-16 05:06:27 +00002534 // Check if the access is smaller than the vector size and can we find
2535 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002536 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002537 int StartIdx[2]; // StartIdx to extract from
2538 for (int Input=0; Input < 2; ++Input) {
2539 if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) {
2540 RangeUse[Input] = 0; // Unused
2541 StartIdx[Input] = 0;
2542 } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) {
2543 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002544 // start index that is a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002545 if (MaxRange[Input] < MaskNumElts) {
2546 RangeUse[Input] = 1; // Extract from beginning of the vector
2547 StartIdx[Input] = 0;
2548 } else {
2549 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Mon P Wang6cce3da2008-11-23 04:35:05 +00002550 if (MaxRange[Input] - StartIdx[Input] < MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002551 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002552 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002553 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002554 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002555 }
2556
2557 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002558 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002559 return;
2560 }
2561 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2562 // Extract appropriate subvector and generate a vector shuffle
2563 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002564 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002565 if (RangeUse[Input] == 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002566 Src = DAG.getUNDEF(VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002567 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002568 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002569 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002570 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002571 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002572 // Calculate new mask.
2573 SmallVector<SDValue, 8> MappedOps;
2574 for (int i = 0; i != MaskNumElts; ++i) {
2575 SDValue Arg = Mask.getOperand(i);
2576 if (Arg.getOpcode() == ISD::UNDEF) {
2577 MappedOps.push_back(Arg);
2578 } else {
2579 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2580 if (Idx < SrcNumElts)
2581 MappedOps.push_back(DAG.getConstant(Idx - StartIdx[0], MaskEltVT));
2582 else {
2583 Idx = Idx - SrcNumElts - StartIdx[1] + MaskNumElts;
2584 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002585 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002586 }
2587 }
Evan Chenga87008d2009-02-25 22:49:59 +00002588 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2589 Mask.getValueType(),
2590 &MappedOps[0], MappedOps.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00002591 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002592 VT, Src1, Src2, Mask));
Mon P Wangc7849c22008-11-16 05:06:27 +00002593 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002594 }
2595 }
2596
Mon P Wangc7849c22008-11-16 05:06:27 +00002597 // We can't use either concat vectors or extract subvectors so fall back to
2598 // replacing the shuffle with extract and build vector.
2599 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002600 MVT EltVT = VT.getVectorElementType();
2601 MVT PtrVT = TLI.getPointerTy();
2602 SmallVector<SDValue,8> Ops;
Mon P Wangc7849c22008-11-16 05:06:27 +00002603 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002604 SDValue Arg = Mask.getOperand(i);
2605 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002606 Ops.push_back(DAG.getUNDEF(EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002607 } else {
2608 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002609 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2610 if (Idx < SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002611 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002612 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002613 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002614 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Scott Michelfdc40a02009-02-17 22:15:04 +00002615 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002616 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002617 }
2618 }
Evan Chenga87008d2009-02-25 22:49:59 +00002619 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
2620 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002621}
2622
2623void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2624 const Value *Op0 = I.getOperand(0);
2625 const Value *Op1 = I.getOperand(1);
2626 const Type *AggTy = I.getType();
2627 const Type *ValTy = Op1->getType();
2628 bool IntoUndef = isa<UndefValue>(Op0);
2629 bool FromUndef = isa<UndefValue>(Op1);
2630
2631 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2632 I.idx_begin(), I.idx_end());
2633
2634 SmallVector<MVT, 4> AggValueVTs;
2635 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2636 SmallVector<MVT, 4> ValValueVTs;
2637 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2638
2639 unsigned NumAggValues = AggValueVTs.size();
2640 unsigned NumValValues = ValValueVTs.size();
2641 SmallVector<SDValue, 4> Values(NumAggValues);
2642
2643 SDValue Agg = getValue(Op0);
2644 SDValue Val = getValue(Op1);
2645 unsigned i = 0;
2646 // Copy the beginning value(s) from the original aggregate.
2647 for (; i != LinearIndex; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002648 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002649 SDValue(Agg.getNode(), Agg.getResNo() + i);
2650 // Copy values from the inserted value(s).
2651 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002652 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002653 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2654 // Copy remaining value(s) from the original aggregate.
2655 for (; i != NumAggValues; ++i)
Dale Johannesene8d72302009-02-06 23:05:02 +00002656 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002657 SDValue(Agg.getNode(), Agg.getResNo() + i);
2658
Scott Michelfdc40a02009-02-17 22:15:04 +00002659 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002660 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2661 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002662}
2663
2664void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2665 const Value *Op0 = I.getOperand(0);
2666 const Type *AggTy = Op0->getType();
2667 const Type *ValTy = I.getType();
2668 bool OutOfUndef = isa<UndefValue>(Op0);
2669
2670 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2671 I.idx_begin(), I.idx_end());
2672
2673 SmallVector<MVT, 4> ValValueVTs;
2674 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2675
2676 unsigned NumValValues = ValValueVTs.size();
2677 SmallVector<SDValue, 4> Values(NumValValues);
2678
2679 SDValue Agg = getValue(Op0);
2680 // Copy out the selected value(s).
2681 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2682 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002683 OutOfUndef ?
Dale Johannesene8d72302009-02-06 23:05:02 +00002684 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) :
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002685 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002686
Scott Michelfdc40a02009-02-17 22:15:04 +00002687 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002688 DAG.getVTList(&ValValueVTs[0], NumValValues),
2689 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002690}
2691
2692
2693void SelectionDAGLowering::visitGetElementPtr(User &I) {
2694 SDValue N = getValue(I.getOperand(0));
2695 const Type *Ty = I.getOperand(0)->getType();
2696
2697 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2698 OI != E; ++OI) {
2699 Value *Idx = *OI;
2700 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2701 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2702 if (Field) {
2703 // N = N + Offset
2704 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002705 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002706 DAG.getIntPtrConstant(Offset));
2707 }
2708 Ty = StTy->getElementType(Field);
2709 } else {
2710 Ty = cast<SequentialType>(Ty)->getElementType();
2711
2712 // If this is a constant subscript, handle it quickly.
2713 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2714 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002715 uint64_t Offs =
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002716 TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Evan Cheng65b52df2009-02-09 21:01:06 +00002717 SDValue OffsVal;
Evan Chengb1032a82009-02-09 20:54:38 +00002718 unsigned PtrBits = TLI.getPointerTy().getSizeInBits();
Evan Cheng65b52df2009-02-09 21:01:06 +00002719 if (PtrBits < 64) {
2720 OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
2721 TLI.getPointerTy(),
2722 DAG.getConstant(Offs, MVT::i64));
2723 } else
Evan Chengb1032a82009-02-09 20:54:38 +00002724 OffsVal = DAG.getIntPtrConstant(Offs);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002725 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Evan Chengb1032a82009-02-09 20:54:38 +00002726 OffsVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002727 continue;
2728 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002729
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002730 // N = N + Idx * ElementSize;
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002731 uint64_t ElementSize = TD->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002732 SDValue IdxN = getValue(Idx);
2733
2734 // If the index is smaller or larger than intptr_t, truncate or extend
2735 // it.
2736 if (IdxN.getValueType().bitsLT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002737 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002738 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002739 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002740 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002741 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002742
2743 // If this is a multiply by a power of two, turn it into a shl
2744 // immediately. This is a very common case.
2745 if (ElementSize != 1) {
2746 if (isPowerOf2_64(ElementSize)) {
2747 unsigned Amt = Log2_64(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002748 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002749 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002750 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002751 } else {
2752 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Scott Michelfdc40a02009-02-17 22:15:04 +00002753 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002754 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002755 }
2756 }
2757
Scott Michelfdc40a02009-02-17 22:15:04 +00002758 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002759 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002760 }
2761 }
2762 setValue(&I, N);
2763}
2764
2765void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2766 // If this is a fixed sized alloca in the entry block of the function,
2767 // allocate it statically on the stack.
2768 if (FuncInfo.StaticAllocaMap.count(&I))
2769 return; // getValue will auto-populate this.
2770
2771 const Type *Ty = I.getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002772 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002773 unsigned Align =
2774 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2775 I.getAlignment());
2776
2777 SDValue AllocSize = getValue(I.getArraySize());
Chris Lattner0b18e592009-03-17 19:36:00 +00002778
2779 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(),
2780 AllocSize,
2781 DAG.getConstant(TySize, AllocSize.getValueType()));
2782
2783
2784
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002785 MVT IntPtr = TLI.getPointerTy();
2786 if (IntPtr.bitsLT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002787 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002788 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002789 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Scott Michelfdc40a02009-02-17 22:15:04 +00002790 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002791 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002792
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002793 // Handle alignment. If the requested alignment is less than or equal to
2794 // the stack alignment, ignore it. If the size is greater than or equal to
2795 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2796 unsigned StackAlign =
2797 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2798 if (Align <= StackAlign)
2799 Align = 0;
2800
2801 // Round the size of the allocation up to the stack alignment size
2802 // by add SA-1 to the size.
Scott Michelfdc40a02009-02-17 22:15:04 +00002803 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002804 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002805 DAG.getIntPtrConstant(StackAlign-1));
2806 // Mask out the low bits for alignment purposes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002807 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002808 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002809 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2810
2811 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
2812 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2813 MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00002814 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002815 VTs, 2, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002816 setValue(&I, DSA);
2817 DAG.setRoot(DSA.getValue(1));
2818
2819 // Inform the Frame Information that we have just allocated a variable-sized
2820 // object.
2821 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2822}
2823
2824void SelectionDAGLowering::visitLoad(LoadInst &I) {
2825 const Value *SV = I.getOperand(0);
2826 SDValue Ptr = getValue(SV);
2827
2828 const Type *Ty = I.getType();
2829 bool isVolatile = I.isVolatile();
2830 unsigned Alignment = I.getAlignment();
2831
2832 SmallVector<MVT, 4> ValueVTs;
2833 SmallVector<uint64_t, 4> Offsets;
2834 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2835 unsigned NumValues = ValueVTs.size();
2836 if (NumValues == 0)
2837 return;
2838
2839 SDValue Root;
2840 bool ConstantMemory = false;
2841 if (I.isVolatile())
2842 // Serialize volatile loads with other side effects.
2843 Root = getRoot();
2844 else if (AA->pointsToConstantMemory(SV)) {
2845 // Do not serialize (non-volatile) loads of constant memory with anything.
2846 Root = DAG.getEntryNode();
2847 ConstantMemory = true;
2848 } else {
2849 // Do not serialize non-volatile loads against each other.
2850 Root = DAG.getRoot();
2851 }
2852
2853 SmallVector<SDValue, 4> Values(NumValues);
2854 SmallVector<SDValue, 4> Chains(NumValues);
2855 MVT PtrVT = Ptr.getValueType();
2856 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002857 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
Scott Michelfdc40a02009-02-17 22:15:04 +00002858 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002859 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002860 DAG.getConstant(Offsets[i], PtrVT)),
2861 SV, Offsets[i],
2862 isVolatile, Alignment);
2863 Values[i] = L;
2864 Chains[i] = L.getValue(1);
2865 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002866
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002867 if (!ConstantMemory) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002868 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002869 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002870 &Chains[0], NumValues);
2871 if (isVolatile)
2872 DAG.setRoot(Chain);
2873 else
2874 PendingLoads.push_back(Chain);
2875 }
2876
Scott Michelfdc40a02009-02-17 22:15:04 +00002877 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002878 DAG.getVTList(&ValueVTs[0], NumValues),
2879 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002880}
2881
2882
2883void SelectionDAGLowering::visitStore(StoreInst &I) {
2884 Value *SrcV = I.getOperand(0);
2885 Value *PtrV = I.getOperand(1);
2886
2887 SmallVector<MVT, 4> ValueVTs;
2888 SmallVector<uint64_t, 4> Offsets;
2889 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2890 unsigned NumValues = ValueVTs.size();
2891 if (NumValues == 0)
2892 return;
2893
2894 // Get the lowered operands. Note that we do this after
2895 // checking if NumResults is zero, because with zero results
2896 // the operands won't have values in the map.
2897 SDValue Src = getValue(SrcV);
2898 SDValue Ptr = getValue(PtrV);
2899
2900 SDValue Root = getRoot();
2901 SmallVector<SDValue, 4> Chains(NumValues);
2902 MVT PtrVT = Ptr.getValueType();
2903 bool isVolatile = I.isVolatile();
2904 unsigned Alignment = I.getAlignment();
2905 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002906 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002907 SDValue(Src.getNode(), Src.getResNo() + i),
Scott Michelfdc40a02009-02-17 22:15:04 +00002908 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002909 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002910 DAG.getConstant(Offsets[i], PtrVT)),
2911 PtrV, Offsets[i],
2912 isVolatile, Alignment);
2913
Scott Michelfdc40a02009-02-17 22:15:04 +00002914 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002915 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002916}
2917
2918/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2919/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002920void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002921 unsigned Intrinsic) {
2922 bool HasChain = !I.doesNotAccessMemory();
2923 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2924
2925 // Build the operand list.
2926 SmallVector<SDValue, 8> Ops;
2927 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2928 if (OnlyLoad) {
2929 // We don't need to serialize loads against other loads.
2930 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002931 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002932 Ops.push_back(getRoot());
2933 }
2934 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002935
2936 // Info is set by getTgtMemInstrinsic
2937 TargetLowering::IntrinsicInfo Info;
2938 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2939
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002940 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002941 if (!IsTgtIntrinsic)
2942 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002943
2944 // Add all operands of the call to the operand list.
2945 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2946 SDValue Op = getValue(I.getOperand(i));
2947 assert(TLI.isTypeLegal(Op.getValueType()) &&
2948 "Intrinsic uses a non-legal type?");
2949 Ops.push_back(Op);
2950 }
2951
2952 std::vector<MVT> VTs;
2953 if (I.getType() != Type::VoidTy) {
2954 MVT VT = TLI.getValueType(I.getType());
2955 if (VT.isVector()) {
2956 const VectorType *DestTy = cast<VectorType>(I.getType());
2957 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002958
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002959 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2960 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2961 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002962
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002963 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2964 VTs.push_back(VT);
2965 }
2966 if (HasChain)
2967 VTs.push_back(MVT::Other);
2968
2969 const MVT *VTList = DAG.getNodeValueTypes(VTs);
2970
2971 // Create the node.
2972 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002973 if (IsTgtIntrinsic) {
2974 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002975 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002976 VTList, VTs.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002977 &Ops[0], Ops.size(),
2978 Info.memVT, Info.ptrVal, Info.offset,
2979 Info.align, Info.vol,
2980 Info.readMem, Info.writeMem);
2981 }
2982 else if (!HasChain)
Scott Michelfdc40a02009-02-17 22:15:04 +00002983 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002984 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002985 &Ops[0], Ops.size());
2986 else if (I.getType() != Type::VoidTy)
Scott Michelfdc40a02009-02-17 22:15:04 +00002987 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002988 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002989 &Ops[0], Ops.size());
2990 else
Scott Michelfdc40a02009-02-17 22:15:04 +00002991 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002992 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002993 &Ops[0], Ops.size());
2994
2995 if (HasChain) {
2996 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2997 if (OnlyLoad)
2998 PendingLoads.push_back(Chain);
2999 else
3000 DAG.setRoot(Chain);
3001 }
3002 if (I.getType() != Type::VoidTy) {
3003 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
3004 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003005 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003006 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003007 setValue(&I, Result);
3008 }
3009}
3010
3011/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
3012static GlobalVariable *ExtractTypeInfo(Value *V) {
3013 V = V->stripPointerCasts();
3014 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
3015 assert ((GV || isa<ConstantPointerNull>(V)) &&
3016 "TypeInfo must be a global variable or NULL");
3017 return GV;
3018}
3019
3020namespace llvm {
3021
3022/// AddCatchInfo - Extract the personality and type infos from an eh.selector
3023/// call, and add them to the specified machine basic block.
3024void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
3025 MachineBasicBlock *MBB) {
3026 // Inform the MachineModuleInfo of the personality for this landing pad.
3027 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
3028 assert(CE->getOpcode() == Instruction::BitCast &&
3029 isa<Function>(CE->getOperand(0)) &&
3030 "Personality should be a function");
3031 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3032
3033 // Gather all the type infos for this landing pad and pass them along to
3034 // MachineModuleInfo.
3035 std::vector<GlobalVariable *> TyInfo;
3036 unsigned N = I.getNumOperands();
3037
3038 for (unsigned i = N - 1; i > 2; --i) {
3039 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3040 unsigned FilterLength = CI->getZExtValue();
3041 unsigned FirstCatch = i + FilterLength + !FilterLength;
3042 assert (FirstCatch <= N && "Invalid filter length");
3043
3044 if (FirstCatch < N) {
3045 TyInfo.reserve(N - FirstCatch);
3046 for (unsigned j = FirstCatch; j < N; ++j)
3047 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3048 MMI->addCatchTypeInfo(MBB, TyInfo);
3049 TyInfo.clear();
3050 }
3051
3052 if (!FilterLength) {
3053 // Cleanup.
3054 MMI->addCleanup(MBB);
3055 } else {
3056 // Filter.
3057 TyInfo.reserve(FilterLength - 1);
3058 for (unsigned j = i + 1; j < FirstCatch; ++j)
3059 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3060 MMI->addFilterTypeInfo(MBB, TyInfo);
3061 TyInfo.clear();
3062 }
3063
3064 N = i;
3065 }
3066 }
3067
3068 if (N > 3) {
3069 TyInfo.reserve(N - 3);
3070 for (unsigned j = 3; j < N; ++j)
3071 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3072 MMI->addCatchTypeInfo(MBB, TyInfo);
3073 }
3074}
3075
3076}
3077
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003078/// GetSignificand - Get the significand and build it into a floating-point
3079/// number with exponent of 1:
3080///
3081/// Op = (Op & 0x007fffff) | 0x3f800000;
3082///
3083/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003084static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003085GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3086 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003087 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003088 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003089 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003090 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003091}
3092
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003093/// GetExponent - Get the exponent:
3094///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003095/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003096///
3097/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003098static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003099GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3100 DebugLoc dl) {
3101 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003102 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003103 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003104 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003105 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003106 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003107 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003108}
3109
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003110/// getF32Constant - Get 32-bit floating point constant.
3111static SDValue
3112getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3113 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3114}
3115
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003116/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003117/// visitIntrinsicCall: I is a call instruction
3118/// Op is the associated NodeType for I
3119const char *
3120SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003121 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003122 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003123 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003124 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003125 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003126 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003127 getValue(I.getOperand(2)),
3128 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003129 setValue(&I, L);
3130 DAG.setRoot(L.getValue(1));
3131 return 0;
3132}
3133
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003134// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003135const char *
3136SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003137 SDValue Op1 = getValue(I.getOperand(1));
3138 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003139
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003140 MVT ValueVTs[] = { Op1.getValueType(), MVT::i1 };
3141 SDValue Ops[] = { Op1, Op2 };
Bill Wendling74c37652008-12-09 22:08:41 +00003142
Scott Michelfdc40a02009-02-17 22:15:04 +00003143 SDValue Result = DAG.getNode(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003144 DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2);
Bill Wendling74c37652008-12-09 22:08:41 +00003145
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003146 setValue(&I, Result);
3147 return 0;
3148}
Bill Wendling74c37652008-12-09 22:08:41 +00003149
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003150/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3151/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003152void
3153SelectionDAGLowering::visitExp(CallInst &I) {
3154 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003155 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003156
3157 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3158 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3159 SDValue Op = getValue(I.getOperand(1));
3160
3161 // Put the exponent in the right bit position for later addition to the
3162 // final result:
3163 //
3164 // #define LOG2OFe 1.4426950f
3165 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003166 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003167 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003168 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003169
3170 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003171 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3172 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003173
3174 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003175 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003176 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003177
3178 if (LimitFloatPrecision <= 6) {
3179 // For floating-point precision of 6:
3180 //
3181 // TwoToFractionalPartOfX =
3182 // 0.997535578f +
3183 // (0.735607626f + 0.252464424f * x) * x;
3184 //
3185 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003186 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003187 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003188 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003189 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003190 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3191 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003192 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003193 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003194
3195 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003196 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003197 TwoToFracPartOfX, IntegerPartOfX);
3198
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003199 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003200 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3201 // For floating-point precision of 12:
3202 //
3203 // TwoToFractionalPartOfX =
3204 // 0.999892986f +
3205 // (0.696457318f +
3206 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3207 //
3208 // 0.000107046256 error, which is 13 to 14 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, 0x3da235e3));
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, 0x3e65b8f3));
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, 0x3f324b07));
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, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003219 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003220
3221 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003222 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003223 TwoToFracPartOfX, IntegerPartOfX);
3224
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003225 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003226 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3227 // For floating-point precision of 18:
3228 //
3229 // TwoToFractionalPartOfX =
3230 // 0.999999982f +
3231 // (0.693148872f +
3232 // (0.240227044f +
3233 // (0.554906021e-1f +
3234 // (0.961591928e-2f +
3235 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3236 //
3237 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003238 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003239 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003240 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003241 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003242 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3243 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003244 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003245 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3246 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003247 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003248 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3249 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003250 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003251 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3252 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003253 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003254 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3255 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003256 getF32Constant(DAG, 0x3f800000));
Scott Michelfdc40a02009-02-17 22:15:04 +00003257 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003258 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003259
3260 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003261 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003262 TwoToFracPartOfX, IntegerPartOfX);
3263
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003264 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003265 }
3266 } else {
3267 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003268 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003269 getValue(I.getOperand(1)).getValueType(),
3270 getValue(I.getOperand(1)));
3271 }
3272
Dale Johannesen59e577f2008-09-05 18:38:42 +00003273 setValue(&I, result);
3274}
3275
Bill Wendling39150252008-09-09 20:39:27 +00003276/// visitLog - Lower a log intrinsic. Handles the special sequences for
3277/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003278void
3279SelectionDAGLowering::visitLog(CallInst &I) {
3280 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003281 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003282
3283 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3284 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3285 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003286 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003287
3288 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003289 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003290 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003291 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003292
3293 // Get the significand and build it into a floating-point number with
3294 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003295 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003296
3297 if (LimitFloatPrecision <= 6) {
3298 // For floating-point precision of 6:
3299 //
3300 // LogofMantissa =
3301 // -1.1609546f +
3302 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003303 //
Bill Wendling39150252008-09-09 20:39:27 +00003304 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003305 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003306 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003307 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003308 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003309 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3310 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003311 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003312
Scott Michelfdc40a02009-02-17 22:15:04 +00003313 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003314 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003315 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3316 // For floating-point precision of 12:
3317 //
3318 // LogOfMantissa =
3319 // -1.7417939f +
3320 // (2.8212026f +
3321 // (-1.4699568f +
3322 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3323 //
3324 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003325 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003326 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003327 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003328 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003329 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3330 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003331 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003332 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3333 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003334 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003335 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3336 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003337 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003338
Scott Michelfdc40a02009-02-17 22:15:04 +00003339 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003340 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003341 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3342 // For floating-point precision of 18:
3343 //
3344 // LogOfMantissa =
3345 // -2.1072184f +
3346 // (4.2372794f +
3347 // (-3.7029485f +
3348 // (2.2781945f +
3349 // (-0.87823314f +
3350 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3351 //
3352 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003353 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003354 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003355 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003356 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003357 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3358 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003359 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003360 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3361 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003362 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003363 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3364 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003365 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003366 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3367 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003368 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003369 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3370 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003371 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003372
Scott Michelfdc40a02009-02-17 22:15:04 +00003373 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003374 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003375 }
3376 } else {
3377 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003378 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003379 getValue(I.getOperand(1)).getValueType(),
3380 getValue(I.getOperand(1)));
3381 }
3382
Dale Johannesen59e577f2008-09-05 18:38:42 +00003383 setValue(&I, result);
3384}
3385
Bill Wendling3eb59402008-09-09 00:28:24 +00003386/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3387/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003388void
3389SelectionDAGLowering::visitLog2(CallInst &I) {
3390 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003391 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003392
Dale Johannesen853244f2008-09-05 23:49:37 +00003393 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003394 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3395 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003396 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003397
Bill Wendling39150252008-09-09 20:39:27 +00003398 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003399 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003400
3401 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003402 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003403 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003404
Bill Wendling3eb59402008-09-09 00:28:24 +00003405 // Different possible minimax approximations of significand in
3406 // floating-point for various degrees of accuracy over [1,2].
3407 if (LimitFloatPrecision <= 6) {
3408 // For floating-point precision of 6:
3409 //
3410 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3411 //
3412 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003413 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003414 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003415 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003416 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003417 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3418 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003419 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003420
Scott Michelfdc40a02009-02-17 22:15:04 +00003421 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003422 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003423 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3424 // For floating-point precision of 12:
3425 //
3426 // Log2ofMantissa =
3427 // -2.51285454f +
3428 // (4.07009056f +
3429 // (-2.12067489f +
3430 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003431 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003432 // error 0.0000876136000, which is better than 13 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, 0xbda7262e));
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, 0x3f25280b));
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, 0x4007b923));
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, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003443 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3444 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003445 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003446
Scott Michelfdc40a02009-02-17 22:15:04 +00003447 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003448 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003449 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3450 // For floating-point precision of 18:
3451 //
3452 // Log2ofMantissa =
3453 // -3.0400495f +
3454 // (6.1129976f +
3455 // (-5.3420409f +
3456 // (3.2865683f +
3457 // (-1.2669343f +
3458 // (0.27515199f -
3459 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3460 //
3461 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003462 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003463 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003464 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003465 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003466 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3467 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003468 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003469 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3470 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003471 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003472 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3473 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003474 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003475 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3476 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003477 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003478 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3479 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003480 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003481
Scott Michelfdc40a02009-02-17 22:15:04 +00003482 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003483 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003484 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003485 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003486 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003487 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003488 getValue(I.getOperand(1)).getValueType(),
3489 getValue(I.getOperand(1)));
3490 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003491
Dale Johannesen59e577f2008-09-05 18:38:42 +00003492 setValue(&I, result);
3493}
3494
Bill Wendling3eb59402008-09-09 00:28:24 +00003495/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3496/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003497void
3498SelectionDAGLowering::visitLog10(CallInst &I) {
3499 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003500 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003501
Dale Johannesen852680a2008-09-05 21:27:19 +00003502 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003503 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3504 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003505 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003506
Bill Wendling39150252008-09-09 20:39:27 +00003507 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003508 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003509 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003510 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003511
3512 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003513 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003514 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003515
3516 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003517 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003518 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003519 // Log10ofMantissa =
3520 // -0.50419619f +
3521 // (0.60948995f - 0.10380950f * x) * x;
3522 //
3523 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003524 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003525 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003526 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003527 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003528 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3529 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003530 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003531
Scott Michelfdc40a02009-02-17 22:15:04 +00003532 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003533 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003534 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3535 // For floating-point precision of 12:
3536 //
3537 // Log10ofMantissa =
3538 // -0.64831180f +
3539 // (0.91751397f +
3540 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3541 //
3542 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003543 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003544 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003545 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003546 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003547 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3548 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003549 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003550 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3551 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003552 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003553
Scott Michelfdc40a02009-02-17 22:15:04 +00003554 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003555 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003556 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003557 // For floating-point precision of 18:
3558 //
3559 // Log10ofMantissa =
3560 // -0.84299375f +
3561 // (1.5327582f +
3562 // (-1.0688956f +
3563 // (0.49102474f +
3564 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3565 //
3566 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003567 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003568 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003569 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003570 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003571 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3572 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003573 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003574 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3575 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003576 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003577 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3578 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003579 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003580 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3581 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003582 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003583
Scott Michelfdc40a02009-02-17 22:15:04 +00003584 result = DAG.getNode(ISD::FADD, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003585 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003586 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003587 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003588 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003589 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003590 getValue(I.getOperand(1)).getValueType(),
3591 getValue(I.getOperand(1)));
3592 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003593
Dale Johannesen59e577f2008-09-05 18:38:42 +00003594 setValue(&I, result);
3595}
3596
Bill Wendlinge10c8142008-09-09 22:39:21 +00003597/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3598/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003599void
3600SelectionDAGLowering::visitExp2(CallInst &I) {
3601 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003602 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003603
Dale Johannesen601d3c02008-09-05 01:48:15 +00003604 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003605 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3606 SDValue Op = getValue(I.getOperand(1));
3607
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003608 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003609
3610 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003611 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3612 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003613
3614 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003615 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003616 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003617
3618 if (LimitFloatPrecision <= 6) {
3619 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003620 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003621 // TwoToFractionalPartOfX =
3622 // 0.997535578f +
3623 // (0.735607626f + 0.252464424f * x) * x;
3624 //
3625 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003626 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003627 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003628 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003629 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003630 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3631 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003632 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003633 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003634 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003635 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003636
Scott Michelfdc40a02009-02-17 22:15:04 +00003637 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003638 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003639 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3640 // For floating-point precision of 12:
3641 //
3642 // TwoToFractionalPartOfX =
3643 // 0.999892986f +
3644 // (0.696457318f +
3645 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3646 //
3647 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003648 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003649 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003650 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003651 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003652 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3653 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003654 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003655 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3656 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003657 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003658 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003659 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003660 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003661
Scott Michelfdc40a02009-02-17 22:15:04 +00003662 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003663 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003664 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3665 // For floating-point precision of 18:
3666 //
3667 // TwoToFractionalPartOfX =
3668 // 0.999999982f +
3669 // (0.693148872f +
3670 // (0.240227044f +
3671 // (0.554906021e-1f +
3672 // (0.961591928e-2f +
3673 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3674 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003675 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003676 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003677 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003678 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003679 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3680 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003681 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003682 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3683 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003684 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003685 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3686 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003687 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003688 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3689 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003690 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003691 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3692 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003693 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003694 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003695 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003696 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003697
Scott Michelfdc40a02009-02-17 22:15:04 +00003698 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003699 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003700 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003701 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003702 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003703 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003704 getValue(I.getOperand(1)).getValueType(),
3705 getValue(I.getOperand(1)));
3706 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003707
Dale Johannesen601d3c02008-09-05 01:48:15 +00003708 setValue(&I, result);
3709}
3710
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003711/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3712/// limited-precision mode with x == 10.0f.
3713void
3714SelectionDAGLowering::visitPow(CallInst &I) {
3715 SDValue result;
3716 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003717 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003718 bool IsExp10 = false;
3719
3720 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003721 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003722 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3723 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3724 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3725 APFloat Ten(10.0f);
3726 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3727 }
3728 }
3729 }
3730
3731 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3732 SDValue Op = getValue(I.getOperand(2));
3733
3734 // Put the exponent in the right bit position for later addition to the
3735 // final result:
3736 //
3737 // #define LOG2OF10 3.3219281f
3738 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003739 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003740 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003741 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003742
3743 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003744 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3745 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003746
3747 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003748 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003749 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003750
3751 if (LimitFloatPrecision <= 6) {
3752 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003753 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003754 // twoToFractionalPartOfX =
3755 // 0.997535578f +
3756 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003757 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003758 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003759 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003760 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003761 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003762 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003763 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3764 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003765 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003766 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003767 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003768 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003769
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003770 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3771 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003772 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3773 // For floating-point precision of 12:
3774 //
3775 // TwoToFractionalPartOfX =
3776 // 0.999892986f +
3777 // (0.696457318f +
3778 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3779 //
3780 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003781 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003782 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003783 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003784 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003785 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3786 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003787 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003788 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3789 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003790 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003791 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003792 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003793 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003794
Scott Michelfdc40a02009-02-17 22:15:04 +00003795 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003796 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003797 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3798 // For floating-point precision of 18:
3799 //
3800 // TwoToFractionalPartOfX =
3801 // 0.999999982f +
3802 // (0.693148872f +
3803 // (0.240227044f +
3804 // (0.554906021e-1f +
3805 // (0.961591928e-2f +
3806 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3807 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003808 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003809 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003810 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003811 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003812 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3813 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003814 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003815 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3816 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003817 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003818 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3819 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003820 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003821 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3822 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003823 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003824 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3825 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003826 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003827 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003828 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003829 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003830
Scott Michelfdc40a02009-02-17 22:15:04 +00003831 result = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003832 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003833 }
3834 } else {
3835 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003836 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003837 getValue(I.getOperand(1)).getValueType(),
3838 getValue(I.getOperand(1)),
3839 getValue(I.getOperand(2)));
3840 }
3841
3842 setValue(&I, result);
3843}
3844
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003845/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3846/// we want to emit this as a call to a named external function, return the name
3847/// otherwise lower it and return null.
3848const char *
3849SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003850 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003851 switch (Intrinsic) {
3852 default:
3853 // By default, turn this into a target intrinsic node.
3854 visitTargetIntrinsic(I, Intrinsic);
3855 return 0;
3856 case Intrinsic::vastart: visitVAStart(I); return 0;
3857 case Intrinsic::vaend: visitVAEnd(I); return 0;
3858 case Intrinsic::vacopy: visitVACopy(I); return 0;
3859 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003860 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003861 getValue(I.getOperand(1))));
3862 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003863 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003864 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003865 getValue(I.getOperand(1))));
3866 return 0;
3867 case Intrinsic::setjmp:
3868 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3869 break;
3870 case Intrinsic::longjmp:
3871 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3872 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003873 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003874 SDValue Op1 = getValue(I.getOperand(1));
3875 SDValue Op2 = getValue(I.getOperand(2));
3876 SDValue Op3 = getValue(I.getOperand(3));
3877 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003878 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003879 I.getOperand(1), 0, I.getOperand(2), 0));
3880 return 0;
3881 }
Chris Lattner824b9582008-11-21 16:42:48 +00003882 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003883 SDValue Op1 = getValue(I.getOperand(1));
3884 SDValue Op2 = getValue(I.getOperand(2));
3885 SDValue Op3 = getValue(I.getOperand(3));
3886 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
Dale Johannesena04b7572009-02-03 23:04:43 +00003887 DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003888 I.getOperand(1), 0));
3889 return 0;
3890 }
Chris Lattner824b9582008-11-21 16:42:48 +00003891 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003892 SDValue Op1 = getValue(I.getOperand(1));
3893 SDValue Op2 = getValue(I.getOperand(2));
3894 SDValue Op3 = getValue(I.getOperand(3));
3895 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3896
3897 // If the source and destination are known to not be aliases, we can
3898 // lower memmove as memcpy.
3899 uint64_t Size = -1ULL;
3900 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003901 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003902 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3903 AliasAnalysis::NoAlias) {
Dale Johannesena04b7572009-02-03 23:04:43 +00003904 DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003905 I.getOperand(1), 0, I.getOperand(2), 0));
3906 return 0;
3907 }
3908
Dale Johannesena04b7572009-02-03 23:04:43 +00003909 DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003910 I.getOperand(1), 0, I.getOperand(2), 0));
3911 return 0;
3912 }
3913 case Intrinsic::dbg_stoppoint: {
Devang Patel83489bb2009-01-13 00:35:13 +00003914 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003915 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003916 if (DW && DW->ValidDebugInfo(SPI.getContext())) {
Evan Chenge3d42322009-02-25 07:04:34 +00003917 MachineFunction &MF = DAG.getMachineFunction();
Dale Johannesenbeaec4c2009-03-25 17:36:08 +00003918 if (Fast)
3919 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3920 SPI.getLine(),
3921 SPI.getColumn(),
3922 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003923 DICompileUnit CU(cast<GlobalVariable>(SPI.getContext()));
Bill Wendling0582ae92009-03-13 04:39:26 +00003924 std::string Dir, FN;
3925 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
3926 CU.getFilename(FN));
Evan Chenge3d42322009-02-25 07:04:34 +00003927 unsigned idx = MF.getOrCreateDebugLocID(SrcFile,
3928 SPI.getLine(), SPI.getColumn());
Dale Johannesen66978ee2009-01-31 02:22:37 +00003929 setCurDebugLoc(DebugLoc::get(idx));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003930 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003931 return 0;
3932 }
3933 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003934 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003935 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Bill Wendling92c1e122009-02-13 02:16:35 +00003936 if (DW && DW->ValidDebugInfo(RSI.getContext())) {
3937 unsigned LabelID =
3938 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Devang Patela49a6712009-04-07 23:00:04 +00003939 if (Fast)
3940 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3941 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003942 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003943
3944 return 0;
3945 }
3946 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003947 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003948 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Bill Wendling92c1e122009-02-13 02:16:35 +00003949 if (DW && DW->ValidDebugInfo(REI.getContext())) {
3950 unsigned LabelID =
3951 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
Devang Patela49a6712009-04-07 23:00:04 +00003952 if (Fast)
3953 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3954 getRoot(), LabelID));
Bill Wendling92c1e122009-02-13 02:16:35 +00003955 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003956
3957 return 0;
3958 }
3959 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003960 DwarfWriter *DW = DAG.getDwarfWriter();
3961 if (!DW) return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003962 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
3963 Value *SP = FSI.getSubprogram();
Devang Patelcf3a4482009-01-15 23:41:32 +00003964 if (SP && DW->ValidDebugInfo(SP)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003965 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3966 // what (most?) gdb expects.
Evan Chenge3d42322009-02-25 07:04:34 +00003967 MachineFunction &MF = DAG.getMachineFunction();
Devang Patel83489bb2009-01-13 00:35:13 +00003968 DISubprogram Subprogram(cast<GlobalVariable>(SP));
3969 DICompileUnit CompileUnit = Subprogram.getCompileUnit();
Bill Wendling0582ae92009-03-13 04:39:26 +00003970 std::string Dir, FN;
3971 unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(Dir),
3972 CompileUnit.getFilename(FN));
Bill Wendling9bc96a52009-02-03 00:55:04 +00003973
Devang Patel20dd0462008-11-06 00:30:09 +00003974 // Record the source line but does not create a label for the normal
3975 // function start. It will be emitted at asm emission time. However,
3976 // create a label if this is a beginning of inlined function.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003977 unsigned Line = Subprogram.getLineNumber();
Bill Wendling92c1e122009-02-13 02:16:35 +00003978
Bill Wendling5aa49772009-02-24 02:35:30 +00003979 if (Fast) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00003980 unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile);
3981 if (DW->getRecordSourceLineCount() != 1)
3982 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(),
3983 getRoot(), LabelID));
3984 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003985
Evan Chenge3d42322009-02-25 07:04:34 +00003986 setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003987 }
3988
3989 return 0;
3990 }
Bill Wendling92c1e122009-02-13 02:16:35 +00003991 case Intrinsic::dbg_declare: {
Bill Wendling5aa49772009-02-24 02:35:30 +00003992 if (Fast) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00003993 DwarfWriter *DW = DAG.getDwarfWriter();
3994 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3995 Value *Variable = DI.getVariable();
3996 if (DW && DW->ValidDebugInfo(Variable))
3997 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
3998 getValue(DI.getAddress()), getValue(Variable)));
3999 } else {
4000 // FIXME: Do something sensible here when we support debug declare.
4001 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004002 return 0;
Bill Wendling92c1e122009-02-13 02:16:35 +00004003 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004004 case Intrinsic::eh_exception: {
4005 if (!CurMBB->isLandingPad()) {
4006 // FIXME: Mark exception register as live in. Hack for PR1508.
4007 unsigned Reg = TLI.getExceptionAddressRegister();
4008 if (Reg) CurMBB->addLiveIn(Reg);
4009 }
4010 // Insert the EXCEPTIONADDR instruction.
4011 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
4012 SDValue Ops[1];
4013 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004014 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004015 setValue(&I, Op);
4016 DAG.setRoot(Op.getValue(1));
4017 return 0;
4018 }
4019
4020 case Intrinsic::eh_selector_i32:
4021 case Intrinsic::eh_selector_i64: {
4022 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4023 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
4024 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004025
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004026 if (MMI) {
4027 if (CurMBB->isLandingPad())
4028 AddCatchInfo(I, MMI, CurMBB);
4029 else {
4030#ifndef NDEBUG
4031 FuncInfo.CatchInfoLost.insert(&I);
4032#endif
4033 // FIXME: Mark exception selector register as live in. Hack for PR1508.
4034 unsigned Reg = TLI.getExceptionSelectorRegister();
4035 if (Reg) CurMBB->addLiveIn(Reg);
4036 }
4037
4038 // Insert the EHSELECTION instruction.
4039 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
4040 SDValue Ops[2];
4041 Ops[0] = getValue(I.getOperand(1));
4042 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004043 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004044 setValue(&I, Op);
4045 DAG.setRoot(Op.getValue(1));
4046 } else {
4047 setValue(&I, DAG.getConstant(0, VT));
4048 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004049
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004050 return 0;
4051 }
4052
4053 case Intrinsic::eh_typeid_for_i32:
4054 case Intrinsic::eh_typeid_for_i64: {
4055 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4056 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4057 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004058
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004059 if (MMI) {
4060 // Find the type id for the given typeinfo.
4061 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4062
4063 unsigned TypeID = MMI->getTypeIDFor(GV);
4064 setValue(&I, DAG.getConstant(TypeID, VT));
4065 } else {
4066 // Return something different to eh_selector.
4067 setValue(&I, DAG.getConstant(1, VT));
4068 }
4069
4070 return 0;
4071 }
4072
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004073 case Intrinsic::eh_return_i32:
4074 case Intrinsic::eh_return_i64:
4075 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004076 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004077 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004078 MVT::Other,
4079 getControlRoot(),
4080 getValue(I.getOperand(1)),
4081 getValue(I.getOperand(2))));
4082 } else {
4083 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4084 }
4085
4086 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004087 case Intrinsic::eh_unwind_init:
4088 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4089 MMI->setCallsUnwindInit(true);
4090 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004091
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004092 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004093
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004094 case Intrinsic::eh_dwarf_cfa: {
4095 MVT VT = getValue(I.getOperand(1)).getValueType();
4096 SDValue CfaArg;
4097 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004098 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004099 TLI.getPointerTy(), getValue(I.getOperand(1)));
4100 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004101 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004102 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004103
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004104 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004105 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004106 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004107 TLI.getPointerTy()),
4108 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004109 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004110 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004111 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004112 TLI.getPointerTy(),
4113 DAG.getConstant(0,
4114 TLI.getPointerTy())),
4115 Offset));
4116 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004117 }
4118
Mon P Wang77cdf302008-11-10 20:54:11 +00004119 case Intrinsic::convertff:
4120 case Intrinsic::convertfsi:
4121 case Intrinsic::convertfui:
4122 case Intrinsic::convertsif:
4123 case Intrinsic::convertuif:
4124 case Intrinsic::convertss:
4125 case Intrinsic::convertsu:
4126 case Intrinsic::convertus:
4127 case Intrinsic::convertuu: {
4128 ISD::CvtCode Code = ISD::CVT_INVALID;
4129 switch (Intrinsic) {
4130 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4131 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4132 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4133 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4134 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4135 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4136 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4137 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4138 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4139 }
4140 MVT DestVT = TLI.getValueType(I.getType());
4141 Value* Op1 = I.getOperand(1);
Dale Johannesena04b7572009-02-03 23:04:43 +00004142 setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1),
Mon P Wang77cdf302008-11-10 20:54:11 +00004143 DAG.getValueType(DestVT),
4144 DAG.getValueType(getValue(Op1).getValueType()),
4145 getValue(I.getOperand(2)),
4146 getValue(I.getOperand(3)),
4147 Code));
4148 return 0;
4149 }
4150
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004151 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004152 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004153 getValue(I.getOperand(1)).getValueType(),
4154 getValue(I.getOperand(1))));
4155 return 0;
4156 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004157 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004158 getValue(I.getOperand(1)).getValueType(),
4159 getValue(I.getOperand(1)),
4160 getValue(I.getOperand(2))));
4161 return 0;
4162 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004163 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004164 getValue(I.getOperand(1)).getValueType(),
4165 getValue(I.getOperand(1))));
4166 return 0;
4167 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004168 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004169 getValue(I.getOperand(1)).getValueType(),
4170 getValue(I.getOperand(1))));
4171 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004172 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004173 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004174 return 0;
4175 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004176 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004177 return 0;
4178 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004179 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004180 return 0;
4181 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004182 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004183 return 0;
4184 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004185 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004186 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004187 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004188 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004189 return 0;
4190 case Intrinsic::pcmarker: {
4191 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004192 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004193 return 0;
4194 }
4195 case Intrinsic::readcyclecounter: {
4196 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004197 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004198 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
4199 &Op, 1);
4200 setValue(&I, Tmp);
4201 DAG.setRoot(Tmp.getValue(1));
4202 return 0;
4203 }
4204 case Intrinsic::part_select: {
4205 // Currently not implemented: just abort
4206 assert(0 && "part_select intrinsic not implemented");
4207 abort();
4208 }
4209 case Intrinsic::part_set: {
4210 // Currently not implemented: just abort
4211 assert(0 && "part_set intrinsic not implemented");
4212 abort();
4213 }
4214 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004215 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004216 getValue(I.getOperand(1)).getValueType(),
4217 getValue(I.getOperand(1))));
4218 return 0;
4219 case Intrinsic::cttz: {
4220 SDValue Arg = getValue(I.getOperand(1));
4221 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004222 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004223 setValue(&I, result);
4224 return 0;
4225 }
4226 case Intrinsic::ctlz: {
4227 SDValue Arg = getValue(I.getOperand(1));
4228 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004229 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004230 setValue(&I, result);
4231 return 0;
4232 }
4233 case Intrinsic::ctpop: {
4234 SDValue Arg = getValue(I.getOperand(1));
4235 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004236 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004237 setValue(&I, result);
4238 return 0;
4239 }
4240 case Intrinsic::stacksave: {
4241 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004242 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004243 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
4244 setValue(&I, Tmp);
4245 DAG.setRoot(Tmp.getValue(1));
4246 return 0;
4247 }
4248 case Intrinsic::stackrestore: {
4249 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004250 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004251 return 0;
4252 }
Bill Wendling57344502008-11-18 11:01:33 +00004253 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004254 // Emit code into the DAG to store the stack guard onto the stack.
4255 MachineFunction &MF = DAG.getMachineFunction();
4256 MachineFrameInfo *MFI = MF.getFrameInfo();
4257 MVT PtrTy = TLI.getPointerTy();
4258
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004259 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4260 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004261
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004262 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004263 MFI->setStackProtectorIndex(FI);
4264
4265 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4266
4267 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004268 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004269 PseudoSourceValue::getFixedStack(FI),
4270 0, true);
4271 setValue(&I, Result);
4272 DAG.setRoot(Result);
4273 return 0;
4274 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004275 case Intrinsic::var_annotation:
4276 // Discard annotate attributes
4277 return 0;
4278
4279 case Intrinsic::init_trampoline: {
4280 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4281
4282 SDValue Ops[6];
4283 Ops[0] = getRoot();
4284 Ops[1] = getValue(I.getOperand(1));
4285 Ops[2] = getValue(I.getOperand(2));
4286 Ops[3] = getValue(I.getOperand(3));
4287 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4288 Ops[5] = DAG.getSrcValue(F);
4289
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004290 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004291 DAG.getNodeValueTypes(TLI.getPointerTy(),
4292 MVT::Other), 2,
4293 Ops, 6);
4294
4295 setValue(&I, Tmp);
4296 DAG.setRoot(Tmp.getValue(1));
4297 return 0;
4298 }
4299
4300 case Intrinsic::gcroot:
4301 if (GFI) {
4302 Value *Alloca = I.getOperand(1);
4303 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004304
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004305 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4306 GFI->addStackRoot(FI->getIndex(), TypeMap);
4307 }
4308 return 0;
4309
4310 case Intrinsic::gcread:
4311 case Intrinsic::gcwrite:
4312 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4313 return 0;
4314
4315 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004316 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004317 return 0;
4318 }
4319
4320 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004321 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004322 return 0;
4323 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004324
Bill Wendlingef375462008-11-21 02:38:44 +00004325 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004326 return implVisitAluOverflow(I, ISD::UADDO);
4327 case Intrinsic::sadd_with_overflow:
4328 return implVisitAluOverflow(I, ISD::SADDO);
4329 case Intrinsic::usub_with_overflow:
4330 return implVisitAluOverflow(I, ISD::USUBO);
4331 case Intrinsic::ssub_with_overflow:
4332 return implVisitAluOverflow(I, ISD::SSUBO);
4333 case Intrinsic::umul_with_overflow:
4334 return implVisitAluOverflow(I, ISD::UMULO);
4335 case Intrinsic::smul_with_overflow:
4336 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004337
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 case Intrinsic::prefetch: {
4339 SDValue Ops[4];
4340 Ops[0] = getRoot();
4341 Ops[1] = getValue(I.getOperand(1));
4342 Ops[2] = getValue(I.getOperand(2));
4343 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004344 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004345 return 0;
4346 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004347
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004348 case Intrinsic::memory_barrier: {
4349 SDValue Ops[6];
4350 Ops[0] = getRoot();
4351 for (int x = 1; x < 6; ++x)
4352 Ops[x] = getValue(I.getOperand(x));
4353
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004354 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004355 return 0;
4356 }
4357 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004358 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004359 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004360 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004361 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4362 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004363 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004364 getValue(I.getOperand(2)),
4365 getValue(I.getOperand(3)),
4366 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004367 setValue(&I, L);
4368 DAG.setRoot(L.getValue(1));
4369 return 0;
4370 }
4371 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004372 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004373 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004374 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004375 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004376 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004377 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004378 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004379 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004380 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004381 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004382 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004383 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004384 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004385 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004386 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004387 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004388 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004389 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004390 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004391 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004392 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004393 }
4394}
4395
4396
4397void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4398 bool IsTailCall,
4399 MachineBasicBlock *LandingPad) {
4400 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4401 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4402 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4403 unsigned BeginLabel = 0, EndLabel = 0;
4404
4405 TargetLowering::ArgListTy Args;
4406 TargetLowering::ArgListEntry Entry;
4407 Args.reserve(CS.arg_size());
4408 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4409 i != e; ++i) {
4410 SDValue ArgNode = getValue(*i);
4411 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4412
4413 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004414 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4415 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4416 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4417 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4418 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4419 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004420 Entry.Alignment = CS.getParamAlignment(attrInd);
4421 Args.push_back(Entry);
4422 }
4423
4424 if (LandingPad && MMI) {
4425 // Insert a label before the invoke call to mark the try range. This can be
4426 // used to detect deletion of the invoke via the MachineModuleInfo.
4427 BeginLabel = MMI->NextLabelID();
4428 // Both PendingLoads and PendingExports must be flushed here;
4429 // this call might not return.
4430 (void)getRoot();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004431 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4432 getControlRoot(), BeginLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004433 }
4434
4435 std::pair<SDValue,SDValue> Result =
4436 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004437 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004438 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
4439 CS.paramHasAttr(0, Attribute::InReg),
4440 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004441 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004442 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004443 if (CS.getType() != Type::VoidTy)
4444 setValue(CS.getInstruction(), Result.first);
4445 DAG.setRoot(Result.second);
4446
4447 if (LandingPad && MMI) {
4448 // Insert a label at the end of the invoke call to mark the try range. This
4449 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4450 EndLabel = MMI->NextLabelID();
Dale Johannesen8ad9b432009-02-04 01:17:06 +00004451 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(),
4452 getRoot(), EndLabel));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004453
4454 // Inform MachineModuleInfo of range.
4455 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4456 }
4457}
4458
4459
4460void SelectionDAGLowering::visitCall(CallInst &I) {
4461 const char *RenameFn = 0;
4462 if (Function *F = I.getCalledFunction()) {
4463 if (F->isDeclaration()) {
Dale Johannesen49de9822009-02-05 01:49:45 +00004464 const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo();
4465 if (II) {
4466 if (unsigned IID = II->getIntrinsicID(F)) {
4467 RenameFn = visitIntrinsicCall(I, IID);
4468 if (!RenameFn)
4469 return;
4470 }
4471 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004472 if (unsigned IID = F->getIntrinsicID()) {
4473 RenameFn = visitIntrinsicCall(I, IID);
4474 if (!RenameFn)
4475 return;
4476 }
4477 }
4478
4479 // Check for well-known libc/libm calls. If the function is internal, it
4480 // can't be a library call.
4481 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004482 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004483 const char *NameStr = F->getNameStart();
4484 if (NameStr[0] == 'c' &&
4485 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4486 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4487 if (I.getNumOperands() == 3 && // Basic sanity checks.
4488 I.getOperand(1)->getType()->isFloatingPoint() &&
4489 I.getType() == I.getOperand(1)->getType() &&
4490 I.getType() == I.getOperand(2)->getType()) {
4491 SDValue LHS = getValue(I.getOperand(1));
4492 SDValue RHS = getValue(I.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004493 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004494 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004495 return;
4496 }
4497 } else if (NameStr[0] == 'f' &&
4498 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4499 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4500 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4501 if (I.getNumOperands() == 2 && // Basic sanity checks.
4502 I.getOperand(1)->getType()->isFloatingPoint() &&
4503 I.getType() == I.getOperand(1)->getType()) {
4504 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004505 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004506 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004507 return;
4508 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004509 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004510 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4511 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4512 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4513 if (I.getNumOperands() == 2 && // Basic sanity checks.
4514 I.getOperand(1)->getType()->isFloatingPoint() &&
4515 I.getType() == I.getOperand(1)->getType()) {
4516 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004517 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004518 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004519 return;
4520 }
4521 } else if (NameStr[0] == 'c' &&
4522 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4523 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4524 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4525 if (I.getNumOperands() == 2 && // Basic sanity checks.
4526 I.getOperand(1)->getType()->isFloatingPoint() &&
4527 I.getType() == I.getOperand(1)->getType()) {
4528 SDValue Tmp = getValue(I.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004529 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004530 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004531 return;
4532 }
4533 }
4534 }
4535 } else if (isa<InlineAsm>(I.getOperand(0))) {
4536 visitInlineAsm(&I);
4537 return;
4538 }
4539
4540 SDValue Callee;
4541 if (!RenameFn)
4542 Callee = getValue(I.getOperand(0));
4543 else
Bill Wendling056292f2008-09-16 21:48:12 +00004544 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004545
4546 LowerCallTo(&I, Callee, I.isTailCall());
4547}
4548
4549
4550/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004551/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004552/// Chain/Flag as the input and updates them for the output Chain/Flag.
4553/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004554SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004555 SDValue &Chain,
4556 SDValue *Flag) const {
4557 // Assemble the legal parts into the final values.
4558 SmallVector<SDValue, 4> Values(ValueVTs.size());
4559 SmallVector<SDValue, 8> Parts;
4560 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4561 // Copy the legal parts from the registers.
4562 MVT ValueVT = ValueVTs[Value];
4563 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4564 MVT RegisterVT = RegVTs[Value];
4565
4566 Parts.resize(NumRegs);
4567 for (unsigned i = 0; i != NumRegs; ++i) {
4568 SDValue P;
4569 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004570 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004571 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004572 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004573 *Flag = P.getValue(2);
4574 }
4575 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004576
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004577 // If the source register was virtual and if we know something about it,
4578 // add an assert node.
4579 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4580 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4581 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4582 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4583 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4584 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004585
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004586 unsigned RegSize = RegisterVT.getSizeInBits();
4587 unsigned NumSignBits = LOI.NumSignBits;
4588 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004589
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004590 // FIXME: We capture more information than the dag can represent. For
4591 // now, just use the tightest assertzext/assertsext possible.
4592 bool isSExt = true;
4593 MVT FromVT(MVT::Other);
4594 if (NumSignBits == RegSize)
4595 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4596 else if (NumZeroBits >= RegSize-1)
4597 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4598 else if (NumSignBits > RegSize-8)
4599 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
Dan Gohman07c26ee2009-03-31 01:38:29 +00004600 else if (NumZeroBits >= RegSize-8)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004601 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4602 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004603 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohman07c26ee2009-03-31 01:38:29 +00004604 else if (NumZeroBits >= RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004605 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004606 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004607 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohman07c26ee2009-03-31 01:38:29 +00004608 else if (NumZeroBits >= RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004609 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004610
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004611 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004612 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004613 RegisterVT, P, DAG.getValueType(FromVT));
4614
4615 }
4616 }
4617 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004618
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004619 Parts[i] = P;
4620 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004621
Scott Michelfdc40a02009-02-17 22:15:04 +00004622 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00004623 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004624 Part += NumRegs;
4625 Parts.clear();
4626 }
4627
Dale Johannesen66978ee2009-01-31 02:22:37 +00004628 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004629 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4630 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004631}
4632
4633/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004634/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004635/// Chain/Flag as the input and updates them for the output Chain/Flag.
4636/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004637void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004638 SDValue &Chain, SDValue *Flag) const {
4639 // Get the list of the values's legal parts.
4640 unsigned NumRegs = Regs.size();
4641 SmallVector<SDValue, 8> Parts(NumRegs);
4642 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4643 MVT ValueVT = ValueVTs[Value];
4644 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4645 MVT RegisterVT = RegVTs[Value];
4646
Dale Johannesen66978ee2009-01-31 02:22:37 +00004647 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004648 &Parts[Part], NumParts, RegisterVT);
4649 Part += NumParts;
4650 }
4651
4652 // Copy the parts into the registers.
4653 SmallVector<SDValue, 8> Chains(NumRegs);
4654 for (unsigned i = 0; i != NumRegs; ++i) {
4655 SDValue Part;
4656 if (Flag == 0)
Dale Johannesena04b7572009-02-03 23:04:43 +00004657 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004658 else {
Dale Johannesena04b7572009-02-03 23:04:43 +00004659 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004660 *Flag = Part.getValue(1);
4661 }
4662 Chains[i] = Part.getValue(0);
4663 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004664
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004665 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004666 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004667 // flagged to it. That is the CopyToReg nodes and the user are considered
4668 // a single scheduling unit. If we create a TokenFactor and return it as
4669 // chain, then the TokenFactor is both a predecessor (operand) of the
4670 // user as well as a successor (the TF operands are flagged to the user).
4671 // c1, f1 = CopyToReg
4672 // c2, f2 = CopyToReg
4673 // c3 = TokenFactor c1, c2
4674 // ...
4675 // = op c3, ..., f2
4676 Chain = Chains[NumRegs-1];
4677 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004678 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004679}
4680
4681/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004682/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004683/// values added into it.
Evan Cheng697cbbf2009-03-20 18:03:34 +00004684void RegsForValue::AddInlineAsmOperands(unsigned Code,
4685 bool HasMatching,unsigned MatchingIdx,
4686 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004687 std::vector<SDValue> &Ops) const {
4688 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
Evan Cheng697cbbf2009-03-20 18:03:34 +00004689 assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!");
4690 unsigned Flag = Code | (Regs.size() << 3);
4691 if (HasMatching)
4692 Flag |= 0x80000000 | (MatchingIdx << 16);
4693 Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004694 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4695 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4696 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004697 for (unsigned i = 0; i != NumRegs; ++i) {
4698 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004699 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004700 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004701 }
4702}
4703
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004704/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004705/// i.e. it isn't a stack pointer or some other special register, return the
4706/// register class for the register. Otherwise, return null.
4707static const TargetRegisterClass *
4708isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4709 const TargetLowering &TLI,
4710 const TargetRegisterInfo *TRI) {
4711 MVT FoundVT = MVT::Other;
4712 const TargetRegisterClass *FoundRC = 0;
4713 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4714 E = TRI->regclass_end(); RCI != E; ++RCI) {
4715 MVT ThisVT = MVT::Other;
4716
4717 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004718 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004719 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4720 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4721 I != E; ++I) {
4722 if (TLI.isTypeLegal(*I)) {
4723 // If we have already found this register in a different register class,
4724 // choose the one with the largest VT specified. For example, on
4725 // PowerPC, we favor f64 register classes over f32.
4726 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4727 ThisVT = *I;
4728 break;
4729 }
4730 }
4731 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004732
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004733 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004734
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004735 // NOTE: This isn't ideal. In particular, this might allocate the
4736 // frame pointer in functions that need it (due to them not being taken
4737 // out of allocation, because a variable sized allocation hasn't been seen
4738 // yet). This is a slight code pessimization, but should still work.
4739 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4740 E = RC->allocation_order_end(MF); I != E; ++I)
4741 if (*I == Reg) {
4742 // We found a matching register class. Keep looking at others in case
4743 // we find one with larger registers that this physreg is also in.
4744 FoundRC = RC;
4745 FoundVT = ThisVT;
4746 break;
4747 }
4748 }
4749 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004750}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004751
4752
4753namespace llvm {
4754/// AsmOperandInfo - This contains information for each constraint that we are
4755/// lowering.
Cedric Venetaff9c272009-02-14 16:06:42 +00004756class VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004757 public TargetLowering::AsmOperandInfo {
Cedric Venetaff9c272009-02-14 16:06:42 +00004758public:
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004759 /// CallOperand - If this is the result output operand or a clobber
4760 /// this is null, otherwise it is the incoming operand to the CallInst.
4761 /// This gets modified as the asm is processed.
4762 SDValue CallOperand;
4763
4764 /// AssignedRegs - If this is a register or register class operand, this
4765 /// contains the set of register corresponding to the operand.
4766 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004767
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004768 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4769 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4770 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004771
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004772 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4773 /// busy in OutputRegs/InputRegs.
4774 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004775 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004776 std::set<unsigned> &InputRegs,
4777 const TargetRegisterInfo &TRI) const {
4778 if (isOutReg) {
4779 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4780 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4781 }
4782 if (isInReg) {
4783 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4784 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4785 }
4786 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004787
Chris Lattner81249c92008-10-17 17:05:25 +00004788 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4789 /// corresponds to. If there is no Value* for this operand, it returns
4790 /// MVT::Other.
4791 MVT getCallOperandValMVT(const TargetLowering &TLI,
4792 const TargetData *TD) const {
4793 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004794
Chris Lattner81249c92008-10-17 17:05:25 +00004795 if (isa<BasicBlock>(CallOperandVal))
4796 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004797
Chris Lattner81249c92008-10-17 17:05:25 +00004798 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004799
Chris Lattner81249c92008-10-17 17:05:25 +00004800 // If this is an indirect operand, the operand is a pointer to the
4801 // accessed type.
4802 if (isIndirect)
4803 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004804
Chris Lattner81249c92008-10-17 17:05:25 +00004805 // If OpTy is not a single value, it may be a struct/union that we
4806 // can tile with integers.
4807 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4808 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4809 switch (BitSize) {
4810 default: break;
4811 case 1:
4812 case 8:
4813 case 16:
4814 case 32:
4815 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004816 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004817 OpTy = IntegerType::get(BitSize);
4818 break;
4819 }
4820 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004821
Chris Lattner81249c92008-10-17 17:05:25 +00004822 return TLI.getValueType(OpTy, true);
4823 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004824
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004825private:
4826 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4827 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004828 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004829 const TargetRegisterInfo &TRI) {
4830 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4831 Regs.insert(Reg);
4832 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4833 for (; *Aliases; ++Aliases)
4834 Regs.insert(*Aliases);
4835 }
4836};
4837} // end llvm namespace.
4838
4839
4840/// GetRegistersForValue - Assign registers (virtual or physical) for the
4841/// specified operand. We prefer to assign virtual registers, to allow the
4842/// register allocator handle the assignment process. However, if the asm uses
4843/// features that we can't model on machineinstrs, we have SDISel do the
4844/// allocation. This produces generally horrible, but correct, code.
4845///
4846/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004847/// Input and OutputRegs are the set of already allocated physical registers.
4848///
4849void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004850GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004851 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004852 std::set<unsigned> &InputRegs) {
4853 // Compute whether this value requires an input register, an output register,
4854 // or both.
4855 bool isOutReg = false;
4856 bool isInReg = false;
4857 switch (OpInfo.Type) {
4858 case InlineAsm::isOutput:
4859 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004860
4861 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004862 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004863 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004864 break;
4865 case InlineAsm::isInput:
4866 isInReg = true;
4867 isOutReg = false;
4868 break;
4869 case InlineAsm::isClobber:
4870 isOutReg = true;
4871 isInReg = true;
4872 break;
4873 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004874
4875
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004876 MachineFunction &MF = DAG.getMachineFunction();
4877 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004878
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004879 // If this is a constraint for a single physreg, or a constraint for a
4880 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004881 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004882 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4883 OpInfo.ConstraintVT);
4884
4885 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004886 if (OpInfo.ConstraintVT != MVT::Other) {
4887 // If this is a FP input in an integer register (or visa versa) insert a bit
4888 // cast of the input value. More generally, handle any case where the input
4889 // value disagrees with the register class we plan to stick this in.
4890 if (OpInfo.Type == InlineAsm::isInput &&
4891 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4892 // Try to convert to the first MVT that the reg class contains. If the
4893 // types are identical size, use a bitcast to convert (e.g. two differing
4894 // vector types).
4895 MVT RegVT = *PhysReg.second->vt_begin();
4896 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004897 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004898 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004899 OpInfo.ConstraintVT = RegVT;
4900 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4901 // If the input is a FP value and we want it in FP registers, do a
4902 // bitcast to the corresponding integer type. This turns an f64 value
4903 // into i64, which can be passed with two i32 values on a 32-bit
4904 // machine.
4905 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004906 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004907 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004908 OpInfo.ConstraintVT = RegVT;
4909 }
4910 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004911
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004912 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004913 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004914
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004915 MVT RegVT;
4916 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004917
4918 // If this is a constraint for a specific physical register, like {r17},
4919 // assign it now.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004920 if (unsigned AssignedReg = PhysReg.first) {
4921 const TargetRegisterClass *RC = PhysReg.second;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004922 if (OpInfo.ConstraintVT == MVT::Other)
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004923 ValueVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004924
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004925 // Get the actual register value type. This is important, because the user
4926 // may have asked for (e.g.) the AX register in i32 type. We need to
4927 // remember that AX is actually i16 to get the right extension.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004928 RegVT = *RC->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004929
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004930 // This is a explicit reference to a physical register.
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004931 Regs.push_back(AssignedReg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004932
4933 // If this is an expanded reference, add the rest of the regs to Regs.
4934 if (NumRegs != 1) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004935 TargetRegisterClass::iterator I = RC->begin();
4936 for (; *I != AssignedReg; ++I)
4937 assert(I != RC->end() && "Didn't find reg!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004938
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004939 // Already added the first reg.
4940 --NumRegs; ++I;
4941 for (; NumRegs; --NumRegs, ++I) {
Chris Lattnere2f7bf82009-03-24 15:27:37 +00004942 assert(I != RC->end() && "Ran out of registers to allocate!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004943 Regs.push_back(*I);
4944 }
4945 }
4946 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4947 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4948 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4949 return;
4950 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004951
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004952 // Otherwise, if this was a reference to an LLVM register class, create vregs
4953 // for this reference.
Chris Lattnerb3b44842009-03-24 15:25:07 +00004954 if (const TargetRegisterClass *RC = PhysReg.second) {
4955 RegVT = *RC->vt_begin();
Evan Chengfb112882009-03-23 08:01:15 +00004956 if (OpInfo.ConstraintVT == MVT::Other)
4957 ValueVT = RegVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004958
Evan Chengfb112882009-03-23 08:01:15 +00004959 // Create the appropriate number of virtual registers.
4960 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4961 for (; NumRegs; --NumRegs)
Chris Lattnerb3b44842009-03-24 15:25:07 +00004962 Regs.push_back(RegInfo.createVirtualRegister(RC));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004963
Evan Chengfb112882009-03-23 08:01:15 +00004964 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4965 return;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004966 }
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004967
4968 // This is a reference to a register class that doesn't directly correspond
4969 // to an LLVM register class. Allocate NumRegs consecutive, available,
4970 // registers from the class.
4971 std::vector<unsigned> RegClassRegs
4972 = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4973 OpInfo.ConstraintVT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004974
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004975 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4976 unsigned NumAllocated = 0;
4977 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4978 unsigned Reg = RegClassRegs[i];
4979 // See if this register is available.
4980 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4981 (isInReg && InputRegs.count(Reg))) { // Already used.
4982 // Make sure we find consecutive registers.
4983 NumAllocated = 0;
4984 continue;
4985 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004986
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004987 // Check to see if this register is allocatable (i.e. don't give out the
4988 // stack pointer).
Chris Lattnerfc9d1612009-03-24 15:22:11 +00004989 const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4990 if (!RC) { // Couldn't allocate this register.
4991 // Reset NumAllocated to make sure we return consecutive registers.
4992 NumAllocated = 0;
4993 continue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004994 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004995
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004996 // Okay, this register is good, we can use it.
4997 ++NumAllocated;
4998
4999 // If we allocated enough consecutive registers, succeed.
5000 if (NumAllocated == NumRegs) {
5001 unsigned RegStart = (i-NumAllocated)+1;
5002 unsigned RegEnd = i+1;
5003 // Mark all of the allocated registers used.
5004 for (unsigned i = RegStart; i != RegEnd; ++i)
5005 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005006
5007 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005008 OpInfo.ConstraintVT);
5009 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
5010 return;
5011 }
5012 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005013
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005014 // Otherwise, we couldn't allocate enough registers for this.
5015}
5016
Evan Chengda43bcf2008-09-24 00:05:32 +00005017/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
5018/// processed uses a memory 'm' constraint.
5019static bool
5020hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00005021 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00005022 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
5023 InlineAsm::ConstraintInfo &CI = CInfos[i];
5024 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
5025 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
5026 if (CType == TargetLowering::C_Memory)
5027 return true;
5028 }
5029 }
5030
5031 return false;
5032}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005033
5034/// visitInlineAsm - Handle a call to an InlineAsm object.
5035///
5036void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
5037 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
5038
5039 /// ConstraintOperands - Information about all of the constraints.
5040 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005041
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005042 SDValue Chain = getRoot();
5043 SDValue Flag;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005044
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005045 std::set<unsigned> OutputRegs, InputRegs;
5046
5047 // Do a prepass over the constraints, canonicalizing them, and building up the
5048 // ConstraintOperands list.
5049 std::vector<InlineAsm::ConstraintInfo>
5050 ConstraintInfos = IA->ParseConstraints();
5051
Evan Chengda43bcf2008-09-24 00:05:32 +00005052 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005053
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005054 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5055 unsigned ResNo = 0; // ResNo - The result number of the next output.
5056 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5057 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5058 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005059
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005060 MVT OpVT = MVT::Other;
5061
5062 // Compute the value type for each operand.
5063 switch (OpInfo.Type) {
5064 case InlineAsm::isOutput:
5065 // Indirect outputs just consume an argument.
5066 if (OpInfo.isIndirect) {
5067 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5068 break;
5069 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005070
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005071 // The return value of the call is this value. As such, there is no
5072 // corresponding argument.
5073 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5074 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5075 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5076 } else {
5077 assert(ResNo == 0 && "Asm only has one result!");
5078 OpVT = TLI.getValueType(CS.getType());
5079 }
5080 ++ResNo;
5081 break;
5082 case InlineAsm::isInput:
5083 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5084 break;
5085 case InlineAsm::isClobber:
5086 // Nothing to do.
5087 break;
5088 }
5089
5090 // If this is an input or an indirect output, process the call argument.
5091 // BasicBlocks are labels, currently appearing only in asm's.
5092 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005093 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005094 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005095 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005096 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005097 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005098
Chris Lattner81249c92008-10-17 17:05:25 +00005099 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005100 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005101
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005102 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005103 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005104
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005105 // Second pass over the constraints: compute which constraint option to use
5106 // and assign registers to constraints that want a specific physreg.
5107 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5108 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005109
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005110 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005111 // matching input. If their types mismatch, e.g. one is an integer, the
5112 // other is floating point, or their sizes are different, flag it as an
5113 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005114 if (OpInfo.hasMatchingInput()) {
5115 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5116 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005117 if ((OpInfo.ConstraintVT.isInteger() !=
5118 Input.ConstraintVT.isInteger()) ||
5119 (OpInfo.ConstraintVT.getSizeInBits() !=
5120 Input.ConstraintVT.getSizeInBits())) {
5121 cerr << "Unsupported asm: input constraint with a matching output "
5122 << "constraint of incompatible type!\n";
5123 exit(1);
5124 }
5125 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005126 }
5127 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005128
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005129 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005130 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005131
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005132 // If this is a memory input, and if the operand is not indirect, do what we
5133 // need to to provide an address for the memory input.
5134 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5135 !OpInfo.isIndirect) {
5136 assert(OpInfo.Type == InlineAsm::isInput &&
5137 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005138
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005139 // Memory operands really want the address of the value. If we don't have
5140 // an indirect input, put it in the constpool if we can, otherwise spill
5141 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005142
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005143 // If the operand is a float, integer, or vector constant, spill to a
5144 // constant pool entry to get its address.
5145 Value *OpVal = OpInfo.CallOperandVal;
5146 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5147 isa<ConstantVector>(OpVal)) {
5148 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5149 TLI.getPointerTy());
5150 } else {
5151 // Otherwise, create a stack slot and emit a store to it before the
5152 // asm.
5153 const Type *Ty = OpVal->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005154 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005155 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5156 MachineFunction &MF = DAG.getMachineFunction();
5157 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5158 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005159 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005160 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005161 OpInfo.CallOperand = StackSlot;
5162 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005163
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005164 // There is no longer a Value* corresponding to this operand.
5165 OpInfo.CallOperandVal = 0;
5166 // It is now an indirect operand.
5167 OpInfo.isIndirect = true;
5168 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005169
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005170 // If this constraint is for a specific register, allocate it before
5171 // anything else.
5172 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005173 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005174 }
5175 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005176
5177
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005178 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005179 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005180 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5181 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005182
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005183 // C_Register operands have already been allocated, Other/Memory don't need
5184 // to be.
5185 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005186 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005187 }
5188
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005189 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5190 std::vector<SDValue> AsmNodeOperands;
5191 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5192 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005193 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005194
5195
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005196 // Loop over all of the inputs, copying the operand values into the
5197 // appropriate registers and processing the output regs.
5198 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005199
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005200 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5201 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005202
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005203 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5204 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5205
5206 switch (OpInfo.Type) {
5207 case InlineAsm::isOutput: {
5208 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5209 OpInfo.ConstraintType != TargetLowering::C_Register) {
5210 // Memory output, or 'other' output (e.g. 'X' constraint).
5211 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5212
5213 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005214 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5215 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005216 TLI.getPointerTy()));
5217 AsmNodeOperands.push_back(OpInfo.CallOperand);
5218 break;
5219 }
5220
5221 // Otherwise, this is a register or register class output.
5222
5223 // Copy the output from the appropriate register. Find a register that
5224 // we can use.
5225 if (OpInfo.AssignedRegs.Regs.empty()) {
5226 cerr << "Couldn't allocate output reg for constraint '"
5227 << OpInfo.ConstraintCode << "'!\n";
5228 exit(1);
5229 }
5230
5231 // If this is an indirect operand, store through the pointer after the
5232 // asm.
5233 if (OpInfo.isIndirect) {
5234 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5235 OpInfo.CallOperandVal));
5236 } else {
5237 // This is the result value of the call.
5238 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5239 // Concatenate this output onto the outputs list.
5240 RetValRegs.append(OpInfo.AssignedRegs);
5241 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005242
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005243 // Add information to the INLINEASM node to know that this register is
5244 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005245 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5246 6 /* EARLYCLOBBER REGDEF */ :
5247 2 /* REGDEF */ ,
Evan Chengfb112882009-03-23 08:01:15 +00005248 false,
5249 0,
Dale Johannesen913d3df2008-09-12 17:49:03 +00005250 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005251 break;
5252 }
5253 case InlineAsm::isInput: {
5254 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005255
Chris Lattner6bdcda32008-10-17 16:47:46 +00005256 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005257 // If this is required to match an output register we have already set,
5258 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005259 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005260
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005261 // Scan until we find the definition we already emitted of this operand.
5262 // When we find it, create a RegsForValue operand.
5263 unsigned CurOp = 2; // The first operand.
5264 for (; OperandNo; --OperandNo) {
5265 // Advance to the next operand.
Evan Cheng697cbbf2009-03-20 18:03:34 +00005266 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005267 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005268 assert(((OpFlag & 7) == 2 /*REGDEF*/ ||
5269 (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
5270 (OpFlag & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005271 "Skipped past definitions?");
Evan Cheng697cbbf2009-03-20 18:03:34 +00005272 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005273 }
5274
Evan Cheng697cbbf2009-03-20 18:03:34 +00005275 unsigned OpFlag =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005276 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005277 if ((OpFlag & 7) == 2 /*REGDEF*/
5278 || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) {
5279 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005280 RegsForValue MatchedRegs;
5281 MatchedRegs.TLI = &TLI;
5282 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
Evan Chengfb112882009-03-23 08:01:15 +00005283 MVT RegVT = AsmNodeOperands[CurOp+1].getValueType();
5284 MatchedRegs.RegVTs.push_back(RegVT);
5285 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo();
Evan Cheng697cbbf2009-03-20 18:03:34 +00005286 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag);
Evan Chengfb112882009-03-23 08:01:15 +00005287 i != e; ++i)
5288 MatchedRegs.Regs.
5289 push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT)));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005290
5291 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005292 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5293 Chain, &Flag);
Evan Chengfb112882009-03-23 08:01:15 +00005294 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/,
5295 true, OpInfo.getMatchedOperand(),
Evan Cheng697cbbf2009-03-20 18:03:34 +00005296 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005297 break;
5298 } else {
Evan Cheng697cbbf2009-03-20 18:03:34 +00005299 assert(((OpFlag & 7) == 4) && "Unknown matching constraint!");
5300 assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 &&
5301 "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005302 // Add information to the INLINEASM node to know about this input.
Evan Chengfb112882009-03-23 08:01:15 +00005303 // See InlineAsm.h isUseOperandTiedToDef.
5304 OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16);
Evan Cheng697cbbf2009-03-20 18:03:34 +00005305 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005306 TLI.getPointerTy()));
5307 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5308 break;
5309 }
5310 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005311
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005312 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005313 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005314 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005315
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005316 std::vector<SDValue> Ops;
5317 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005318 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005319 if (Ops.empty()) {
5320 cerr << "Invalid operand for inline asm constraint '"
5321 << OpInfo.ConstraintCode << "'!\n";
5322 exit(1);
5323 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005324
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005325 // Add information to the INLINEASM node to know about this input.
5326 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005327 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005328 TLI.getPointerTy()));
5329 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5330 break;
5331 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5332 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5333 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5334 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005335
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005336 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005337 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5338 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005339 TLI.getPointerTy()));
5340 AsmNodeOperands.push_back(InOperandVal);
5341 break;
5342 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005343
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005344 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5345 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5346 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005347 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005348 "Don't know how to handle indirect register inputs yet!");
5349
5350 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005351 if (OpInfo.AssignedRegs.Regs.empty()) {
5352 cerr << "Couldn't allocate output reg for constraint '"
5353 << OpInfo.ConstraintCode << "'!\n";
5354 exit(1);
5355 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005356
Dale Johannesen66978ee2009-01-31 02:22:37 +00005357 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5358 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005359
Evan Cheng697cbbf2009-03-20 18:03:34 +00005360 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0,
Dale Johannesen86b49f82008-09-24 01:07:17 +00005361 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005362 break;
5363 }
5364 case InlineAsm::isClobber: {
5365 // Add the clobbered value to the operand list, so that the register
5366 // allocator is aware that the physreg got clobbered.
5367 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005368 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
Evan Cheng697cbbf2009-03-20 18:03:34 +00005369 false, 0, DAG,AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005370 break;
5371 }
5372 }
5373 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005374
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005375 // Finish up input operands.
5376 AsmNodeOperands[0] = Chain;
5377 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005378
Dale Johannesen66978ee2009-01-31 02:22:37 +00005379 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005380 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
5381 &AsmNodeOperands[0], AsmNodeOperands.size());
5382 Flag = Chain.getValue(1);
5383
5384 // If this asm returns a register value, copy the result from that register
5385 // and set it as the value of the call.
5386 if (!RetValRegs.Regs.empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005387 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005388 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005389
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005390 // FIXME: Why don't we do this for inline asms with MRVs?
5391 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5392 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005393
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005394 // If any of the results of the inline asm is a vector, it may have the
5395 // wrong width/num elts. This can happen for register classes that can
5396 // contain multiple different value types. The preg or vreg allocated may
5397 // not have the same VT as was expected. Convert it to the right type
5398 // with bit_convert.
5399 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005400 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005401 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005402
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005403 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005404 ResultType.isInteger() && Val.getValueType().isInteger()) {
5405 // If a result value was tied to an input value, the computed result may
5406 // have a wider width than the expected result. Extract the relevant
5407 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005408 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005409 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005410
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005411 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005412 }
Dan Gohman95915732008-10-18 01:03:45 +00005413
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005414 setValue(CS.getInstruction(), Val);
5415 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005416
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005417 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005418
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005419 // Process indirect outputs, first output all of the flagged copies out of
5420 // physregs.
5421 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5422 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5423 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005424 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5425 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005426 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
5427 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005428
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005429 // Emit the non-flagged stores from the physregs.
5430 SmallVector<SDValue, 8> OutChains;
5431 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005432 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005433 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005434 getValue(StoresToEmit[i].second),
5435 StoresToEmit[i].second, 0));
5436 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005437 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005438 &OutChains[0], OutChains.size());
5439 DAG.setRoot(Chain);
5440}
5441
5442
5443void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5444 SDValue Src = getValue(I.getOperand(0));
5445
Chris Lattner0b18e592009-03-17 19:36:00 +00005446 // Scale up by the type size in the original i32 type width. Various
5447 // mid-level optimizers may make assumptions about demanded bits etc from the
5448 // i32-ness of the optimizer: we do not want to promote to i64 and then
5449 // multiply on 64-bit targets.
5450 // FIXME: Malloc inst should go away: PR715.
5451 uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType());
5452 if (ElementSize != 1)
5453 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
5454 Src, DAG.getConstant(ElementSize, Src.getValueType()));
5455
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005456 MVT IntPtr = TLI.getPointerTy();
5457
5458 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005459 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005460 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005461 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005462
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005463 TargetLowering::ArgListTy Args;
5464 TargetLowering::ArgListEntry Entry;
5465 Entry.Node = Src;
5466 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5467 Args.push_back(Entry);
5468
5469 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005470 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005471 CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005472 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005473 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005474 setValue(&I, Result.first); // Pointers always fit in registers
5475 DAG.setRoot(Result.second);
5476}
5477
5478void SelectionDAGLowering::visitFree(FreeInst &I) {
5479 TargetLowering::ArgListTy Args;
5480 TargetLowering::ArgListEntry Entry;
5481 Entry.Node = getValue(I.getOperand(0));
5482 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5483 Args.push_back(Entry);
5484 MVT IntPtr = TLI.getPointerTy();
5485 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005486 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Dan Gohman1937e2f2008-09-16 01:42:28 +00005487 CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005488 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005489 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005490 DAG.setRoot(Result.second);
5491}
5492
5493void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005494 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005495 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005496 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005497 DAG.getSrcValue(I.getOperand(1))));
5498}
5499
5500void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
Dale Johannesena04b7572009-02-03 23:04:43 +00005501 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(),
5502 getRoot(), getValue(I.getOperand(0)),
5503 DAG.getSrcValue(I.getOperand(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005504 setValue(&I, V);
5505 DAG.setRoot(V.getValue(1));
5506}
5507
5508void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005509 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005510 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005511 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005512 DAG.getSrcValue(I.getOperand(1))));
5513}
5514
5515void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005516 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005517 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005518 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005519 getValue(I.getOperand(2)),
5520 DAG.getSrcValue(I.getOperand(1)),
5521 DAG.getSrcValue(I.getOperand(2))));
5522}
5523
5524/// TargetLowering::LowerArguments - This is the default LowerArguments
5525/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005526/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005527/// integrated into SDISel.
5528void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005529 SmallVectorImpl<SDValue> &ArgValues,
5530 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005531 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5532 SmallVector<SDValue, 3+16> Ops;
5533 Ops.push_back(DAG.getRoot());
5534 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5535 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5536
5537 // Add one result value for each formal argument.
5538 SmallVector<MVT, 16> RetVals;
5539 unsigned j = 1;
5540 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5541 I != E; ++I, ++j) {
5542 SmallVector<MVT, 4> ValueVTs;
5543 ComputeValueVTs(*this, I->getType(), ValueVTs);
5544 for (unsigned Value = 0, NumValues = ValueVTs.size();
5545 Value != NumValues; ++Value) {
5546 MVT VT = ValueVTs[Value];
5547 const Type *ArgTy = VT.getTypeForMVT();
5548 ISD::ArgFlagsTy Flags;
5549 unsigned OriginalAlignment =
5550 getTargetData()->getABITypeAlignment(ArgTy);
5551
Devang Patel05988662008-09-25 21:00:45 +00005552 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005553 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005554 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005555 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005556 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005557 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005558 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005559 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005560 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005561 Flags.setByVal();
5562 const PointerType *Ty = cast<PointerType>(I->getType());
5563 const Type *ElementTy = Ty->getElementType();
5564 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005565 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005566 // For ByVal, alignment should be passed from FE. BE will guess if
5567 // this info is not there but there are cases it cannot get right.
5568 if (F.getParamAlignment(j))
5569 FrameAlign = F.getParamAlignment(j);
5570 Flags.setByValAlign(FrameAlign);
5571 Flags.setByValSize(FrameSize);
5572 }
Devang Patel05988662008-09-25 21:00:45 +00005573 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005574 Flags.setNest();
5575 Flags.setOrigAlign(OriginalAlignment);
5576
5577 MVT RegisterVT = getRegisterType(VT);
5578 unsigned NumRegs = getNumRegisters(VT);
5579 for (unsigned i = 0; i != NumRegs; ++i) {
5580 RetVals.push_back(RegisterVT);
5581 ISD::ArgFlagsTy MyFlags = Flags;
5582 if (NumRegs > 1 && i == 0)
5583 MyFlags.setSplit();
5584 // if it isn't first piece, alignment must be 1
5585 else if (i > 0)
5586 MyFlags.setOrigAlign(1);
5587 Ops.push_back(DAG.getArgFlags(MyFlags));
5588 }
5589 }
5590 }
5591
5592 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005593
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005594 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005595 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005596 DAG.getVTList(&RetVals[0], RetVals.size()),
5597 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005598
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005599 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5600 // allows exposing the loads that may be part of the argument access to the
5601 // first DAGCombiner pass.
5602 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005603
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005604 // The number of results should match up, except that the lowered one may have
5605 // an extra flag result.
5606 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5607 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5608 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5609 && "Lowering produced unexpected number of results!");
5610
5611 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5612 if (Result != TmpRes.getNode() && Result->use_empty()) {
5613 HandleSDNode Dummy(DAG.getRoot());
5614 DAG.RemoveDeadNode(Result);
5615 }
5616
5617 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005618
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005619 unsigned NumArgRegs = Result->getNumValues() - 1;
5620 DAG.setRoot(SDValue(Result, NumArgRegs));
5621
5622 // Set up the return result vector.
5623 unsigned i = 0;
5624 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005625 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005626 ++I, ++Idx) {
5627 SmallVector<MVT, 4> ValueVTs;
5628 ComputeValueVTs(*this, I->getType(), ValueVTs);
5629 for (unsigned Value = 0, NumValues = ValueVTs.size();
5630 Value != NumValues; ++Value) {
5631 MVT VT = ValueVTs[Value];
5632 MVT PartVT = getRegisterType(VT);
5633
5634 unsigned NumParts = getNumRegisters(VT);
5635 SmallVector<SDValue, 4> Parts(NumParts);
5636 for (unsigned j = 0; j != NumParts; ++j)
5637 Parts[j] = SDValue(Result, i++);
5638
5639 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005640 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005641 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005642 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005643 AssertOp = ISD::AssertZext;
5644
Dale Johannesen66978ee2009-01-31 02:22:37 +00005645 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5646 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005647 }
5648 }
5649 assert(i == NumArgRegs && "Argument register count mismatch!");
5650}
5651
5652
5653/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5654/// implementation, which just inserts an ISD::CALL node, which is later custom
5655/// lowered by the target to something concrete. FIXME: When all targets are
5656/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5657std::pair<SDValue, SDValue>
5658TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5659 bool RetSExt, bool RetZExt, bool isVarArg,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005660 bool isInreg,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005661 unsigned CallingConv, bool isTailCall,
5662 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005663 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005664 assert((!isTailCall || PerformTailCallOpt) &&
5665 "isTailCall set when tail-call optimizations are disabled!");
5666
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005667 SmallVector<SDValue, 32> Ops;
5668 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005669 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005670
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005671 // Handle all of the outgoing arguments.
5672 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5673 SmallVector<MVT, 4> ValueVTs;
5674 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5675 for (unsigned Value = 0, NumValues = ValueVTs.size();
5676 Value != NumValues; ++Value) {
5677 MVT VT = ValueVTs[Value];
5678 const Type *ArgTy = VT.getTypeForMVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005679 SDValue Op = SDValue(Args[i].Node.getNode(),
5680 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005681 ISD::ArgFlagsTy Flags;
5682 unsigned OriginalAlignment =
5683 getTargetData()->getABITypeAlignment(ArgTy);
5684
5685 if (Args[i].isZExt)
5686 Flags.setZExt();
5687 if (Args[i].isSExt)
5688 Flags.setSExt();
5689 if (Args[i].isInReg)
5690 Flags.setInReg();
5691 if (Args[i].isSRet)
5692 Flags.setSRet();
5693 if (Args[i].isByVal) {
5694 Flags.setByVal();
5695 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5696 const Type *ElementTy = Ty->getElementType();
5697 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005698 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005699 // For ByVal, alignment should come from FE. BE will guess if this
5700 // info is not there but there are cases it cannot get right.
5701 if (Args[i].Alignment)
5702 FrameAlign = Args[i].Alignment;
5703 Flags.setByValAlign(FrameAlign);
5704 Flags.setByValSize(FrameSize);
5705 }
5706 if (Args[i].isNest)
5707 Flags.setNest();
5708 Flags.setOrigAlign(OriginalAlignment);
5709
5710 MVT PartVT = getRegisterType(VT);
5711 unsigned NumParts = getNumRegisters(VT);
5712 SmallVector<SDValue, 4> Parts(NumParts);
5713 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5714
5715 if (Args[i].isSExt)
5716 ExtendKind = ISD::SIGN_EXTEND;
5717 else if (Args[i].isZExt)
5718 ExtendKind = ISD::ZERO_EXTEND;
5719
Dale Johannesen66978ee2009-01-31 02:22:37 +00005720 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005721
5722 for (unsigned i = 0; i != NumParts; ++i) {
5723 // if it isn't first piece, alignment must be 1
5724 ISD::ArgFlagsTy MyFlags = Flags;
5725 if (NumParts > 1 && i == 0)
5726 MyFlags.setSplit();
5727 else if (i != 0)
5728 MyFlags.setOrigAlign(1);
5729
5730 Ops.push_back(Parts[i]);
5731 Ops.push_back(DAG.getArgFlags(MyFlags));
5732 }
5733 }
5734 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005735
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005736 // Figure out the result value types. We start by making a list of
5737 // the potentially illegal return value types.
5738 SmallVector<MVT, 4> LoweredRetTys;
5739 SmallVector<MVT, 4> RetTys;
5740 ComputeValueVTs(*this, RetTy, RetTys);
5741
5742 // Then we translate that to a list of legal types.
5743 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5744 MVT VT = RetTys[I];
5745 MVT RegisterVT = getRegisterType(VT);
5746 unsigned NumRegs = getNumRegisters(VT);
5747 for (unsigned i = 0; i != NumRegs; ++i)
5748 LoweredRetTys.push_back(RegisterVT);
5749 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005750
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005751 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005752
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005753 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005754 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005755 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005756 DAG.getVTList(&LoweredRetTys[0],
5757 LoweredRetTys.size()),
Dale Johannesen86098bd2008-09-26 19:31:26 +00005758 &Ops[0], Ops.size()
5759 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005760 Chain = Res.getValue(LoweredRetTys.size() - 1);
5761
5762 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005763 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005764 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5765
5766 if (RetSExt)
5767 AssertOp = ISD::AssertSext;
5768 else if (RetZExt)
5769 AssertOp = ISD::AssertZext;
5770
5771 SmallVector<SDValue, 4> ReturnValues;
5772 unsigned RegNo = 0;
5773 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5774 MVT VT = RetTys[I];
5775 MVT RegisterVT = getRegisterType(VT);
5776 unsigned NumRegs = getNumRegisters(VT);
5777 unsigned RegNoEnd = NumRegs + RegNo;
5778 SmallVector<SDValue, 4> Results;
5779 for (; RegNo != RegNoEnd; ++RegNo)
5780 Results.push_back(Res.getValue(RegNo));
5781 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005782 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005783 AssertOp);
5784 ReturnValues.push_back(ReturnValue);
5785 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005786 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005787 DAG.getVTList(&RetTys[0], RetTys.size()),
5788 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005789 }
5790
5791 return std::make_pair(Res, Chain);
5792}
5793
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005794void TargetLowering::LowerOperationWrapper(SDNode *N,
5795 SmallVectorImpl<SDValue> &Results,
5796 SelectionDAG &DAG) {
5797 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005798 if (Res.getNode())
5799 Results.push_back(Res);
5800}
5801
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005802SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
5803 assert(0 && "LowerOperation not implemented for this target!");
5804 abort();
5805 return SDValue();
5806}
5807
5808
5809void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5810 SDValue Op = getValue(V);
5811 assert((Op.getOpcode() != ISD::CopyFromReg ||
5812 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5813 "Copy from a reg to the same reg!");
5814 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5815
5816 RegsForValue RFV(TLI, Reg, V->getType());
5817 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005818 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005819 PendingExports.push_back(Chain);
5820}
5821
5822#include "llvm/CodeGen/SelectionDAGISel.h"
5823
5824void SelectionDAGISel::
5825LowerArguments(BasicBlock *LLVMBB) {
5826 // If this is the entry block, emit arguments.
5827 Function &F = *LLVMBB->getParent();
5828 SDValue OldRoot = SDL->DAG.getRoot();
5829 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005830 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005831
5832 unsigned a = 0;
5833 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5834 AI != E; ++AI) {
5835 SmallVector<MVT, 4> ValueVTs;
5836 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5837 unsigned NumValues = ValueVTs.size();
5838 if (!AI->use_empty()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005839 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues,
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005840 SDL->getCurDebugLoc()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005841 // If this argument is live outside of the entry block, insert a copy from
5842 // whereever we got it to the vreg that other BB's will reference it as.
5843 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo->ValueMap.find(AI);
5844 if (VMI != FuncInfo->ValueMap.end()) {
5845 SDL->CopyValueToVirtualRegister(AI, VMI->second);
5846 }
5847 }
5848 a += NumValues;
5849 }
5850
5851 // Finally, if the target has anything special to do, allow it to do so.
5852 // FIXME: this should insert code into the DAG!
5853 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5854}
5855
5856/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5857/// ensure constants are generated when needed. Remember the virtual registers
5858/// that need to be added to the Machine PHI nodes as input. We cannot just
5859/// directly add them, because expansion might result in multiple MBB's for one
5860/// BB. As such, the start of the BB might correspond to a different MBB than
5861/// the end.
5862///
5863void
5864SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5865 TerminatorInst *TI = LLVMBB->getTerminator();
5866
5867 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5868
5869 // Check successor nodes' PHI nodes that expect a constant to be available
5870 // from this block.
5871 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5872 BasicBlock *SuccBB = TI->getSuccessor(succ);
5873 if (!isa<PHINode>(SuccBB->begin())) continue;
5874 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005875
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005876 // If this terminator has multiple identical successors (common for
5877 // switches), only handle each succ once.
5878 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005879
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005880 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5881 PHINode *PN;
5882
5883 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5884 // nodes and Machine PHI nodes, but the incoming operands have not been
5885 // emitted yet.
5886 for (BasicBlock::iterator I = SuccBB->begin();
5887 (PN = dyn_cast<PHINode>(I)); ++I) {
5888 // Ignore dead phi's.
5889 if (PN->use_empty()) continue;
5890
5891 unsigned Reg;
5892 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5893
5894 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5895 unsigned &RegOut = SDL->ConstantsOut[C];
5896 if (RegOut == 0) {
5897 RegOut = FuncInfo->CreateRegForValue(C);
5898 SDL->CopyValueToVirtualRegister(C, RegOut);
5899 }
5900 Reg = RegOut;
5901 } else {
5902 Reg = FuncInfo->ValueMap[PHIOp];
5903 if (Reg == 0) {
5904 assert(isa<AllocaInst>(PHIOp) &&
5905 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5906 "Didn't codegen value into a register!??");
5907 Reg = FuncInfo->CreateRegForValue(PHIOp);
5908 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5909 }
5910 }
5911
5912 // Remember that this register needs to added to the machine PHI node as
5913 // the input for this MBB.
5914 SmallVector<MVT, 4> ValueVTs;
5915 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5916 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5917 MVT VT = ValueVTs[vti];
5918 unsigned NumRegisters = TLI.getNumRegisters(VT);
5919 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5920 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5921 Reg += NumRegisters;
5922 }
5923 }
5924 }
5925 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005926}
5927
Dan Gohman3df24e62008-09-03 23:12:08 +00005928/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5929/// supports legal types, and it emits MachineInstrs directly instead of
5930/// creating SelectionDAG nodes.
5931///
5932bool
5933SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5934 FastISel *F) {
5935 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005936
Dan Gohman3df24e62008-09-03 23:12:08 +00005937 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5938 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5939
5940 // Check successor nodes' PHI nodes that expect a constant to be available
5941 // from this block.
5942 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5943 BasicBlock *SuccBB = TI->getSuccessor(succ);
5944 if (!isa<PHINode>(SuccBB->begin())) continue;
5945 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005946
Dan Gohman3df24e62008-09-03 23:12:08 +00005947 // If this terminator has multiple identical successors (common for
5948 // switches), only handle each succ once.
5949 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005950
Dan Gohman3df24e62008-09-03 23:12:08 +00005951 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5952 PHINode *PN;
5953
5954 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5955 // nodes and Machine PHI nodes, but the incoming operands have not been
5956 // emitted yet.
5957 for (BasicBlock::iterator I = SuccBB->begin();
5958 (PN = dyn_cast<PHINode>(I)); ++I) {
5959 // Ignore dead phi's.
5960 if (PN->use_empty()) continue;
5961
5962 // Only handle legal types. Two interesting things to note here. First,
5963 // by bailing out early, we may leave behind some dead instructions,
5964 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5965 // own moves. Second, this check is necessary becuase FastISel doesn't
5966 // use CreateRegForValue to create registers, so it always creates
5967 // exactly one register for each non-void instruction.
5968 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5969 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005970 // Promote MVT::i1.
5971 if (VT == MVT::i1)
5972 VT = TLI.getTypeToTransformTo(VT);
5973 else {
5974 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5975 return false;
5976 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005977 }
5978
5979 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5980
5981 unsigned Reg = F->getRegForValue(PHIOp);
5982 if (Reg == 0) {
5983 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5984 return false;
5985 }
5986 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5987 }
5988 }
5989
5990 return true;
5991}