blob: 87d6d2fa5c7a94ec8e1c6fa986fe3038f9f325de [file] [log] [blame]
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001//===-- SelectionDAGBuild.cpp - Selection-DAG building --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements routines for translating from LLVM IR into SelectionDAG IR.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "isel"
15#include "SelectionDAGBuild.h"
16#include "llvm/ADT/BitVector.h"
Dan Gohman5b229802008-09-04 20:49:27 +000017#include "llvm/ADT/SmallSet.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000018#include "llvm/Analysis/AliasAnalysis.h"
19#include "llvm/Constants.h"
20#include "llvm/CallingConv.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
23#include "llvm/GlobalVariable.h"
24#include "llvm/InlineAsm.h"
25#include "llvm/Instructions.h"
26#include "llvm/Intrinsics.h"
27#include "llvm/IntrinsicInst.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000028#include "llvm/Module.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000029#include "llvm/CodeGen/FastISel.h"
30#include "llvm/CodeGen/GCStrategy.h"
31#include "llvm/CodeGen/GCMetadata.h"
32#include "llvm/CodeGen/MachineFunction.h"
33#include "llvm/CodeGen/MachineFrameInfo.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
35#include "llvm/CodeGen/MachineJumpTableInfo.h"
36#include "llvm/CodeGen/MachineModuleInfo.h"
37#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000038#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000039#include "llvm/CodeGen/SelectionDAG.h"
Devang Patel83489bb2009-01-13 00:35:13 +000040#include "llvm/CodeGen/DwarfWriter.h"
41#include "llvm/Analysis/DebugInfo.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000042#include "llvm/Target/TargetRegisterInfo.h"
43#include "llvm/Target/TargetData.h"
44#include "llvm/Target/TargetFrameInfo.h"
45#include "llvm/Target/TargetInstrInfo.h"
46#include "llvm/Target/TargetLowering.h"
47#include "llvm/Target/TargetMachine.h"
48#include "llvm/Target/TargetOptions.h"
49#include "llvm/Support/Compiler.h"
Mikhail Glushenkov2388a582009-01-16 07:02:28 +000050#include "llvm/Support/CommandLine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000051#include "llvm/Support/Debug.h"
52#include "llvm/Support/MathExtras.h"
Anton Korobeynikov56d245b2008-12-23 22:26:18 +000053#include "llvm/Support/raw_ostream.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000054#include <algorithm>
55using namespace llvm;
56
Dale Johannesen601d3c02008-09-05 01:48:15 +000057/// LimitFloatPrecision - Generate low-precision inline sequences for
58/// some float libcalls (6, 8 or 12 bits).
59static unsigned LimitFloatPrecision;
60
61static cl::opt<unsigned, true>
62LimitFPPrecision("limit-float-precision",
63 cl::desc("Generate low-precision inline sequences "
64 "for some float libcalls"),
65 cl::location(LimitFloatPrecision),
66 cl::init(0));
67
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000068/// ComputeLinearIndex - Given an LLVM IR aggregate type and a sequence
Dan Gohman2c91d102009-01-06 22:53:52 +000069/// of insertvalue or extractvalue indices that identify a member, return
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000070/// the linearized index of the start of the member.
71///
72static unsigned ComputeLinearIndex(const TargetLowering &TLI, const Type *Ty,
73 const unsigned *Indices,
74 const unsigned *IndicesEnd,
75 unsigned CurIndex = 0) {
76 // Base case: We're done.
77 if (Indices && Indices == IndicesEnd)
78 return CurIndex;
79
80 // Given a struct type, recursively traverse the elements.
81 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
82 for (StructType::element_iterator EB = STy->element_begin(),
83 EI = EB,
84 EE = STy->element_end();
85 EI != EE; ++EI) {
86 if (Indices && *Indices == unsigned(EI - EB))
87 return ComputeLinearIndex(TLI, *EI, Indices+1, IndicesEnd, CurIndex);
88 CurIndex = ComputeLinearIndex(TLI, *EI, 0, 0, CurIndex);
89 }
Dan Gohman2c91d102009-01-06 22:53:52 +000090 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000091 }
92 // Given an array type, recursively traverse the elements.
93 else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
94 const Type *EltTy = ATy->getElementType();
95 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
96 if (Indices && *Indices == i)
97 return ComputeLinearIndex(TLI, EltTy, Indices+1, IndicesEnd, CurIndex);
98 CurIndex = ComputeLinearIndex(TLI, EltTy, 0, 0, CurIndex);
99 }
Dan Gohman2c91d102009-01-06 22:53:52 +0000100 return CurIndex;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000101 }
102 // We haven't found the type we're looking for, so keep searching.
103 return CurIndex + 1;
104}
105
106/// ComputeValueVTs - Given an LLVM IR type, compute a sequence of
107/// MVTs that represent all the individual underlying
108/// non-aggregate types that comprise it.
109///
110/// If Offsets is non-null, it points to a vector to be filled in
111/// with the in-memory offsets of each of the individual values.
112///
113static void ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
114 SmallVectorImpl<MVT> &ValueVTs,
115 SmallVectorImpl<uint64_t> *Offsets = 0,
116 uint64_t StartingOffset = 0) {
117 // Given a struct type, recursively traverse the elements.
118 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
119 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
120 for (StructType::element_iterator EB = STy->element_begin(),
121 EI = EB,
122 EE = STy->element_end();
123 EI != EE; ++EI)
124 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
125 StartingOffset + SL->getElementOffset(EI - EB));
126 return;
127 }
128 // Given an array type, recursively traverse the elements.
129 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
130 const Type *EltTy = ATy->getElementType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000131 uint64_t EltSize = TLI.getTargetData()->getTypePaddedSize(EltTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000132 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
133 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
134 StartingOffset + i * EltSize);
135 return;
136 }
137 // Base case: we can get an MVT for this LLVM IR type.
138 ValueVTs.push_back(TLI.getValueType(Ty));
139 if (Offsets)
140 Offsets->push_back(StartingOffset);
141}
142
Dan Gohman2a7c6712008-09-03 23:18:39 +0000143namespace llvm {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000144 /// RegsForValue - This struct represents the registers (physical or virtual)
145 /// that a particular set of values is assigned, and the type information about
146 /// the value. The most common situation is to represent one value at a time,
147 /// but struct or array values are handled element-wise as multiple values.
148 /// The splitting of aggregates is performed recursively, so that we never
149 /// have aggregate-typed registers. The values at this point do not necessarily
150 /// have legal types, so each value may require one or more registers of some
151 /// legal type.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000152 ///
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000153 struct VISIBILITY_HIDDEN RegsForValue {
154 /// TLI - The TargetLowering object.
155 ///
156 const TargetLowering *TLI;
157
158 /// ValueVTs - The value types of the values, which may not be legal, and
159 /// may need be promoted or synthesized from one or more registers.
160 ///
161 SmallVector<MVT, 4> ValueVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000162
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000163 /// RegVTs - The value types of the registers. This is the same size as
164 /// ValueVTs and it records, for each value, what the type of the assigned
165 /// register or registers are. (Individual values are never synthesized
166 /// from more than one type of register.)
167 ///
168 /// With virtual registers, the contents of RegVTs is redundant with TLI's
169 /// getRegisterType member function, however when with physical registers
170 /// it is necessary to have a separate record of the types.
171 ///
172 SmallVector<MVT, 4> RegVTs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000173
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000174 /// Regs - This list holds the registers assigned to the values.
175 /// Each legal or promoted value requires one register, and each
176 /// expanded value requires multiple registers.
177 ///
178 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000179
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000180 RegsForValue() : TLI(0) {}
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000182 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000183 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000184 MVT regvt, MVT valuevt)
185 : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}
186 RegsForValue(const TargetLowering &tli,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000187 const SmallVector<unsigned, 4> &regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000188 const SmallVector<MVT, 4> &regvts,
189 const SmallVector<MVT, 4> &valuevts)
190 : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {}
191 RegsForValue(const TargetLowering &tli,
192 unsigned Reg, const Type *Ty) : TLI(&tli) {
193 ComputeValueVTs(tli, Ty, ValueVTs);
194
195 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
196 MVT ValueVT = ValueVTs[Value];
197 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
198 MVT RegisterVT = TLI->getRegisterType(ValueVT);
199 for (unsigned i = 0; i != NumRegs; ++i)
200 Regs.push_back(Reg + i);
201 RegVTs.push_back(RegisterVT);
202 Reg += NumRegs;
203 }
204 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000205
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000206 /// append - Add the specified values to this one.
207 void append(const RegsForValue &RHS) {
208 TLI = RHS.TLI;
209 ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end());
210 RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end());
211 Regs.append(RHS.Regs.begin(), RHS.Regs.end());
212 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000213
214
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000215 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000216 /// this value and returns the result as a ValueVTs value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000217 /// Chain/Flag as the input and updates them for the output Chain/Flag.
218 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000219 SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000220 SDValue &Chain, SDValue *Flag) const;
221
222 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000223 /// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000224 /// Chain/Flag as the input and updates them for the output Chain/Flag.
225 /// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000226 void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000227 SDValue &Chain, SDValue *Flag) const;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000228
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000229 /// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000230 /// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000231 /// values added into it.
232 void AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
233 std::vector<SDValue> &Ops) const;
234 };
235}
236
237/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000238/// PHI nodes or outside of the basic block that defines it, or used by a
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000239/// switch or atomic instruction, which may expand to multiple basic blocks.
240static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
241 if (isa<PHINode>(I)) return true;
242 BasicBlock *BB = I->getParent();
243 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI)
244 if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI) ||
245 // FIXME: Remove switchinst special case.
246 isa<SwitchInst>(*UI))
247 return true;
248 return false;
249}
250
251/// isOnlyUsedInEntryBlock - If the specified argument is only used in the
252/// entry block, return true. This includes arguments used by switches, since
253/// the switch may expand into multiple basic blocks.
254static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) {
255 // With FastISel active, we may be splitting blocks, so force creation
256 // of virtual registers for all non-dead arguments.
Dan Gohman33134c42008-09-25 17:05:24 +0000257 // Don't force virtual registers for byval arguments though, because
258 // fast-isel can't handle those in all cases.
259 if (EnableFastISel && !A->hasByValAttr())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000260 return A->use_empty();
261
262 BasicBlock *Entry = A->getParent()->begin();
263 for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI)
264 if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
265 return false; // Use not in entry block.
266 return true;
267}
268
269FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli)
270 : TLI(tli) {
271}
272
273void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000274 SelectionDAG &DAG,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000275 bool EnableFastISel) {
276 Fn = &fn;
277 MF = &mf;
278 RegInfo = &MF->getRegInfo();
279
280 // Create a vreg for each argument register that is not dead and is used
281 // outside of the entry block for the function.
282 for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
283 AI != E; ++AI)
284 if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
285 InitializeRegForValue(AI);
286
287 // Initialize the mapping of values to registers. This is only set up for
288 // instruction values that are used outside of the block that defines
289 // them.
290 Function::iterator BB = Fn->begin(), EB = Fn->end();
291 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
292 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
293 if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
294 const Type *Ty = AI->getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000295 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000296 unsigned Align =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000297 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
298 AI->getAlignment());
299
300 TySize *= CUI->getZExtValue(); // Get total allocated size.
301 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
302 StaticAllocaMap[AI] =
303 MF->getFrameInfo()->CreateStackObject(TySize, Align);
304 }
305
306 for (; BB != EB; ++BB)
307 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
308 if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
309 if (!isa<AllocaInst>(I) ||
310 !StaticAllocaMap.count(cast<AllocaInst>(I)))
311 InitializeRegForValue(I);
312
313 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
314 // also creates the initial PHI MachineInstrs, though none of the input
315 // operands are populated.
316 for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) {
317 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
318 MBBMap[BB] = MBB;
319 MF->push_back(MBB);
320
321 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
322 // appropriate.
323 PHINode *PN;
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000324 DebugLoc DL;
325 for (BasicBlock::iterator
326 I = BB->begin(), E = BB->end(); I != E; ++I) {
327 if (CallInst *CI = dyn_cast<CallInst>(I)) {
328 if (Function *F = CI->getCalledFunction()) {
329 switch (F->getIntrinsicID()) {
330 default: break;
331 case Intrinsic::dbg_stoppoint: {
332 DwarfWriter *DW = DAG.getDwarfWriter();
333 DbgStopPointInst *SPI = cast<DbgStopPointInst>(I);
334
335 if (DW && DW->ValidDebugInfo(SPI->getContext())) {
336 DICompileUnit CU(cast<GlobalVariable>(SPI->getContext()));
337 unsigned SrcFile = DW->RecordSource(CU.getDirectory(),
338 CU.getFilename());
339 unsigned idx = MF->getOrCreateDebugLocID(SrcFile,
340 SPI->getLine(),
341 SPI->getColumn());
342 DL = DebugLoc::get(idx);
343 }
344
345 break;
346 }
347 case Intrinsic::dbg_func_start: {
348 DwarfWriter *DW = DAG.getDwarfWriter();
349 if (DW) {
350 DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I);
351 Value *SP = FSI->getSubprogram();
352
353 if (DW->ValidDebugInfo(SP)) {
354 DISubprogram Subprogram(cast<GlobalVariable>(SP));
355 DICompileUnit CU(Subprogram.getCompileUnit());
356 unsigned SrcFile = DW->RecordSource(CU.getDirectory(),
357 CU.getFilename());
358 unsigned Line = Subprogram.getLineNumber();
359 DL = DebugLoc::get(MF->getOrCreateDebugLocID(SrcFile, Line, 0));
360 }
361 }
362
363 break;
364 }
365 }
366 }
367 }
368
369 PN = dyn_cast<PHINode>(I);
370 if (!PN || PN->use_empty()) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000371
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000372 unsigned PHIReg = ValueMap[PN];
373 assert(PHIReg && "PHI node does not have an assigned virtual register!");
374
375 SmallVector<MVT, 4> ValueVTs;
376 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
377 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
378 MVT VT = ValueVTs[vti];
379 unsigned NumRegisters = TLI.getNumRegisters(VT);
Dan Gohman6448d912008-09-04 15:39:15 +0000380 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000381 for (unsigned i = 0; i != NumRegisters; ++i)
Bill Wendling6a8a0d72009-02-03 02:20:52 +0000382 BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000383 PHIReg += NumRegisters;
384 }
385 }
386 }
387}
388
389unsigned FunctionLoweringInfo::MakeReg(MVT VT) {
390 return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT));
391}
392
393/// CreateRegForValue - Allocate the appropriate number of virtual registers of
394/// the correctly promoted or expanded types. Assign these registers
395/// consecutive vreg numbers and return the first assigned number.
396///
397/// In the case that the given value has struct or array type, this function
398/// will assign registers for each member or element.
399///
400unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) {
401 SmallVector<MVT, 4> ValueVTs;
402 ComputeValueVTs(TLI, V->getType(), ValueVTs);
403
404 unsigned FirstReg = 0;
405 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) {
406 MVT ValueVT = ValueVTs[Value];
407 MVT RegisterVT = TLI.getRegisterType(ValueVT);
408
409 unsigned NumRegs = TLI.getNumRegisters(ValueVT);
410 for (unsigned i = 0; i != NumRegs; ++i) {
411 unsigned R = MakeReg(RegisterVT);
412 if (!FirstReg) FirstReg = R;
413 }
414 }
415 return FirstReg;
416}
417
418/// getCopyFromParts - Create a value that contains the specified legal parts
419/// combined into the value they represent. If the parts combine to a type
420/// larger then ValueVT then AssertOp can be used to specify whether the extra
421/// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
422/// (ISD::AssertSext).
Dale Johannesen66978ee2009-01-31 02:22:37 +0000423static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
424 const SDValue *Parts,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000425 unsigned NumParts, MVT PartVT, MVT ValueVT,
426 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000427 assert(NumParts > 0 && "No parts to assemble!");
Dan Gohmane9530ec2009-01-15 16:58:17 +0000428 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000429 SDValue Val = Parts[0];
430
431 if (NumParts > 1) {
432 // Assemble the value from multiple parts.
433 if (!ValueVT.isVector()) {
434 unsigned PartBits = PartVT.getSizeInBits();
435 unsigned ValueBits = ValueVT.getSizeInBits();
436
437 // Assemble the power of 2 part.
438 unsigned RoundParts = NumParts & (NumParts - 1) ?
439 1 << Log2_32(NumParts) : NumParts;
440 unsigned RoundBits = PartBits * RoundParts;
441 MVT RoundVT = RoundBits == ValueBits ?
442 ValueVT : MVT::getIntegerVT(RoundBits);
443 SDValue Lo, Hi;
444
Duncan Sandsd22ec5f2008-10-29 14:22:20 +0000445 MVT HalfVT = ValueVT.isInteger() ?
446 MVT::getIntegerVT(RoundBits/2) :
447 MVT::getFloatingPointVT(RoundBits/2);
448
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000449 if (RoundParts > 2) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000450 Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT);
451 Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000452 PartVT, HalfVT);
453 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000454 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]);
455 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000456 }
457 if (TLI.isBigEndian())
458 std::swap(Lo, Hi);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000459 Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000460
461 if (RoundParts < NumParts) {
462 // Assemble the trailing non-power-of-2 part.
463 unsigned OddParts = NumParts - RoundParts;
464 MVT OddVT = MVT::getIntegerVT(OddParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000465 Hi = getCopyFromParts(DAG, dl,
466 Parts+RoundParts, OddParts, PartVT, OddVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000467
468 // Combine the round and odd parts.
469 Lo = Val;
470 if (TLI.isBigEndian())
471 std::swap(Lo, Hi);
472 MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000473 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi);
474 Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000475 DAG.getConstant(Lo.getValueType().getSizeInBits(),
Duncan Sands92abc622009-01-31 15:50:11 +0000476 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000477 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo);
478 Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000479 }
480 } else {
481 // Handle a multi-element vector.
482 MVT IntermediateVT, RegisterVT;
483 unsigned NumIntermediates;
484 unsigned NumRegs =
485 TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
486 RegisterVT);
487 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
488 NumParts = NumRegs; // Silence a compiler warning.
489 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
490 assert(RegisterVT == Parts[0].getValueType() &&
491 "Part type doesn't match part!");
492
493 // Assemble the parts into intermediate operands.
494 SmallVector<SDValue, 8> Ops(NumIntermediates);
495 if (NumIntermediates == NumParts) {
496 // If the register was not expanded, truncate or copy the value,
497 // as appropriate.
498 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000499 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000500 PartVT, IntermediateVT);
501 } else if (NumParts > 0) {
502 // If the intermediate type was expanded, build the intermediate operands
503 // from the parts.
504 assert(NumParts % NumIntermediates == 0 &&
505 "Must expand into a divisible number of parts!");
506 unsigned Factor = NumParts / NumIntermediates;
507 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000508 Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000509 PartVT, IntermediateVT);
510 }
511
512 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate
513 // operands.
514 Val = DAG.getNode(IntermediateVT.isVector() ?
Dale Johannesen66978ee2009-01-31 02:22:37 +0000515 ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000516 ValueVT, &Ops[0], NumIntermediates);
517 }
518 }
519
520 // There is now one part, held in Val. Correct it to match ValueVT.
521 PartVT = Val.getValueType();
522
523 if (PartVT == ValueVT)
524 return Val;
525
526 if (PartVT.isVector()) {
527 assert(ValueVT.isVector() && "Unknown vector conversion!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000528 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000529 }
530
531 if (ValueVT.isVector()) {
532 assert(ValueVT.getVectorElementType() == PartVT &&
533 ValueVT.getVectorNumElements() == 1 &&
534 "Only trivial scalar-to-vector conversions should get here!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000535 return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000536 }
537
538 if (PartVT.isInteger() &&
539 ValueVT.isInteger()) {
540 if (ValueVT.bitsLT(PartVT)) {
541 // For a truncate, see if we have any information to
542 // indicate whether the truncated bits will always be
543 // zero or sign-extension.
544 if (AssertOp != ISD::DELETED_NODE)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000545 Val = DAG.getNode(AssertOp, dl, PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000546 DAG.getValueType(ValueVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000547 return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000548 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000549 return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000550 }
551 }
552
553 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
554 if (ValueVT.bitsLT(Val.getValueType()))
555 // FP_ROUND's are always exact here.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000556 return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000557 DAG.getIntPtrConstant(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000558 return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000559 }
560
561 if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000562 return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000563
564 assert(0 && "Unknown mismatch!");
565 return SDValue();
566}
567
568/// getCopyToParts - Create a series of nodes that contain the specified value
569/// split into legal parts. If the parts contain more bits than Val, then, for
570/// integers, ExtendKind can be used to specify how to generate the extra bits.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000571static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
Chris Lattner01426e12008-10-21 00:45:36 +0000572 SDValue *Parts, unsigned NumParts, MVT PartVT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000573 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
Dan Gohmane9530ec2009-01-15 16:58:17 +0000574 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000575 MVT PtrVT = TLI.getPointerTy();
576 MVT ValueVT = Val.getValueType();
577 unsigned PartBits = PartVT.getSizeInBits();
578 assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!");
579
580 if (!NumParts)
581 return;
582
583 if (!ValueVT.isVector()) {
584 if (PartVT == ValueVT) {
585 assert(NumParts == 1 && "No-op copy with multiple parts!");
586 Parts[0] = Val;
587 return;
588 }
589
590 if (NumParts * PartBits > ValueVT.getSizeInBits()) {
591 // If the parts cover more bits than the value has, promote the value.
592 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) {
593 assert(NumParts == 1 && "Do not know what to promote to!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000594 Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000595 } else if (PartVT.isInteger() && ValueVT.isInteger()) {
596 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000597 Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000598 } else {
599 assert(0 && "Unknown mismatch!");
600 }
601 } else if (PartBits == ValueVT.getSizeInBits()) {
602 // Different types of the same size.
603 assert(NumParts == 1 && PartVT != ValueVT);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000604 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000605 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) {
606 // If the parts cover less bits than value has, truncate the value.
607 if (PartVT.isInteger() && ValueVT.isInteger()) {
608 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000609 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000610 } else {
611 assert(0 && "Unknown mismatch!");
612 }
613 }
614
615 // The value may have changed - recompute ValueVT.
616 ValueVT = Val.getValueType();
617 assert(NumParts * PartBits == ValueVT.getSizeInBits() &&
618 "Failed to tile the value with PartVT!");
619
620 if (NumParts == 1) {
621 assert(PartVT == ValueVT && "Type conversion failed!");
622 Parts[0] = Val;
623 return;
624 }
625
626 // Expand the value into multiple parts.
627 if (NumParts & (NumParts - 1)) {
628 // The number of parts is not a power of 2. Split off and copy the tail.
629 assert(PartVT.isInteger() && ValueVT.isInteger() &&
630 "Do not know what to expand to!");
631 unsigned RoundParts = 1 << Log2_32(NumParts);
632 unsigned RoundBits = RoundParts * PartBits;
633 unsigned OddParts = NumParts - RoundParts;
Dale Johannesen66978ee2009-01-31 02:22:37 +0000634 SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val,
Duncan Sands0b3aa262009-01-28 14:42:54 +0000635 DAG.getConstant(RoundBits,
Duncan Sands92abc622009-01-31 15:50:11 +0000636 TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000637 getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000638 if (TLI.isBigEndian())
639 // The odd parts were reversed by getCopyToParts - unreverse them.
640 std::reverse(Parts + RoundParts, Parts + NumParts);
641 NumParts = RoundParts;
642 ValueVT = MVT::getIntegerVT(NumParts * PartBits);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000643 Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000644 }
645
646 // The number of parts is a power of 2. Repeatedly bisect the value using
647 // EXTRACT_ELEMENT.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000648 Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000649 MVT::getIntegerVT(ValueVT.getSizeInBits()),
650 Val);
651 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) {
652 for (unsigned i = 0; i < NumParts; i += StepSize) {
653 unsigned ThisBits = StepSize * PartBits / 2;
654 MVT ThisVT = MVT::getIntegerVT (ThisBits);
655 SDValue &Part0 = Parts[i];
656 SDValue &Part1 = Parts[i+StepSize/2];
657
Dale Johannesen66978ee2009-01-31 02:22:37 +0000658 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000659 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000660 DAG.getConstant(1, PtrVT));
Dale Johannesen66978ee2009-01-31 02:22:37 +0000661 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000662 ThisVT, Part0,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000663 DAG.getConstant(0, PtrVT));
664
665 if (ThisBits == PartBits && ThisVT != PartVT) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000666 Part0 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000667 PartVT, Part0);
Dale Johannesen66978ee2009-01-31 02:22:37 +0000668 Part1 = DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000669 PartVT, Part1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000670 }
671 }
672 }
673
674 if (TLI.isBigEndian())
675 std::reverse(Parts, Parts + NumParts);
676
677 return;
678 }
679
680 // Vector ValueVT.
681 if (NumParts == 1) {
682 if (PartVT != ValueVT) {
683 if (PartVT.isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000684 Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000685 } else {
686 assert(ValueVT.getVectorElementType() == PartVT &&
687 ValueVT.getVectorNumElements() == 1 &&
688 "Only trivial vector-to-scalar conversions should get here!");
Dale Johannesen66978ee2009-01-31 02:22:37 +0000689 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000690 PartVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000691 DAG.getConstant(0, PtrVT));
692 }
693 }
694
695 Parts[0] = Val;
696 return;
697 }
698
699 // Handle a multi-element vector.
700 MVT IntermediateVT, RegisterVT;
701 unsigned NumIntermediates;
Dan Gohmane9530ec2009-01-15 16:58:17 +0000702 unsigned NumRegs = TLI
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000703 .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates,
704 RegisterVT);
705 unsigned NumElements = ValueVT.getVectorNumElements();
706
707 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
708 NumParts = NumRegs; // Silence a compiler warning.
709 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
710
711 // Split the vector into intermediate operands.
712 SmallVector<SDValue, 8> Ops(NumIntermediates);
713 for (unsigned i = 0; i != NumIntermediates; ++i)
714 if (IntermediateVT.isVector())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000715 Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000716 IntermediateVT, Val,
717 DAG.getConstant(i * (NumElements / NumIntermediates),
718 PtrVT));
719 else
Dale Johannesen66978ee2009-01-31 02:22:37 +0000720 Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000721 IntermediateVT, Val,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000722 DAG.getConstant(i, PtrVT));
723
724 // Split the intermediate operands into legal parts.
725 if (NumParts == NumIntermediates) {
726 // If the register was not expanded, promote or copy the value,
727 // as appropriate.
728 for (unsigned i = 0; i != NumParts; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000729 getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000730 } else if (NumParts > 0) {
731 // If the intermediate type was expanded, split each the value into
732 // legal parts.
733 assert(NumParts % NumIntermediates == 0 &&
734 "Must expand into a divisible number of parts!");
735 unsigned Factor = NumParts / NumIntermediates;
736 for (unsigned i = 0; i != NumIntermediates; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000737 getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000738 }
739}
740
741
742void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) {
743 AA = &aa;
744 GFI = gfi;
745 TD = DAG.getTarget().getTargetData();
746}
747
748/// clear - Clear out the curret SelectionDAG and the associated
749/// state and prepare this SelectionDAGLowering object to be used
750/// for a new block. This doesn't clear out information about
751/// additional blocks that are needed to complete switch lowering
752/// or PHI node updating; that information is cleared out as it is
753/// consumed.
754void SelectionDAGLowering::clear() {
755 NodeMap.clear();
756 PendingLoads.clear();
757 PendingExports.clear();
758 DAG.clear();
759}
760
761/// getRoot - Return the current virtual root of the Selection DAG,
762/// flushing any PendingLoad items. This must be done before emitting
763/// a store or any other node that may need to be ordered after any
764/// prior load instructions.
765///
766SDValue SelectionDAGLowering::getRoot() {
767 if (PendingLoads.empty())
768 return DAG.getRoot();
769
770 if (PendingLoads.size() == 1) {
771 SDValue Root = PendingLoads[0];
772 DAG.setRoot(Root);
773 PendingLoads.clear();
774 return Root;
775 }
776
777 // Otherwise, we have to make a token factor node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000778 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000779 &PendingLoads[0], PendingLoads.size());
780 PendingLoads.clear();
781 DAG.setRoot(Root);
782 return Root;
783}
784
785/// getControlRoot - Similar to getRoot, but instead of flushing all the
786/// PendingLoad items, flush all the PendingExports items. It is necessary
787/// to do this before emitting a terminator instruction.
788///
789SDValue SelectionDAGLowering::getControlRoot() {
790 SDValue Root = DAG.getRoot();
791
792 if (PendingExports.empty())
793 return Root;
794
795 // Turn all of the CopyToReg chains into one factored node.
796 if (Root.getOpcode() != ISD::EntryToken) {
797 unsigned i = 0, e = PendingExports.size();
798 for (; i != e; ++i) {
799 assert(PendingExports[i].getNode()->getNumOperands() > 1);
800 if (PendingExports[i].getNode()->getOperand(0) == Root)
801 break; // Don't add the root if we already indirectly depend on it.
802 }
803
804 if (i == e)
805 PendingExports.push_back(Root);
806 }
807
Dale Johannesen66978ee2009-01-31 02:22:37 +0000808 Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000809 &PendingExports[0],
810 PendingExports.size());
811 PendingExports.clear();
812 DAG.setRoot(Root);
813 return Root;
814}
815
816void SelectionDAGLowering::visit(Instruction &I) {
817 visit(I.getOpcode(), I);
818}
819
820void SelectionDAGLowering::visit(unsigned Opcode, User &I) {
821 // Note: this doesn't use InstVisitor, because it has to work with
822 // ConstantExpr's in addition to instructions.
823 switch (Opcode) {
824 default: assert(0 && "Unknown instruction type encountered!");
825 abort();
826 // Build the switch statement using the Instruction.def file.
827#define HANDLE_INST(NUM, OPCODE, CLASS) \
828 case Instruction::OPCODE:return visit##OPCODE((CLASS&)I);
829#include "llvm/Instruction.def"
830 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000831}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000832
833void SelectionDAGLowering::visitAdd(User &I) {
834 if (I.getType()->isFPOrFPVector())
835 visitBinary(I, ISD::FADD);
836 else
837 visitBinary(I, ISD::ADD);
838}
839
840void SelectionDAGLowering::visitMul(User &I) {
841 if (I.getType()->isFPOrFPVector())
842 visitBinary(I, ISD::FMUL);
843 else
844 visitBinary(I, ISD::MUL);
845}
846
847SDValue SelectionDAGLowering::getValue(const Value *V) {
848 SDValue &N = NodeMap[V];
849 if (N.getNode()) return N;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000850
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000851 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
852 MVT VT = TLI.getValueType(V->getType(), true);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000853
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000854 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000855 return N = DAG.getConstant(*CI, VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000856
857 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
858 return N = DAG.getGlobalAddress(GV, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000859
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000860 if (isa<ConstantPointerNull>(C))
861 return N = DAG.getConstant(0, TLI.getPointerTy());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000862
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000863 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C))
Dan Gohman4fbd7962008-09-12 18:08:03 +0000864 return N = DAG.getConstantFP(*CFP, VT);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000865
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000866 if (isa<UndefValue>(C) && !isa<VectorType>(V->getType()) &&
867 !V->getType()->isAggregateType())
Dale Johannesen66978ee2009-01-31 02:22:37 +0000868 return N = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), VT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000869
870 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
871 visit(CE->getOpcode(), *CE);
872 SDValue N1 = NodeMap[V];
873 assert(N1.getNode() && "visit didn't populate the ValueMap!");
874 return N1;
875 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000876
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000877 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) {
878 SmallVector<SDValue, 4> Constants;
879 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end();
880 OI != OE; ++OI) {
881 SDNode *Val = getValue(*OI).getNode();
882 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i)
883 Constants.push_back(SDValue(Val, i));
884 }
885 return DAG.getMergeValues(&Constants[0], Constants.size());
886 }
887
888 if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) {
889 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
890 "Unknown struct or array constant!");
891
892 SmallVector<MVT, 4> ValueVTs;
893 ComputeValueVTs(TLI, C->getType(), ValueVTs);
894 unsigned NumElts = ValueVTs.size();
895 if (NumElts == 0)
896 return SDValue(); // empty struct
897 SmallVector<SDValue, 4> Constants(NumElts);
898 for (unsigned i = 0; i != NumElts; ++i) {
899 MVT EltVT = ValueVTs[i];
900 if (isa<UndefValue>(C))
Dale Johannesen66978ee2009-01-31 02:22:37 +0000901 Constants[i] = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000902 else if (EltVT.isFloatingPoint())
903 Constants[i] = DAG.getConstantFP(0, EltVT);
904 else
905 Constants[i] = DAG.getConstant(0, EltVT);
906 }
907 return DAG.getMergeValues(&Constants[0], NumElts);
908 }
909
910 const VectorType *VecTy = cast<VectorType>(V->getType());
911 unsigned NumElements = VecTy->getNumElements();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000912
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000913 // Now that we know the number and type of the elements, get that number of
914 // elements into the Ops array based on what kind of constant it is.
915 SmallVector<SDValue, 16> Ops;
916 if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) {
917 for (unsigned i = 0; i != NumElements; ++i)
918 Ops.push_back(getValue(CP->getOperand(i)));
919 } else {
920 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) &&
921 "Unknown vector constant!");
922 MVT EltVT = TLI.getValueType(VecTy->getElementType());
923
924 SDValue Op;
925 if (isa<UndefValue>(C))
Dale Johannesen66978ee2009-01-31 02:22:37 +0000926 Op = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), EltVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000927 else if (EltVT.isFloatingPoint())
928 Op = DAG.getConstantFP(0, EltVT);
929 else
930 Op = DAG.getConstant(0, EltVT);
931 Ops.assign(NumElements, Op);
932 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000933
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000934 // Create a BUILD_VECTOR node.
Dale Johannesen66978ee2009-01-31 02:22:37 +0000935 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000936 VT, &Ops[0], Ops.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000937 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000938
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000939 // If this is a static alloca, generate it as the frameindex instead of
940 // computation.
941 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
942 DenseMap<const AllocaInst*, int>::iterator SI =
943 FuncInfo.StaticAllocaMap.find(AI);
944 if (SI != FuncInfo.StaticAllocaMap.end())
945 return DAG.getFrameIndex(SI->second, TLI.getPointerTy());
946 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000947
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000948 unsigned InReg = FuncInfo.ValueMap[V];
949 assert(InReg && "Value not in map!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000950
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000951 RegsForValue RFV(TLI, InReg, V->getType());
952 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +0000953 return RFV.getCopyFromRegs(DAG, getCurDebugLoc(), Chain, NULL);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000954}
955
956
957void SelectionDAGLowering::visitRet(ReturnInst &I) {
958 if (I.getNumOperands() == 0) {
Dale Johannesen66978ee2009-01-31 02:22:37 +0000959 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +0000960 MVT::Other, getControlRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000961 return;
962 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000963
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000964 SmallVector<SDValue, 8> NewValues;
965 NewValues.push_back(getControlRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000966 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000967 SmallVector<MVT, 4> ValueVTs;
968 ComputeValueVTs(TLI, I.getOperand(i)->getType(), ValueVTs);
Dan Gohman7ea1ca62008-10-21 20:00:42 +0000969 unsigned NumValues = ValueVTs.size();
970 if (NumValues == 0) continue;
971
972 SDValue RetOp = getValue(I.getOperand(i));
973 for (unsigned j = 0, f = NumValues; j != f; ++j) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000974 MVT VT = ValueVTs[j];
975
976 // FIXME: C calling convention requires the return type to be promoted to
Dale Johannesenc9c6da62008-09-25 20:47:45 +0000977 // at least 32-bit. But this is not necessary for non-C calling
978 // conventions.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000979 if (VT.isInteger()) {
980 MVT MinVT = TLI.getRegisterType(MVT::i32);
981 if (VT.bitsLT(MinVT))
982 VT = MinVT;
983 }
984
985 unsigned NumParts = TLI.getNumRegisters(VT);
986 MVT PartVT = TLI.getRegisterType(VT);
987 SmallVector<SDValue, 4> Parts(NumParts);
988 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +0000989
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000990 const Function *F = I.getParent()->getParent();
Devang Patel05988662008-09-25 21:00:45 +0000991 if (F->paramHasAttr(0, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000992 ExtendKind = ISD::SIGN_EXTEND;
Devang Patel05988662008-09-25 21:00:45 +0000993 else if (F->paramHasAttr(0, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000994 ExtendKind = ISD::ZERO_EXTEND;
995
Dale Johannesen66978ee2009-01-31 02:22:37 +0000996 getCopyToParts(DAG, getCurDebugLoc(),
997 SDValue(RetOp.getNode(), RetOp.getResNo() + j),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000998 &Parts[0], NumParts, PartVT, ExtendKind);
999
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001000 // 'inreg' on function refers to return value
1001 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy();
Devang Patel05988662008-09-25 21:00:45 +00001002 if (F->paramHasAttr(0, Attribute::InReg))
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001003 Flags.setInReg();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001004 for (unsigned i = 0; i < NumParts; ++i) {
1005 NewValues.push_back(Parts[i]);
Dale Johannesenc9c6da62008-09-25 20:47:45 +00001006 NewValues.push_back(DAG.getArgFlags(Flags));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001007 }
1008 }
1009 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00001010 DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001011 &NewValues[0], NewValues.size()));
1012}
1013
1014/// ExportFromCurrentBlock - If this condition isn't known to be exported from
1015/// the current basic block, add it to ValueMap now so that we'll get a
1016/// CopyTo/FromReg.
1017void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) {
1018 // No need to export constants.
1019 if (!isa<Instruction>(V) && !isa<Argument>(V)) return;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001020
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001021 // Already exported?
1022 if (FuncInfo.isExportedInst(V)) return;
1023
1024 unsigned Reg = FuncInfo.InitializeRegForValue(V);
1025 CopyValueToVirtualRegister(V, Reg);
1026}
1027
1028bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V,
1029 const BasicBlock *FromBB) {
1030 // The operands of the setcc have to be in this block. We don't know
1031 // how to export them from some other block.
1032 if (Instruction *VI = dyn_cast<Instruction>(V)) {
1033 // Can export from current BB.
1034 if (VI->getParent() == FromBB)
1035 return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001036
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001037 // Is already exported, noop.
1038 return FuncInfo.isExportedInst(V);
1039 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001040
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001041 // If this is an argument, we can export it if the BB is the entry block or
1042 // if it is already exported.
1043 if (isa<Argument>(V)) {
1044 if (FromBB == &FromBB->getParent()->getEntryBlock())
1045 return true;
1046
1047 // Otherwise, can only export this if it is already exported.
1048 return FuncInfo.isExportedInst(V);
1049 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001050
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001051 // Otherwise, constants can always be exported.
1052 return true;
1053}
1054
1055static bool InBlock(const Value *V, const BasicBlock *BB) {
1056 if (const Instruction *I = dyn_cast<Instruction>(V))
1057 return I->getParent() == BB;
1058 return true;
1059}
1060
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001061/// getFCmpCondCode - Return the ISD condition code corresponding to
1062/// the given LLVM IR floating-point condition code. This includes
1063/// consideration of global floating-point math flags.
1064///
1065static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
1066 ISD::CondCode FPC, FOC;
1067 switch (Pred) {
1068 case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break;
1069 case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break;
1070 case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break;
1071 case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break;
1072 case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break;
1073 case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break;
1074 case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break;
1075 case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break;
1076 case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break;
1077 case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break;
1078 case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break;
1079 case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break;
1080 case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break;
1081 case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break;
1082 case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
1083 case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
1084 default:
1085 assert(0 && "Invalid FCmp predicate opcode!");
1086 FOC = FPC = ISD::SETFALSE;
1087 break;
1088 }
1089 if (FiniteOnlyFPMath())
1090 return FOC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001091 else
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001092 return FPC;
1093}
1094
1095/// getICmpCondCode - Return the ISD condition code corresponding to
1096/// the given LLVM IR integer condition code.
1097///
1098static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
1099 switch (Pred) {
1100 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
1101 case ICmpInst::ICMP_NE: return ISD::SETNE;
1102 case ICmpInst::ICMP_SLE: return ISD::SETLE;
1103 case ICmpInst::ICMP_ULE: return ISD::SETULE;
1104 case ICmpInst::ICMP_SGE: return ISD::SETGE;
1105 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
1106 case ICmpInst::ICMP_SLT: return ISD::SETLT;
1107 case ICmpInst::ICMP_ULT: return ISD::SETULT;
1108 case ICmpInst::ICMP_SGT: return ISD::SETGT;
1109 case ICmpInst::ICMP_UGT: return ISD::SETUGT;
1110 default:
1111 assert(0 && "Invalid ICmp predicate opcode!");
1112 return ISD::SETNE;
1113 }
1114}
1115
Dan Gohmanc2277342008-10-17 21:16:08 +00001116/// EmitBranchForMergedCondition - Helper method for FindMergedConditions.
1117/// This function emits a branch and is used at the leaves of an OR or an
1118/// AND operator tree.
1119///
1120void
1121SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
1122 MachineBasicBlock *TBB,
1123 MachineBasicBlock *FBB,
1124 MachineBasicBlock *CurBB) {
1125 const BasicBlock *BB = CurBB->getBasicBlock();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001126
Dan Gohmanc2277342008-10-17 21:16:08 +00001127 // If the leaf of the tree is a comparison, merge the condition into
1128 // the caseblock.
1129 if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1130 // The operands of the cmp have to be in this block. We don't know
1131 // how to export them from some other block. If this is the first block
1132 // of the sequence, no exporting is needed.
1133 if (CurBB == CurMBB ||
1134 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1135 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001136 ISD::CondCode Condition;
1137 if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001138 Condition = getICmpCondCode(IC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001139 } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) {
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00001140 Condition = getFCmpCondCode(FC->getPredicate());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001141 } else {
1142 Condition = ISD::SETEQ; // silence warning.
1143 assert(0 && "Unknown compare instruction");
1144 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001145
1146 CaseBlock CB(Condition, BOp->getOperand(0),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001147 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1148 SwitchCases.push_back(CB);
1149 return;
1150 }
Dan Gohmanc2277342008-10-17 21:16:08 +00001151 }
1152
1153 // Create a CaseBlock record representing this branch.
1154 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(),
1155 NULL, TBB, FBB, CurBB);
1156 SwitchCases.push_back(CB);
1157}
1158
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001159/// FindMergedConditions - If Cond is an expression like
Dan Gohmanc2277342008-10-17 21:16:08 +00001160void SelectionDAGLowering::FindMergedConditions(Value *Cond,
1161 MachineBasicBlock *TBB,
1162 MachineBasicBlock *FBB,
1163 MachineBasicBlock *CurBB,
1164 unsigned Opc) {
1165 // If this node is not part of the or/and tree, emit it as a branch.
1166 Instruction *BOp = dyn_cast<Instruction>(Cond);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001167 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
Dan Gohmanc2277342008-10-17 21:16:08 +00001168 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() ||
1169 BOp->getParent() != CurBB->getBasicBlock() ||
1170 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1171 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1172 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001173 return;
1174 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001175
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001176 // Create TmpBB after CurBB.
1177 MachineFunction::iterator BBI = CurBB;
1178 MachineFunction &MF = DAG.getMachineFunction();
1179 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock());
1180 CurBB->getParent()->insert(++BBI, TmpBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001181
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001182 if (Opc == Instruction::Or) {
1183 // Codegen X | Y as:
1184 // jmp_if_X TBB
1185 // jmp TmpBB
1186 // TmpBB:
1187 // jmp_if_Y TBB
1188 // jmp FBB
1189 //
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001190
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001191 // Emit the LHS condition.
1192 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001193
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001194 // Emit the RHS condition into TmpBB.
1195 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1196 } else {
1197 assert(Opc == Instruction::And && "Unknown merge op!");
1198 // Codegen X & Y as:
1199 // jmp_if_X TmpBB
1200 // jmp FBB
1201 // TmpBB:
1202 // jmp_if_Y TBB
1203 // jmp FBB
1204 //
1205 // This requires creation of TmpBB after CurBB.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001206
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001207 // Emit the LHS condition.
1208 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001209
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001210 // Emit the RHS condition into TmpBB.
1211 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc);
1212 }
1213}
1214
1215/// If the set of cases should be emitted as a series of branches, return true.
1216/// If we should emit this as a bunch of and/or'd together conditions, return
1217/// false.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001218bool
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001219SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){
1220 if (Cases.size() != 2) return true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001221
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001222 // If this is two comparisons of the same values or'd or and'd together, they
1223 // will get folded into a single comparison, so don't emit two blocks.
1224 if ((Cases[0].CmpLHS == Cases[1].CmpLHS &&
1225 Cases[0].CmpRHS == Cases[1].CmpRHS) ||
1226 (Cases[0].CmpRHS == Cases[1].CmpLHS &&
1227 Cases[0].CmpLHS == Cases[1].CmpRHS)) {
1228 return false;
1229 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001230
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001231 return true;
1232}
1233
1234void SelectionDAGLowering::visitBr(BranchInst &I) {
1235 // Update machine-CFG edges.
1236 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)];
1237
1238 // Figure out which block is immediately after the current one.
1239 MachineBasicBlock *NextBlock = 0;
1240 MachineFunction::iterator BBI = CurMBB;
1241 if (++BBI != CurMBB->getParent()->end())
1242 NextBlock = BBI;
1243
1244 if (I.isUnconditional()) {
1245 // Update machine-CFG edges.
1246 CurMBB->addSuccessor(Succ0MBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001247
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001248 // If this is not a fall-through branch, emit the branch.
1249 if (Succ0MBB != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00001250 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001251 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001252 DAG.getBasicBlock(Succ0MBB)));
1253 return;
1254 }
1255
1256 // If this condition is one of the special cases we handle, do special stuff
1257 // now.
1258 Value *CondVal = I.getCondition();
1259 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)];
1260
1261 // If this is a series of conditions that are or'd or and'd together, emit
1262 // this as a sequence of branches instead of setcc's with and/or operations.
1263 // For example, instead of something like:
1264 // cmp A, B
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001265 // C = seteq
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001266 // cmp D, E
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001267 // F = setle
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001268 // or C, F
1269 // jnz foo
1270 // Emit:
1271 // cmp A, B
1272 // je foo
1273 // cmp D, E
1274 // jle foo
1275 //
1276 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001277 if (BOp->hasOneUse() &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001278 (BOp->getOpcode() == Instruction::And ||
1279 BOp->getOpcode() == Instruction::Or)) {
1280 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode());
1281 // If the compares in later blocks need to use values not currently
1282 // exported from this block, export them now. This block should always
1283 // be the first entry.
1284 assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001285
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001286 // Allow some cases to be rejected.
1287 if (ShouldEmitAsBranches(SwitchCases)) {
1288 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) {
1289 ExportFromCurrentBlock(SwitchCases[i].CmpLHS);
1290 ExportFromCurrentBlock(SwitchCases[i].CmpRHS);
1291 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001292
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001293 // Emit the branch for this block.
1294 visitSwitchCase(SwitchCases[0]);
1295 SwitchCases.erase(SwitchCases.begin());
1296 return;
1297 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001298
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001299 // Okay, we decided not to do this, remove any inserted MBB's and clear
1300 // SwitchCases.
1301 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i)
1302 CurMBB->getParent()->erase(SwitchCases[i].ThisBB);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001303
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001304 SwitchCases.clear();
1305 }
1306 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001307
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001308 // Create a CaseBlock record representing this branch.
1309 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(),
1310 NULL, Succ0MBB, Succ1MBB, CurMBB);
1311 // Use visitSwitchCase to actually insert the fast branch sequence for this
1312 // cond branch.
1313 visitSwitchCase(CB);
1314}
1315
1316/// visitSwitchCase - Emits the necessary code to represent a single node in
1317/// the binary search tree resulting from lowering a switch instruction.
1318void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) {
1319 SDValue Cond;
1320 SDValue CondLHS = getValue(CB.CmpLHS);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001321
1322 // Build the setcc now.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001323 if (CB.CmpMHS == NULL) {
1324 // Fold "(X == true)" to X and "(X == false)" to !X to
1325 // handle common cases produced by branch lowering.
1326 if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ)
1327 Cond = CondLHS;
1328 else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) {
1329 SDValue True = DAG.getConstant(1, CondLHS.getValueType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00001330 Cond = DAG.getNode(ISD::XOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001331 CondLHS.getValueType(), CondLHS, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001332 } else
1333 Cond = DAG.getSetCC(MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC);
1334 } else {
1335 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now");
1336
Anton Korobeynikov23218582008-12-23 22:25:27 +00001337 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1338 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001339
1340 SDValue CmpOp = getValue(CB.CmpMHS);
1341 MVT VT = CmpOp.getValueType();
1342
1343 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) {
1344 Cond = DAG.getSetCC(MVT::i1, CmpOp, DAG.getConstant(High, VT), ISD::SETLE);
1345 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00001346 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001347 VT, CmpOp, DAG.getConstant(Low, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001348 Cond = DAG.getSetCC(MVT::i1, SUB,
1349 DAG.getConstant(High-Low, VT), ISD::SETULE);
1350 }
1351 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001352
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001353 // Update successor info
1354 CurMBB->addSuccessor(CB.TrueBB);
1355 CurMBB->addSuccessor(CB.FalseBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001356
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001357 // Set NextBlock to be the MBB immediately after the current one, if any.
1358 // This is used to avoid emitting unnecessary branches to the next block.
1359 MachineBasicBlock *NextBlock = 0;
1360 MachineFunction::iterator BBI = CurMBB;
1361 if (++BBI != CurMBB->getParent()->end())
1362 NextBlock = BBI;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001363
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001364 // If the lhs block is the next block, invert the condition so that we can
1365 // fall through to the lhs instead of the rhs block.
1366 if (CB.TrueBB == NextBlock) {
1367 std::swap(CB.TrueBB, CB.FalseBB);
1368 SDValue True = DAG.getConstant(1, Cond.getValueType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00001369 Cond = DAG.getNode(ISD::XOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001370 Cond.getValueType(), Cond, True);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001371 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00001372 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001373 MVT::Other, getControlRoot(), Cond,
1374 DAG.getBasicBlock(CB.TrueBB));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001375
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001376 // If the branch was constant folded, fix up the CFG.
1377 if (BrCond.getOpcode() == ISD::BR) {
1378 CurMBB->removeSuccessor(CB.FalseBB);
1379 DAG.setRoot(BrCond);
1380 } else {
1381 // Otherwise, go ahead and insert the false branch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001382 if (BrCond == getControlRoot())
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001383 CurMBB->removeSuccessor(CB.TrueBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001384
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001385 if (CB.FalseBB == NextBlock)
1386 DAG.setRoot(BrCond);
1387 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001388 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001389 DAG.getBasicBlock(CB.FalseBB)));
1390 }
1391}
1392
1393/// visitJumpTable - Emit JumpTable node in the current MBB
1394void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
1395 // Emit the code for the jump table
1396 assert(JT.Reg != -1U && "Should lower JT Header first!");
1397 MVT PTy = TLI.getPointerTy();
1398 SDValue Index = DAG.getCopyFromReg(getControlRoot(), JT.Reg, PTy);
1399 SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00001400 DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001401 MVT::Other, Index.getValue(1),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001402 Table, Index));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001403}
1404
1405/// visitJumpTableHeader - This function emits necessary code to produce index
1406/// in the JumpTable from switch case.
1407void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
1408 JumpTableHeader &JTH) {
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001409 // Subtract the lowest switch case value from the value being switched on and
1410 // conditional branch to default mbb if the result is greater than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001411 // difference between smallest and largest cases.
1412 SDValue SwitchOp = getValue(JTH.SValue);
1413 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001414 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001415 DAG.getConstant(JTH.First, VT));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001416
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001417 // The SDNode we just created, which holds the value being switched on minus
1418 // the the smallest case value, needs to be copied to a virtual register so it
1419 // can be used as an index into the jump table in a subsequent basic block.
1420 // This value may be smaller or larger than the target's pointer type, and
1421 // therefore require extension or truncating.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001422 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00001423 SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001424 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001425 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001426 SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001427 TLI.getPointerTy(), SUB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001428
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001429 unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy());
1430 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), JumpTableReg, SwitchOp);
1431 JT.Reg = JumpTableReg;
1432
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001433 // Emit the range check for the jump table, and branch to the default block
1434 // for the switch statement if the value being switched on exceeds the largest
1435 // case in the switch.
Duncan Sands5480c042009-01-01 15:52:00 +00001436 SDValue CMP = DAG.getSetCC(TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001437 DAG.getConstant(JTH.Last-JTH.First,VT),
1438 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001439
1440 // Set NextBlock to be the MBB immediately after the current one, if any.
1441 // This is used to avoid emitting unnecessary branches to the next block.
1442 MachineBasicBlock *NextBlock = 0;
1443 MachineFunction::iterator BBI = CurMBB;
1444 if (++BBI != CurMBB->getParent()->end())
1445 NextBlock = BBI;
1446
Dale Johannesen66978ee2009-01-31 02:22:37 +00001447 SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001448 MVT::Other, CopyTo, CMP,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001449 DAG.getBasicBlock(JT.Default));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001450
1451 if (JT.MBB == NextBlock)
1452 DAG.setRoot(BrCond);
1453 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001454 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001455 DAG.getBasicBlock(JT.MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001456}
1457
1458/// visitBitTestHeader - This function emits necessary code to produce value
1459/// suitable for "bit tests"
1460void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
1461 // Subtract the minimum value
1462 SDValue SwitchOp = getValue(B.SValue);
1463 MVT VT = SwitchOp.getValueType();
Dale Johannesen66978ee2009-01-31 02:22:37 +00001464 SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001465 DAG.getConstant(B.First, VT));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001466
1467 // Check range
Duncan Sands5480c042009-01-01 15:52:00 +00001468 SDValue RangeCmp = DAG.getSetCC(TLI.getSetCCResultType(SUB.getValueType()), SUB,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001469 DAG.getConstant(B.Range, VT),
1470 ISD::SETUGT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001471
1472 SDValue ShiftOp;
Duncan Sands92abc622009-01-31 15:50:11 +00001473 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00001474 ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001475 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001476 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001477 ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00001478 TLI.getPointerTy(), SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001479
Duncan Sands92abc622009-01-31 15:50:11 +00001480 B.Reg = FuncInfo.MakeReg(TLI.getPointerTy());
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001481 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), B.Reg, ShiftOp);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001482
1483 // Set NextBlock to be the MBB immediately after the current one, if any.
1484 // This is used to avoid emitting unnecessary branches to the next block.
1485 MachineBasicBlock *NextBlock = 0;
1486 MachineFunction::iterator BBI = CurMBB;
1487 if (++BBI != CurMBB->getParent()->end())
1488 NextBlock = BBI;
1489
1490 MachineBasicBlock* MBB = B.Cases[0].ThisBB;
1491
1492 CurMBB->addSuccessor(B.Default);
1493 CurMBB->addSuccessor(MBB);
1494
Dale Johannesen66978ee2009-01-31 02:22:37 +00001495 SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001496 MVT::Other, CopyTo, RangeCmp,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001497 DAG.getBasicBlock(B.Default));
Anton Korobeynikov23218582008-12-23 22:25:27 +00001498
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001499 if (MBB == NextBlock)
1500 DAG.setRoot(BrRange);
1501 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001502 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001503 DAG.getBasicBlock(MBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001504}
1505
1506/// visitBitTestCase - this function produces one "bit test"
1507void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
1508 unsigned Reg,
1509 BitTestCase &B) {
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001510 // Make desired shift
1511 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), Reg,
Duncan Sands92abc622009-01-31 15:50:11 +00001512 TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00001513 SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001514 TLI.getPointerTy(),
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001515 DAG.getConstant(1, TLI.getPointerTy()),
1516 ShiftOp);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001517
Anton Korobeynikov36c826a2009-01-26 19:26:01 +00001518 // Emit bit tests and jumps
Dale Johannesen66978ee2009-01-31 02:22:37 +00001519 SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001520 TLI.getPointerTy(), SwitchVal,
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001521 DAG.getConstant(B.Mask, TLI.getPointerTy()));
Duncan Sands5480c042009-01-01 15:52:00 +00001522 SDValue AndCmp = DAG.getSetCC(TLI.getSetCCResultType(AndOp.getValueType()),
1523 AndOp, DAG.getConstant(0, TLI.getPointerTy()),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001524 ISD::SETNE);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001525
1526 CurMBB->addSuccessor(B.TargetBB);
1527 CurMBB->addSuccessor(NextMBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001528
Dale Johannesen66978ee2009-01-31 02:22:37 +00001529 SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001530 MVT::Other, getControlRoot(),
Anton Korobeynikov1bfe2372008-12-23 22:25:45 +00001531 AndCmp, DAG.getBasicBlock(B.TargetBB));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001532
1533 // Set NextBlock to be the MBB immediately after the current one, if any.
1534 // This is used to avoid emitting unnecessary branches to the next block.
1535 MachineBasicBlock *NextBlock = 0;
1536 MachineFunction::iterator BBI = CurMBB;
1537 if (++BBI != CurMBB->getParent()->end())
1538 NextBlock = BBI;
1539
1540 if (NextMBB == NextBlock)
1541 DAG.setRoot(BrAnd);
1542 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00001543 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001544 DAG.getBasicBlock(NextMBB)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001545}
1546
1547void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
1548 // Retrieve successors.
1549 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
1550 MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
1551
Gabor Greifb67e6b32009-01-15 11:10:44 +00001552 const Value *Callee(I.getCalledValue());
1553 if (isa<InlineAsm>(Callee))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001554 visitInlineAsm(&I);
1555 else
Gabor Greifb67e6b32009-01-15 11:10:44 +00001556 LowerCallTo(&I, getValue(Callee), false, LandingPad);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001557
1558 // If the value of the invoke is used outside of its defining block, make it
1559 // available as a virtual register.
1560 if (!I.use_empty()) {
1561 DenseMap<const Value*, unsigned>::iterator VMI = FuncInfo.ValueMap.find(&I);
1562 if (VMI != FuncInfo.ValueMap.end())
1563 CopyValueToVirtualRegister(&I, VMI->second);
1564 }
1565
1566 // Update successor info
1567 CurMBB->addSuccessor(Return);
1568 CurMBB->addSuccessor(LandingPad);
1569
1570 // Drop into normal successor.
Dale Johannesen66978ee2009-01-31 02:22:37 +00001571 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00001572 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001573 DAG.getBasicBlock(Return)));
1574}
1575
1576void SelectionDAGLowering::visitUnwind(UnwindInst &I) {
1577}
1578
1579/// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for
1580/// small case ranges).
1581bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR,
1582 CaseRecVector& WorkList,
1583 Value* SV,
1584 MachineBasicBlock* Default) {
1585 Case& BackCase = *(CR.Range.second-1);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001586
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001587 // Size is the number of Cases represented by this range.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001588 size_t Size = CR.Range.second - CR.Range.first;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001589 if (Size > 3)
Anton Korobeynikov23218582008-12-23 22:25:27 +00001590 return false;
1591
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001592 // Get the MachineFunction which holds the current MBB. This is used when
1593 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001594 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001595
1596 // Figure out which block is immediately after the current one.
1597 MachineBasicBlock *NextBlock = 0;
1598 MachineFunction::iterator BBI = CR.CaseBB;
1599
1600 if (++BBI != CurMBB->getParent()->end())
1601 NextBlock = BBI;
1602
1603 // TODO: If any two of the cases has the same destination, and if one value
1604 // is the same as the other, but has one bit unset that the other has set,
1605 // use bit manipulation to do two compares at once. For example:
1606 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)"
Anton Korobeynikov23218582008-12-23 22:25:27 +00001607
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001608 // Rearrange the case blocks so that the last one falls through if possible.
1609 if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) {
1610 // The last case block won't fall through into 'NextBlock' if we emit the
1611 // branches in this order. See if rearranging a case value would help.
1612 for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) {
1613 if (I->BB == NextBlock) {
1614 std::swap(*I, BackCase);
1615 break;
1616 }
1617 }
1618 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001619
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001620 // Create a CaseBlock record representing a conditional branch to
1621 // the Case's target mbb if the value being switched on SV is equal
1622 // to C.
1623 MachineBasicBlock *CurBlock = CR.CaseBB;
1624 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) {
1625 MachineBasicBlock *FallThrough;
1626 if (I != E-1) {
1627 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock());
1628 CurMF->insert(BBI, FallThrough);
1629 } else {
1630 // If the last case doesn't match, go to the default block.
1631 FallThrough = Default;
1632 }
1633
1634 Value *RHS, *LHS, *MHS;
1635 ISD::CondCode CC;
1636 if (I->High == I->Low) {
1637 // This is just small small case range :) containing exactly 1 case
1638 CC = ISD::SETEQ;
1639 LHS = SV; RHS = I->High; MHS = NULL;
1640 } else {
1641 CC = ISD::SETLE;
1642 LHS = I->Low; MHS = SV; RHS = I->High;
1643 }
1644 CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001645
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001646 // If emitting the first comparison, just call visitSwitchCase to emit the
1647 // code into the current block. Otherwise, push the CaseBlock onto the
1648 // vector to be later processed by SDISel, and insert the node's MBB
1649 // before the next MBB.
1650 if (CurBlock == CurMBB)
1651 visitSwitchCase(CB);
1652 else
1653 SwitchCases.push_back(CB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001654
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001655 CurBlock = FallThrough;
1656 }
1657
1658 return true;
1659}
1660
1661static inline bool areJTsAllowed(const TargetLowering &TLI) {
1662 return !DisableJumpTables &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00001663 (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
1664 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001665}
Anton Korobeynikov23218582008-12-23 22:25:27 +00001666
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001667static APInt ComputeRange(const APInt &First, const APInt &Last) {
1668 APInt LastExt(Last), FirstExt(First);
1669 uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1;
1670 LastExt.sext(BitWidth); FirstExt.sext(BitWidth);
1671 return (LastExt - FirstExt + 1ULL);
1672}
1673
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001674/// handleJTSwitchCase - Emit jumptable for current switch case range
1675bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR,
1676 CaseRecVector& WorkList,
1677 Value* SV,
1678 MachineBasicBlock* Default) {
1679 Case& FrontCase = *CR.Range.first;
1680 Case& BackCase = *(CR.Range.second-1);
1681
Anton Korobeynikov23218582008-12-23 22:25:27 +00001682 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1683 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001684
Anton Korobeynikov23218582008-12-23 22:25:27 +00001685 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001686 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1687 I!=E; ++I)
1688 TSize += I->size();
1689
1690 if (!areJTsAllowed(TLI) || TSize <= 3)
1691 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001692
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001693 APInt Range = ComputeRange(First, Last);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001694 double Density = (double)TSize / Range.roundToDouble();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001695 if (Density < 0.4)
1696 return false;
1697
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001698 DEBUG(errs() << "Lowering jump table\n"
1699 << "First entry: " << First << ". Last entry: " << Last << '\n'
1700 << "Range: " << Range
1701 << "Size: " << TSize << ". Density: " << Density << "\n\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001702
1703 // Get the MachineFunction which holds the current MBB. This is used when
1704 // inserting any additional MBBs necessary to represent the switch.
1705 MachineFunction *CurMF = CurMBB->getParent();
1706
1707 // Figure out which block is immediately after the current one.
1708 MachineBasicBlock *NextBlock = 0;
1709 MachineFunction::iterator BBI = CR.CaseBB;
1710
1711 if (++BBI != CurMBB->getParent()->end())
1712 NextBlock = BBI;
1713
1714 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1715
1716 // Create a new basic block to hold the code for loading the address
1717 // of the jump table, and jumping to it. Update successor information;
1718 // we will either branch to the default case for the switch, or the jump
1719 // table.
1720 MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1721 CurMF->insert(BBI, JumpTableBB);
1722 CR.CaseBB->addSuccessor(Default);
1723 CR.CaseBB->addSuccessor(JumpTableBB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001724
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001725 // Build a vector of destination BBs, corresponding to each target
1726 // of the jump table. If the value of the jump table slot corresponds to
1727 // a case statement, push the case's BB onto the vector, otherwise, push
1728 // the default BB.
1729 std::vector<MachineBasicBlock*> DestBBs;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001730 APInt TEI = First;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001731 for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++TEI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001732 const APInt& Low = cast<ConstantInt>(I->Low)->getValue();
1733 const APInt& High = cast<ConstantInt>(I->High)->getValue();
1734
1735 if (Low.sle(TEI) && TEI.sle(High)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001736 DestBBs.push_back(I->BB);
1737 if (TEI==High)
1738 ++I;
1739 } else {
1740 DestBBs.push_back(Default);
1741 }
1742 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001743
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001744 // Update successor info. Add one edge to each unique successor.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001745 BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs());
1746 for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001747 E = DestBBs.end(); I != E; ++I) {
1748 if (!SuccsHandled[(*I)->getNumber()]) {
1749 SuccsHandled[(*I)->getNumber()] = true;
1750 JumpTableBB->addSuccessor(*I);
1751 }
1752 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001753
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001754 // Create a jump table index for this jump table, or return an existing
1755 // one.
1756 unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001757
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001758 // Set the jump table information so that we can codegen it as a second
1759 // MachineBasicBlock
1760 JumpTable JT(-1U, JTI, JumpTableBB, Default);
1761 JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB));
1762 if (CR.CaseBB == CurMBB)
1763 visitJumpTableHeader(JT, JTH);
Anton Korobeynikov23218582008-12-23 22:25:27 +00001764
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001765 JTCases.push_back(JumpTableBlock(JTH, JT));
1766
1767 return true;
1768}
1769
1770/// handleBTSplitSwitchCase - emit comparison and split binary search tree into
1771/// 2 subtrees.
1772bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR,
1773 CaseRecVector& WorkList,
1774 Value* SV,
1775 MachineBasicBlock* Default) {
1776 // Get the MachineFunction which holds the current MBB. This is used when
1777 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001778 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001779
1780 // Figure out which block is immediately after the current one.
1781 MachineBasicBlock *NextBlock = 0;
1782 MachineFunction::iterator BBI = CR.CaseBB;
1783
1784 if (++BBI != CurMBB->getParent()->end())
1785 NextBlock = BBI;
1786
1787 Case& FrontCase = *CR.Range.first;
1788 Case& BackCase = *(CR.Range.second-1);
1789 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1790
1791 // Size is the number of Cases represented by this range.
1792 unsigned Size = CR.Range.second - CR.Range.first;
1793
Anton Korobeynikov23218582008-12-23 22:25:27 +00001794 const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue();
1795 const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001796 double FMetric = 0;
1797 CaseItr Pivot = CR.Range.first + Size/2;
1798
1799 // Select optimal pivot, maximizing sum density of LHS and RHS. This will
1800 // (heuristically) allow us to emit JumpTable's later.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001801 size_t TSize = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001802 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1803 I!=E; ++I)
1804 TSize += I->size();
1805
Anton Korobeynikov23218582008-12-23 22:25:27 +00001806 size_t LSize = FrontCase.size();
1807 size_t RSize = TSize-LSize;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001808 DEBUG(errs() << "Selecting best pivot: \n"
1809 << "First: " << First << ", Last: " << Last <<'\n'
1810 << "LSize: " << LSize << ", RSize: " << RSize << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001811 for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second;
1812 J!=E; ++I, ++J) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001813 const APInt& LEnd = cast<ConstantInt>(I->High)->getValue();
1814 const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001815 APInt Range = ComputeRange(LEnd, RBegin);
1816 assert((Range - 2ULL).isNonNegative() &&
1817 "Invalid case distance");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001818 double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble();
1819 double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001820 double Metric = Range.logBase2()*(LDensity+RDensity);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001821 // Should always split in some non-trivial place
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001822 DEBUG(errs() <<"=>Step\n"
1823 << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n'
1824 << "LDensity: " << LDensity
1825 << ", RDensity: " << RDensity << '\n'
1826 << "Metric: " << Metric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001827 if (FMetric < Metric) {
1828 Pivot = J;
1829 FMetric = Metric;
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001830 DEBUG(errs() << "Current metric set to: " << FMetric << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001831 }
1832
1833 LSize += J->size();
1834 RSize -= J->size();
1835 }
1836 if (areJTsAllowed(TLI)) {
1837 // If our case is dense we *really* should handle it earlier!
1838 assert((FMetric > 0) && "Should handle dense range earlier!");
1839 } else {
1840 Pivot = CR.Range.first + Size/2;
1841 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001842
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001843 CaseRange LHSR(CR.Range.first, Pivot);
1844 CaseRange RHSR(Pivot, CR.Range.second);
1845 Constant *C = Pivot->Low;
1846 MachineBasicBlock *FalseBB = 0, *TrueBB = 0;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001847
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001848 // We know that we branch to the LHS if the Value being switched on is
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001849 // less than the Pivot value, C. We use this to optimize our binary
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001850 // tree a bit, by recognizing that if SV is greater than or equal to the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001851 // LHS's Case Value, and that Case Value is exactly one less than the
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001852 // Pivot's Value, then we can branch directly to the LHS's Target,
1853 // rather than creating a leaf node for it.
1854 if ((LHSR.second - LHSR.first) == 1 &&
1855 LHSR.first->High == CR.GE &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001856 cast<ConstantInt>(C)->getValue() ==
1857 (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001858 TrueBB = LHSR.first->BB;
1859 } else {
1860 TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1861 CurMF->insert(BBI, TrueBB);
1862 WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR));
1863 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001864
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001865 // Similar to the optimization above, if the Value being switched on is
1866 // known to be less than the Constant CR.LT, and the current Case Value
1867 // is CR.LT - 1, then we can branch directly to the target block for
1868 // the current Case Value, rather than emitting a RHS leaf node for it.
1869 if ((RHSR.second - RHSR.first) == 1 && CR.LT &&
Anton Korobeynikov23218582008-12-23 22:25:27 +00001870 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
1871 (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001872 FalseBB = RHSR.first->BB;
1873 } else {
1874 FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1875 CurMF->insert(BBI, FalseBB);
1876 WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR));
1877 }
1878
1879 // Create a CaseBlock record representing a conditional branch to
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00001880 // the LHS node if the value being switched on SV is less than C.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001881 // Otherwise, branch to LHS.
1882 CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB);
1883
1884 if (CR.CaseBB == CurMBB)
1885 visitSwitchCase(CB);
1886 else
1887 SwitchCases.push_back(CB);
1888
1889 return true;
1890}
1891
1892/// handleBitTestsSwitchCase - if current case range has few destination and
1893/// range span less, than machine word bitwidth, encode case range into series
1894/// of masks and emit bit tests with these masks.
1895bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR,
1896 CaseRecVector& WorkList,
1897 Value* SV,
1898 MachineBasicBlock* Default){
1899 unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits();
1900
1901 Case& FrontCase = *CR.Range.first;
1902 Case& BackCase = *(CR.Range.second-1);
1903
1904 // Get the MachineFunction which holds the current MBB. This is used when
1905 // inserting any additional MBBs necessary to represent the switch.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001906 MachineFunction *CurMF = CurMBB->getParent();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001907
Anton Korobeynikov23218582008-12-23 22:25:27 +00001908 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001909 for (CaseItr I = CR.Range.first, E = CR.Range.second;
1910 I!=E; ++I) {
1911 // Single case counts one, case range - two.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001912 numCmps += (I->Low == I->High ? 1 : 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001913 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001914
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001915 // Count unique destinations
1916 SmallSet<MachineBasicBlock*, 4> Dests;
1917 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1918 Dests.insert(I->BB);
1919 if (Dests.size() > 3)
1920 // Don't bother the code below, if there are too much unique destinations
1921 return false;
1922 }
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001923 DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n'
1924 << "Total number of comparisons: " << numCmps << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001925
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001926 // Compute span of values.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001927 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
1928 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue();
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00001929 APInt cmpRange = maxValue - minValue;
1930
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001931 DEBUG(errs() << "Compare range: " << cmpRange << '\n'
1932 << "Low bound: " << minValue << '\n'
1933 << "High bound: " << maxValue << '\n');
Anton Korobeynikov23218582008-12-23 22:25:27 +00001934
1935 if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) ||
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001936 (!(Dests.size() == 1 && numCmps >= 3) &&
1937 !(Dests.size() == 2 && numCmps >= 5) &&
1938 !(Dests.size() >= 3 && numCmps >= 6)))
1939 return false;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001940
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001941 DEBUG(errs() << "Emitting bit tests\n");
Anton Korobeynikov23218582008-12-23 22:25:27 +00001942 APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth());
1943
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001944 // Optimize the case where all the case values fit in a
1945 // word without having to subtract minValue. In this case,
1946 // we can optimize away the subtraction.
Anton Korobeynikov23218582008-12-23 22:25:27 +00001947 if (minValue.isNonNegative() &&
1948 maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) {
1949 cmpRange = maxValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001950 } else {
Anton Korobeynikov23218582008-12-23 22:25:27 +00001951 lowBound = minValue;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001952 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001953
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001954 CaseBitsVector CasesBits;
1955 unsigned i, count = 0;
1956
1957 for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) {
1958 MachineBasicBlock* Dest = I->BB;
1959 for (i = 0; i < count; ++i)
1960 if (Dest == CasesBits[i].BB)
1961 break;
Anton Korobeynikov23218582008-12-23 22:25:27 +00001962
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001963 if (i == count) {
1964 assert((count < 3) && "Too much destinations to test!");
1965 CasesBits.push_back(CaseBits(0, Dest, 0));
1966 count++;
1967 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001968
1969 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
1970 const APInt& highValue = cast<ConstantInt>(I->High)->getValue();
1971
1972 uint64_t lo = (lowValue - lowBound).getZExtValue();
1973 uint64_t hi = (highValue - lowBound).getZExtValue();
1974
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001975 for (uint64_t j = lo; j <= hi; j++) {
1976 CasesBits[i].Mask |= 1ULL << j;
1977 CasesBits[i].Bits++;
1978 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00001979
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001980 }
1981 std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp());
Anton Korobeynikov23218582008-12-23 22:25:27 +00001982
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001983 BitTestInfo BTC;
1984
1985 // Figure out which block is immediately after the current one.
1986 MachineFunction::iterator BBI = CR.CaseBB;
1987 ++BBI;
1988
1989 const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock();
1990
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001991 DEBUG(errs() << "Cases:\n");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001992 for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) {
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00001993 DEBUG(errs() << "Mask: " << CasesBits[i].Mask
1994 << ", Bits: " << CasesBits[i].Bits
1995 << ", BB: " << CasesBits[i].BB << '\n');
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001996
1997 MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB);
1998 CurMF->insert(BBI, CaseBB);
1999 BTC.push_back(BitTestCase(CasesBits[i].Mask,
2000 CaseBB,
2001 CasesBits[i].BB));
2002 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002003
2004 BitTestBlock BTB(lowBound, cmpRange, SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002005 -1U, (CR.CaseBB == CurMBB),
2006 CR.CaseBB, Default, BTC);
2007
2008 if (CR.CaseBB == CurMBB)
2009 visitBitTestHeader(BTB);
Anton Korobeynikov23218582008-12-23 22:25:27 +00002010
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002011 BitTestCases.push_back(BTB);
2012
2013 return true;
2014}
2015
2016
2017/// Clusterify - Transform simple list of Cases into list of CaseRange's
Anton Korobeynikov23218582008-12-23 22:25:27 +00002018size_t SelectionDAGLowering::Clusterify(CaseVector& Cases,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002019 const SwitchInst& SI) {
Anton Korobeynikov23218582008-12-23 22:25:27 +00002020 size_t numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002021
2022 // Start with "simple" cases
Anton Korobeynikov23218582008-12-23 22:25:27 +00002023 for (size_t i = 1; i < SI.getNumSuccessors(); ++i) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002024 MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)];
2025 Cases.push_back(Case(SI.getSuccessorValue(i),
2026 SI.getSuccessorValue(i),
2027 SMBB));
2028 }
2029 std::sort(Cases.begin(), Cases.end(), CaseCmp());
2030
2031 // Merge case into clusters
Anton Korobeynikov23218582008-12-23 22:25:27 +00002032 if (Cases.size() >= 2)
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002033 // Must recompute end() each iteration because it may be
2034 // invalidated by erase if we hold on to it
Anton Korobeynikov23218582008-12-23 22:25:27 +00002035 for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) {
2036 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2037 const APInt& currentValue = cast<ConstantInt>(I->High)->getValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002038 MachineBasicBlock* nextBB = J->BB;
2039 MachineBasicBlock* currentBB = I->BB;
2040
2041 // If the two neighboring cases go to the same destination, merge them
2042 // into a single case.
Anton Korobeynikov23218582008-12-23 22:25:27 +00002043 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002044 I->High = J->High;
2045 J = Cases.erase(J);
2046 } else {
2047 I = J++;
2048 }
2049 }
2050
2051 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
2052 if (I->Low != I->High)
2053 // A range counts double, since it requires two compares.
2054 ++numCmps;
2055 }
2056
2057 return numCmps;
2058}
2059
Anton Korobeynikov23218582008-12-23 22:25:27 +00002060void SelectionDAGLowering::visitSwitch(SwitchInst &SI) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002061 // Figure out which block is immediately after the current one.
2062 MachineBasicBlock *NextBlock = 0;
2063 MachineFunction::iterator BBI = CurMBB;
2064
2065 MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()];
2066
2067 // If there is only the default destination, branch to it if it is not the
2068 // next basic block. Otherwise, just fall through.
2069 if (SI.getNumOperands() == 2) {
2070 // Update machine-CFG edges.
2071
2072 // If this is not a fall-through branch, emit the branch.
2073 CurMBB->addSuccessor(Default);
2074 if (Default != NextBlock)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002075 DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002076 MVT::Other, getControlRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002077 DAG.getBasicBlock(Default)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002078 return;
2079 }
Anton Korobeynikov23218582008-12-23 22:25:27 +00002080
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002081 // If there are any non-default case statements, create a vector of Cases
2082 // representing each one, and sort the vector so that we can efficiently
2083 // create a binary search tree from them.
2084 CaseVector Cases;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002085 size_t numCmps = Clusterify(Cases, SI);
Anton Korobeynikov56d245b2008-12-23 22:26:18 +00002086 DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size()
2087 << ". Total compares: " << numCmps << '\n');
Devang Patel8a84e442009-01-05 17:31:22 +00002088 numCmps = 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002089
2090 // Get the Value to be switched on and default basic blocks, which will be
2091 // inserted into CaseBlock records, representing basic blocks in the binary
2092 // search tree.
2093 Value *SV = SI.getOperand(0);
2094
2095 // Push the initial CaseRec onto the worklist
2096 CaseRecVector WorkList;
2097 WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end())));
2098
2099 while (!WorkList.empty()) {
2100 // Grab a record representing a case range to process off the worklist
2101 CaseRec CR = WorkList.back();
2102 WorkList.pop_back();
2103
2104 if (handleBitTestsSwitchCase(CR, WorkList, SV, Default))
2105 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002106
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002107 // If the range has few cases (two or less) emit a series of specific
2108 // tests.
2109 if (handleSmallSwitchRange(CR, WorkList, SV, Default))
2110 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002111
Anton Korobeynikove2f95e92008-12-23 22:26:01 +00002112 // If the switch has more than 5 blocks, and at least 40% dense, and the
2113 // target supports indirect branches, then emit a jump table rather than
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002114 // lowering the switch to a binary tree of conditional branches.
2115 if (handleJTSwitchCase(CR, WorkList, SV, Default))
2116 continue;
Anton Korobeynikov23218582008-12-23 22:25:27 +00002117
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002118 // Emit binary tree. We need to pick a pivot, and push left and right ranges
2119 // onto the worklist. Leafs are handled via handleSmallSwitchRange() call.
2120 handleBTSplitSwitchCase(CR, WorkList, SV, Default);
2121 }
2122}
2123
2124
2125void SelectionDAGLowering::visitSub(User &I) {
2126 // -0.0 - X --> fneg
2127 const Type *Ty = I.getType();
2128 if (isa<VectorType>(Ty)) {
2129 if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) {
2130 const VectorType *DestTy = cast<VectorType>(I.getType());
2131 const Type *ElTy = DestTy->getElementType();
2132 if (ElTy->isFloatingPoint()) {
2133 unsigned VL = DestTy->getNumElements();
2134 std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy));
2135 Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size());
2136 if (CV == CNZ) {
2137 SDValue Op2 = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002138 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002139 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002140 return;
2141 }
2142 }
2143 }
2144 }
2145 if (Ty->isFloatingPoint()) {
2146 if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0)))
2147 if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) {
2148 SDValue Op2 = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002149 setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002150 Op2.getValueType(), Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002151 return;
2152 }
2153 }
2154
2155 visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB);
2156}
2157
2158void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) {
2159 SDValue Op1 = getValue(I.getOperand(0));
2160 SDValue Op2 = getValue(I.getOperand(1));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002161
Dale Johannesen66978ee2009-01-31 02:22:37 +00002162 setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002163 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002164}
2165
2166void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) {
2167 SDValue Op1 = getValue(I.getOperand(0));
2168 SDValue Op2 = getValue(I.getOperand(1));
2169 if (!isa<VectorType>(I.getType())) {
Duncan Sands92abc622009-01-31 15:50:11 +00002170 if (TLI.getPointerTy().bitsLT(Op2.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002171 Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002172 TLI.getPointerTy(), Op2);
2173 else if (TLI.getPointerTy().bitsGT(Op2.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002174 Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(),
Duncan Sands92abc622009-01-31 15:50:11 +00002175 TLI.getPointerTy(), Op2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002176 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002177
Dale Johannesen66978ee2009-01-31 02:22:37 +00002178 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002179 Op1.getValueType(), Op1, Op2));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002180}
2181
2182void SelectionDAGLowering::visitICmp(User &I) {
2183 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2184 if (ICmpInst *IC = dyn_cast<ICmpInst>(&I))
2185 predicate = IC->getPredicate();
2186 else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I))
2187 predicate = ICmpInst::Predicate(IC->getPredicate());
2188 SDValue Op1 = getValue(I.getOperand(0));
2189 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002190 ISD::CondCode Opcode = getICmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002191 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Opcode));
2192}
2193
2194void SelectionDAGLowering::visitFCmp(User &I) {
2195 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2196 if (FCmpInst *FC = dyn_cast<FCmpInst>(&I))
2197 predicate = FC->getPredicate();
2198 else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I))
2199 predicate = FCmpInst::Predicate(FC->getPredicate());
2200 SDValue Op1 = getValue(I.getOperand(0));
2201 SDValue Op2 = getValue(I.getOperand(1));
Dan Gohman8c1a6ca2008-10-17 18:18:45 +00002202 ISD::CondCode Condition = getFCmpCondCode(predicate);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002203 setValue(&I, DAG.getSetCC(MVT::i1, Op1, Op2, Condition));
2204}
2205
2206void SelectionDAGLowering::visitVICmp(User &I) {
2207 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE;
2208 if (VICmpInst *IC = dyn_cast<VICmpInst>(&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);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002215 setValue(&I, DAG.getVSetCC(Op1.getValueType(), Op1, Op2, Opcode));
2216}
2217
2218void SelectionDAGLowering::visitVFCmp(User &I) {
2219 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE;
2220 if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&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);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002227 MVT DestVT = TLI.getValueType(I.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002228
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002229 setValue(&I, DAG.getVSetCC(DestVT, Op1, Op2, Condition));
2230}
2231
2232void SelectionDAGLowering::visitSelect(User &I) {
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002233 SmallVector<MVT, 4> ValueVTs;
2234 ComputeValueVTs(TLI, I.getType(), ValueVTs);
2235 unsigned NumValues = ValueVTs.size();
2236 if (NumValues != 0) {
2237 SmallVector<SDValue, 4> Values(NumValues);
2238 SDValue Cond = getValue(I.getOperand(0));
2239 SDValue TrueVal = getValue(I.getOperand(1));
2240 SDValue FalseVal = getValue(I.getOperand(2));
2241
2242 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002243 Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002244 TrueVal.getValueType(), Cond,
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002245 SDValue(TrueVal.getNode(), TrueVal.getResNo() + i),
2246 SDValue(FalseVal.getNode(), FalseVal.getResNo() + i));
2247
Dale Johannesen66978ee2009-01-31 02:22:37 +00002248 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002249 DAG.getVTList(&ValueVTs[0], NumValues),
2250 &Values[0], NumValues));
Dan Gohman7ea1ca62008-10-21 20:00:42 +00002251 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002252}
2253
2254
2255void SelectionDAGLowering::visitTrunc(User &I) {
2256 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest).
2257 SDValue N = getValue(I.getOperand(0));
2258 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002259 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002260}
2261
2262void SelectionDAGLowering::visitZExt(User &I) {
2263 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2264 // ZExt also can't be a cast to bool for same reason. So, nothing much to do
2265 SDValue N = getValue(I.getOperand(0));
2266 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002267 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002268}
2269
2270void SelectionDAGLowering::visitSExt(User &I) {
2271 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest).
2272 // SExt also can't be a cast to bool for same reason. So, nothing much to do
2273 SDValue N = getValue(I.getOperand(0));
2274 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002275 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002276}
2277
2278void SelectionDAGLowering::visitFPTrunc(User &I) {
2279 // FPTrunc is never a no-op cast, no need to check
2280 SDValue N = getValue(I.getOperand(0));
2281 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002282 setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002283 DestVT, N, DAG.getIntPtrConstant(0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002284}
2285
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002286void SelectionDAGLowering::visitFPExt(User &I){
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002287 // FPTrunc is never a no-op cast, no need to check
2288 SDValue N = getValue(I.getOperand(0));
2289 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002290 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002291}
2292
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002293void SelectionDAGLowering::visitFPToUI(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002294 // FPToUI is never a no-op cast, no need to check
2295 SDValue N = getValue(I.getOperand(0));
2296 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002297 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002298}
2299
2300void SelectionDAGLowering::visitFPToSI(User &I) {
2301 // FPToSI is never a no-op cast, no need to check
2302 SDValue N = getValue(I.getOperand(0));
2303 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002304 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002305}
2306
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002307void SelectionDAGLowering::visitUIToFP(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002308 // UIToFP is never a no-op cast, no need to check
2309 SDValue N = getValue(I.getOperand(0));
2310 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002311 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002312}
2313
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002314void SelectionDAGLowering::visitSIToFP(User &I){
Bill Wendling181b6272008-10-19 20:34:04 +00002315 // SIToFP is never a no-op cast, no need to check
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002316 SDValue N = getValue(I.getOperand(0));
2317 MVT DestVT = TLI.getValueType(I.getType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002318 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002319}
2320
2321void SelectionDAGLowering::visitPtrToInt(User &I) {
2322 // What to do depends on the size of the integer and the size of the pointer.
2323 // We can either truncate, zero extend, or no-op, accordingly.
2324 SDValue N = getValue(I.getOperand(0));
2325 MVT SrcVT = N.getValueType();
2326 MVT DestVT = TLI.getValueType(I.getType());
2327 SDValue Result;
2328 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002329 Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002330 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002331 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002332 Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002333 setValue(&I, Result);
2334}
2335
2336void SelectionDAGLowering::visitIntToPtr(User &I) {
2337 // What to do depends on the size of the integer and the size of the pointer.
2338 // We can either truncate, zero extend, or no-op, accordingly.
2339 SDValue N = getValue(I.getOperand(0));
2340 MVT SrcVT = N.getValueType();
2341 MVT DestVT = TLI.getValueType(I.getType());
2342 if (DestVT.bitsLT(SrcVT))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002343 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002344 else
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002345 // Note: ZERO_EXTEND can handle cases where the sizes are equal too
Dale Johannesen66978ee2009-01-31 02:22:37 +00002346 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002347 DestVT, N));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002348}
2349
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002350void SelectionDAGLowering::visitBitCast(User &I) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002351 SDValue N = getValue(I.getOperand(0));
2352 MVT DestVT = TLI.getValueType(I.getType());
2353
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002354 // BitCast assures us that source and destination are the same size so this
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002355 // is either a BIT_CONVERT or a no-op.
2356 if (DestVT != N.getValueType())
Dale Johannesen66978ee2009-01-31 02:22:37 +00002357 setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002358 DestVT, N)); // convert types
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002359 else
2360 setValue(&I, N); // noop cast.
2361}
2362
2363void SelectionDAGLowering::visitInsertElement(User &I) {
2364 SDValue InVec = getValue(I.getOperand(0));
2365 SDValue InVal = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002366 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002367 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002368 getValue(I.getOperand(2)));
2369
Dale Johannesen66978ee2009-01-31 02:22:37 +00002370 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002371 TLI.getValueType(I.getType()),
2372 InVec, InVal, InIdx));
2373}
2374
2375void SelectionDAGLowering::visitExtractElement(User &I) {
2376 SDValue InVec = getValue(I.getOperand(0));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002377 SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002378 TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002379 getValue(I.getOperand(1)));
Dale Johannesen66978ee2009-01-31 02:22:37 +00002380 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002381 TLI.getValueType(I.getType()), InVec, InIdx));
2382}
2383
Mon P Wangaeb06d22008-11-10 04:46:22 +00002384
2385// Utility for visitShuffleVector - Returns true if the mask is mask starting
2386// from SIndx and increasing to the element length (undefs are allowed).
2387static bool SequentialMask(SDValue Mask, unsigned SIndx) {
Mon P Wangc7849c22008-11-16 05:06:27 +00002388 unsigned MaskNumElts = Mask.getNumOperands();
2389 for (unsigned i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002390 if (Mask.getOperand(i).getOpcode() != ISD::UNDEF) {
2391 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2392 if (Idx != i + SIndx)
2393 return false;
2394 }
2395 }
2396 return true;
2397}
2398
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002399void SelectionDAGLowering::visitShuffleVector(User &I) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002400 SDValue Src1 = getValue(I.getOperand(0));
2401 SDValue Src2 = getValue(I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002402 SDValue Mask = getValue(I.getOperand(2));
2403
Mon P Wangaeb06d22008-11-10 04:46:22 +00002404 MVT VT = TLI.getValueType(I.getType());
Mon P Wang230e4fa2008-11-21 04:25:21 +00002405 MVT SrcVT = Src1.getValueType();
Mon P Wangc7849c22008-11-16 05:06:27 +00002406 int MaskNumElts = Mask.getNumOperands();
2407 int SrcNumElts = SrcVT.getVectorNumElements();
Mon P Wangaeb06d22008-11-10 04:46:22 +00002408
Mon P Wangc7849c22008-11-16 05:06:27 +00002409 if (SrcNumElts == MaskNumElts) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002410 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002411 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002412 return;
2413 }
2414
2415 // Normalize the shuffle vector since mask and vector length don't match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002416 MVT MaskEltVT = Mask.getValueType().getVectorElementType();
2417
2418 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2419 // Mask is longer than the source vectors and is a multiple of the source
2420 // vectors. We can use concatenate vector to make the mask and vectors
Mon P Wang230e4fa2008-11-21 04:25:21 +00002421 // lengths match.
Mon P Wangc7849c22008-11-16 05:06:27 +00002422 if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) {
2423 // The shuffle is concatenating two vectors together.
Dale Johannesen66978ee2009-01-31 02:22:37 +00002424 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002425 VT, Src1, Src2));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002426 return;
2427 }
2428
Mon P Wangc7849c22008-11-16 05:06:27 +00002429 // Pad both vectors with undefs to make them the same length as the mask.
2430 unsigned NumConcat = MaskNumElts / SrcNumElts;
Dale Johannesen66978ee2009-01-31 02:22:37 +00002431 SDValue UndefVal = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), SrcVT);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002432
Mon P Wang230e4fa2008-11-21 04:25:21 +00002433 SDValue* MOps1 = new SDValue[NumConcat];
2434 SDValue* MOps2 = new SDValue[NumConcat];
2435 MOps1[0] = Src1;
2436 MOps2[0] = Src2;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002437 for (unsigned i = 1; i != NumConcat; ++i) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002438 MOps1[i] = UndefVal;
2439 MOps2[i] = UndefVal;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002440 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002441 Src1 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002442 VT, MOps1, NumConcat);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002443 Src2 = DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002444 VT, MOps2, NumConcat);
Mon P Wang230e4fa2008-11-21 04:25:21 +00002445
2446 delete [] MOps1;
2447 delete [] MOps2;
2448
Mon P Wangaeb06d22008-11-10 04:46:22 +00002449 // Readjust mask for new input vector length.
2450 SmallVector<SDValue, 8> MappedOps;
Mon P Wangc7849c22008-11-16 05:06:27 +00002451 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002452 if (Mask.getOperand(i).getOpcode() == ISD::UNDEF) {
2453 MappedOps.push_back(Mask.getOperand(i));
2454 } else {
Mon P Wangc7849c22008-11-16 05:06:27 +00002455 int Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getZExtValue();
2456 if (Idx < SrcNumElts)
2457 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
2458 else
2459 MappedOps.push_back(DAG.getConstant(Idx + MaskNumElts - SrcNumElts,
2460 MaskEltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002461 }
2462 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002463 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002464 Mask.getValueType(),
Mon P Wangaeb06d22008-11-10 04:46:22 +00002465 &MappedOps[0], MappedOps.size());
2466
Dale Johannesen66978ee2009-01-31 02:22:37 +00002467 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002468 VT, Src1, Src2, Mask));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002469 return;
2470 }
2471
Mon P Wangc7849c22008-11-16 05:06:27 +00002472 if (SrcNumElts > MaskNumElts) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002473 // Resulting vector is shorter than the incoming vector.
Mon P Wangc7849c22008-11-16 05:06:27 +00002474 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002475 // Shuffle extracts 1st vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002476 setValue(&I, Src1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002477 return;
2478 }
2479
Mon P Wangc7849c22008-11-16 05:06:27 +00002480 if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002481 // Shuffle extracts 2nd vector.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002482 setValue(&I, Src2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00002483 return;
2484 }
2485
Mon P Wangc7849c22008-11-16 05:06:27 +00002486 // Analyze the access pattern of the vector to see if we can extract
2487 // two subvectors and do the shuffle. The analysis is done by calculating
2488 // the range of elements the mask access on both vectors.
2489 int MinRange[2] = { SrcNumElts+1, SrcNumElts+1};
2490 int MaxRange[2] = {-1, -1};
2491
2492 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002493 SDValue Arg = Mask.getOperand(i);
2494 if (Arg.getOpcode() != ISD::UNDEF) {
2495 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002496 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2497 int Input = 0;
2498 if (Idx >= SrcNumElts) {
2499 Input = 1;
2500 Idx -= SrcNumElts;
2501 }
2502 if (Idx > MaxRange[Input])
2503 MaxRange[Input] = Idx;
2504 if (Idx < MinRange[Input])
2505 MinRange[Input] = Idx;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002506 }
2507 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002508
Mon P Wangc7849c22008-11-16 05:06:27 +00002509 // Check if the access is smaller than the vector size and can we find
2510 // a reasonable extract index.
Mon P Wang230e4fa2008-11-21 04:25:21 +00002511 int RangeUse[2] = { 2, 2 }; // 0 = Unused, 1 = Extract, 2 = Can not Extract.
Mon P Wangc7849c22008-11-16 05:06:27 +00002512 int StartIdx[2]; // StartIdx to extract from
2513 for (int Input=0; Input < 2; ++Input) {
2514 if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) {
2515 RangeUse[Input] = 0; // Unused
2516 StartIdx[Input] = 0;
2517 } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) {
2518 // Fits within range but we should see if we can find a good
Mon P Wang230e4fa2008-11-21 04:25:21 +00002519 // start index that is a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002520 if (MaxRange[Input] < MaskNumElts) {
2521 RangeUse[Input] = 1; // Extract from beginning of the vector
2522 StartIdx[Input] = 0;
2523 } else {
2524 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts;
Mon P Wang6cce3da2008-11-23 04:35:05 +00002525 if (MaxRange[Input] - StartIdx[Input] < MaskNumElts &&
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002526 StartIdx[Input] + MaskNumElts < SrcNumElts)
Mon P Wangc7849c22008-11-16 05:06:27 +00002527 RangeUse[Input] = 1; // Extract from a multiple of the mask length.
Mon P Wangc7849c22008-11-16 05:06:27 +00002528 }
Mon P Wang230e4fa2008-11-21 04:25:21 +00002529 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002530 }
2531
2532 if (RangeUse[0] == 0 && RangeUse[0] == 0) {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002533 setValue(&I, DAG.getNode(ISD::UNDEF,
Dale Johannesen66978ee2009-01-31 02:22:37 +00002534 getCurDebugLoc(), VT)); // Vectors are not used.
Mon P Wangc7849c22008-11-16 05:06:27 +00002535 return;
2536 }
2537 else if (RangeUse[0] < 2 && RangeUse[1] < 2) {
2538 // Extract appropriate subvector and generate a vector shuffle
2539 for (int Input=0; Input < 2; ++Input) {
Mon P Wang230e4fa2008-11-21 04:25:21 +00002540 SDValue& Src = Input == 0 ? Src1 : Src2;
Mon P Wangc7849c22008-11-16 05:06:27 +00002541 if (RangeUse[Input] == 0) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002542 Src = DAG.getNode(ISD::UNDEF, getCurDebugLoc(), VT);
Mon P Wangc7849c22008-11-16 05:06:27 +00002543 } else {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002544 Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002545 Src, DAG.getIntPtrConstant(StartIdx[Input]));
Mon P Wangc7849c22008-11-16 05:06:27 +00002546 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00002547 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002548 // Calculate new mask.
2549 SmallVector<SDValue, 8> MappedOps;
2550 for (int i = 0; i != MaskNumElts; ++i) {
2551 SDValue Arg = Mask.getOperand(i);
2552 if (Arg.getOpcode() == ISD::UNDEF) {
2553 MappedOps.push_back(Arg);
2554 } else {
2555 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2556 if (Idx < SrcNumElts)
2557 MappedOps.push_back(DAG.getConstant(Idx - StartIdx[0], MaskEltVT));
2558 else {
2559 Idx = Idx - SrcNumElts - StartIdx[1] + MaskNumElts;
2560 MappedOps.push_back(DAG.getConstant(Idx, MaskEltVT));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002561 }
Mon P Wangc7849c22008-11-16 05:06:27 +00002562 }
2563 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002564 Mask = DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002565 Mask.getValueType(),
Mon P Wangc7849c22008-11-16 05:06:27 +00002566 &MappedOps[0], MappedOps.size());
Dale Johannesen66978ee2009-01-31 02:22:37 +00002567 setValue(&I, DAG.getNode(ISD::VECTOR_SHUFFLE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002568 VT, Src1, Src2, Mask));
Mon P Wangc7849c22008-11-16 05:06:27 +00002569 return;
Mon P Wangaeb06d22008-11-10 04:46:22 +00002570 }
2571 }
2572
Mon P Wangc7849c22008-11-16 05:06:27 +00002573 // We can't use either concat vectors or extract subvectors so fall back to
2574 // replacing the shuffle with extract and build vector.
2575 // to insert and build vector.
Mon P Wangaeb06d22008-11-10 04:46:22 +00002576 MVT EltVT = VT.getVectorElementType();
2577 MVT PtrVT = TLI.getPointerTy();
2578 SmallVector<SDValue,8> Ops;
Mon P Wangc7849c22008-11-16 05:06:27 +00002579 for (int i = 0; i != MaskNumElts; ++i) {
Mon P Wangaeb06d22008-11-10 04:46:22 +00002580 SDValue Arg = Mask.getOperand(i);
2581 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002582 Ops.push_back(DAG.getNode(ISD::UNDEF, getCurDebugLoc(), EltVT));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002583 } else {
2584 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Mon P Wangc7849c22008-11-16 05:06:27 +00002585 int Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
2586 if (Idx < SrcNumElts)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002587 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002588 EltVT, Src1, DAG.getConstant(Idx, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002589 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002590 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002591 EltVT, Src2,
Mon P Wangc7849c22008-11-16 05:06:27 +00002592 DAG.getConstant(Idx - SrcNumElts, PtrVT)));
Mon P Wangaeb06d22008-11-10 04:46:22 +00002593 }
2594 }
Dale Johannesen66978ee2009-01-31 02:22:37 +00002595 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002596 VT, &Ops[0], Ops.size()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002597}
2598
2599void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) {
2600 const Value *Op0 = I.getOperand(0);
2601 const Value *Op1 = I.getOperand(1);
2602 const Type *AggTy = I.getType();
2603 const Type *ValTy = Op1->getType();
2604 bool IntoUndef = isa<UndefValue>(Op0);
2605 bool FromUndef = isa<UndefValue>(Op1);
2606
2607 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2608 I.idx_begin(), I.idx_end());
2609
2610 SmallVector<MVT, 4> AggValueVTs;
2611 ComputeValueVTs(TLI, AggTy, AggValueVTs);
2612 SmallVector<MVT, 4> ValValueVTs;
2613 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2614
2615 unsigned NumAggValues = AggValueVTs.size();
2616 unsigned NumValValues = ValValueVTs.size();
2617 SmallVector<SDValue, 4> Values(NumAggValues);
2618
2619 SDValue Agg = getValue(Op0);
2620 SDValue Val = getValue(Op1);
2621 unsigned i = 0;
2622 // Copy the beginning value(s) from the original aggregate.
2623 for (; i != LinearIndex; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002624 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002625 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002626 SDValue(Agg.getNode(), Agg.getResNo() + i);
2627 // Copy values from the inserted value(s).
2628 for (; i != LinearIndex + NumValValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002629 Values[i] = FromUndef ? DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002630 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002631 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex);
2632 // Copy remaining value(s) from the original aggregate.
2633 for (; i != NumAggValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002634 Values[i] = IntoUndef ? DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002635 AggValueVTs[i]) :
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002636 SDValue(Agg.getNode(), Agg.getResNo() + i);
2637
Dale Johannesen66978ee2009-01-31 02:22:37 +00002638 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002639 DAG.getVTList(&AggValueVTs[0], NumAggValues),
2640 &Values[0], NumAggValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002641}
2642
2643void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
2644 const Value *Op0 = I.getOperand(0);
2645 const Type *AggTy = Op0->getType();
2646 const Type *ValTy = I.getType();
2647 bool OutOfUndef = isa<UndefValue>(Op0);
2648
2649 unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy,
2650 I.idx_begin(), I.idx_end());
2651
2652 SmallVector<MVT, 4> ValValueVTs;
2653 ComputeValueVTs(TLI, ValTy, ValValueVTs);
2654
2655 unsigned NumValValues = ValValueVTs.size();
2656 SmallVector<SDValue, 4> Values(NumValValues);
2657
2658 SDValue Agg = getValue(Op0);
2659 // Copy out the selected value(s).
2660 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
2661 Values[i - LinearIndex] =
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002662 OutOfUndef ?
Dale Johannesen66978ee2009-01-31 02:22:37 +00002663 DAG.getNode(ISD::UNDEF, getCurDebugLoc(),
Bill Wendlingf0a2d0c2008-11-20 07:24:30 +00002664 Agg.getNode()->getValueType(Agg.getResNo() + i)) :
2665 SDValue(Agg.getNode(), Agg.getResNo() + i);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002666
Dale Johannesen66978ee2009-01-31 02:22:37 +00002667 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002668 DAG.getVTList(&ValValueVTs[0], NumValValues),
2669 &Values[0], NumValValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002670}
2671
2672
2673void SelectionDAGLowering::visitGetElementPtr(User &I) {
2674 SDValue N = getValue(I.getOperand(0));
2675 const Type *Ty = I.getOperand(0)->getType();
2676
2677 for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end();
2678 OI != E; ++OI) {
2679 Value *Idx = *OI;
2680 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
2681 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
2682 if (Field) {
2683 // N = N + Offset
2684 uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002685 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002686 DAG.getIntPtrConstant(Offset));
2687 }
2688 Ty = StTy->getElementType(Field);
2689 } else {
2690 Ty = cast<SequentialType>(Ty)->getElementType();
2691
2692 // If this is a constant subscript, handle it quickly.
2693 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
2694 if (CI->getZExtValue() == 0) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002695 uint64_t Offs =
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002696 TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Dale Johannesen66978ee2009-01-31 02:22:37 +00002697 N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002698 DAG.getIntPtrConstant(Offs));
2699 continue;
2700 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002701
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002702 // N = N + Idx * ElementSize;
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002703 uint64_t ElementSize = TD->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002704 SDValue IdxN = getValue(Idx);
2705
2706 // If the index is smaller or larger than intptr_t, truncate or extend
2707 // it.
2708 if (IdxN.getValueType().bitsLT(N.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002709 IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002710 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002711 else if (IdxN.getValueType().bitsGT(N.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002712 IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002713 N.getValueType(), IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002714
2715 // If this is a multiply by a power of two, turn it into a shl
2716 // immediately. This is a very common case.
2717 if (ElementSize != 1) {
2718 if (isPowerOf2_64(ElementSize)) {
2719 unsigned Amt = Log2_64(ElementSize);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002720 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002721 N.getValueType(), IdxN,
Duncan Sands92abc622009-01-31 15:50:11 +00002722 DAG.getConstant(Amt, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002723 } else {
2724 SDValue Scale = DAG.getIntPtrConstant(ElementSize);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002725 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002726 N.getValueType(), IdxN, Scale);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002727 }
2728 }
2729
Dale Johannesen66978ee2009-01-31 02:22:37 +00002730 N = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002731 N.getValueType(), N, IdxN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002732 }
2733 }
2734 setValue(&I, N);
2735}
2736
2737void SelectionDAGLowering::visitAlloca(AllocaInst &I) {
2738 // If this is a fixed sized alloca in the entry block of the function,
2739 // allocate it statically on the stack.
2740 if (FuncInfo.StaticAllocaMap.count(&I))
2741 return; // getValue will auto-populate this.
2742
2743 const Type *Ty = I.getAllocatedType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00002744 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002745 unsigned Align =
2746 std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty),
2747 I.getAlignment());
2748
2749 SDValue AllocSize = getValue(I.getArraySize());
2750 MVT IntPtr = TLI.getPointerTy();
2751 if (IntPtr.bitsLT(AllocSize.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002752 AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002753 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002754 else if (IntPtr.bitsGT(AllocSize.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00002755 AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002756 IntPtr, AllocSize);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002757
Dale Johannesen66978ee2009-01-31 02:22:37 +00002758 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), IntPtr, AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002759 DAG.getIntPtrConstant(TySize));
2760
2761 // Handle alignment. If the requested alignment is less than or equal to
2762 // the stack alignment, ignore it. If the size is greater than or equal to
2763 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node.
2764 unsigned StackAlign =
2765 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
2766 if (Align <= StackAlign)
2767 Align = 0;
2768
2769 // Round the size of the allocation up to the stack alignment size
2770 // by add SA-1 to the size.
Dale Johannesen66978ee2009-01-31 02:22:37 +00002771 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002772 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002773 DAG.getIntPtrConstant(StackAlign-1));
2774 // Mask out the low bits for alignment purposes.
Dale Johannesen66978ee2009-01-31 02:22:37 +00002775 AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002776 AllocSize.getValueType(), AllocSize,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002777 DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1)));
2778
2779 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
2780 const MVT *VTs = DAG.getNodeValueTypes(AllocSize.getValueType(),
2781 MVT::Other);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002782 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002783 VTs, 2, Ops, 3);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002784 setValue(&I, DSA);
2785 DAG.setRoot(DSA.getValue(1));
2786
2787 // Inform the Frame Information that we have just allocated a variable-sized
2788 // object.
2789 CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject();
2790}
2791
2792void SelectionDAGLowering::visitLoad(LoadInst &I) {
2793 const Value *SV = I.getOperand(0);
2794 SDValue Ptr = getValue(SV);
2795
2796 const Type *Ty = I.getType();
2797 bool isVolatile = I.isVolatile();
2798 unsigned Alignment = I.getAlignment();
2799
2800 SmallVector<MVT, 4> ValueVTs;
2801 SmallVector<uint64_t, 4> Offsets;
2802 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
2803 unsigned NumValues = ValueVTs.size();
2804 if (NumValues == 0)
2805 return;
2806
2807 SDValue Root;
2808 bool ConstantMemory = false;
2809 if (I.isVolatile())
2810 // Serialize volatile loads with other side effects.
2811 Root = getRoot();
2812 else if (AA->pointsToConstantMemory(SV)) {
2813 // Do not serialize (non-volatile) loads of constant memory with anything.
2814 Root = DAG.getEntryNode();
2815 ConstantMemory = true;
2816 } else {
2817 // Do not serialize non-volatile loads against each other.
2818 Root = DAG.getRoot();
2819 }
2820
2821 SmallVector<SDValue, 4> Values(NumValues);
2822 SmallVector<SDValue, 4> Chains(NumValues);
2823 MVT PtrVT = Ptr.getValueType();
2824 for (unsigned i = 0; i != NumValues; ++i) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002825 SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root,
2826 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002827 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002828 DAG.getConstant(Offsets[i], PtrVT)),
2829 SV, Offsets[i],
2830 isVolatile, Alignment);
2831 Values[i] = L;
2832 Chains[i] = L.getValue(1);
2833 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002834
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002835 if (!ConstantMemory) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00002836 SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002837 MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002838 &Chains[0], NumValues);
2839 if (isVolatile)
2840 DAG.setRoot(Chain);
2841 else
2842 PendingLoads.push_back(Chain);
2843 }
2844
Dale Johannesen66978ee2009-01-31 02:22:37 +00002845 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00002846 DAG.getVTList(&ValueVTs[0], NumValues),
2847 &Values[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002848}
2849
2850
2851void SelectionDAGLowering::visitStore(StoreInst &I) {
2852 Value *SrcV = I.getOperand(0);
2853 Value *PtrV = I.getOperand(1);
2854
2855 SmallVector<MVT, 4> ValueVTs;
2856 SmallVector<uint64_t, 4> Offsets;
2857 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
2858 unsigned NumValues = ValueVTs.size();
2859 if (NumValues == 0)
2860 return;
2861
2862 // Get the lowered operands. Note that we do this after
2863 // checking if NumResults is zero, because with zero results
2864 // the operands won't have values in the map.
2865 SDValue Src = getValue(SrcV);
2866 SDValue Ptr = getValue(PtrV);
2867
2868 SDValue Root = getRoot();
2869 SmallVector<SDValue, 4> Chains(NumValues);
2870 MVT PtrVT = Ptr.getValueType();
2871 bool isVolatile = I.isVolatile();
2872 unsigned Alignment = I.getAlignment();
2873 for (unsigned i = 0; i != NumValues; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002874 Chains[i] = DAG.getStore(Root, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002875 SDValue(Src.getNode(), Src.getResNo() + i),
Dale Johannesen66978ee2009-01-31 02:22:37 +00002876 DAG.getNode(ISD::ADD, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002877 PtrVT, Ptr,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002878 DAG.getConstant(Offsets[i], PtrVT)),
2879 PtrV, Offsets[i],
2880 isVolatile, Alignment);
2881
Dale Johannesen66978ee2009-01-31 02:22:37 +00002882 DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002883 MVT::Other, &Chains[0], NumValues));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002884}
2885
2886/// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC
2887/// node.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002888void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002889 unsigned Intrinsic) {
2890 bool HasChain = !I.doesNotAccessMemory();
2891 bool OnlyLoad = HasChain && I.onlyReadsMemory();
2892
2893 // Build the operand list.
2894 SmallVector<SDValue, 8> Ops;
2895 if (HasChain) { // If this intrinsic has side-effects, chainify it.
2896 if (OnlyLoad) {
2897 // We don't need to serialize loads against other loads.
2898 Ops.push_back(DAG.getRoot());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002899 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002900 Ops.push_back(getRoot());
2901 }
2902 }
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002903
2904 // Info is set by getTgtMemInstrinsic
2905 TargetLowering::IntrinsicInfo Info;
2906 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic);
2907
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002908 // Add the intrinsic ID as an integer operand if it's not a target intrinsic.
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002909 if (!IsTgtIntrinsic)
2910 Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002911
2912 // Add all operands of the call to the operand list.
2913 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
2914 SDValue Op = getValue(I.getOperand(i));
2915 assert(TLI.isTypeLegal(Op.getValueType()) &&
2916 "Intrinsic uses a non-legal type?");
2917 Ops.push_back(Op);
2918 }
2919
2920 std::vector<MVT> VTs;
2921 if (I.getType() != Type::VoidTy) {
2922 MVT VT = TLI.getValueType(I.getType());
2923 if (VT.isVector()) {
2924 const VectorType *DestTy = cast<VectorType>(I.getType());
2925 MVT EltVT = TLI.getValueType(DestTy->getElementType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002926
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002927 VT = MVT::getVectorVT(EltVT, DestTy->getNumElements());
2928 assert(VT != MVT::Other && "Intrinsic uses a non-legal type?");
2929 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002930
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002931 assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?");
2932 VTs.push_back(VT);
2933 }
2934 if (HasChain)
2935 VTs.push_back(MVT::Other);
2936
2937 const MVT *VTList = DAG.getNodeValueTypes(VTs);
2938
2939 // Create the node.
2940 SDValue Result;
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002941 if (IsTgtIntrinsic) {
2942 // This is target intrinsic that touches memory
Dale Johannesen66978ee2009-01-31 02:22:37 +00002943 Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002944 VTList, VTs.size(),
Mon P Wang3efcd4a2008-11-01 20:24:53 +00002945 &Ops[0], Ops.size(),
2946 Info.memVT, Info.ptrVal, Info.offset,
2947 Info.align, Info.vol,
2948 Info.readMem, Info.writeMem);
2949 }
2950 else if (!HasChain)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002951 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002952 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002953 &Ops[0], Ops.size());
2954 else if (I.getType() != Type::VoidTy)
Dale Johannesen66978ee2009-01-31 02:22:37 +00002955 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002956 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002957 &Ops[0], Ops.size());
2958 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00002959 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00002960 VTList, VTs.size(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002961 &Ops[0], Ops.size());
2962
2963 if (HasChain) {
2964 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1);
2965 if (OnlyLoad)
2966 PendingLoads.push_back(Chain);
2967 else
2968 DAG.setRoot(Chain);
2969 }
2970 if (I.getType() != Type::VoidTy) {
2971 if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) {
2972 MVT VT = TLI.getValueType(PTy);
Dale Johannesen66978ee2009-01-31 02:22:37 +00002973 Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00002974 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00002975 setValue(&I, Result);
2976 }
2977}
2978
2979/// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V.
2980static GlobalVariable *ExtractTypeInfo(Value *V) {
2981 V = V->stripPointerCasts();
2982 GlobalVariable *GV = dyn_cast<GlobalVariable>(V);
2983 assert ((GV || isa<ConstantPointerNull>(V)) &&
2984 "TypeInfo must be a global variable or NULL");
2985 return GV;
2986}
2987
2988namespace llvm {
2989
2990/// AddCatchInfo - Extract the personality and type infos from an eh.selector
2991/// call, and add them to the specified machine basic block.
2992void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
2993 MachineBasicBlock *MBB) {
2994 // Inform the MachineModuleInfo of the personality for this landing pad.
2995 ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2));
2996 assert(CE->getOpcode() == Instruction::BitCast &&
2997 isa<Function>(CE->getOperand(0)) &&
2998 "Personality should be a function");
2999 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
3000
3001 // Gather all the type infos for this landing pad and pass them along to
3002 // MachineModuleInfo.
3003 std::vector<GlobalVariable *> TyInfo;
3004 unsigned N = I.getNumOperands();
3005
3006 for (unsigned i = N - 1; i > 2; --i) {
3007 if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) {
3008 unsigned FilterLength = CI->getZExtValue();
3009 unsigned FirstCatch = i + FilterLength + !FilterLength;
3010 assert (FirstCatch <= N && "Invalid filter length");
3011
3012 if (FirstCatch < N) {
3013 TyInfo.reserve(N - FirstCatch);
3014 for (unsigned j = FirstCatch; j < N; ++j)
3015 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3016 MMI->addCatchTypeInfo(MBB, TyInfo);
3017 TyInfo.clear();
3018 }
3019
3020 if (!FilterLength) {
3021 // Cleanup.
3022 MMI->addCleanup(MBB);
3023 } else {
3024 // Filter.
3025 TyInfo.reserve(FilterLength - 1);
3026 for (unsigned j = i + 1; j < FirstCatch; ++j)
3027 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3028 MMI->addFilterTypeInfo(MBB, TyInfo);
3029 TyInfo.clear();
3030 }
3031
3032 N = i;
3033 }
3034 }
3035
3036 if (N > 3) {
3037 TyInfo.reserve(N - 3);
3038 for (unsigned j = 3; j < N; ++j)
3039 TyInfo.push_back(ExtractTypeInfo(I.getOperand(j)));
3040 MMI->addCatchTypeInfo(MBB, TyInfo);
3041 }
3042}
3043
3044}
3045
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003046/// GetSignificand - Get the significand and build it into a floating-point
3047/// number with exponent of 1:
3048///
3049/// Op = (Op & 0x007fffff) | 0x3f800000;
3050///
3051/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003052static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003053GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) {
3054 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003055 DAG.getConstant(0x007fffff, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003056 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003057 DAG.getConstant(0x3f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003058 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003059}
3060
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003061/// GetExponent - Get the exponent:
3062///
Bill Wendlinge9a72862009-01-20 21:17:57 +00003063/// (float)(int)(((Op & 0x7f800000) >> 23) - 127);
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003064///
3065/// where Op is the hexidecimal representation of floating point value.
Bill Wendling39150252008-09-09 20:39:27 +00003066static SDValue
Dale Johannesen66978ee2009-01-31 02:22:37 +00003067GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI,
3068 DebugLoc dl) {
3069 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003070 DAG.getConstant(0x7f800000, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003071 SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0,
Duncan Sands92abc622009-01-31 15:50:11 +00003072 DAG.getConstant(23, TLI.getPointerTy()));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003073 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1,
Bill Wendlinge9a72862009-01-20 21:17:57 +00003074 DAG.getConstant(127, MVT::i32));
Dale Johannesen66978ee2009-01-31 02:22:37 +00003075 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2);
Bill Wendling39150252008-09-09 20:39:27 +00003076}
3077
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003078/// getF32Constant - Get 32-bit floating point constant.
3079static SDValue
3080getF32Constant(SelectionDAG &DAG, unsigned Flt) {
3081 return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32);
3082}
3083
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003084/// Inlined utility function to implement binary input atomic intrinsics for
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003085/// visitIntrinsicCall: I is a call instruction
3086/// Op is the associated NodeType for I
3087const char *
3088SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003089 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003090 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00003091 DAG.getAtomic(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003092 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003093 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003094 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00003095 getValue(I.getOperand(2)),
3096 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003097 setValue(&I, L);
3098 DAG.setRoot(L.getValue(1));
3099 return 0;
3100}
3101
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003102// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
Bill Wendling74c37652008-12-09 22:08:41 +00003103const char *
3104SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003105 SDValue Op1 = getValue(I.getOperand(1));
3106 SDValue Op2 = getValue(I.getOperand(2));
Bill Wendling74c37652008-12-09 22:08:41 +00003107
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003108 MVT ValueVTs[] = { Op1.getValueType(), MVT::i1 };
3109 SDValue Ops[] = { Op1, Op2 };
Bill Wendling74c37652008-12-09 22:08:41 +00003110
Dale Johannesen66978ee2009-01-31 02:22:37 +00003111 SDValue Result = DAG.getNode(Op, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003112 DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2);
Bill Wendling74c37652008-12-09 22:08:41 +00003113
Bill Wendling2ce4e5c2008-12-10 00:28:22 +00003114 setValue(&I, Result);
3115 return 0;
3116}
Bill Wendling74c37652008-12-09 22:08:41 +00003117
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003118/// visitExp - Lower an exp intrinsic. Handles the special sequences for
3119/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003120void
3121SelectionDAGLowering::visitExp(CallInst &I) {
3122 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003123 DebugLoc dl = getCurDebugLoc();
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003124
3125 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3126 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3127 SDValue Op = getValue(I.getOperand(1));
3128
3129 // Put the exponent in the right bit position for later addition to the
3130 // final result:
3131 //
3132 // #define LOG2OFe 1.4426950f
3133 // IntegerPartOfX = ((int32_t)(X * LOG2OFe));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003134 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003135 getF32Constant(DAG, 0x3fb8aa3b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003136 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003137
3138 // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003139 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3140 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003141
3142 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003143 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003144 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003145
3146 if (LimitFloatPrecision <= 6) {
3147 // For floating-point precision of 6:
3148 //
3149 // TwoToFractionalPartOfX =
3150 // 0.997535578f +
3151 // (0.735607626f + 0.252464424f * x) * x;
3152 //
3153 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003154 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003155 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003156 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003157 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003158 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3159 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003160 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003161 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003162
3163 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003164 SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003165 TwoToFracPartOfX, IntegerPartOfX);
3166
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003167 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003168 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3169 // For floating-point precision of 12:
3170 //
3171 // TwoToFractionalPartOfX =
3172 // 0.999892986f +
3173 // (0.696457318f +
3174 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3175 //
3176 // 0.000107046256 error, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003177 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003178 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003179 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003180 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003181 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3182 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003183 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003184 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3185 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003186 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003187 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003188
3189 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003190 SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003191 TwoToFracPartOfX, IntegerPartOfX);
3192
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003193 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003194 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3195 // For floating-point precision of 18:
3196 //
3197 // TwoToFractionalPartOfX =
3198 // 0.999999982f +
3199 // (0.693148872f +
3200 // (0.240227044f +
3201 // (0.554906021e-1f +
3202 // (0.961591928e-2f +
3203 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3204 //
3205 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003206 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003207 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003208 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003209 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003210 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3211 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003212 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003213 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3214 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003215 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003216 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3217 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003218 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003219 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3220 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003221 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003222 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3223 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003224 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003225 SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,
3226 MVT::i32, t13);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003227
3228 // Add the exponent into the result in integer domain.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003229 SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003230 TwoToFracPartOfX, IntegerPartOfX);
3231
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003232 result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14);
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003233 }
3234 } else {
3235 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003236 result = DAG.getNode(ISD::FEXP, dl,
Bill Wendlingb4ec2832008-09-09 22:13:54 +00003237 getValue(I.getOperand(1)).getValueType(),
3238 getValue(I.getOperand(1)));
3239 }
3240
Dale Johannesen59e577f2008-09-05 18:38:42 +00003241 setValue(&I, result);
3242}
3243
Bill Wendling39150252008-09-09 20:39:27 +00003244/// visitLog - Lower a log intrinsic. Handles the special sequences for
3245/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003246void
3247SelectionDAGLowering::visitLog(CallInst &I) {
3248 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003249 DebugLoc dl = getCurDebugLoc();
Bill Wendling39150252008-09-09 20:39:27 +00003250
3251 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
3252 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3253 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003254 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling39150252008-09-09 20:39:27 +00003255
3256 // Scale the exponent by log(2) [0.69314718f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003257 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003258 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003259 getF32Constant(DAG, 0x3f317218));
Bill Wendling39150252008-09-09 20:39:27 +00003260
3261 // Get the significand and build it into a floating-point number with
3262 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003263 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling39150252008-09-09 20:39:27 +00003264
3265 if (LimitFloatPrecision <= 6) {
3266 // For floating-point precision of 6:
3267 //
3268 // LogofMantissa =
3269 // -1.1609546f +
3270 // (1.4034025f - 0.23903021f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003271 //
Bill Wendling39150252008-09-09 20:39:27 +00003272 // error 0.0034276066, which is better than 8 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003273 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003274 getF32Constant(DAG, 0xbe74c456));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003275 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003276 getF32Constant(DAG, 0x3fb3a2b1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003277 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3278 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003279 getF32Constant(DAG, 0x3f949a29));
Bill Wendling39150252008-09-09 20:39:27 +00003280
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003281 result = DAG.getNode(ISD::FADD, dl,
3282 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003283 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3284 // For floating-point precision of 12:
3285 //
3286 // LogOfMantissa =
3287 // -1.7417939f +
3288 // (2.8212026f +
3289 // (-1.4699568f +
3290 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x;
3291 //
3292 // error 0.000061011436, which is 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003293 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003294 getF32Constant(DAG, 0xbd67b6d6));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003295 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003296 getF32Constant(DAG, 0x3ee4f4b8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003297 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3298 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003299 getF32Constant(DAG, 0x3fbc278b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003300 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3301 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003302 getF32Constant(DAG, 0x40348e95));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003303 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3304 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003305 getF32Constant(DAG, 0x3fdef31a));
Bill Wendling39150252008-09-09 20:39:27 +00003306
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003307 result = DAG.getNode(ISD::FADD, dl,
3308 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003309 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3310 // For floating-point precision of 18:
3311 //
3312 // LogOfMantissa =
3313 // -2.1072184f +
3314 // (4.2372794f +
3315 // (-3.7029485f +
3316 // (2.2781945f +
3317 // (-0.87823314f +
3318 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x;
3319 //
3320 // error 0.0000023660568, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003321 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003322 getF32Constant(DAG, 0xbc91e5ac));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003323 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003324 getF32Constant(DAG, 0x3e4350aa));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003325 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3326 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003327 getF32Constant(DAG, 0x3f60d3e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003328 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3329 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003330 getF32Constant(DAG, 0x4011cdf0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003331 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3332 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003333 getF32Constant(DAG, 0x406cfd1c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003334 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3335 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003336 getF32Constant(DAG, 0x408797cb));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003337 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3338 SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003339 getF32Constant(DAG, 0x4006dcab));
Bill Wendling39150252008-09-09 20:39:27 +00003340
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003341 result = DAG.getNode(ISD::FADD, dl,
3342 MVT::f32, LogOfExponent, LogOfMantissa);
Bill Wendling39150252008-09-09 20:39:27 +00003343 }
3344 } else {
3345 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003346 result = DAG.getNode(ISD::FLOG, dl,
Bill Wendling39150252008-09-09 20:39:27 +00003347 getValue(I.getOperand(1)).getValueType(),
3348 getValue(I.getOperand(1)));
3349 }
3350
Dale Johannesen59e577f2008-09-05 18:38:42 +00003351 setValue(&I, result);
3352}
3353
Bill Wendling3eb59402008-09-09 00:28:24 +00003354/// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for
3355/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003356void
3357SelectionDAGLowering::visitLog2(CallInst &I) {
3358 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003359 DebugLoc dl = getCurDebugLoc();
Bill Wendling3eb59402008-09-09 00:28:24 +00003360
Dale Johannesen853244f2008-09-05 23:49:37 +00003361 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003362 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3363 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003364 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003365
Bill Wendling39150252008-09-09 20:39:27 +00003366 // Get the exponent.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003367 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003368
3369 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003370 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003371 SDValue X = GetSignificand(DAG, Op1, dl);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003372
Bill Wendling3eb59402008-09-09 00:28:24 +00003373 // Different possible minimax approximations of significand in
3374 // floating-point for various degrees of accuracy over [1,2].
3375 if (LimitFloatPrecision <= 6) {
3376 // For floating-point precision of 6:
3377 //
3378 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x;
3379 //
3380 // error 0.0049451742, which is more than 7 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003381 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003382 getF32Constant(DAG, 0xbeb08fe0));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003383 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003384 getF32Constant(DAG, 0x40019463));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003385 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3386 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003387 getF32Constant(DAG, 0x3fd6633d));
Bill Wendling3eb59402008-09-09 00:28:24 +00003388
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003389 result = DAG.getNode(ISD::FADD, dl,
3390 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003391 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3392 // For floating-point precision of 12:
3393 //
3394 // Log2ofMantissa =
3395 // -2.51285454f +
3396 // (4.07009056f +
3397 // (-2.12067489f +
3398 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003399 //
Bill Wendling3eb59402008-09-09 00:28:24 +00003400 // error 0.0000876136000, which is better than 13 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003401 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003402 getF32Constant(DAG, 0xbda7262e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003403 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003404 getF32Constant(DAG, 0x3f25280b));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003405 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3406 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003407 getF32Constant(DAG, 0x4007b923));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003408 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3409 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003410 getF32Constant(DAG, 0x40823e2f));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003411 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3412 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003413 getF32Constant(DAG, 0x4020d29c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003414
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003415 result = DAG.getNode(ISD::FADD, dl,
3416 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003417 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3418 // For floating-point precision of 18:
3419 //
3420 // Log2ofMantissa =
3421 // -3.0400495f +
3422 // (6.1129976f +
3423 // (-5.3420409f +
3424 // (3.2865683f +
3425 // (-1.2669343f +
3426 // (0.27515199f -
3427 // 0.25691327e-1f * x) * x) * x) * x) * x) * x;
3428 //
3429 // error 0.0000018516, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003430 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003431 getF32Constant(DAG, 0xbcd2769e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003432 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003433 getF32Constant(DAG, 0x3e8ce0b9));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003434 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3435 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003436 getF32Constant(DAG, 0x3fa22ae7));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003437 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3438 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003439 getF32Constant(DAG, 0x40525723));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003440 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3441 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003442 getF32Constant(DAG, 0x40aaf200));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003443 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3444 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003445 getF32Constant(DAG, 0x40c39dad));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003446 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3447 SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003448 getF32Constant(DAG, 0x4042902c));
Bill Wendling3eb59402008-09-09 00:28:24 +00003449
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003450 result = DAG.getNode(ISD::FADD, dl,
3451 MVT::f32, LogOfExponent, Log2ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003452 }
Dale Johannesen853244f2008-09-05 23:49:37 +00003453 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003454 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003455 result = DAG.getNode(ISD::FLOG2, dl,
Dale Johannesen853244f2008-09-05 23:49:37 +00003456 getValue(I.getOperand(1)).getValueType(),
3457 getValue(I.getOperand(1)));
3458 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003459
Dale Johannesen59e577f2008-09-05 18:38:42 +00003460 setValue(&I, result);
3461}
3462
Bill Wendling3eb59402008-09-09 00:28:24 +00003463/// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for
3464/// limited-precision mode.
Dale Johannesen59e577f2008-09-05 18:38:42 +00003465void
3466SelectionDAGLowering::visitLog10(CallInst &I) {
3467 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003468 DebugLoc dl = getCurDebugLoc();
Bill Wendling181b6272008-10-19 20:34:04 +00003469
Dale Johannesen852680a2008-09-05 21:27:19 +00003470 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendling3eb59402008-09-09 00:28:24 +00003471 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3472 SDValue Op = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003473 SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Bill Wendling3eb59402008-09-09 00:28:24 +00003474
Bill Wendling39150252008-09-09 20:39:27 +00003475 // Scale the exponent by log10(2) [0.30102999f].
Dale Johannesen66978ee2009-01-31 02:22:37 +00003476 SDValue Exp = GetExponent(DAG, Op1, TLI, dl);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003477 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003478 getF32Constant(DAG, 0x3e9a209a));
Bill Wendling3eb59402008-09-09 00:28:24 +00003479
3480 // Get the significand and build it into a floating-point number with
Bill Wendling39150252008-09-09 20:39:27 +00003481 // exponent of 1.
Dale Johannesen66978ee2009-01-31 02:22:37 +00003482 SDValue X = GetSignificand(DAG, Op1, dl);
Bill Wendling3eb59402008-09-09 00:28:24 +00003483
3484 if (LimitFloatPrecision <= 6) {
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003485 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003486 //
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003487 // Log10ofMantissa =
3488 // -0.50419619f +
3489 // (0.60948995f - 0.10380950f * x) * x;
3490 //
3491 // error 0.0014886165, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003492 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003493 getF32Constant(DAG, 0xbdd49a13));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003494 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003495 getF32Constant(DAG, 0x3f1c0789));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003496 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3497 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003498 getF32Constant(DAG, 0x3f011300));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003499
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003500 result = DAG.getNode(ISD::FADD, dl,
3501 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003502 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3503 // For floating-point precision of 12:
3504 //
3505 // Log10ofMantissa =
3506 // -0.64831180f +
3507 // (0.91751397f +
3508 // (-0.31664806f + 0.47637168e-1f * x) * x) * x;
3509 //
3510 // error 0.00019228036, which is better than 12 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003511 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003512 getF32Constant(DAG, 0x3d431f31));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003513 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003514 getF32Constant(DAG, 0x3ea21fb2));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003515 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3516 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003517 getF32Constant(DAG, 0x3f6ae232));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003518 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3519 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003520 getF32Constant(DAG, 0x3f25f7c3));
Bill Wendling3eb59402008-09-09 00:28:24 +00003521
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003522 result = DAG.getNode(ISD::FADD, dl,
3523 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003524 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003525 // For floating-point precision of 18:
3526 //
3527 // Log10ofMantissa =
3528 // -0.84299375f +
3529 // (1.5327582f +
3530 // (-1.0688956f +
3531 // (0.49102474f +
3532 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x;
3533 //
3534 // error 0.0000037995730, which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003535 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003536 getF32Constant(DAG, 0x3c5d51ce));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003537 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003538 getF32Constant(DAG, 0x3e00685a));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003539 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X);
3540 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003541 getF32Constant(DAG, 0x3efb6798));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003542 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3543 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003544 getF32Constant(DAG, 0x3f88d192));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003545 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3546 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003547 getF32Constant(DAG, 0x3fc4316c));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003548 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3549 SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003550 getF32Constant(DAG, 0x3f57ce70));
Bill Wendlingbd297bc2008-09-09 18:42:23 +00003551
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003552 result = DAG.getNode(ISD::FADD, dl,
3553 MVT::f32, LogOfExponent, Log10ofMantissa);
Bill Wendling3eb59402008-09-09 00:28:24 +00003554 }
Dale Johannesen852680a2008-09-05 21:27:19 +00003555 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003556 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003557 result = DAG.getNode(ISD::FLOG10, dl,
Dale Johannesen852680a2008-09-05 21:27:19 +00003558 getValue(I.getOperand(1)).getValueType(),
3559 getValue(I.getOperand(1)));
3560 }
Bill Wendling3eb59402008-09-09 00:28:24 +00003561
Dale Johannesen59e577f2008-09-05 18:38:42 +00003562 setValue(&I, result);
3563}
3564
Bill Wendlinge10c8142008-09-09 22:39:21 +00003565/// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
3566/// limited-precision mode.
Dale Johannesen601d3c02008-09-05 01:48:15 +00003567void
3568SelectionDAGLowering::visitExp2(CallInst &I) {
3569 SDValue result;
Dale Johannesen66978ee2009-01-31 02:22:37 +00003570 DebugLoc dl = getCurDebugLoc();
Bill Wendlinge10c8142008-09-09 22:39:21 +00003571
Dale Johannesen601d3c02008-09-05 01:48:15 +00003572 if (getValue(I.getOperand(1)).getValueType() == MVT::f32 &&
Bill Wendlinge10c8142008-09-09 22:39:21 +00003573 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3574 SDValue Op = getValue(I.getOperand(1));
3575
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003576 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003577
3578 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003579 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3580 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003581
3582 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003583 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003584 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlinge10c8142008-09-09 22:39:21 +00003585
3586 if (LimitFloatPrecision <= 6) {
3587 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003588 //
Bill Wendlinge10c8142008-09-09 22:39:21 +00003589 // TwoToFractionalPartOfX =
3590 // 0.997535578f +
3591 // (0.735607626f + 0.252464424f * x) * x;
3592 //
3593 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003594 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003595 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003596 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003597 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003598 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3599 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003600 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003601 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003602 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003603 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003604
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003605 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3606 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003607 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3608 // For floating-point precision of 12:
3609 //
3610 // TwoToFractionalPartOfX =
3611 // 0.999892986f +
3612 // (0.696457318f +
3613 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3614 //
3615 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003616 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003617 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003618 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003619 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003620 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3621 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003622 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003623 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3624 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003625 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003626 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003627 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003628 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003629
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003630 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3631 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003632 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3633 // For floating-point precision of 18:
3634 //
3635 // TwoToFractionalPartOfX =
3636 // 0.999999982f +
3637 // (0.693148872f +
3638 // (0.240227044f +
3639 // (0.554906021e-1f +
3640 // (0.961591928e-2f +
3641 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3642 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003643 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003644 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003645 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003646 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003647 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3648 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003649 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003650 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3651 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003652 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003653 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3654 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003655 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003656 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3657 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003658 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003659 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3660 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003661 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003662 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003663 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003664 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003665
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003666 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3667 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlinge10c8142008-09-09 22:39:21 +00003668 }
Dale Johannesen601d3c02008-09-05 01:48:15 +00003669 } else {
Bill Wendling3eb59402008-09-09 00:28:24 +00003670 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003671 result = DAG.getNode(ISD::FEXP2, dl,
Dale Johannesen601d3c02008-09-05 01:48:15 +00003672 getValue(I.getOperand(1)).getValueType(),
3673 getValue(I.getOperand(1)));
3674 }
Bill Wendlinge10c8142008-09-09 22:39:21 +00003675
Dale Johannesen601d3c02008-09-05 01:48:15 +00003676 setValue(&I, result);
3677}
3678
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003679/// visitPow - Lower a pow intrinsic. Handles the special sequences for
3680/// limited-precision mode with x == 10.0f.
3681void
3682SelectionDAGLowering::visitPow(CallInst &I) {
3683 SDValue result;
3684 Value *Val = I.getOperand(1);
Dale Johannesen66978ee2009-01-31 02:22:37 +00003685 DebugLoc dl = getCurDebugLoc();
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003686 bool IsExp10 = false;
3687
3688 if (getValue(Val).getValueType() == MVT::f32 &&
Bill Wendling277fc242008-09-10 00:24:59 +00003689 getValue(I.getOperand(2)).getValueType() == MVT::f32 &&
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003690 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3691 if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) {
3692 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
3693 APFloat Ten(10.0f);
3694 IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten);
3695 }
3696 }
3697 }
3698
3699 if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
3700 SDValue Op = getValue(I.getOperand(2));
3701
3702 // Put the exponent in the right bit position for later addition to the
3703 // final result:
3704 //
3705 // #define LOG2OF10 3.3219281f
3706 // IntegerPartOfX = (int32_t)(x * LOG2OF10);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003707 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003708 getF32Constant(DAG, 0x40549a78));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003709 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003710
3711 // FractionalPartOfX = x - (float)IntegerPartOfX;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003712 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX);
3713 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003714
3715 // IntegerPartOfX <<= 23;
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003716 IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX,
Duncan Sands92abc622009-01-31 15:50:11 +00003717 DAG.getConstant(23, TLI.getPointerTy()));
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003718
3719 if (LimitFloatPrecision <= 6) {
3720 // For floating-point precision of 6:
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003721 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003722 // twoToFractionalPartOfX =
3723 // 0.997535578f +
3724 // (0.735607626f + 0.252464424f * x) * x;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003725 //
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003726 // error 0.0144103317, which is 6 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003727 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003728 getF32Constant(DAG, 0x3e814304));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003729 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003730 getF32Constant(DAG, 0x3f3c50c8));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003731 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3732 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003733 getF32Constant(DAG, 0x3f7f5e7e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003734 SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003735 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003736 DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003737
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003738 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3739 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003740 } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) {
3741 // For floating-point precision of 12:
3742 //
3743 // TwoToFractionalPartOfX =
3744 // 0.999892986f +
3745 // (0.696457318f +
3746 // (0.224338339f + 0.792043434e-1f * x) * x) * x;
3747 //
3748 // error 0.000107046256, which is 13 to 14 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003749 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003750 getF32Constant(DAG, 0x3da235e3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003751 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003752 getF32Constant(DAG, 0x3e65b8f3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003753 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3754 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003755 getF32Constant(DAG, 0x3f324b07));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003756 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3757 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003758 getF32Constant(DAG, 0x3f7ff8fd));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003759 SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003760 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003761 DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003762
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003763 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3764 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003765 } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18
3766 // For floating-point precision of 18:
3767 //
3768 // TwoToFractionalPartOfX =
3769 // 0.999999982f +
3770 // (0.693148872f +
3771 // (0.240227044f +
3772 // (0.554906021e-1f +
3773 // (0.961591928e-2f +
3774 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x;
3775 // error 2.47208000*10^(-7), which is better than 18 bits
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003776 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003777 getF32Constant(DAG, 0x3924b03e));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003778 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003779 getF32Constant(DAG, 0x3ab24b87));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003780 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X);
3781 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003782 getF32Constant(DAG, 0x3c1d8c17));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003783 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X);
3784 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003785 getF32Constant(DAG, 0x3d634a1d));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003786 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X);
3787 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003788 getF32Constant(DAG, 0x3e75fe14));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003789 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X);
3790 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003791 getF32Constant(DAG, 0x3f317234));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003792 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X);
3793 SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12,
Bill Wendlingcd4c73a2008-09-22 00:44:35 +00003794 getF32Constant(DAG, 0x3f800000));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003795 SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003796 SDValue TwoToFractionalPartOfX =
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003797 DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003798
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003799 result = DAG.getNode(ISD::BIT_CONVERT, dl,
3800 MVT::f32, TwoToFractionalPartOfX);
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003801 }
3802 } else {
3803 // No special expansion.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003804 result = DAG.getNode(ISD::FPOW, dl,
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00003805 getValue(I.getOperand(1)).getValueType(),
3806 getValue(I.getOperand(1)),
3807 getValue(I.getOperand(2)));
3808 }
3809
3810 setValue(&I, result);
3811}
3812
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003813/// visitIntrinsicCall - Lower the call to the specified intrinsic function. If
3814/// we want to emit this as a call to a named external function, return the name
3815/// otherwise lower it and return null.
3816const char *
3817SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00003818 DebugLoc dl = getCurDebugLoc();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003819 switch (Intrinsic) {
3820 default:
3821 // By default, turn this into a target intrinsic node.
3822 visitTargetIntrinsic(I, Intrinsic);
3823 return 0;
3824 case Intrinsic::vastart: visitVAStart(I); return 0;
3825 case Intrinsic::vaend: visitVAEnd(I); return 0;
3826 case Intrinsic::vacopy: visitVACopy(I); return 0;
3827 case Intrinsic::returnaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003828 setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003829 getValue(I.getOperand(1))));
3830 return 0;
Bill Wendlingd5d81912008-09-26 22:10:44 +00003831 case Intrinsic::frameaddress:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003832 setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003833 getValue(I.getOperand(1))));
3834 return 0;
3835 case Intrinsic::setjmp:
3836 return "_setjmp"+!TLI.usesUnderscoreSetJmp();
3837 break;
3838 case Intrinsic::longjmp:
3839 return "_longjmp"+!TLI.usesUnderscoreLongJmp();
3840 break;
Chris Lattner824b9582008-11-21 16:42:48 +00003841 case Intrinsic::memcpy: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003842 SDValue Op1 = getValue(I.getOperand(1));
3843 SDValue Op2 = getValue(I.getOperand(2));
3844 SDValue Op3 = getValue(I.getOperand(3));
3845 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3846 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3847 I.getOperand(1), 0, I.getOperand(2), 0));
3848 return 0;
3849 }
Chris Lattner824b9582008-11-21 16:42:48 +00003850 case Intrinsic::memset: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003851 SDValue Op1 = getValue(I.getOperand(1));
3852 SDValue Op2 = getValue(I.getOperand(2));
3853 SDValue Op3 = getValue(I.getOperand(3));
3854 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3855 DAG.setRoot(DAG.getMemset(getRoot(), Op1, Op2, Op3, Align,
3856 I.getOperand(1), 0));
3857 return 0;
3858 }
Chris Lattner824b9582008-11-21 16:42:48 +00003859 case Intrinsic::memmove: {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003860 SDValue Op1 = getValue(I.getOperand(1));
3861 SDValue Op2 = getValue(I.getOperand(2));
3862 SDValue Op3 = getValue(I.getOperand(3));
3863 unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue();
3864
3865 // If the source and destination are known to not be aliases, we can
3866 // lower memmove as memcpy.
3867 uint64_t Size = -1ULL;
3868 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003869 Size = C->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003870 if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) ==
3871 AliasAnalysis::NoAlias) {
3872 DAG.setRoot(DAG.getMemcpy(getRoot(), Op1, Op2, Op3, Align, false,
3873 I.getOperand(1), 0, I.getOperand(2), 0));
3874 return 0;
3875 }
3876
3877 DAG.setRoot(DAG.getMemmove(getRoot(), Op1, Op2, Op3, Align,
3878 I.getOperand(1), 0, I.getOperand(2), 0));
3879 return 0;
3880 }
3881 case Intrinsic::dbg_stoppoint: {
Devang Patel83489bb2009-01-13 00:35:13 +00003882 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003883 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003884 if (DW && DW->ValidDebugInfo(SPI.getContext())) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003885 DAG.setRoot(DAG.getDbgStopPoint(getRoot(),
3886 SPI.getLine(),
3887 SPI.getColumn(),
Devang Patel83489bb2009-01-13 00:35:13 +00003888 SPI.getContext()));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003889 DICompileUnit CU(cast<GlobalVariable>(SPI.getContext()));
3890 unsigned SrcFile = DW->RecordSource(CU.getDirectory(), CU.getFilename());
3891 unsigned idx = DAG.getMachineFunction().
3892 getOrCreateDebugLocID(SrcFile,
3893 SPI.getLine(),
3894 SPI.getColumn());
Dale Johannesen66978ee2009-01-31 02:22:37 +00003895 setCurDebugLoc(DebugLoc::get(idx));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003896 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003897 return 0;
3898 }
3899 case Intrinsic::dbg_region_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003900 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003901 DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I);
Devang Patelb79b5352009-01-19 23:21:49 +00003902 if (DW && DW->ValidDebugInfo(RSI.getContext())) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003903 unsigned LabelID =
Devang Patel83489bb2009-01-13 00:35:13 +00003904 DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003905 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
3906 }
3907
3908 return 0;
3909 }
3910 case Intrinsic::dbg_region_end: {
Devang Patel83489bb2009-01-13 00:35:13 +00003911 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003912 DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I);
Devang Patelb79b5352009-01-19 23:21:49 +00003913 if (DW && DW->ValidDebugInfo(REI.getContext())) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003914 unsigned LabelID =
Devang Patel83489bb2009-01-13 00:35:13 +00003915 DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003916 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
3917 }
3918
3919 return 0;
3920 }
3921 case Intrinsic::dbg_func_start: {
Devang Patel83489bb2009-01-13 00:35:13 +00003922 DwarfWriter *DW = DAG.getDwarfWriter();
3923 if (!DW) return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003924 DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I);
3925 Value *SP = FSI.getSubprogram();
Devang Patelcf3a4482009-01-15 23:41:32 +00003926 if (SP && DW->ValidDebugInfo(SP)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003927 // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is
3928 // what (most?) gdb expects.
Devang Patel83489bb2009-01-13 00:35:13 +00003929 DISubprogram Subprogram(cast<GlobalVariable>(SP));
3930 DICompileUnit CompileUnit = Subprogram.getCompileUnit();
3931 unsigned SrcFile = DW->RecordSource(CompileUnit.getDirectory(),
3932 CompileUnit.getFilename());
Bill Wendling9bc96a52009-02-03 00:55:04 +00003933
Devang Patel20dd0462008-11-06 00:30:09 +00003934 // Record the source line but does not create a label for the normal
3935 // function start. It will be emitted at asm emission time. However,
3936 // create a label if this is a beginning of inlined function.
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003937 unsigned Line = Subprogram.getLineNumber();
Bill Wendling9bc96a52009-02-03 00:55:04 +00003938 unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile);
3939
Devang Patel83489bb2009-01-13 00:35:13 +00003940 if (DW->getRecordSourceLineCount() != 1)
Devang Patel20dd0462008-11-06 00:30:09 +00003941 DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getRoot(), LabelID));
Bill Wendling9bc96a52009-02-03 00:55:04 +00003942
Dale Johannesen66978ee2009-01-31 02:22:37 +00003943 setCurDebugLoc(DebugLoc::get(DAG.getMachineFunction().
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003944 getOrCreateDebugLocID(SrcFile, Line, 0)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003945 }
3946
3947 return 0;
3948 }
3949 case Intrinsic::dbg_declare: {
Devang Patel83489bb2009-01-13 00:35:13 +00003950 DwarfWriter *DW = DAG.getDwarfWriter();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003951 DbgDeclareInst &DI = cast<DbgDeclareInst>(I);
3952 Value *Variable = DI.getVariable();
Devang Patelb79b5352009-01-19 23:21:49 +00003953 if (DW && DW->ValidDebugInfo(Variable))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003954 DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003955 getValue(DI.getAddress()), getValue(Variable)));
3956 return 0;
3957 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003958
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003959 case Intrinsic::eh_exception: {
3960 if (!CurMBB->isLandingPad()) {
3961 // FIXME: Mark exception register as live in. Hack for PR1508.
3962 unsigned Reg = TLI.getExceptionAddressRegister();
3963 if (Reg) CurMBB->addLiveIn(Reg);
3964 }
3965 // Insert the EXCEPTIONADDR instruction.
3966 SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other);
3967 SDValue Ops[1];
3968 Ops[0] = DAG.getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003969 SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003970 setValue(&I, Op);
3971 DAG.setRoot(Op.getValue(1));
3972 return 0;
3973 }
3974
3975 case Intrinsic::eh_selector_i32:
3976 case Intrinsic::eh_selector_i64: {
3977 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
3978 MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ?
3979 MVT::i32 : MVT::i64);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00003980
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003981 if (MMI) {
3982 if (CurMBB->isLandingPad())
3983 AddCatchInfo(I, MMI, CurMBB);
3984 else {
3985#ifndef NDEBUG
3986 FuncInfo.CatchInfoLost.insert(&I);
3987#endif
3988 // FIXME: Mark exception selector register as live in. Hack for PR1508.
3989 unsigned Reg = TLI.getExceptionSelectorRegister();
3990 if (Reg) CurMBB->addLiveIn(Reg);
3991 }
3992
3993 // Insert the EHSELECTION instruction.
3994 SDVTList VTs = DAG.getVTList(VT, MVT::Other);
3995 SDValue Ops[2];
3996 Ops[0] = getValue(I.getOperand(1));
3997 Ops[1] = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00003998 SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00003999 setValue(&I, Op);
4000 DAG.setRoot(Op.getValue(1));
4001 } else {
4002 setValue(&I, DAG.getConstant(0, VT));
4003 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004004
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004005 return 0;
4006 }
4007
4008 case Intrinsic::eh_typeid_for_i32:
4009 case Intrinsic::eh_typeid_for_i64: {
4010 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4011 MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ?
4012 MVT::i32 : MVT::i64);
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004013
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004014 if (MMI) {
4015 // Find the type id for the given typeinfo.
4016 GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1));
4017
4018 unsigned TypeID = MMI->getTypeIDFor(GV);
4019 setValue(&I, DAG.getConstant(TypeID, VT));
4020 } else {
4021 // Return something different to eh_selector.
4022 setValue(&I, DAG.getConstant(1, VT));
4023 }
4024
4025 return 0;
4026 }
4027
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004028 case Intrinsic::eh_return_i32:
4029 case Intrinsic::eh_return_i64:
4030 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004031 MMI->setCallsEHReturn(true);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004032 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004033 MVT::Other,
4034 getControlRoot(),
4035 getValue(I.getOperand(1)),
4036 getValue(I.getOperand(2))));
4037 } else {
4038 setValue(&I, DAG.getConstant(0, TLI.getPointerTy()));
4039 }
4040
4041 return 0;
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004042 case Intrinsic::eh_unwind_init:
4043 if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) {
4044 MMI->setCallsUnwindInit(true);
4045 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004046
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004047 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004048
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004049 case Intrinsic::eh_dwarf_cfa: {
4050 MVT VT = getValue(I.getOperand(1)).getValueType();
4051 SDValue CfaArg;
4052 if (VT.bitsGT(TLI.getPointerTy()))
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004053 CfaArg = DAG.getNode(ISD::TRUNCATE, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004054 TLI.getPointerTy(), getValue(I.getOperand(1)));
4055 else
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004056 CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004057 TLI.getPointerTy(), getValue(I.getOperand(1)));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004058
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004059 SDValue Offset = DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004060 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004061 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004062 TLI.getPointerTy()),
4063 CfaArg);
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004064 setValue(&I, DAG.getNode(ISD::ADD, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004065 TLI.getPointerTy(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004066 DAG.getNode(ISD::FRAMEADDR, dl,
Anton Korobeynikova0e8a1e2008-09-08 21:13:56 +00004067 TLI.getPointerTy(),
4068 DAG.getConstant(0,
4069 TLI.getPointerTy())),
4070 Offset));
4071 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004072 }
4073
Mon P Wang77cdf302008-11-10 20:54:11 +00004074 case Intrinsic::convertff:
4075 case Intrinsic::convertfsi:
4076 case Intrinsic::convertfui:
4077 case Intrinsic::convertsif:
4078 case Intrinsic::convertuif:
4079 case Intrinsic::convertss:
4080 case Intrinsic::convertsu:
4081 case Intrinsic::convertus:
4082 case Intrinsic::convertuu: {
4083 ISD::CvtCode Code = ISD::CVT_INVALID;
4084 switch (Intrinsic) {
4085 case Intrinsic::convertff: Code = ISD::CVT_FF; break;
4086 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break;
4087 case Intrinsic::convertfui: Code = ISD::CVT_FU; break;
4088 case Intrinsic::convertsif: Code = ISD::CVT_SF; break;
4089 case Intrinsic::convertuif: Code = ISD::CVT_UF; break;
4090 case Intrinsic::convertss: Code = ISD::CVT_SS; break;
4091 case Intrinsic::convertsu: Code = ISD::CVT_SU; break;
4092 case Intrinsic::convertus: Code = ISD::CVT_US; break;
4093 case Intrinsic::convertuu: Code = ISD::CVT_UU; break;
4094 }
4095 MVT DestVT = TLI.getValueType(I.getType());
4096 Value* Op1 = I.getOperand(1);
4097 setValue(&I, DAG.getConvertRndSat(DestVT, getValue(Op1),
4098 DAG.getValueType(DestVT),
4099 DAG.getValueType(getValue(Op1).getValueType()),
4100 getValue(I.getOperand(2)),
4101 getValue(I.getOperand(3)),
4102 Code));
4103 return 0;
4104 }
4105
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004106 case Intrinsic::sqrt:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004107 setValue(&I, DAG.getNode(ISD::FSQRT, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004108 getValue(I.getOperand(1)).getValueType(),
4109 getValue(I.getOperand(1))));
4110 return 0;
4111 case Intrinsic::powi:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004112 setValue(&I, DAG.getNode(ISD::FPOWI, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004113 getValue(I.getOperand(1)).getValueType(),
4114 getValue(I.getOperand(1)),
4115 getValue(I.getOperand(2))));
4116 return 0;
4117 case Intrinsic::sin:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004118 setValue(&I, DAG.getNode(ISD::FSIN, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004119 getValue(I.getOperand(1)).getValueType(),
4120 getValue(I.getOperand(1))));
4121 return 0;
4122 case Intrinsic::cos:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004123 setValue(&I, DAG.getNode(ISD::FCOS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004124 getValue(I.getOperand(1)).getValueType(),
4125 getValue(I.getOperand(1))));
4126 return 0;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004127 case Intrinsic::log:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004128 visitLog(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004129 return 0;
4130 case Intrinsic::log2:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004131 visitLog2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004132 return 0;
4133 case Intrinsic::log10:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004134 visitLog10(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004135 return 0;
4136 case Intrinsic::exp:
Dale Johannesen59e577f2008-09-05 18:38:42 +00004137 visitExp(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004138 return 0;
4139 case Intrinsic::exp2:
Dale Johannesen601d3c02008-09-05 01:48:15 +00004140 visitExp2(I);
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004141 return 0;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004142 case Intrinsic::pow:
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +00004143 visitPow(I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004144 return 0;
4145 case Intrinsic::pcmarker: {
4146 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004147 DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004148 return 0;
4149 }
4150 case Intrinsic::readcyclecounter: {
4151 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004152 SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004153 DAG.getNodeValueTypes(MVT::i64, MVT::Other), 2,
4154 &Op, 1);
4155 setValue(&I, Tmp);
4156 DAG.setRoot(Tmp.getValue(1));
4157 return 0;
4158 }
4159 case Intrinsic::part_select: {
4160 // Currently not implemented: just abort
4161 assert(0 && "part_select intrinsic not implemented");
4162 abort();
4163 }
4164 case Intrinsic::part_set: {
4165 // Currently not implemented: just abort
4166 assert(0 && "part_set intrinsic not implemented");
4167 abort();
4168 }
4169 case Intrinsic::bswap:
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004170 setValue(&I, DAG.getNode(ISD::BSWAP, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004171 getValue(I.getOperand(1)).getValueType(),
4172 getValue(I.getOperand(1))));
4173 return 0;
4174 case Intrinsic::cttz: {
4175 SDValue Arg = getValue(I.getOperand(1));
4176 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004177 SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004178 setValue(&I, result);
4179 return 0;
4180 }
4181 case Intrinsic::ctlz: {
4182 SDValue Arg = getValue(I.getOperand(1));
4183 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004184 SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004185 setValue(&I, result);
4186 return 0;
4187 }
4188 case Intrinsic::ctpop: {
4189 SDValue Arg = getValue(I.getOperand(1));
4190 MVT Ty = Arg.getValueType();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004191 SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004192 setValue(&I, result);
4193 return 0;
4194 }
4195 case Intrinsic::stacksave: {
4196 SDValue Op = getRoot();
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004197 SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004198 DAG.getNodeValueTypes(TLI.getPointerTy(), MVT::Other), 2, &Op, 1);
4199 setValue(&I, Tmp);
4200 DAG.setRoot(Tmp.getValue(1));
4201 return 0;
4202 }
4203 case Intrinsic::stackrestore: {
4204 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004205 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004206 return 0;
4207 }
Bill Wendling57344502008-11-18 11:01:33 +00004208 case Intrinsic::stackprotector: {
Bill Wendlingb2a42982008-11-06 02:29:10 +00004209 // Emit code into the DAG to store the stack guard onto the stack.
4210 MachineFunction &MF = DAG.getMachineFunction();
4211 MachineFrameInfo *MFI = MF.getFrameInfo();
4212 MVT PtrTy = TLI.getPointerTy();
4213
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004214 SDValue Src = getValue(I.getOperand(1)); // The guard's value.
4215 AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Bill Wendlingb2a42982008-11-06 02:29:10 +00004216
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +00004217 int FI = FuncInfo.StaticAllocaMap[Slot];
Bill Wendlingb2a42982008-11-06 02:29:10 +00004218 MFI->setStackProtectorIndex(FI);
4219
4220 SDValue FIN = DAG.getFrameIndex(FI, PtrTy);
4221
4222 // Store the stack protector onto the stack.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004223 SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN,
Bill Wendlingb2a42982008-11-06 02:29:10 +00004224 PseudoSourceValue::getFixedStack(FI),
4225 0, true);
4226 setValue(&I, Result);
4227 DAG.setRoot(Result);
4228 return 0;
4229 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004230 case Intrinsic::var_annotation:
4231 // Discard annotate attributes
4232 return 0;
4233
4234 case Intrinsic::init_trampoline: {
4235 const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts());
4236
4237 SDValue Ops[6];
4238 Ops[0] = getRoot();
4239 Ops[1] = getValue(I.getOperand(1));
4240 Ops[2] = getValue(I.getOperand(2));
4241 Ops[3] = getValue(I.getOperand(3));
4242 Ops[4] = DAG.getSrcValue(I.getOperand(1));
4243 Ops[5] = DAG.getSrcValue(F);
4244
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004245 SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004246 DAG.getNodeValueTypes(TLI.getPointerTy(),
4247 MVT::Other), 2,
4248 Ops, 6);
4249
4250 setValue(&I, Tmp);
4251 DAG.setRoot(Tmp.getValue(1));
4252 return 0;
4253 }
4254
4255 case Intrinsic::gcroot:
4256 if (GFI) {
4257 Value *Alloca = I.getOperand(1);
4258 Constant *TypeMap = cast<Constant>(I.getOperand(2));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004259
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004260 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
4261 GFI->addStackRoot(FI->getIndex(), TypeMap);
4262 }
4263 return 0;
4264
4265 case Intrinsic::gcread:
4266 case Intrinsic::gcwrite:
4267 assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
4268 return 0;
4269
4270 case Intrinsic::flt_rounds: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004271 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004272 return 0;
4273 }
4274
4275 case Intrinsic::trap: {
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004276 DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot()));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004277 return 0;
4278 }
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004279
Bill Wendlingef375462008-11-21 02:38:44 +00004280 case Intrinsic::uadd_with_overflow:
Bill Wendling74c37652008-12-09 22:08:41 +00004281 return implVisitAluOverflow(I, ISD::UADDO);
4282 case Intrinsic::sadd_with_overflow:
4283 return implVisitAluOverflow(I, ISD::SADDO);
4284 case Intrinsic::usub_with_overflow:
4285 return implVisitAluOverflow(I, ISD::USUBO);
4286 case Intrinsic::ssub_with_overflow:
4287 return implVisitAluOverflow(I, ISD::SSUBO);
4288 case Intrinsic::umul_with_overflow:
4289 return implVisitAluOverflow(I, ISD::UMULO);
4290 case Intrinsic::smul_with_overflow:
4291 return implVisitAluOverflow(I, ISD::SMULO);
Bill Wendling7cdc3c82008-11-21 02:03:52 +00004292
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004293 case Intrinsic::prefetch: {
4294 SDValue Ops[4];
4295 Ops[0] = getRoot();
4296 Ops[1] = getValue(I.getOperand(1));
4297 Ops[2] = getValue(I.getOperand(2));
4298 Ops[3] = getValue(I.getOperand(3));
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004299 DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004300 return 0;
4301 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004302
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004303 case Intrinsic::memory_barrier: {
4304 SDValue Ops[6];
4305 Ops[0] = getRoot();
4306 for (int x = 1; x < 6; ++x)
4307 Ops[x] = getValue(I.getOperand(x));
4308
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004309 DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004310 return 0;
4311 }
4312 case Intrinsic::atomic_cmp_swap: {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004313 SDValue Root = getRoot();
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004314 SDValue L =
Dale Johannesen66978ee2009-01-31 02:22:37 +00004315 DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004316 getValue(I.getOperand(2)).getValueType().getSimpleVT(),
4317 Root,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004318 getValue(I.getOperand(1)),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004319 getValue(I.getOperand(2)),
4320 getValue(I.getOperand(3)),
4321 I.getOperand(1));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004322 setValue(&I, L);
4323 DAG.setRoot(L.getValue(1));
4324 return 0;
4325 }
4326 case Intrinsic::atomic_load_add:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004327 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004328 case Intrinsic::atomic_load_sub:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004329 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004330 case Intrinsic::atomic_load_or:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004331 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004332 case Intrinsic::atomic_load_xor:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004333 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004334 case Intrinsic::atomic_load_and:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004335 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004336 case Intrinsic::atomic_load_nand:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004337 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004338 case Intrinsic::atomic_load_max:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004339 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004340 case Intrinsic::atomic_load_min:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004341 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004342 case Intrinsic::atomic_load_umin:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004343 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004344 case Intrinsic::atomic_load_umax:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004345 return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004346 case Intrinsic::atomic_swap:
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004347 return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004348 }
4349}
4350
4351
4352void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee,
4353 bool IsTailCall,
4354 MachineBasicBlock *LandingPad) {
4355 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
4356 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
4357 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
4358 unsigned BeginLabel = 0, EndLabel = 0;
4359
4360 TargetLowering::ArgListTy Args;
4361 TargetLowering::ArgListEntry Entry;
4362 Args.reserve(CS.arg_size());
4363 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
4364 i != e; ++i) {
4365 SDValue ArgNode = getValue(*i);
4366 Entry.Node = ArgNode; Entry.Ty = (*i)->getType();
4367
4368 unsigned attrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00004369 Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt);
4370 Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt);
4371 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
4372 Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet);
4373 Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest);
4374 Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004375 Entry.Alignment = CS.getParamAlignment(attrInd);
4376 Args.push_back(Entry);
4377 }
4378
4379 if (LandingPad && MMI) {
4380 // Insert a label before the invoke call to mark the try range. This can be
4381 // used to detect deletion of the invoke via the MachineModuleInfo.
4382 BeginLabel = MMI->NextLabelID();
4383 // Both PendingLoads and PendingExports must be flushed here;
4384 // this call might not return.
4385 (void)getRoot();
4386 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getControlRoot(), BeginLabel));
4387 }
4388
4389 std::pair<SDValue,SDValue> Result =
4390 TLI.LowerCallTo(getRoot(), CS.getType(),
Devang Patel05988662008-09-25 21:00:45 +00004391 CS.paramHasAttr(0, Attribute::SExt),
Dale Johannesen86098bd2008-09-26 19:31:26 +00004392 CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(),
4393 CS.paramHasAttr(0, Attribute::InReg),
4394 CS.getCallingConv(),
Dan Gohman1937e2f2008-09-16 01:42:28 +00004395 IsTailCall && PerformTailCallOpt,
Dale Johannesen66978ee2009-01-31 02:22:37 +00004396 Callee, Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004397 if (CS.getType() != Type::VoidTy)
4398 setValue(CS.getInstruction(), Result.first);
4399 DAG.setRoot(Result.second);
4400
4401 if (LandingPad && MMI) {
4402 // Insert a label at the end of the invoke call to mark the try range. This
4403 // can be used to detect deletion of the invoke via the MachineModuleInfo.
4404 EndLabel = MMI->NextLabelID();
4405 DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getRoot(), EndLabel));
4406
4407 // Inform MachineModuleInfo of range.
4408 MMI->addInvoke(LandingPad, BeginLabel, EndLabel);
4409 }
4410}
4411
4412
4413void SelectionDAGLowering::visitCall(CallInst &I) {
4414 const char *RenameFn = 0;
4415 if (Function *F = I.getCalledFunction()) {
4416 if (F->isDeclaration()) {
4417 if (unsigned IID = F->getIntrinsicID()) {
4418 RenameFn = visitIntrinsicCall(I, IID);
4419 if (!RenameFn)
4420 return;
4421 }
4422 }
4423
4424 // Check for well-known libc/libm calls. If the function is internal, it
4425 // can't be a library call.
4426 unsigned NameLen = F->getNameLen();
Rafael Espindolabb46f522009-01-15 20:18:42 +00004427 if (!F->hasLocalLinkage() && NameLen) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004428 const char *NameStr = F->getNameStart();
4429 if (NameStr[0] == 'c' &&
4430 ((NameLen == 8 && !strcmp(NameStr, "copysign")) ||
4431 (NameLen == 9 && !strcmp(NameStr, "copysignf")))) {
4432 if (I.getNumOperands() == 3 && // Basic sanity checks.
4433 I.getOperand(1)->getType()->isFloatingPoint() &&
4434 I.getType() == I.getOperand(1)->getType() &&
4435 I.getType() == I.getOperand(2)->getType()) {
4436 SDValue LHS = getValue(I.getOperand(1));
4437 SDValue RHS = getValue(I.getOperand(2));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004438 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004439 LHS.getValueType(), LHS, RHS));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004440 return;
4441 }
4442 } else if (NameStr[0] == 'f' &&
4443 ((NameLen == 4 && !strcmp(NameStr, "fabs")) ||
4444 (NameLen == 5 && !strcmp(NameStr, "fabsf")) ||
4445 (NameLen == 5 && !strcmp(NameStr, "fabsl")))) {
4446 if (I.getNumOperands() == 2 && // Basic sanity checks.
4447 I.getOperand(1)->getType()->isFloatingPoint() &&
4448 I.getType() == I.getOperand(1)->getType()) {
4449 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004450 setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004451 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004452 return;
4453 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004454 } else if (NameStr[0] == 's' &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004455 ((NameLen == 3 && !strcmp(NameStr, "sin")) ||
4456 (NameLen == 4 && !strcmp(NameStr, "sinf")) ||
4457 (NameLen == 4 && !strcmp(NameStr, "sinl")))) {
4458 if (I.getNumOperands() == 2 && // Basic sanity checks.
4459 I.getOperand(1)->getType()->isFloatingPoint() &&
4460 I.getType() == I.getOperand(1)->getType()) {
4461 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004462 setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004463 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004464 return;
4465 }
4466 } else if (NameStr[0] == 'c' &&
4467 ((NameLen == 3 && !strcmp(NameStr, "cos")) ||
4468 (NameLen == 4 && !strcmp(NameStr, "cosf")) ||
4469 (NameLen == 4 && !strcmp(NameStr, "cosl")))) {
4470 if (I.getNumOperands() == 2 && // Basic sanity checks.
4471 I.getOperand(1)->getType()->isFloatingPoint() &&
4472 I.getType() == I.getOperand(1)->getType()) {
4473 SDValue Tmp = getValue(I.getOperand(1));
Dale Johannesen66978ee2009-01-31 02:22:37 +00004474 setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004475 Tmp.getValueType(), Tmp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004476 return;
4477 }
4478 }
4479 }
4480 } else if (isa<InlineAsm>(I.getOperand(0))) {
4481 visitInlineAsm(&I);
4482 return;
4483 }
4484
4485 SDValue Callee;
4486 if (!RenameFn)
4487 Callee = getValue(I.getOperand(0));
4488 else
Bill Wendling056292f2008-09-16 21:48:12 +00004489 Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004490
4491 LowerCallTo(&I, Callee, I.isTailCall());
4492}
4493
4494
4495/// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004496/// this value and returns the result as a ValueVT value. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004497/// Chain/Flag as the input and updates them for the output Chain/Flag.
4498/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004499SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004500 SDValue &Chain,
4501 SDValue *Flag) const {
4502 // Assemble the legal parts into the final values.
4503 SmallVector<SDValue, 4> Values(ValueVTs.size());
4504 SmallVector<SDValue, 8> Parts;
4505 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4506 // Copy the legal parts from the registers.
4507 MVT ValueVT = ValueVTs[Value];
4508 unsigned NumRegs = TLI->getNumRegisters(ValueVT);
4509 MVT RegisterVT = RegVTs[Value];
4510
4511 Parts.resize(NumRegs);
4512 for (unsigned i = 0; i != NumRegs; ++i) {
4513 SDValue P;
4514 if (Flag == 0)
4515 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT);
4516 else {
4517 P = DAG.getCopyFromReg(Chain, Regs[Part+i], RegisterVT, *Flag);
4518 *Flag = P.getValue(2);
4519 }
4520 Chain = P.getValue(1);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004521
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004522 // If the source register was virtual and if we know something about it,
4523 // add an assert node.
4524 if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) &&
4525 RegisterVT.isInteger() && !RegisterVT.isVector()) {
4526 unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister;
4527 FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo();
4528 if (FLI.LiveOutRegInfo.size() > SlotNo) {
4529 FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004530
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004531 unsigned RegSize = RegisterVT.getSizeInBits();
4532 unsigned NumSignBits = LOI.NumSignBits;
4533 unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004534
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004535 // FIXME: We capture more information than the dag can represent. For
4536 // now, just use the tightest assertzext/assertsext possible.
4537 bool isSExt = true;
4538 MVT FromVT(MVT::Other);
4539 if (NumSignBits == RegSize)
4540 isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1
4541 else if (NumZeroBits >= RegSize-1)
4542 isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1
4543 else if (NumSignBits > RegSize-8)
4544 isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8
4545 else if (NumZeroBits >= RegSize-9)
4546 isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8
4547 else if (NumSignBits > RegSize-16)
Bill Wendling181b6272008-10-19 20:34:04 +00004548 isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004549 else if (NumZeroBits >= RegSize-17)
Bill Wendling181b6272008-10-19 20:34:04 +00004550 isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004551 else if (NumSignBits > RegSize-32)
Bill Wendling181b6272008-10-19 20:34:04 +00004552 isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004553 else if (NumZeroBits >= RegSize-33)
Bill Wendling181b6272008-10-19 20:34:04 +00004554 isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004555
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004556 if (FromVT != MVT::Other) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004557 P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004558 RegisterVT, P, DAG.getValueType(FromVT));
4559
4560 }
4561 }
4562 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004563
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004564 Parts[i] = P;
4565 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004566
Dale Johannesen66978ee2009-01-31 02:22:37 +00004567 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(),
4568 NumRegs, RegisterVT, ValueVT);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004569 Part += NumRegs;
4570 Parts.clear();
4571 }
4572
Dale Johannesen66978ee2009-01-31 02:22:37 +00004573 return DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00004574 DAG.getVTList(&ValueVTs[0], ValueVTs.size()),
4575 &Values[0], ValueVTs.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004576}
4577
4578/// getCopyToRegs - Emit a series of CopyToReg nodes that copies the
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004579/// specified value into the registers specified by this object. This uses
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004580/// Chain/Flag as the input and updates them for the output Chain/Flag.
4581/// If the Flag pointer is NULL, no flag is used.
Dale Johannesen66978ee2009-01-31 02:22:37 +00004582void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004583 SDValue &Chain, SDValue *Flag) const {
4584 // Get the list of the values's legal parts.
4585 unsigned NumRegs = Regs.size();
4586 SmallVector<SDValue, 8> Parts(NumRegs);
4587 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) {
4588 MVT ValueVT = ValueVTs[Value];
4589 unsigned NumParts = TLI->getNumRegisters(ValueVT);
4590 MVT RegisterVT = RegVTs[Value];
4591
Dale Johannesen66978ee2009-01-31 02:22:37 +00004592 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004593 &Parts[Part], NumParts, RegisterVT);
4594 Part += NumParts;
4595 }
4596
4597 // Copy the parts into the registers.
4598 SmallVector<SDValue, 8> Chains(NumRegs);
4599 for (unsigned i = 0; i != NumRegs; ++i) {
4600 SDValue Part;
4601 if (Flag == 0)
4602 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i]);
4603 else {
4604 Part = DAG.getCopyToReg(Chain, Regs[i], Parts[i], *Flag);
4605 *Flag = Part.getValue(1);
4606 }
4607 Chains[i] = Part.getValue(0);
4608 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004609
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004610 if (NumRegs == 1 || Flag)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004611 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004612 // flagged to it. That is the CopyToReg nodes and the user are considered
4613 // a single scheduling unit. If we create a TokenFactor and return it as
4614 // chain, then the TokenFactor is both a predecessor (operand) of the
4615 // user as well as a successor (the TF operands are flagged to the user).
4616 // c1, f1 = CopyToReg
4617 // c2, f2 = CopyToReg
4618 // c3 = TokenFactor c1, c2
4619 // ...
4620 // = op c3, ..., f2
4621 Chain = Chains[NumRegs-1];
4622 else
Dale Johannesen66978ee2009-01-31 02:22:37 +00004623 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004624}
4625
4626/// AddInlineAsmOperands - Add this value to the specified inlineasm node
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004627/// operand list. This adds the code marker and includes the number of
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004628/// values added into it.
4629void RegsForValue::AddInlineAsmOperands(unsigned Code, SelectionDAG &DAG,
4630 std::vector<SDValue> &Ops) const {
4631 MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy();
4632 Ops.push_back(DAG.getTargetConstant(Code | (Regs.size() << 3), IntPtrTy));
4633 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) {
4634 unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]);
4635 MVT RegisterVT = RegVTs[Value];
Chris Lattner58f15c42008-10-17 16:21:11 +00004636 for (unsigned i = 0; i != NumRegs; ++i) {
4637 assert(Reg < Regs.size() && "Mismatch in # registers expected");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004638 Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT));
Chris Lattner58f15c42008-10-17 16:21:11 +00004639 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004640 }
4641}
4642
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004643/// isAllocatableRegister - If the specified register is safe to allocate,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004644/// i.e. it isn't a stack pointer or some other special register, return the
4645/// register class for the register. Otherwise, return null.
4646static const TargetRegisterClass *
4647isAllocatableRegister(unsigned Reg, MachineFunction &MF,
4648 const TargetLowering &TLI,
4649 const TargetRegisterInfo *TRI) {
4650 MVT FoundVT = MVT::Other;
4651 const TargetRegisterClass *FoundRC = 0;
4652 for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(),
4653 E = TRI->regclass_end(); RCI != E; ++RCI) {
4654 MVT ThisVT = MVT::Other;
4655
4656 const TargetRegisterClass *RC = *RCI;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004657 // If none of the the value types for this register class are valid, we
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004658 // can't use it. For example, 64-bit reg classes on 32-bit targets.
4659 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
4660 I != E; ++I) {
4661 if (TLI.isTypeLegal(*I)) {
4662 // If we have already found this register in a different register class,
4663 // choose the one with the largest VT specified. For example, on
4664 // PowerPC, we favor f64 register classes over f32.
4665 if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) {
4666 ThisVT = *I;
4667 break;
4668 }
4669 }
4670 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004671
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004672 if (ThisVT == MVT::Other) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004673
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004674 // NOTE: This isn't ideal. In particular, this might allocate the
4675 // frame pointer in functions that need it (due to them not being taken
4676 // out of allocation, because a variable sized allocation hasn't been seen
4677 // yet). This is a slight code pessimization, but should still work.
4678 for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
4679 E = RC->allocation_order_end(MF); I != E; ++I)
4680 if (*I == Reg) {
4681 // We found a matching register class. Keep looking at others in case
4682 // we find one with larger registers that this physreg is also in.
4683 FoundRC = RC;
4684 FoundVT = ThisVT;
4685 break;
4686 }
4687 }
4688 return FoundRC;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004689}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004690
4691
4692namespace llvm {
4693/// AsmOperandInfo - This contains information for each constraint that we are
4694/// lowering.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004695struct VISIBILITY_HIDDEN SDISelAsmOperandInfo :
Daniel Dunbarc0c3b9a2008-09-10 04:16:29 +00004696 public TargetLowering::AsmOperandInfo {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004697 /// CallOperand - If this is the result output operand or a clobber
4698 /// this is null, otherwise it is the incoming operand to the CallInst.
4699 /// This gets modified as the asm is processed.
4700 SDValue CallOperand;
4701
4702 /// AssignedRegs - If this is a register or register class operand, this
4703 /// contains the set of register corresponding to the operand.
4704 RegsForValue AssignedRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004705
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004706 explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info)
4707 : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) {
4708 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004709
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004710 /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers
4711 /// busy in OutputRegs/InputRegs.
4712 void MarkAllocatedRegs(bool isOutReg, bool isInReg,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004713 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004714 std::set<unsigned> &InputRegs,
4715 const TargetRegisterInfo &TRI) const {
4716 if (isOutReg) {
4717 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4718 MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI);
4719 }
4720 if (isInReg) {
4721 for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i)
4722 MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI);
4723 }
4724 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004725
Chris Lattner81249c92008-10-17 17:05:25 +00004726 /// getCallOperandValMVT - Return the MVT of the Value* that this operand
4727 /// corresponds to. If there is no Value* for this operand, it returns
4728 /// MVT::Other.
4729 MVT getCallOperandValMVT(const TargetLowering &TLI,
4730 const TargetData *TD) const {
4731 if (CallOperandVal == 0) return MVT::Other;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004732
Chris Lattner81249c92008-10-17 17:05:25 +00004733 if (isa<BasicBlock>(CallOperandVal))
4734 return TLI.getPointerTy();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004735
Chris Lattner81249c92008-10-17 17:05:25 +00004736 const llvm::Type *OpTy = CallOperandVal->getType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004737
Chris Lattner81249c92008-10-17 17:05:25 +00004738 // If this is an indirect operand, the operand is a pointer to the
4739 // accessed type.
4740 if (isIndirect)
4741 OpTy = cast<PointerType>(OpTy)->getElementType();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004742
Chris Lattner81249c92008-10-17 17:05:25 +00004743 // If OpTy is not a single value, it may be a struct/union that we
4744 // can tile with integers.
4745 if (!OpTy->isSingleValueType() && OpTy->isSized()) {
4746 unsigned BitSize = TD->getTypeSizeInBits(OpTy);
4747 switch (BitSize) {
4748 default: break;
4749 case 1:
4750 case 8:
4751 case 16:
4752 case 32:
4753 case 64:
Chris Lattnercfc14c12008-10-17 19:59:51 +00004754 case 128:
Chris Lattner81249c92008-10-17 17:05:25 +00004755 OpTy = IntegerType::get(BitSize);
4756 break;
4757 }
4758 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004759
Chris Lattner81249c92008-10-17 17:05:25 +00004760 return TLI.getValueType(OpTy, true);
4761 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004762
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004763private:
4764 /// MarkRegAndAliases - Mark the specified register and all aliases in the
4765 /// specified set.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004766 static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004767 const TargetRegisterInfo &TRI) {
4768 assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg");
4769 Regs.insert(Reg);
4770 if (const unsigned *Aliases = TRI.getAliasSet(Reg))
4771 for (; *Aliases; ++Aliases)
4772 Regs.insert(*Aliases);
4773 }
4774};
4775} // end llvm namespace.
4776
4777
4778/// GetRegistersForValue - Assign registers (virtual or physical) for the
4779/// specified operand. We prefer to assign virtual registers, to allow the
4780/// register allocator handle the assignment process. However, if the asm uses
4781/// features that we can't model on machineinstrs, we have SDISel do the
4782/// allocation. This produces generally horrible, but correct, code.
4783///
4784/// OpInfo describes the operand.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004785/// Input and OutputRegs are the set of already allocated physical registers.
4786///
4787void SelectionDAGLowering::
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004788GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004789 std::set<unsigned> &OutputRegs,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004790 std::set<unsigned> &InputRegs) {
4791 // Compute whether this value requires an input register, an output register,
4792 // or both.
4793 bool isOutReg = false;
4794 bool isInReg = false;
4795 switch (OpInfo.Type) {
4796 case InlineAsm::isOutput:
4797 isOutReg = true;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004798
4799 // If there is an input constraint that matches this, we need to reserve
Dale Johannesen8e3455b2008-09-24 23:13:09 +00004800 // the input register so no other inputs allocate to it.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004801 isInReg = OpInfo.hasMatchingInput();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004802 break;
4803 case InlineAsm::isInput:
4804 isInReg = true;
4805 isOutReg = false;
4806 break;
4807 case InlineAsm::isClobber:
4808 isOutReg = true;
4809 isInReg = true;
4810 break;
4811 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004812
4813
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004814 MachineFunction &MF = DAG.getMachineFunction();
4815 SmallVector<unsigned, 4> Regs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004816
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004817 // If this is a constraint for a single physreg, or a constraint for a
4818 // register class, find it.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004819 std::pair<unsigned, const TargetRegisterClass*> PhysReg =
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004820 TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode,
4821 OpInfo.ConstraintVT);
4822
4823 unsigned NumRegs = 1;
Chris Lattner01426e12008-10-21 00:45:36 +00004824 if (OpInfo.ConstraintVT != MVT::Other) {
4825 // If this is a FP input in an integer register (or visa versa) insert a bit
4826 // cast of the input value. More generally, handle any case where the input
4827 // value disagrees with the register class we plan to stick this in.
4828 if (OpInfo.Type == InlineAsm::isInput &&
4829 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) {
4830 // Try to convert to the first MVT that the reg class contains. If the
4831 // types are identical size, use a bitcast to convert (e.g. two differing
4832 // vector types).
4833 MVT RegVT = *PhysReg.second->vt_begin();
4834 if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00004835 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004836 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004837 OpInfo.ConstraintVT = RegVT;
4838 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) {
4839 // If the input is a FP value and we want it in FP registers, do a
4840 // bitcast to the corresponding integer type. This turns an f64 value
4841 // into i64, which can be passed with two i32 values on a 32-bit
4842 // machine.
4843 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits());
Dale Johannesen66978ee2009-01-31 02:22:37 +00004844 OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00004845 RegVT, OpInfo.CallOperand);
Chris Lattner01426e12008-10-21 00:45:36 +00004846 OpInfo.ConstraintVT = RegVT;
4847 }
4848 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004849
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004850 NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT);
Chris Lattner01426e12008-10-21 00:45:36 +00004851 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004852
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004853 MVT RegVT;
4854 MVT ValueVT = OpInfo.ConstraintVT;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004855
4856 // If this is a constraint for a specific physical register, like {r17},
4857 // assign it now.
4858 if (PhysReg.first) {
4859 if (OpInfo.ConstraintVT == MVT::Other)
4860 ValueVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004861
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004862 // Get the actual register value type. This is important, because the user
4863 // may have asked for (e.g.) the AX register in i32 type. We need to
4864 // remember that AX is actually i16 to get the right extension.
4865 RegVT = *PhysReg.second->vt_begin();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004866
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004867 // This is a explicit reference to a physical register.
4868 Regs.push_back(PhysReg.first);
4869
4870 // If this is an expanded reference, add the rest of the regs to Regs.
4871 if (NumRegs != 1) {
4872 TargetRegisterClass::iterator I = PhysReg.second->begin();
4873 for (; *I != PhysReg.first; ++I)
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004874 assert(I != PhysReg.second->end() && "Didn't find reg!");
4875
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004876 // Already added the first reg.
4877 --NumRegs; ++I;
4878 for (; NumRegs; --NumRegs, ++I) {
4879 assert(I != PhysReg.second->end() && "Ran out of registers to allocate!");
4880 Regs.push_back(*I);
4881 }
4882 }
4883 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4884 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4885 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4886 return;
4887 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004888
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004889 // Otherwise, if this was a reference to an LLVM register class, create vregs
4890 // for this reference.
4891 std::vector<unsigned> RegClassRegs;
4892 const TargetRegisterClass *RC = PhysReg.second;
4893 if (RC) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004894 // If this is a tied register, our regalloc doesn't know how to maintain
Chris Lattner58f15c42008-10-17 16:21:11 +00004895 // the constraint, so we have to pick a register to pin the input/output to.
4896 // If it isn't a matched constraint, go ahead and create vreg and let the
4897 // regalloc do its thing.
Chris Lattner6bdcda32008-10-17 16:47:46 +00004898 if (!OpInfo.hasMatchingInput()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004899 RegVT = *PhysReg.second->vt_begin();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004900 if (OpInfo.ConstraintVT == MVT::Other)
4901 ValueVT = RegVT;
4902
4903 // Create the appropriate number of virtual registers.
4904 MachineRegisterInfo &RegInfo = MF.getRegInfo();
4905 for (; NumRegs; --NumRegs)
4906 Regs.push_back(RegInfo.createVirtualRegister(PhysReg.second));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004907
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004908 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT);
4909 return;
4910 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004911
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004912 // Otherwise, we can't allocate it. Let the code below figure out how to
4913 // maintain these constraints.
4914 RegClassRegs.assign(PhysReg.second->begin(), PhysReg.second->end());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004915
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004916 } else {
4917 // This is a reference to a register class that doesn't directly correspond
4918 // to an LLVM register class. Allocate NumRegs consecutive, available,
4919 // registers from the class.
4920 RegClassRegs = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode,
4921 OpInfo.ConstraintVT);
4922 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004923
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004924 const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo();
4925 unsigned NumAllocated = 0;
4926 for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) {
4927 unsigned Reg = RegClassRegs[i];
4928 // See if this register is available.
4929 if ((isOutReg && OutputRegs.count(Reg)) || // Already used.
4930 (isInReg && InputRegs.count(Reg))) { // Already used.
4931 // Make sure we find consecutive registers.
4932 NumAllocated = 0;
4933 continue;
4934 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004935
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004936 // Check to see if this register is allocatable (i.e. don't give out the
4937 // stack pointer).
4938 if (RC == 0) {
4939 RC = isAllocatableRegister(Reg, MF, TLI, TRI);
4940 if (!RC) { // Couldn't allocate this register.
4941 // Reset NumAllocated to make sure we return consecutive registers.
4942 NumAllocated = 0;
4943 continue;
4944 }
4945 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004946
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004947 // Okay, this register is good, we can use it.
4948 ++NumAllocated;
4949
4950 // If we allocated enough consecutive registers, succeed.
4951 if (NumAllocated == NumRegs) {
4952 unsigned RegStart = (i-NumAllocated)+1;
4953 unsigned RegEnd = i+1;
4954 // Mark all of the allocated registers used.
4955 for (unsigned i = RegStart; i != RegEnd; ++i)
4956 Regs.push_back(RegClassRegs[i]);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004957
4958 OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004959 OpInfo.ConstraintVT);
4960 OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI);
4961 return;
4962 }
4963 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004964
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004965 // Otherwise, we couldn't allocate enough registers for this.
4966}
4967
Evan Chengda43bcf2008-09-24 00:05:32 +00004968/// hasInlineAsmMemConstraint - Return true if the inline asm instruction being
4969/// processed uses a memory 'm' constraint.
4970static bool
4971hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos,
Dan Gohmane9530ec2009-01-15 16:58:17 +00004972 const TargetLowering &TLI) {
Evan Chengda43bcf2008-09-24 00:05:32 +00004973 for (unsigned i = 0, e = CInfos.size(); i != e; ++i) {
4974 InlineAsm::ConstraintInfo &CI = CInfos[i];
4975 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
4976 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
4977 if (CType == TargetLowering::C_Memory)
4978 return true;
4979 }
4980 }
4981
4982 return false;
4983}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004984
4985/// visitInlineAsm - Handle a call to an InlineAsm object.
4986///
4987void SelectionDAGLowering::visitInlineAsm(CallSite CS) {
4988 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
4989
4990 /// ConstraintOperands - Information about all of the constraints.
4991 std::vector<SDISelAsmOperandInfo> ConstraintOperands;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004992
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004993 SDValue Chain = getRoot();
4994 SDValue Flag;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00004995
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00004996 std::set<unsigned> OutputRegs, InputRegs;
4997
4998 // Do a prepass over the constraints, canonicalizing them, and building up the
4999 // ConstraintOperands list.
5000 std::vector<InlineAsm::ConstraintInfo>
5001 ConstraintInfos = IA->ParseConstraints();
5002
Evan Chengda43bcf2008-09-24 00:05:32 +00005003 bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005004
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005005 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
5006 unsigned ResNo = 0; // ResNo - The result number of the next output.
5007 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5008 ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i]));
5009 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005010
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005011 MVT OpVT = MVT::Other;
5012
5013 // Compute the value type for each operand.
5014 switch (OpInfo.Type) {
5015 case InlineAsm::isOutput:
5016 // Indirect outputs just consume an argument.
5017 if (OpInfo.isIndirect) {
5018 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5019 break;
5020 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005021
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005022 // The return value of the call is this value. As such, there is no
5023 // corresponding argument.
5024 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5025 if (const StructType *STy = dyn_cast<StructType>(CS.getType())) {
5026 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5027 } else {
5028 assert(ResNo == 0 && "Asm only has one result!");
5029 OpVT = TLI.getValueType(CS.getType());
5030 }
5031 ++ResNo;
5032 break;
5033 case InlineAsm::isInput:
5034 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
5035 break;
5036 case InlineAsm::isClobber:
5037 // Nothing to do.
5038 break;
5039 }
5040
5041 // If this is an input or an indirect output, process the call argument.
5042 // BasicBlocks are labels, currently appearing only in asm's.
5043 if (OpInfo.CallOperandVal) {
Chris Lattner81249c92008-10-17 17:05:25 +00005044 if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005045 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]);
Chris Lattner81249c92008-10-17 17:05:25 +00005046 } else {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005047 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005048 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005049
Chris Lattner81249c92008-10-17 17:05:25 +00005050 OpVT = OpInfo.getCallOperandValMVT(TLI, TD);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005051 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005052
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005053 OpInfo.ConstraintVT = OpVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005054 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005055
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005056 // Second pass over the constraints: compute which constraint option to use
5057 // and assign registers to constraints that want a specific physreg.
5058 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
5059 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005060
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005061 // If this is an output operand with a matching input operand, look up the
Evan Cheng09dc9c02008-12-16 18:21:39 +00005062 // matching input. If their types mismatch, e.g. one is an integer, the
5063 // other is floating point, or their sizes are different, flag it as an
5064 // error.
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005065 if (OpInfo.hasMatchingInput()) {
5066 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput];
5067 if (OpInfo.ConstraintVT != Input.ConstraintVT) {
Evan Cheng09dc9c02008-12-16 18:21:39 +00005068 if ((OpInfo.ConstraintVT.isInteger() !=
5069 Input.ConstraintVT.isInteger()) ||
5070 (OpInfo.ConstraintVT.getSizeInBits() !=
5071 Input.ConstraintVT.getSizeInBits())) {
5072 cerr << "Unsupported asm: input constraint with a matching output "
5073 << "constraint of incompatible type!\n";
5074 exit(1);
5075 }
5076 Input.ConstraintVT = OpInfo.ConstraintVT;
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005077 }
5078 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005079
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005080 // Compute the constraint code and ConstraintType to use.
Evan Chengda43bcf2008-09-24 00:05:32 +00005081 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005082
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005083 // If this is a memory input, and if the operand is not indirect, do what we
5084 // need to to provide an address for the memory input.
5085 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
5086 !OpInfo.isIndirect) {
5087 assert(OpInfo.Type == InlineAsm::isInput &&
5088 "Can only indirectify direct input operands!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005089
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005090 // Memory operands really want the address of the value. If we don't have
5091 // an indirect input, put it in the constpool if we can, otherwise spill
5092 // it to a stack slot.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005093
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005094 // If the operand is a float, integer, or vector constant, spill to a
5095 // constant pool entry to get its address.
5096 Value *OpVal = OpInfo.CallOperandVal;
5097 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5098 isa<ConstantVector>(OpVal)) {
5099 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5100 TLI.getPointerTy());
5101 } else {
5102 // Otherwise, create a stack slot and emit a store to it before the
5103 // asm.
5104 const Type *Ty = OpVal->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005105 uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005106 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
5107 MachineFunction &MF = DAG.getMachineFunction();
5108 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align);
5109 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005110 Chain = DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005111 OpInfo.CallOperand, StackSlot, NULL, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005112 OpInfo.CallOperand = StackSlot;
5113 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005114
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005115 // There is no longer a Value* corresponding to this operand.
5116 OpInfo.CallOperandVal = 0;
5117 // It is now an indirect operand.
5118 OpInfo.isIndirect = true;
5119 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005120
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005121 // If this constraint is for a specific register, allocate it before
5122 // anything else.
5123 if (OpInfo.ConstraintType == TargetLowering::C_Register)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005124 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005125 }
5126 ConstraintInfos.clear();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005127
5128
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005129 // Second pass - Loop over all of the operands, assigning virtual or physregs
Chris Lattner58f15c42008-10-17 16:21:11 +00005130 // to register class operands.
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005131 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5132 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005133
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005134 // C_Register operands have already been allocated, Other/Memory don't need
5135 // to be.
5136 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass)
Dale Johannesen8e3455b2008-09-24 23:13:09 +00005137 GetRegistersForValue(OpInfo, OutputRegs, InputRegs);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005138 }
5139
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005140 // AsmNodeOperands - The operands for the ISD::INLINEASM node.
5141 std::vector<SDValue> AsmNodeOperands;
5142 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain
5143 AsmNodeOperands.push_back(
Bill Wendling056292f2008-09-16 21:48:12 +00005144 DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other));
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005145
5146
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005147 // Loop over all of the inputs, copying the operand values into the
5148 // appropriate registers and processing the output regs.
5149 RegsForValue RetValRegs;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005150
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005151 // IndirectStoresToEmit - The set of stores to emit after the inline asm node.
5152 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005153
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005154 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) {
5155 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i];
5156
5157 switch (OpInfo.Type) {
5158 case InlineAsm::isOutput: {
5159 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass &&
5160 OpInfo.ConstraintType != TargetLowering::C_Register) {
5161 // Memory output, or 'other' output (e.g. 'X' constraint).
5162 assert(OpInfo.isIndirect && "Memory output must be indirect operand");
5163
5164 // Add information to the INLINEASM node to know about this output.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005165 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5166 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005167 TLI.getPointerTy()));
5168 AsmNodeOperands.push_back(OpInfo.CallOperand);
5169 break;
5170 }
5171
5172 // Otherwise, this is a register or register class output.
5173
5174 // Copy the output from the appropriate register. Find a register that
5175 // we can use.
5176 if (OpInfo.AssignedRegs.Regs.empty()) {
5177 cerr << "Couldn't allocate output reg for constraint '"
5178 << OpInfo.ConstraintCode << "'!\n";
5179 exit(1);
5180 }
5181
5182 // If this is an indirect operand, store through the pointer after the
5183 // asm.
5184 if (OpInfo.isIndirect) {
5185 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs,
5186 OpInfo.CallOperandVal));
5187 } else {
5188 // This is the result value of the call.
5189 assert(CS.getType() != Type::VoidTy && "Bad inline asm!");
5190 // Concatenate this output onto the outputs list.
5191 RetValRegs.append(OpInfo.AssignedRegs);
5192 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005193
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005194 // Add information to the INLINEASM node to know that this register is
5195 // set.
Dale Johannesen913d3df2008-09-12 17:49:03 +00005196 OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ?
5197 6 /* EARLYCLOBBER REGDEF */ :
5198 2 /* REGDEF */ ,
5199 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005200 break;
5201 }
5202 case InlineAsm::isInput: {
5203 SDValue InOperandVal = OpInfo.CallOperand;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005204
Chris Lattner6bdcda32008-10-17 16:47:46 +00005205 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint?
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005206 // If this is required to match an output register we have already set,
5207 // just use its register.
Chris Lattner58f15c42008-10-17 16:21:11 +00005208 unsigned OperandNo = OpInfo.getMatchedOperand();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005209
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005210 // Scan until we find the definition we already emitted of this operand.
5211 // When we find it, create a RegsForValue operand.
5212 unsigned CurOp = 2; // The first operand.
5213 for (; OperandNo; --OperandNo) {
5214 // Advance to the next operand.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005215 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005216 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005217 assert(((NumOps & 7) == 2 /*REGDEF*/ ||
Dale Johannesen913d3df2008-09-12 17:49:03 +00005218 (NumOps & 7) == 6 /*EARLYCLOBBER REGDEF*/ ||
Dale Johannesen86b49f82008-09-24 01:07:17 +00005219 (NumOps & 7) == 4 /*MEM*/) &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005220 "Skipped past definitions?");
5221 CurOp += (NumOps>>3)+1;
5222 }
5223
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005224 unsigned NumOps =
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005225 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005226 if ((NumOps & 7) == 2 /*REGDEF*/
Dale Johannesen913d3df2008-09-12 17:49:03 +00005227 || (NumOps & 7) == 6 /* EARLYCLOBBER REGDEF */) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005228 // Add NumOps>>3 registers to MatchedRegs.
5229 RegsForValue MatchedRegs;
5230 MatchedRegs.TLI = &TLI;
5231 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType());
5232 MatchedRegs.RegVTs.push_back(AsmNodeOperands[CurOp+1].getValueType());
5233 for (unsigned i = 0, e = NumOps>>3; i != e; ++i) {
5234 unsigned Reg =
5235 cast<RegisterSDNode>(AsmNodeOperands[++CurOp])->getReg();
5236 MatchedRegs.Regs.push_back(Reg);
5237 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005238
5239 // Use the produced MatchedRegs object to
Dale Johannesen66978ee2009-01-31 02:22:37 +00005240 MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5241 Chain, &Flag);
Dale Johannesen86b49f82008-09-24 01:07:17 +00005242 MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005243 break;
5244 } else {
Dale Johannesen86b49f82008-09-24 01:07:17 +00005245 assert(((NumOps & 7) == 4) && "Unknown matching constraint!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005246 assert((NumOps >> 3) == 1 && "Unexpected number of operands");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005247 // Add information to the INLINEASM node to know about this input.
Dale Johannesen91aac102008-09-17 21:13:11 +00005248 AsmNodeOperands.push_back(DAG.getTargetConstant(NumOps,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005249 TLI.getPointerTy()));
5250 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]);
5251 break;
5252 }
5253 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005254
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005255 if (OpInfo.ConstraintType == TargetLowering::C_Other) {
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005256 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005257 "Don't know how to handle indirect other inputs yet!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005258
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005259 std::vector<SDValue> Ops;
5260 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0],
Evan Chengda43bcf2008-09-24 00:05:32 +00005261 hasMemory, Ops, DAG);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005262 if (Ops.empty()) {
5263 cerr << "Invalid operand for inline asm constraint '"
5264 << OpInfo.ConstraintCode << "'!\n";
5265 exit(1);
5266 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005267
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005268 // Add information to the INLINEASM node to know about this input.
5269 unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005270 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005271 TLI.getPointerTy()));
5272 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end());
5273 break;
5274 } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) {
5275 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!");
5276 assert(InOperandVal.getValueType() == TLI.getPointerTy() &&
5277 "Memory operands expect pointer values");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005278
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005279 // Add information to the INLINEASM node to know about this input.
Dale Johannesen86b49f82008-09-24 01:07:17 +00005280 unsigned ResOpType = 4/*MEM*/ | (1<<3);
5281 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005282 TLI.getPointerTy()));
5283 AsmNodeOperands.push_back(InOperandVal);
5284 break;
5285 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005286
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005287 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass ||
5288 OpInfo.ConstraintType == TargetLowering::C_Register) &&
5289 "Unknown constraint type!");
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005290 assert(!OpInfo.isIndirect &&
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005291 "Don't know how to handle indirect register inputs yet!");
5292
5293 // Copy the input into the appropriate registers.
Evan Chengaa765b82008-09-25 00:14:04 +00005294 if (OpInfo.AssignedRegs.Regs.empty()) {
5295 cerr << "Couldn't allocate output reg for constraint '"
5296 << OpInfo.ConstraintCode << "'!\n";
5297 exit(1);
5298 }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005299
Dale Johannesen66978ee2009-01-31 02:22:37 +00005300 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(),
5301 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005302
Dale Johannesen86b49f82008-09-24 01:07:17 +00005303 OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/,
5304 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005305 break;
5306 }
5307 case InlineAsm::isClobber: {
5308 // Add the clobbered value to the operand list, so that the register
5309 // allocator is aware that the physreg got clobbered.
5310 if (!OpInfo.AssignedRegs.Regs.empty())
Dale Johannesen91aac102008-09-17 21:13:11 +00005311 OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */,
5312 DAG, AsmNodeOperands);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005313 break;
5314 }
5315 }
5316 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005317
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005318 // Finish up input operands.
5319 AsmNodeOperands[0] = Chain;
5320 if (Flag.getNode()) AsmNodeOperands.push_back(Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005321
Dale Johannesen66978ee2009-01-31 02:22:37 +00005322 Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005323 DAG.getNodeValueTypes(MVT::Other, MVT::Flag), 2,
5324 &AsmNodeOperands[0], AsmNodeOperands.size());
5325 Flag = Chain.getValue(1);
5326
5327 // If this asm returns a register value, copy the result from that register
5328 // and set it as the value of the call.
5329 if (!RetValRegs.Regs.empty()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005330 SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5331 Chain, &Flag);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005332
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005333 // FIXME: Why don't we do this for inline asms with MRVs?
5334 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) {
5335 MVT ResultType = TLI.getValueType(CS.getType());
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005336
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005337 // If any of the results of the inline asm is a vector, it may have the
5338 // wrong width/num elts. This can happen for register classes that can
5339 // contain multiple different value types. The preg or vreg allocated may
5340 // not have the same VT as was expected. Convert it to the right type
5341 // with bit_convert.
5342 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005343 Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005344 ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005345
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005346 } else if (ResultType != Val.getValueType() &&
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005347 ResultType.isInteger() && Val.getValueType().isInteger()) {
5348 // If a result value was tied to an input value, the computed result may
5349 // have a wider width than the expected result. Extract the relevant
5350 // portion.
Dale Johannesen66978ee2009-01-31 02:22:37 +00005351 Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val);
Dan Gohman95915732008-10-18 01:03:45 +00005352 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005353
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005354 assert(ResultType == Val.getValueType() && "Asm result value mismatch!");
Chris Lattner0c526442008-10-17 17:52:49 +00005355 }
Dan Gohman95915732008-10-18 01:03:45 +00005356
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005357 setValue(CS.getInstruction(), Val);
5358 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005359
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005360 std::vector<std::pair<SDValue, Value*> > StoresToEmit;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005361
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005362 // Process indirect outputs, first output all of the flagged copies out of
5363 // physregs.
5364 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) {
5365 RegsForValue &OutRegs = IndirectStoresToEmit[i].first;
5366 Value *Ptr = IndirectStoresToEmit[i].second;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005367 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(),
5368 Chain, &Flag);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005369 StoresToEmit.push_back(std::make_pair(OutVal, Ptr));
5370 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005371
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005372 // Emit the non-flagged stores from the physregs.
5373 SmallVector<SDValue, 8> OutChains;
5374 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i)
Dale Johannesen66978ee2009-01-31 02:22:37 +00005375 OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005376 StoresToEmit[i].first,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005377 getValue(StoresToEmit[i].second),
5378 StoresToEmit[i].second, 0));
5379 if (!OutChains.empty())
Dale Johannesen66978ee2009-01-31 02:22:37 +00005380 Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005381 &OutChains[0], OutChains.size());
5382 DAG.setRoot(Chain);
5383}
5384
5385
5386void SelectionDAGLowering::visitMalloc(MallocInst &I) {
5387 SDValue Src = getValue(I.getOperand(0));
5388
5389 MVT IntPtr = TLI.getPointerTy();
5390
5391 if (IntPtr.bitsLT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005392 Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005393 else if (IntPtr.bitsGT(Src.getValueType()))
Dale Johannesen66978ee2009-01-31 02:22:37 +00005394 Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005395
5396 // Scale the source by the type size.
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005397 uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType());
Dale Johannesen66978ee2009-01-31 02:22:37 +00005398 Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005399 Src, DAG.getIntPtrConstant(ElementSize));
5400
5401 TargetLowering::ArgListTy Args;
5402 TargetLowering::ArgListEntry Entry;
5403 Entry.Node = Src;
5404 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5405 Args.push_back(Entry);
5406
5407 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005408 TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false,
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005409 CallingConv::C, PerformTailCallOpt,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005410 DAG.getExternalSymbol("malloc", IntPtr),
Dale Johannesen66978ee2009-01-31 02:22:37 +00005411 Args, DAG, getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005412 setValue(&I, Result.first); // Pointers always fit in registers
5413 DAG.setRoot(Result.second);
5414}
5415
5416void SelectionDAGLowering::visitFree(FreeInst &I) {
5417 TargetLowering::ArgListTy Args;
5418 TargetLowering::ArgListEntry Entry;
5419 Entry.Node = getValue(I.getOperand(0));
5420 Entry.Ty = TLI.getTargetData()->getIntPtrType();
5421 Args.push_back(Entry);
5422 MVT IntPtr = TLI.getPointerTy();
5423 std::pair<SDValue,SDValue> Result =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005424 TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false,
Dan Gohman1937e2f2008-09-16 01:42:28 +00005425 CallingConv::C, PerformTailCallOpt,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005426 DAG.getExternalSymbol("free", IntPtr), Args, DAG,
Dale Johannesen66978ee2009-01-31 02:22:37 +00005427 getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005428 DAG.setRoot(Result.second);
5429}
5430
5431void SelectionDAGLowering::visitVAStart(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005432 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005433 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005434 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005435 DAG.getSrcValue(I.getOperand(1))));
5436}
5437
5438void SelectionDAGLowering::visitVAArg(VAArgInst &I) {
5439 SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getRoot(),
5440 getValue(I.getOperand(0)),
5441 DAG.getSrcValue(I.getOperand(0)));
5442 setValue(&I, V);
5443 DAG.setRoot(V.getValue(1));
5444}
5445
5446void SelectionDAGLowering::visitVAEnd(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005447 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005448 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005449 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005450 DAG.getSrcValue(I.getOperand(1))));
5451}
5452
5453void SelectionDAGLowering::visitVACopy(CallInst &I) {
Dale Johannesen66978ee2009-01-31 02:22:37 +00005454 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(),
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005455 MVT::Other, getRoot(),
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005456 getValue(I.getOperand(1)),
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005457 getValue(I.getOperand(2)),
5458 DAG.getSrcValue(I.getOperand(1)),
5459 DAG.getSrcValue(I.getOperand(2))));
5460}
5461
5462/// TargetLowering::LowerArguments - This is the default LowerArguments
5463/// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005464/// targets are migrated to using FORMAL_ARGUMENTS, this hook should be
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005465/// integrated into SDISel.
5466void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005467 SmallVectorImpl<SDValue> &ArgValues,
5468 DebugLoc dl) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005469 // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node.
5470 SmallVector<SDValue, 3+16> Ops;
5471 Ops.push_back(DAG.getRoot());
5472 Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy()));
5473 Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy()));
5474
5475 // Add one result value for each formal argument.
5476 SmallVector<MVT, 16> RetVals;
5477 unsigned j = 1;
5478 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end();
5479 I != E; ++I, ++j) {
5480 SmallVector<MVT, 4> ValueVTs;
5481 ComputeValueVTs(*this, I->getType(), ValueVTs);
5482 for (unsigned Value = 0, NumValues = ValueVTs.size();
5483 Value != NumValues; ++Value) {
5484 MVT VT = ValueVTs[Value];
5485 const Type *ArgTy = VT.getTypeForMVT();
5486 ISD::ArgFlagsTy Flags;
5487 unsigned OriginalAlignment =
5488 getTargetData()->getABITypeAlignment(ArgTy);
5489
Devang Patel05988662008-09-25 21:00:45 +00005490 if (F.paramHasAttr(j, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005491 Flags.setZExt();
Devang Patel05988662008-09-25 21:00:45 +00005492 if (F.paramHasAttr(j, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005493 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00005494 if (F.paramHasAttr(j, Attribute::InReg))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005495 Flags.setInReg();
Devang Patel05988662008-09-25 21:00:45 +00005496 if (F.paramHasAttr(j, Attribute::StructRet))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005497 Flags.setSRet();
Devang Patel05988662008-09-25 21:00:45 +00005498 if (F.paramHasAttr(j, Attribute::ByVal)) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005499 Flags.setByVal();
5500 const PointerType *Ty = cast<PointerType>(I->getType());
5501 const Type *ElementTy = Ty->getElementType();
5502 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005503 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005504 // For ByVal, alignment should be passed from FE. BE will guess if
5505 // this info is not there but there are cases it cannot get right.
5506 if (F.getParamAlignment(j))
5507 FrameAlign = F.getParamAlignment(j);
5508 Flags.setByValAlign(FrameAlign);
5509 Flags.setByValSize(FrameSize);
5510 }
Devang Patel05988662008-09-25 21:00:45 +00005511 if (F.paramHasAttr(j, Attribute::Nest))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005512 Flags.setNest();
5513 Flags.setOrigAlign(OriginalAlignment);
5514
5515 MVT RegisterVT = getRegisterType(VT);
5516 unsigned NumRegs = getNumRegisters(VT);
5517 for (unsigned i = 0; i != NumRegs; ++i) {
5518 RetVals.push_back(RegisterVT);
5519 ISD::ArgFlagsTy MyFlags = Flags;
5520 if (NumRegs > 1 && i == 0)
5521 MyFlags.setSplit();
5522 // if it isn't first piece, alignment must be 1
5523 else if (i > 0)
5524 MyFlags.setOrigAlign(1);
5525 Ops.push_back(DAG.getArgFlags(MyFlags));
5526 }
5527 }
5528 }
5529
5530 RetVals.push_back(MVT::Other);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005531
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005532 // Create the node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005533 SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005534 DAG.getVTList(&RetVals[0], RetVals.size()),
5535 &Ops[0], Ops.size()).getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005536
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005537 // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but
5538 // allows exposing the loads that may be part of the argument access to the
5539 // first DAGCombiner pass.
5540 SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005541
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005542 // The number of results should match up, except that the lowered one may have
5543 // an extra flag result.
5544 assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() ||
5545 (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() &&
5546 TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag))
5547 && "Lowering produced unexpected number of results!");
5548
5549 // The FORMAL_ARGUMENTS node itself is likely no longer needed.
5550 if (Result != TmpRes.getNode() && Result->use_empty()) {
5551 HandleSDNode Dummy(DAG.getRoot());
5552 DAG.RemoveDeadNode(Result);
5553 }
5554
5555 Result = TmpRes.getNode();
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005556
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005557 unsigned NumArgRegs = Result->getNumValues() - 1;
5558 DAG.setRoot(SDValue(Result, NumArgRegs));
5559
5560 // Set up the return result vector.
5561 unsigned i = 0;
5562 unsigned Idx = 1;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005563 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005564 ++I, ++Idx) {
5565 SmallVector<MVT, 4> ValueVTs;
5566 ComputeValueVTs(*this, I->getType(), ValueVTs);
5567 for (unsigned Value = 0, NumValues = ValueVTs.size();
5568 Value != NumValues; ++Value) {
5569 MVT VT = ValueVTs[Value];
5570 MVT PartVT = getRegisterType(VT);
5571
5572 unsigned NumParts = getNumRegisters(VT);
5573 SmallVector<SDValue, 4> Parts(NumParts);
5574 for (unsigned j = 0; j != NumParts; ++j)
5575 Parts[j] = SDValue(Result, i++);
5576
5577 ISD::NodeType AssertOp = ISD::DELETED_NODE;
Devang Patel05988662008-09-25 21:00:45 +00005578 if (F.paramHasAttr(Idx, Attribute::SExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005579 AssertOp = ISD::AssertSext;
Devang Patel05988662008-09-25 21:00:45 +00005580 else if (F.paramHasAttr(Idx, Attribute::ZExt))
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005581 AssertOp = ISD::AssertZext;
5582
Dale Johannesen66978ee2009-01-31 02:22:37 +00005583 ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts,
5584 PartVT, VT, AssertOp));
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005585 }
5586 }
5587 assert(i == NumArgRegs && "Argument register count mismatch!");
5588}
5589
5590
5591/// TargetLowering::LowerCallTo - This is the default LowerCallTo
5592/// implementation, which just inserts an ISD::CALL node, which is later custom
5593/// lowered by the target to something concrete. FIXME: When all targets are
5594/// migrated to using ISD::CALL, this hook should be integrated into SDISel.
5595std::pair<SDValue, SDValue>
5596TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
5597 bool RetSExt, bool RetZExt, bool isVarArg,
Dale Johannesen86098bd2008-09-26 19:31:26 +00005598 bool isInreg,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005599 unsigned CallingConv, bool isTailCall,
5600 SDValue Callee,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005601 ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) {
Dan Gohman1937e2f2008-09-16 01:42:28 +00005602 assert((!isTailCall || PerformTailCallOpt) &&
5603 "isTailCall set when tail-call optimizations are disabled!");
5604
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005605 SmallVector<SDValue, 32> Ops;
5606 Ops.push_back(Chain); // Op#0 - Chain
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005607 Ops.push_back(Callee);
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005608
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005609 // Handle all of the outgoing arguments.
5610 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
5611 SmallVector<MVT, 4> ValueVTs;
5612 ComputeValueVTs(*this, Args[i].Ty, ValueVTs);
5613 for (unsigned Value = 0, NumValues = ValueVTs.size();
5614 Value != NumValues; ++Value) {
5615 MVT VT = ValueVTs[Value];
5616 const Type *ArgTy = VT.getTypeForMVT();
Chris Lattner2a0b96c2008-10-18 18:49:30 +00005617 SDValue Op = SDValue(Args[i].Node.getNode(),
5618 Args[i].Node.getResNo() + Value);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005619 ISD::ArgFlagsTy Flags;
5620 unsigned OriginalAlignment =
5621 getTargetData()->getABITypeAlignment(ArgTy);
5622
5623 if (Args[i].isZExt)
5624 Flags.setZExt();
5625 if (Args[i].isSExt)
5626 Flags.setSExt();
5627 if (Args[i].isInReg)
5628 Flags.setInReg();
5629 if (Args[i].isSRet)
5630 Flags.setSRet();
5631 if (Args[i].isByVal) {
5632 Flags.setByVal();
5633 const PointerType *Ty = cast<PointerType>(Args[i].Ty);
5634 const Type *ElementTy = Ty->getElementType();
5635 unsigned FrameAlign = getByValTypeAlignment(ElementTy);
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00005636 unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005637 // For ByVal, alignment should come from FE. BE will guess if this
5638 // info is not there but there are cases it cannot get right.
5639 if (Args[i].Alignment)
5640 FrameAlign = Args[i].Alignment;
5641 Flags.setByValAlign(FrameAlign);
5642 Flags.setByValSize(FrameSize);
5643 }
5644 if (Args[i].isNest)
5645 Flags.setNest();
5646 Flags.setOrigAlign(OriginalAlignment);
5647
5648 MVT PartVT = getRegisterType(VT);
5649 unsigned NumParts = getNumRegisters(VT);
5650 SmallVector<SDValue, 4> Parts(NumParts);
5651 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
5652
5653 if (Args[i].isSExt)
5654 ExtendKind = ISD::SIGN_EXTEND;
5655 else if (Args[i].isZExt)
5656 ExtendKind = ISD::ZERO_EXTEND;
5657
Dale Johannesen66978ee2009-01-31 02:22:37 +00005658 getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005659
5660 for (unsigned i = 0; i != NumParts; ++i) {
5661 // if it isn't first piece, alignment must be 1
5662 ISD::ArgFlagsTy MyFlags = Flags;
5663 if (NumParts > 1 && i == 0)
5664 MyFlags.setSplit();
5665 else if (i != 0)
5666 MyFlags.setOrigAlign(1);
5667
5668 Ops.push_back(Parts[i]);
5669 Ops.push_back(DAG.getArgFlags(MyFlags));
5670 }
5671 }
5672 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005673
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005674 // Figure out the result value types. We start by making a list of
5675 // the potentially illegal return value types.
5676 SmallVector<MVT, 4> LoweredRetTys;
5677 SmallVector<MVT, 4> RetTys;
5678 ComputeValueVTs(*this, RetTy, RetTys);
5679
5680 // Then we translate that to a list of legal types.
5681 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5682 MVT VT = RetTys[I];
5683 MVT RegisterVT = getRegisterType(VT);
5684 unsigned NumRegs = getNumRegisters(VT);
5685 for (unsigned i = 0; i != NumRegs; ++i)
5686 LoweredRetTys.push_back(RegisterVT);
5687 }
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005688
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005689 LoweredRetTys.push_back(MVT::Other); // Always has a chain.
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005690
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005691 // Create the CALL node.
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005692 SDValue Res = DAG.getCall(CallingConv, dl,
Dale Johannesenfa42dea2009-01-30 01:34:22 +00005693 isVarArg, isTailCall, isInreg,
Dan Gohman095cc292008-09-13 01:54:27 +00005694 DAG.getVTList(&LoweredRetTys[0],
5695 LoweredRetTys.size()),
Dale Johannesen86098bd2008-09-26 19:31:26 +00005696 &Ops[0], Ops.size()
5697 );
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005698 Chain = Res.getValue(LoweredRetTys.size() - 1);
5699
5700 // Gather up the call result into a single value.
Dan Gohmanb5cc34d2008-10-07 00:12:37 +00005701 if (RetTy != Type::VoidTy && !RetTys.empty()) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005702 ISD::NodeType AssertOp = ISD::DELETED_NODE;
5703
5704 if (RetSExt)
5705 AssertOp = ISD::AssertSext;
5706 else if (RetZExt)
5707 AssertOp = ISD::AssertZext;
5708
5709 SmallVector<SDValue, 4> ReturnValues;
5710 unsigned RegNo = 0;
5711 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
5712 MVT VT = RetTys[I];
5713 MVT RegisterVT = getRegisterType(VT);
5714 unsigned NumRegs = getNumRegisters(VT);
5715 unsigned RegNoEnd = NumRegs + RegNo;
5716 SmallVector<SDValue, 4> Results;
5717 for (; RegNo != RegNoEnd; ++RegNo)
5718 Results.push_back(Res.getValue(RegNo));
5719 SDValue ReturnValue =
Dale Johannesen66978ee2009-01-31 02:22:37 +00005720 getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005721 AssertOp);
5722 ReturnValues.push_back(ReturnValue);
5723 }
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005724 Res = DAG.getNode(ISD::MERGE_VALUES, dl,
Duncan Sandsaaffa052008-12-01 11:41:29 +00005725 DAG.getVTList(&RetTys[0], RetTys.size()),
5726 &ReturnValues[0], ReturnValues.size());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005727 }
5728
5729 return std::make_pair(Res, Chain);
5730}
5731
Duncan Sands9fbc7e22009-01-21 09:00:29 +00005732void TargetLowering::LowerOperationWrapper(SDNode *N,
5733 SmallVectorImpl<SDValue> &Results,
5734 SelectionDAG &DAG) {
5735 SDValue Res = LowerOperation(SDValue(N, 0), DAG);
Sanjiv Guptabb326bb2009-01-21 04:48:39 +00005736 if (Res.getNode())
5737 Results.push_back(Res);
5738}
5739
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005740SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
5741 assert(0 && "LowerOperation not implemented for this target!");
5742 abort();
5743 return SDValue();
5744}
5745
5746
5747void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) {
5748 SDValue Op = getValue(V);
5749 assert((Op.getOpcode() != ISD::CopyFromReg ||
5750 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) &&
5751 "Copy from a reg to the same reg!");
5752 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg");
5753
5754 RegsForValue RFV(TLI, Reg, V->getType());
5755 SDValue Chain = DAG.getEntryNode();
Dale Johannesen66978ee2009-01-31 02:22:37 +00005756 RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005757 PendingExports.push_back(Chain);
5758}
5759
5760#include "llvm/CodeGen/SelectionDAGISel.h"
5761
5762void SelectionDAGISel::
5763LowerArguments(BasicBlock *LLVMBB) {
5764 // If this is the entry block, emit arguments.
5765 Function &F = *LLVMBB->getParent();
5766 SDValue OldRoot = SDL->DAG.getRoot();
5767 SmallVector<SDValue, 16> Args;
Dale Johannesen66978ee2009-01-31 02:22:37 +00005768 TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc());
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005769
5770 unsigned a = 0;
5771 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
5772 AI != E; ++AI) {
5773 SmallVector<MVT, 4> ValueVTs;
5774 ComputeValueVTs(TLI, AI->getType(), ValueVTs);
5775 unsigned NumValues = ValueVTs.size();
5776 if (!AI->use_empty()) {
5777 SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues));
5778 // If this argument is live outside of the entry block, insert a copy from
5779 // whereever we got it to the vreg that other BB's will reference it as.
5780 DenseMap<const Value*, unsigned>::iterator VMI=FuncInfo->ValueMap.find(AI);
5781 if (VMI != FuncInfo->ValueMap.end()) {
5782 SDL->CopyValueToVirtualRegister(AI, VMI->second);
5783 }
5784 }
5785 a += NumValues;
5786 }
5787
5788 // Finally, if the target has anything special to do, allow it to do so.
5789 // FIXME: this should insert code into the DAG!
5790 EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction());
5791}
5792
5793/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
5794/// ensure constants are generated when needed. Remember the virtual registers
5795/// that need to be added to the Machine PHI nodes as input. We cannot just
5796/// directly add them, because expansion might result in multiple MBB's for one
5797/// BB. As such, the start of the BB might correspond to a different MBB than
5798/// the end.
5799///
5800void
5801SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) {
5802 TerminatorInst *TI = LLVMBB->getTerminator();
5803
5804 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5805
5806 // Check successor nodes' PHI nodes that expect a constant to be available
5807 // from this block.
5808 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5809 BasicBlock *SuccBB = TI->getSuccessor(succ);
5810 if (!isa<PHINode>(SuccBB->begin())) continue;
5811 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005812
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005813 // If this terminator has multiple identical successors (common for
5814 // switches), only handle each succ once.
5815 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005816
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005817 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5818 PHINode *PN;
5819
5820 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5821 // nodes and Machine PHI nodes, but the incoming operands have not been
5822 // emitted yet.
5823 for (BasicBlock::iterator I = SuccBB->begin();
5824 (PN = dyn_cast<PHINode>(I)); ++I) {
5825 // Ignore dead phi's.
5826 if (PN->use_empty()) continue;
5827
5828 unsigned Reg;
5829 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5830
5831 if (Constant *C = dyn_cast<Constant>(PHIOp)) {
5832 unsigned &RegOut = SDL->ConstantsOut[C];
5833 if (RegOut == 0) {
5834 RegOut = FuncInfo->CreateRegForValue(C);
5835 SDL->CopyValueToVirtualRegister(C, RegOut);
5836 }
5837 Reg = RegOut;
5838 } else {
5839 Reg = FuncInfo->ValueMap[PHIOp];
5840 if (Reg == 0) {
5841 assert(isa<AllocaInst>(PHIOp) &&
5842 FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) &&
5843 "Didn't codegen value into a register!??");
5844 Reg = FuncInfo->CreateRegForValue(PHIOp);
5845 SDL->CopyValueToVirtualRegister(PHIOp, Reg);
5846 }
5847 }
5848
5849 // Remember that this register needs to added to the machine PHI node as
5850 // the input for this MBB.
5851 SmallVector<MVT, 4> ValueVTs;
5852 ComputeValueVTs(TLI, PN->getType(), ValueVTs);
5853 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) {
5854 MVT VT = ValueVTs[vti];
5855 unsigned NumRegisters = TLI.getNumRegisters(VT);
5856 for (unsigned i = 0, e = NumRegisters; i != e; ++i)
5857 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i));
5858 Reg += NumRegisters;
5859 }
5860 }
5861 }
5862 SDL->ConstantsOut.clear();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005863}
5864
Dan Gohman3df24e62008-09-03 23:12:08 +00005865/// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only
5866/// supports legal types, and it emits MachineInstrs directly instead of
5867/// creating SelectionDAG nodes.
5868///
5869bool
5870SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB,
5871 FastISel *F) {
5872 TerminatorInst *TI = LLVMBB->getTerminator();
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00005873
Dan Gohman3df24e62008-09-03 23:12:08 +00005874 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
5875 unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size();
5876
5877 // Check successor nodes' PHI nodes that expect a constant to be available
5878 // from this block.
5879 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
5880 BasicBlock *SuccBB = TI->getSuccessor(succ);
5881 if (!isa<PHINode>(SuccBB->begin())) continue;
5882 MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB];
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005883
Dan Gohman3df24e62008-09-03 23:12:08 +00005884 // If this terminator has multiple identical successors (common for
5885 // switches), only handle each succ once.
5886 if (!SuccsHandled.insert(SuccMBB)) continue;
Mikhail Glushenkov5c1799b2009-01-16 06:53:46 +00005887
Dan Gohman3df24e62008-09-03 23:12:08 +00005888 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
5889 PHINode *PN;
5890
5891 // At this point we know that there is a 1-1 correspondence between LLVM PHI
5892 // nodes and Machine PHI nodes, but the incoming operands have not been
5893 // emitted yet.
5894 for (BasicBlock::iterator I = SuccBB->begin();
5895 (PN = dyn_cast<PHINode>(I)); ++I) {
5896 // Ignore dead phi's.
5897 if (PN->use_empty()) continue;
5898
5899 // Only handle legal types. Two interesting things to note here. First,
5900 // by bailing out early, we may leave behind some dead instructions,
5901 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
5902 // own moves. Second, this check is necessary becuase FastISel doesn't
5903 // use CreateRegForValue to create registers, so it always creates
5904 // exactly one register for each non-void instruction.
5905 MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
5906 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
Dan Gohman74321ab2008-09-10 21:01:31 +00005907 // Promote MVT::i1.
5908 if (VT == MVT::i1)
5909 VT = TLI.getTypeToTransformTo(VT);
5910 else {
5911 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5912 return false;
5913 }
Dan Gohman3df24e62008-09-03 23:12:08 +00005914 }
5915
5916 Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
5917
5918 unsigned Reg = F->getRegForValue(PHIOp);
5919 if (Reg == 0) {
5920 SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
5921 return false;
5922 }
5923 SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
5924 }
5925 }
5926
5927 return true;
5928}